diff --git a/.buildkite/pipeline.yml b/.buildkite/pipeline.yml index 8849eb9897..368bab708c 100644 --- a/.buildkite/pipeline.yml +++ b/.buildkite/pipeline.yml @@ -17,6 +17,9 @@ steps: image: "public.ecr.aws/automattic/gb-mobile-image:latest" environment: - "CI=true" + # Allow WP-CLI to be run as root, otherwise it throws an exception. + # Reference: https://git.io/J9q2S + - "WP_CLI_ALLOW_ROOT=true" command: | source /root/.bashrc diff --git a/.circleci/config.yml b/.circleci/config.yml index b124a9ea5b..75c21f5020 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -21,7 +21,7 @@ commands: key: npm-i18n-v5-cache-v{{ .Environment.CACHE_TRIGGER_VERSION }}-job-{{ .Environment.CIRCLE_JOB }}-{{ checksum "package-lock.json" }} paths: - ~/.npm - - i18n-cache/data + - src/i18n-cache npm-install-full: steps: - restore_cache: @@ -39,7 +39,7 @@ commands: key: npm-i18n-v5-cache-v{{ .Environment.CACHE_TRIGGER_VERSION }}-job-{{ .Environment.CIRCLE_JOB }}-{{ checksum "gutenberg/package-lock.json" }} paths: - ~/.npm - - i18n-cache/data + - src/i18n-cache checkout-shallow: steps: - run: diff --git a/.gitignore b/.gitignore index 0391399813..c97dc0d8a4 100644 --- a/.gitignore +++ b/.gitignore @@ -120,3 +120,6 @@ bin/wp-cli.phar ios/Pods ios/vendor + +# i18n update +i18n-test/ \ No newline at end of file diff --git a/bin/i18n-check-cache.sh b/bin/i18n-check-cache.sh new file mode 100755 index 0000000000..7319945904 --- /dev/null +++ b/bin/i18n-check-cache.sh @@ -0,0 +1,68 @@ +#!/bin/bash +# +# Checks i18n cache folders in order to guarantee that translations are present for provided plugins. +# A cache folder will be created, in case a plugin doesn't have it, with its translations that +# will be fetched before creation. +# +# NOTE: The translations fetched are NOT OPTIMIZED, the reason for this is purely for making +# the script fast as it will be mainly used upon dependency installation. + +# Exit if any command fails +set -euo pipefail + +function error() { + echo -e "\033[0;31m$1\033[0m" + exit 1 +} + +function arrayLength() { echo "$#"; } + +function check_plugin_cache() { + local plugin_name=$1 + local i18n_cache_folder="$TRANSLATIONS_OUTPUT_PATH/$plugin_name" + + if [[ ! -d $i18n_cache_folder ]]; then + NOT_FOUND_PLUGIN_I18N_CACHE+=( $i18n_cache_folder ) + echo -e "Couldn't find i18n cache folder (\"$i18n_cache_folder\") for plugin \"$plugin_name\", downloading un-optimized translations for creating the cache." + fetch_translations "$plugin_name" "$TRANSLATIONS_OUTPUT_PATH" + fi +} + +function update_gutenberg_i18n_cache() { + local output_path=$1 + + echo "Update \"react-native-editor\" package i18n cache" + cp -r "$output_path/gutenberg/data" gutenberg/packages/react-native-editor/i18n-cache + cp "$output_path/gutenberg/index.js" gutenberg/packages/react-native-editor/i18n-cache/index.native.js +} + +function fetch_translations() { + local plugin_name=$1 + local output_path=$2 + + echo -e "\n\033[1mDownload I18n translations for \"$plugin_name\" plugin\033[0m" + node gutenberg/packages/react-native-editor/bin/i18n-translations-download "$plugin_name" "$output_path" +} + +# Get parameters +PLUGINS=( "$@" ) + +# Define constants +TRANSLATIONS_OUTPUT_PATH="src/i18n-cache" + +echo -e "\n\033[1m== Checking i18n cache ==\033[0m" + +# Check plugins cache +for PLUGIN in "${PLUGINS[@]+"${PLUGINS[@]}"}"; do + check_plugin_cache "$PLUGIN" +done + +# Check Gutenberg cache +check_plugin_cache "gutenberg" + +if [[ $(arrayLength "${NOT_FOUND_PLUGIN_I18N_CACHE[@]+"${NOT_FOUND_PLUGIN_I18N_CACHE[@]}"}") -eq 0 ]]; then + echo -e "i18n cache for provided plugins is present ✅" +fi + +# We need to guarantee that i18n cache within react-native-editor package is updated +update_gutenberg_i18n_cache "$TRANSLATIONS_OUTPUT_PATH" \ No newline at end of file diff --git a/bin/i18n-download.sh b/bin/i18n-download.sh deleted file mode 100755 index cb8426c188..0000000000 --- a/bin/i18n-download.sh +++ /dev/null @@ -1,11 +0,0 @@ -#!/bin/bash - -# Exit if any command fails. -set -e - -if [ -n "${REFRESH_I18N}" ] ; then - node src/i18n-cache/index.js $1 || pFail -fi -# Overwrite the i18n cache of react-native-editor package -cp -r src/i18n-cache/gutenberg/data gutenberg/packages/react-native-editor/i18n-cache -cp -r src/i18n-cache/gutenberg/index.native.js gutenberg/packages/react-native-editor/i18n-cache \ No newline at end of file diff --git a/bin/i18n-update.sh b/bin/i18n-update.sh index fa32ad613b..2f0e143460 100755 --- a/bin/i18n-update.sh +++ b/bin/i18n-update.sh @@ -27,9 +27,8 @@ while test $# -gt 0; do case "$1" in -h|--help) echo "options:" - echo "-h, --help show brief help" - echo "-p, --path local path for generating files (by default a temp folder will be used)" - echo "-d, --debug print extra info for debugging" + echo "-h, --help show brief help" + echo "-p, --path local path for generating files (by default a temp folder will be used)" exit 0 ;; -p|--path*) @@ -37,10 +36,6 @@ while test $# -gt 0; do LOCAL_PATH=$1 shift ;; - -d|--debug*) - shift - DEBUG='true' - ;; *) break ;; @@ -54,6 +49,23 @@ function error() { function arrayLength() { echo "$#"; } +function check_plugin() { + local plugin_folder=$1 + + if [[ ! -d $plugin_folder ]]; then + NOT_FOUND_PLUGIN_FOLDERS+=( $plugin_folder ) + echo -e "\033[0;31mPlugin folder \"$plugin_folder\" doesn't exist.\033[0m" + fi +} + +function update_gutenberg_i18n_cache() { + local output_path=$1 + + echo "Update \"react-native-editor\" package i18n cache" + cp -r "$output_path/gutenberg/data" gutenberg/packages/react-native-editor/i18n-cache + cp "$output_path/gutenberg/index.js" gutenberg/packages/react-native-editor/i18n-cache/index.native.js +} + function fetch_translations() { local plugin_name=$1 local output_path=$2 @@ -63,9 +75,7 @@ function fetch_translations() { node gutenberg/packages/react-native-editor/bin/i18n-translations-download "$plugin_name" "$output_path" "$used_strings_file" if [[ "$plugin_name" == "gutenberg" ]]; then - echo "Update \"react-native-editor\" package i18n cache" - cp -r "$output_path/gutenberg/data" gutenberg/packages/react-native-editor/i18n-cache - cp "$output_path/gutenberg/index.js" gutenberg/packages/react-native-editor/i18n-cache/index.native.js + update_gutenberg_i18n_cache "$output_path" fi } @@ -80,6 +90,9 @@ fi # Get parameters PLUGINS=( "$@" ) +# Define constants +TRANSLATIONS_OUTPUT_PATH="src/i18n-cache" + echo -e "\n\033[1m== Updating i18n localizations ==\033[0m" # Validate parameters @@ -87,14 +100,17 @@ if [[ $((${#PLUGINS[@]}%2)) -ne 0 ]]; then error "Plugin arguments must be supplied as tuples (i.e. domain path/to/plugin)." fi +# Check plugins parameters for (( index=0; index<${#PLUGINS[@]}; index+=2 )); do PLUGIN_FOLDER=${PLUGINS[index+1]} - if [[ ! -d $PLUGIN_FOLDER ]]; then - NOT_FOUND_PLUGIN_FOLDERS+=( $PLUGIN_FOLDER ) - echo -e "\033[0;31mPlugin folder \"$PLUGIN_FOLDER\" doesn't exist.\033[0m" - fi + check_plugin "$PLUGIN_FOLDER" done + +# Check Gutenberg plugin +check_plugin "./gutenberg" + +# Stop if can't find any plugin folder if [[ $(arrayLength "${NOT_FOUND_PLUGIN_FOLDERS[@]+"${NOT_FOUND_PLUGIN_FOLDERS[@]}"}") -gt 0 ]]; then exit 1 fi @@ -110,7 +126,6 @@ npm run build:gutenberg METRO_CONFIG="metro.config.js" node gutenberg/packages/react-native-editor/bin/extract-used-strings "$USED_STRINGS_PATH" "${PLUGINS[@]}" # Download translations of plugins (i.e. Jetpack) -TRANSLATIONS_OUTPUT_PATH="src/i18n-cache" for (( index=0; index<${#PLUGINS[@]}; index+=2 )); do PLUGIN_NAME=${PLUGINS[index]} diff --git a/bin/po2android.js b/bin/po2android.js deleted file mode 100755 index d398380d5c..0000000000 --- a/bin/po2android.js +++ /dev/null @@ -1,144 +0,0 @@ -#!/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 ) { - // See: https://tekeye.uk/android/examples/android-string-resources-gotchas - // Let's replace XML special characters <, >, &, ", ', \, \t and \n - // Note that this does not support android:textstyle attributes (...) - return unsafeXMLValue.replace( /(\r?\n|\r|\t|<|>|&|'|"|\\)/gm, function( character ) { - switch ( character ) { - case '<': return '<'; - case '>': return '>'; - case '&': return '&'; - case '\'': return '\\\''; - case '"': return '\\\"'; - case '\r': - case '\n': - case '\r\n': return '\\n'; - case '\t': return '\\t'; - case '\\': return '\\\\'; - } - } ); -} - -/** - * Android specifics replacements. - * - * @param {string} XMLValue input to apply replacements. - * @return {string} valid string passing Android linter rules. - */ -function androidReplacements( XMLValue ) { - return XMLValue.replace( /(-|\.\.\.)/gm, function( character ) { - switch ( character ) { - case '-': return '–'; // Android lint rule: TypographyDashes. - case '...': return '…'; // Android lint rule: TypographyEllipsis - } - } ); -} - -/** - * 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( potFilesContent ) { - const translations = potFilesContent.reduce( (result, content) => { - const po = gettextParser.po.parse( content ); - return { ...result, ...po.translations[ '' ] }; - }, {}); - - const androidResourcesMap = Object.values( translations ).reduce( ( result, translation ) => { - if ( ! translation.msgid ) { - return result; - } - const uniqueName = getUniqueName( translation.msgid ); - const escapedValue = androidReplacements( escapeResourceXML( translation.msgid ) ); - const escapedValuePlural = androidReplacements( 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 destination = process.argv[ 2 ]; - const potFiles = process.argv.slice( 3 ); - const potFilesContent = potFiles.map( (file) => fs.readFileSync( file ) ); - const xmlOutput = po2Android( potFilesContent ); - 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/bin/po2swift.js b/bin/po2swift.js deleted file mode 100755 index fc74a1f4cf..0000000000 --- a/bin/po2swift.js +++ /dev/null @@ -1,50 +0,0 @@ -#!/usr/bin/env node - -const gettextParser = require( 'gettext-parser' ), - fs = require( 'fs' ); - -function po2Swift( potFilesContent ) { - const translations = potFilesContent.reduce( (result, content) => { - const po = gettextParser.po.parse( content ); - return { ...result, ...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 destination = process.argv[ 2 ]; - const potFiles = process.argv.slice( 3 ); - const potFilesContent = potFiles.map( (file) => fs.readFileSync( file ) ); - const swiftOutput = po2Swift( potFilesContent ); - 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/bundle/android/strings.xml b/bundle/android/strings.xml index d68ef53e3c..48f6b6f53f 100644 --- a/bundle/android/strings.xml +++ b/bundle/android/strings.xml @@ -164,11 +164,11 @@ Failed to insert media.\nPlease tap for options. Failed to save files.\nPlease tap for options. Failed to upload files.\nPlease tap for options. - Featured Featured Image File block settings File name Font Size + Four From clipboard Gallery caption. %s @@ -234,6 +234,7 @@ translators: %s: Select control button label e.g. "Button width" --> Note: You must allow WordPress.com login to edit this block in the mobile editor. Number of columns Once you become familiar with the names of different blocks, you can add a block by typing a forward slash followed by the block name — for example, /image or /heading. + One Only show excerpt OPEN Open Block Actions Menu @@ -324,11 +325,13 @@ translators: %s: Select control option value e.g: "Auto, 25%". --> Text color Text formatting controls are located within the toolbar positioned above the keyboard while editing a text block The basics + Three To remove a block, select the block and click the three dots in the bottom right of the block to view the settings. From there, choose the option to remove the block. Transform block… Transform %s to Try another search term + Two Type a URL Unable to embed media Ungroup diff --git a/bundle/ios/GutenbergNativeTranslations.swift b/bundle/ios/GutenbergNativeTranslations.swift index a5a69c01d5..1a39a75e1e 100644 --- a/bundle/ios/GutenbergNativeTranslations.swift +++ b/bundle/ios/GutenbergNativeTranslations.swift @@ -156,11 +156,11 @@ private func dummy() { _ = NSLocalizedString("Failed to insert media.\nPlease tap for options.", comment: "") _ = NSLocalizedString("Failed to save files.\nPlease tap for options.", comment: "") _ = NSLocalizedString("Failed to upload files.\nPlease tap for options.", comment: "") - _ = NSLocalizedString("Featured", comment: "") _ = NSLocalizedString("Featured Image", comment: "") _ = NSLocalizedString("File block settings", comment: "") _ = NSLocalizedString("File name", comment: "") _ = NSLocalizedString("Font Size", comment: "") + _ = NSLocalizedString("Four", comment: "") _ = NSLocalizedString("From clipboard", comment: "") _ = NSLocalizedString("Gallery caption. %s", comment: "translators: accessibility text. %s: gallery caption.") _ = NSLocalizedString("Get support", comment: "") @@ -217,6 +217,7 @@ private func dummy() { _ = NSLocalizedString("Note: You must allow WordPress.com login to edit this block in the mobile editor.", comment: "") _ = NSLocalizedString("Number of columns", comment: "") _ = NSLocalizedString("Once you become familiar with the names of different blocks, you can add a block by typing a forward slash followed by the block name — for example, /image or /heading.", comment: "") + _ = NSLocalizedString("One", comment: "") _ = NSLocalizedString("Only show excerpt", comment: "") _ = NSLocalizedString("OPEN", comment: "") _ = NSLocalizedString("Open Block Actions Menu", comment: "") @@ -272,10 +273,12 @@ private func dummy() { _ = NSLocalizedString("Text color", comment: "") _ = NSLocalizedString("Text formatting controls are located within the toolbar positioned above the keyboard while editing a text block", comment: "") _ = NSLocalizedString("The basics", comment: "") + _ = NSLocalizedString("Three", comment: "") _ = NSLocalizedString("To remove a block, select the block and click the three dots in the bottom right of the block to view the settings. From there, choose the option to remove the block.", comment: "") _ = NSLocalizedString("Transform %s to", comment: "translators: %s: block title e.g: \"Paragraph\".") _ = NSLocalizedString("Transform block…", comment: "") _ = NSLocalizedString("Try another search term", comment: "") + _ = NSLocalizedString("Two", comment: "") _ = NSLocalizedString("Type a URL", comment: "") _ = NSLocalizedString("Unable to embed media", comment: "") _ = NSLocalizedString("Ungroup", comment: "") diff --git a/gutenberg b/gutenberg index a585bb7286..c3e1c13903 160000 --- a/gutenberg +++ b/gutenberg @@ -1 +1 @@ -Subproject commit a585bb7286d5f00dfb9a73075cdee0edcf46bd04 +Subproject commit c3e1c1390379f44d6a9756d82b2a3992ec587050 diff --git a/package.json b/package.json index 8f4e00b132..19dd9ec581 100644 --- a/package.json +++ b/package.json @@ -53,7 +53,7 @@ "wd": "^1.11.1" }, "scripts": { - "postinstall": "patch-package && npm ci --prefix gutenberg && cd jetpack/projects/plugins/jetpack && npx pnpm install", + "postinstall": "patch-package && npm ci --prefix gutenberg && npm run i18n:check-cache && cd jetpack/projects/plugins/jetpack && npx pnpm install", "start": "echo \"\\x1b[33mThe start command is not available in this project. It is strongly recommended to use \\x1b[1:33mstart:reset\\x1b[0m\\x1b[33m to perform some cleanup when starting the metro bundler.\nOr you may use \\x1b[1:33mstart:quick\\x1b[0m\\x1b[33m for a quicker startup, but this may lead to unexpected javascript errors when running the app.\\x1b[0m\"", "start:reset": "npm run core clean:runtime && npm run start:quick -- --reset-cache", "start:quick": "react-native start --config ./metro.config.js", @@ -61,38 +61,16 @@ "prern-bundle": "patch-package --patch-dir gutenberg/packages/react-native-editor/metro-patch", "rn-bundle": "react-native bundle", "postrn-bundle": "patch-package --reverse --patch-dir gutenberg/packages/react-native-editor/metro-patch", + "i18n:check-cache": "./bin/i18n-check-cache.sh jetpack layout-grid", "i18n:update": "./bin/i18n-update.sh jetpack ./jetpack/projects/plugins/jetpack/extensions layout-grid ./block-experiments/blocks/layout-grid", - "i18n:update:debug": "./bin/i18n-update.sh --debug jetpack ./jetpack/projects/plugins/jetpack/extensions layout-grid ./block-experiments/blocks/layout-grid", - "i18n:gutenberg": "./bin/i18n-download.sh gutenberg", - "i18n:gutenberg:force": "cross-env REFRESH_I18N=1 ./bin/i18n-download.sh gutenberg", - "bundle": "npm run clean; npm run bundle:js && npm run genstrings", - "prebundle:js": "npm run i18n:gutenberg:force", + "i18n:update:test": "./bin/i18n-update.sh --path i18n-test jetpack ./jetpack/projects/plugins/jetpack/extensions layout-grid ./block-experiments/blocks/layout-grid", + "bundle": "npm run clean; npm run bundle:js", + "prebundle:js": "npm run i18n:update", "bundle:js": "npm run bundle:android && npm run bundle:ios", "bundle:android": "npm run bundle:android:text && npm run bundle:android:bytecode", "bundle:android:text": "mkdir -p bundle/android && npm run rn-bundle -- --platform android --dev false --entry-file ./index.js --assets-dest ./bundle/android --bundle-output ./bundle/android/App.text.js --sourcemap-output ./bundle/android/App.text.js.map", "bundle:android:bytecode": "./gutenberg/node_modules/hermes-engine/`node -e \"const platform=require('os').platform();console.log(platform === 'darwin' ? 'osx-bin' : (platform === 'linux' ? 'linux64-bin' : (platform === 'win32' ? 'win64-bin' : 'unsupported-os')));\"`/hermesc -emit-binary -O -out bundle/android/App.js bundle/android/App.text.js -output-source-map", "bundle:ios": "mkdir -p bundle/ios && npm run rn-bundle -- --platform ios --dev false --entry-file ./index.js --assets-dest ./bundle/ios --bundle-output ./bundle/ios/App.js --sourcemap-output ./bundle/ios/App.js.map", - "install:wpcli": "(test -x bin/wp-cli.phar || curl -Ls https://raw.githubusercontent.com/wp-cli/builds/gh-pages/phar/wp-cli.phar -o bin/wp-cli.phar && chmod +x bin/wp-cli.phar) && bin/wp-cli.phar --info", - "update:wpcli": "bin/wp-cli.phar cli update --nightly --yes && bin/wp-cli.phar --info", - "prewp": "npm run install:wpcli && npm run update:wpcli", - "wp": "php -d memory_limit=4G bin/wp-cli.phar", - "makepot:android:gutenberg-mobile": "npm run wp -- i18n make-pot ./src --include=*.js,*.native.js,*.android.js --exclude=test/* --subtract=./gutenberg.pot --ignore-domain gutenberg-mobile-android.pot", - "makepot:android:gutenberg": "npm run wp -- i18n make-pot ./gutenberg/packages --include=*.native.js,*.android.js --exclude=test/*,e2e-tests/*,build/*,build-module/*,build-style/* --skip-php --subtract=./gutenberg.pot --ignore-domain gutenberg-android.pot", - "makepot:android:jetpack": "npm run wp -- i18n make-pot ./jetpack/projects/plugins/jetpack/extensions --include=*.native.js,*.android.js --exclude=test/*,e2e-tests/*,build/*,build-module/*,build-style/* --skip-php --subtract=./jetpack.pot --domain=jetpack jetpack-android.pot", - "makepot:android:layout-grid": "npm run wp -- i18n make-pot ./block-experiments/blocks/layout-grid --include=*.native.js,*.android.js --exclude=test/*,e2e-tests/*,build/*,build-module/*,build-style/* --skip-php --subtract=./layout-grid.pot --domain=layout-grid layout-grid-android.pot", - "makepot:ios:gutenberg-mobile": "npm run wp -- i18n make-pot ./src --include=*.js,*.native.js,*.ios.js --exclude=test/* --subtract=./gutenberg.pot --ignore-domain gutenberg-mobile-ios.pot", - "makepot:ios:gutenberg": "npm run wp -- i18n make-pot ./gutenberg/packages --include=*.native.js,*.ios.js --exclude=test/*,e2e-tests/*,build/*,build-module/*,build-style/* --skip-php --subtract=./gutenberg.pot --ignore-domain gutenberg-ios.pot", - "makepot:ios:jetpack": "npm run wp -- i18n make-pot ./jetpack/projects/plugins/jetpack/extensions --include=*.native.js,*.ios.js --exclude=test/*,e2e-tests/*,build/*,build-module/*,build-style/* --skip-php --subtract=./jetpack.pot --domain=jetpack jetpack-ios.pot", - "makepot:ios:layout-grid": "npm run wp -- i18n make-pot ./block-experiments/blocks/layout-grid --include=*.native.js,*.ios.js --exclude=test/*,e2e-tests/*,build/*,build-module/*,build-style/* --skip-php --subtract=./layout-grid.pot --domain=layout-grid layout-grid-ios.pot", - "premakepot:gutenberg": "npm run clean:gutenberg && npm run build:gutenberg", - "makepot:gutenberg": "npm run wp -- i18n make-pot ./gutenberg/packages --exclude=test/*,e2e-tests/*,build/*,build-module/*,build-style/*,*.native.js,*.ios.js,*.android.js,bundle/* --ignore-domain gutenberg.pot", - "postmakepot:gutenberg": "npm run clean:gutenberg", - "makepot:jetpack": "npm run wp -- i18n make-pot ./jetpack/projects/plugins/jetpack/extensions --exclude=test/*,e2e-tests/*,build/*,build-module/*,build-style/*,*.native.js,*.ios.js,*.android.js,bundle/* --domain=jetpack jetpack.pot", - "makepot:layout-grid": "npm run wp -- i18n make-pot ./block-experiments/blocks/layout-grid --exclude=test/*,e2e-tests/*,build/*,build-module/*,build-style/*,*.native.js,*.ios.js,*.android.js,bundle/* --domain=layout-grid layout-grid.pot", - "pregenstrings": "npm run makepot:gutenberg && npm run makepot:jetpack && npm run makepot:layout-grid", - "genstrings": "npm run genstrings:android && npm run genstrings:ios", - "genstrings:android": "npm run makepot:android:gutenberg && npm run makepot:android:gutenberg-mobile && npm run makepot:android:jetpack && npm run makepot:android:layout-grid && ./bin/po2android.js bundle/android/strings.xml gutenberg-android.pot gutenberg-mobile-android.pot jetpack-android.pot layout-grid-android.pot", - "genstrings:ios": "npm run makepot:ios:gutenberg && npm run makepot:ios:gutenberg-mobile && npm run makepot:ios:jetpack && npm run makepot:ios:layout-grid && ./bin/po2swift.js bundle/ios/GutenbergNativeTranslations.swift gutenberg-ios.pot gutenberg-mobile-ios.pot jetpack-ios.pot layout-grid-ios.pot", "prewpandroid": "rm -Rf $TMPDIR/gbmobile-wpandroidfakernroot && mkdir $TMPDIR/gbmobile-wpandroidfakernroot && ln -s $(cd \"$(dirname \"../../../\")\"; pwd) $TMPDIR/gbmobile-wpandroidfakernroot/android", "wpandroid": "cd gutenberg && react-native run-android --root $TMPDIR/gbmobile-wpandroidfakernroot --variant wasabiDebug --appIdSuffix beta --appFolder WordPress --main-activity=ui.WPLaunchActivity", "test": "cross-env NODE_ENV=test jest --verbose --config ./jest.config.js", diff --git a/src/i18n-cache/index.js b/src/i18n-cache/index.js deleted file mode 100644 index 0b11f67b1f..0000000000 --- a/src/i18n-cache/index.js +++ /dev/null @@ -1,172 +0,0 @@ -/* eslint-disable no-console */ - -/** - * External dependencies - */ -const fs = require( 'fs' ); -const path = require( 'path' ); -const fetch = require( 'node-fetch' ); - -const supportedLocales = [ - 'ar', // Arabic - 'bg', // Bulgarian - 'bo', // Tibetan - 'ca', // Catalan - 'cs', // Czech - 'cy', // Welsh - 'da', // Danish - 'de', // German - 'en-au', // English (Australia) - 'en-ca', // English (Canada) - 'en-gb', // English (UK) - 'en-nz', // English (New Zealand) - 'en-za', // English (South Africa) - 'el', // Greek - 'es', // Spanish - 'es-ar', // Spanish (Argentina) - 'es-cl', // Spanish (Chile) - 'es-cr', // Spanish (Costa Rica) - 'fa', // Persian - 'fr', // French - 'gl', // Galician - 'he', // Hebrew - 'hr', // Croatian - 'hu', // Hungarian - 'id', // Indonesian - 'is', // Icelandic - 'it', // Italian - 'ja', // Japanese - 'ka', // Georgian - 'ko', // Korean - 'nb', // Norwegian (Bokmål) - 'nl', // Dutch - 'nl-be', // Dutch (Belgium) - 'pl', // Polish - 'pt', // Portuguese - 'pt-br', // Portuguese (Brazil) - 'ro', // Romainian - 'ru', // Russian - 'sk', // Slovak - 'sq', // Albanian - 'sr', // Serbian - 'sv', // Swedish - 'th', // Thai - 'tr', // Turkish - 'uk', // Ukrainian - 'ur', // Urdu - 'vi', // Vietnamese - 'zh-cn', // Chinese (China) - 'zh-tw', // Chinese (Taiwan) -]; - -const getLanguageUrl = ( locale, plugin ) => - `https://translate.wordpress.org/projects/wp-plugins/${ plugin }/dev/${ locale }/default/export-translations\?format\=json`; - -const getTranslationFilePath = ( locale ) => `./data/${ locale }.json`; - -const fetchTranslation = ( locale, plugin ) => { - console.log( 'fetching', getLanguageUrl( locale, plugin ) ); - const localeUrl = getLanguageUrl( locale, plugin ); - return fetch( localeUrl ) - .then( ( response ) => response.json() ) - .then( ( body ) => { - return { response: body, locale }; - } ) - .catch( () => { - console.error( `Could not find translation file ${ localeUrl }` ); - } ); -}; - -const fetchTranslations = ( plugin ) => { - const fetchPromises = supportedLocales.map( ( locale ) => - fetchTranslation( locale, plugin ) - ); - - // Create data folder if it doesn't exist - const dataDir = path.join( __dirname, `${ plugin }/data` ); - if ( ! fs.existsSync( dataDir ) ) { - fs.mkdirSync( dataDir ); - } - - return Promise.all( fetchPromises ).then( ( results ) => { - const fetchedTranslations = results.filter( Boolean ); - const translationFilePromises = fetchedTranslations.map( - ( languageResult ) => { - return new Promise( ( resolve, reject ) => { - const translationRelativePath = getTranslationFilePath( - languageResult.locale, - plugin - ); - - const translationAbsolutePath = path.resolve( - __dirname, - `${ plugin }/${ translationRelativePath }` - ); - - fs.writeFile( - translationAbsolutePath, - JSON.stringify( languageResult.response ), - 'utf8', - ( err ) => { - if ( err ) { - reject( err ); - } else { - languageResult.path = translationRelativePath; - resolve( translationRelativePath ); - } - } - ); - } ); - } - ); - return Promise.all( translationFilePromises ).then( - () => fetchedTranslations - ); - } ); -}; - -// if run as a script -if ( require.main === module ) { - const args = process.argv.slice( 2 ); - const plugin = args[ 0 ] || 'gutenberg'; - const pluginDir = path.join( __dirname, plugin ); - - if ( ! fs.existsSync( pluginDir ) ) { - fs.mkdirSync( pluginDir ); - } - - fetchTranslations( plugin ).then( ( translations ) => { - const indexNative = `/* THIS IS A GENERATED FILE. DO NOT EDIT DIRECTLY. */ -/* eslint-disable prettier/prettier */ - -const translations = { -${ translations - .filter( Boolean ) - .map( - ( translation ) => - `\t"${ translation.locale }": require( "${ translation.path }" ),` - ) - .join( '\n' ) } -}; - -export const getTranslation = ( locale ) => translations[ locale ]; - -/* eslint-enable prettier/prettier */ -`; - - fs.writeFile( - path.join( pluginDir, 'index.native.js' ), - indexNative, - 'utf8', - ( error ) => { - if ( error ) { - console.error( error ); - return; - } - console.log( 'Done.' ); - } - ); - } ); -} - -/* eslint-enable no-console */ diff --git a/src/i18n-translations/jetpack/data/ar.json b/src/i18n-translations/jetpack/data/ar.json deleted file mode 100644 index 0c14dd6ff0..0000000000 --- a/src/i18n-translations/jetpack/data/ar.json +++ /dev/null @@ -1,130 +0,0 @@ -{ - "Embed a SmartFrame Image.": [], - "smartframe": [], - "Embed an Instagram post.": [ - "تضمين منشور Instagram." - ], - "Embed a Facebook post.": [ - "تضمين منشور فيس بوك." - ], - "Embed a Loom video.": [ - "قم بتضمين فيديو Loom." - ], - "video": [ - "فيديو" - ], - "Add an interactive story.": [ - "أضف قصة تفاعلية." - ], - "block search term\u0004video": [ - "فيديو" - ], - "block search term\u0004story": [ - "قصة" - ], - "Story": [ - "قصة" - ], - "Grow": [ - "تنمية" - ], - "Earn": [ - "تحقيق ربح" - ], - "block search term\u0004social": [ - "اجتماعي" - ], - "block search term\u0004address": [ - "عنوان" - ], - "block search term\u0004phone": [ - "هاتف" - ], - "block search term\u0004message": [ - "رسالة" - ], - "block search term\u0004image": [ - "صورة" - ], - "Lets you add an email address with an automatically generated click-to-email link.": [ - "يسمح لك بإضافة عنوان بريد إلكتروني من خلال رابط \"انقر للاتصال\" الذي تم إنشاؤه تلقائيًّا." - ], - "Open address in Google Maps": [ - "فتح عنوان في Google Maps" - ], - "block search term\u0004gallery": [ - "معرض" - ], - "block search term\u0004cell": [ - "خلية" - ], - "block search term\u0004telephone": [ - "هاتف أرضي" - ], - "block search term\u0004mobile": [ - "هاتف محمول" - ], - "block search term\u0004email": [ - "البريد الإلكتروني" - ], - "block search term\u0004place": [ - "مكان" - ], - "block search term\u0004direction": [ - "الاتجاه" - ], - "block search term\u0004location": [ - "الموقع" - ], - "Lets you add a phone number with an automatically generated click-to-call link.": [ - "يسمح لك بإضافة رقم هاتف مع رابط \"أنقر للاتصال\" الذي يتم إنشاؤه تلقائيًّا." - ], - "Phone Number": [ - "رقم الهاتف" - ], - "Phone number": [ - "رقم الهاتف" - ], - "Lets you add an email address, phone number, and physical address with improved markup for better SEO results.": [ - "يسمح لك بإضافة عنوان بريد إلكتروني ورقم هاتف وعنوان فعلي مع لغة تمييز مُحسّنة للحصول على أفضل نتائج تحسين محركات البحث." - ], - "Lets you add a physical address with Schema markup.": [ - "يسمح لك بإضافة عنوان فعلي مع تمييز المخطط." - ], - "Address": [ - "العنوان" - ], - "Country": [ - "البلد" - ], - "Postal/Zip Code": [ - "الرمز البريدي/رمز Zip" - ], - "State/Province/Region": [ - "الولاية/المقاطعة/الإقليم" - ], - "City": [ - "المدينة" - ], - "Address Line 3": [ - "سطر العنوان 3" - ], - "Address Line 2": [ - "سطر العنوان 2" - ], - "Street Address": [ - "عنوان الشارع" - ], - "Link address to Google Maps": [ - "ربط العنوان بـ Google Maps" - ], - "Contact Info": [ - "معلومات الإتصال" - ], - "Email Address": [ - "عنوان البريد الإلكتروني" - ], - "Email": [ - "البريد الإلكتروني" - ] -} \ No newline at end of file diff --git a/src/i18n-translations/jetpack/data/bg.json b/src/i18n-translations/jetpack/data/bg.json deleted file mode 100644 index 41e189f806..0000000000 --- a/src/i18n-translations/jetpack/data/bg.json +++ /dev/null @@ -1,52 +0,0 @@ -{ - "Embed a SmartFrame Image.": [], - "smartframe": [], - "Embed an Instagram post.": [], - "Embed a Facebook post.": [], - "Embed a Loom video.": [], - "video": [], - "Add an interactive story.": [], - "block search term\u0004video": [], - "block search term\u0004story": [], - "Story": [], - "Grow": [], - "Earn": [], - "block search term\u0004social": [], - "block search term\u0004address": [], - "block search term\u0004phone": [], - "block search term\u0004message": [], - "block search term\u0004image": [], - "Lets you add an email address with an automatically generated click-to-email link.": [], - "Open address in Google Maps": [], - "block search term\u0004gallery": [], - "block search term\u0004cell": [], - "block search term\u0004telephone": [], - "block search term\u0004mobile": [], - "block search term\u0004email": [], - "block search term\u0004place": [], - "block search term\u0004direction": [], - "block search term\u0004location": [], - "Lets you add a phone number with an automatically generated click-to-call link.": [], - "Phone Number": [], - "Phone number": [], - "Lets you add an email address, phone number, and physical address with improved markup for better SEO results.": [], - "Lets you add a physical address with Schema markup.": [], - "Address": [], - "Country": [], - "Postal/Zip Code": [], - "State/Province/Region": [], - "City": [], - "Address Line 3": [], - "Address Line 2": [], - "Street Address": [], - "Link address to Google Maps": [], - "Contact Info": [ - "За връзка" - ], - "Email Address": [ - "Имейл адрес" - ], - "Email": [ - "Имейл" - ] -} \ No newline at end of file diff --git a/src/i18n-translations/jetpack/data/bo.json b/src/i18n-translations/jetpack/data/bo.json deleted file mode 100644 index 0f387cd8e0..0000000000 --- a/src/i18n-translations/jetpack/data/bo.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "Embed a SmartFrame Image.": [], - "smartframe": [], - "Embed an Instagram post.": [], - "Embed a Facebook post.": [], - "Embed a Loom video.": [], - "video": [], - "Add an interactive story.": [], - "block search term\u0004video": [], - "block search term\u0004story": [], - "Story": [], - "Grow": [], - "Earn": [], - "block search term\u0004social": [], - "block search term\u0004address": [], - "block search term\u0004phone": [], - "block search term\u0004message": [], - "block search term\u0004image": [], - "Lets you add an email address with an automatically generated click-to-email link.": [], - "Open address in Google Maps": [], - "block search term\u0004gallery": [], - "block search term\u0004cell": [], - "block search term\u0004telephone": [], - "block search term\u0004mobile": [], - "block search term\u0004email": [], - "block search term\u0004place": [], - "block search term\u0004direction": [], - "block search term\u0004location": [], - "Lets you add a phone number with an automatically generated click-to-call link.": [], - "Phone Number": [], - "Phone number": [], - "Lets you add an email address, phone number, and physical address with improved markup for better SEO results.": [], - "Lets you add a physical address with Schema markup.": [], - "Address": [], - "Country": [], - "Postal/Zip Code": [], - "State/Province/Region": [], - "City": [], - "Address Line 3": [], - "Address Line 2": [], - "Street Address": [], - "Link address to Google Maps": [], - "Contact Info": [], - "Email Address": [], - "Email": [] -} \ No newline at end of file diff --git a/src/i18n-translations/jetpack/data/ca.json b/src/i18n-translations/jetpack/data/ca.json deleted file mode 100644 index e964488457..0000000000 --- a/src/i18n-translations/jetpack/data/ca.json +++ /dev/null @@ -1,108 +0,0 @@ -{ - "Embed a SmartFrame Image.": [], - "smartframe": [], - "Embed an Instagram post.": [], - "Embed a Facebook post.": [], - "Embed a Loom video.": [], - "video": [], - "Add an interactive story.": [], - "block search term\u0004video": [ - "vídeo" - ], - "block search term\u0004story": [], - "Story": [], - "Grow": [], - "Earn": [], - "block search term\u0004social": [], - "block search term\u0004address": [ - "adreça" - ], - "block search term\u0004phone": [ - "telèfon" - ], - "block search term\u0004message": [ - "missatge" - ], - "block search term\u0004image": [ - "imatge" - ], - "Lets you add an email address with an automatically generated click-to-email link.": [], - "Open address in Google Maps": [ - "Obre l'adreça a Google Maps" - ], - "block search term\u0004gallery": [ - "galeria" - ], - "block search term\u0004cell": [ - "cel·la" - ], - "block search term\u0004telephone": [ - "telèfon" - ], - "block search term\u0004mobile": [ - "mòbil" - ], - "block search term\u0004email": [ - "Correu electrònic" - ], - "block search term\u0004place": [ - "lloc" - ], - "block search term\u0004direction": [ - "direcció" - ], - "block search term\u0004location": [ - "ubicació" - ], - "Lets you add a phone number with an automatically generated click-to-call link.": [ - "Permet afegir un número de telèfon amb un enllaç de clic per trucar generat automàticament." - ], - "Phone Number": [ - "Número de telèfon" - ], - "Phone number": [ - "Número de telèfon" - ], - "Lets you add an email address, phone number, and physical address with improved markup for better SEO results.": [ - "Permet afegir una adreça de correu electrònic, un número de telèfon i una adreça física amb un marcatge millorat per obtenir millors resultats de SEO." - ], - "Lets you add a physical address with Schema markup.": [ - "Permet afegir una adreça física amb el marcatge d'Schema" - ], - "Address": [ - "Adreça" - ], - "Country": [ - "País" - ], - "Postal/Zip Code": [ - "Codi postal" - ], - "State/Province/Region": [ - "Estat/Província/Regió" - ], - "City": [ - "Ciutat" - ], - "Address Line 3": [ - "Línia d'adreça 3" - ], - "Address Line 2": [ - "Línia d'adreça 2" - ], - "Street Address": [ - "Adreça" - ], - "Link address to Google Maps": [ - "Enllaç a Google Maps" - ], - "Contact Info": [ - "Informació de contacte" - ], - "Email Address": [ - "Adreça de correu electrònic" - ], - "Email": [ - "Correu electrònic" - ] -} \ No newline at end of file diff --git a/src/i18n-translations/jetpack/data/cs.json b/src/i18n-translations/jetpack/data/cs.json deleted file mode 100644 index a3ffd1e4d4..0000000000 --- a/src/i18n-translations/jetpack/data/cs.json +++ /dev/null @@ -1,68 +0,0 @@ -{ - "Embed a SmartFrame Image.": [], - "smartframe": [], - "Embed an Instagram post.": [ - "Vložte příspěvek na Instagram." - ], - "Embed a Facebook post.": [ - "Vložte příspěvek na Facebooku." - ], - "Embed a Loom video.": [ - "Vložit Loom video." - ], - "video": [ - "video" - ], - "Add an interactive story.": [ - "Přidejte interaktivní příběh." - ], - "block search term\u0004video": [ - "video" - ], - "block search term\u0004story": [ - "Příběh" - ], - "Story": [ - "Příběh" - ], - "Grow": [], - "Earn": [], - "block search term\u0004social": [], - "block search term\u0004address": [], - "block search term\u0004phone": [], - "block search term\u0004message": [], - "block search term\u0004image": [], - "Lets you add an email address with an automatically generated click-to-email link.": [], - "Open address in Google Maps": [], - "block search term\u0004gallery": [], - "block search term\u0004cell": [], - "block search term\u0004telephone": [], - "block search term\u0004mobile": [], - "block search term\u0004email": [], - "block search term\u0004place": [], - "block search term\u0004direction": [], - "block search term\u0004location": [], - "Lets you add a phone number with an automatically generated click-to-call link.": [], - "Phone Number": [], - "Phone number": [], - "Lets you add an email address, phone number, and physical address with improved markup for better SEO results.": [], - "Lets you add a physical address with Schema markup.": [], - "Address": [], - "Country": [], - "Postal/Zip Code": [], - "State/Province/Region": [], - "City": [], - "Address Line 3": [], - "Address Line 2": [], - "Street Address": [], - "Link address to Google Maps": [], - "Contact Info": [ - "Kontaktní informace" - ], - "Email Address": [ - "E-mailová adresa" - ], - "Email": [ - "E-mail" - ] -} \ No newline at end of file diff --git a/src/i18n-translations/jetpack/data/cy.json b/src/i18n-translations/jetpack/data/cy.json deleted file mode 100644 index ed72d76588..0000000000 --- a/src/i18n-translations/jetpack/data/cy.json +++ /dev/null @@ -1,68 +0,0 @@ -{ - "Embed a SmartFrame Image.": [], - "smartframe": [], - "Embed an Instagram post.": [ - "Mewnblannu cofnod Instagram." - ], - "Embed a Facebook post.": [ - "Mewnblannu cofnod Facebook." - ], - "Embed a Loom video.": [ - "Fideo Mewnblannu ac Ymrithio." - ], - "video": [ - "fideo" - ], - "Add an interactive story.": [ - "Ychwanegwch stori ryngweithiol." - ], - "block search term\u0004video": [ - "fideo" - ], - "block search term\u0004story": [ - "stori" - ], - "Story": [ - "Stori" - ], - "Grow": [], - "Earn": [], - "block search term\u0004social": [], - "block search term\u0004address": [], - "block search term\u0004phone": [], - "block search term\u0004message": [], - "block search term\u0004image": [], - "Lets you add an email address with an automatically generated click-to-email link.": [], - "Open address in Google Maps": [], - "block search term\u0004gallery": [], - "block search term\u0004cell": [], - "block search term\u0004telephone": [], - "block search term\u0004mobile": [], - "block search term\u0004email": [], - "block search term\u0004place": [], - "block search term\u0004direction": [], - "block search term\u0004location": [], - "Lets you add a phone number with an automatically generated click-to-call link.": [], - "Phone Number": [], - "Phone number": [], - "Lets you add an email address, phone number, and physical address with improved markup for better SEO results.": [], - "Lets you add a physical address with Schema markup.": [], - "Address": [], - "Country": [], - "Postal/Zip Code": [], - "State/Province/Region": [], - "City": [], - "Address Line 3": [], - "Address Line 2": [], - "Street Address": [], - "Link address to Google Maps": [], - "Contact Info": [ - "Gwybodaeth Cysylltu" - ], - "Email Address": [ - "Cyfeiriad E-bost" - ], - "Email": [ - "E-bost" - ] -} \ No newline at end of file diff --git a/src/i18n-translations/jetpack/data/da.json b/src/i18n-translations/jetpack/data/da.json deleted file mode 100644 index 93a62ed169..0000000000 --- a/src/i18n-translations/jetpack/data/da.json +++ /dev/null @@ -1,52 +0,0 @@ -{ - "Embed a SmartFrame Image.": [], - "smartframe": [], - "Embed an Instagram post.": [], - "Embed a Facebook post.": [], - "Embed a Loom video.": [], - "video": [], - "Add an interactive story.": [], - "block search term\u0004video": [], - "block search term\u0004story": [], - "Story": [], - "Grow": [], - "Earn": [], - "block search term\u0004social": [], - "block search term\u0004address": [], - "block search term\u0004phone": [], - "block search term\u0004message": [], - "block search term\u0004image": [], - "Lets you add an email address with an automatically generated click-to-email link.": [], - "Open address in Google Maps": [], - "block search term\u0004gallery": [], - "block search term\u0004cell": [], - "block search term\u0004telephone": [], - "block search term\u0004mobile": [], - "block search term\u0004email": [], - "block search term\u0004place": [], - "block search term\u0004direction": [], - "block search term\u0004location": [], - "Lets you add a phone number with an automatically generated click-to-call link.": [], - "Phone Number": [], - "Phone number": [], - "Lets you add an email address, phone number, and physical address with improved markup for better SEO results.": [], - "Lets you add a physical address with Schema markup.": [], - "Address": [], - "Country": [], - "Postal/Zip Code": [], - "State/Province/Region": [], - "City": [], - "Address Line 3": [], - "Address Line 2": [], - "Street Address": [], - "Link address to Google Maps": [], - "Contact Info": [ - "Kontaktinformationer" - ], - "Email Address": [ - "E-mail-adresse" - ], - "Email": [ - "e-mail" - ] -} \ No newline at end of file diff --git a/src/i18n-translations/jetpack/data/de.json b/src/i18n-translations/jetpack/data/de.json deleted file mode 100644 index cb4aebab82..0000000000 --- a/src/i18n-translations/jetpack/data/de.json +++ /dev/null @@ -1,130 +0,0 @@ -{ - "Embed a SmartFrame Image.": [], - "smartframe": [], - "Embed an Instagram post.": [ - "Einen Instagram-Beitrag einbetten." - ], - "Embed a Facebook post.": [ - "Einen Facebook-Beitrag einbetten." - ], - "Embed a Loom video.": [ - "Bette ein Loom-Video ein." - ], - "video": [ - "Video" - ], - "Add an interactive story.": [ - "Füge eine interaktive Geschichte hinzu." - ], - "block search term\u0004video": [ - "Video" - ], - "block search term\u0004story": [ - "Geschichte" - ], - "Story": [ - "Geschichte" - ], - "Grow": [ - "Wachsen" - ], - "Earn": [ - "Geld verdienen" - ], - "block search term\u0004social": [ - "Social Media" - ], - "block search term\u0004address": [ - "Adresse" - ], - "block search term\u0004phone": [ - "Telefonnummer" - ], - "block search term\u0004message": [ - "Nachricht" - ], - "block search term\u0004image": [ - "Bild" - ], - "Lets you add an email address with an automatically generated click-to-email link.": [ - "Ermöglicht es dir, eine E-Mail-Adresse mit einem automatisch generierten E-Mail-Link hinzuzufügen." - ], - "Open address in Google Maps": [ - "Adresse in Google Maps öffnen" - ], - "block search term\u0004gallery": [ - "Galerie" - ], - "block search term\u0004cell": [ - "Zelle" - ], - "block search term\u0004telephone": [ - "Telefonnummer" - ], - "block search term\u0004mobile": [ - "Mobilnummer" - ], - "block search term\u0004email": [ - "E-Mail" - ], - "block search term\u0004place": [ - "Ort" - ], - "block search term\u0004direction": [ - "Richtung" - ], - "block search term\u0004location": [ - "Ort" - ], - "Lets you add a phone number with an automatically generated click-to-call link.": [ - "Ermöglicht es dir, eine Telefonnummer mit einem automatisch generierten Click-to-Call-Link hinzuzufügen." - ], - "Phone Number": [ - "Telefonnummer" - ], - "Phone number": [ - "Telefonnummer" - ], - "Lets you add an email address, phone number, and physical address with improved markup for better SEO results.": [ - "Ermöglicht es dir, eine E-Mail-Adresse, Telefonnummer und physische Adresse mit verbessertem Markup für bessere SEO-Ergebnisse hinzuzufügen." - ], - "Lets you add a physical address with Schema markup.": [ - "Ermöglicht es dir, eine physische Adresse mit Schema-Markup hinzuzufügen." - ], - "Address": [ - "Adresse" - ], - "Country": [ - "Land" - ], - "Postal/Zip Code": [ - "Postleitzahl" - ], - "State/Province/Region": [ - "Bundesland/Region" - ], - "City": [ - "Ort" - ], - "Address Line 3": [ - "Adresszeile 3" - ], - "Address Line 2": [ - "Adresse Zeile 2" - ], - "Street Address": [ - "Adresse" - ], - "Link address to Google Maps": [ - "Adresse mit Google Maps verknüpfen" - ], - "Contact Info": [ - "Kontaktinfo" - ], - "Email Address": [ - "E-Mail-Adresse" - ], - "Email": [ - "E-Mail" - ] -} \ No newline at end of file diff --git a/src/i18n-translations/jetpack/data/el.json b/src/i18n-translations/jetpack/data/el.json deleted file mode 100644 index e657610ef6..0000000000 --- a/src/i18n-translations/jetpack/data/el.json +++ /dev/null @@ -1,52 +0,0 @@ -{ - "Embed a SmartFrame Image.": [], - "smartframe": [], - "Embed an Instagram post.": [], - "Embed a Facebook post.": [], - "Embed a Loom video.": [], - "video": [], - "Add an interactive story.": [], - "block search term\u0004video": [], - "block search term\u0004story": [], - "Story": [], - "Grow": [], - "Earn": [], - "block search term\u0004social": [], - "block search term\u0004address": [], - "block search term\u0004phone": [], - "block search term\u0004message": [], - "block search term\u0004image": [], - "Lets you add an email address with an automatically generated click-to-email link.": [], - "Open address in Google Maps": [], - "block search term\u0004gallery": [], - "block search term\u0004cell": [], - "block search term\u0004telephone": [], - "block search term\u0004mobile": [], - "block search term\u0004email": [], - "block search term\u0004place": [], - "block search term\u0004direction": [], - "block search term\u0004location": [], - "Lets you add a phone number with an automatically generated click-to-call link.": [], - "Phone Number": [], - "Phone number": [], - "Lets you add an email address, phone number, and physical address with improved markup for better SEO results.": [], - "Lets you add a physical address with Schema markup.": [], - "Address": [], - "Country": [], - "Postal/Zip Code": [], - "State/Province/Region": [], - "City": [], - "Address Line 3": [], - "Address Line 2": [], - "Street Address": [], - "Link address to Google Maps": [], - "Contact Info": [ - "Στοιχεία επικοινωνίας" - ], - "Email Address": [ - "Διεύθυνση email" - ], - "Email": [ - "Email" - ] -} \ No newline at end of file diff --git a/src/i18n-translations/jetpack/data/en-au.json b/src/i18n-translations/jetpack/data/en-au.json deleted file mode 100644 index 010cab9fc4..0000000000 --- a/src/i18n-translations/jetpack/data/en-au.json +++ /dev/null @@ -1,112 +0,0 @@ -{ - "Embed a SmartFrame Image.": [], - "smartframe": [], - "Embed an Instagram post.": [], - "Embed a Facebook post.": [], - "Embed a Loom video.": [], - "video": [], - "Add an interactive story.": [], - "block search term\u0004video": [], - "block search term\u0004story": [], - "Story": [], - "Grow": [ - "Grow" - ], - "Earn": [ - "Earn" - ], - "block search term\u0004social": [], - "block search term\u0004address": [ - "address" - ], - "block search term\u0004phone": [ - "phone" - ], - "block search term\u0004message": [ - "message" - ], - "block search term\u0004image": [ - "image" - ], - "Lets you add an email address with an automatically generated click-to-email link.": [ - "Lets you add an email address with an automatically generated click-to-email link." - ], - "Open address in Google Maps": [ - "Open address in Google Maps" - ], - "block search term\u0004gallery": [ - "gallery" - ], - "block search term\u0004cell": [ - "cell" - ], - "block search term\u0004telephone": [ - "telephone" - ], - "block search term\u0004mobile": [ - "mobile" - ], - "block search term\u0004email": [ - "email" - ], - "block search term\u0004place": [ - "place" - ], - "block search term\u0004direction": [ - "direction" - ], - "block search term\u0004location": [ - "location" - ], - "Lets you add a phone number with an automatically generated click-to-call link.": [ - "Lets you add a phone number with an automatically generated click-to-call link." - ], - "Phone Number": [ - "Phone Number" - ], - "Phone number": [ - "Phone number" - ], - "Lets you add an email address, phone number, and physical address with improved markup for better SEO results.": [ - "Lets you add an email address, phone number, and physical address with improved markup for better SEO results." - ], - "Lets you add a physical address with Schema markup.": [ - "Lets you add a physical address with Schema markup." - ], - "Address": [ - "Address" - ], - "Country": [ - "Country" - ], - "Postal/Zip Code": [ - "Postal/Zip Code" - ], - "State/Province/Region": [ - "State/Province/Region" - ], - "City": [ - "City" - ], - "Address Line 3": [ - "Address Line 3" - ], - "Address Line 2": [ - "Address Line 2" - ], - "Street Address": [ - "Street Address" - ], - "Link address to Google Maps": [ - "Link address to Google Maps" - ], - "Contact Info": [ - "Contact Info" - ], - "Email Address": [ - "Email Address" - ], - "Email": [ - "Email" - ] -} \ No newline at end of file diff --git a/src/i18n-translations/jetpack/data/en-ca.json b/src/i18n-translations/jetpack/data/en-ca.json deleted file mode 100644 index de532dda19..0000000000 --- a/src/i18n-translations/jetpack/data/en-ca.json +++ /dev/null @@ -1,130 +0,0 @@ -{ - "Embed a SmartFrame Image.": [], - "smartframe": [], - "Embed an Instagram post.": [ - "Embed an Instagram post." - ], - "Embed a Facebook post.": [ - "Embed a Facebook post." - ], - "Embed a Loom video.": [ - "Embed a Loom video." - ], - "video": [ - "video" - ], - "Add an interactive story.": [ - "Add an interactive story." - ], - "block search term\u0004video": [ - "video" - ], - "block search term\u0004story": [ - "story" - ], - "Story": [ - "Story" - ], - "Grow": [ - "Grow" - ], - "Earn": [ - "Earn" - ], - "block search term\u0004social": [ - "social" - ], - "block search term\u0004address": [ - "address" - ], - "block search term\u0004phone": [ - "phone" - ], - "block search term\u0004message": [ - "message" - ], - "block search term\u0004image": [ - "image" - ], - "Lets you add an email address with an automatically generated click-to-email link.": [ - "Lets you add an email address with an automatically generated click-to-email link." - ], - "Open address in Google Maps": [ - "Open address in Google Maps" - ], - "block search term\u0004gallery": [ - "gallery" - ], - "block search term\u0004cell": [ - "cell" - ], - "block search term\u0004telephone": [ - "telephone" - ], - "block search term\u0004mobile": [ - "mobile" - ], - "block search term\u0004email": [ - "email" - ], - "block search term\u0004place": [ - "place" - ], - "block search term\u0004direction": [ - "direction" - ], - "block search term\u0004location": [ - "location" - ], - "Lets you add a phone number with an automatically generated click-to-call link.": [ - "Lets you add a phone number with an automatically generated click-to-call link." - ], - "Phone Number": [ - "Phone Number" - ], - "Phone number": [ - "Phone number" - ], - "Lets you add an email address, phone number, and physical address with improved markup for better SEO results.": [ - "Lets you add an email address, phone number, and physical address with improved markup for better SEO results." - ], - "Lets you add a physical address with Schema markup.": [ - "Lets you add a physical address with Schema markup." - ], - "Address": [ - "Address" - ], - "Country": [ - "Country" - ], - "Postal/Zip Code": [ - "Postal/Zip Code" - ], - "State/Province/Region": [ - "State/Province/Region" - ], - "City": [ - "City" - ], - "Address Line 3": [ - "Address Line 3" - ], - "Address Line 2": [ - "Address Line 2" - ], - "Street Address": [ - "Street Address" - ], - "Link address to Google Maps": [ - "Link address to Google Maps" - ], - "Contact Info": [ - "Contact Info" - ], - "Email Address": [ - "Email Address" - ], - "Email": [ - "Email" - ] -} \ No newline at end of file diff --git a/src/i18n-translations/jetpack/data/en-gb.json b/src/i18n-translations/jetpack/data/en-gb.json deleted file mode 100644 index e1eca9a24d..0000000000 --- a/src/i18n-translations/jetpack/data/en-gb.json +++ /dev/null @@ -1,130 +0,0 @@ -{ - "Embed a SmartFrame Image.": [], - "smartframe": [], - "Embed an Instagram post.": [ - "Embed an Instagram post." - ], - "Embed a Facebook post.": [ - "Embed a Facebook post." - ], - "Embed a Loom video.": [ - "Embed a Loom video." - ], - "video": [ - "video" - ], - "Add an interactive story.": [ - "Add an interactive story." - ], - "block search term\u0004video": [ - "video" - ], - "block search term\u0004story": [ - "story" - ], - "Story": [ - "Story" - ], - "Grow": [ - "Grow" - ], - "Earn": [ - "Earn" - ], - "block search term\u0004social": [ - "social" - ], - "block search term\u0004address": [ - "address" - ], - "block search term\u0004phone": [ - "phone" - ], - "block search term\u0004message": [ - "message" - ], - "block search term\u0004image": [ - "image" - ], - "Lets you add an email address with an automatically generated click-to-email link.": [ - "Lets you add an e-mail address with an automatically generated click-to-e-mail link." - ], - "Open address in Google Maps": [ - "Open address in Google Maps" - ], - "block search term\u0004gallery": [ - "gallery" - ], - "block search term\u0004cell": [ - "cell" - ], - "block search term\u0004telephone": [ - "telephone" - ], - "block search term\u0004mobile": [ - "mobile" - ], - "block search term\u0004email": [ - "e-mail" - ], - "block search term\u0004place": [ - "place" - ], - "block search term\u0004direction": [ - "direction" - ], - "block search term\u0004location": [ - "location" - ], - "Lets you add a phone number with an automatically generated click-to-call link.": [ - "Lets you add a phone number with an automatically generated click-to-call link." - ], - "Phone Number": [ - "Phone Number" - ], - "Phone number": [ - "Phone number" - ], - "Lets you add an email address, phone number, and physical address with improved markup for better SEO results.": [ - "Lets you add an e-mail address, phone number, and physical address with improved markup for better SEO results." - ], - "Lets you add a physical address with Schema markup.": [ - "Lets you add a physical address with Schema markup." - ], - "Address": [ - "Address" - ], - "Country": [ - "Country" - ], - "Postal/Zip Code": [ - "Postal/Zip Code" - ], - "State/Province/Region": [ - "State/Province/Region" - ], - "City": [ - "City" - ], - "Address Line 3": [ - "Address Line 3" - ], - "Address Line 2": [ - "Address Line 2" - ], - "Street Address": [ - "Street Address" - ], - "Link address to Google Maps": [ - "Link address to Google Maps" - ], - "Contact Info": [ - "Contact Info" - ], - "Email Address": [ - "Email Address" - ], - "Email": [ - "Email" - ] -} \ No newline at end of file diff --git a/src/i18n-translations/jetpack/data/en-nz.json b/src/i18n-translations/jetpack/data/en-nz.json deleted file mode 100644 index c5a9ba2052..0000000000 --- a/src/i18n-translations/jetpack/data/en-nz.json +++ /dev/null @@ -1,108 +0,0 @@ -{ - "Embed a SmartFrame Image.": [], - "smartframe": [], - "Embed an Instagram post.": [], - "Embed a Facebook post.": [], - "Embed a Loom video.": [], - "video": [], - "Add an interactive story.": [], - "block search term\u0004video": [], - "block search term\u0004story": [], - "Story": [], - "Grow": [], - "Earn": [], - "block search term\u0004social": [], - "block search term\u0004address": [ - "address" - ], - "block search term\u0004phone": [ - "phone" - ], - "block search term\u0004message": [ - "message" - ], - "block search term\u0004image": [ - "image" - ], - "Lets you add an email address with an automatically generated click-to-email link.": [ - "Lets you add an email address with an automatically generated click-to-email link." - ], - "Open address in Google Maps": [ - "Open address in Google Maps" - ], - "block search term\u0004gallery": [ - "gallery" - ], - "block search term\u0004cell": [ - "cell" - ], - "block search term\u0004telephone": [ - "telephone" - ], - "block search term\u0004mobile": [ - "mobile" - ], - "block search term\u0004email": [ - "email" - ], - "block search term\u0004place": [ - "place" - ], - "block search term\u0004direction": [ - "direction" - ], - "block search term\u0004location": [ - "location" - ], - "Lets you add a phone number with an automatically generated click-to-call link.": [ - "Lets you add a phone number with an automatically generated click-to-call link." - ], - "Phone Number": [ - "Phone Number" - ], - "Phone number": [ - "Phone number" - ], - "Lets you add an email address, phone number, and physical address with improved markup for better SEO results.": [ - "Lets you add an email address, phone number, and physical address with improved markup for better SEO results." - ], - "Lets you add a physical address with Schema markup.": [ - "Lets you add a physical address with Schema markup." - ], - "Address": [ - "Address" - ], - "Country": [ - "Country" - ], - "Postal/Zip Code": [ - "Postal/Zip Code" - ], - "State/Province/Region": [ - "State/Province/Region" - ], - "City": [ - "City" - ], - "Address Line 3": [ - "Address Line 3" - ], - "Address Line 2": [ - "Address Line 2" - ], - "Street Address": [ - "Street Address" - ], - "Link address to Google Maps": [ - "Link address to Google Maps" - ], - "Contact Info": [ - "Contact Info" - ], - "Email Address": [ - "Email Address" - ], - "Email": [ - "Email" - ] -} \ No newline at end of file diff --git a/src/i18n-translations/jetpack/data/en-za.json b/src/i18n-translations/jetpack/data/en-za.json deleted file mode 100644 index de532dda19..0000000000 --- a/src/i18n-translations/jetpack/data/en-za.json +++ /dev/null @@ -1,130 +0,0 @@ -{ - "Embed a SmartFrame Image.": [], - "smartframe": [], - "Embed an Instagram post.": [ - "Embed an Instagram post." - ], - "Embed a Facebook post.": [ - "Embed a Facebook post." - ], - "Embed a Loom video.": [ - "Embed a Loom video." - ], - "video": [ - "video" - ], - "Add an interactive story.": [ - "Add an interactive story." - ], - "block search term\u0004video": [ - "video" - ], - "block search term\u0004story": [ - "story" - ], - "Story": [ - "Story" - ], - "Grow": [ - "Grow" - ], - "Earn": [ - "Earn" - ], - "block search term\u0004social": [ - "social" - ], - "block search term\u0004address": [ - "address" - ], - "block search term\u0004phone": [ - "phone" - ], - "block search term\u0004message": [ - "message" - ], - "block search term\u0004image": [ - "image" - ], - "Lets you add an email address with an automatically generated click-to-email link.": [ - "Lets you add an email address with an automatically generated click-to-email link." - ], - "Open address in Google Maps": [ - "Open address in Google Maps" - ], - "block search term\u0004gallery": [ - "gallery" - ], - "block search term\u0004cell": [ - "cell" - ], - "block search term\u0004telephone": [ - "telephone" - ], - "block search term\u0004mobile": [ - "mobile" - ], - "block search term\u0004email": [ - "email" - ], - "block search term\u0004place": [ - "place" - ], - "block search term\u0004direction": [ - "direction" - ], - "block search term\u0004location": [ - "location" - ], - "Lets you add a phone number with an automatically generated click-to-call link.": [ - "Lets you add a phone number with an automatically generated click-to-call link." - ], - "Phone Number": [ - "Phone Number" - ], - "Phone number": [ - "Phone number" - ], - "Lets you add an email address, phone number, and physical address with improved markup for better SEO results.": [ - "Lets you add an email address, phone number, and physical address with improved markup for better SEO results." - ], - "Lets you add a physical address with Schema markup.": [ - "Lets you add a physical address with Schema markup." - ], - "Address": [ - "Address" - ], - "Country": [ - "Country" - ], - "Postal/Zip Code": [ - "Postal/Zip Code" - ], - "State/Province/Region": [ - "State/Province/Region" - ], - "City": [ - "City" - ], - "Address Line 3": [ - "Address Line 3" - ], - "Address Line 2": [ - "Address Line 2" - ], - "Street Address": [ - "Street Address" - ], - "Link address to Google Maps": [ - "Link address to Google Maps" - ], - "Contact Info": [ - "Contact Info" - ], - "Email Address": [ - "Email Address" - ], - "Email": [ - "Email" - ] -} \ No newline at end of file diff --git a/src/i18n-translations/jetpack/data/es-ar.json b/src/i18n-translations/jetpack/data/es-ar.json deleted file mode 100644 index 4b927e358e..0000000000 --- a/src/i18n-translations/jetpack/data/es-ar.json +++ /dev/null @@ -1,70 +0,0 @@ -{ - "Embed a SmartFrame Image.": [], - "smartframe": [], - "Embed an Instagram post.": [ - "Incrusta una publicación de Instagram." - ], - "Embed a Facebook post.": [ - "Incrusta una publicación de Facebook." - ], - "Embed a Loom video.": [ - "Incrusta un video de Loom." - ], - "video": [ - "video" - ], - "Add an interactive story.": [ - "Agregar una historia interactiva." - ], - "block search term\u0004video": [ - "video" - ], - "block search term\u0004story": [ - "historia" - ], - "Story": [ - "Historia" - ], - "Grow": [], - "Earn": [], - "block search term\u0004social": [ - "social" - ], - "block search term\u0004address": [], - "block search term\u0004phone": [], - "block search term\u0004message": [], - "block search term\u0004image": [], - "Lets you add an email address with an automatically generated click-to-email link.": [], - "Open address in Google Maps": [], - "block search term\u0004gallery": [], - "block search term\u0004cell": [], - "block search term\u0004telephone": [], - "block search term\u0004mobile": [], - "block search term\u0004email": [], - "block search term\u0004place": [], - "block search term\u0004direction": [], - "block search term\u0004location": [], - "Lets you add a phone number with an automatically generated click-to-call link.": [], - "Phone Number": [], - "Phone number": [], - "Lets you add an email address, phone number, and physical address with improved markup for better SEO results.": [], - "Lets you add a physical address with Schema markup.": [], - "Address": [], - "Country": [], - "Postal/Zip Code": [], - "State/Province/Region": [], - "City": [], - "Address Line 3": [], - "Address Line 2": [], - "Street Address": [], - "Link address to Google Maps": [], - "Contact Info": [ - "Información de contacto" - ], - "Email Address": [ - "Dirección de email" - ], - "Email": [ - "Correo electrónico" - ] -} \ No newline at end of file diff --git a/src/i18n-translations/jetpack/data/es-cl.json b/src/i18n-translations/jetpack/data/es-cl.json deleted file mode 100644 index be7026155d..0000000000 --- a/src/i18n-translations/jetpack/data/es-cl.json +++ /dev/null @@ -1,52 +0,0 @@ -{ - "Embed a SmartFrame Image.": [], - "smartframe": [], - "Embed an Instagram post.": [], - "Embed a Facebook post.": [], - "Embed a Loom video.": [], - "video": [], - "Add an interactive story.": [], - "block search term\u0004video": [], - "block search term\u0004story": [], - "Story": [], - "Grow": [], - "Earn": [], - "block search term\u0004social": [], - "block search term\u0004address": [], - "block search term\u0004phone": [], - "block search term\u0004message": [], - "block search term\u0004image": [], - "Lets you add an email address with an automatically generated click-to-email link.": [], - "Open address in Google Maps": [], - "block search term\u0004gallery": [], - "block search term\u0004cell": [], - "block search term\u0004telephone": [], - "block search term\u0004mobile": [], - "block search term\u0004email": [], - "block search term\u0004place": [], - "block search term\u0004direction": [], - "block search term\u0004location": [], - "Lets you add a phone number with an automatically generated click-to-call link.": [], - "Phone Number": [], - "Phone number": [], - "Lets you add an email address, phone number, and physical address with improved markup for better SEO results.": [], - "Lets you add a physical address with Schema markup.": [], - "Address": [], - "Country": [], - "Postal/Zip Code": [], - "State/Province/Region": [], - "City": [], - "Address Line 3": [], - "Address Line 2": [], - "Street Address": [], - "Link address to Google Maps": [], - "Contact Info": [ - "Información de contacto" - ], - "Email Address": [ - "Dirección de email" - ], - "Email": [ - "Correo electrónico" - ] -} \ No newline at end of file diff --git a/src/i18n-translations/jetpack/data/es-cr.json b/src/i18n-translations/jetpack/data/es-cr.json deleted file mode 100644 index e3d3d59bf2..0000000000 --- a/src/i18n-translations/jetpack/data/es-cr.json +++ /dev/null @@ -1,108 +0,0 @@ -{ - "Embed a SmartFrame Image.": [], - "smartframe": [], - "Embed an Instagram post.": [], - "Embed a Facebook post.": [], - "Embed a Loom video.": [], - "video": [], - "Add an interactive story.": [], - "block search term\u0004video": [], - "block search term\u0004story": [], - "Story": [], - "Grow": [], - "Earn": [], - "block search term\u0004social": [], - "block search term\u0004address": [ - "dirección" - ], - "block search term\u0004phone": [ - "teléfono" - ], - "block search term\u0004message": [ - "mensaje" - ], - "block search term\u0004image": [ - "imagen" - ], - "Lets you add an email address with an automatically generated click-to-email link.": [ - "Te permite añadir una dirección de correo electrónico con un enlace de clic a correo electrónico generado automáticamente." - ], - "Open address in Google Maps": [ - "Abrir dirección en Google Maps" - ], - "block search term\u0004gallery": [ - "galería" - ], - "block search term\u0004cell": [ - "celda" - ], - "block search term\u0004telephone": [ - "teléfono" - ], - "block search term\u0004mobile": [ - "móvil" - ], - "block search term\u0004email": [ - "correo electrónico" - ], - "block search term\u0004place": [ - "lugar" - ], - "block search term\u0004direction": [ - "dirección" - ], - "block search term\u0004location": [ - "ubicación" - ], - "Lets you add a phone number with an automatically generated click-to-call link.": [ - "Te permite añadir un número de teléfono con un enlace de clic a llamar generado automáticamente." - ], - "Phone Number": [ - "Número de teléfono" - ], - "Phone number": [ - "Número de teléfono" - ], - "Lets you add an email address, phone number, and physical address with improved markup for better SEO results.": [ - "Te permite añadir una dirección de correo electrónico, número de teléfono y dirección física con marcado mejorado para unos mejores resultados SEO." - ], - "Lets you add a physical address with Schema markup.": [ - "Te permite añadir una dirección física con marcado de Schema." - ], - "Address": [ - "Dirección" - ], - "Country": [ - "País" - ], - "Postal/Zip Code": [ - "Código postal" - ], - "State/Province/Region": [ - "Estado/Provincia/Región" - ], - "City": [ - "Ciudad" - ], - "Address Line 3": [ - "Dirección, línea 3" - ], - "Address Line 2": [ - "Dirección, línea 2" - ], - "Street Address": [ - "Dirección de la calle" - ], - "Link address to Google Maps": [ - "Dirección del enlace a Google Maps" - ], - "Contact Info": [ - "Información de contacto" - ], - "Email Address": [ - "Dirección de correo electrónico" - ], - "Email": [ - "Correo electrónico" - ] -} \ No newline at end of file diff --git a/src/i18n-translations/jetpack/data/es.json b/src/i18n-translations/jetpack/data/es.json deleted file mode 100644 index fe98e82352..0000000000 --- a/src/i18n-translations/jetpack/data/es.json +++ /dev/null @@ -1,130 +0,0 @@ -{ - "Embed a SmartFrame Image.": [], - "smartframe": [], - "Embed an Instagram post.": [ - "Incrusta una publicación de Instagram." - ], - "Embed a Facebook post.": [ - "Incrusta una publicación de Facebook." - ], - "Embed a Loom video.": [ - "Incrusta un vídeo de Loom." - ], - "video": [ - "vídeo" - ], - "Add an interactive story.": [ - "Añadir una historia interactiva." - ], - "block search term\u0004video": [ - "vídeo" - ], - "block search term\u0004story": [ - "historia" - ], - "Story": [ - "Historia" - ], - "Grow": [ - "Crece" - ], - "Earn": [ - "Ingresos" - ], - "block search term\u0004social": [ - "social" - ], - "block search term\u0004address": [ - "dirección" - ], - "block search term\u0004phone": [ - "teléfono" - ], - "block search term\u0004message": [ - "mensaje" - ], - "block search term\u0004image": [ - "imagen" - ], - "Lets you add an email address with an automatically generated click-to-email link.": [ - "Te permite añadir una dirección de correo electrónico con un enlace de clic a correo electrónico generado automáticamente." - ], - "Open address in Google Maps": [ - "Abrir dirección en Google Maps" - ], - "block search term\u0004gallery": [ - "galería" - ], - "block search term\u0004cell": [ - "celda" - ], - "block search term\u0004telephone": [ - "teléfono" - ], - "block search term\u0004mobile": [ - "móvil" - ], - "block search term\u0004email": [ - "correo electrónico" - ], - "block search term\u0004place": [ - "lugar" - ], - "block search term\u0004direction": [ - "dirección" - ], - "block search term\u0004location": [ - "ubicación" - ], - "Lets you add a phone number with an automatically generated click-to-call link.": [ - "Te permite añadir un número de teléfono con un enlace de clic a llamar generado automáticamente." - ], - "Phone Number": [ - "Número de teléfono" - ], - "Phone number": [ - "Número de teléfono" - ], - "Lets you add an email address, phone number, and physical address with improved markup for better SEO results.": [ - "Te permite añadir una dirección de correo electrónico, número de teléfono y dirección física con marcado mejorado para unos mejores resultados SEO." - ], - "Lets you add a physical address with Schema markup.": [ - "Te permite añadir una dirección física con marcado de Schema." - ], - "Address": [ - "Dirección" - ], - "Country": [ - "País" - ], - "Postal/Zip Code": [ - "Código postal" - ], - "State/Province/Region": [ - "Estado/Provincia/Región" - ], - "City": [ - "Ciudad" - ], - "Address Line 3": [ - "Dirección, línea 3" - ], - "Address Line 2": [ - "Dirección, línea 2" - ], - "Street Address": [ - "Dirección de la calle" - ], - "Link address to Google Maps": [ - "Dirección del enlace a Google Maps" - ], - "Contact Info": [ - "Información de contacto" - ], - "Email Address": [ - "Dirección de correo electrónico" - ], - "Email": [ - "Correo electrónico" - ] -} \ No newline at end of file diff --git a/src/i18n-translations/jetpack/data/fa.json b/src/i18n-translations/jetpack/data/fa.json deleted file mode 100644 index cb4cf3627d..0000000000 --- a/src/i18n-translations/jetpack/data/fa.json +++ /dev/null @@ -1,52 +0,0 @@ -{ - "Embed a SmartFrame Image.": [], - "smartframe": [], - "Embed an Instagram post.": [], - "Embed a Facebook post.": [], - "Embed a Loom video.": [], - "video": [], - "Add an interactive story.": [], - "block search term\u0004video": [], - "block search term\u0004story": [], - "Story": [], - "Grow": [], - "Earn": [], - "block search term\u0004social": [], - "block search term\u0004address": [], - "block search term\u0004phone": [], - "block search term\u0004message": [], - "block search term\u0004image": [], - "Lets you add an email address with an automatically generated click-to-email link.": [], - "Open address in Google Maps": [], - "block search term\u0004gallery": [], - "block search term\u0004cell": [], - "block search term\u0004telephone": [], - "block search term\u0004mobile": [], - "block search term\u0004email": [], - "block search term\u0004place": [], - "block search term\u0004direction": [], - "block search term\u0004location": [], - "Lets you add a phone number with an automatically generated click-to-call link.": [], - "Phone Number": [], - "Phone number": [], - "Lets you add an email address, phone number, and physical address with improved markup for better SEO results.": [], - "Lets you add a physical address with Schema markup.": [], - "Address": [], - "Country": [], - "Postal/Zip Code": [], - "State/Province/Region": [], - "City": [], - "Address Line 3": [], - "Address Line 2": [], - "Street Address": [], - "Link address to Google Maps": [], - "Contact Info": [ - "اطلاعات تماس" - ], - "Email Address": [ - "رایانشانی" - ], - "Email": [ - "رایانشانی" - ] -} \ No newline at end of file diff --git a/src/i18n-translations/jetpack/data/fr.json b/src/i18n-translations/jetpack/data/fr.json deleted file mode 100644 index fd427f55bd..0000000000 --- a/src/i18n-translations/jetpack/data/fr.json +++ /dev/null @@ -1,130 +0,0 @@ -{ - "Embed a SmartFrame Image.": [], - "smartframe": [], - "Embed an Instagram post.": [ - "Embarquer une publication Instagram." - ], - "Embed a Facebook post.": [ - "Embarquer une publication Facebook." - ], - "Embed a Loom video.": [ - "Intégrez une vidéo Loom." - ], - "video": [ - "Vidéo" - ], - "Add an interactive story.": [ - "Ajouter une story interactive." - ], - "block search term\u0004video": [ - "vidéo" - ], - "block search term\u0004story": [ - "story" - ], - "Story": [ - "Story" - ], - "Grow": [ - "Développer" - ], - "Earn": [ - "Rentabiliser" - ], - "block search term\u0004social": [ - "social" - ], - "block search term\u0004address": [ - "adresse" - ], - "block search term\u0004phone": [ - "téléphone" - ], - "block search term\u0004message": [ - "message" - ], - "block search term\u0004image": [ - "image" - ], - "Lets you add an email address with an automatically generated click-to-email link.": [ - "Vous permet d’ajouter une adresse e-mail avec génération automatique d’un lien « cliquer pour envoyer un e-mail »." - ], - "Open address in Google Maps": [ - "Ouvrir l’adresse dans Google Maps" - ], - "block search term\u0004gallery": [ - "galerie " - ], - "block search term\u0004cell": [ - "cellule" - ], - "block search term\u0004telephone": [ - "téléphone" - ], - "block search term\u0004mobile": [ - "mobile" - ], - "block search term\u0004email": [ - "email" - ], - "block search term\u0004place": [ - "emplacement" - ], - "block search term\u0004direction": [ - "adresse" - ], - "block search term\u0004location": [ - "emplacement" - ], - "Lets you add a phone number with an automatically generated click-to-call link.": [ - "Vous permet d’ajouter un numéro de téléphone avec génération automatique d’un lien « cliquer pour appeler »." - ], - "Phone Number": [ - "Numéro de téléphone" - ], - "Phone number": [ - "Numéro de téléphone" - ], - "Lets you add an email address, phone number, and physical address with improved markup for better SEO results.": [ - "Vous permet d’ajouter une adresse e-mail, un numéro de téléphone et une adresse physique tout en optimisant leur balisage afin d’améliorer les résultats de l’optimisation des moteurs de recherche." - ], - "Lets you add a physical address with Schema markup.": [ - "Vous permet d’ajouter une adresse physique avec un balisage du schéma." - ], - "Address": [ - "Adresse" - ], - "Country": [ - "Pays" - ], - "Postal/Zip Code": [ - "Code postal" - ], - "State/Province/Region": [ - "État/Province/Région" - ], - "City": [ - "Ville" - ], - "Address Line 3": [ - "Adresse ligne 3" - ], - "Address Line 2": [ - "Adresse ligne 2" - ], - "Street Address": [ - "Rue" - ], - "Link address to Google Maps": [ - "Lier l’adresse à Google Maps" - ], - "Contact Info": [ - "Informations de contact" - ], - "Email Address": [ - "Adresse e-mail" - ], - "Email": [ - "E-mail" - ] -} \ No newline at end of file diff --git a/src/i18n-translations/jetpack/data/gl.json b/src/i18n-translations/jetpack/data/gl.json deleted file mode 100644 index 8093e6c7d3..0000000000 --- a/src/i18n-translations/jetpack/data/gl.json +++ /dev/null @@ -1,130 +0,0 @@ -{ - "Embed a SmartFrame Image.": [], - "smartframe": [], - "Embed an Instagram post.": [ - "Incrusta unha publicación de Instagram." - ], - "Embed a Facebook post.": [ - "Incrusta unha publicación de Facebook." - ], - "Embed a Loom video.": [ - "Incrusta un vídeo de Loom." - ], - "video": [ - "vídeo" - ], - "Add an interactive story.": [ - "Engadir unha historia interactiva." - ], - "block search term\u0004video": [ - "vídeo" - ], - "block search term\u0004story": [ - "historia" - ], - "Story": [ - "Historia" - ], - "Grow": [ - "Crece" - ], - "Earn": [ - "Gana" - ], - "block search term\u0004social": [ - "social" - ], - "block search term\u0004address": [ - "dirección" - ], - "block search term\u0004phone": [ - "teléfono" - ], - "block search term\u0004message": [ - "mensaxe" - ], - "block search term\u0004image": [ - "imaxe" - ], - "Lets you add an email address with an automatically generated click-to-email link.": [ - "Permíteche engadir unha dirección de correo electrónico cun enlace de clic a correo electrónico xerado automaticamente." - ], - "Open address in Google Maps": [ - "Abrir dirección en Google Maps" - ], - "block search term\u0004gallery": [ - "galería" - ], - "block search term\u0004cell": [ - "celda" - ], - "block search term\u0004telephone": [ - "teléfono" - ], - "block search term\u0004mobile": [ - "móbil" - ], - "block search term\u0004email": [ - "correo electrónico" - ], - "block search term\u0004place": [ - "lugar" - ], - "block search term\u0004direction": [ - "dirección" - ], - "block search term\u0004location": [ - "ubicación" - ], - "Lets you add a phone number with an automatically generated click-to-call link.": [ - "Permíteche engadir un número de teléfono cun enlace de clic a chamar xerado automaticamente." - ], - "Phone Number": [ - "Número de teléfono" - ], - "Phone number": [ - "Número de teléfono" - ], - "Lets you add an email address, phone number, and physical address with improved markup for better SEO results.": [ - "Permíteche engadir unha dirección de correo electrónico, número de teléfono e dirección física con marcado mellorado para uns mellores resultados SEO." - ], - "Lets you add a physical address with Schema markup.": [ - "Permíteche engadir unha dirección física con marcado de Schema." - ], - "Address": [ - "Dirección" - ], - "Country": [ - "País" - ], - "Postal/Zip Code": [ - "Código postal" - ], - "State/Province/Region": [ - "Estado/Provincia/Rexión" - ], - "City": [ - "Cidade" - ], - "Address Line 3": [ - "Dirección, liña 3" - ], - "Address Line 2": [ - "Dirección, liña 2" - ], - "Street Address": [ - "Dirección da rúa" - ], - "Link address to Google Maps": [ - "Dirección do enlace a Google Maps" - ], - "Contact Info": [ - "Información de contacto" - ], - "Email Address": [ - "Enderezo de correo electrónico" - ], - "Email": [ - "Correo-e" - ] -} \ No newline at end of file diff --git a/src/i18n-translations/jetpack/data/he.json b/src/i18n-translations/jetpack/data/he.json deleted file mode 100644 index d66d6fa3dc..0000000000 --- a/src/i18n-translations/jetpack/data/he.json +++ /dev/null @@ -1,130 +0,0 @@ -{ - "Embed a SmartFrame Image.": [], - "smartframe": [], - "Embed an Instagram post.": [ - "הטמעה של פוסט מ-Instagram." - ], - "Embed a Facebook post.": [ - "הטמעה של תוכן מפייסבוק." - ], - "Embed a Loom video.": [ - "להטמיע סרטון מ-Loom." - ], - "video": [ - "וידאו" - ], - "Add an interactive story.": [ - "להוסיף סטורי אינטראקטיבי." - ], - "block search term\u0004video": [ - "וידאו" - ], - "block search term\u0004story": [ - "סטורי" - ], - "Story": [ - "סטורי" - ], - "Grow": [ - "צמיחה" - ], - "Earn": [ - "להרוויח" - ], - "block search term\u0004social": [ - "רשת חברתית" - ], - "block search term\u0004address": [ - "כתובת" - ], - "block search term\u0004phone": [ - "טלפון" - ], - "block search term\u0004message": [ - "הודעה" - ], - "block search term\u0004image": [ - "תמונה" - ], - "Lets you add an email address with an automatically generated click-to-email link.": [ - "הפעולה מאפשרת לך להוסיף כתובת אימייל וליצור באופן אוטומטי קישור לשליחת אימייל." - ], - "Open address in Google Maps": [ - "לפתוח את הכתובת ב-Google Maps" - ], - "block search term\u0004gallery": [ - "גלריה" - ], - "block search term\u0004cell": [ - "תא" - ], - "block search term\u0004telephone": [ - "טלפון" - ], - "block search term\u0004mobile": [ - "טלפון נייד" - ], - "block search term\u0004email": [ - "אימייל" - ], - "block search term\u0004place": [ - "מקום" - ], - "block search term\u0004direction": [ - "כיוון" - ], - "block search term\u0004location": [ - "מיקום" - ], - "Lets you add a phone number with an automatically generated click-to-call link.": [ - "הפעולה מאפשרת לך להוסיף טלפון נייד וליצור באופן אוטומטי קישור לביצוע שיחה." - ], - "Phone Number": [ - "מספר טלפון" - ], - "Phone number": [ - "מספר טלפון" - ], - "Lets you add an email address, phone number, and physical address with improved markup for better SEO results.": [ - "הפעולה מאפשרת לך להוסיף כתובת אימייל, מספר טלפון נייד וכתובת פיזית באמצעות שפת סימון טובה יותר לשיפור תוצאות SEO." - ], - "Lets you add a physical address with Schema markup.": [ - "הפעולה מאפשרת לך להוסיף כתובת פיזית עם שפת סימון סכמתית." - ], - "Address": [ - "כתובת" - ], - "Country": [ - "מדינה" - ], - "Postal/Zip Code": [ - "מיקוד" - ], - "State/Province/Region": [ - "מדינה / מחוז / אזור" - ], - "City": [ - "עיר" - ], - "Address Line 3": [ - "שורת כתובת 3" - ], - "Address Line 2": [ - "שורת כתובת 2" - ], - "Street Address": [ - "כתובת רחוב" - ], - "Link address to Google Maps": [ - "קישור הכתובת ל-Google Maps" - ], - "Contact Info": [ - "מידע ליצירת קשר" - ], - "Email Address": [ - "כתובת דואר אלקטרוני" - ], - "Email": [ - "אימייל" - ] -} \ No newline at end of file diff --git a/src/i18n-translations/jetpack/data/hr.json b/src/i18n-translations/jetpack/data/hr.json deleted file mode 100644 index 0fd4e0dc9f..0000000000 --- a/src/i18n-translations/jetpack/data/hr.json +++ /dev/null @@ -1,52 +0,0 @@ -{ - "Embed a SmartFrame Image.": [], - "smartframe": [], - "Embed an Instagram post.": [], - "Embed a Facebook post.": [], - "Embed a Loom video.": [], - "video": [], - "Add an interactive story.": [], - "block search term\u0004video": [], - "block search term\u0004story": [], - "Story": [], - "Grow": [], - "Earn": [], - "block search term\u0004social": [], - "block search term\u0004address": [], - "block search term\u0004phone": [], - "block search term\u0004message": [], - "block search term\u0004image": [], - "Lets you add an email address with an automatically generated click-to-email link.": [], - "Open address in Google Maps": [], - "block search term\u0004gallery": [], - "block search term\u0004cell": [], - "block search term\u0004telephone": [], - "block search term\u0004mobile": [], - "block search term\u0004email": [], - "block search term\u0004place": [], - "block search term\u0004direction": [], - "block search term\u0004location": [], - "Lets you add a phone number with an automatically generated click-to-call link.": [], - "Phone Number": [], - "Phone number": [], - "Lets you add an email address, phone number, and physical address with improved markup for better SEO results.": [], - "Lets you add a physical address with Schema markup.": [], - "Address": [], - "Country": [], - "Postal/Zip Code": [], - "State/Province/Region": [], - "City": [], - "Address Line 3": [], - "Address Line 2": [], - "Street Address": [], - "Link address to Google Maps": [], - "Contact Info": [ - "Kontakt podaci" - ], - "Email Address": [ - "Adresa e-pošte" - ], - "Email": [ - "E-pošta" - ] -} \ No newline at end of file diff --git a/src/i18n-translations/jetpack/data/hu.json b/src/i18n-translations/jetpack/data/hu.json deleted file mode 100644 index 8da822cdb8..0000000000 --- a/src/i18n-translations/jetpack/data/hu.json +++ /dev/null @@ -1,52 +0,0 @@ -{ - "Embed a SmartFrame Image.": [], - "smartframe": [], - "Embed an Instagram post.": [], - "Embed a Facebook post.": [], - "Embed a Loom video.": [], - "video": [], - "Add an interactive story.": [], - "block search term\u0004video": [], - "block search term\u0004story": [], - "Story": [], - "Grow": [], - "Earn": [], - "block search term\u0004social": [], - "block search term\u0004address": [], - "block search term\u0004phone": [], - "block search term\u0004message": [], - "block search term\u0004image": [], - "Lets you add an email address with an automatically generated click-to-email link.": [], - "Open address in Google Maps": [], - "block search term\u0004gallery": [], - "block search term\u0004cell": [], - "block search term\u0004telephone": [], - "block search term\u0004mobile": [], - "block search term\u0004email": [], - "block search term\u0004place": [], - "block search term\u0004direction": [], - "block search term\u0004location": [], - "Lets you add a phone number with an automatically generated click-to-call link.": [], - "Phone Number": [], - "Phone number": [], - "Lets you add an email address, phone number, and physical address with improved markup for better SEO results.": [], - "Lets you add a physical address with Schema markup.": [], - "Address": [], - "Country": [], - "Postal/Zip Code": [], - "State/Province/Region": [], - "City": [], - "Address Line 3": [], - "Address Line 2": [], - "Street Address": [], - "Link address to Google Maps": [], - "Contact Info": [ - "Kapcsolati adatok" - ], - "Email Address": [ - "Email cím" - ], - "Email": [ - "Email" - ] -} \ No newline at end of file diff --git a/src/i18n-translations/jetpack/data/id.json b/src/i18n-translations/jetpack/data/id.json deleted file mode 100644 index cbe72eb015..0000000000 --- a/src/i18n-translations/jetpack/data/id.json +++ /dev/null @@ -1,130 +0,0 @@ -{ - "Embed a SmartFrame Image.": [], - "smartframe": [], - "Embed an Instagram post.": [ - "Sematkan pos Instagram." - ], - "Embed a Facebook post.": [ - "Sematkan pos Facebook." - ], - "Embed a Loom video.": [ - "Sematkan video Loom." - ], - "video": [ - "video" - ], - "Add an interactive story.": [ - "Tambahkan cerita interaktif." - ], - "block search term\u0004video": [ - "video" - ], - "block search term\u0004story": [ - "cerita" - ], - "Story": [ - "Cerita" - ], - "Grow": [ - "Tumbuh" - ], - "Earn": [ - "Raih" - ], - "block search term\u0004social": [ - "sosial" - ], - "block search term\u0004address": [ - "alamat" - ], - "block search term\u0004phone": [ - "telepon" - ], - "block search term\u0004message": [ - "pesan" - ], - "block search term\u0004image": [ - "gambar" - ], - "Lets you add an email address with an automatically generated click-to-email link.": [ - "Memungkinkan Anda menambahkan alamat email dengan tautan klik-ke-email yang dibuat secara otomatis." - ], - "Open address in Google Maps": [ - "Buka alamat di Google Maps" - ], - "block search term\u0004gallery": [ - "galeri" - ], - "block search term\u0004cell": [ - "seluler" - ], - "block search term\u0004telephone": [ - "telepon" - ], - "block search term\u0004mobile": [ - "ponsel" - ], - "block search term\u0004email": [ - "email" - ], - "block search term\u0004place": [ - "tempat" - ], - "block search term\u0004direction": [ - "petunjuk arah" - ], - "block search term\u0004location": [ - "lokasi" - ], - "Lets you add a phone number with an automatically generated click-to-call link.": [ - "Memungkinkan Anda menambahkan nomor telepon dengan tautan klik untuk menelepon yang dibuat secara otomatis." - ], - "Phone Number": [ - "Nomor Telepon" - ], - "Phone number": [ - "Nomor telepon" - ], - "Lets you add an email address, phone number, and physical address with improved markup for better SEO results.": [ - "Memungkinkan Anda menambahkan alamat email, nomor telepon, dan alamat fisik dengan penandaan yang disempurnakan untuk hasil SEO yang lebih baik." - ], - "Lets you add a physical address with Schema markup.": [ - "Memungkinkan Anda menambahkan alamat fisik dengan penandaan Schema." - ], - "Address": [ - "Alamat" - ], - "Country": [ - "Negara" - ], - "Postal/Zip Code": [ - "Kode Pos/Zip" - ], - "State/Province/Region": [ - "Negara Bagian/Provinsi/Wilayah" - ], - "City": [ - "Kota" - ], - "Address Line 3": [ - "Baris Alamat 3" - ], - "Address Line 2": [ - "Baris Alamat 2" - ], - "Street Address": [ - "Alamat Jalan" - ], - "Link address to Google Maps": [ - "Tautkan alamat ke Google Maps" - ], - "Contact Info": [ - "Info Kontak" - ], - "Email Address": [ - "Alamat Surat Elektronik" - ], - "Email": [ - "Surel" - ] -} \ No newline at end of file diff --git a/src/i18n-translations/jetpack/data/is.json b/src/i18n-translations/jetpack/data/is.json deleted file mode 100644 index 4b252b53a2..0000000000 --- a/src/i18n-translations/jetpack/data/is.json +++ /dev/null @@ -1,52 +0,0 @@ -{ - "Embed a SmartFrame Image.": [], - "smartframe": [], - "Embed an Instagram post.": [], - "Embed a Facebook post.": [], - "Embed a Loom video.": [], - "video": [], - "Add an interactive story.": [], - "block search term\u0004video": [], - "block search term\u0004story": [], - "Story": [], - "Grow": [], - "Earn": [], - "block search term\u0004social": [], - "block search term\u0004address": [], - "block search term\u0004phone": [], - "block search term\u0004message": [], - "block search term\u0004image": [], - "Lets you add an email address with an automatically generated click-to-email link.": [], - "Open address in Google Maps": [], - "block search term\u0004gallery": [], - "block search term\u0004cell": [], - "block search term\u0004telephone": [], - "block search term\u0004mobile": [], - "block search term\u0004email": [], - "block search term\u0004place": [], - "block search term\u0004direction": [], - "block search term\u0004location": [], - "Lets you add a phone number with an automatically generated click-to-call link.": [], - "Phone Number": [], - "Phone number": [], - "Lets you add an email address, phone number, and physical address with improved markup for better SEO results.": [], - "Lets you add a physical address with Schema markup.": [], - "Address": [], - "Country": [], - "Postal/Zip Code": [], - "State/Province/Region": [], - "City": [], - "Address Line 3": [], - "Address Line 2": [], - "Street Address": [], - "Link address to Google Maps": [], - "Contact Info": [ - "Hvar má ná sambandi við þig?" - ], - "Email Address": [ - "Netfang" - ], - "Email": [ - "Tölvupóstur" - ] -} \ No newline at end of file diff --git a/src/i18n-translations/jetpack/data/it.json b/src/i18n-translations/jetpack/data/it.json deleted file mode 100644 index b471e3c86d..0000000000 --- a/src/i18n-translations/jetpack/data/it.json +++ /dev/null @@ -1,130 +0,0 @@ -{ - "Embed a SmartFrame Image.": [], - "smartframe": [], - "Embed an Instagram post.": [ - "Incorpora un articolo di Instagram." - ], - "Embed a Facebook post.": [ - "Incorpora un articolo di Facebook." - ], - "Embed a Loom video.": [ - "Incorpora un video Loom." - ], - "video": [ - "video" - ], - "Add an interactive story.": [ - "Aggiungi una storia interattiva." - ], - "block search term\u0004video": [ - "video" - ], - "block search term\u0004story": [ - "storia" - ], - "Story": [ - "Storia" - ], - "Grow": [ - "Cresci" - ], - "Earn": [ - "Guadagna" - ], - "block search term\u0004social": [ - "social" - ], - "block search term\u0004address": [ - "indirizzo" - ], - "block search term\u0004phone": [ - "telefono" - ], - "block search term\u0004message": [ - "messaggio" - ], - "block search term\u0004image": [ - "immagine" - ], - "Lets you add an email address with an automatically generated click-to-email link.": [ - "Consente di aggiungere un indirizzo e-mail con un link generato automaticamente su cui fare clic per le e-mail dirette." - ], - "Open address in Google Maps": [ - "Apri l'indirizzo su Google Maps" - ], - "block search term\u0004gallery": [ - "galleria" - ], - "block search term\u0004cell": [ - "cella" - ], - "block search term\u0004telephone": [ - "telefono" - ], - "block search term\u0004mobile": [ - "dispositivo mobile" - ], - "block search term\u0004email": [ - "email" - ], - "block search term\u0004place": [ - "luogo" - ], - "block search term\u0004direction": [ - "direzione" - ], - "block search term\u0004location": [ - "posizione" - ], - "Lets you add a phone number with an automatically generated click-to-call link.": [ - "Consente di aggiungere un numero di telefono con un link generato automaticamente su cui fare clic per le chiamate dirette." - ], - "Phone Number": [ - "Numero di telefono" - ], - "Phone number": [ - "Numero di telefono" - ], - "Lets you add an email address, phone number, and physical address with improved markup for better SEO results.": [ - "Consente di aggiungere un indirizzo e-mail, un numero di telefono e un indirizzo fisico con il markup perfezionato per migliori risultati SEO." - ], - "Lets you add a physical address with Schema markup.": [ - "Aggiungi un indirizzo fisico con il markup Schema." - ], - "Address": [ - "Indirizzo" - ], - "Country": [ - "Paese" - ], - "Postal/Zip Code": [ - "CAP" - ], - "State/Province/Region": [ - "Stato/Provincia/Regione" - ], - "City": [ - "Città" - ], - "Address Line 3": [ - "Linea 3 dell'indirizzo" - ], - "Address Line 2": [ - "Indirizzo - Linea 2" - ], - "Street Address": [ - "Indirizzo" - ], - "Link address to Google Maps": [ - "Indirizzo del link su Google Maps" - ], - "Contact Info": [ - "Informazioni di contatto" - ], - "Email Address": [ - "Indirizzo email" - ], - "Email": [ - "Email" - ] -} \ No newline at end of file diff --git a/src/i18n-translations/jetpack/data/ja.json b/src/i18n-translations/jetpack/data/ja.json deleted file mode 100644 index 6b3cde6d9c..0000000000 --- a/src/i18n-translations/jetpack/data/ja.json +++ /dev/null @@ -1,130 +0,0 @@ -{ - "Embed a SmartFrame Image.": [], - "smartframe": [], - "Embed an Instagram post.": [ - "Instagram 投稿を埋め込みます。" - ], - "Embed a Facebook post.": [ - "Facebook 投稿を埋め込みます。" - ], - "Embed a Loom video.": [ - "Loom 動画を埋め込みます。" - ], - "video": [ - "動画" - ], - "Add an interactive story.": [ - "インタラクティブなストーリーを追加します。" - ], - "block search term\u0004video": [ - "動画" - ], - "block search term\u0004story": [ - "ストーリー" - ], - "Story": [ - "ストーリー" - ], - "Grow": [ - "成長" - ], - "Earn": [ - "収益化" - ], - "block search term\u0004social": [ - "ソーシャル" - ], - "block search term\u0004address": [ - "アドレス" - ], - "block search term\u0004phone": [ - "電話" - ], - "block search term\u0004message": [ - "メッセージ" - ], - "block search term\u0004image": [ - "画像" - ], - "Lets you add an email address with an automatically generated click-to-email link.": [ - "自動的に生成されるメール作成リンクをクリックして、メールアドレスを追加できます。" - ], - "Open address in Google Maps": [ - "住所を Google マップで開く" - ], - "block search term\u0004gallery": [ - "ギャラリー" - ], - "block search term\u0004cell": [ - "セル" - ], - "block search term\u0004telephone": [ - "電話" - ], - "block search term\u0004mobile": [ - "モバイル" - ], - "block search term\u0004email": [ - "メール" - ], - "block search term\u0004place": [ - "位置" - ], - "block search term\u0004direction": [ - "手順" - ], - "block search term\u0004location": [ - "場所" - ], - "Lets you add a phone number with an automatically generated click-to-call link.": [ - "自動的に生成されるクリックトゥコールリンクを使用して電話番号を追加できます。" - ], - "Phone Number": [ - "電話番号" - ], - "Phone number": [ - "電話番号" - ], - "Lets you add an email address, phone number, and physical address with improved markup for better SEO results.": [ - "より正確な SEO 結果を得られるように強化されたマークアップを使用して、メールアドレス、電話番号、住所を追加できます。" - ], - "Lets you add a physical address with Schema markup.": [ - "スキーママークアップを使用して住所を追加できます。" - ], - "Address": [ - "住所" - ], - "Country": [ - "国" - ], - "Postal/Zip Code": [ - "郵便番号" - ], - "State/Province/Region": [ - "都道府県/地方/地域" - ], - "City": [ - "市区町村" - ], - "Address Line 3": [ - "住所3行目" - ], - "Address Line 2": [ - "住所2行目" - ], - "Street Address": [ - "住所1" - ], - "Link address to Google Maps": [ - "住所を Google マップにリンクする" - ], - "Contact Info": [ - "連絡先情報" - ], - "Email Address": [ - "メールアドレス" - ], - "Email": [ - "メール" - ] -} \ No newline at end of file diff --git a/src/i18n-translations/jetpack/data/ka.json b/src/i18n-translations/jetpack/data/ka.json deleted file mode 100644 index d4471362dd..0000000000 --- a/src/i18n-translations/jetpack/data/ka.json +++ /dev/null @@ -1,48 +0,0 @@ -{ - "Embed a SmartFrame Image.": [], - "smartframe": [], - "Embed an Instagram post.": [], - "Embed a Facebook post.": [], - "Embed a Loom video.": [], - "video": [], - "Add an interactive story.": [], - "block search term\u0004video": [], - "block search term\u0004story": [], - "Story": [], - "Grow": [], - "Earn": [], - "block search term\u0004social": [], - "block search term\u0004address": [], - "block search term\u0004phone": [], - "block search term\u0004message": [], - "block search term\u0004image": [], - "Lets you add an email address with an automatically generated click-to-email link.": [], - "Open address in Google Maps": [], - "block search term\u0004gallery": [], - "block search term\u0004cell": [], - "block search term\u0004telephone": [], - "block search term\u0004mobile": [], - "block search term\u0004email": [], - "block search term\u0004place": [], - "block search term\u0004direction": [], - "block search term\u0004location": [], - "Lets you add a phone number with an automatically generated click-to-call link.": [], - "Phone Number": [], - "Phone number": [], - "Lets you add an email address, phone number, and physical address with improved markup for better SEO results.": [], - "Lets you add a physical address with Schema markup.": [], - "Address": [], - "Country": [], - "Postal/Zip Code": [], - "State/Province/Region": [], - "City": [], - "Address Line 3": [], - "Address Line 2": [], - "Street Address": [], - "Link address to Google Maps": [], - "Contact Info": [ - "საკონტაქტო ინფორმაცია" - ], - "Email Address": [], - "Email": [] -} \ No newline at end of file diff --git a/src/i18n-translations/jetpack/data/ko.json b/src/i18n-translations/jetpack/data/ko.json deleted file mode 100644 index c93803b993..0000000000 --- a/src/i18n-translations/jetpack/data/ko.json +++ /dev/null @@ -1,130 +0,0 @@ -{ - "Embed a SmartFrame Image.": [], - "smartframe": [], - "Embed an Instagram post.": [ - "인스타그램 글을 삽입합니다." - ], - "Embed a Facebook post.": [ - "페이스북 글을 삽입합니다." - ], - "Embed a Loom video.": [ - "Loom 비디오를 삽입했습니다." - ], - "video": [ - "비디오" - ], - "Add an interactive story.": [ - "대화형 스토리를 추가합니다." - ], - "block search term\u0004video": [ - "비디오" - ], - "block search term\u0004story": [ - "스토리" - ], - "Story": [ - "스토리" - ], - "Grow": [ - "성장" - ], - "Earn": [ - "수익 창출" - ], - "block search term\u0004social": [ - "소셜" - ], - "block search term\u0004address": [ - "주소" - ], - "block search term\u0004phone": [ - "전화" - ], - "block search term\u0004message": [ - "메시지" - ], - "block search term\u0004image": [ - "이미지" - ], - "Lets you add an email address with an automatically generated click-to-email link.": [ - "자동 생성된 클릭 유도 이메일 링크가 포함된 이메일 주소를 추가할 수 있습니다." - ], - "Open address in Google Maps": [ - "Google 지도에서 주소 열기" - ], - "block search term\u0004gallery": [ - "갤러리" - ], - "block search term\u0004cell": [ - "셀" - ], - "block search term\u0004telephone": [ - "전화" - ], - "block search term\u0004mobile": [ - "모바일" - ], - "block search term\u0004email": [ - "이메일" - ], - "block search term\u0004place": [ - "검색어 차단" - ], - "block search term\u0004direction": [ - "검색어 차단" - ], - "block search term\u0004location": [ - "위치" - ], - "Lets you add a phone number with an automatically generated click-to-call link.": [ - "자동 생성된 클릭 유도 문안 링크가 포함된 전화번호를 추가할 수 있습니다." - ], - "Phone Number": [ - "전화번호" - ], - "Phone number": [ - "전화번호" - ], - "Lets you add an email address, phone number, and physical address with improved markup for better SEO results.": [ - "보다 나은 SEO 결과를 얻도록 마크업이 개선된 이메일 주소, 전화번호 및 실제 주소를 추가할 수 있습니다." - ], - "Lets you add a physical address with Schema markup.": [ - "스키마 마크업이 포함된 실제 주소를 추가할 수 있습니다." - ], - "Address": [ - "주소" - ], - "Country": [ - "국가" - ], - "Postal/Zip Code": [ - "우편 번호" - ], - "State/Province/Region": [ - "주/도/지역" - ], - "City": [ - "도시" - ], - "Address Line 3": [ - "주소 줄 3" - ], - "Address Line 2": [ - "주소 줄 2" - ], - "Street Address": [ - "주소" - ], - "Link address to Google Maps": [ - "주소를 Google 지도에 연결" - ], - "Contact Info": [ - "연락처" - ], - "Email Address": [ - "전자 우편 주소" - ], - "Email": [ - "이메일" - ] -} \ No newline at end of file diff --git a/src/i18n-translations/jetpack/data/nb.json b/src/i18n-translations/jetpack/data/nb.json deleted file mode 100644 index d530c75b23..0000000000 --- a/src/i18n-translations/jetpack/data/nb.json +++ /dev/null @@ -1,130 +0,0 @@ -{ - "Embed a SmartFrame Image.": [], - "smartframe": [], - "Embed an Instagram post.": [ - "Bygg inn et Instagram-innlegg" - ], - "Embed a Facebook post.": [ - "Bygg inn et Facebook-innlegg." - ], - "Embed a Loom video.": [ - "Bygg inn en Loom-video." - ], - "video": [ - "video" - ], - "Add an interactive story.": [ - "Legg til en interaktiv fortelling." - ], - "block search term\u0004video": [ - "video" - ], - "block search term\u0004story": [ - "fortelling" - ], - "Story": [ - "Fortelling" - ], - "Grow": [ - "Voks" - ], - "Earn": [ - "Tjen" - ], - "block search term\u0004social": [ - "sosialt" - ], - "block search term\u0004address": [ - "adresse" - ], - "block search term\u0004phone": [ - "telefon" - ], - "block search term\u0004message": [ - "melding" - ], - "block search term\u0004image": [ - "bilde" - ], - "Lets you add an email address with an automatically generated click-to-email link.": [ - "Lar deg legge til en e-postadresse med automatisk generert, klikkbar e-postlenke." - ], - "Open address in Google Maps": [ - "Åpne adresse i Google Kart" - ], - "block search term\u0004gallery": [ - "galleri" - ], - "block search term\u0004cell": [ - "celle" - ], - "block search term\u0004telephone": [ - "telefon" - ], - "block search term\u0004mobile": [ - "mobil" - ], - "block search term\u0004email": [ - "e-post" - ], - "block search term\u0004place": [ - "sted" - ], - "block search term\u0004direction": [ - "retning" - ], - "block search term\u0004location": [ - "stedsangivelse" - ], - "Lets you add a phone number with an automatically generated click-to-call link.": [ - "Lar deg legge til et telefonnummer med automatisk generert klikk-for-å-ringe-lenke." - ], - "Phone Number": [ - "Telefonnummer" - ], - "Phone number": [ - "Telefonnummer" - ], - "Lets you add an email address, phone number, and physical address with improved markup for better SEO results.": [ - "Lar deg legge til en e-postadresse, telefonnummer og fysisk adresse med forbedret markup for bedre SEO-resultater." - ], - "Lets you add a physical address with Schema markup.": [ - "Lar deg legge til en fysisk adresse i Schema-data." - ], - "Address": [ - "Adresse" - ], - "Country": [ - "Land" - ], - "Postal/Zip Code": [ - "Postnummer" - ], - "State/Province/Region": [ - "Fylke" - ], - "City": [ - "By" - ], - "Address Line 3": [ - "Adresselinje 3" - ], - "Address Line 2": [ - "Adresselinje 2" - ], - "Street Address": [ - "Vei-/gateadresse" - ], - "Link address to Google Maps": [ - "Lenke adresse til Google Kart" - ], - "Contact Info": [ - "Kontakt-informasjon" - ], - "Email Address": [ - "E-postadresse" - ], - "Email": [ - "E-post" - ] -} \ No newline at end of file diff --git a/src/i18n-translations/jetpack/data/nl-be.json b/src/i18n-translations/jetpack/data/nl-be.json deleted file mode 100644 index 11f101a851..0000000000 --- a/src/i18n-translations/jetpack/data/nl-be.json +++ /dev/null @@ -1,116 +0,0 @@ -{ - "Embed a SmartFrame Image.": [], - "smartframe": [], - "Embed an Instagram post.": [], - "Embed a Facebook post.": [], - "Embed a Loom video.": [], - "video": [ - "video" - ], - "Add an interactive story.": [], - "block search term\u0004video": [], - "block search term\u0004story": [], - "Story": [], - "Grow": [ - "Doorgroeien" - ], - "Earn": [ - "Verdienen" - ], - "block search term\u0004social": [ - "sociaal" - ], - "block search term\u0004address": [ - "adres" - ], - "block search term\u0004phone": [ - "telefoon" - ], - "block search term\u0004message": [ - "bericht" - ], - "block search term\u0004image": [ - "afbeelding" - ], - "Lets you add an email address with an automatically generated click-to-email link.": [ - "Hiermee kun je een e-mailadres met een automatisch gegenereerde link voor direct e-mailen toevoegen." - ], - "Open address in Google Maps": [ - "Adres openen in Google Maps" - ], - "block search term\u0004gallery": [ - "galerij" - ], - "block search term\u0004cell": [ - "mobiele telefoon" - ], - "block search term\u0004telephone": [ - "telefoon" - ], - "block search term\u0004mobile": [ - "mobiel" - ], - "block search term\u0004email": [ - "e-mail" - ], - "block search term\u0004place": [ - "plaats" - ], - "block search term\u0004direction": [ - "route" - ], - "block search term\u0004location": [ - "locatie" - ], - "Lets you add a phone number with an automatically generated click-to-call link.": [ - "Hiermee kun je een telefoonnummer met een automatisch gegenereerde link voor direct bellen toevoegen." - ], - "Phone Number": [ - "Telefoonnummer" - ], - "Phone number": [ - "Telefoonnummer" - ], - "Lets you add an email address, phone number, and physical address with improved markup for better SEO results.": [ - "Hiermee kun je een e-mailadres, telefoonnummer en fysiek adres toevoegen, met verbeterde opmaak voor betere SEO-resultaten." - ], - "Lets you add a physical address with Schema markup.": [ - "Hiermee kun je een fysiek adres met Schema-markering toevoegen." - ], - "Address": [ - "Adres" - ], - "Country": [ - "Land" - ], - "Postal/Zip Code": [ - "Postcode" - ], - "State/Province/Region": [ - "Staat/provincie/regio" - ], - "City": [ - "Stad" - ], - "Address Line 3": [ - "Adresregel 3" - ], - "Address Line 2": [ - "Adresregel 2" - ], - "Street Address": [ - "Woonadres" - ], - "Link address to Google Maps": [ - "Koppel adres aan Google Maps" - ], - "Contact Info": [ - "Contactinformatie" - ], - "Email Address": [ - "E-mailadres" - ], - "Email": [ - "E-mail" - ] -} \ No newline at end of file diff --git a/src/i18n-translations/jetpack/data/nl.json b/src/i18n-translations/jetpack/data/nl.json deleted file mode 100644 index 17b0ba654b..0000000000 --- a/src/i18n-translations/jetpack/data/nl.json +++ /dev/null @@ -1,130 +0,0 @@ -{ - "Embed a SmartFrame Image.": [], - "smartframe": [], - "Embed an Instagram post.": [ - "Sluit een Instagram bericht in." - ], - "Embed a Facebook post.": [ - "Sluit een Facebook bericht in." - ], - "Embed a Loom video.": [ - "Sluit een Loom video in." - ], - "video": [ - "video" - ], - "Add an interactive story.": [ - "Voeg een interactief verhaal toe." - ], - "block search term\u0004video": [ - "video" - ], - "block search term\u0004story": [ - "verhaal" - ], - "Story": [ - "Verhaal" - ], - "Grow": [ - "Doorgroeien" - ], - "Earn": [ - "Verdienen" - ], - "block search term\u0004social": [ - "sociaal" - ], - "block search term\u0004address": [ - "adres" - ], - "block search term\u0004phone": [ - "telefoon" - ], - "block search term\u0004message": [ - "bericht" - ], - "block search term\u0004image": [ - "afbeelding" - ], - "Lets you add an email address with an automatically generated click-to-email link.": [ - "Hiermee kun je een e-mailadres met een automatisch gegenereerde link voor direct e-mailen toevoegen." - ], - "Open address in Google Maps": [ - "Adres openen in Google Maps" - ], - "block search term\u0004gallery": [ - "galerij" - ], - "block search term\u0004cell": [ - "mobiele telefoon" - ], - "block search term\u0004telephone": [ - "telefoon" - ], - "block search term\u0004mobile": [ - "mobiel" - ], - "block search term\u0004email": [ - "e-mail" - ], - "block search term\u0004place": [ - "plaats" - ], - "block search term\u0004direction": [ - "route" - ], - "block search term\u0004location": [ - "locatie" - ], - "Lets you add a phone number with an automatically generated click-to-call link.": [ - "Hiermee kun je een telefoonnummer met een automatisch gegenereerde link voor direct bellen toevoegen." - ], - "Phone Number": [ - "Telefoonnummer" - ], - "Phone number": [ - "Telefoonnummer" - ], - "Lets you add an email address, phone number, and physical address with improved markup for better SEO results.": [ - "Hiermee kun je een e-mailadres, telefoonnummer en fysiek adres toevoegen, met verbeterde opmaak voor betere SEO-resultaten." - ], - "Lets you add a physical address with Schema markup.": [ - "Hiermee kun je een fysiek adres met Schema-markering toevoegen." - ], - "Address": [ - "Adres" - ], - "Country": [ - "Land" - ], - "Postal/Zip Code": [ - "Postcode" - ], - "State/Province/Region": [ - "Staat/provincie/regio" - ], - "City": [ - "Stad" - ], - "Address Line 3": [ - "Adresregel 3" - ], - "Address Line 2": [ - "Adresregel 2" - ], - "Street Address": [ - "Woonadres" - ], - "Link address to Google Maps": [ - "Koppel adres aan Google Maps" - ], - "Contact Info": [ - "Contactinformatie" - ], - "Email Address": [ - "E-mailadres" - ], - "Email": [ - "E-mailadres" - ] -} \ No newline at end of file diff --git a/src/i18n-translations/jetpack/data/pl.json b/src/i18n-translations/jetpack/data/pl.json deleted file mode 100644 index a80541762b..0000000000 --- a/src/i18n-translations/jetpack/data/pl.json +++ /dev/null @@ -1,58 +0,0 @@ -{ - "Embed a SmartFrame Image.": [], - "smartframe": [], - "Embed an Instagram post.": [ - "Osadź wpis z Instagram." - ], - "Embed a Facebook post.": [ - "Osadź wpis z Facebook." - ], - "Embed a Loom video.": [], - "video": [ - "film" - ], - "Add an interactive story.": [], - "block search term\u0004video": [], - "block search term\u0004story": [], - "Story": [], - "Grow": [], - "Earn": [], - "block search term\u0004social": [], - "block search term\u0004address": [], - "block search term\u0004phone": [], - "block search term\u0004message": [], - "block search term\u0004image": [], - "Lets you add an email address with an automatically generated click-to-email link.": [], - "Open address in Google Maps": [], - "block search term\u0004gallery": [], - "block search term\u0004cell": [], - "block search term\u0004telephone": [], - "block search term\u0004mobile": [], - "block search term\u0004email": [], - "block search term\u0004place": [], - "block search term\u0004direction": [], - "block search term\u0004location": [], - "Lets you add a phone number with an automatically generated click-to-call link.": [], - "Phone Number": [], - "Phone number": [], - "Lets you add an email address, phone number, and physical address with improved markup for better SEO results.": [], - "Lets you add a physical address with Schema markup.": [], - "Address": [], - "Country": [], - "Postal/Zip Code": [], - "State/Province/Region": [], - "City": [], - "Address Line 3": [], - "Address Line 2": [], - "Street Address": [], - "Link address to Google Maps": [], - "Contact Info": [ - "Dane kontaktowe" - ], - "Email Address": [ - "Adres e-mail" - ], - "Email": [ - "E-mail" - ] -} \ No newline at end of file diff --git a/src/i18n-translations/jetpack/data/pt-br.json b/src/i18n-translations/jetpack/data/pt-br.json deleted file mode 100644 index e7d5c5f421..0000000000 --- a/src/i18n-translations/jetpack/data/pt-br.json +++ /dev/null @@ -1,130 +0,0 @@ -{ - "Embed a SmartFrame Image.": [], - "smartframe": [], - "Embed an Instagram post.": [ - "Incorporar um post do Instagram." - ], - "Embed a Facebook post.": [ - "Incorporar um post do Facebook." - ], - "Embed a Loom video.": [ - "Incorpore um vídeo do Loom." - ], - "video": [ - "vídeo" - ], - "Add an interactive story.": [ - "Adicione uma história interativa." - ], - "block search term\u0004video": [ - "vídeo" - ], - "block search term\u0004story": [ - "história" - ], - "Story": [ - "História" - ], - "Grow": [ - "Cresça" - ], - "Earn": [ - "Ganhe" - ], - "block search term\u0004social": [ - "social" - ], - "block search term\u0004address": [ - "endereço" - ], - "block search term\u0004phone": [ - "telefone" - ], - "block search term\u0004message": [ - "mensagem" - ], - "block search term\u0004image": [ - "imagem" - ], - "Lets you add an email address with an automatically generated click-to-email link.": [ - "Permite que você adicione um endereço de e-mail com um link para envio gerado automaticamente." - ], - "Open address in Google Maps": [ - "Abrir endereço no Google Maps" - ], - "block search term\u0004gallery": [ - "galeria" - ], - "block search term\u0004cell": [ - "celular" - ], - "block search term\u0004telephone": [ - "telefone" - ], - "block search term\u0004mobile": [ - "dispositivo móvel" - ], - "block search term\u0004email": [ - "e-mail" - ], - "block search term\u0004place": [ - "lugar" - ], - "block search term\u0004direction": [ - "direção" - ], - "block search term\u0004location": [ - "localização" - ], - "Lets you add a phone number with an automatically generated click-to-call link.": [ - "Permite que você adicione um número de telefone com um link de clique para discar." - ], - "Phone Number": [ - "Número do telefone" - ], - "Phone number": [ - "Número do telefone" - ], - "Lets you add an email address, phone number, and physical address with improved markup for better SEO results.": [ - "Permite que você adicione um endereço de e-mail, número de telefone e endereço físico para melhores resultados de SEO." - ], - "Lets you add a physical address with Schema markup.": [ - "Permite que você adicione um endereço físico com marcação Schema." - ], - "Address": [ - "Endereço" - ], - "Country": [ - "País" - ], - "Postal/Zip Code": [ - "CEP" - ], - "State/Province/Region": [ - "Estado" - ], - "City": [ - "Cidade" - ], - "Address Line 3": [ - "Linha de endereço 3" - ], - "Address Line 2": [ - "Linha de endereço 2" - ], - "Street Address": [ - "Logradouro" - ], - "Link address to Google Maps": [ - "Link para os mapas do Google" - ], - "Contact Info": [ - "Informações de contato" - ], - "Email Address": [ - "Endereço de e-mail" - ], - "Email": [ - "E-mail" - ] -} \ No newline at end of file diff --git a/src/i18n-translations/jetpack/data/pt.json b/src/i18n-translations/jetpack/data/pt.json deleted file mode 100644 index a595a6e0de..0000000000 --- a/src/i18n-translations/jetpack/data/pt.json +++ /dev/null @@ -1,52 +0,0 @@ -{ - "Embed a SmartFrame Image.": [], - "smartframe": [], - "Embed an Instagram post.": [], - "Embed a Facebook post.": [], - "Embed a Loom video.": [], - "video": [], - "Add an interactive story.": [], - "block search term\u0004video": [], - "block search term\u0004story": [], - "Story": [], - "Grow": [], - "Earn": [], - "block search term\u0004social": [], - "block search term\u0004address": [], - "block search term\u0004phone": [], - "block search term\u0004message": [], - "block search term\u0004image": [], - "Lets you add an email address with an automatically generated click-to-email link.": [], - "Open address in Google Maps": [], - "block search term\u0004gallery": [], - "block search term\u0004cell": [], - "block search term\u0004telephone": [], - "block search term\u0004mobile": [], - "block search term\u0004email": [], - "block search term\u0004place": [], - "block search term\u0004direction": [], - "block search term\u0004location": [], - "Lets you add a phone number with an automatically generated click-to-call link.": [], - "Phone Number": [], - "Phone number": [], - "Lets you add an email address, phone number, and physical address with improved markup for better SEO results.": [], - "Lets you add a physical address with Schema markup.": [], - "Address": [], - "Country": [], - "Postal/Zip Code": [], - "State/Province/Region": [], - "City": [], - "Address Line 3": [], - "Address Line 2": [], - "Street Address": [], - "Link address to Google Maps": [], - "Contact Info": [ - "Informações de contacto" - ], - "Email Address": [ - "Endereço de email" - ], - "Email": [ - "Email" - ] -} \ No newline at end of file diff --git a/src/i18n-translations/jetpack/data/ro.json b/src/i18n-translations/jetpack/data/ro.json deleted file mode 100644 index c7502858e9..0000000000 --- a/src/i18n-translations/jetpack/data/ro.json +++ /dev/null @@ -1,134 +0,0 @@ -{ - "Embed a SmartFrame Image.": [ - "Înglobează o imagine SmartFrame." - ], - "smartframe": [ - "smartframe" - ], - "Embed an Instagram post.": [ - "Înglobează un articol Instagram." - ], - "Embed a Facebook post.": [ - "Înglobează un articol Facebook." - ], - "Embed a Loom video.": [ - "Înglobează un video Loom." - ], - "video": [ - "video" - ], - "Add an interactive story.": [ - "Adaugă o narațiune interactivă." - ], - "block search term\u0004video": [ - "video" - ], - "block search term\u0004story": [ - "narațiune" - ], - "Story": [ - "Narațiune" - ], - "Grow": [ - "Dezvoltă" - ], - "Earn": [ - "Câștigă" - ], - "block search term\u0004social": [ - "social" - ], - "block search term\u0004address": [ - "adresă" - ], - "block search term\u0004phone": [ - "telefon" - ], - "block search term\u0004message": [ - "mesaj" - ], - "block search term\u0004image": [ - "imagine" - ], - "Lets you add an email address with an automatically generated click-to-email link.": [ - "Îți permite să adaugi o adresă de email cu o legătură „dă clic pe email” generată automat." - ], - "Open address in Google Maps": [ - "Deschide adresa în Hărți Google" - ], - "block search term\u0004gallery": [ - "galerie" - ], - "block search term\u0004cell": [ - "celular" - ], - "block search term\u0004telephone": [ - "telefon" - ], - "block search term\u0004mobile": [ - "mobil" - ], - "block search term\u0004email": [ - "email" - ], - "block search term\u0004place": [ - "loc" - ], - "block search term\u0004direction": [ - "direcție" - ], - "block search term\u0004location": [ - "locație" - ], - "Lets you add a phone number with an automatically generated click-to-call link.": [ - "Îți permite să adaugi un număr de telefon cu o legătură „Dă clic pentru apelare” generată automat." - ], - "Phone Number": [ - "Număr de telefon" - ], - "Phone number": [ - "Număr de telefon" - ], - "Lets you add an email address, phone number, and physical address with improved markup for better SEO results.": [ - "Îți permite să adaugi o adresă de email, un număr de telefon și o adresă fizică cu markup îmbunătățit, pentru rezultate SEO mai bune." - ], - "Lets you add a physical address with Schema markup.": [ - "Îți permite să adaugi o adresă fizică cu Schema markup." - ], - "Address": [ - "Adresă" - ], - "Country": [ - "Țară" - ], - "Postal/Zip Code": [ - "Cod poștal (ZIP)" - ], - "State/Province/Region": [ - "Județ/provincie/regiune" - ], - "City": [ - "Oraș" - ], - "Address Line 3": [ - "A treia linie a adresei" - ], - "Address Line 2": [ - "A doua linie a adresei" - ], - "Street Address": [ - "Stradă" - ], - "Link address to Google Maps": [ - "Leagă adresa la Hărți Google" - ], - "Contact Info": [ - "Informații de contact" - ], - "Email Address": [ - "Adresă email" - ], - "Email": [ - "Email" - ] -} \ No newline at end of file diff --git a/src/i18n-translations/jetpack/data/ru.json b/src/i18n-translations/jetpack/data/ru.json deleted file mode 100644 index 4a1158280c..0000000000 --- a/src/i18n-translations/jetpack/data/ru.json +++ /dev/null @@ -1,130 +0,0 @@ -{ - "Embed a SmartFrame Image.": [], - "smartframe": [], - "Embed an Instagram post.": [ - "Вставить запись Instagram." - ], - "Embed a Facebook post.": [ - "Вставить запись Facebook." - ], - "Embed a Loom video.": [ - "Вставить видео Loom." - ], - "video": [ - "видео" - ], - "Add an interactive story.": [ - "Добавьте интерактивную историю." - ], - "block search term\u0004video": [ - "видео" - ], - "block search term\u0004story": [ - "история" - ], - "Story": [ - "История" - ], - "Grow": [ - "Развивайтесь" - ], - "Earn": [ - "Зарабатывайте" - ], - "block search term\u0004social": [ - "социальные сети" - ], - "block search term\u0004address": [ - "адрес" - ], - "block search term\u0004phone": [ - "телефон" - ], - "block search term\u0004message": [ - "сообщение" - ], - "block search term\u0004image": [ - "изображение" - ], - "Lets you add an email address with an automatically generated click-to-email link.": [ - "Позволяет добавить адрес электронной почты и автоматически создает ссылку для отправки сообщения одним нажатием." - ], - "Open address in Google Maps": [ - "Открыть адрес в Google Картах" - ], - "block search term\u0004gallery": [ - "галерея" - ], - "block search term\u0004cell": [ - "сотовый" - ], - "block search term\u0004telephone": [ - "телефон" - ], - "block search term\u0004mobile": [ - "мобильный телефон" - ], - "block search term\u0004email": [ - "эл. почта" - ], - "block search term\u0004place": [ - "место" - ], - "block search term\u0004direction": [ - "направление" - ], - "block search term\u0004location": [ - "расположение" - ], - "Lets you add a phone number with an automatically generated click-to-call link.": [ - "Позволяет добавить телефонный номер со ссылкой, позволяющей позвонить при нажатии." - ], - "Phone Number": [ - "Номер телефона" - ], - "Phone number": [ - "Телефон" - ], - "Lets you add an email address, phone number, and physical address with improved markup for better SEO results.": [ - "Позволяет добавить адрес электронной почты, номер телефона и почтовый адрес с улучшенной разметкой для поисковой оптимизации." - ], - "Lets you add a physical address with Schema markup.": [ - "Позволяет добавить почтовый адрес с синтаксической разметкой." - ], - "Address": [ - "Адрес" - ], - "Country": [ - "Страна" - ], - "Postal/Zip Code": [ - "Почтовый индекс" - ], - "State/Province/Region": [ - "Штат/провинция/регион" - ], - "City": [ - "Город" - ], - "Address Line 3": [ - "Адресная строка 3" - ], - "Address Line 2": [ - "Адресная строка 2" - ], - "Street Address": [ - "Адрес с указанием улицы и номера дома" - ], - "Link address to Google Maps": [ - "Добавить в адрес ссылку на Google Карты" - ], - "Contact Info": [ - "Контакты" - ], - "Email Address": [ - "Email адрес" - ], - "Email": [ - "Email" - ] -} \ No newline at end of file diff --git a/src/i18n-translations/jetpack/data/sk.json b/src/i18n-translations/jetpack/data/sk.json deleted file mode 100644 index a8b023abc2..0000000000 --- a/src/i18n-translations/jetpack/data/sk.json +++ /dev/null @@ -1,54 +0,0 @@ -{ - "Embed a SmartFrame Image.": [], - "smartframe": [], - "Embed an Instagram post.": [], - "Embed a Facebook post.": [], - "Embed a Loom video.": [], - "video": [], - "Add an interactive story.": [], - "block search term\u0004video": [], - "block search term\u0004story": [], - "Story": [ - "Príbeh" - ], - "Grow": [], - "Earn": [], - "block search term\u0004social": [], - "block search term\u0004address": [], - "block search term\u0004phone": [], - "block search term\u0004message": [], - "block search term\u0004image": [], - "Lets you add an email address with an automatically generated click-to-email link.": [], - "Open address in Google Maps": [], - "block search term\u0004gallery": [], - "block search term\u0004cell": [], - "block search term\u0004telephone": [], - "block search term\u0004mobile": [], - "block search term\u0004email": [], - "block search term\u0004place": [], - "block search term\u0004direction": [], - "block search term\u0004location": [], - "Lets you add a phone number with an automatically generated click-to-call link.": [], - "Phone Number": [], - "Phone number": [], - "Lets you add an email address, phone number, and physical address with improved markup for better SEO results.": [], - "Lets you add a physical address with Schema markup.": [], - "Address": [], - "Country": [], - "Postal/Zip Code": [], - "State/Province/Region": [], - "City": [], - "Address Line 3": [], - "Address Line 2": [], - "Street Address": [], - "Link address to Google Maps": [], - "Contact Info": [ - "Kontaktné údaje" - ], - "Email Address": [ - "E-mailová adresa" - ], - "Email": [ - "E-mail" - ] -} \ No newline at end of file diff --git a/src/i18n-translations/jetpack/data/sq.json b/src/i18n-translations/jetpack/data/sq.json deleted file mode 100644 index 504c9ee578..0000000000 --- a/src/i18n-translations/jetpack/data/sq.json +++ /dev/null @@ -1,134 +0,0 @@ -{ - "Embed a SmartFrame Image.": [ - "Trupëzoni një Figurë SmartFrame." - ], - "smartframe": [ - "smartframe" - ], - "Embed an Instagram post.": [ - "Trupëzoni postim Instagram." - ], - "Embed a Facebook post.": [ - "Trupëzoni postim Facebook." - ], - "Embed a Loom video.": [ - "Trupëzoni video Loom." - ], - "video": [ - "video" - ], - "Add an interactive story.": [ - "Shtoni një artikull ndërveprues." - ], - "block search term\u0004video": [ - "video" - ], - "block search term\u0004story": [ - "artikull" - ], - "Story": [ - "Artikull" - ], - "Grow": [ - "Fuqizoje" - ], - "Earn": [ - "Fitoni" - ], - "block search term\u0004social": [ - "shoqëror" - ], - "block search term\u0004address": [ - "adresë" - ], - "block search term\u0004phone": [ - "telefon" - ], - "block search term\u0004message": [ - "mesazh" - ], - "block search term\u0004image": [ - "figurë" - ], - "Lets you add an email address with an automatically generated click-to-email link.": [ - "Ju lejon shtimin e një adrese email me një lidhje të prodhuar vetvetiu për dërgim email-i, nëse klikohet mbi të." - ], - "Open address in Google Maps": [ - "Hape adresën në Google Maps" - ], - "block search term\u0004gallery": [ - "galeri" - ], - "block search term\u0004cell": [ - "kutizë" - ], - "block search term\u0004telephone": [ - "telefon" - ], - "block search term\u0004mobile": [ - "celular" - ], - "block search term\u0004email": [ - "email" - ], - "block search term\u0004place": [ - "vend" - ], - "block search term\u0004direction": [ - "drejtim" - ], - "block search term\u0004location": [ - "vendndodhje" - ], - "Lets you add a phone number with an automatically generated click-to-call link.": [ - "Ju lejon shtimin e një numri telefoni me një lidhje klikojeni-për-thirrje, të prodhuar vetvetiu." - ], - "Phone Number": [ - "Numër Telefoni" - ], - "Phone number": [ - "Numër telefoni" - ], - "Lets you add an email address, phone number, and physical address with improved markup for better SEO results.": [ - "Ju lejon të shtoni një adresë email, numër telefoni dhe adresë fizike , me markup të përmirësuar, për përfundime SEO më të mira." - ], - "Lets you add a physical address with Schema markup.": [ - "Ju lejon të shtoni një adresë fizike përmes markup-i Schema." - ], - "Address": [ - "Adresë" - ], - "Country": [ - "Vend" - ], - "Postal/Zip Code": [ - "Kod Zip/Postar" - ], - "State/Province/Region": [ - "Shtet/Provincë/Rajon" - ], - "City": [ - "Qytet" - ], - "Address Line 3": [ - "Rresht 3 Adrese" - ], - "Address Line 2": [ - "Rresht 2 Adrese" - ], - "Street Address": [ - "Adresë Rruge" - ], - "Link address to Google Maps": [ - "Lidhni adresë te Google Maps" - ], - "Contact Info": [ - "Të dhëna Kontakti" - ], - "Email Address": [ - "Adresë Email" - ], - "Email": [ - "Email" - ] -} \ No newline at end of file diff --git a/src/i18n-translations/jetpack/data/sr.json b/src/i18n-translations/jetpack/data/sr.json deleted file mode 100644 index b65d1d0e03..0000000000 --- a/src/i18n-translations/jetpack/data/sr.json +++ /dev/null @@ -1,56 +0,0 @@ -{ - "Embed a SmartFrame Image.": [], - "smartframe": [], - "Embed an Instagram post.": [], - "Embed a Facebook post.": [], - "Embed a Loom video.": [], - "video": [], - "Add an interactive story.": [], - "block search term\u0004video": [], - "block search term\u0004story": [], - "Story": [], - "Grow": [], - "Earn": [ - "Зарадите" - ], - "block search term\u0004social": [], - "block search term\u0004address": [], - "block search term\u0004phone": [], - "block search term\u0004message": [ - "порука" - ], - "block search term\u0004image": [], - "Lets you add an email address with an automatically generated click-to-email link.": [], - "Open address in Google Maps": [], - "block search term\u0004gallery": [], - "block search term\u0004cell": [], - "block search term\u0004telephone": [], - "block search term\u0004mobile": [], - "block search term\u0004email": [], - "block search term\u0004place": [], - "block search term\u0004direction": [], - "block search term\u0004location": [], - "Lets you add a phone number with an automatically generated click-to-call link.": [], - "Phone Number": [], - "Phone number": [], - "Lets you add an email address, phone number, and physical address with improved markup for better SEO results.": [], - "Lets you add a physical address with Schema markup.": [], - "Address": [], - "Country": [], - "Postal/Zip Code": [], - "State/Province/Region": [], - "City": [], - "Address Line 3": [], - "Address Line 2": [], - "Street Address": [], - "Link address to Google Maps": [], - "Contact Info": [ - "Подаци за контактирање" - ], - "Email Address": [ - "Адреса е-поште" - ], - "Email": [ - "Е-пошта" - ] -} \ No newline at end of file diff --git a/src/i18n-translations/jetpack/data/sv.json b/src/i18n-translations/jetpack/data/sv.json deleted file mode 100644 index 67334daa20..0000000000 --- a/src/i18n-translations/jetpack/data/sv.json +++ /dev/null @@ -1,130 +0,0 @@ -{ - "Embed a SmartFrame Image.": [], - "smartframe": [], - "Embed an Instagram post.": [ - "Bädda in ett inlägg från Instagram." - ], - "Embed a Facebook post.": [ - "Bädda in ett inlägg från Facebook." - ], - "Embed a Loom video.": [ - "Bädda in en video från Loom." - ], - "video": [ - "video" - ], - "Add an interactive story.": [ - "Lägg till en interaktivt berättelse." - ], - "block search term\u0004video": [ - "video" - ], - "block search term\u0004story": [ - "berättelse" - ], - "Story": [ - "Berättelse" - ], - "Grow": [ - "Väx" - ], - "Earn": [ - "Tjäna" - ], - "block search term\u0004social": [ - "socialt" - ], - "block search term\u0004address": [ - "adress" - ], - "block search term\u0004phone": [ - "telefon" - ], - "block search term\u0004message": [ - "meddelande" - ], - "block search term\u0004image": [ - "bild" - ], - "Lets you add an email address with an automatically generated click-to-email link.": [ - "Låter dig lägga till en e-postadress med en automatiskt genererad e-postlänk." - ], - "Open address in Google Maps": [ - "Öppna adress i Google Maps" - ], - "block search term\u0004gallery": [ - "galleri" - ], - "block search term\u0004cell": [ - "mobil" - ], - "block search term\u0004telephone": [ - "telefon" - ], - "block search term\u0004mobile": [ - "mobil" - ], - "block search term\u0004email": [ - "e-post" - ], - "block search term\u0004place": [ - "plats" - ], - "block search term\u0004direction": [ - "riktning" - ], - "block search term\u0004location": [ - "plats" - ], - "Lets you add a phone number with an automatically generated click-to-call link.": [ - "Låter dig lägga till ett telefonnummer med en automatiskt genererad samtalslänk." - ], - "Phone Number": [ - "Telefonnummer" - ], - "Phone number": [ - "Telefonnummer" - ], - "Lets you add an email address, phone number, and physical address with improved markup for better SEO results.": [ - "Låter dig lägga till en e-postadress, telefonnummer och fysisk adress med förbättrad kod för bättre sökmotorsoptimeringsresultat." - ], - "Lets you add a physical address with Schema markup.": [ - "Låter dig lägga till en fysisk adress med Schema-kod." - ], - "Address": [ - "Adress" - ], - "Country": [ - "Land" - ], - "Postal/Zip Code": [ - "Postnummer" - ], - "State/Province/Region": [ - "Delstat/provins/region" - ], - "City": [ - "Ort" - ], - "Address Line 3": [ - "Adressrad 3" - ], - "Address Line 2": [ - "Adressrad 2" - ], - "Street Address": [ - "Gatuadress" - ], - "Link address to Google Maps": [ - "Länkadress till Google Maps" - ], - "Contact Info": [ - "Kontaktuppgifter" - ], - "Email Address": [ - "E-postadress" - ], - "Email": [ - "E-post" - ] -} \ No newline at end of file diff --git a/src/i18n-translations/jetpack/data/th.json b/src/i18n-translations/jetpack/data/th.json deleted file mode 100644 index f1cb7a8257..0000000000 --- a/src/i18n-translations/jetpack/data/th.json +++ /dev/null @@ -1,52 +0,0 @@ -{ - "Embed a SmartFrame Image.": [], - "smartframe": [], - "Embed an Instagram post.": [], - "Embed a Facebook post.": [], - "Embed a Loom video.": [], - "video": [], - "Add an interactive story.": [], - "block search term\u0004video": [], - "block search term\u0004story": [], - "Story": [], - "Grow": [], - "Earn": [], - "block search term\u0004social": [], - "block search term\u0004address": [], - "block search term\u0004phone": [], - "block search term\u0004message": [], - "block search term\u0004image": [], - "Lets you add an email address with an automatically generated click-to-email link.": [], - "Open address in Google Maps": [], - "block search term\u0004gallery": [], - "block search term\u0004cell": [], - "block search term\u0004telephone": [], - "block search term\u0004mobile": [], - "block search term\u0004email": [], - "block search term\u0004place": [], - "block search term\u0004direction": [], - "block search term\u0004location": [], - "Lets you add a phone number with an automatically generated click-to-call link.": [], - "Phone Number": [], - "Phone number": [], - "Lets you add an email address, phone number, and physical address with improved markup for better SEO results.": [], - "Lets you add a physical address with Schema markup.": [], - "Address": [], - "Country": [], - "Postal/Zip Code": [], - "State/Province/Region": [], - "City": [], - "Address Line 3": [], - "Address Line 2": [], - "Street Address": [], - "Link address to Google Maps": [], - "Contact Info": [ - "ข้อมูลติดต่อ" - ], - "Email Address": [ - "อีเมล์" - ], - "Email": [ - "อีเมล์" - ] -} \ No newline at end of file diff --git a/src/i18n-translations/jetpack/data/tr.json b/src/i18n-translations/jetpack/data/tr.json deleted file mode 100644 index a701b9d60a..0000000000 --- a/src/i18n-translations/jetpack/data/tr.json +++ /dev/null @@ -1,130 +0,0 @@ -{ - "Embed a SmartFrame Image.": [], - "smartframe": [], - "Embed an Instagram post.": [ - "Instagram gönderisi gömün." - ], - "Embed a Facebook post.": [ - "Facebook gönderisi gömün." - ], - "Embed a Loom video.": [ - " Bir Loom videosu yerleştirin." - ], - "video": [ - "video" - ], - "Add an interactive story.": [ - "Etkileşimli bir öykü ekleyin." - ], - "block search term\u0004video": [ - "video" - ], - "block search term\u0004story": [ - "öykü" - ], - "Story": [ - "Öykü" - ], - "Grow": [ - "Büyüyün" - ], - "Earn": [ - "Kazanın" - ], - "block search term\u0004social": [ - "sosyal" - ], - "block search term\u0004address": [ - "adres" - ], - "block search term\u0004phone": [ - "telefon" - ], - "block search term\u0004message": [ - "mesaj" - ], - "block search term\u0004image": [ - "görsel" - ], - "Lets you add an email address with an automatically generated click-to-email link.": [ - "Otomatik olarak oluşturulan ve tıklandığında e-posta gönderilmesini sağlayan bir bağlantıyla beraber bir e-posta adresi eklemenizi sağlar." - ], - "Open address in Google Maps": [ - "Adresi Google Haritalar’da aç" - ], - "block search term\u0004gallery": [ - "galeri" - ], - "block search term\u0004cell": [ - "hücre" - ], - "block search term\u0004telephone": [ - "telefon" - ], - "block search term\u0004mobile": [ - "mobil" - ], - "block search term\u0004email": [ - "e-posta" - ], - "block search term\u0004place": [ - "yer" - ], - "block search term\u0004direction": [ - "yön" - ], - "block search term\u0004location": [ - "konum" - ], - "Lets you add a phone number with an automatically generated click-to-call link.": [ - "Otomatik olarak oluşturulan bir “aramak için tıkla” bağlantısıyla beraber bir telefon numarası eklemenizi sağlar." - ], - "Phone Number": [ - "Telefon Numarası" - ], - "Phone number": [ - "Telefon Numarası" - ], - "Lets you add an email address, phone number, and physical address with improved markup for better SEO results.": [ - "Daha iyi SEO sonuçları için gelişmiş işaretleme ile e-posta adresi, telefon numarası ve fiziksel adres eklemenizi sağlar." - ], - "Lets you add a physical address with Schema markup.": [ - "Şema işaretleme ile bir fiziksel adres eklemenizi sağlar." - ], - "Address": [ - "Adres" - ], - "Country": [ - "Ülke" - ], - "Postal/Zip Code": [ - "Posta Kodu" - ], - "State/Province/Region": [ - "Eyalet/İl/Bölge" - ], - "City": [ - "Şehir" - ], - "Address Line 3": [ - "Adres Satırı 3" - ], - "Address Line 2": [ - "Adres Satırı 2" - ], - "Street Address": [ - "Sokak Adresi" - ], - "Link address to Google Maps": [ - "Google Haritalar bağlantı adresi" - ], - "Contact Info": [ - "İletişim Bilgisi" - ], - "Email Address": [ - "E-posta Adresi" - ], - "Email": [ - "E-posta" - ] -} \ No newline at end of file diff --git a/src/i18n-translations/jetpack/data/uk.json b/src/i18n-translations/jetpack/data/uk.json deleted file mode 100644 index 088a1a2fd3..0000000000 --- a/src/i18n-translations/jetpack/data/uk.json +++ /dev/null @@ -1,114 +0,0 @@ -{ - "Embed a SmartFrame Image.": [], - "smartframe": [], - "Embed an Instagram post.": [ - "Вставити запис Instagram." - ], - "Embed a Facebook post.": [ - "Вставити запис Facebook." - ], - "Embed a Loom video.": [ - "Вставити Loom відео." - ], - "video": [ - "відео" - ], - "Add an interactive story.": [ - "Додайте інтерактивну історію." - ], - "block search term\u0004video": [ - "відео" - ], - "block search term\u0004story": [ - "історія" - ], - "Story": [ - "Історія" - ], - "Grow": [ - "Розвивайтесь" - ], - "Earn": [ - "Заробляйте" - ], - "block search term\u0004social": [], - "block search term\u0004address": [ - "Адреса" - ], - "block search term\u0004phone": [ - "телефон" - ], - "block search term\u0004message": [ - "повідомлення" - ], - "block search term\u0004image": [ - "зображення" - ], - "Lets you add an email address with an automatically generated click-to-email link.": [], - "Open address in Google Maps": [], - "block search term\u0004gallery": [ - "галерея" - ], - "block search term\u0004cell": [ - "стільниковий" - ], - "block search term\u0004telephone": [ - "телефон" - ], - "block search term\u0004mobile": [ - "мобільна" - ], - "block search term\u0004email": [ - "email" - ], - "block search term\u0004place": [ - "місце" - ], - "block search term\u0004direction": [ - "направлення" - ], - "block search term\u0004location": [ - "місцезнаходження" - ], - "Lets you add a phone number with an automatically generated click-to-call link.": [], - "Phone Number": [ - "Номер телефону" - ], - "Phone number": [ - "Номер телефону" - ], - "Lets you add an email address, phone number, and physical address with improved markup for better SEO results.": [], - "Lets you add a physical address with Schema markup.": [], - "Address": [ - "Адреса" - ], - "Country": [ - "Країна" - ], - "Postal/Zip Code": [ - "Поштовий індекс" - ], - "State/Province/Region": [ - "Штат/Провінція/Регіон" - ], - "City": [ - "Місто" - ], - "Address Line 3": [], - "Address Line 2": [ - "Адреси рядок 2" - ], - "Street Address": [ - "Адреса" - ], - "Link address to Google Maps": [], - "Contact Info": [ - "Контактна інформація" - ], - "Email Address": [ - "Адреса електронної пошти" - ], - "Email": [ - "Електрона пошта" - ] -} \ No newline at end of file diff --git a/src/i18n-translations/jetpack/data/ur.json b/src/i18n-translations/jetpack/data/ur.json deleted file mode 100644 index 6b7062b6ec..0000000000 --- a/src/i18n-translations/jetpack/data/ur.json +++ /dev/null @@ -1,52 +0,0 @@ -{ - "Embed a SmartFrame Image.": [], - "smartframe": [], - "Embed an Instagram post.": [], - "Embed a Facebook post.": [], - "Embed a Loom video.": [], - "video": [], - "Add an interactive story.": [], - "block search term\u0004video": [], - "block search term\u0004story": [], - "Story": [], - "Grow": [], - "Earn": [], - "block search term\u0004social": [], - "block search term\u0004address": [], - "block search term\u0004phone": [], - "block search term\u0004message": [], - "block search term\u0004image": [], - "Lets you add an email address with an automatically generated click-to-email link.": [], - "Open address in Google Maps": [], - "block search term\u0004gallery": [], - "block search term\u0004cell": [], - "block search term\u0004telephone": [], - "block search term\u0004mobile": [], - "block search term\u0004email": [], - "block search term\u0004place": [], - "block search term\u0004direction": [], - "block search term\u0004location": [], - "Lets you add a phone number with an automatically generated click-to-call link.": [], - "Phone Number": [], - "Phone number": [], - "Lets you add an email address, phone number, and physical address with improved markup for better SEO results.": [], - "Lets you add a physical address with Schema markup.": [], - "Address": [], - "Country": [], - "Postal/Zip Code": [], - "State/Province/Region": [], - "City": [], - "Address Line 3": [], - "Address Line 2": [], - "Street Address": [], - "Link address to Google Maps": [], - "Contact Info": [ - "تفاصیل رابطہ" - ], - "Email Address": [ - "ای میل ایڈریس" - ], - "Email": [ - "ای میل" - ] -} \ No newline at end of file diff --git a/src/i18n-translations/jetpack/data/vi.json b/src/i18n-translations/jetpack/data/vi.json deleted file mode 100644 index abf6a1099c..0000000000 --- a/src/i18n-translations/jetpack/data/vi.json +++ /dev/null @@ -1,52 +0,0 @@ -{ - "Embed a SmartFrame Image.": [], - "smartframe": [], - "Embed an Instagram post.": [], - "Embed a Facebook post.": [], - "Embed a Loom video.": [], - "video": [], - "Add an interactive story.": [], - "block search term\u0004video": [], - "block search term\u0004story": [], - "Story": [], - "Grow": [], - "Earn": [], - "block search term\u0004social": [], - "block search term\u0004address": [], - "block search term\u0004phone": [], - "block search term\u0004message": [], - "block search term\u0004image": [], - "Lets you add an email address with an automatically generated click-to-email link.": [], - "Open address in Google Maps": [], - "block search term\u0004gallery": [], - "block search term\u0004cell": [], - "block search term\u0004telephone": [], - "block search term\u0004mobile": [], - "block search term\u0004email": [], - "block search term\u0004place": [], - "block search term\u0004direction": [], - "block search term\u0004location": [], - "Lets you add a phone number with an automatically generated click-to-call link.": [], - "Phone Number": [], - "Phone number": [], - "Lets you add an email address, phone number, and physical address with improved markup for better SEO results.": [], - "Lets you add a physical address with Schema markup.": [], - "Address": [], - "Country": [], - "Postal/Zip Code": [], - "State/Province/Region": [], - "City": [], - "Address Line 3": [], - "Address Line 2": [], - "Street Address": [], - "Link address to Google Maps": [], - "Contact Info": [ - "Thông tin liên hệ" - ], - "Email Address": [ - "Địa chỉ thư điện tử (email)" - ], - "Email": [ - "Thư điện tử" - ] -} \ No newline at end of file diff --git a/src/i18n-translations/jetpack/data/zh-cn.json b/src/i18n-translations/jetpack/data/zh-cn.json deleted file mode 100644 index 31d6e6f86e..0000000000 --- a/src/i18n-translations/jetpack/data/zh-cn.json +++ /dev/null @@ -1,130 +0,0 @@ -{ - "Embed a SmartFrame Image.": [], - "smartframe": [], - "Embed an Instagram post.": [ - "嵌入Instagram贴文。" - ], - "Embed a Facebook post.": [ - "嵌入Facebook文章。" - ], - "Embed a Loom video.": [ - "嵌入 Loom 视频。" - ], - "video": [ - "视频" - ], - "Add an interactive story.": [ - "添加交互式故事。" - ], - "block search term\u0004video": [ - "视频" - ], - "block search term\u0004story": [ - "故事" - ], - "Story": [ - "故事" - ], - "Grow": [ - "增加受众" - ], - "Earn": [ - "赚取收入" - ], - "block search term\u0004social": [ - "社交" - ], - "block search term\u0004address": [ - "地址" - ], - "block search term\u0004phone": [ - "电话" - ], - "block search term\u0004message": [ - "邮件" - ], - "block search term\u0004image": [ - "图片" - ], - "Lets you add an email address with an automatically generated click-to-email link.": [ - "您可以添加电子邮件地址,并且系统会自动生成点击发送电子邮件链接。" - ], - "Open address in Google Maps": [ - "在 Google 地图中打开地址" - ], - "block search term\u0004gallery": [ - "图库" - ], - "block search term\u0004cell": [ - "单元格" - ], - "block search term\u0004telephone": [ - "电话" - ], - "block search term\u0004mobile": [ - "移动" - ], - "block search term\u0004email": [ - "电子邮箱" - ], - "block search term\u0004place": [ - "地点" - ], - "block search term\u0004direction": [ - "方向" - ], - "block search term\u0004location": [ - "位置" - ], - "Lets you add a phone number with an automatically generated click-to-call link.": [ - "允许您添加带有自动生成的“点击通话”链接的电话号码。" - ], - "Phone Number": [ - "电话号码" - ], - "Phone number": [ - "电话号码" - ], - "Lets you add an email address, phone number, and physical address with improved markup for better SEO results.": [ - "允许您添加电子邮件地址、电话号码和实际地址,它们带有经过改进的标记,可产生更好的 SEO 结果。" - ], - "Lets you add a physical address with Schema markup.": [ - "允许您添加带有 Schema 标记的实际地址。" - ], - "Address": [ - "地址" - ], - "Country": [ - "国家/地区" - ], - "Postal/Zip Code": [ - "邮政编码" - ], - "State/Province/Region": [ - "州/省/地区" - ], - "City": [ - "城市" - ], - "Address Line 3": [ - "地址行 3" - ], - "Address Line 2": [ - "地址行 2" - ], - "Street Address": [ - "街道地址" - ], - "Link address to Google Maps": [ - "将地址链接到 Google 地图" - ], - "Contact Info": [ - "联系信息" - ], - "Email Address": [ - "电子邮箱地址" - ], - "Email": [ - "电子邮箱地址" - ] -} \ No newline at end of file diff --git a/src/i18n-translations/jetpack/data/zh-tw.json b/src/i18n-translations/jetpack/data/zh-tw.json deleted file mode 100644 index 8d3a3505d1..0000000000 --- a/src/i18n-translations/jetpack/data/zh-tw.json +++ /dev/null @@ -1,130 +0,0 @@ -{ - "Embed a SmartFrame Image.": [], - "smartframe": [], - "Embed an Instagram post.": [ - "嵌入 Instagram 貼文。" - ], - "Embed a Facebook post.": [ - "嵌入 Facebook 貼文。" - ], - "Embed a Loom video.": [ - "嵌入 Loom 影片。" - ], - "video": [ - "影片" - ], - "Add an interactive story.": [ - "新增互動式故事。" - ], - "block search term\u0004video": [ - "視訊" - ], - "block search term\u0004story": [ - "故事" - ], - "Story": [ - "故事" - ], - "Grow": [ - "拓展" - ], - "Earn": [ - "獲利" - ], - "block search term\u0004social": [ - "社群" - ], - "block search term\u0004address": [ - "地址" - ], - "block search term\u0004phone": [ - "電話" - ], - "block search term\u0004message": [ - "訊息" - ], - "block search term\u0004image": [ - "圖片" - ], - "Lets you add an email address with an automatically generated click-to-email link.": [ - "讓您藉由系統自動產生的單鍵傳送電子郵件連結來新增電子郵件地址。" - ], - "Open address in Google Maps": [ - "在 Google 地圖中開啟地址" - ], - "block search term\u0004gallery": [ - "圖庫" - ], - "block search term\u0004cell": [ - "手機" - ], - "block search term\u0004telephone": [ - "電話" - ], - "block search term\u0004mobile": [ - "手機" - ], - "block search term\u0004email": [ - "電子郵件" - ], - "block search term\u0004place": [ - "地點" - ], - "block search term\u0004direction": [ - "方向" - ], - "block search term\u0004location": [ - "位置" - ], - "Lets you add a phone number with an automatically generated click-to-call link.": [ - "讓你新增電話號碼,並自動產生按一下撥打連結。" - ], - "Phone Number": [ - "電話號碼" - ], - "Phone number": [ - "電話號碼" - ], - "Lets you add an email address, phone number, and physical address with improved markup for better SEO results.": [ - "讓你新增電子郵件地址、電話號碼和實體地址,並提供改良標記語言,以便獲得更好的 SEO 結果。" - ], - "Lets you add a physical address with Schema markup.": [ - "讓你透過 Schema 標記語言來新增實體地址。" - ], - "Address": [ - "位址" - ], - "Country": [ - "國家/地區" - ], - "Postal/Zip Code": [ - "郵遞區號" - ], - "State/Province/Region": [ - "州/省/地區" - ], - "City": [ - "城市" - ], - "Address Line 3": [ - "地址第 3 行" - ], - "Address Line 2": [ - "地址第 2 行" - ], - "Street Address": [ - "街道地址" - ], - "Link address to Google Maps": [ - "將地址與 Google 地圖連結" - ], - "Contact Info": [ - "聯絡資訊" - ], - "Email Address": [ - "電子郵件位址" - ], - "Email": [ - "電子郵件" - ] -} \ No newline at end of file diff --git a/src/i18n-translations/jetpack/index.js b/src/i18n-translations/jetpack/index.js deleted file mode 100644 index 90909a5fe0..0000000000 --- a/src/i18n-translations/jetpack/index.js +++ /dev/null @@ -1,58 +0,0 @@ -/* THIS IS A GENERATED FILE. DO NOT EDIT DIRECTLY. */ -/* eslint-disable prettier/prettier */ - -const translations = { - "ar": require( "./data/ar.json" ), - "bg": require( "./data/bg.json" ), - "bo": require( "./data/bo.json" ), - "ca": require( "./data/ca.json" ), - "cs": require( "./data/cs.json" ), - "cy": require( "./data/cy.json" ), - "da": require( "./data/da.json" ), - "de": require( "./data/de.json" ), - "en-au": require( "./data/en-au.json" ), - "en-ca": require( "./data/en-ca.json" ), - "en-gb": require( "./data/en-gb.json" ), - "en-nz": require( "./data/en-nz.json" ), - "en-za": require( "./data/en-za.json" ), - "el": require( "./data/el.json" ), - "es": require( "./data/es.json" ), - "es-ar": require( "./data/es-ar.json" ), - "es-cl": require( "./data/es-cl.json" ), - "es-cr": require( "./data/es-cr.json" ), - "fa": require( "./data/fa.json" ), - "fr": require( "./data/fr.json" ), - "gl": require( "./data/gl.json" ), - "he": require( "./data/he.json" ), - "hr": require( "./data/hr.json" ), - "hu": require( "./data/hu.json" ), - "id": require( "./data/id.json" ), - "is": require( "./data/is.json" ), - "it": require( "./data/it.json" ), - "ja": require( "./data/ja.json" ), - "ka": require( "./data/ka.json" ), - "ko": require( "./data/ko.json" ), - "nb": require( "./data/nb.json" ), - "nl": require( "./data/nl.json" ), - "nl-be": require( "./data/nl-be.json" ), - "pl": require( "./data/pl.json" ), - "pt": require( "./data/pt.json" ), - "pt-br": require( "./data/pt-br.json" ), - "ro": require( "./data/ro.json" ), - "ru": require( "./data/ru.json" ), - "sk": require( "./data/sk.json" ), - "sq": require( "./data/sq.json" ), - "sr": require( "./data/sr.json" ), - "sv": require( "./data/sv.json" ), - "th": require( "./data/th.json" ), - "tr": require( "./data/tr.json" ), - "uk": require( "./data/uk.json" ), - "ur": require( "./data/ur.json" ), - "vi": require( "./data/vi.json" ), - "zh-cn": require( "./data/zh-cn.json" ), - "zh-tw": require( "./data/zh-tw.json" ), -}; - -export const getTranslation = ( locale ) => translations[ locale ]; - -/* eslint-enable prettier/prettier */ diff --git a/src/i18n-translations/layout-grid/data/ar.json b/src/i18n-translations/layout-grid/data/ar.json deleted file mode 100644 index dbe150e93d..0000000000 --- a/src/i18n-translations/layout-grid/data/ar.json +++ /dev/null @@ -1,62 +0,0 @@ -{ - "No gutter": [ - "لا يوجد هامش توثيق" - ], - "Changing the number of columns will reset your layout and could remove content.": [ - "سيؤدي تغيير عدد الأعمدة إلى إعادة تعيين تخطيطك، ويمكن إزالة المحتوى." - ], - "A column used inside a Layout Grid block.": [ - "عمود يُستخدم داخل مكوّن شبكة التخطيط." - ], - "Snow Patrol": [ - "Snow Patrol" - ], - "Align blocks to a global grid, with support for responsive breakpoints.": [ - "يمكنك محاذاة المكوِّنات إلى إحدى الشبكات العالمية، مع دعم نقاط التوقف المستجيبة." - ], - "Huge": [ - "ضخم" - ], - "Large": [ - "كبير" - ], - "Medium": [ - "متوسط" - ], - "Small": [ - "صغير" - ], - "No padding": [ - "لا توجد مساحات متروكة" - ], - "Layout": [ - "التخطيط" - ], - "Column": [ - "عمود" - ], - "Mobile": [ - "الهاتف المحمول" - ], - "Tablet": [ - "الأجهزة اللوحية" - ], - "Desktop": [ - "الأجهزة المكتبية" - ], - "4 columns": [ - "4 أعمدة" - ], - "3 columns": [ - "3 أعمدة" - ], - "2 columns": [ - "عمودان" - ], - "1 column": [ - "عمود واحد" - ], - "Layout Grid": [ - "شبكة الخطوط" - ] -} \ No newline at end of file diff --git a/src/i18n-translations/layout-grid/data/bg.json b/src/i18n-translations/layout-grid/data/bg.json deleted file mode 100644 index 2ea98107af..0000000000 --- a/src/i18n-translations/layout-grid/data/bg.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "No gutter": [], - "Changing the number of columns will reset your layout and could remove content.": [], - "A column used inside a Layout Grid block.": [], - "Snow Patrol": [], - "Align blocks to a global grid, with support for responsive breakpoints.": [], - "Huge": [], - "Large": [], - "Medium": [], - "Small": [], - "No padding": [], - "Layout": [], - "Column": [], - "Mobile": [], - "Tablet": [], - "Desktop": [], - "4 columns": [], - "3 columns": [], - "2 columns": [], - "1 column": [], - "Layout Grid": [] -} \ No newline at end of file diff --git a/src/i18n-translations/layout-grid/data/bo.json b/src/i18n-translations/layout-grid/data/bo.json deleted file mode 100644 index 2ea98107af..0000000000 --- a/src/i18n-translations/layout-grid/data/bo.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "No gutter": [], - "Changing the number of columns will reset your layout and could remove content.": [], - "A column used inside a Layout Grid block.": [], - "Snow Patrol": [], - "Align blocks to a global grid, with support for responsive breakpoints.": [], - "Huge": [], - "Large": [], - "Medium": [], - "Small": [], - "No padding": [], - "Layout": [], - "Column": [], - "Mobile": [], - "Tablet": [], - "Desktop": [], - "4 columns": [], - "3 columns": [], - "2 columns": [], - "1 column": [], - "Layout Grid": [] -} \ No newline at end of file diff --git a/src/i18n-translations/layout-grid/data/ca.json b/src/i18n-translations/layout-grid/data/ca.json deleted file mode 100644 index 2ea98107af..0000000000 --- a/src/i18n-translations/layout-grid/data/ca.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "No gutter": [], - "Changing the number of columns will reset your layout and could remove content.": [], - "A column used inside a Layout Grid block.": [], - "Snow Patrol": [], - "Align blocks to a global grid, with support for responsive breakpoints.": [], - "Huge": [], - "Large": [], - "Medium": [], - "Small": [], - "No padding": [], - "Layout": [], - "Column": [], - "Mobile": [], - "Tablet": [], - "Desktop": [], - "4 columns": [], - "3 columns": [], - "2 columns": [], - "1 column": [], - "Layout Grid": [] -} \ No newline at end of file diff --git a/src/i18n-translations/layout-grid/data/cs.json b/src/i18n-translations/layout-grid/data/cs.json deleted file mode 100644 index 2ea98107af..0000000000 --- a/src/i18n-translations/layout-grid/data/cs.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "No gutter": [], - "Changing the number of columns will reset your layout and could remove content.": [], - "A column used inside a Layout Grid block.": [], - "Snow Patrol": [], - "Align blocks to a global grid, with support for responsive breakpoints.": [], - "Huge": [], - "Large": [], - "Medium": [], - "Small": [], - "No padding": [], - "Layout": [], - "Column": [], - "Mobile": [], - "Tablet": [], - "Desktop": [], - "4 columns": [], - "3 columns": [], - "2 columns": [], - "1 column": [], - "Layout Grid": [] -} \ No newline at end of file diff --git a/src/i18n-translations/layout-grid/data/cy.json b/src/i18n-translations/layout-grid/data/cy.json deleted file mode 100644 index 2ea98107af..0000000000 --- a/src/i18n-translations/layout-grid/data/cy.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "No gutter": [], - "Changing the number of columns will reset your layout and could remove content.": [], - "A column used inside a Layout Grid block.": [], - "Snow Patrol": [], - "Align blocks to a global grid, with support for responsive breakpoints.": [], - "Huge": [], - "Large": [], - "Medium": [], - "Small": [], - "No padding": [], - "Layout": [], - "Column": [], - "Mobile": [], - "Tablet": [], - "Desktop": [], - "4 columns": [], - "3 columns": [], - "2 columns": [], - "1 column": [], - "Layout Grid": [] -} \ No newline at end of file diff --git a/src/i18n-translations/layout-grid/data/da.json b/src/i18n-translations/layout-grid/data/da.json deleted file mode 100644 index 2ea98107af..0000000000 --- a/src/i18n-translations/layout-grid/data/da.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "No gutter": [], - "Changing the number of columns will reset your layout and could remove content.": [], - "A column used inside a Layout Grid block.": [], - "Snow Patrol": [], - "Align blocks to a global grid, with support for responsive breakpoints.": [], - "Huge": [], - "Large": [], - "Medium": [], - "Small": [], - "No padding": [], - "Layout": [], - "Column": [], - "Mobile": [], - "Tablet": [], - "Desktop": [], - "4 columns": [], - "3 columns": [], - "2 columns": [], - "1 column": [], - "Layout Grid": [] -} \ No newline at end of file diff --git a/src/i18n-translations/layout-grid/data/de.json b/src/i18n-translations/layout-grid/data/de.json deleted file mode 100644 index 8288badf9d..0000000000 --- a/src/i18n-translations/layout-grid/data/de.json +++ /dev/null @@ -1,62 +0,0 @@ -{ - "No gutter": [ - "Kein Abstand" - ], - "Changing the number of columns will reset your layout and could remove content.": [ - "Durch Ändern der Spaltenanzahl wird das Layout zurückgesetzt, wobei möglicherweise Inhalte entfernt wurden." - ], - "A column used inside a Layout Grid block.": [ - "Eine Spalte im Layoutraster-Block." - ], - "Snow Patrol": [ - "Snow Patrol" - ], - "Align blocks to a global grid, with support for responsive breakpoints.": [ - "Richte Blöcke an einem globalen Raster aus. Wird auch für responsive Haltepunkte unterstützt." - ], - "Huge": [ - "Sehr groß" - ], - "Large": [ - "Groß" - ], - "Medium": [ - "Mittelgroß" - ], - "Small": [ - "Klein" - ], - "No padding": [ - "Kein Abstand" - ], - "Layout": [ - "Layout" - ], - "Column": [ - "Spalte" - ], - "Mobile": [ - "Mobil" - ], - "Tablet": [ - "Tablet" - ], - "Desktop": [ - "Desktop" - ], - "4 columns": [ - "4 Spalten" - ], - "3 columns": [ - "3 Spalten" - ], - "2 columns": [ - "2 Spalten" - ], - "1 column": [ - "1 Spalte" - ], - "Layout Grid": [ - "Layoutraster" - ] -} \ No newline at end of file diff --git a/src/i18n-translations/layout-grid/data/el.json b/src/i18n-translations/layout-grid/data/el.json deleted file mode 100644 index 2ea98107af..0000000000 --- a/src/i18n-translations/layout-grid/data/el.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "No gutter": [], - "Changing the number of columns will reset your layout and could remove content.": [], - "A column used inside a Layout Grid block.": [], - "Snow Patrol": [], - "Align blocks to a global grid, with support for responsive breakpoints.": [], - "Huge": [], - "Large": [], - "Medium": [], - "Small": [], - "No padding": [], - "Layout": [], - "Column": [], - "Mobile": [], - "Tablet": [], - "Desktop": [], - "4 columns": [], - "3 columns": [], - "2 columns": [], - "1 column": [], - "Layout Grid": [] -} \ No newline at end of file diff --git a/src/i18n-translations/layout-grid/data/en-au.json b/src/i18n-translations/layout-grid/data/en-au.json deleted file mode 100644 index 2ea98107af..0000000000 --- a/src/i18n-translations/layout-grid/data/en-au.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "No gutter": [], - "Changing the number of columns will reset your layout and could remove content.": [], - "A column used inside a Layout Grid block.": [], - "Snow Patrol": [], - "Align blocks to a global grid, with support for responsive breakpoints.": [], - "Huge": [], - "Large": [], - "Medium": [], - "Small": [], - "No padding": [], - "Layout": [], - "Column": [], - "Mobile": [], - "Tablet": [], - "Desktop": [], - "4 columns": [], - "3 columns": [], - "2 columns": [], - "1 column": [], - "Layout Grid": [] -} \ No newline at end of file diff --git a/src/i18n-translations/layout-grid/data/en-ca.json b/src/i18n-translations/layout-grid/data/en-ca.json deleted file mode 100644 index 2ea98107af..0000000000 --- a/src/i18n-translations/layout-grid/data/en-ca.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "No gutter": [], - "Changing the number of columns will reset your layout and could remove content.": [], - "A column used inside a Layout Grid block.": [], - "Snow Patrol": [], - "Align blocks to a global grid, with support for responsive breakpoints.": [], - "Huge": [], - "Large": [], - "Medium": [], - "Small": [], - "No padding": [], - "Layout": [], - "Column": [], - "Mobile": [], - "Tablet": [], - "Desktop": [], - "4 columns": [], - "3 columns": [], - "2 columns": [], - "1 column": [], - "Layout Grid": [] -} \ No newline at end of file diff --git a/src/i18n-translations/layout-grid/data/en-gb.json b/src/i18n-translations/layout-grid/data/en-gb.json deleted file mode 100644 index 2ea98107af..0000000000 --- a/src/i18n-translations/layout-grid/data/en-gb.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "No gutter": [], - "Changing the number of columns will reset your layout and could remove content.": [], - "A column used inside a Layout Grid block.": [], - "Snow Patrol": [], - "Align blocks to a global grid, with support for responsive breakpoints.": [], - "Huge": [], - "Large": [], - "Medium": [], - "Small": [], - "No padding": [], - "Layout": [], - "Column": [], - "Mobile": [], - "Tablet": [], - "Desktop": [], - "4 columns": [], - "3 columns": [], - "2 columns": [], - "1 column": [], - "Layout Grid": [] -} \ No newline at end of file diff --git a/src/i18n-translations/layout-grid/data/en-nz.json b/src/i18n-translations/layout-grid/data/en-nz.json deleted file mode 100644 index 2ea98107af..0000000000 --- a/src/i18n-translations/layout-grid/data/en-nz.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "No gutter": [], - "Changing the number of columns will reset your layout and could remove content.": [], - "A column used inside a Layout Grid block.": [], - "Snow Patrol": [], - "Align blocks to a global grid, with support for responsive breakpoints.": [], - "Huge": [], - "Large": [], - "Medium": [], - "Small": [], - "No padding": [], - "Layout": [], - "Column": [], - "Mobile": [], - "Tablet": [], - "Desktop": [], - "4 columns": [], - "3 columns": [], - "2 columns": [], - "1 column": [], - "Layout Grid": [] -} \ No newline at end of file diff --git a/src/i18n-translations/layout-grid/data/en-za.json b/src/i18n-translations/layout-grid/data/en-za.json deleted file mode 100644 index 2ea98107af..0000000000 --- a/src/i18n-translations/layout-grid/data/en-za.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "No gutter": [], - "Changing the number of columns will reset your layout and could remove content.": [], - "A column used inside a Layout Grid block.": [], - "Snow Patrol": [], - "Align blocks to a global grid, with support for responsive breakpoints.": [], - "Huge": [], - "Large": [], - "Medium": [], - "Small": [], - "No padding": [], - "Layout": [], - "Column": [], - "Mobile": [], - "Tablet": [], - "Desktop": [], - "4 columns": [], - "3 columns": [], - "2 columns": [], - "1 column": [], - "Layout Grid": [] -} \ No newline at end of file diff --git a/src/i18n-translations/layout-grid/data/es-ar.json b/src/i18n-translations/layout-grid/data/es-ar.json deleted file mode 100644 index 2ea98107af..0000000000 --- a/src/i18n-translations/layout-grid/data/es-ar.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "No gutter": [], - "Changing the number of columns will reset your layout and could remove content.": [], - "A column used inside a Layout Grid block.": [], - "Snow Patrol": [], - "Align blocks to a global grid, with support for responsive breakpoints.": [], - "Huge": [], - "Large": [], - "Medium": [], - "Small": [], - "No padding": [], - "Layout": [], - "Column": [], - "Mobile": [], - "Tablet": [], - "Desktop": [], - "4 columns": [], - "3 columns": [], - "2 columns": [], - "1 column": [], - "Layout Grid": [] -} \ No newline at end of file diff --git a/src/i18n-translations/layout-grid/data/es-cl.json b/src/i18n-translations/layout-grid/data/es-cl.json deleted file mode 100644 index 2ea98107af..0000000000 --- a/src/i18n-translations/layout-grid/data/es-cl.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "No gutter": [], - "Changing the number of columns will reset your layout and could remove content.": [], - "A column used inside a Layout Grid block.": [], - "Snow Patrol": [], - "Align blocks to a global grid, with support for responsive breakpoints.": [], - "Huge": [], - "Large": [], - "Medium": [], - "Small": [], - "No padding": [], - "Layout": [], - "Column": [], - "Mobile": [], - "Tablet": [], - "Desktop": [], - "4 columns": [], - "3 columns": [], - "2 columns": [], - "1 column": [], - "Layout Grid": [] -} \ No newline at end of file diff --git a/src/i18n-translations/layout-grid/data/es-cr.json b/src/i18n-translations/layout-grid/data/es-cr.json deleted file mode 100644 index 2ea98107af..0000000000 --- a/src/i18n-translations/layout-grid/data/es-cr.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "No gutter": [], - "Changing the number of columns will reset your layout and could remove content.": [], - "A column used inside a Layout Grid block.": [], - "Snow Patrol": [], - "Align blocks to a global grid, with support for responsive breakpoints.": [], - "Huge": [], - "Large": [], - "Medium": [], - "Small": [], - "No padding": [], - "Layout": [], - "Column": [], - "Mobile": [], - "Tablet": [], - "Desktop": [], - "4 columns": [], - "3 columns": [], - "2 columns": [], - "1 column": [], - "Layout Grid": [] -} \ No newline at end of file diff --git a/src/i18n-translations/layout-grid/data/es.json b/src/i18n-translations/layout-grid/data/es.json deleted file mode 100644 index edfbe1a2d7..0000000000 --- a/src/i18n-translations/layout-grid/data/es.json +++ /dev/null @@ -1,62 +0,0 @@ -{ - "No gutter": [ - "Sin separación" - ], - "Changing the number of columns will reset your layout and could remove content.": [ - "Al cambiar el número de columnas, se restablecerá tu diseño y podría eliminar el contenido." - ], - "A column used inside a Layout Grid block.": [ - "Una columna usada dentro de un bloque de diseño de cuadrícula." - ], - "Snow Patrol": [ - "Patrulla de nieve" - ], - "Align blocks to a global grid, with support for responsive breakpoints.": [ - "Alinea los bloques en una cuadrícula general, compatible con puntos de interrupción adaptables." - ], - "Huge": [ - "Enorme" - ], - "Large": [ - "Grande" - ], - "Medium": [ - "Mediano" - ], - "Small": [ - "Pequeño" - ], - "No padding": [ - "Sin espaciado interno" - ], - "Layout": [ - "Diseño" - ], - "Column": [ - "Columna" - ], - "Mobile": [ - "Dispositivos móviles" - ], - "Tablet": [ - "Tableta" - ], - "Desktop": [ - "Ordenadores" - ], - "4 columns": [ - "4 columnas" - ], - "3 columns": [ - "3 columnas" - ], - "2 columns": [ - "2 columnas" - ], - "1 column": [ - "1 columna" - ], - "Layout Grid": [ - "Diseño de cuadrícula" - ] -} \ No newline at end of file diff --git a/src/i18n-translations/layout-grid/data/fa.json b/src/i18n-translations/layout-grid/data/fa.json deleted file mode 100644 index 2ea98107af..0000000000 --- a/src/i18n-translations/layout-grid/data/fa.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "No gutter": [], - "Changing the number of columns will reset your layout and could remove content.": [], - "A column used inside a Layout Grid block.": [], - "Snow Patrol": [], - "Align blocks to a global grid, with support for responsive breakpoints.": [], - "Huge": [], - "Large": [], - "Medium": [], - "Small": [], - "No padding": [], - "Layout": [], - "Column": [], - "Mobile": [], - "Tablet": [], - "Desktop": [], - "4 columns": [], - "3 columns": [], - "2 columns": [], - "1 column": [], - "Layout Grid": [] -} \ No newline at end of file diff --git a/src/i18n-translations/layout-grid/data/fr.json b/src/i18n-translations/layout-grid/data/fr.json deleted file mode 100644 index 8341eeb7a2..0000000000 --- a/src/i18n-translations/layout-grid/data/fr.json +++ /dev/null @@ -1,62 +0,0 @@ -{ - "No gutter": [ - "Aucune gouttière" - ], - "Changing the number of columns will reset your layout and could remove content.": [ - "La modification du nombre de colonnes réinitialisera votre mise en page et risque de supprimer du contenu." - ], - "A column used inside a Layout Grid block.": [ - "Colonne utilisée dans un bloc de grille de mise en page." - ], - "Snow Patrol": [ - "Patrouille des neiges" - ], - "Align blocks to a global grid, with support for responsive breakpoints.": [ - "Alignez les blocs dans une grille globale qui prend en charge les points d’adaptabilité." - ], - "Huge": [ - "Très grand" - ], - "Large": [ - "Grand" - ], - "Medium": [ - "Moyen" - ], - "Small": [ - "Petit" - ], - "No padding": [ - "Pas de marge intérieure" - ], - "Layout": [ - "Mise en page" - ], - "Column": [ - "Colonne" - ], - "Mobile": [ - "Mobile" - ], - "Tablet": [ - "Tablette" - ], - "Desktop": [ - "Bureau" - ], - "4 columns": [ - "4 colonnes" - ], - "3 columns": [ - "3 colonnes" - ], - "2 columns": [ - "2 colonnes" - ], - "1 column": [ - "1 colonne" - ], - "Layout Grid": [ - "Grille de mise en page" - ] -} \ No newline at end of file diff --git a/src/i18n-translations/layout-grid/data/gl.json b/src/i18n-translations/layout-grid/data/gl.json deleted file mode 100644 index 2ea98107af..0000000000 --- a/src/i18n-translations/layout-grid/data/gl.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "No gutter": [], - "Changing the number of columns will reset your layout and could remove content.": [], - "A column used inside a Layout Grid block.": [], - "Snow Patrol": [], - "Align blocks to a global grid, with support for responsive breakpoints.": [], - "Huge": [], - "Large": [], - "Medium": [], - "Small": [], - "No padding": [], - "Layout": [], - "Column": [], - "Mobile": [], - "Tablet": [], - "Desktop": [], - "4 columns": [], - "3 columns": [], - "2 columns": [], - "1 column": [], - "Layout Grid": [] -} \ No newline at end of file diff --git a/src/i18n-translations/layout-grid/data/he.json b/src/i18n-translations/layout-grid/data/he.json deleted file mode 100644 index becbbf14ba..0000000000 --- a/src/i18n-translations/layout-grid/data/he.json +++ /dev/null @@ -1,62 +0,0 @@ -{ - "No gutter": [ - "ללא שוליים" - ], - "Changing the number of columns will reset your layout and could remove content.": [ - "שינוי מספר הטורים יאפס את הפריסה שלך ועשוי להסיר את התוכן." - ], - "A column used inside a Layout Grid block.": [ - "טור בשימוש בתוך בלוק של רשת פריסה." - ], - "Snow Patrol": [ - "Snow Patrol" - ], - "Align blocks to a global grid, with support for responsive breakpoints.": [ - "ליישר את הבלוקים לפי היישור הגלובלי של הרשת עם תמיכה בנקודות עצירה ריספונסיביות." - ], - "Huge": [ - "ענק" - ], - "Large": [ - "גדול" - ], - "Medium": [ - "בינוני" - ], - "Small": [ - "קטן" - ], - "No padding": [ - "ללא מרווח" - ], - "Layout": [ - "פריסה" - ], - "Column": [ - "עמודה" - ], - "Mobile": [ - "טלפון נייד" - ], - "Tablet": [ - "טאבלט" - ], - "Desktop": [ - "מחשב שולחני" - ], - "4 columns": [ - "ארבעה טורים" - ], - "3 columns": [ - "שלושה טורים" - ], - "2 columns": [ - "שני טורים" - ], - "1 column": [ - "טור אחד" - ], - "Layout Grid": [ - "רשת פריסה" - ] -} \ No newline at end of file diff --git a/src/i18n-translations/layout-grid/data/hr.json b/src/i18n-translations/layout-grid/data/hr.json deleted file mode 100644 index 2ea98107af..0000000000 --- a/src/i18n-translations/layout-grid/data/hr.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "No gutter": [], - "Changing the number of columns will reset your layout and could remove content.": [], - "A column used inside a Layout Grid block.": [], - "Snow Patrol": [], - "Align blocks to a global grid, with support for responsive breakpoints.": [], - "Huge": [], - "Large": [], - "Medium": [], - "Small": [], - "No padding": [], - "Layout": [], - "Column": [], - "Mobile": [], - "Tablet": [], - "Desktop": [], - "4 columns": [], - "3 columns": [], - "2 columns": [], - "1 column": [], - "Layout Grid": [] -} \ No newline at end of file diff --git a/src/i18n-translations/layout-grid/data/hu.json b/src/i18n-translations/layout-grid/data/hu.json deleted file mode 100644 index 2ea98107af..0000000000 --- a/src/i18n-translations/layout-grid/data/hu.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "No gutter": [], - "Changing the number of columns will reset your layout and could remove content.": [], - "A column used inside a Layout Grid block.": [], - "Snow Patrol": [], - "Align blocks to a global grid, with support for responsive breakpoints.": [], - "Huge": [], - "Large": [], - "Medium": [], - "Small": [], - "No padding": [], - "Layout": [], - "Column": [], - "Mobile": [], - "Tablet": [], - "Desktop": [], - "4 columns": [], - "3 columns": [], - "2 columns": [], - "1 column": [], - "Layout Grid": [] -} \ No newline at end of file diff --git a/src/i18n-translations/layout-grid/data/id.json b/src/i18n-translations/layout-grid/data/id.json deleted file mode 100644 index c6a5aaf733..0000000000 --- a/src/i18n-translations/layout-grid/data/id.json +++ /dev/null @@ -1,62 +0,0 @@ -{ - "No gutter": [ - "Tidak ada gutter" - ], - "Changing the number of columns will reset your layout and could remove content.": [ - "Mengubah jumlah kolom akan mereset tata letak dan dapat menghapus konten." - ], - "A column used inside a Layout Grid block.": [ - "Kolom digunakan di dalam blok Tata Letak Kisi." - ], - "Snow Patrol": [ - "Snow Patrol" - ], - "Align blocks to a global grid, with support for responsive breakpoints.": [ - "Selaraskan blok ke kisi global, dengan dukungan untuk titik henti yang responsif." - ], - "Huge": [ - "Besar" - ], - "Large": [ - "Besar" - ], - "Medium": [ - "Sedang" - ], - "Small": [ - "Kecil" - ], - "No padding": [ - "Tidak Ada Padding" - ], - "Layout": [ - "Tata Letak" - ], - "Column": [ - "Kolom" - ], - "Mobile": [ - "Seluler" - ], - "Tablet": [ - "Tablet" - ], - "Desktop": [ - "Desktop" - ], - "4 columns": [ - "4 kolom" - ], - "3 columns": [ - "3 kolom" - ], - "2 columns": [ - "2 kolom" - ], - "1 column": [ - "1 kolom" - ], - "Layout Grid": [ - "Kisi Tata Letak" - ] -} \ No newline at end of file diff --git a/src/i18n-translations/layout-grid/data/is.json b/src/i18n-translations/layout-grid/data/is.json deleted file mode 100644 index 2ea98107af..0000000000 --- a/src/i18n-translations/layout-grid/data/is.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "No gutter": [], - "Changing the number of columns will reset your layout and could remove content.": [], - "A column used inside a Layout Grid block.": [], - "Snow Patrol": [], - "Align blocks to a global grid, with support for responsive breakpoints.": [], - "Huge": [], - "Large": [], - "Medium": [], - "Small": [], - "No padding": [], - "Layout": [], - "Column": [], - "Mobile": [], - "Tablet": [], - "Desktop": [], - "4 columns": [], - "3 columns": [], - "2 columns": [], - "1 column": [], - "Layout Grid": [] -} \ No newline at end of file diff --git a/src/i18n-translations/layout-grid/data/it.json b/src/i18n-translations/layout-grid/data/it.json deleted file mode 100644 index 8574566323..0000000000 --- a/src/i18n-translations/layout-grid/data/it.json +++ /dev/null @@ -1,62 +0,0 @@ -{ - "No gutter": [ - "Niente rilegatura" - ], - "Changing the number of columns will reset your layout and could remove content.": [ - "La modifica del numero di colonne reimposterà il layout e potrebbe rimuovere il contenuto." - ], - "A column used inside a Layout Grid block.": [ - "Una colonna usata all'interno del blocco Griglia di layout." - ], - "Snow Patrol": [ - "Snow Patrol" - ], - "Align blocks to a global grid, with support for responsive breakpoints.": [ - "Allinea i blocchi a una griglia globale, con il supporto per punti di interruzione responsivi." - ], - "Huge": [ - "Grande" - ], - "Large": [ - "Grande" - ], - "Medium": [ - "Medio" - ], - "Small": [ - "Piccolo" - ], - "No padding": [ - "Nessun padding" - ], - "Layout": [ - "Disposizione" - ], - "Column": [ - "Colonna" - ], - "Mobile": [ - "Mobile" - ], - "Tablet": [ - "Tablet" - ], - "Desktop": [ - "Desktop" - ], - "4 columns": [ - "4 colonne" - ], - "3 columns": [ - "3 colonne" - ], - "2 columns": [ - "2 colonne" - ], - "1 column": [ - "1 colonna" - ], - "Layout Grid": [ - "Griglia di layout" - ] -} \ No newline at end of file diff --git a/src/i18n-translations/layout-grid/data/ja.json b/src/i18n-translations/layout-grid/data/ja.json deleted file mode 100644 index 08ccb89ce4..0000000000 --- a/src/i18n-translations/layout-grid/data/ja.json +++ /dev/null @@ -1,62 +0,0 @@ -{ - "No gutter": [ - "ガターなし" - ], - "Changing the number of columns will reset your layout and could remove content.": [ - "カラム数を変更すると、レイアウトがリセットされ、コンテンツが削除されることがあります。" - ], - "A column used inside a Layout Grid block.": [ - "レイアウトグリッドブロック内で使用されるカラム。" - ], - "Snow Patrol": [ - "雪のシーン" - ], - "Align blocks to a global grid, with support for responsive breakpoints.": [ - "ブロックをグローバルグリッドに揃えます。レスポンシブブレークポイントに対応しています。" - ], - "Huge": [ - "特大" - ], - "Large": [ - "大" - ], - "Medium": [ - "普通" - ], - "Small": [ - "小" - ], - "No padding": [ - "パディングなし" - ], - "Layout": [ - "レイアウト" - ], - "Column": [ - "カラム" - ], - "Mobile": [ - "モバイル" - ], - "Tablet": [ - "タブレット" - ], - "Desktop": [ - "デスクトップ" - ], - "4 columns": [ - "4カラム" - ], - "3 columns": [ - "3カラム" - ], - "2 columns": [ - "2カラム" - ], - "1 column": [ - "1カラム" - ], - "Layout Grid": [ - "Layout Grid" - ] -} \ No newline at end of file diff --git a/src/i18n-translations/layout-grid/data/ka.json b/src/i18n-translations/layout-grid/data/ka.json deleted file mode 100644 index 2ea98107af..0000000000 --- a/src/i18n-translations/layout-grid/data/ka.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "No gutter": [], - "Changing the number of columns will reset your layout and could remove content.": [], - "A column used inside a Layout Grid block.": [], - "Snow Patrol": [], - "Align blocks to a global grid, with support for responsive breakpoints.": [], - "Huge": [], - "Large": [], - "Medium": [], - "Small": [], - "No padding": [], - "Layout": [], - "Column": [], - "Mobile": [], - "Tablet": [], - "Desktop": [], - "4 columns": [], - "3 columns": [], - "2 columns": [], - "1 column": [], - "Layout Grid": [] -} \ No newline at end of file diff --git a/src/i18n-translations/layout-grid/data/ko.json b/src/i18n-translations/layout-grid/data/ko.json deleted file mode 100644 index ff3f2ca784..0000000000 --- a/src/i18n-translations/layout-grid/data/ko.json +++ /dev/null @@ -1,62 +0,0 @@ -{ - "No gutter": [ - "거터 없음" - ], - "Changing the number of columns will reset your layout and could remove content.": [ - "열 수를 변경하면 레이아웃이 초기화되고 내용이 제거될 수 있습니다." - ], - "A column used inside a Layout Grid block.": [ - "레이아웃 그리드 블록 내부에서 사용되는 열." - ], - "Snow Patrol": [ - "스노 패트롤" - ], - "Align blocks to a global grid, with support for responsive breakpoints.": [ - "반응형 중단점에 대한 지원으로 블록을 전역 그리드에 맞춥니다." - ], - "Huge": [ - "크게" - ], - "Large": [ - "크게" - ], - "Medium": [ - "보통" - ], - "Small": [ - "작게" - ], - "No padding": [ - "패딩 없음" - ], - "Layout": [ - "레이아웃" - ], - "Column": [ - "열" - ], - "Mobile": [ - "모바일" - ], - "Tablet": [ - "태블릿" - ], - "Desktop": [ - "데스크톱" - ], - "4 columns": [ - "열 4개" - ], - "3 columns": [ - "열 3개" - ], - "2 columns": [ - "열 2개" - ], - "1 column": [ - "열 1개" - ], - "Layout Grid": [ - "레이아웃 그리드" - ] -} \ No newline at end of file diff --git a/src/i18n-translations/layout-grid/data/nb.json b/src/i18n-translations/layout-grid/data/nb.json deleted file mode 100644 index 66c4d93e70..0000000000 --- a/src/i18n-translations/layout-grid/data/nb.json +++ /dev/null @@ -1,62 +0,0 @@ -{ - "No gutter": [ - "Ingen renne" - ], - "Changing the number of columns will reset your layout and could remove content.": [ - "Endring av antall kolonner vil tilbakestille ditt oppsett og kan fjerne innhold." - ], - "A column used inside a Layout Grid block.": [ - "En kolonne brukt på innsiden av en oppsettsrutnett-blokk." - ], - "Snow Patrol": [ - "Snøpatruljen" - ], - "Align blocks to a global grid, with support for responsive breakpoints.": [ - "Juster blokker til et globalt rutenett, med støtte for responsive avbruddspukter." - ], - "Huge": [ - "Diger" - ], - "Large": [ - "Stor" - ], - "Medium": [ - "Middels" - ], - "Small": [ - "Liten" - ], - "No padding": [ - "Ingen polstring" - ], - "Layout": [ - "Oppsett" - ], - "Column": [ - "Kolonne" - ], - "Mobile": [ - "Mobil" - ], - "Tablet": [ - "Nettbrett" - ], - "Desktop": [ - "Skrivebord" - ], - "4 columns": [ - "4 kolonner" - ], - "3 columns": [ - "3 kolonner" - ], - "2 columns": [ - "2 kolonner" - ], - "1 column": [ - "1 kolonne" - ], - "Layout Grid": [ - "Oppsettsrutenett" - ] -} \ No newline at end of file diff --git a/src/i18n-translations/layout-grid/data/nl-be.json b/src/i18n-translations/layout-grid/data/nl-be.json deleted file mode 100644 index edc236f523..0000000000 --- a/src/i18n-translations/layout-grid/data/nl-be.json +++ /dev/null @@ -1,62 +0,0 @@ -{ - "No gutter": [ - "Geen afscheiding" - ], - "Changing the number of columns will reset your layout and could remove content.": [ - "Door het aantal kolommen te wijzigen, wordt je lay-out gereset en kan inhoud verwijderd worden." - ], - "A column used inside a Layout Grid block.": [ - "Een kolom die in een lay-out rasterblok wordt gebruikt." - ], - "Snow Patrol": [ - "Snow Patrol" - ], - "Align blocks to a global grid, with support for responsive breakpoints.": [ - "Blokken uitlijnen in een algemeen raster, met ondersteuning voor responsieve breekpunten." - ], - "Huge": [ - "Reusachtig" - ], - "Large": [ - "Groot" - ], - "Medium": [ - "Gemiddeld" - ], - "Small": [ - "Klein" - ], - "No padding": [ - "Geen padding" - ], - "Layout": [ - "Lay-out" - ], - "Column": [ - "Kolom" - ], - "Mobile": [ - "Mobiel" - ], - "Tablet": [ - "Tablet" - ], - "Desktop": [ - "Desktop" - ], - "4 columns": [ - "4 kolommen" - ], - "3 columns": [ - "3 kolommen" - ], - "2 columns": [ - "2 kolommen" - ], - "1 column": [ - "1 kolom" - ], - "Layout Grid": [ - "Layout Grid" - ] -} \ No newline at end of file diff --git a/src/i18n-translations/layout-grid/data/nl.json b/src/i18n-translations/layout-grid/data/nl.json deleted file mode 100644 index c3df3ffbf0..0000000000 --- a/src/i18n-translations/layout-grid/data/nl.json +++ /dev/null @@ -1,62 +0,0 @@ -{ - "No gutter": [ - "Geen afscheiding" - ], - "Changing the number of columns will reset your layout and could remove content.": [ - "Door het aantal kolommen te wijzigen, wordt je lay-out gereset en kan inhoud verwijderd worden." - ], - "A column used inside a Layout Grid block.": [ - "Een kolom die in een indelingsrasterblok wordt gebruikt." - ], - "Snow Patrol": [ - "Snow Patrol" - ], - "Align blocks to a global grid, with support for responsive breakpoints.": [ - "Blokken uitlijnen in een algemeen raster, met ondersteuning voor responsieve breekpunten." - ], - "Huge": [ - "Enorm" - ], - "Large": [ - "Groot" - ], - "Medium": [ - "Gemiddeld" - ], - "Small": [ - "Klein" - ], - "No padding": [ - "Geen opvulling" - ], - "Layout": [ - "Lay-out" - ], - "Column": [ - "Kolom" - ], - "Mobile": [ - "Mobiel" - ], - "Tablet": [ - "Tablet" - ], - "Desktop": [ - "Desktop" - ], - "4 columns": [ - "4 kolommen" - ], - "3 columns": [ - "3 kolommen" - ], - "2 columns": [ - "2 kolommen" - ], - "1 column": [ - "1 kolom" - ], - "Layout Grid": [ - "Layout Grid" - ] -} \ No newline at end of file diff --git a/src/i18n-translations/layout-grid/data/pl.json b/src/i18n-translations/layout-grid/data/pl.json deleted file mode 100644 index 2ea98107af..0000000000 --- a/src/i18n-translations/layout-grid/data/pl.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "No gutter": [], - "Changing the number of columns will reset your layout and could remove content.": [], - "A column used inside a Layout Grid block.": [], - "Snow Patrol": [], - "Align blocks to a global grid, with support for responsive breakpoints.": [], - "Huge": [], - "Large": [], - "Medium": [], - "Small": [], - "No padding": [], - "Layout": [], - "Column": [], - "Mobile": [], - "Tablet": [], - "Desktop": [], - "4 columns": [], - "3 columns": [], - "2 columns": [], - "1 column": [], - "Layout Grid": [] -} \ No newline at end of file diff --git a/src/i18n-translations/layout-grid/data/pt-br.json b/src/i18n-translations/layout-grid/data/pt-br.json deleted file mode 100644 index d1d5b7d495..0000000000 --- a/src/i18n-translations/layout-grid/data/pt-br.json +++ /dev/null @@ -1,60 +0,0 @@ -{ - "No gutter": [ - "Sem medianiz" - ], - "Changing the number of columns will reset your layout and could remove content.": [ - "Alterar o número de colunas redefinirá seu layout e poderá remover o conteúdo." - ], - "A column used inside a Layout Grid block.": [ - "Uma coluna usada dentro de um bloco Grade de layout." - ], - "Snow Patrol": [ - "Snow Patrol" - ], - "Align blocks to a global grid, with support for responsive breakpoints.": [], - "Huge": [ - "Enorme" - ], - "Large": [ - "Grande" - ], - "Medium": [ - "Médio" - ], - "Small": [ - "Pequeno" - ], - "No padding": [ - "Sem preenchimento" - ], - "Layout": [ - "Layout" - ], - "Column": [ - "Coluna" - ], - "Mobile": [ - "Celular" - ], - "Tablet": [ - "Tablet" - ], - "Desktop": [ - "Área de trabalho" - ], - "4 columns": [ - "4 colunas" - ], - "3 columns": [ - "3 colunas" - ], - "2 columns": [ - "2 colunas" - ], - "1 column": [ - "1 coluna" - ], - "Layout Grid": [ - "Grade de layout" - ] -} \ No newline at end of file diff --git a/src/i18n-translations/layout-grid/data/pt.json b/src/i18n-translations/layout-grid/data/pt.json deleted file mode 100644 index 2ea98107af..0000000000 --- a/src/i18n-translations/layout-grid/data/pt.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "No gutter": [], - "Changing the number of columns will reset your layout and could remove content.": [], - "A column used inside a Layout Grid block.": [], - "Snow Patrol": [], - "Align blocks to a global grid, with support for responsive breakpoints.": [], - "Huge": [], - "Large": [], - "Medium": [], - "Small": [], - "No padding": [], - "Layout": [], - "Column": [], - "Mobile": [], - "Tablet": [], - "Desktop": [], - "4 columns": [], - "3 columns": [], - "2 columns": [], - "1 column": [], - "Layout Grid": [] -} \ No newline at end of file diff --git a/src/i18n-translations/layout-grid/data/ro.json b/src/i18n-translations/layout-grid/data/ro.json deleted file mode 100644 index 2ea98107af..0000000000 --- a/src/i18n-translations/layout-grid/data/ro.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "No gutter": [], - "Changing the number of columns will reset your layout and could remove content.": [], - "A column used inside a Layout Grid block.": [], - "Snow Patrol": [], - "Align blocks to a global grid, with support for responsive breakpoints.": [], - "Huge": [], - "Large": [], - "Medium": [], - "Small": [], - "No padding": [], - "Layout": [], - "Column": [], - "Mobile": [], - "Tablet": [], - "Desktop": [], - "4 columns": [], - "3 columns": [], - "2 columns": [], - "1 column": [], - "Layout Grid": [] -} \ No newline at end of file diff --git a/src/i18n-translations/layout-grid/data/ru.json b/src/i18n-translations/layout-grid/data/ru.json deleted file mode 100644 index c6aec512ef..0000000000 --- a/src/i18n-translations/layout-grid/data/ru.json +++ /dev/null @@ -1,62 +0,0 @@ -{ - "No gutter": [ - "Без интервала" - ], - "Changing the number of columns will reset your layout and could remove content.": [ - "Если изменить количество столбцов, разметка будет сброшена, а содержимое может быть удалено." - ], - "A column used inside a Layout Grid block.": [ - "Столбец, используемый в блоке разметки \"Сетка\"." - ], - "Snow Patrol": [ - "Снежный патруль" - ], - "Align blocks to a global grid, with support for responsive breakpoints.": [ - "Выравнивайте блоки по общей сетке с поддержкой адаптивных контрольных точек." - ], - "Huge": [ - "Большой" - ], - "Large": [ - "Большой" - ], - "Medium": [ - "Среднее" - ], - "Small": [ - "Маленький" - ], - "No padding": [ - "Без заполнения" - ], - "Layout": [ - "Разметка" - ], - "Column": [ - "Столбец" - ], - "Mobile": [ - "Мобильное устройство" - ], - "Tablet": [ - "Планшет" - ], - "Desktop": [ - "Настольный ПК" - ], - "4 columns": [ - "4 столбца" - ], - "3 columns": [ - "3 столбца" - ], - "2 columns": [ - "2 столбца" - ], - "1 column": [ - "1 столбец" - ], - "Layout Grid": [ - "Разметка \"Сетка\"" - ] -} \ No newline at end of file diff --git a/src/i18n-translations/layout-grid/data/sk.json b/src/i18n-translations/layout-grid/data/sk.json deleted file mode 100644 index 2ea98107af..0000000000 --- a/src/i18n-translations/layout-grid/data/sk.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "No gutter": [], - "Changing the number of columns will reset your layout and could remove content.": [], - "A column used inside a Layout Grid block.": [], - "Snow Patrol": [], - "Align blocks to a global grid, with support for responsive breakpoints.": [], - "Huge": [], - "Large": [], - "Medium": [], - "Small": [], - "No padding": [], - "Layout": [], - "Column": [], - "Mobile": [], - "Tablet": [], - "Desktop": [], - "4 columns": [], - "3 columns": [], - "2 columns": [], - "1 column": [], - "Layout Grid": [] -} \ No newline at end of file diff --git a/src/i18n-translations/layout-grid/data/sq.json b/src/i18n-translations/layout-grid/data/sq.json deleted file mode 100644 index 2ea98107af..0000000000 --- a/src/i18n-translations/layout-grid/data/sq.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "No gutter": [], - "Changing the number of columns will reset your layout and could remove content.": [], - "A column used inside a Layout Grid block.": [], - "Snow Patrol": [], - "Align blocks to a global grid, with support for responsive breakpoints.": [], - "Huge": [], - "Large": [], - "Medium": [], - "Small": [], - "No padding": [], - "Layout": [], - "Column": [], - "Mobile": [], - "Tablet": [], - "Desktop": [], - "4 columns": [], - "3 columns": [], - "2 columns": [], - "1 column": [], - "Layout Grid": [] -} \ No newline at end of file diff --git a/src/i18n-translations/layout-grid/data/sr.json b/src/i18n-translations/layout-grid/data/sr.json deleted file mode 100644 index 2ea98107af..0000000000 --- a/src/i18n-translations/layout-grid/data/sr.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "No gutter": [], - "Changing the number of columns will reset your layout and could remove content.": [], - "A column used inside a Layout Grid block.": [], - "Snow Patrol": [], - "Align blocks to a global grid, with support for responsive breakpoints.": [], - "Huge": [], - "Large": [], - "Medium": [], - "Small": [], - "No padding": [], - "Layout": [], - "Column": [], - "Mobile": [], - "Tablet": [], - "Desktop": [], - "4 columns": [], - "3 columns": [], - "2 columns": [], - "1 column": [], - "Layout Grid": [] -} \ No newline at end of file diff --git a/src/i18n-translations/layout-grid/data/sv.json b/src/i18n-translations/layout-grid/data/sv.json deleted file mode 100644 index e37c58cf25..0000000000 --- a/src/i18n-translations/layout-grid/data/sv.json +++ /dev/null @@ -1,62 +0,0 @@ -{ - "No gutter": [ - "Ingen fästmarginal" - ], - "Changing the number of columns will reset your layout and could remove content.": [ - "Ändring av antal kolumner återställer din layout och kan ta bort innehåll." - ], - "A column used inside a Layout Grid block.": [ - "En kolumn som används inuti ett Layout-rutnätsblock." - ], - "Snow Patrol": [ - "Snow Patrol" - ], - "Align blocks to a global grid, with support for responsive breakpoints.": [ - "Tilldela block till ett globalt rutnät, med stöd för responsiva brytpunkter." - ], - "Huge": [ - "Enorm" - ], - "Large": [ - "Stor" - ], - "Medium": [ - "Medium" - ], - "Small": [ - "Liten" - ], - "No padding": [ - "Ingen padding" - ], - "Layout": [ - "Layout" - ], - "Column": [ - "Kolumn" - ], - "Mobile": [ - "Mobil" - ], - "Tablet": [ - "Läsplatta" - ], - "Desktop": [ - "Stationär dator" - ], - "4 columns": [ - "4 kolumner" - ], - "3 columns": [ - "3 kolumner" - ], - "2 columns": [ - "2 kolumner" - ], - "1 column": [ - "1 kolumn" - ], - "Layout Grid": [ - "Layout Grid" - ] -} \ No newline at end of file diff --git a/src/i18n-translations/layout-grid/data/th.json b/src/i18n-translations/layout-grid/data/th.json deleted file mode 100644 index 2ea98107af..0000000000 --- a/src/i18n-translations/layout-grid/data/th.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "No gutter": [], - "Changing the number of columns will reset your layout and could remove content.": [], - "A column used inside a Layout Grid block.": [], - "Snow Patrol": [], - "Align blocks to a global grid, with support for responsive breakpoints.": [], - "Huge": [], - "Large": [], - "Medium": [], - "Small": [], - "No padding": [], - "Layout": [], - "Column": [], - "Mobile": [], - "Tablet": [], - "Desktop": [], - "4 columns": [], - "3 columns": [], - "2 columns": [], - "1 column": [], - "Layout Grid": [] -} \ No newline at end of file diff --git a/src/i18n-translations/layout-grid/data/tr.json b/src/i18n-translations/layout-grid/data/tr.json deleted file mode 100644 index 7628e552fe..0000000000 --- a/src/i18n-translations/layout-grid/data/tr.json +++ /dev/null @@ -1,60 +0,0 @@ -{ - "No gutter": [ - "Cilt payı yok" - ], - "Changing the number of columns will reset your layout and could remove content.": [ - "Sütun sayısını değiştirmek, düzeninizi sıfırlar ve içeriği kaldırabilir." - ], - "A column used inside a Layout Grid block.": [ - "Yerleşim Planı Grid bloğu içinde kullanılan bir sütun." - ], - "Snow Patrol": [ - "Kar Devriyesi" - ], - "Align blocks to a global grid, with support for responsive breakpoints.": [], - "Huge": [ - "Kocaman" - ], - "Large": [ - "Büyük" - ], - "Medium": [ - "Orta" - ], - "Small": [ - "Küçük" - ], - "No padding": [ - "Dolgu Yok" - ], - "Layout": [ - "Yerleştirme Planı" - ], - "Column": [ - "Sütun" - ], - "Mobile": [ - "Mobil" - ], - "Tablet": [ - "Tablet" - ], - "Desktop": [ - "Masaüstü" - ], - "4 columns": [ - "4 sütun" - ], - "3 columns": [ - "3 sütun" - ], - "2 columns": [ - "2 sütun" - ], - "1 column": [ - "1 sütun" - ], - "Layout Grid": [ - "Yerleşim Planı Kılavuzu" - ] -} \ No newline at end of file diff --git a/src/i18n-translations/layout-grid/data/uk.json b/src/i18n-translations/layout-grid/data/uk.json deleted file mode 100644 index 2ea98107af..0000000000 --- a/src/i18n-translations/layout-grid/data/uk.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "No gutter": [], - "Changing the number of columns will reset your layout and could remove content.": [], - "A column used inside a Layout Grid block.": [], - "Snow Patrol": [], - "Align blocks to a global grid, with support for responsive breakpoints.": [], - "Huge": [], - "Large": [], - "Medium": [], - "Small": [], - "No padding": [], - "Layout": [], - "Column": [], - "Mobile": [], - "Tablet": [], - "Desktop": [], - "4 columns": [], - "3 columns": [], - "2 columns": [], - "1 column": [], - "Layout Grid": [] -} \ No newline at end of file diff --git a/src/i18n-translations/layout-grid/data/ur.json b/src/i18n-translations/layout-grid/data/ur.json deleted file mode 100644 index 2ea98107af..0000000000 --- a/src/i18n-translations/layout-grid/data/ur.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "No gutter": [], - "Changing the number of columns will reset your layout and could remove content.": [], - "A column used inside a Layout Grid block.": [], - "Snow Patrol": [], - "Align blocks to a global grid, with support for responsive breakpoints.": [], - "Huge": [], - "Large": [], - "Medium": [], - "Small": [], - "No padding": [], - "Layout": [], - "Column": [], - "Mobile": [], - "Tablet": [], - "Desktop": [], - "4 columns": [], - "3 columns": [], - "2 columns": [], - "1 column": [], - "Layout Grid": [] -} \ No newline at end of file diff --git a/src/i18n-translations/layout-grid/data/vi.json b/src/i18n-translations/layout-grid/data/vi.json deleted file mode 100644 index 2ea98107af..0000000000 --- a/src/i18n-translations/layout-grid/data/vi.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "No gutter": [], - "Changing the number of columns will reset your layout and could remove content.": [], - "A column used inside a Layout Grid block.": [], - "Snow Patrol": [], - "Align blocks to a global grid, with support for responsive breakpoints.": [], - "Huge": [], - "Large": [], - "Medium": [], - "Small": [], - "No padding": [], - "Layout": [], - "Column": [], - "Mobile": [], - "Tablet": [], - "Desktop": [], - "4 columns": [], - "3 columns": [], - "2 columns": [], - "1 column": [], - "Layout Grid": [] -} \ No newline at end of file diff --git a/src/i18n-translations/layout-grid/data/zh-cn.json b/src/i18n-translations/layout-grid/data/zh-cn.json deleted file mode 100644 index 53fdaa75de..0000000000 --- a/src/i18n-translations/layout-grid/data/zh-cn.json +++ /dev/null @@ -1,62 +0,0 @@ -{ - "No gutter": [ - "无装订线" - ], - "Changing the number of columns will reset your layout and could remove content.": [ - "更改列数将重置布局,并可能删除内容。" - ], - "A column used inside a Layout Grid block.": [ - "在布局网格区块内使用的列。" - ], - "Snow Patrol": [ - "大雪纷飞" - ], - "Align blocks to a global grid, with support for responsive breakpoints.": [ - "将区块对齐到全局网格,并支持响应式断点" - ], - "Huge": [ - "特大" - ], - "Large": [ - "大" - ], - "Medium": [ - "中" - ], - "Small": [ - "小" - ], - "No padding": [ - "无边距" - ], - "Layout": [ - "布局" - ], - "Column": [ - "列" - ], - "Mobile": [ - "移动设备" - ], - "Tablet": [ - "平板电脑" - ], - "Desktop": [ - "台式设备" - ], - "4 columns": [ - "4 列" - ], - "3 columns": [ - "3 列" - ], - "2 columns": [ - "2 列" - ], - "1 column": [ - "1 列" - ], - "Layout Grid": [ - "布局网格" - ] -} \ No newline at end of file diff --git a/src/i18n-translations/layout-grid/data/zh-tw.json b/src/i18n-translations/layout-grid/data/zh-tw.json deleted file mode 100644 index 9fc425dd84..0000000000 --- a/src/i18n-translations/layout-grid/data/zh-tw.json +++ /dev/null @@ -1,60 +0,0 @@ -{ - "No gutter": [ - "無裝訂邊" - ], - "Changing the number of columns will reset your layout and could remove content.": [ - "變更欄位數量會重設版面配置,也可能移除內容。" - ], - "A column used inside a Layout Grid block.": [ - "格狀版面區塊內使用的欄位。" - ], - "Snow Patrol": [ - "Snow Patrol" - ], - "Align blocks to a global grid, with support for responsive breakpoints.": [], - "Huge": [ - "極大" - ], - "Large": [ - "大" - ], - "Medium": [ - "中" - ], - "Small": [ - "小" - ], - "No padding": [ - "沒有填補" - ], - "Layout": [ - "版面配置" - ], - "Column": [ - "欄" - ], - "Mobile": [ - "行動" - ], - "Tablet": [ - "平板電腦" - ], - "Desktop": [ - "桌上型電腦" - ], - "4 columns": [ - "4 個欄位" - ], - "3 columns": [ - "3 個欄位" - ], - "2 columns": [ - "2 個欄位" - ], - "1 column": [ - "1 個欄位" - ], - "Layout Grid": [ - "格狀版面" - ] -} \ No newline at end of file diff --git a/src/i18n-translations/layout-grid/index.js b/src/i18n-translations/layout-grid/index.js deleted file mode 100644 index 90909a5fe0..0000000000 --- a/src/i18n-translations/layout-grid/index.js +++ /dev/null @@ -1,58 +0,0 @@ -/* THIS IS A GENERATED FILE. DO NOT EDIT DIRECTLY. */ -/* eslint-disable prettier/prettier */ - -const translations = { - "ar": require( "./data/ar.json" ), - "bg": require( "./data/bg.json" ), - "bo": require( "./data/bo.json" ), - "ca": require( "./data/ca.json" ), - "cs": require( "./data/cs.json" ), - "cy": require( "./data/cy.json" ), - "da": require( "./data/da.json" ), - "de": require( "./data/de.json" ), - "en-au": require( "./data/en-au.json" ), - "en-ca": require( "./data/en-ca.json" ), - "en-gb": require( "./data/en-gb.json" ), - "en-nz": require( "./data/en-nz.json" ), - "en-za": require( "./data/en-za.json" ), - "el": require( "./data/el.json" ), - "es": require( "./data/es.json" ), - "es-ar": require( "./data/es-ar.json" ), - "es-cl": require( "./data/es-cl.json" ), - "es-cr": require( "./data/es-cr.json" ), - "fa": require( "./data/fa.json" ), - "fr": require( "./data/fr.json" ), - "gl": require( "./data/gl.json" ), - "he": require( "./data/he.json" ), - "hr": require( "./data/hr.json" ), - "hu": require( "./data/hu.json" ), - "id": require( "./data/id.json" ), - "is": require( "./data/is.json" ), - "it": require( "./data/it.json" ), - "ja": require( "./data/ja.json" ), - "ka": require( "./data/ka.json" ), - "ko": require( "./data/ko.json" ), - "nb": require( "./data/nb.json" ), - "nl": require( "./data/nl.json" ), - "nl-be": require( "./data/nl-be.json" ), - "pl": require( "./data/pl.json" ), - "pt": require( "./data/pt.json" ), - "pt-br": require( "./data/pt-br.json" ), - "ro": require( "./data/ro.json" ), - "ru": require( "./data/ru.json" ), - "sk": require( "./data/sk.json" ), - "sq": require( "./data/sq.json" ), - "sr": require( "./data/sr.json" ), - "sv": require( "./data/sv.json" ), - "th": require( "./data/th.json" ), - "tr": require( "./data/tr.json" ), - "uk": require( "./data/uk.json" ), - "ur": require( "./data/ur.json" ), - "vi": require( "./data/vi.json" ), - "zh-cn": require( "./data/zh-cn.json" ), - "zh-tw": require( "./data/zh-tw.json" ), -}; - -export const getTranslation = ( locale ) => translations[ locale ]; - -/* eslint-enable prettier/prettier */ diff --git a/src/index.js b/src/index.js index 3cce67e718..d7157fbbb5 100644 --- a/src/index.js +++ b/src/index.js @@ -6,8 +6,8 @@ import { registerGutenberg } from '@wordpress/react-native-editor'; /** * Internal dependencies */ -import { getTranslation as getJetpackTranslation } from './i18n-translations/jetpack'; -import { getTranslation as getLayoutGridTranslation } from './i18n-translations/layout-grid'; +import { getTranslation as getJetpackTranslation } from './i18n-cache/jetpack'; +import { getTranslation as getLayoutGridTranslation } from './i18n-cache/layout-grid'; const pluginTranslations = [ {