2024-09-07
This commit is contained in:
parent
082202007b
commit
3ae978e4e8
547 changed files with 3766 additions and 813 deletions
|
|
@ -1,7 +1,7 @@
|
|||
name: haikuatelier.fr
|
||||
type: wordpress
|
||||
docroot: web
|
||||
php_version: "8.3"
|
||||
php_version: "8.2"
|
||||
webserver_type: nginx-fpm
|
||||
xdebug_enabled: false
|
||||
additional_hostnames: []
|
||||
|
|
|
|||
1
.gitignore
vendored
1
.gitignore
vendored
|
|
@ -8,6 +8,7 @@ web/app/cache/*
|
|||
|
||||
# WordPress
|
||||
web/wp
|
||||
web/vendor
|
||||
web/.htaccess
|
||||
|
||||
# Logs
|
||||
|
|
|
|||
12
.oxlintrc.json
Normal file
12
.oxlintrc.json
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
{
|
||||
"env": {
|
||||
"browser": true,
|
||||
"es2022": true
|
||||
},
|
||||
"settings": {
|
||||
},
|
||||
"rules": {
|
||||
"import/export": "error",
|
||||
"typescript/consistent-type-imports": "error"
|
||||
}
|
||||
}
|
||||
|
|
@ -1,4 +1,5 @@
|
|||
{
|
||||
"$schema": "/phpactor.schema.json",
|
||||
"php_code_sniffer.enabled": false
|
||||
"php_code_sniffer.enabled": false,
|
||||
"language_server_psalm.enabled": false
|
||||
}
|
||||
|
|
|
|||
7
.vscode/settings.json
vendored
7
.vscode/settings.json
vendored
|
|
@ -4,6 +4,7 @@
|
|||
"controles",
|
||||
"defini",
|
||||
"deplie",
|
||||
"ENTETE",
|
||||
"etats",
|
||||
"ETATS",
|
||||
"exts",
|
||||
|
|
@ -11,13 +12,17 @@
|
|||
"glitchtip",
|
||||
"GLITCHTIP",
|
||||
"leve",
|
||||
"Proprietes",
|
||||
"reponse",
|
||||
"requete",
|
||||
"selecteur",
|
||||
"selecteurs",
|
||||
"Selectionne",
|
||||
"souleve",
|
||||
"tabpanel",
|
||||
"tete"
|
||||
"tete",
|
||||
"tseslint",
|
||||
"validite"
|
||||
],
|
||||
"djlint.pythonPath": "/home/gcch/.local/share/pipxu/venvs/8/bin/python",
|
||||
"djlint.useVenv": false,
|
||||
|
|
|
|||
|
|
@ -2,18 +2,18 @@
|
|||
"$schema": "https://biomejs.dev/schemas/1.8.3/schema.json",
|
||||
"files": {
|
||||
"ignore": ["*.min.js", "vendor", "web/app/plugins", "web/app/themes/haiku-atelier-2024/assets", "web/wp"],
|
||||
"ignoreUnknown": true,
|
||||
},
|
||||
"formatter": {
|
||||
"enabled": false,
|
||||
},
|
||||
"organizeImports": {
|
||||
"enabled": true,
|
||||
"ignoreUnknown": true
|
||||
},
|
||||
"formatter": { "enabled": false },
|
||||
"organizeImports": { "enabled": false },
|
||||
"linter": {
|
||||
"enabled": true,
|
||||
"rules": {
|
||||
"recommended": true,
|
||||
},
|
||||
},
|
||||
"complexity": {
|
||||
"noForEach": "off"
|
||||
},
|
||||
"nursery": { "recommended": true }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -39,15 +39,15 @@
|
|||
}
|
||||
],
|
||||
"require": {
|
||||
"php": ">=8.0",
|
||||
"php": ">=8.2",
|
||||
"composer/installers": "^2.2",
|
||||
"vlucas/phpdotenv": "^5.5",
|
||||
"oscarotero/env": "^2.1",
|
||||
"roots/bedrock-autoloader": "^1.0",
|
||||
"roots/bedrock-disallow-indexing": "^2.0",
|
||||
"roots/wordpress": "6.6.1",
|
||||
"roots/wp-config": "1.0.0",
|
||||
"roots/wp-password-bcrypt": "1.1.0",
|
||||
"roots/wordpress": "^6.6.1",
|
||||
"roots/wp-config": "^1.0.0",
|
||||
"roots/wp-password-bcrypt": "^1.1.0",
|
||||
"wpackagist-theme/twentytwentyfour": "^1.0",
|
||||
"timber/timber": "^2.2",
|
||||
"wpackagist-plugin/woocommerce": "^9.1",
|
||||
|
|
@ -60,16 +60,18 @@
|
|||
},
|
||||
"require-dev": {
|
||||
"squizlabs/php_codesniffer": "^3.7.1",
|
||||
"roave/security-advisories": "dev-latest"
|
||||
"roave/security-advisories": "dev-latest",
|
||||
"vimeo/psalm": "^5.25"
|
||||
},
|
||||
"config": {
|
||||
"optimize-autoloader": true,
|
||||
"preferred-install": "dist",
|
||||
"allow-plugins": {
|
||||
"composer/installers": true,
|
||||
"roots/wordpress-core-installer": true,
|
||||
"mnsami/composer-custom-directory-installer": true
|
||||
}
|
||||
"mnsami/composer-custom-directory-installer": true,
|
||||
"roots/wordpress-core-installer": true
|
||||
},
|
||||
"sort-packages": true
|
||||
},
|
||||
"minimum-stability": "dev",
|
||||
"prefer-stable": true,
|
||||
|
|
|
|||
1871
composer.lock
generated
1871
composer.lock
generated
File diff suppressed because it is too large
Load diff
|
|
@ -130,6 +130,12 @@ Config::define("WP_DEBUG_LOG", false);
|
|||
Config::define("SCRIPT_DEBUG", false);
|
||||
ini_set("display_errors", "0");
|
||||
|
||||
/**
|
||||
* Plugins
|
||||
*/
|
||||
Config::define("WPMU_PLUGIN_DIR", Config::get("WP_CONTENT_DIR") . "/mu-plugins");
|
||||
Config::define("WP_PLUGIN_DIR", Config::get("WP_CONTENT_DIR") . "/plugins");
|
||||
|
||||
/**
|
||||
* Allow WordPress to detect HTTPS when used behind a reverse proxy or a load balancer
|
||||
* See https://codex.wordpress.org/Function_Reference/is_ssl#Notes
|
||||
|
|
|
|||
40
eslint.config.js
Normal file
40
eslint.config.js
Normal file
|
|
@ -0,0 +1,40 @@
|
|||
import eslint from "@eslint/js";
|
||||
import perfectionist from "eslint-plugin-perfectionist";
|
||||
import tseslint from "typescript-eslint";
|
||||
|
||||
export default tseslint.config(
|
||||
eslint.configs.recommended,
|
||||
perfectionist.configs["recommended-natural"],
|
||||
...tseslint.configs.strictTypeChecked,
|
||||
...tseslint.configs.stylisticTypeChecked,
|
||||
{
|
||||
files: ["*.js", "web/app/themes/haiku-atelier-2024/src/**/*.ts"],
|
||||
languageOptions: {
|
||||
parserOptions: {
|
||||
projectService: true,
|
||||
tsconfigRootDir: import.meta.dirname,
|
||||
},
|
||||
},
|
||||
rules: {
|
||||
/* */
|
||||
"@typescript-eslint/array-type": ["error", {
|
||||
default: "generic",
|
||||
readonly: "generic",
|
||||
}],
|
||||
/* L'usage d'interfaces ou de types doit être à la discrétion du développeur. */
|
||||
"@typescript-eslint/consistent-type-definitions": "off",
|
||||
/* Désactive cette règle pour les fonctions fléchées pour rendre le code moins verbeux. */
|
||||
"@typescript-eslint/no-confusing-void-expression": [
|
||||
"error",
|
||||
{
|
||||
"ignoreArrowShorthand": true,
|
||||
"ignoreVoidOperator": false,
|
||||
},
|
||||
],
|
||||
/* Cette règle empêche de lever des erreurs génériques (p.ex. `E extends Error`). */
|
||||
"@typescript-eslint/only-throw-error": "off",
|
||||
/* Cette règle empêche le style fonctionnel « point free ». */
|
||||
"@typescript-eslint/unbound-method": "off",
|
||||
},
|
||||
},
|
||||
);
|
||||
6
justfile
6
justfile
|
|
@ -59,3 +59,9 @@ build-js:
|
|||
# Compile TypeScript à chaque changement de fichier
|
||||
watch-js:
|
||||
watchexec -w "web/app/themes/haiku-atelier-2024/src/scripts" just build-js
|
||||
|
||||
# Vérifie le code TypeScript avec des analyseurs statiques
|
||||
lint-js:
|
||||
-pnpm eslint "web/app/themes/haiku-atelier-2024/src/scripts"
|
||||
-pnpm biome check --reporter=summary "web/app/themes/haiku-atelier-2024/src/scripts"
|
||||
-pnpm oxlint "web/app/themes/haiku-atelier-2024/src/scripts"
|
||||
|
|
@ -15,16 +15,21 @@
|
|||
"purify-ts": "^2.1.0",
|
||||
"remeda": "^2.12.0",
|
||||
"valibot": "^0.41.0",
|
||||
"wretch": "^2.9.0"
|
||||
"wretch": "^2.9.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@biomejs/biome": "^1.8.3",
|
||||
"@eslint/js": "^9.10.0",
|
||||
"@prettier/plugin-php": "^0.22.2",
|
||||
"@prettier/plugin-xml": "^3.4.1",
|
||||
"@sentry/types": "^8.28.0",
|
||||
"@swc/cli": "^0.4.0",
|
||||
"@types/eslint__js": "^8.42.3",
|
||||
"browserslist": "^4.23.3",
|
||||
"eslint": "^9.10.0",
|
||||
"eslint-plugin-perfectionist": "^3.4.0",
|
||||
"fdir": "^6.3.0",
|
||||
"oxlint": "^0.9.3",
|
||||
"picomatch": "^4.0.2",
|
||||
"prettier": "^3.3.3",
|
||||
"prettier-plugin-pkg": "^0.18.1",
|
||||
|
|
@ -37,6 +42,7 @@
|
|||
"stylelint-declaration-block-no-ignored-properties": "^2.8.0",
|
||||
"stylelint-plugin-logical-css": "^1.2.1",
|
||||
"typescript": "^5.5.4",
|
||||
"typescript-eslint": "^8.4.0",
|
||||
"vite": "^5.4.3",
|
||||
"vite-plugin-valibot-env": "^0.6.11",
|
||||
"wp-types": "^4.66.1"
|
||||
|
|
|
|||
794
pnpm-lock.yaml
generated
794
pnpm-lock.yaml
generated
File diff suppressed because it is too large
Load diff
25
psalm.xml
Normal file
25
psalm.xml
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
<?xml version="1.0" ?>
|
||||
<psalm
|
||||
xmlns="https://getpsalm.org/schema/config"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="https://getpsalm.org/schema/config vendor/vimeo/psalm/config.xsd"
|
||||
autoloader="web/wp-config.php"
|
||||
errorLevel="4"
|
||||
findUnusedBaselineEntry="true"
|
||||
findUnusedCode="true"
|
||||
resolveFromConfigFile="true"
|
||||
>
|
||||
<projectFiles>
|
||||
<directory name="config" />
|
||||
<directory name="web" />
|
||||
<ignoreFiles>
|
||||
<directory name="vendor" />
|
||||
</ignoreFiles>
|
||||
</projectFiles>
|
||||
|
||||
<plugins>
|
||||
<pluginClass class="PsalmWordPress\Plugin">
|
||||
<useDefaultStubs value="false" />
|
||||
</pluginClass>
|
||||
</plugins>
|
||||
</psalm>
|
||||
|
|
@ -1,9 +1,13 @@
|
|||
// @ts-check
|
||||
|
||||
// @ts-expect-error -- La dépendance ne dispose pas de types.
|
||||
import { propertyGroups } from "stylelint-config-clean-order";
|
||||
|
||||
/** @type {Array<import("./lib/stylelint.js").StylelintConfigCleanOrderPropertyGroup>} */
|
||||
const propertiesOrder = propertyGroups.map(properties => ({
|
||||
/** @type {string[][]} */
|
||||
// eslint-disable-next-line @typescript-eslint/no-unsafe-argument -- Impossible de typer correctement avec JSDoc.
|
||||
const groupesProprietes = Array.from(/** @type {GroupeProprietes} */ propertyGroups);
|
||||
|
||||
/** @import { StylelintConfigCleanOrderPropertyGroup } from "./lib/stylelint" */
|
||||
/** @type {Array<StylelintConfigCleanOrderPropertyGroup>} */
|
||||
const ordreProprietes = groupesProprietes.map(properties => ({
|
||||
emptyLineBefore: "never",
|
||||
noEmptyLineBetween: true,
|
||||
properties,
|
||||
|
|
@ -14,9 +18,9 @@ export default {
|
|||
extends: ["stylelint-config-standard-scss", "stylelint-config-sass-guidelines", "stylelint-config-clean-order"],
|
||||
plugins: ["stylelint-declaration-block-no-ignored-properties"],
|
||||
rules: {
|
||||
"@stylistic/function-parentheses-space-inside": null,
|
||||
"@stylistic/selector-list-comma-newline-after": null,
|
||||
"@stylistic/string-quotes": null,
|
||||
"@stylistic/function-parentheses-space-inside": null,
|
||||
"custom-property-pattern": null,
|
||||
"declaration-block-no-duplicate-custom-properties": true,
|
||||
"declaration-block-no-duplicate-properties": true,
|
||||
|
|
@ -25,12 +29,12 @@ export default {
|
|||
"max-nesting-depth": null,
|
||||
"no-descending-specificity": null,
|
||||
"no-duplicate-selectors": [true, { disallowInList: false }],
|
||||
"order/properties-order": [propertiesOrder, { severity: "error", unspecified: "bottomAlphabetical" }],
|
||||
"order/properties-order": [ordreProprietes, { severity: "error", unspecified: "bottomAlphabetical" }],
|
||||
"plugin/declaration-block-no-ignored-properties": true,
|
||||
"selector-class-pattern": null,
|
||||
"selector-id-pattern": null,
|
||||
"selector-max-compound-selectors": null,
|
||||
"selector-max-id": null,
|
||||
"selector-no-qualifying-type": null,
|
||||
"selector-max-compound-selectors": null,
|
||||
},
|
||||
};
|
||||
|
|
|
|||
|
|
@ -13,7 +13,11 @@
|
|||
"exactOptionalPropertyTypes": true,
|
||||
"forceConsistentCasingInFileNames": true,
|
||||
"isolatedModules": true,
|
||||
"lib": ["DOM", "ES2020", "ES2022"],
|
||||
"lib": [
|
||||
"DOM",
|
||||
"ES2020",
|
||||
"ES2022"
|
||||
],
|
||||
"module": "ES2022",
|
||||
"moduleDetection": "force",
|
||||
"moduleResolution": "Bundler",
|
||||
|
|
@ -37,7 +41,9 @@
|
|||
"suppressExcessPropertyErrors": false,
|
||||
"suppressImplicitAnyIndexErrors": false,
|
||||
"target": "ES2022",
|
||||
"types": ["vite/client"],
|
||||
"types": [
|
||||
"vite/client"
|
||||
],
|
||||
"useDefineForClassFields": true,
|
||||
"useUnknownInCatchVariables": true
|
||||
},
|
||||
|
|
|
|||
|
|
@ -9,13 +9,14 @@ const SRC_TYPESCRIPT_PATHS = new fdir()
|
|||
.withBasePath()
|
||||
.glob("**/*.ts")
|
||||
.filter((path, isDirectory) => !isDirectory && !path.endsWith("lol.ts"))
|
||||
.filter((path, isDirectory) => !isDirectory && !path.endsWith("d.ts"))
|
||||
.crawl(`web/app/themes/${SLUG_THEME}/src/scripts`)
|
||||
.withPromise();
|
||||
|
||||
/* Voir le fichier vite.env.d.ts */
|
||||
const SCHEMA_ENVIRONNEMENT = v.object({
|
||||
VITE_URL: v.pipe(v.string(), v.nonEmpty(), v.url(), v.readonly()),
|
||||
VITE_GLITCHTIP_NSD: v.pipe(v.string(), v.url(), v.readonly()),
|
||||
VITE_URL: v.pipe(v.string(), v.nonEmpty(), v.url(), v.readonly()),
|
||||
});
|
||||
|
||||
export default defineConfig({
|
||||
|
|
@ -27,6 +28,7 @@ export default defineConfig({
|
|||
manifest: true,
|
||||
minify: true,
|
||||
outDir: resolve("./web/app/themes/haiku-atelier-2024/assets/js"),
|
||||
reportCompressedSize: true,
|
||||
rollupOptions: {
|
||||
input: await SRC_TYPESCRIPT_PATHS,
|
||||
output: {
|
||||
|
|
@ -39,7 +41,6 @@ export default defineConfig({
|
|||
treeshake: "smallest",
|
||||
},
|
||||
sourcemap: true,
|
||||
reportCompressedSize: true,
|
||||
target: "es2023",
|
||||
watch: { clearScreen: false },
|
||||
write: true,
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
{"translation-revision-date":"2024-08-21 18:24:32+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Creating the product":["Creating the product"]}},"comment":{"reference":"assets\/client\/admin\/chunks\/edit-product-page.js"}}
|
||||
{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Creating the product":["Creating the product"]}},"comment":{"reference":"assets\/client\/admin\/chunks\/edit-product-page.js"}}
|
||||
|
|
@ -1 +1 @@
|
|||
{"translation-revision-date":"2024-08-21 18:24:32+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"This version of the Product Search block is outdated. Upgrade to continue using.":["This version of the Product Search block is outdated. Upgrade to continue using."],"Upgrade Block":["Upgrade Block"],"Enter search placeholder text":["Enter search placeholder text"],"Search Label":["Search Label"],"A search box to allow customers to search for products by keyword.":["A search box to allow customers to search for products by keyword."],"Search products\u2026":["Search products..."],"Show search field label":["Show search field label"],"Product Search":["Product Search"],"Content":["Content"],"Search":["Search"],"WooCommerce":["WooCommerce"]}},"comment":{"reference":"assets\/client\/blocks\/product-search.js"}}
|
||||
{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"This version of the Product Search block is outdated. Upgrade to continue using.":["This version of the Product Search block is outdated. Upgrade to continue using."],"Upgrade Block":["Upgrade Block"],"Enter search placeholder text":["Enter search placeholder text"],"Search Label":["Search Label"],"A search box to allow customers to search for products by keyword.":["A search box to allow customers to search for products by keyword."],"Search products\u2026":["Search products..."],"Show search field label":["Show search field label"],"Product Search":["Product Search"],"Content":["Content"],"Search":["Search"],"WooCommerce":["WooCommerce"]}},"comment":{"reference":"assets\/client\/blocks\/product-search.js"}}
|
||||
|
|
@ -1 +1 @@
|
|||
{"translation-revision-date":"2024-08-21 18:24:32+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Shipping, taxes, and discounts calculated at checkout.":["Shipping, taxes, and discounts calculated at checkout."],"Subtotal":["Subtotal"]}},"comment":{"reference":"assets\/client\/blocks\/mini-cart-contents-block\/footer-style.js"}}
|
||||
{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Shipping, taxes, and discounts calculated at checkout.":["Shipping, taxes, and discounts calculated at checkout."],"Subtotal":["Subtotal"]}},"comment":{"reference":"assets\/client\/blocks\/mini-cart-contents-block\/footer-style.js"}}
|
||||
|
|
@ -1 +1 @@
|
|||
{"translation-revision-date":"2024-08-21 18:24:32+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"SKU:":["SKU:"]}},"comment":{"reference":"assets\/client\/blocks\/product-sku.js"}}
|
||||
{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"SKU:":["SKU:"]}},"comment":{"reference":"assets\/client\/blocks\/product-sku.js"}}
|
||||
|
|
@ -1 +1 @@
|
|||
{"translation-revision-date":"2024-08-21 18:24:32+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"install":["install"],"Create shipping label":["Create shipping label"],"Print discounted shipping labels with a click.":["Print discounted shipping labels with a click."],"Shipping ":["Shipping "],"Plugin installed and activated":["Plugin installed and activated"],"Shipment Tracking":["Shipment Tracking"],"Toggle panel:":["Toggle panel:"],"By clicking \"Create shipping label\", {{wcsLink}}WooCommerce Shipping{{\/wcsLink}} will be installed and you agree to its {{tosLink}}Terms of Service{{\/tosLink}}.":["By clicking \"Create shipping label\", {{wcsLink}}WooCommerce Shipping{{\/wcsLink}} will be installed and you agree to its {{tosLink}}Terms of Service{{\/tosLink}}."],"You've already installed WooCommerce Shipping. By clicking \"Create shipping label\", you agree to its {{tosLink}}Terms of Service{{\/tosLink}}.":["You've already installed WooCommerce Shipping. By clicking \"Create shipping label\", you agree to its {{tosLink}}Terms of Service{{\/tosLink}}."],"Unable to %s the plugin. Refresh the page and try again.":["Unable to %s the plugin. Refresh the page and try again."],"start":["start"],"set up":["set up"],"activate":["activate"],"I don't need this":["I don't need this"],"Remind me later":["Remind me later"],"With WooCommerce Shipping you can Print shipping labels from your WooCommerce dashboard at the lowest USPS rates.":["With WooCommerce Shipping you can print shipping labels from your WooCommerce dashboard at the lowest USPS rates."],"Are you sure?":["Are you sure?"],"Mutable settings should be accessed via data store.":["Mutable settings should be accessed via data store."],"Close Print Label Banner.":["Close Print Label Banner."],"Shipping Label":["Shipping Label"],"download":["download","downloads"]}},"comment":{"reference":"assets\/client\/admin\/wp-admin-scripts\/print-shipping-label-banner.js"}}
|
||||
{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"install":["install"],"Create shipping label":["Create shipping label"],"Print discounted shipping labels with a click.":["Print discounted shipping labels with a click."],"Shipping ":["Shipping "],"Plugin installed and activated":["Plugin installed and activated"],"Shipment Tracking":["Shipment Tracking"],"Toggle panel:":["Toggle panel:"],"By clicking \"Create shipping label\", {{wcsLink}}WooCommerce Shipping{{\/wcsLink}} will be installed and you agree to its {{tosLink}}Terms of Service{{\/tosLink}}.":["By clicking \"Create shipping label\", {{wcsLink}}WooCommerce Shipping{{\/wcsLink}} will be installed and you agree to its {{tosLink}}Terms of Service{{\/tosLink}}."],"You've already installed WooCommerce Shipping. By clicking \"Create shipping label\", you agree to its {{tosLink}}Terms of Service{{\/tosLink}}.":["You've already installed WooCommerce Shipping. By clicking \"Create shipping label\", you agree to its {{tosLink}}Terms of Service{{\/tosLink}}."],"Unable to %s the plugin. Refresh the page and try again.":["Unable to %s the plugin. Refresh the page and try again."],"start":["start"],"set up":["set up"],"activate":["activate"],"I don't need this":["I don't need this"],"Remind me later":["Remind me later"],"With WooCommerce Shipping you can Print shipping labels from your WooCommerce dashboard at the lowest USPS rates.":["With WooCommerce Shipping you can print shipping labels from your WooCommerce dashboard at the lowest USPS rates."],"Are you sure?":["Are you sure?"],"Mutable settings should be accessed via data store.":["Mutable settings should be accessed via data store."],"Close Print Label Banner.":["Close Print Label Banner."],"Shipping Label":["Shipping Label"],"download":["download","downloads"]}},"comment":{"reference":"assets\/client\/admin\/wp-admin-scripts\/print-shipping-label-banner.js"}}
|
||||
|
|
@ -1 +1 @@
|
|||
{"translation-revision-date":"2024-08-21 18:24:32+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"An error has prevented the block from being updated.":["An error has prevented the block from being updated."],"Align the last block to the bottom.":["Align the last block to the bottom."],"Align the last block to the bottom":["Align the last block to the bottom"],"Stock status \"%s\" hidden.":["Stock status \"%s\" hidden."],"Stock status \"%s\" visible.":["Stock status \"%s\" visible."],"%1$s, has %2$d review":["%1$s, has %2$d review","%1$s, has %2$d reviews"],"%1$s, has %2$d product":["%1$s, has %2$d product","%1$s, has %2$d products"],"Loading\u2026":["Loading\u2026"],"This block shows on-sale products. There are currently no discounted products in your store.":["This block shows on-sale products. There are currently no discounted products in your store."],"Display a grid of products currently on sale.":["Display a grid of products currently on sale."],"The last inner block will follow other content.":["The last inner block will follow other content."],"The following error was returned":["The following error was returned"],"The following error was returned from the API":["The following error was returned from the API"],"%d review":["%d review","%d reviews"],"Search results updated.":["Search results updated."],"%d item selected":["%d item selected","%d items selected"],"Search for items":["Search for items"],"No results for %s":["No results for %s"],"No items found.":["No items found."],"Clear all selected items":["Clear all selected items"],"Clear all":["Clear all"],"Remove %s":["Remove %s"],"%d category selected":["%d category selected","%d categories selected"],"All selected categories":["All selected categories"],"Any selected categories":["Any selected categories"],"Category search results updated.":["Category search results updated."],"Clear all product categories":["Clear all product categories"],"Columns":["Columns"],"Layout":["Layout"],"Pick at least two categories to use this setting.":["Pick at least two categories to use this setting."],"Rows":["Rows"],"Search for product categories":["Search for product categories"],"Your store doesn't have any product categories.":["Your store doesn't have any product categories."],"On Sale Products":["On Sale Products"],"Filter by Product Category":["Filter by Product Category"],"Order By":["Order By"],"Add to Cart button":["Add to Basket button"],"Display products matching":["Display products matching"],"Newness - newest first":["Newness - newest first"],"Order products by":["Order products by"],"Price - high to low":["Price - high to low"],"Price - low to high":["Price - low to high"],"Product price":["Product price"],"Product rating":["Product rating"],"Product title":["Product title"],"Rating - highest first":["Rating - highest first"],"Sales - most first":["Sales - most first"],"Title - alphabetical":["Title - alphabetical"],"Menu Order":["Menu Order"],"Filter by stock status":["Filter by stock status"],"Product image":["Product image"],"%d product":["%d product","%d products"],"Content":["Content"],"Product Categories":["Product Categories"],"WooCommerce":["WooCommerce"]}},"comment":{"reference":"assets\/client\/blocks\/product-on-sale.js"}}
|
||||
{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"An error has prevented the block from being updated.":["An error has prevented the block from being updated."],"Align the last block to the bottom.":["Align the last block to the bottom."],"Align the last block to the bottom":["Align the last block to the bottom"],"Stock status \"%s\" hidden.":["Stock status \"%s\" hidden."],"Stock status \"%s\" visible.":["Stock status \"%s\" visible."],"%1$s, has %2$d review":["%1$s, has %2$d review","%1$s, has %2$d reviews"],"%1$s, has %2$d product":["%1$s, has %2$d product","%1$s, has %2$d products"],"Loading\u2026":["Loading\u2026"],"This block shows on-sale products. There are currently no discounted products in your store.":["This block shows on-sale products. There are currently no discounted products in your store."],"Display a grid of products currently on sale.":["Display a grid of products currently on sale."],"The last inner block will follow other content.":["The last inner block will follow other content."],"The following error was returned":["The following error was returned"],"The following error was returned from the API":["The following error was returned from the API"],"%d review":["%d review","%d reviews"],"Search results updated.":["Search results updated."],"%d item selected":["%d item selected","%d items selected"],"Search for items":["Search for items"],"No results for %s":["No results for %s"],"No items found.":["No items found."],"Clear all selected items":["Clear all selected items"],"Clear all":["Clear all"],"Remove %s":["Remove %s"],"%d category selected":["%d category selected","%d categories selected"],"All selected categories":["All selected categories"],"Any selected categories":["Any selected categories"],"Category search results updated.":["Category search results updated."],"Clear all product categories":["Clear all product categories"],"Columns":["Columns"],"Layout":["Layout"],"Pick at least two categories to use this setting.":["Pick at least two categories to use this setting."],"Rows":["Rows"],"Search for product categories":["Search for product categories"],"Your store doesn't have any product categories.":["Your store doesn't have any product categories."],"On Sale Products":["On Sale Products"],"Filter by Product Category":["Filter by Product Category"],"Order By":["Order By"],"Add to Cart button":["Add to Basket button"],"Display products matching":["Display products matching"],"Newness - newest first":["Newness - newest first"],"Order products by":["Order products by"],"Price - high to low":["Price - high to low"],"Price - low to high":["Price - low to high"],"Product price":["Product price"],"Product rating":["Product rating"],"Product title":["Product title"],"Rating - highest first":["Rating - highest first"],"Sales - most first":["Sales - most first"],"Title - alphabetical":["Title - alphabetical"],"Menu Order":["Menu Order"],"Filter by stock status":["Filter by stock status"],"Product image":["Product image"],"%d product":["%d product","%d products"],"Content":["Content"],"Product Categories":["Product Categories"],"WooCommerce":["WooCommerce"]}},"comment":{"reference":"assets\/client\/blocks\/product-on-sale.js"}}
|
||||
|
|
@ -1 +1 @@
|
|||
{"translation-revision-date":"2024-08-21 18:24:32+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Invalid item":["Invalid item"],"Item removed.":["Item removed."],"Item added.":["Item added."],"Separate with commas or the Enter key.":["Separate with commas or the Enter key."],"Separate with commas, spaces, or the Enter key.":["Separate with commas, spaces, or the Enter key."],"Add item":["Add item"],"Remove item":["Remove item"],"%1$s (%2$s of %3$s)":["%1$s (%2$s of %3$s)"],"%d result found, use up and down arrow keys to navigate.":["%d result found, use up and down arrow keys to navigate.","%d results found, use up and down arrow keys to navigate."],"No results.":["No results."]}},"comment":{"reference":"assets\/client\/blocks\/wc-blocks-frontend-vendors-frontend.js"}}
|
||||
{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Invalid item":["Invalid item"],"Item removed.":["Item removed."],"Item added.":["Item added."],"Separate with commas or the Enter key.":["Separate with commas or the Enter key."],"Separate with commas, spaces, or the Enter key.":["Separate with commas, spaces, or the Enter key."],"Add item":["Add item"],"Remove item":["Remove item"],"%1$s (%2$s of %3$s)":["%1$s (%2$s of %3$s)"],"%d result found, use up and down arrow keys to navigate.":["%d result found, use up and down arrow keys to navigate.","%d results found, use up and down arrow keys to navigate."],"No results.":["No results."]}},"comment":{"reference":"assets\/client\/blocks\/wc-blocks-frontend-vendors-frontend.js"}}
|
||||
|
|
@ -1 +1 @@
|
|||
{"translation-revision-date":"2024-08-21 18:24:32+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Undo":["Undo"],"Learn more":["Learn more"],"WooCommerce":["WooCommerce"]}},"comment":{"reference":"assets\/client\/blocks\/classic-shortcode.js"}}
|
||||
{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Undo":["Undo"],"Learn more":["Learn more"],"WooCommerce":["WooCommerce"]}},"comment":{"reference":"assets\/client\/blocks\/classic-shortcode.js"}}
|
||||
|
|
@ -1 +1 @@
|
|||
{"translation-revision-date":"2024-08-21 18:24:32+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Add %s section":["Add %s section"],"Add more sections":["Add more sections"],"Dashboard Sections":["Dashboard Sections"],"Remove block":["Remove block"],"Performance":["Performance"],"Leaderboards":["Leaderboards"],"Charts":["Charts"],"Remove section":["Remove section"],"Section title":["Section title"],"Move up":["Move up"],"Move down":["Move down"]}},"comment":{"reference":"assets\/client\/admin\/chunks\/customizable-dashboard.js"}}
|
||||
{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Add %s section":["Add %s section"],"Add more sections":["Add more sections"],"Dashboard Sections":["Dashboard Sections"],"Remove block":["Remove block"],"Performance":["Performance"],"Leaderboards":["Leaderboards"],"Charts":["Charts"],"Remove section":["Remove section"],"Section title":["Section title"],"Move up":["Move up"],"Move down":["Move down"]}},"comment":{"reference":"assets\/client\/admin\/chunks\/customizable-dashboard.js"}}
|
||||
|
|
@ -1 +1 @@
|
|||
{"translation-revision-date":"2024-08-21 18:24:32+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Add your product categories":["Add your product categories"],"Add your product categories here. Assign categories to your products to make them easier to browse through and find in your store.":["Add your product categories here. Assign categories to your products to make them easier to browse through and find in your store."],"Add your product tags here. Tags are a method of labeling your products to make them easier for customers to find. For example, if you sell clothing, and you have a lot of cat prints, you could make a tag for \u201ccat.\u201d":["Add your product tags here. Tags are a method of labeling your products to make them easier for customers to find. For example, if you sell clothing, and you have a lot of cat prints, you could make a tag for \u201ccat.\u201d"],"Good work! Now you can publish your product to your store by hitting the \u201cPublish\u201d button or keep editing it.":["Good work! Now you can publish your product to your store by hitting the \u201cPublish\u201d button or keep editing it."],"Keep editing":["Keep editing"],"Publish your product \ud83c\udf89":["Publish your product \ud83c\udf89"],"Add your product tags":["Add your product tags"],"Upload an image to your product here. Ideally a JPEG or PNG about 600 px wide or bigger. This image will be shown in your store\u2019s catalog.":["Upload an image to your product here. Ideally a JPEG or PNG about 600 px wide or bigger. This image will be shown in your store\u2019s catalogue."],"Add your product data":["Add your product data"],"Add your product description":["Add your product description"],"Add your product image":["Add your product image"],"Add your short product description":["Add your short product description"],"Start typing your new product name here. This will be what your customers will see in your store.":["Start typing your new product name here. This will be what your customers will see in your store."],"Type a quick summary for your product here. This will appear on the product page right under the product name.":["Type a quick summary for your product here. This will appear on the product page right under the product name."],"Use the tabs to switch between sections and insert product details. Start by adding your product price.":["Use the tabs to switch between sections and insert product details. Start by adding your product price."],"Product name":["Product name"]}},"comment":{"reference":"assets\/client\/admin\/wp-admin-scripts\/product-tour.js"}}
|
||||
{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Add your product categories":["Add your product categories"],"Add your product categories here. Assign categories to your products to make them easier to browse through and find in your store.":["Add your product categories here. Assign categories to your products to make them easier to browse through and find in your store."],"Add your product tags here. Tags are a method of labeling your products to make them easier for customers to find. For example, if you sell clothing, and you have a lot of cat prints, you could make a tag for \u201ccat.\u201d":["Add your product tags here. Tags are a method of labeling your products to make them easier for customers to find. For example, if you sell clothing, and you have a lot of cat prints, you could make a tag for \u201ccat.\u201d"],"Good work! Now you can publish your product to your store by hitting the \u201cPublish\u201d button or keep editing it.":["Good work! Now you can publish your product to your store by hitting the \u201cPublish\u201d button or keep editing it."],"Keep editing":["Keep editing"],"Publish your product \ud83c\udf89":["Publish your product \ud83c\udf89"],"Add your product tags":["Add your product tags"],"Upload an image to your product here. Ideally a JPEG or PNG about 600 px wide or bigger. This image will be shown in your store\u2019s catalog.":["Upload an image to your product here. Ideally a JPEG or PNG about 600 px wide or bigger. This image will be shown in your store\u2019s catalogue."],"Add your product data":["Add your product data"],"Add your product description":["Add your product description"],"Add your product image":["Add your product image"],"Add your short product description":["Add your short product description"],"Start typing your new product name here. This will be what your customers will see in your store.":["Start typing your new product name here. This will be what your customers will see in your store."],"Type a quick summary for your product here. This will appear on the product page right under the product name.":["Type a quick summary for your product here. This will appear on the product page right under the product name."],"Use the tabs to switch between sections and insert product details. Start by adding your product price.":["Use the tabs to switch between sections and insert product details. Start by adding your product price."],"Product name":["Product name"]}},"comment":{"reference":"assets\/client\/admin\/wp-admin-scripts\/product-tour.js"}}
|
||||
|
|
@ -1 +1 @@
|
|||
{"translation-revision-date":"2024-08-21 18:24:32+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Add products":["Add products"],"Stock":["Stock"],"Price":["Price"],"Product":["Product"]}},"comment":{"reference":"assets\/client\/admin\/product-editor\/blocks\/product-fields\/product-list\/edit.js"}}
|
||||
{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Add products":["Add products"],"Stock":["Stock"],"Price":["Price"],"Product":["Product"]}},"comment":{"reference":"assets\/client\/admin\/product-editor\/blocks\/product-fields\/product-list\/edit.js"}}
|
||||
|
|
@ -1 +1 @@
|
|||
{"translation-revision-date":"2024-08-21 18:24:32+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"There are no shipping options available. Please check your shipping address.":["There are no shipping options available. Please check your shipping address."],"Step description text.":["Step description text."],"Step":["Step"],"Shipping options will be displayed here after entering your full shipping address.":["Shipping options will be displayed here after entering your full shipping address."],"Shipping options":["Shipping options"],"Free":["Free"]}},"comment":{"reference":"assets\/client\/blocks\/checkout-blocks\/shipping-methods-frontend.js"}}
|
||||
{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"There are no shipping options available. Please check your shipping address.":["There are no shipping options available. Please check your shipping address."],"Step description text.":["Step description text."],"Step":["Step"],"Shipping options will be displayed here after entering your full shipping address.":["Shipping options will be displayed here after entering your full shipping address."],"Shipping options":["Shipping options"],"Free":["Free"]}},"comment":{"reference":"assets\/client\/blocks\/checkout-blocks\/shipping-methods-frontend.js"}}
|
||||
|
|
@ -1 +1 @@
|
|||
{"translation-revision-date":"2024-08-21 18:24:32+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Default sorting":["Default sorting"]}},"comment":{"reference":"assets\/client\/blocks\/catalog-sorting.js"}}
|
||||
{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Default sorting":["Default sorting"]}},"comment":{"reference":"assets\/client\/blocks\/catalog-sorting.js"}}
|
||||
|
|
@ -1 +1 @@
|
|||
{"translation-revision-date":"2024-08-21 18:24:32+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Dismiss this notice":["Dismiss this notice"]}},"comment":{"reference":"assets\/client\/blocks\/store-notices.js"}}
|
||||
{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Dismiss this notice":["Dismiss this notice"]}},"comment":{"reference":"assets\/client\/blocks\/store-notices.js"}}
|
||||
|
|
@ -1 +1 @@
|
|||
{"translation-revision-date":"2024-08-21 18:24:32+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Price between %1$s and %2$s":["Price between %1$s and %2$s"],"Discounted price:":["Discounted price:"],"Previous price:":["Previous price:"]}},"comment":{"reference":"assets\/client\/blocks\/product-price.js"}}
|
||||
{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Price between %1$s and %2$s":["Price between %1$s and %2$s"],"Discounted price:":["Discounted price:"],"Previous price:":["Previous price:"]}},"comment":{"reference":"assets\/client\/blocks\/product-price.js"}}
|
||||
|
|
@ -1 +1 @@
|
|||
{"translation-revision-date":"2024-08-21 18:24:32+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Learn about marketing a store":["Learn about marketing a store"],"By %s":["By %s"],"Explore more marketing extensions":["Explore more marketing extensions"],"Continue to reach the right audiences and promote your products in ways that matter to them with our range of marketing solutions.":["Continue to reach the right audiences and promote your products in ways that matter to them with our range of marketing solutions."],"Discover more marketing tools":["Discover more marketing tools"],"Installed extensions":["Installed extensions"],"Zapier":["Zapier"],"Vimeo":["Vimeo"],"Trustpilot":["Trustpilot"],"Salesforce":["Salesforce"],"Jetpack CRM":["Jetpack CRM"],"Google":["Google"],"Creative Mail by Constant Contact":["Creative Mail by Constant Contact"],"Collapse":["Collapse"],"Built by WooCommerce":["Built by WooCommerce"],"View details":["View details"],"No posts yet":["No posts yet"],"Oops, our posts aren't loading right now":["Oops, our posts aren't loading right now"],"Read {{link}}the WooCommerce blog{{\/link}} for more tips on marketing your store":["Read {{link}}the WooCommerce blog{{\/link}} for more tips on marketing your store"],"There was an error loading recommended extensions.":["There was an error loading recommended extensions."],"There was an error loading installed extensions.":["There was an error loading installed extensions."],"There was an error trying to activate the extension.":["There was an error trying to activate the extension."],"The extension has been successfully activated.":["The extension has been successfully activated."],"Finish setup":["Finish setup"],"Facebook":["Facebook"],"Manage":["Manage"],"Activate":["Activate"],"Create":["Create"],"Sales":["Sales"],"Cost":["Cost"],"Expand":["Expand"]}},"comment":{"reference":"assets\/client\/admin\/chunks\/multichannel-marketing.js"}}
|
||||
{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Learn about marketing a store":["Learn about marketing a store"],"By %s":["By %s"],"Explore more marketing extensions":["Explore more marketing extensions"],"Continue to reach the right audiences and promote your products in ways that matter to them with our range of marketing solutions.":["Continue to reach the right audiences and promote your products in ways that matter to them with our range of marketing solutions."],"Discover more marketing tools":["Discover more marketing tools"],"Installed extensions":["Installed extensions"],"Zapier":["Zapier"],"Vimeo":["Vimeo"],"Trustpilot":["Trustpilot"],"Salesforce":["Salesforce"],"Jetpack CRM":["Jetpack CRM"],"Google":["Google"],"Creative Mail by Constant Contact":["Creative Mail by Constant Contact"],"Collapse":["Collapse"],"Built by WooCommerce":["Built by WooCommerce"],"View details":["View details"],"No posts yet":["No posts yet"],"Oops, our posts aren't loading right now":["Oops, our posts aren't loading right now"],"Read {{link}}the WooCommerce blog{{\/link}} for more tips on marketing your store":["Read {{link}}the WooCommerce blog{{\/link}} for more tips on marketing your store"],"There was an error loading recommended extensions.":["There was an error loading recommended extensions."],"There was an error loading installed extensions.":["There was an error loading installed extensions."],"There was an error trying to activate the extension.":["There was an error trying to activate the extension."],"The extension has been successfully activated.":["The extension has been successfully activated."],"Finish setup":["Finish setup"],"Facebook":["Facebook"],"Manage":["Manage"],"Activate":["Activate"],"Create":["Create"],"Sales":["Sales"],"Cost":["Cost"],"Expand":["Expand"]}},"comment":{"reference":"assets\/client\/admin\/chunks\/multichannel-marketing.js"}}
|
||||
|
|
@ -1 +1 @@
|
|||
{"translation-revision-date":"2024-08-21 18:24:32+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Publish":["Publish"],"Site Icon":["Site Icon"],"Undo":["Undo"],"Images":["Images"],"Content":["Content"],"Settings":["Settings"]}},"comment":{"reference":"assets\/client\/admin\/chunks\/8037.js"}}
|
||||
{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Publish":["Publish"],"Site Icon":["Site Icon"],"Undo":["Undo"],"Images":["Images"],"Content":["Content"],"Settings":["Settings"]}},"comment":{"reference":"assets\/client\/admin\/chunks\/8037.js"}}
|
||||
|
|
@ -1 +1 @@
|
|||
{"translation-revision-date":"2024-08-21 18:24:32+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"\ud83c\udfe0 Nice work creating your store's homepage!":["\ud83c\udfe0 Nice work creating your store's homepage!"],"Continue setup.":["Continue setup."]}},"comment":{"reference":"assets\/client\/admin\/wp-admin-scripts\/onboarding-homepage-notice.js"}}
|
||||
{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"\ud83c\udfe0 Nice work creating your store's homepage!":["\ud83c\udfe0 Nice work creating your store's homepage!"],"Continue setup.":["Continue setup."]}},"comment":{"reference":"assets\/client\/admin\/wp-admin-scripts\/onboarding-homepage-notice.js"}}
|
||||
|
|
@ -1 +1 @@
|
|||
{"translation-revision-date":"2024-08-21 18:24:32+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Done":["Done"],"Country \/ State":["Country \/ State"],"Title":["Title"],"Enable local pickup":["Enable local pickup"],"Postcode \/ ZIP":["Postcode \/ ZIP"],"Save changes":["Save changes"],"Free":["Free"],"Learn more":["Learn more"],"Cost":["Cost"],"Enabled":["Enabled"],"Taxable":["Taxable"],"Address":["Address","Addresses"],"Cancel":["Cancel"],"City":["City"],"Taxes":["Taxes"],"State":["State"],"Edit":["Edit"]}},"comment":{"reference":"assets\/client\/blocks\/wc-shipping-method-pickup-location.js"}}
|
||||
{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Done":["Done"],"Country \/ State":["Country \/ State"],"Title":["Title"],"Enable local pickup":["Enable local pickup"],"Postcode \/ ZIP":["Postcode \/ ZIP"],"Save changes":["Save changes"],"Free":["Free"],"Learn more":["Learn more"],"Cost":["Cost"],"Enabled":["Enabled"],"Taxable":["Taxable"],"Address":["Address","Addresses"],"Cancel":["Cancel"],"City":["City"],"Taxes":["Taxes"],"State":["State"],"Edit":["Edit"]}},"comment":{"reference":"assets\/client\/blocks\/wc-shipping-method-pickup-location.js"}}
|
||||
|
|
@ -1 +1 @@
|
|||
{"translation-revision-date":"2024-08-21 18:24:32+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Downloads":["Downloads"]}},"comment":{"reference":"assets\/client\/blocks\/order-confirmation-downloads-wrapper.js"}}
|
||||
{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Downloads":["Downloads"]}},"comment":{"reference":"assets\/client\/blocks\/order-confirmation-downloads-wrapper.js"}}
|
||||
|
|
@ -1 +1 @@
|
|||
{"translation-revision-date":"2024-08-21 18:24:32+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"View less product types":["View less product types"],"View more product types":["View more product types"],"What product do you want to add?":["What product do you want to add?"]}},"comment":{"reference":"assets\/client\/admin\/chunks\/1910.js"}}
|
||||
{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"View less product types":["View less product types"],"View more product types":["View more product types"],"What product do you want to add?":["What product do you want to add?"]}},"comment":{"reference":"assets\/client\/admin\/chunks\/1910.js"}}
|
||||
|
|
@ -1 +1 @@
|
|||
{"translation-revision-date":"2024-08-21 18:24:32+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Are you sure? Inbox messages will be dismissed forever.":["Are you sure? Inbox messages will be dismissed forever."],"Dismiss all":["Dismiss all"],"Inbox Notes Options":["Inbox Notes Options"],"Yes, dismiss all":["Yes, dismiss all"],"All messages dismissed":["All messages dismissed"],"Message could not be dismissed":["Message could not be dismissed"],"Undo":["Undo"],"Message dismissed":["Message dismissed"],"Dismiss all messages":["Dismiss all messages"],"Messages could not be dismissed":["Messages could not be dismissed"],"Inbox":["Inbox"],"There was an error getting your inbox. Please try again.":["There was an error getting your inbox. Please try again."],"As things begin to happen in your store your inbox will start to fill up. You'll see things like achievements, new feature announcements, extension recommendations and more!":["As things begin to happen in your store your inbox will start to fill up. You'll see things like achievements, new feature announcements, extension recommendations and more!"],"Your inbox is empty":["Your inbox is empty"],"Reload":["Reload"],"Cancel":["Cancel"]}},"comment":{"reference":"assets\/client\/admin\/chunks\/activity-panels-inbox.js"}}
|
||||
{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Are you sure? Inbox messages will be dismissed forever.":["Are you sure? Inbox messages will be dismissed forever."],"Dismiss all":["Dismiss all"],"Inbox Notes Options":["Inbox Notes Options"],"Yes, dismiss all":["Yes, dismiss all"],"All messages dismissed":["All messages dismissed"],"Message could not be dismissed":["Message could not be dismissed"],"Undo":["Undo"],"Message dismissed":["Message dismissed"],"Dismiss all messages":["Dismiss all messages"],"Messages could not be dismissed":["Messages could not be dismissed"],"Inbox":["Inbox"],"There was an error getting your inbox. Please try again.":["There was an error getting your inbox. Please try again."],"As things begin to happen in your store your inbox will start to fill up. You'll see things like achievements, new feature announcements, extension recommendations and more!":["As things begin to happen in your store your inbox will start to fill up. You'll see things like achievements, new feature announcements, extension recommendations and more!"],"Your inbox is empty":["Your inbox is empty"],"Reload":["Reload"],"Cancel":["Cancel"]}},"comment":{"reference":"assets\/client\/admin\/chunks\/activity-panels-inbox.js"}}
|
||||
|
|
@ -1 +1 @@
|
|||
{"translation-revision-date":"2024-08-21 18:24:32+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Tags":["Tags"]}},"comment":{"reference":"assets\/client\/admin\/product-editor\/blocks\/product-fields\/tag\/edit.js"}}
|
||||
{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Tags":["Tags"]}},"comment":{"reference":"assets\/client\/admin\/product-editor\/blocks\/product-fields\/tag\/edit.js"}}
|
||||
|
|
@ -1 +1 @@
|
|||
{"translation-revision-date":"2024-08-21 18:24:32+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Block title":["Block title"],"Stock Status":["Stock Status"],"Between %1$s and %2$s":["Between %1$s and %2$s"],"Clear All Filters":["Clear All Filters"],"Remove %s filter":["Remove %s filter"],"Blue":["Blue"],"Color":["Colour"],"Small":["Small"],"Size":["Size"],"Up to %s":["Up to %s"],"From %s":["From %s"],"Chips":["Chips"],"Clear All":["Clear All"],"Display Style":["Display Style"],"Display Settings":["Display Settings"],"List":["List"],"Active filters":["Active filters"],"All":["All"],"Price":["Price"],"Rating":["Rating"],"Rated %s out of 5":["Rated %s out of 5"]}},"comment":{"reference":"assets\/client\/blocks\/active-filters.js"}}
|
||||
{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Block title":["Block title"],"Stock Status":["Stock Status"],"Between %1$s and %2$s":["Between %1$s and %2$s"],"Clear All Filters":["Clear All Filters"],"Remove %s filter":["Remove %s filter"],"Blue":["Blue"],"Color":["Colour"],"Small":["Small"],"Size":["Size"],"Up to %s":["Up to %s"],"From %s":["From %s"],"Chips":["Chips"],"Clear All":["Clear All"],"Display Style":["Display Style"],"Display Settings":["Display Settings"],"List":["List"],"Active filters":["Active filters"],"All":["All"],"Price":["Price"],"Rating":["Rating"],"Rated %s out of 5":["Rated %s out of 5"]}},"comment":{"reference":"assets\/client\/blocks\/active-filters.js"}}
|
||||
|
|
@ -1 +1 @@
|
|||
{"translation-revision-date":"2024-08-21 18:24:32+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Reset filter":["Reset filter"],"Apply filter":["Apply filter"],"There was an error loading the content.":["There was an error loading the content."],"Oops!":["Oops!"],"Error:":["Error:"],"Rated %f out of 5":["Rated %f out of 5"],"Reset":["Reset"],"Apply":["Apply"],"Rated %s out of 5":["Rated %s out of 5"]}},"comment":{"reference":"assets\/client\/blocks\/rating-filter-frontend.js"}}
|
||||
{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Reset filter":["Reset filter"],"Apply filter":["Apply filter"],"There was an error loading the content.":["There was an error loading the content."],"Oops!":["Oops!"],"Error:":["Error:"],"Rated %f out of 5":["Rated %f out of 5"],"Reset":["Reset"],"Apply":["Apply"],"Rated %s out of 5":["Rated %s out of 5"]}},"comment":{"reference":"assets\/client\/blocks\/rating-filter-frontend.js"}}
|
||||
|
|
@ -1 +1 @@
|
|||
{"translation-revision-date":"2024-08-21 18:24:32+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"\"%s\" was removed from your cart.":["\"%s\" was removed from your basket."],"Polo":["Polo"],"%s (optional)":["%s (optional)"],"There was an error registering the payment method with id '%s': ":["There was an error registering the payment method with ID '%s': "],"Orange":["Orange"],"Lightweight baseball cap":["Lightweight baseball cap"],"Cap":["Cap"],"Yellow":["Yellow"],"Warm hat for winter":["Warm hat for winter"],"Beanie":["Beanie"],"example product in Cart Block\u0004Beanie":["Beanie"],"example product in Cart Block\u0004Beanie with Logo":["Beanie with Logo"],"Something went wrong. Please contact us to get assistance.":["Something went wrong. Please contact us to get assistance."],"Unable to get cart data from the API.":["Unable to get basket data from the API."],"The response is not a valid JSON response.":["The response is not a valid JSON response."],"Sales tax":["Sales tax"],"Color":["Colour"],"Small":["Small"],"Size":["Size"],"Free shipping":["Free shipping"],"Shipping":["Shipping"],"Fee":["Fee"],"Local pickup":["Local pickup"]}},"comment":{"reference":"assets\/client\/blocks\/wc-blocks-data.js"}}
|
||||
{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"\"%s\" was removed from your cart.":["\"%s\" was removed from your basket."],"Polo":["Polo"],"%s (optional)":["%s (optional)"],"There was an error registering the payment method with id '%s': ":["There was an error registering the payment method with ID '%s': "],"Orange":["Orange"],"Lightweight baseball cap":["Lightweight baseball cap"],"Cap":["Cap"],"Yellow":["Yellow"],"Warm hat for winter":["Warm hat for winter"],"Beanie":["Beanie"],"example product in Cart Block\u0004Beanie":["Beanie"],"example product in Cart Block\u0004Beanie with Logo":["Beanie with Logo"],"Something went wrong. Please contact us to get assistance.":["Something went wrong. Please contact us to get assistance."],"Unable to get cart data from the API.":["Unable to get basket data from the API."],"The response is not a valid JSON response.":["The response is not a valid JSON response."],"Sales tax":["Sales tax"],"Color":["Colour"],"Small":["Small"],"Size":["Size"],"Free shipping":["Free shipping"],"Shipping":["Shipping"],"Fee":["Fee"],"Local pickup":["Local pickup"]}},"comment":{"reference":"assets\/client\/blocks\/wc-blocks-data.js"}}
|
||||
|
|
@ -1 +1 @@
|
|||
{"translation-revision-date":"2024-08-21 18:24:32+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"\ud83c\udf89 WooCommerce Shipping is installed!":["\ud83c\udf89 WooCommerce Shipping is installed!"],"Print USPS and DHL Express labels straight from your WooCommerce dashboard and save on shipping.":["Print USPS and DHL Express labels straight from your WooCommerce dashboard and save on shipping."],"Recommended shipping solutions":["Recommended shipping solutions"],"We recommend adding one of the following shipping extensions to your store. The extension will be installed and activated for you when you click \"Get started\".":["We recommend adding one of the following shipping extensions to your store. The extension will be installed and activated for you when you click \"Get started\"."],"See more options":["See more options"],"WooCommerce Shipping":["WooCommerce Shipping"],"Hide this":["Hide this"],"(opens in a new tab)":["(opens in a new tab)"],"Get started":["Get started"],"Task List Options":["Task List Options"],"Recommended":["Recommended"],"Activate":["Activate"],"Shipping zones":["Shipping zones"],"Learn more":["Learn more"],"Shipping methods":["Shipping methods"]}},"comment":{"reference":"assets\/client\/admin\/chunks\/shipping-recommendations.js"}}
|
||||
{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"\ud83c\udf89 WooCommerce Shipping is installed!":["\ud83c\udf89 WooCommerce Shipping is installed!"],"Print USPS and DHL Express labels straight from your WooCommerce dashboard and save on shipping.":["Print USPS and DHL Express labels straight from your WooCommerce dashboard and save on shipping."],"Recommended shipping solutions":["Recommended shipping solutions"],"We recommend adding one of the following shipping extensions to your store. The extension will be installed and activated for you when you click \"Get started\".":["We recommend adding one of the following shipping extensions to your store. The extension will be installed and activated for you when you click \"Get started\"."],"See more options":["See more options"],"WooCommerce Shipping":["WooCommerce Shipping"],"Hide this":["Hide this"],"(opens in a new tab)":["(opens in a new tab)"],"Get started":["Get started"],"Task List Options":["Task List Options"],"Recommended":["Recommended"],"Activate":["Activate"],"Shipping zones":["Shipping zones"],"Learn more":["Learn more"],"Shipping methods":["Shipping methods"]}},"comment":{"reference":"assets\/client\/admin\/chunks\/shipping-recommendations.js"}}
|
||||
|
|
@ -1 +1 @@
|
|||
{"translation-revision-date":"2024-08-21 18:24:32+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Task Options":["Task Options"],"This task is required to keep your store running":["This task is required to keep your store running"],"This task is required to set up your extension":["This task is required to set up your extension"],"Dismissed messages cannot be viewed again":["Dismissed messages cannot be viewed again"],"Yes, I'm sure":["Yes, I'm sure"],"Remind me later":["Remind me later"],"Are you sure?":["Are you sure?"],"Dismiss":["Dismiss"],"Cancel":["Cancel"],"Delete":["Delete"]}},"comment":{"reference":"assets\/client\/admin\/experimental\/index.js"}}
|
||||
{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Task Options":["Task Options"],"This task is required to keep your store running":["This task is required to keep your store running"],"This task is required to set up your extension":["This task is required to set up your extension"],"Dismissed messages cannot be viewed again":["Dismissed messages cannot be viewed again"],"Yes, I'm sure":["Yes, I'm sure"],"Remind me later":["Remind me later"],"Are you sure?":["Are you sure?"],"Dismiss":["Dismiss"],"Cancel":["Cancel"],"Delete":["Delete"]}},"comment":{"reference":"assets\/client\/admin\/experimental\/index.js"}}
|
||||
|
|
@ -1 +1 @@
|
|||
{"translation-revision-date":"2024-08-21 18:24:32+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Payment Promotion Options":["Payment Promotion Options"],"Mutable settings should be accessed via data store.":["Mutable settings should be accessed via data store."],"Install":["Install"],"Dismiss":["Dismiss"],"Metro Manila":["Metro Manila"],"Roma":["Roma"]}},"comment":{"reference":"assets\/client\/admin\/wp-admin-scripts\/payment-method-promotions.js"}}
|
||||
{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Payment Promotion Options":["Payment Promotion Options"],"Mutable settings should be accessed via data store.":["Mutable settings should be accessed via data store."],"Install":["Install"],"Dismiss":["Dismiss"],"Metro Manila":["Metro Manila"],"Roma":["Roma"]}},"comment":{"reference":"assets\/client\/admin\/wp-admin-scripts\/payment-method-promotions.js"}}
|
||||
|
|
@ -1 +1 @@
|
|||
{"translation-revision-date":"2024-08-21 18:24:32+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Your cart":["Your basket"]}},"comment":{"reference":"assets\/client\/blocks\/mini-cart-contents-block\/title-frontend.js"}}
|
||||
{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Your cart":["Your basket"]}},"comment":{"reference":"assets\/client\/blocks\/mini-cart-contents-block\/title-frontend.js"}}
|
||||
|
|
@ -1 +1 @@
|
|||
{"translation-revision-date":"2024-08-21 18:24:32+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Add new":["Add new"]}},"comment":{"reference":"assets\/client\/admin\/product-editor\/blocks\/product-fields\/downloads\/downloads-menu\/downloads-menu.js"}}
|
||||
{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Add new":["Add new"]}},"comment":{"reference":"assets\/client\/admin\/product-editor\/blocks\/product-fields\/downloads\/downloads-menu\/downloads-menu.js"}}
|
||||
|
|
@ -1 +1 @@
|
|||
{"translation-revision-date":"2024-08-21 18:24:32+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Reset filter":["Reset filter"],"Apply filter":["Apply filter"],"Rated %f out of 5":["Rated %f out of 5"],"Reset":["Reset"],"Apply":["Apply"],"Rated %s out of 5":["Rated %s out of 5"]}},"comment":{"reference":"assets\/client\/blocks\/rating-filter-wrapper-frontend.js"}}
|
||||
{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Reset filter":["Reset filter"],"Apply filter":["Apply filter"],"Rated %f out of 5":["Rated %f out of 5"],"Reset":["Reset"],"Apply":["Apply"],"Rated %s out of 5":["Rated %s out of 5"]}},"comment":{"reference":"assets\/client\/blocks\/rating-filter-wrapper-frontend.js"}}
|
||||
|
|
@ -1 +1 @@
|
|||
{"translation-revision-date":"2024-08-21 18:24:32+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Rated %1$s out of 5 based on %2$s customer rating":["Rated %1$s out of 5 based on %2$s customer rating","Rated %1$s out of 5 based on %2$s customer ratings"],"Rated %f out of 5":["Rated %f out of 5"]}},"comment":{"reference":"assets\/client\/blocks\/product-rating-stars.js"}}
|
||||
{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Rated %1$s out of 5 based on %2$s customer rating":["Rated %1$s out of 5 based on %2$s customer rating","Rated %1$s out of 5 based on %2$s customer ratings"],"Rated %f out of 5":["Rated %f out of 5"]}},"comment":{"reference":"assets\/client\/blocks\/product-rating-stars.js"}}
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
|
@ -1 +1 @@
|
|||
{"translation-revision-date":"2024-08-21 18:24:32+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Total":["Total"],"Product":["Product"]}},"comment":{"reference":"assets\/client\/blocks\/order-confirmation-totals.js"}}
|
||||
{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Total":["Total"],"Product":["Product"]}},"comment":{"reference":"assets\/client\/blocks\/order-confirmation-totals.js"}}
|
||||
|
|
@ -1 +1 @@
|
|||
{"translation-revision-date":"2024-08-21 18:24:32+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Display product count":["Display product count"],"Reset attribute filter":["Reset attribute filter"],"Select %s":["Select %s"],"There are no products with the selected attributes.":["There are no products with the selected attributes."],"Now displaying a preview of the Filter Products by Attribute block.":["Now displaying a preview of the Filter Products by Attribute block."],"Choose to return filter results for any of the attributes selected.":["Choose to return filter results for any of the attributes selected."],"Choose to return filter results for all of the attributes selected.":["Choose to return filter results for all of the attributes selected."],"Filter Conditions":["Filter Conditions"],"Filter by Attribute":["Filter by Attribute"],"Show 'Apply filters' button":["Show 'Apply filters' button"],"Reset filter":["Reset filter"],"Allow selecting multiple options?":["Allow selecting multiple options?"],"Invalid %s filter.":["Invalid %s filter."],"Remove %s filter.":["Remove %s filter."],"Please select an attribute to use this filter!":["Please select an attribute to use this filter!"],"Block title":["Block title"],"Loading\u2026":["Loading\u2026"],"%s filter removed.":["%s filter removed."],"%s filter added.":["%s filter added."],"Apply filter":["Apply filter"],"Products will update when the button is clicked.":["Products will only update when the button is clicked."],"Attributes are needed for filtering your products. You haven't created any attributes yet.":["Attributes are needed for filtering your products. You haven't created any attributes yet."],"Search for a product attribute:":["Search for a product attribute:"],"Clear selected attribute":["Clear selected attribute"],"Filter by attribute":["Filter by attribute"],"Display Style":["Display Style"],"Content Settings":["Content Settings"],"Display a list of filters based on the selected attributes.":["Display a list of filters based on the selected attributes."],"Search results updated.":["Search results updated."],"%d item selected":["%d item selected","%d items selected"],"Search for items":["Search for items"],"No results for %s":["No results for %s"],"No items found.":["No items found."],"Clear all selected items":["Clear all selected items"],"Clear all":["Clear all"],"Remove %s":["Remove %s"],"%d attribute selected":["%d attribute selected","%d attributes selected"],"Done":["Done"],"Product attribute search results updated.":["Product attribute search results updated."],"Your store doesn't have any product attributes.":["Your store doesn't have any product attributes."],"Product Attributes":["Product Attributes"],"Display Settings":["Display Settings"],"%s product":["%s product","%s products"],"List":["List"],"Dropdown":["Dropdown"],"Learn more":["Learn more"],"Any":["Any"],"All":["All"],"Reset":["Reset"],"Apply":["Apply"],"Edit":["Edit"],"Add new attribute":["Add new attribute"]}},"comment":{"reference":"assets\/client\/blocks\/attribute-filter.js"}}
|
||||
{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Display product count":["Display product count"],"Reset attribute filter":["Reset attribute filter"],"Select %s":["Select %s"],"There are no products with the selected attributes.":["There are no products with the selected attributes."],"Now displaying a preview of the Filter Products by Attribute block.":["Now displaying a preview of the Filter Products by Attribute block."],"Choose to return filter results for any of the attributes selected.":["Choose to return filter results for any of the attributes selected."],"Choose to return filter results for all of the attributes selected.":["Choose to return filter results for all of the attributes selected."],"Filter Conditions":["Filter Conditions"],"Filter by Attribute":["Filter by Attribute"],"Show 'Apply filters' button":["Show 'Apply filters' button"],"Reset filter":["Reset filter"],"Allow selecting multiple options?":["Allow selecting multiple options?"],"Invalid %s filter.":["Invalid %s filter."],"Remove %s filter.":["Remove %s filter."],"Please select an attribute to use this filter!":["Please select an attribute to use this filter!"],"Block title":["Block title"],"Loading\u2026":["Loading\u2026"],"%s filter removed.":["%s filter removed."],"%s filter added.":["%s filter added."],"Apply filter":["Apply filter"],"Products will update when the button is clicked.":["Products will only update when the button is clicked."],"Attributes are needed for filtering your products. You haven't created any attributes yet.":["Attributes are needed for filtering your products. You haven't created any attributes yet."],"Search for a product attribute:":["Search for a product attribute:"],"Clear selected attribute":["Clear selected attribute"],"Filter by attribute":["Filter by attribute"],"Display Style":["Display Style"],"Content Settings":["Content Settings"],"Display a list of filters based on the selected attributes.":["Display a list of filters based on the selected attributes."],"Search results updated.":["Search results updated."],"%d item selected":["%d item selected","%d items selected"],"Search for items":["Search for items"],"No results for %s":["No results for %s"],"No items found.":["No items found."],"Clear all selected items":["Clear all selected items"],"Clear all":["Clear all"],"Remove %s":["Remove %s"],"%d attribute selected":["%d attribute selected","%d attributes selected"],"Done":["Done"],"Product attribute search results updated.":["Product attribute search results updated."],"Your store doesn't have any product attributes.":["Your store doesn't have any product attributes."],"Product Attributes":["Product Attributes"],"Display Settings":["Display Settings"],"%s product":["%s product","%s products"],"List":["List"],"Dropdown":["Dropdown"],"Learn more":["Learn more"],"Any":["Any"],"All":["All"],"Reset":["Reset"],"Apply":["Apply"],"Edit":["Edit"],"Add new attribute":["Add new attribute"]}},"comment":{"reference":"assets\/client\/blocks\/attribute-filter.js"}}
|
||||
|
|
@ -1 +1 @@
|
|||
{"translation-revision-date":"2024-08-21 18:24:32+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Full refunds are not deducted from tax or net sales totals":["Full refunds are not deducted from tax or net sales totals"],"All Revenue":["All Revenue"],"Got it":["Got it"],"order":["order","orders"],"day":["day","days"],"Advanced Filters":["Advanced Filters"],"Gross sales":["Gross sales"],"Returns":["Returns"],"Net sales":["Net sales"],"Revenue":["Revenue"],"Show":["Show"],"Total sales":["Total sales"],"Shipping":["Shipping"],"Date":["Date"],"Orders":["Orders"],"Taxes":["Taxes"],"Coupons":["Coupons"]}},"comment":{"reference":"assets\/client\/admin\/chunks\/analytics-report-revenue.js"}}
|
||||
{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Full refunds are not deducted from tax or net sales totals":["Full refunds are not deducted from tax or net sales totals"],"All Revenue":["All Revenue"],"Got it":["Got it"],"order":["order","orders"],"day":["day","days"],"Advanced Filters":["Advanced Filters"],"Gross sales":["Gross sales"],"Returns":["Returns"],"Net sales":["Net sales"],"Revenue":["Revenue"],"Show":["Show"],"Total sales":["Total sales"],"Shipping":["Shipping"],"Date":["Date"],"Orders":["Orders"],"Taxes":["Taxes"],"Coupons":["Coupons"]}},"comment":{"reference":"assets\/client\/admin\/chunks\/analytics-report-revenue.js"}}
|
||||
|
|
@ -1 +1 @@
|
|||
{"translation-revision-date":"2024-08-21 18:24:32+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Log in":["Log in"]}},"comment":{"reference":"assets\/client\/blocks\/checkout-blocks\/contact-information-style.js"}}
|
||||
{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Log in":["Log in"]}},"comment":{"reference":"assets\/client\/blocks\/checkout-blocks\/contact-information-style.js"}}
|
||||
|
|
@ -1 +1 @@
|
|||
{"translation-revision-date":"2024-08-21 18:24:32+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"To":["To"],"From":["From"]}},"comment":{"reference":"assets\/client\/admin\/product-editor\/blocks\/product-fields\/schedule-sale\/edit.js"}}
|
||||
{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"To":["To"],"From":["From"]}},"comment":{"reference":"assets\/client\/admin\/product-editor\/blocks\/product-fields\/schedule-sale\/edit.js"}}
|
||||
|
|
@ -1 +1 @@
|
|||
{"translation-revision-date":"2024-08-21 18:24:32+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Something went wrong. Please contact us for assistance.":["Something went wrong. Please contact us for assistance."],"Filled Cart":["Filled Basket"],"Reload the page":["Reload the page"],"The cart has encountered an unexpected error. If the error persists, please get in touch with us for help.":["The basket has encountered an unexpected error. If the error persists, please get in touch with us for help."],"Empty Cart":["Empty Basket"]}},"comment":{"reference":"assets\/client\/blocks\/cart-frontend.js"}}
|
||||
{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Something went wrong. Please contact us for assistance.":["Something went wrong. Please contact us for assistance."],"Filled Cart":["Filled Basket"],"Reload the page":["Reload the page"],"The cart has encountered an unexpected error. If the error persists, please get in touch with us for help.":["The basket has encountered an unexpected error. If the error persists, please get in touch with us for help."],"Empty Cart":["Empty Basket"]}},"comment":{"reference":"assets\/client\/blocks\/cart-frontend.js"}}
|
||||
|
|
@ -1 +1 @@
|
|||
{"translation-revision-date":"2024-08-21 18:24:32+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"You have not set up any product tags on your store.":["You have not set up any product tags on your store."],"Align the last block to the bottom.":["Align the last block to the bottom."],"Align the last block to the bottom":["Align the last block to the bottom"],"This block displays products from selected tags. To use it you first need to create products and assign tags to them.":["This block displays products from selected tags. To use it you first need to create products and assign tags to them."],"Stock status \"%s\" hidden.":["Stock status \"%s\" hidden."],"Stock status \"%s\" visible.":["Stock status \"%s\" visible."],"Edit selected tags":["Edit selected tags"],"Loading\u2026":["Loading\u2026"],"The last inner block will follow other content.":["The last inner block will follow other content."],"Product Tags":["Product Tags"],"Search results updated.":["Search results updated."],"%d item selected":["%d item selected","%d items selected"],"Search for items":["Search for items"],"No results for %s":["No results for %s"],"No items found.":["No items found."],"Clear all selected items":["Clear all selected items"],"Clear all":["Clear all"],"Remove %s":["Remove %s"],"Columns":["Columns"],"Done":["Done"],"Layout":["Layout"],"Rows":["Rows"],"This block displays products from selected tags. Select at least one tag to display its products.":["This block displays products from selected tags. Select at least one tag to display its products."],"Display a grid of products from your selected tags.":["Display a grid of products from your selected tags."],"Products by Tag":["Products by Tag"],"Showing Products by Tag block preview.":["Showing Products by Tag block preview."],"Order By":["Order By"],"Add to Cart button":["Add to Basket button"],"%d tag selected":["%d tag selected","%d tags selected"],"All selected tags":["All selected tags"],"Any selected tags":["Any selected tags"],"Clear all product tags":["Clear all product tags"],"Display products matching":["Display products matching"],"Newness - newest first":["Newness - newest first"],"Order products by":["Order products by"],"Pick at least two tags to use this setting.":["Pick at least two tags to use this setting."],"Price - high to low":["Price - high to low"],"Price - low to high":["Price - low to high"],"Product price":["Product price"],"Product rating":["Product rating"],"Product title":["Product title"],"Rating - highest first":["Rating - highest first"],"Sales - most first":["Sales - most first"],"Search for product tags":["Search for product tags"],"Tag search results updated.":["Tag search results updated."],"Title - alphabetical":["Title - alphabetical"],"Menu Order":["Menu Order"],"%1$d product tagged as %2$s":["%1$d product tagged as %2$s","%1$d products tagged as %2$s"],"Filter by stock status":["Filter by stock status"],"Product image":["Product image"],"Content":["Content"],"Cancel":["Cancel"],"Product Tag":["Product Tag"]}},"comment":{"reference":"assets\/client\/blocks\/product-tag.js"}}
|
||||
{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"You have not set up any product tags on your store.":["You have not set up any product tags on your store."],"Align the last block to the bottom.":["Align the last block to the bottom."],"Align the last block to the bottom":["Align the last block to the bottom"],"This block displays products from selected tags. To use it you first need to create products and assign tags to them.":["This block displays products from selected tags. To use it you first need to create products and assign tags to them."],"Stock status \"%s\" hidden.":["Stock status \"%s\" hidden."],"Stock status \"%s\" visible.":["Stock status \"%s\" visible."],"Edit selected tags":["Edit selected tags"],"Loading\u2026":["Loading\u2026"],"The last inner block will follow other content.":["The last inner block will follow other content."],"Product Tags":["Product Tags"],"Search results updated.":["Search results updated."],"%d item selected":["%d item selected","%d items selected"],"Search for items":["Search for items"],"No results for %s":["No results for %s"],"No items found.":["No items found."],"Clear all selected items":["Clear all selected items"],"Clear all":["Clear all"],"Remove %s":["Remove %s"],"Columns":["Columns"],"Done":["Done"],"Layout":["Layout"],"Rows":["Rows"],"This block displays products from selected tags. Select at least one tag to display its products.":["This block displays products from selected tags. Select at least one tag to display its products."],"Display a grid of products from your selected tags.":["Display a grid of products from your selected tags."],"Products by Tag":["Products by Tag"],"Showing Products by Tag block preview.":["Showing Products by Tag block preview."],"Order By":["Order By"],"Add to Cart button":["Add to Basket button"],"%d tag selected":["%d tag selected","%d tags selected"],"All selected tags":["All selected tags"],"Any selected tags":["Any selected tags"],"Clear all product tags":["Clear all product tags"],"Display products matching":["Display products matching"],"Newness - newest first":["Newness - newest first"],"Order products by":["Order products by"],"Pick at least two tags to use this setting.":["Pick at least two tags to use this setting."],"Price - high to low":["Price - high to low"],"Price - low to high":["Price - low to high"],"Product price":["Product price"],"Product rating":["Product rating"],"Product title":["Product title"],"Rating - highest first":["Rating - highest first"],"Sales - most first":["Sales - most first"],"Search for product tags":["Search for product tags"],"Tag search results updated.":["Tag search results updated."],"Title - alphabetical":["Title - alphabetical"],"Menu Order":["Menu Order"],"%1$d product tagged as %2$s":["%1$d product tagged as %2$s","%1$d products tagged as %2$s"],"Filter by stock status":["Filter by stock status"],"Product image":["Product image"],"Content":["Content"],"Cancel":["Cancel"],"Product Tag":["Product Tag"]}},"comment":{"reference":"assets\/client\/blocks\/product-tag.js"}}
|
||||
|
|
@ -1 +1 @@
|
|||
{"translation-revision-date":"2024-08-21 18:24:32+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"This field is required.":["This field is required."]}},"comment":{"reference":"assets\/client\/admin\/product-editor\/blocks\/generic\/text\/edit.js"}}
|
||||
{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"This field is required.":["This field is required."]}},"comment":{"reference":"assets\/client\/admin\/product-editor\/blocks\/generic\/text\/edit.js"}}
|
||||
|
|
@ -1 +1 @@
|
|||
{"translation-revision-date":"2024-08-21 18:24:32+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Proceed to Checkout":["Proceed to Checkout"]}},"comment":{"reference":"assets\/client\/blocks\/cart-blocks\/proceed-to-checkout-frontend.js"}}
|
||||
{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Proceed to Checkout":["Proceed to Checkout"]}},"comment":{"reference":"assets\/client\/blocks\/cart-blocks\/proceed-to-checkout-frontend.js"}}
|
||||
|
|
@ -1 +1 @@
|
|||
{"translation-revision-date":"2024-08-21 18:24:32+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Earn and manage recurring revenue and get automatic deposits into your nominated bank account.":["Earn and manage recurring revenue and get automatic deposits into your nominated bank account."],"Sell to international markets and accept more than 135 currencies with local payment methods.":["Sell to international markets and accept more than 135 currencies with local payment methods."],"Accepted payment methods":["Accepted payment methods"],"Setup required":["Set up required"],"Local Partner":["Local Partner"],"Recommended":["Recommended"],"Learn more":["Learn more"],"Metro Manila":["Metro Manila"],"Roma":["Roma"]}},"comment":{"reference":"assets\/client\/admin\/onboarding\/index.js"}}
|
||||
{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Earn and manage recurring revenue and get automatic deposits into your nominated bank account.":["Earn and manage recurring revenue and get automatic deposits into your nominated bank account."],"Sell to international markets and accept more than 135 currencies with local payment methods.":["Sell to international markets and accept more than 135 currencies with local payment methods."],"Accepted payment methods":["Accepted payment methods"],"Setup required":["Set up required"],"Local Partner":["Local Partner"],"Recommended":["Recommended"],"Learn more":["Learn more"],"Metro Manila":["Metro Manila"],"Roma":["Roma"]}},"comment":{"reference":"assets\/client\/admin\/onboarding\/index.js"}}
|
||||
|
|
@ -1 +1 @@
|
|||
{"translation-revision-date":"2024-08-21 18:24:32+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Payment options":["Payment options"],"Step description text.":["Step description text."],"Step":["Step"]}},"comment":{"reference":"assets\/client\/blocks\/checkout-blocks\/payment-frontend.js"}}
|
||||
{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Payment options":["Payment options"],"Step description text.":["Step description text."],"Step":["Step"]}},"comment":{"reference":"assets\/client\/blocks\/checkout-blocks\/payment-frontend.js"}}
|
||||
|
|
@ -1 +1 @@
|
|||
{"translation-revision-date":"2024-08-21 18:24:32+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Enter the billing address that matches your payment method.":["Enter the billing address that matches your payment method."],"Step description text.":["Step description text."],"Step":["Step"],"Billing address":["Billing address"],"Edit":["Edit"]}},"comment":{"reference":"assets\/client\/blocks\/checkout-blocks\/billing-address-frontend.js"}}
|
||||
{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Enter the billing address that matches your payment method.":["Enter the billing address that matches your payment method."],"Step description text.":["Step description text."],"Step":["Step"],"Billing address":["Billing address"],"Edit":["Edit"]}},"comment":{"reference":"assets\/client\/blocks\/checkout-blocks\/billing-address-frontend.js"}}
|
||||
|
|
@ -1 +1 @@
|
|||
{"translation-revision-date":"2024-08-21 18:24:32+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Reset stock filter":["Reset stock filter"],"Reset filter":["Reset filter"],"%s filter removed.":["%s filter removed."],"%s filter added.":["%s filter added."],"Apply filter":["Apply filter"],"%s product":["%s product","%s products"],"Reset":["Reset"],"Apply":["Apply"]}},"comment":{"reference":"assets\/client\/blocks\/stock-filter-wrapper-frontend.js"}}
|
||||
{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Reset stock filter":["Reset stock filter"],"Reset filter":["Reset filter"],"%s filter removed.":["%s filter removed."],"%s filter added.":["%s filter added."],"Apply filter":["Apply filter"],"%s product":["%s product","%s products"],"Reset":["Reset"],"Apply":["Apply"]}},"comment":{"reference":"assets\/client\/blocks\/stock-filter-wrapper-frontend.js"}}
|
||||
|
|
@ -1 +1 @@
|
|||
{"translation-revision-date":"2024-08-21 18:24:32+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"An error has prevented the block from being updated.":["An error has prevented the block from being updated."],"Now displaying a preview of the reviews for the products in the selected categories.":["Now displaying a preview of the reviews for the products in the selected categories."],"Edit selected categories":["Edit selected categories"],"%1$s, has %2$d review":["%1$s, has %2$d review","%1$s, has %2$d reviews"],"%1$s, has %2$d product":["%1$s, has %2$d product","%1$s, has %2$d products"],"Loading\u2026":["Loading\u2026"],"The following error was returned":["The following error was returned"],"I bought this product last week and I'm very happy with it.":["I bought this product last week and I'm very happy with it."],"Alice":["Alice"],"WordPress Pennant":["WordPress Pennant"],"This product is awesome, I love it!":["This product is awesome, I love it."],"Bob":["Bob"],"July 12, 2019":["July 12, 2019"],"July 15, 2019":["July 15, 2019"],"Reviews by Category":["Reviews by Category"],"The following error was returned from the API":["The following error was returned from the API"],"Sorry, an error occurred":["Sorry, an error occurred"],"Show product reviews from specific categories.":["Show product reviews from specific categories."],"This block lists reviews for products from selected categories. The selected categories do not have any reviews yet, but they will show up here when they do.":["This block lists reviews for products from selected categories. The selected categories do not have any reviews yet, but they will show up here when they do."],"Retry":["Retry"],"Load more reviews":["Load more reviews"],"%d review":["%d review","%d reviews"],"Reviewer name":["Reviewer name"],"Most recent":["Most recent"],"Load more":["Load more"],"Read full review":["Read full review"],"Hide full review":["Hide full review"],"Review date":["Review date"],"Review content":["Review content"],"Review image":["Review image"],"Reviewer photo":["Reviewer photo"],"Order Product Reviews by":["Order Product Reviews by"],"Starting Number of Reviews":["Starting Number of Reviews"],"Load More Reviews":["Load More Reviews"],"The content for this block is hidden due to block settings.":["The content for this block is hidden due to block settings."],"Highest rating":["Highest rating"],"Lowest rating":["Lowest rating"],"Verified buyer":["Verified buyer"],"Read less":["Read less"],"Order reviews by":["Order reviews by"],"Product rating is disabled in your <a>store settings<\/a>.":["Product rating is disabled in your <a>store settings<\/a>."],"Reviewer photo is disabled in your <a>site settings<\/a>.":["Reviewer photo is disabled in your <a>site settings<\/a>."],"Search results updated.":["Search results updated."],"%d item selected":["%d item selected","%d items selected"],"Search for items":["Search for items"],"No results for %s":["No results for %s"],"No items found.":["No items found."],"Clear all selected items":["Clear all selected items"],"Clear all":["Clear all"],"Remove %s":["Remove %s"],"%d category selected":["%d category selected","%d categories selected"],"All selected categories":["All selected categories"],"Any selected categories":["Any selected categories"],"Category search results updated.":["Category search results updated."],"Clear all product categories":["Clear all product categories"],"Done":["Done"],"Pick at least two categories to use this setting.":["Pick at least two categories to use this setting."],"Search for product categories":["Search for product categories"],"Your store doesn't have any product categories.":["Your store doesn't have any product categories."],"List Settings":["List Settings"],"Display products matching":["Display products matching"],"Product rating":["Product rating"],"Category":["Category"],"Rated %f out of 5":["Rated %f out of 5"],"%d product":["%d product","%d products"],"Content":["Content"],"Product Categories":["Product Categories"],"Image":["Image"],"Product name":["Product name"],"WooCommerce":["WooCommerce"],"Order by":["Order by"],"Product":["Product"],"Read more":["Read more"],"Rated %s out of 5":["Rated %s out of 5"]}},"comment":{"reference":"assets\/client\/blocks\/reviews-by-category.js"}}
|
||||
{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"An error has prevented the block from being updated.":["An error has prevented the block from being updated."],"Now displaying a preview of the reviews for the products in the selected categories.":["Now displaying a preview of the reviews for the products in the selected categories."],"Edit selected categories":["Edit selected categories"],"%1$s, has %2$d review":["%1$s, has %2$d review","%1$s, has %2$d reviews"],"%1$s, has %2$d product":["%1$s, has %2$d product","%1$s, has %2$d products"],"Loading\u2026":["Loading\u2026"],"The following error was returned":["The following error was returned"],"I bought this product last week and I'm very happy with it.":["I bought this product last week and I'm very happy with it."],"Alice":["Alice"],"WordPress Pennant":["WordPress Pennant"],"This product is awesome, I love it!":["This product is awesome, I love it."],"Bob":["Bob"],"July 12, 2019":["July 12, 2019"],"July 15, 2019":["July 15, 2019"],"Reviews by Category":["Reviews by Category"],"The following error was returned from the API":["The following error was returned from the API"],"Sorry, an error occurred":["Sorry, an error occurred"],"Show product reviews from specific categories.":["Show product reviews from specific categories."],"This block lists reviews for products from selected categories. The selected categories do not have any reviews yet, but they will show up here when they do.":["This block lists reviews for products from selected categories. The selected categories do not have any reviews yet, but they will show up here when they do."],"Retry":["Retry"],"Load more reviews":["Load more reviews"],"%d review":["%d review","%d reviews"],"Reviewer name":["Reviewer name"],"Most recent":["Most recent"],"Load more":["Load more"],"Read full review":["Read full review"],"Hide full review":["Hide full review"],"Review date":["Review date"],"Review content":["Review content"],"Review image":["Review image"],"Reviewer photo":["Reviewer photo"],"Order Product Reviews by":["Order Product Reviews by"],"Starting Number of Reviews":["Starting Number of Reviews"],"Load More Reviews":["Load More Reviews"],"The content for this block is hidden due to block settings.":["The content for this block is hidden due to block settings."],"Highest rating":["Highest rating"],"Lowest rating":["Lowest rating"],"Verified buyer":["Verified buyer"],"Read less":["Read less"],"Order reviews by":["Order reviews by"],"Product rating is disabled in your <a>store settings<\/a>.":["Product rating is disabled in your <a>store settings<\/a>."],"Reviewer photo is disabled in your <a>site settings<\/a>.":["Reviewer photo is disabled in your <a>site settings<\/a>."],"Search results updated.":["Search results updated."],"%d item selected":["%d item selected","%d items selected"],"Search for items":["Search for items"],"No results for %s":["No results for %s"],"No items found.":["No items found."],"Clear all selected items":["Clear all selected items"],"Clear all":["Clear all"],"Remove %s":["Remove %s"],"%d category selected":["%d category selected","%d categories selected"],"All selected categories":["All selected categories"],"Any selected categories":["Any selected categories"],"Category search results updated.":["Category search results updated."],"Clear all product categories":["Clear all product categories"],"Done":["Done"],"Pick at least two categories to use this setting.":["Pick at least two categories to use this setting."],"Search for product categories":["Search for product categories"],"Your store doesn't have any product categories.":["Your store doesn't have any product categories."],"List Settings":["List Settings"],"Display products matching":["Display products matching"],"Product rating":["Product rating"],"Category":["Category"],"Rated %f out of 5":["Rated %f out of 5"],"%d product":["%d product","%d products"],"Content":["Content"],"Product Categories":["Product Categories"],"Image":["Image"],"Product name":["Product name"],"WooCommerce":["WooCommerce"],"Order by":["Order by"],"Product":["Product"],"Read more":["Read more"],"Rated %s out of 5":["Rated %s out of 5"]}},"comment":{"reference":"assets\/client\/blocks\/reviews-by-category.js"}}
|
||||
|
|
@ -1 +1 @@
|
|||
{"translation-revision-date":"2024-08-21 18:24:32+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Previous year:":["Previous year:"],"Previous period:":["Previous period:"],"No data for the selected date range":["No data for the selected date range"],"No data for the current search":["No data for the current search"]}},"comment":{"reference":"assets\/client\/admin\/chunks\/6224.js"}}
|
||||
{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Previous year:":["Previous year:"],"Previous period:":["Previous period:"],"No data for the selected date range":["No data for the selected date range"],"No data for the current search":["No data for the current search"]}},"comment":{"reference":"assets\/client\/admin\/chunks\/6224.js"}}
|
||||
|
|
@ -1 +1 @@
|
|||
{"translation-revision-date":"2024-08-21 18:24:32+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Design a store that reflects your brand and business. Customize your active theme, select a professionally designed theme, or create a new look using our store designer.":["Design a store that reflects your brand and business. Customise your active theme, select a professionally designed theme, or create a new look using our store designer."],"DON'T HAVE A LOGO YET?":["DON'T HAVE A LOGO YET?"],"Want more patterns?":["Want more patterns?"],"Unfortunately, we're experiencing some technical issues \u2014 please come back later to access more patterns.":["Unfortunately, we're experiencing some technical issues \u2013 please come back later to access more patterns."],"Shuffle":["Shuffle"],"Services":["Services"],"Welcome shoppers to your store with one of our introductory patterns.":["Welcome shoppers to your store with one of our introductory patterns."],"Intro":["Intro"],"Looks like we can't detect your network. Please double-check your internet connection and refresh the page.":["Looks like we can't detect your network. Please double-check your internet connection and refresh the page."],"Browse themes":["Browse themes"],"Choose a professionally designed theme":["Choose a professionally designed theme"],"Use the store designer":["Use the store designer"],"Design or choose a new theme":["Design or choose a new theme"],"Design your own theme":["Design your own theme"],"You can edit your content later in the Editor":["You can edit your content later in the editor"],"Opt in to <OptInModal>usage tracking<\/OptInModal> to get access to more patterns.":["Opt in to <OptInModal>usage tracking<\/OptInModal> to get access to more patterns."],"Oops! We encountered a problem while setting up the foundations. {{anchor}}Please try again{{\/anchor}} or start with a theme.":["Oops! We encountered a problem while setting up the foundations. {{anchor}}Please try again{{\/anchor}} or start with a theme."],"Feel free to spill the beans here. All suggestions, feedback, or comments about the \"Design your own theme\" experience are welcome.":["Feel free to spill the beans here. All suggestions, feedback, or comments about the \"Design your own theme\" experience are welcome."],"I wanted to design my own theme.":["I wanted to design my own theme."],"What motivated you to choose the \"Design your own theme\" option?":["What motivated you to choose the \"Design your own theme\" option?"],"Choose your footer":["Choose your footer"],"Design your homepage":["Design your homepage"],"Choose your header":["Choose your header"],"Choose fonts":["Choose fonts"],"Choose your color palette":["Choose your colour palette"],"Create a store that reflects your brand and business. Select one of our professionally designed themes to customize, or create your own using AI.":["Create a store that reflects your brand and business. Select one of our professionally designed themes to customise, or create your own using AI."],"Take a quick tour to discover what's possible.":["Take a quick tour to discover what's possible."],"But don't let that stop you! Start customizing the look and feel of your store by adding your logo and selecting your colors and layout. ":["But don't let that stop you! Start customising the look and feel of your store by adding your logo and selecting your colours and layout. "],"Discover what's possible with the store designer":["Discover what's possible with the store designer"],"Start designing your store, including adding your logo, changing color schemes, and building your own layouts. Take a quick tour to discover what's possible.":["Start designing your store, including adding your logo, changing colour schemes, and building your own layouts. Take a quick tour to discover what's possible."],"Setting up the foundations":["Setting up the foundations"],"Continue setting up your store":["Continue setting up your store"],"Options":["Options"],"Send":["Send"],"Neutral":["Neutral"],"Back":["Back"],"Navigation":["Navigation"],"Style":["Style"],"Paid":["Paid"],"Share feedback":["Share feedback"],"Skip":["Skip"],"About":["About"],"Layout":["Layout"],"%1$s (%2$s)":["%1$s (%2$s)"],"Previous":["Previous"],"Save":["Save"],"Close":["Close"],"Cancel":["Cancel"],"Continue":["Continue"],"Delete":["Delete"],"Settings":["Settings"],"Reviews":["Reviews"],"Default":["Standard"]}},"comment":{"reference":"assets\/client\/admin\/chunks\/customize-store.js"}}
|
||||
{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Design a store that reflects your brand and business. Customize your active theme, select a professionally designed theme, or create a new look using our store designer.":["Design a store that reflects your brand and business. Customise your active theme, select a professionally designed theme, or create a new look using our store designer."],"DON'T HAVE A LOGO YET?":["DON'T HAVE A LOGO YET?"],"Want more patterns?":["Want more patterns?"],"Unfortunately, we're experiencing some technical issues \u2014 please come back later to access more patterns.":["Unfortunately, we're experiencing some technical issues \u2013 please come back later to access more patterns."],"Shuffle":["Shuffle"],"Services":["Services"],"Welcome shoppers to your store with one of our introductory patterns.":["Welcome shoppers to your store with one of our introductory patterns."],"Intro":["Intro"],"Looks like we can't detect your network. Please double-check your internet connection and refresh the page.":["Looks like we can't detect your network. Please double-check your internet connection and refresh the page."],"Browse themes":["Browse themes"],"Choose a professionally designed theme":["Choose a professionally designed theme"],"Use the store designer":["Use the store designer"],"Design or choose a new theme":["Design or choose a new theme"],"Design your own theme":["Design your own theme"],"You can edit your content later in the Editor":["You can edit your content later in the editor"],"Opt in to <OptInModal>usage tracking<\/OptInModal> to get access to more patterns.":["Opt in to <OptInModal>usage tracking<\/OptInModal> to get access to more patterns."],"Oops! We encountered a problem while setting up the foundations. {{anchor}}Please try again{{\/anchor}} or start with a theme.":["Oops! We encountered a problem while setting up the foundations. {{anchor}}Please try again{{\/anchor}} or start with a theme."],"Feel free to spill the beans here. All suggestions, feedback, or comments about the \"Design your own theme\" experience are welcome.":["Feel free to spill the beans here. All suggestions, feedback, or comments about the \"Design your own theme\" experience are welcome."],"I wanted to design my own theme.":["I wanted to design my own theme."],"What motivated you to choose the \"Design your own theme\" option?":["What motivated you to choose the \"Design your own theme\" option?"],"Choose your footer":["Choose your footer"],"Design your homepage":["Design your homepage"],"Choose your header":["Choose your header"],"Choose fonts":["Choose fonts"],"Choose your color palette":["Choose your colour palette"],"Create a store that reflects your brand and business. Select one of our professionally designed themes to customize, or create your own using AI.":["Create a store that reflects your brand and business. Select one of our professionally designed themes to customise, or create your own using AI."],"Take a quick tour to discover what's possible.":["Take a quick tour to discover what's possible."],"But don't let that stop you! Start customizing the look and feel of your store by adding your logo and selecting your colors and layout. ":["But don't let that stop you! Start customising the look and feel of your store by adding your logo and selecting your colours and layout. "],"Discover what's possible with the store designer":["Discover what's possible with the store designer"],"Start designing your store, including adding your logo, changing color schemes, and building your own layouts. Take a quick tour to discover what's possible.":["Start designing your store, including adding your logo, changing colour schemes, and building your own layouts. Take a quick tour to discover what's possible."],"Setting up the foundations":["Setting up the foundations"],"Continue setting up your store":["Continue setting up your store"],"Options":["Options"],"Send":["Send"],"Neutral":["Neutral"],"Back":["Back"],"Navigation":["Navigation"],"Style":["Style"],"Paid":["Paid"],"Share feedback":["Share feedback"],"Skip":["Skip"],"About":["About"],"Layout":["Layout"],"%1$s (%2$s)":["%1$s (%2$s)"],"Previous":["Previous"],"Save":["Save"],"Close":["Close"],"Cancel":["Cancel"],"Continue":["Continue"],"Delete":["Delete"],"Settings":["Settings"],"Reviews":["Reviews"],"Default":["Standard"]}},"comment":{"reference":"assets\/client\/admin\/chunks\/customize-store.js"}}
|
||||
|
|
@ -1 +1 @@
|
|||
{"translation-revision-date":"2024-08-21 18:24:32+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Affirm":["Affirm"],"Amazon Pay":["Amazon Pay"],"Get in touch":["Get in touch"],"I\u2019m open to installing it another time":["I\u2019m open to installing it another time"],"It\u2019s something else (Please share below)":["It\u2019s something else (Please share below)"],"I don\u2019t want to install another plugin":["I don\u2019t want to install another plugin"],"I\u2019m already happy with my payments setup":["I\u2019m already happy with my payments setup"],"Limited time offer":["Limited time offer"],"See more":["See more"],"PayPal Payments":["PayPal Payments"],"Comments (Optional)":["Comments (optional)"],"Klarna":["Klarna"],"Learn more":["Learn more"],"No thanks":["No thanks"]}},"comment":{"reference":"assets\/client\/admin\/chunks\/wcpay-payment-welcome-page.js"}}
|
||||
{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Affirm":["Affirm"],"Amazon Pay":["Amazon Pay"],"Get in touch":["Get in touch"],"I\u2019m open to installing it another time":["I\u2019m open to installing it another time"],"It\u2019s something else (Please share below)":["It\u2019s something else (Please share below)"],"I don\u2019t want to install another plugin":["I don\u2019t want to install another plugin"],"I\u2019m already happy with my payments setup":["I\u2019m already happy with my payments setup"],"Limited time offer":["Limited time offer"],"See more":["See more"],"PayPal Payments":["PayPal Payments"],"Comments (Optional)":["Comments (optional)"],"Klarna":["Klarna"],"Learn more":["Learn more"],"No thanks":["No thanks"]}},"comment":{"reference":"assets\/client\/admin\/chunks\/wcpay-payment-welcome-page.js"}}
|
||||
|
|
@ -1 +1 @@
|
|||
{"translation-revision-date":"2024-08-21 18:24:32+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Payment via PayPal":["Payment via PayPal"],"Proceed to PayPal":["Proceed to PayPal"],"PayPal":["PayPal"]}},"comment":{"reference":"assets\/client\/blocks\/wc-payment-method-paypal.js"}}
|
||||
{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Payment via PayPal":["Payment via PayPal"],"Proceed to PayPal":["Proceed to PayPal"],"PayPal":["PayPal"]}},"comment":{"reference":"assets\/client\/blocks\/wc-payment-method-paypal.js"}}
|
||||
|
|
@ -1 +1 @@
|
|||
{"translation-revision-date":"2024-08-21 18:24:32+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Choose products for me":["Choose products for me"]}},"comment":{"reference":"assets\/client\/admin\/product-editor\/blocks\/generic\/linked-product-list\/edit.js"}}
|
||||
{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Choose products for me":["Choose products for me"]}},"comment":{"reference":"assets\/client\/admin\/product-editor\/blocks\/generic\/linked-product-list\/edit.js"}}
|
||||
|
|
@ -1 +1 @@
|
|||
{"translation-revision-date":"2024-08-21 18:24:32+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Property attribute is required.":["Property attribute is required."]}},"comment":{"reference":"assets\/client\/admin\/product-editor\/blocks\/generic\/text-area\/edit.js"}}
|
||||
{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Property attribute is required.":["Property attribute is required."]}},"comment":{"reference":"assets\/client\/admin\/product-editor\/blocks\/generic\/text-area\/edit.js"}}
|
||||
|
|
@ -1 +1 @@
|
|||
{"translation-revision-date":"2024-08-21 18:24:32+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Sizes":["Sizes"],"Colors":["Colours"]}},"comment":{"reference":"assets\/client\/admin\/product-editor\/blocks\/product-fields\/variation-items\/edit.js"}}
|
||||
{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Sizes":["Sizes"],"Colors":["Colours"]}},"comment":{"reference":"assets\/client\/admin\/product-editor\/blocks\/product-fields\/variation-items\/edit.js"}}
|
||||
|
|
@ -1 +1 @@
|
|||
{"translation-revision-date":"2024-08-21 18:24:32+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Delivery":["Delivery"],"Ship":["Ship"],"free":["free"],"Step description text.":["Step description text."],"Step":["Step"]}},"comment":{"reference":"assets\/client\/blocks\/checkout-blocks\/shipping-method-frontend.js"}}
|
||||
{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Delivery":["Delivery"],"Ship":["Ship"],"free":["free"],"Step description text.":["Step description text."],"Step":["Step"]}},"comment":{"reference":"assets\/client\/blocks\/checkout-blocks\/shipping-method-frontend.js"}}
|
||||
|
|
@ -1 +1 @@
|
|||
{"translation-revision-date":"2024-08-21 18:24:32+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Additional order information":["Additional order information"],"Step description text.":["Step description text."],"Step":["Step"]}},"comment":{"reference":"assets\/client\/blocks\/checkout-blocks\/additional-information-frontend.js"}}
|
||||
{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Additional order information":["Additional order information"],"Step description text.":["Step description text."],"Step":["Step"]}},"comment":{"reference":"assets\/client\/blocks\/checkout-blocks\/additional-information-frontend.js"}}
|
||||
|
|
@ -1 +1 @@
|
|||
{"translation-revision-date":"2024-08-21 18:24:32+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"This may affect your ability to freely move the focal point of the image.":["This may affect your ability to freely move the focal point of the image."],"Select \u201cCover\u201d to have the image automatically fit its container.":["Select \u201cCover\u201d to have the image automatically fit its container."],"An error has prevented the block from being updated.":["An error has prevented the block from being updated."],"Fixed background":["Fixed background"],"Repeated background":["Repeated background"],"Cover":["Cover"],"Image fit":["Image fit"],"Opacity":["Opacity"],"Alt text (alternative text)":["Alt text (alternative text)"],"Describe the purpose of the image":["Describe the purpose of the image"],"Edit category image":["Edit category image"],"Media settings":["Media settings"],"Edit selected category":["Edit selected category"],"%1$s, has %2$d variation":["%1$s, has %2$d variation","%1$s, has %2$d variations"],"%1$d variations":["%1$d variations"],"%1$s, has %2$d review":["%1$s, has %2$d review","%1$s, has %2$d reviews"],"%1$s, has %2$d product":["%1$s, has %2$d product","%1$s, has %2$d products"],"Loading\u2026":["Loading\u2026"],"Color":["Colour"],"Clothing":["Clothing"],"Branded t-shirts, jumpers, pants and more!":["Branded t-shirts, jumpers, trousers and more!"],"The following error was returned":["The following error was returned"],"The following error was returned from the API":["The following error was returned from the API"],"Sorry, an error occurred":["Sorry, an error occurred"],"Retry":["Retry"],"%d review":["%d review","%d reviews"],"Search results updated.":["Search results updated."],"%d item selected":["%d item selected","%d items selected"],"Search for items":["Search for items"],"No results for %s":["No results for %s"],"No items found.":["No items found."],"Clear all selected items":["Clear all selected items"],"Clear all":["Clear all"],"Remove %s":["Remove %s"],"%d category selected":["%d category selected","%d categories selected"],"All selected categories":["All selected categories"],"Any selected categories":["Any selected categories"],"Category search results updated.":["Category search results updated."],"Clear all product categories":["Clear all product categories"],"Done":["Done"],"No product category is selected.":["No product category is selected."],"Overlay":["Overlay"],"Pick at least two categories to use this setting.":["Pick at least two categories to use this setting."],"Product search results updated.":["Product search results updated."],"Search for a product to display":["Search for a product to display"],"Search for product categories":["Search for product categories"],"Shop now":["Shop now"],"Show description":["Show description"],"Show price":["Show price"],"Visually highlight a product category and encourage prompt action.":["Visually highlight a product category and encourage prompt action."],"Your store doesn't have any product categories.":["Your store doesn't have any product categories."],"Your store doesn't have any products.":["Your store doesn't have any products."],"Featured Category":["Featured Category"],"Showing Featured Product block preview.":["Showing Featured Product block preview."],"Focal Point Picker":["Focal Point Picker"],"Display products matching":["Display products matching"],"Select a category":["Select a category"],"%d product":["%d product","%d products"],"Content":["Content"],"None":["None"],"Reset":["Reset"],"Products":["Products"],"Product Categories":["Product Categories"]}},"comment":{"reference":"assets\/client\/blocks\/featured-category.js"}}
|
||||
{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"This may affect your ability to freely move the focal point of the image.":["This may affect your ability to freely move the focal point of the image."],"Select \u201cCover\u201d to have the image automatically fit its container.":["Select \u201cCover\u201d to have the image automatically fit its container."],"An error has prevented the block from being updated.":["An error has prevented the block from being updated."],"Fixed background":["Fixed background"],"Repeated background":["Repeated background"],"Cover":["Cover"],"Image fit":["Image fit"],"Opacity":["Opacity"],"Alt text (alternative text)":["Alt text (alternative text)"],"Describe the purpose of the image":["Describe the purpose of the image"],"Edit category image":["Edit category image"],"Media settings":["Media settings"],"Edit selected category":["Edit selected category"],"%1$s, has %2$d variation":["%1$s, has %2$d variation","%1$s, has %2$d variations"],"%1$d variations":["%1$d variations"],"%1$s, has %2$d review":["%1$s, has %2$d review","%1$s, has %2$d reviews"],"%1$s, has %2$d product":["%1$s, has %2$d product","%1$s, has %2$d products"],"Loading\u2026":["Loading\u2026"],"Color":["Colour"],"Clothing":["Clothing"],"Branded t-shirts, jumpers, pants and more!":["Branded t-shirts, jumpers, trousers and more!"],"The following error was returned":["The following error was returned"],"The following error was returned from the API":["The following error was returned from the API"],"Sorry, an error occurred":["Sorry, an error occurred"],"Retry":["Retry"],"%d review":["%d review","%d reviews"],"Search results updated.":["Search results updated."],"%d item selected":["%d item selected","%d items selected"],"Search for items":["Search for items"],"No results for %s":["No results for %s"],"No items found.":["No items found."],"Clear all selected items":["Clear all selected items"],"Clear all":["Clear all"],"Remove %s":["Remove %s"],"%d category selected":["%d category selected","%d categories selected"],"All selected categories":["All selected categories"],"Any selected categories":["Any selected categories"],"Category search results updated.":["Category search results updated."],"Clear all product categories":["Clear all product categories"],"Done":["Done"],"No product category is selected.":["No product category is selected."],"Overlay":["Overlay"],"Pick at least two categories to use this setting.":["Pick at least two categories to use this setting."],"Product search results updated.":["Product search results updated."],"Search for a product to display":["Search for a product to display"],"Search for product categories":["Search for product categories"],"Shop now":["Shop now"],"Show description":["Show description"],"Show price":["Show price"],"Visually highlight a product category and encourage prompt action.":["Visually highlight a product category and encourage prompt action."],"Your store doesn't have any product categories.":["Your store doesn't have any product categories."],"Your store doesn't have any products.":["Your store doesn't have any products."],"Featured Category":["Featured Category"],"Showing Featured Product block preview.":["Showing Featured Product block preview."],"Focal Point Picker":["Focal Point Picker"],"Display products matching":["Display products matching"],"Select a category":["Select a category"],"%d product":["%d product","%d products"],"Content":["Content"],"None":["None"],"Reset":["Reset"],"Products":["Products"],"Product Categories":["Product Categories"]}},"comment":{"reference":"assets\/client\/blocks\/featured-category.js"}}
|
||||
|
|
@ -1 +1 @@
|
|||
{"translation-revision-date":"2024-08-21 18:24:32+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Stock Status":["Stock Status"],"Between %1$s and %2$s":["Between %1$s and %2$s"],"Clear All Filters":["Clear All Filters"],"Remove %s filter":["Remove %s filter"],"Blue":["Blue"],"Color":["Colour"],"Small":["Small"],"Size":["Size"],"Up to %s":["Up to %s"],"From %s":["From %s"],"Clear All":["Clear All"],"All":["All"],"Price":["Price"],"Rating":["Rating"],"Rated %s out of 5":["Rated %s out of 5"]}},"comment":{"reference":"assets\/client\/blocks\/active-filters-wrapper-frontend.js"}}
|
||||
{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Stock Status":["Stock Status"],"Between %1$s and %2$s":["Between %1$s and %2$s"],"Clear All Filters":["Clear All Filters"],"Remove %s filter":["Remove %s filter"],"Blue":["Blue"],"Color":["Colour"],"Small":["Small"],"Size":["Size"],"Up to %s":["Up to %s"],"From %s":["From %s"],"Clear All":["Clear All"],"All":["All"],"Price":["Price"],"Rating":["Rating"],"Rated %s out of 5":["Rated %s out of 5"]}},"comment":{"reference":"assets\/client\/blocks\/active-filters-wrapper-frontend.js"}}
|
||||
|
|
@ -1 +1 @@
|
|||
{"translation-revision-date":"2024-08-21 18:24:32+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Expired":["Expired"]}},"comment":{"reference":"assets\/client\/admin\/wp-admin-scripts\/woo-product-usage-notice.js"}}
|
||||
{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Expired":["Expired"]}},"comment":{"reference":"assets\/client\/admin\/wp-admin-scripts\/woo-product-usage-notice.js"}}
|
||||
|
|
@ -1 +1 @@
|
|||
{"translation-revision-date":"2024-08-21 18:24:32+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Highlight a product or variation.":["Highlight a product or variation."],"This may affect your ability to freely move the focal point of the image.":["This may affect your ability to freely move the focal point of the image."],"Select \u201cCover\u201d to have the image automatically fit its container.":["Select \u201cCover\u201d to have the image automatically fit its container."],"An error has prevented the block from being updated.":["An error has prevented the block from being updated."],"Fixed background":["Fixed background"],"Repeated background":["Repeated background"],"Cover":["Cover"],"Image fit":["Image fit"],"Opacity":["Opacity"],"Alt text (alternative text)":["Alt text (alternative text)"],"Describe the purpose of the image":["Describe the purpose of the image"],"Edit product image":["Edit product image"],"Media settings":["Media settings"],"Edit selected product":["Edit selected product"],"%1$s, has %2$d variation":["%1$s, has %2$d variation","%1$s, has %2$d variations"],"%1$d variations":["%1$d variations"],"%1$s, has %2$d review":["%1$s, has %2$d review","%1$s, has %2$d reviews"],"%1$s, has %2$d product":["%1$s, has %2$d product","%1$s, has %2$d products"],"Loading\u2026":["Loading\u2026"],"Color":["Colour"],"Fly your WordPress banner with this beauty! Deck out your office space or add it to your kids walls. This banner will spruce up any space it\u2019s hung!":["Fly your WordPress banner with this beauty! Deck out your office space or add it to your kids' walls. This banner will spruce up any space in which it\u2019s hung!"],"The following error was returned":["The following error was returned"],"The following error was returned from the API":["The following error was returned from the API"],"Sorry, an error occurred":["Sorry, an error occurred"],"Retry":["Retry"],"%d review":["%d review","%d reviews"],"Search results updated.":["Search results updated."],"%d item selected":["%d item selected","%d items selected"],"Search for items":["Search for items"],"No results for %s":["No results for %s"],"No items found.":["No items found."],"Clear all selected items":["Clear all selected items"],"Clear all":["Clear all"],"Remove %s":["Remove %s"],"%d category selected":["%d category selected","%d categories selected"],"All selected categories":["All selected categories"],"Any selected categories":["Any selected categories"],"Category search results updated.":["Category search results updated."],"Clear all product categories":["Clear all product categories"],"Done":["Done"],"No product is selected.":["No product is selected."],"Overlay":["Overlay"],"Pick at least two categories to use this setting.":["Pick at least two categories to use this setting."],"Product search results updated.":["Product search results updated."],"Search for a product to display":["Search for a product to display"],"Search for product categories":["Search for product categories"],"Shop now":["Shop now"],"Show description":["Show description"],"Show price":["Show price"],"Your store doesn't have any product categories.":["Your store doesn't have any product categories."],"Your store doesn't have any products.":["Your store doesn't have any products."],"Showing Featured Product block preview.":["Showing Featured Product block preview."],"Focal Point Picker":["Focal Point Picker"],"Display products matching":["Display products matching"],"%d product":["%d product","%d products"],"Content":["Content"],"None":["None"],"Reset":["Reset"],"Products":["Products"],"Product Categories":["Product Categories"],"Featured Product":["Featured Product"],"Add to cart":["Add to basket"]}},"comment":{"reference":"assets\/client\/blocks\/featured-product.js"}}
|
||||
{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Highlight a product or variation.":["Highlight a product or variation."],"This may affect your ability to freely move the focal point of the image.":["This may affect your ability to freely move the focal point of the image."],"Select \u201cCover\u201d to have the image automatically fit its container.":["Select \u201cCover\u201d to have the image automatically fit its container."],"An error has prevented the block from being updated.":["An error has prevented the block from being updated."],"Fixed background":["Fixed background"],"Repeated background":["Repeated background"],"Cover":["Cover"],"Image fit":["Image fit"],"Opacity":["Opacity"],"Alt text (alternative text)":["Alt text (alternative text)"],"Describe the purpose of the image":["Describe the purpose of the image"],"Edit product image":["Edit product image"],"Media settings":["Media settings"],"Edit selected product":["Edit selected product"],"%1$s, has %2$d variation":["%1$s, has %2$d variation","%1$s, has %2$d variations"],"%1$d variations":["%1$d variations"],"%1$s, has %2$d review":["%1$s, has %2$d review","%1$s, has %2$d reviews"],"%1$s, has %2$d product":["%1$s, has %2$d product","%1$s, has %2$d products"],"Loading\u2026":["Loading\u2026"],"Color":["Colour"],"Fly your WordPress banner with this beauty! Deck out your office space or add it to your kids walls. This banner will spruce up any space it\u2019s hung!":["Fly your WordPress banner with this beauty! Deck out your office space or add it to your kids' walls. This banner will spruce up any space in which it\u2019s hung!"],"The following error was returned":["The following error was returned"],"The following error was returned from the API":["The following error was returned from the API"],"Sorry, an error occurred":["Sorry, an error occurred"],"Retry":["Retry"],"%d review":["%d review","%d reviews"],"Search results updated.":["Search results updated."],"%d item selected":["%d item selected","%d items selected"],"Search for items":["Search for items"],"No results for %s":["No results for %s"],"No items found.":["No items found."],"Clear all selected items":["Clear all selected items"],"Clear all":["Clear all"],"Remove %s":["Remove %s"],"%d category selected":["%d category selected","%d categories selected"],"All selected categories":["All selected categories"],"Any selected categories":["Any selected categories"],"Category search results updated.":["Category search results updated."],"Clear all product categories":["Clear all product categories"],"Done":["Done"],"No product is selected.":["No product is selected."],"Overlay":["Overlay"],"Pick at least two categories to use this setting.":["Pick at least two categories to use this setting."],"Product search results updated.":["Product search results updated."],"Search for a product to display":["Search for a product to display"],"Search for product categories":["Search for product categories"],"Shop now":["Shop now"],"Show description":["Show description"],"Show price":["Show price"],"Your store doesn't have any product categories.":["Your store doesn't have any product categories."],"Your store doesn't have any products.":["Your store doesn't have any products."],"Showing Featured Product block preview.":["Showing Featured Product block preview."],"Focal Point Picker":["Focal Point Picker"],"Display products matching":["Display products matching"],"%d product":["%d product","%d products"],"Content":["Content"],"None":["None"],"Reset":["Reset"],"Products":["Products"],"Product Categories":["Product Categories"],"Featured Product":["Featured Product"],"Add to cart":["Add to basket"]}},"comment":{"reference":"assets\/client\/blocks\/featured-product.js"}}
|
||||
|
|
@ -1 +1 @@
|
|||
{"translation-revision-date":"2024-08-21 18:24:32+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"FROM A CSV FILE":["FROM A CSV FILE"],"Import all products at once by uploading a CSV file.":["Import all products at once by uploading a CSV file."],"Or add your products from scratch":["Or add your products from scratch"],"Import your products":["Import your products"]}},"comment":{"reference":"assets\/client\/admin\/chunks\/997.js"}}
|
||||
{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"FROM A CSV FILE":["FROM A CSV FILE"],"Import all products at once by uploading a CSV file.":["Import all products at once by uploading a CSV file."],"Or add your products from scratch":["Or add your products from scratch"],"Import your products":["Import your products"]}},"comment":{"reference":"assets\/client\/admin\/chunks\/997.js"}}
|
||||
|
|
@ -1 +1 @@
|
|||
{"translation-revision-date":"2024-08-21 18:24:32+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Guide controls":["Guide controls"],"Share feedback":["Share feedback"],"Previous":["Previous"],"Next":["Next"]}},"comment":{"reference":"assets\/client\/admin\/chunks\/5771.js"}}
|
||||
{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Guide controls":["Guide controls"],"Share feedback":["Share feedback"],"Previous":["Previous"],"Next":["Next"]}},"comment":{"reference":"assets\/client\/admin\/chunks\/5771.js"}}
|
||||
|
|
@ -1 +1 @@
|
|||
{"translation-revision-date":"2024-08-21 18:24:32+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Toggle to use the global query context that is set with the current template, such as variations of the product catalog or search. Disable to customize the filtering independently.":["Toggle to use the global query context that is set with the current template, such as variations of the product catalogue or search. Disable to customise the filtering independently."],"An error has prevented the block from being updated.":["An error has prevented the block from being updated."],"%d term":["%d term","%d terms"],"%1$s, has %2$d term":["%1$s, has %2$d term","%1$s, has %2$d terms"],"%1$s, has %2$d product":["%1$s, has %2$d product","%1$s, has %2$d products"],"Give us your feedback.":["Give us your feedback."],"Feedback?":["Feedback?"],"Loading\u2026":["Loading\u2026"],"Advanced Filters":["Advanced Filters"],"Product Summary":["Product summary"],"Display the title of a product.":["Display the title of a product."],"Display a short description about a product.":["Display a short description about a product."],"The following error was returned":["The following error was returned"],"The following error was returned from the API":["The following error was returned from the API"],"Search results updated.":["Search results updated."],"%d item selected":["%d item selected","%d items selected"],"Search for items":["Search for items"],"No results for %s":["No results for %s"],"No items found.":["No items found."],"Clear all selected items":["Clear all selected items"],"Clear all":["Clear all"],"Remove %s":["Remove %s"],"%d attribute selected":["%d attribute selected","%d attributes selected"],"All selected attributes":["All selected attributes"],"Any selected attributes":["Any selected attributes"],"Clear all product attributes":["Clear all product attributes"],"Pick at least two attributes to use this setting.":["Pick at least two attributes to use this setting."],"Product attribute search results updated.":["Product attribute search results updated."],"Search for product attributes":["Search for product attributes"],"Your store doesn't have any product attributes.":["Your store doesn't have any product attributes."],"Hand-picked Products":["Hand-picked Products"],"Display products matching":["Display products matching"],"Product Title":["Product Title"],"Product Attributes":["Product Attributes"],"Related products":["Related products"],"%d product":["%d product","%d products"],"Stock status":["Stock status"],"Attributes":["Attributes"]}},"comment":{"reference":"assets\/client\/blocks\/product-query.js"}}
|
||||
{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Toggle to use the global query context that is set with the current template, such as variations of the product catalog or search. Disable to customize the filtering independently.":["Toggle to use the global query context that is set with the current template, such as variations of the product catalogue or search. Disable to customise the filtering independently."],"An error has prevented the block from being updated.":["An error has prevented the block from being updated."],"%d term":["%d term","%d terms"],"%1$s, has %2$d term":["%1$s, has %2$d term","%1$s, has %2$d terms"],"%1$s, has %2$d product":["%1$s, has %2$d product","%1$s, has %2$d products"],"Give us your feedback.":["Give us your feedback."],"Feedback?":["Feedback?"],"Loading\u2026":["Loading\u2026"],"Advanced Filters":["Advanced Filters"],"Product Summary":["Product summary"],"Display the title of a product.":["Display the title of a product."],"Display a short description about a product.":["Display a short description about a product."],"The following error was returned":["The following error was returned"],"The following error was returned from the API":["The following error was returned from the API"],"Search results updated.":["Search results updated."],"%d item selected":["%d item selected","%d items selected"],"Search for items":["Search for items"],"No results for %s":["No results for %s"],"No items found.":["No items found."],"Clear all selected items":["Clear all selected items"],"Clear all":["Clear all"],"Remove %s":["Remove %s"],"%d attribute selected":["%d attribute selected","%d attributes selected"],"All selected attributes":["All selected attributes"],"Any selected attributes":["Any selected attributes"],"Clear all product attributes":["Clear all product attributes"],"Pick at least two attributes to use this setting.":["Pick at least two attributes to use this setting."],"Product attribute search results updated.":["Product attribute search results updated."],"Search for product attributes":["Search for product attributes"],"Your store doesn't have any product attributes.":["Your store doesn't have any product attributes."],"Hand-picked Products":["Hand-picked Products"],"Display products matching":["Display products matching"],"Product Title":["Product Title"],"Product Attributes":["Product Attributes"],"Related products":["Related products"],"%d product":["%d product","%d products"],"Stock status":["Stock status"],"Attributes":["Attributes"]}},"comment":{"reference":"assets\/client\/blocks\/product-query.js"}}
|
||||
|
|
@ -1 +1 @@
|
|||
{"translation-revision-date":"2024-08-21 18:24:32+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"%s (optional)":["%s (optional)"],"%d in cart":["%d in basket","%d in basket"],"Add to cart":["Add to basket"]}},"comment":{"reference":"assets\/client\/blocks\/product-button-frontend.js"}}
|
||||
{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"%s (optional)":["%s (optional)"],"%d in cart":["%d in basket","%d in basket"],"Add to cart":["Add to basket"]}},"comment":{"reference":"assets\/client\/blocks\/product-button-frontend.js"}}
|
||||
|
|
@ -1 +1 @@
|
|||
{"translation-revision-date":"2024-08-21 18:24:32+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Overlay drawer orientation":["Overlay drawer orientation"],"POSITION":["POSITION"],"The overlay will show on the left or right side of the screen (only on desktop).":["The overlay will show on the left or right side of the screen (only on desktop)."],"The overlay will fill up the whole screen.":["The overlay will fill up the whole screen."],"Full-Screen":["Full screen"],"Style":["Style"],"Left":["Left"],"Right":["Right"]}},"comment":{"reference":"assets\/client\/blocks\/product-filters-overlay.js"}}
|
||||
{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Overlay drawer orientation":["Overlay drawer orientation"],"POSITION":["POSITION"],"The overlay will show on the left or right side of the screen (only on desktop).":["The overlay will show on the left or right side of the screen (only on desktop)."],"The overlay will fill up the whole screen.":["The overlay will fill up the whole screen."],"Full-Screen":["Full screen"],"Style":["Style"],"Left":["Left"],"Right":["Right"]}},"comment":{"reference":"assets\/client\/blocks\/product-filters-overlay.js"}}
|
||||
|
|
@ -1 +1 @@
|
|||
{"translation-revision-date":"2024-08-21 18:24:32+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Settings":["Settings"]}},"comment":{"reference":"assets\/client\/blocks\/coming-soon.js"}}
|
||||
{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Settings":["Settings"]}},"comment":{"reference":"assets\/client\/blocks\/coming-soon.js"}}
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
|
@ -1 +1 @@
|
|||
{"translation-revision-date":"2024-08-21 18:24:32+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Price":["Price"]}},"comment":{"reference":"assets\/client\/admin\/product-editor\/blocks\/generic\/pricing\/edit.js"}}
|
||||
{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Price":["Price"]}},"comment":{"reference":"assets\/client\/admin\/product-editor\/blocks\/generic\/pricing\/edit.js"}}
|
||||
|
|
@ -1 +1 @@
|
|||
{"translation-revision-date":"2024-08-21 18:24:32+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Display product count":["Display product count"],"Show 'Apply filters' button":["Show 'Apply filters' button"],"Reset filter":["Reset filter"],"Allow selecting multiple options?":["Allow selecting multiple options?"],"Apply filter":["Apply filter"],"Products will update when the button is clicked.":["Products will only update when the button is clicked."],"Display Style":["Display Style"],"Display Settings":["Display Settings"],"Rated %f out of 5":["Rated %f out of 5"],"List":["List"],"Dropdown":["Dropdown"],"Reset":["Reset"],"Apply":["Apply"],"Rated %s out of 5":["Rated %s out of 5"]}},"comment":{"reference":"assets\/client\/blocks\/rating-filter.js"}}
|
||||
{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Display product count":["Display product count"],"Show 'Apply filters' button":["Show 'Apply filters' button"],"Reset filter":["Reset filter"],"Allow selecting multiple options?":["Allow selecting multiple options?"],"Apply filter":["Apply filter"],"Products will update when the button is clicked.":["Products will only update when the button is clicked."],"Display Style":["Display Style"],"Display Settings":["Display Settings"],"Rated %f out of 5":["Rated %f out of 5"],"List":["List"],"Dropdown":["Dropdown"],"Reset":["Reset"],"Apply":["Apply"],"Rated %s out of 5":["Rated %s out of 5"]}},"comment":{"reference":"assets\/client\/blocks\/rating-filter.js"}}
|
||||
|
|
@ -1 +1 @@
|
|||
{"translation-revision-date":"2024-08-21 18:24:32+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"An error has prevented the block from being updated.":["An error has prevented the block from being updated."],"Display reviews for your products.":["Display reviews for your products."],"Edit selected product":["Edit selected product"],"%1$s, has %2$d variation":["%1$s, has %2$d variation","%1$s, has %2$d variations"],"%1$d variations":["%1$d variations"],"%1$s, has %2$d review":["%1$s, has %2$d review","%1$s, has %2$d reviews"],"Loading\u2026":["Loading\u2026"],"The following error was returned":["The following error was returned"],"I bought this product last week and I'm very happy with it.":["I bought this product last week and I'm very happy with it."],"Alice":["Alice"],"WordPress Pennant":["WordPress Pennant"],"This product is awesome, I love it!":["This product is awesome, I love it."],"Bob":["Bob"],"July 12, 2019":["July 12, 2019"],"July 15, 2019":["July 15, 2019"],"Showing Reviews by Product block preview.":["Showing Reviews by Product block preview."],"Show reviews of your product to build trust":["Show reviews of your product to build trust"],"The following error was returned from the API":["The following error was returned from the API"],"Sorry, an error occurred":["Sorry, an error occurred"],"This block lists reviews for a selected product. %s doesn't have any reviews yet, but they will show up here when it does.":["This block lists reviews for a selected product. %s doesn't have any reviews yet, but they will show up here when it does."],"Retry":["Retry"],"Load more reviews":["Load more reviews"],"%d review":["%d review","%d reviews"],"Reviewer name":["Reviewer name"],"Most recent":["Most recent"],"Load more":["Load more"],"Read full review":["Read full review"],"Hide full review":["Hide full review"],"Review date":["Review date"],"Review content":["Review content"],"Review image":["Review image"],"Reviewer photo":["Reviewer photo"],"Order Product Reviews by":["Order Product Reviews by"],"Starting Number of Reviews":["Starting Number of Reviews"],"Load More Reviews":["Load More Reviews"],"The content for this block is hidden due to block settings.":["The content for this block is hidden due to block settings."],"Reviews by Product":["Reviews by Product"],"Highest rating":["Highest rating"],"Lowest rating":["Lowest rating"],"Verified buyer":["Verified buyer"],"Read less":["Read less"],"Order reviews by":["Order reviews by"],"Product rating is disabled in your <a>store settings<\/a>.":["Product rating is disabled in your <a>store settings<\/a>."],"Reviewer photo is disabled in your <a>site settings<\/a>.":["Reviewer photo is disabled in your <a>site settings<\/a>."],"Search results updated.":["Search results updated."],"%d item selected":["%d item selected","%d items selected"],"Search for items":["Search for items"],"No results for %s":["No results for %s"],"No items found.":["No items found."],"Clear all selected items":["Clear all selected items"],"Clear all":["Clear all"],"Remove %s":["Remove %s"],"Done":["Done"],"Product search results updated.":["Product search results updated."],"Search for a product to display":["Search for a product to display"],"Your store doesn't have any products.":["Your store doesn't have any products."],"List Settings":["List Settings"],"Product rating":["Product rating"],"Rated %f out of 5":["Rated %f out of 5"],"Content":["Content"],"Products":["Products"],"Image":["Image"],"WooCommerce":["WooCommerce"],"Order by":["Order by"],"Product":["Product"],"Read more":["Read more"],"Rated %s out of 5":["Rated %s out of 5"]}},"comment":{"reference":"assets\/client\/blocks\/reviews-by-product.js"}}
|
||||
{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"An error has prevented the block from being updated.":["An error has prevented the block from being updated."],"Display reviews for your products.":["Display reviews for your products."],"Edit selected product":["Edit selected product"],"%1$s, has %2$d variation":["%1$s, has %2$d variation","%1$s, has %2$d variations"],"%1$d variations":["%1$d variations"],"%1$s, has %2$d review":["%1$s, has %2$d review","%1$s, has %2$d reviews"],"Loading\u2026":["Loading\u2026"],"The following error was returned":["The following error was returned"],"I bought this product last week and I'm very happy with it.":["I bought this product last week and I'm very happy with it."],"Alice":["Alice"],"WordPress Pennant":["WordPress Pennant"],"This product is awesome, I love it!":["This product is awesome, I love it."],"Bob":["Bob"],"July 12, 2019":["July 12, 2019"],"July 15, 2019":["July 15, 2019"],"Showing Reviews by Product block preview.":["Showing Reviews by Product block preview."],"Show reviews of your product to build trust":["Show reviews of your product to build trust"],"The following error was returned from the API":["The following error was returned from the API"],"Sorry, an error occurred":["Sorry, an error occurred"],"This block lists reviews for a selected product. %s doesn't have any reviews yet, but they will show up here when it does.":["This block lists reviews for a selected product. %s doesn't have any reviews yet, but they will show up here when it does."],"Retry":["Retry"],"Load more reviews":["Load more reviews"],"%d review":["%d review","%d reviews"],"Reviewer name":["Reviewer name"],"Most recent":["Most recent"],"Load more":["Load more"],"Read full review":["Read full review"],"Hide full review":["Hide full review"],"Review date":["Review date"],"Review content":["Review content"],"Review image":["Review image"],"Reviewer photo":["Reviewer photo"],"Order Product Reviews by":["Order Product Reviews by"],"Starting Number of Reviews":["Starting Number of Reviews"],"Load More Reviews":["Load More Reviews"],"The content for this block is hidden due to block settings.":["The content for this block is hidden due to block settings."],"Reviews by Product":["Reviews by Product"],"Highest rating":["Highest rating"],"Lowest rating":["Lowest rating"],"Verified buyer":["Verified buyer"],"Read less":["Read less"],"Order reviews by":["Order reviews by"],"Product rating is disabled in your <a>store settings<\/a>.":["Product rating is disabled in your <a>store settings<\/a>."],"Reviewer photo is disabled in your <a>site settings<\/a>.":["Reviewer photo is disabled in your <a>site settings<\/a>."],"Search results updated.":["Search results updated."],"%d item selected":["%d item selected","%d items selected"],"Search for items":["Search for items"],"No results for %s":["No results for %s"],"No items found.":["No items found."],"Clear all selected items":["Clear all selected items"],"Clear all":["Clear all"],"Remove %s":["Remove %s"],"Done":["Done"],"Product search results updated.":["Product search results updated."],"Search for a product to display":["Search for a product to display"],"Your store doesn't have any products.":["Your store doesn't have any products."],"List Settings":["List Settings"],"Product rating":["Product rating"],"Rated %f out of 5":["Rated %f out of 5"],"Content":["Content"],"Products":["Products"],"Image":["Image"],"WooCommerce":["WooCommerce"],"Order by":["Order by"],"Product":["Product"],"Read more":["Read more"],"Rated %s out of 5":["Rated %s out of 5"]}},"comment":{"reference":"assets\/client\/blocks\/reviews-by-product.js"}}
|
||||
|
|
@ -1 +1 @@
|
|||
{"translation-revision-date":"2024-08-21 18:24:32+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Cart totals":["Basket totals"]}},"comment":{"reference":"assets\/client\/blocks\/cart-blocks\/order-summary-heading-frontend.js"}}
|
||||
{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Cart totals":["Basket totals"]}},"comment":{"reference":"assets\/client\/blocks\/cart-blocks\/order-summary-heading-frontend.js"}}
|
||||
|
|
@ -1 +1 @@
|
|||
{"translation-revision-date":"2024-08-21 18:24:32+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"There was an error loading the content.":["There was an error loading the content."],"Oops!":["Oops!"],"Load more reviews":["Load more reviews"],"Most recent":["Most recent"],"Load more":["Load more"],"Read full review":["Read full review"],"Hide full review":["Hide full review"],"Highest rating":["Highest rating"],"Lowest rating":["Lowest rating"],"Verified buyer":["Verified buyer"],"Reviews list updated.":["Reviews list updated."],"There was an error loading the reviews.":["There was an error loading the reviews."],"Read less":["Read less"],"%d review loaded.":["%d review loaded.","%d reviews loaded."],"Order reviews by":["Order reviews by"],"Error:":["Error:"],"Rated %f out of 5":["Rated %f out of 5"],"Order by":["Order by"],"Read more":["Read more"],"Rated %s out of 5":["Rated %s out of 5"]}},"comment":{"reference":"assets\/client\/blocks\/reviews-frontend.js"}}
|
||||
{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"There was an error loading the content.":["There was an error loading the content."],"Oops!":["Oops!"],"Load more reviews":["Load more reviews"],"Most recent":["Most recent"],"Load more":["Load more"],"Read full review":["Read full review"],"Hide full review":["Hide full review"],"Highest rating":["Highest rating"],"Lowest rating":["Lowest rating"],"Verified buyer":["Verified buyer"],"Reviews list updated.":["Reviews list updated."],"There was an error loading the reviews.":["There was an error loading the reviews."],"Read less":["Read less"],"%d review loaded.":["%d review loaded.","%d reviews loaded."],"Order reviews by":["Order reviews by"],"Error:":["Error:"],"Rated %f out of 5":["Rated %f out of 5"],"Order by":["Order by"],"Read more":["Read more"],"Rated %s out of 5":["Rated %s out of 5"]}},"comment":{"reference":"assets\/client\/blocks\/reviews-frontend.js"}}
|
||||
|
|
@ -1 +1 @@
|
|||
{"translation-revision-date":"2024-08-21 18:24:32+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Direct bank transfer":["Direct bank transfer"]}},"comment":{"reference":"assets\/client\/blocks\/wc-payment-method-bacs.js"}}
|
||||
{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Direct bank transfer":["Direct bank transfer"]}},"comment":{"reference":"assets\/client\/blocks\/wc-payment-method-bacs.js"}}
|
||||
|
|
@ -1 +1 @@
|
|||
{"translation-revision-date":"2024-08-21 18:24:32+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"An error has prevented the block from being updated.":["An error has prevented the block from being updated."],"Align the last block to the bottom.":["Align the last block to the bottom."],"Align the last block to the bottom":["Align the last block to the bottom"],"Stock status \"%s\" hidden.":["Stock status \"%s\" hidden."],"Stock status \"%s\" visible.":["Stock status \"%s\" visible."],"%1$s, has %2$d review":["%1$s, has %2$d review","%1$s, has %2$d reviews"],"%1$s, has %2$d product":["%1$s, has %2$d product","%1$s, has %2$d products"],"Loading\u2026":["Loading\u2026"],"The last inner block will follow other content.":["The last inner block will follow other content."],"The following error was returned":["The following error was returned"],"The following error was returned from the API":["The following error was returned from the API"],"%d review":["%d review","%d reviews"],"Search results updated.":["Search results updated."],"%d item selected":["%d item selected","%d items selected"],"Search for items":["Search for items"],"No results for %s":["No results for %s"],"No items found.":["No items found."],"Clear all selected items":["Clear all selected items"],"Clear all":["Clear all"],"Remove %s":["Remove %s"],"%d category selected":["%d category selected","%d categories selected"],"All selected categories":["All selected categories"],"Any selected categories":["Any selected categories"],"Category search results updated.":["Category search results updated."],"Clear all product categories":["Clear all product categories"],"Columns":["Columns"],"Display a grid of your top rated products.":["Display a grid of your top rated products."],"Layout":["Layout"],"Pick at least two categories to use this setting.":["Pick at least two categories to use this setting."],"Rows":["Rows"],"Search for product categories":["Search for product categories"],"Your store doesn't have any product categories.":["Your store doesn't have any product categories."],"Filter by Product Category":["Filter by Product Category"],"Add to Cart button":["Add to Basket button"],"Display products matching":["Display products matching"],"Product price":["Product price"],"Product rating":["Product rating"],"Product title":["Product title"],"Filter by stock status":["Filter by stock status"],"Product image":["Product image"],"%d product":["%d product","%d products"],"Content":["Content"],"Product Categories":["Product Categories"],"WooCommerce":["WooCommerce"]}},"comment":{"reference":"assets\/client\/blocks\/product-top-rated.js"}}
|
||||
{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"An error has prevented the block from being updated.":["An error has prevented the block from being updated."],"Align the last block to the bottom.":["Align the last block to the bottom."],"Align the last block to the bottom":["Align the last block to the bottom"],"Stock status \"%s\" hidden.":["Stock status \"%s\" hidden."],"Stock status \"%s\" visible.":["Stock status \"%s\" visible."],"%1$s, has %2$d review":["%1$s, has %2$d review","%1$s, has %2$d reviews"],"%1$s, has %2$d product":["%1$s, has %2$d product","%1$s, has %2$d products"],"Loading\u2026":["Loading\u2026"],"The last inner block will follow other content.":["The last inner block will follow other content."],"The following error was returned":["The following error was returned"],"The following error was returned from the API":["The following error was returned from the API"],"%d review":["%d review","%d reviews"],"Search results updated.":["Search results updated."],"%d item selected":["%d item selected","%d items selected"],"Search for items":["Search for items"],"No results for %s":["No results for %s"],"No items found.":["No items found."],"Clear all selected items":["Clear all selected items"],"Clear all":["Clear all"],"Remove %s":["Remove %s"],"%d category selected":["%d category selected","%d categories selected"],"All selected categories":["All selected categories"],"Any selected categories":["Any selected categories"],"Category search results updated.":["Category search results updated."],"Clear all product categories":["Clear all product categories"],"Columns":["Columns"],"Display a grid of your top rated products.":["Display a grid of your top rated products."],"Layout":["Layout"],"Pick at least two categories to use this setting.":["Pick at least two categories to use this setting."],"Rows":["Rows"],"Search for product categories":["Search for product categories"],"Your store doesn't have any product categories.":["Your store doesn't have any product categories."],"Filter by Product Category":["Filter by Product Category"],"Add to Cart button":["Add to Basket button"],"Display products matching":["Display products matching"],"Product price":["Product price"],"Product rating":["Product rating"],"Product title":["Product title"],"Filter by stock status":["Filter by stock status"],"Product image":["Product image"],"%d product":["%d product","%d products"],"Content":["Content"],"Product Categories":["Product Categories"],"WooCommerce":["WooCommerce"]}},"comment":{"reference":"assets\/client\/blocks\/product-top-rated.js"}}
|
||||
|
|
@ -1 +1 @@
|
|||
{"translation-revision-date":"2024-08-21 18:24:32+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"%1$d item in cart":["%1$d item in basket","%1$d items in basket"],"%1$d item in cart, total price of %2$s":["%1$d item in basket, total price of %2$s","%1$d items in basket, total price of %2$s"]}},"comment":{"reference":"assets\/client\/blocks\/mini-cart-component-frontend.js"}}
|
||||
{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"%1$d item in cart":["%1$d item in basket","%1$d items in basket"],"%1$d item in cart, total price of %2$s":["%1$d item in basket, total price of %2$s","%1$d items in basket, total price of %2$s"]}},"comment":{"reference":"assets\/client\/blocks\/mini-cart-component-frontend.js"}}
|
||||
|
|
@ -1 +1 @@
|
|||
{"translation-revision-date":"2024-08-21 18:24:32+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Connect your store to WordPress.com to enable WooCommerce Shipping":["Connect your store to WordPress.com to enable WooCommerce Shipping"],"Enable shipping label printing and discounted rates":["Enable shipping label printing and discounted rates"],"Access discounted shipping rates with DHL and USPS.":["Access discounted shipping rates with DHL and USPS."],"Discounted rates":["Discounted rates"],"Pick up an order, then just pay, print, package and post.":["Pick up an order, then just pay, print, package and post."],"Print at home":["Print at home"],"No need to wonder where that stampbook went.":["No need to wonder where that stampbook went."],"Buy postage when you need it":["Buy postage when you need it"],"Connect your store":["Connect your store"],"The address from which your business operates":["The address from which your business operates"],"Set store location":["Set store location"],"Complete task":["Complete task"],"Install & enable":["Install & enable"]}},"comment":{"reference":"assets\/client\/admin\/chunks\/6290.js"}}
|
||||
{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Connect your store to WordPress.com to enable WooCommerce Shipping":["Connect your store to WordPress.com to enable WooCommerce Shipping"],"Enable shipping label printing and discounted rates":["Enable shipping label printing and discounted rates"],"Access discounted shipping rates with DHL and USPS.":["Access discounted shipping rates with DHL and USPS."],"Discounted rates":["Discounted rates"],"Pick up an order, then just pay, print, package and post.":["Pick up an order, then just pay, print, package and post."],"Print at home":["Print at home"],"No need to wonder where that stampbook went.":["No need to wonder where that stampbook went."],"Buy postage when you need it":["Buy postage when you need it"],"Connect your store":["Connect your store"],"The address from which your business operates":["The address from which your business operates"],"Set store location":["Set store location"],"Complete task":["Complete task"],"Install & enable":["Install & enable"]}},"comment":{"reference":"assets\/client\/admin\/chunks\/6290.js"}}
|
||||
|
|
@ -1 +1 @@
|
|||
{"translation-revision-date":"2024-08-21 18:24:32+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Rated %1$s out of 5 based on %2$s customer rating":["Rated %1$s out of 5 based on %2$s customer rating","Rated %1$s out of 5 based on %2$s customer ratings"],"Rated %f out of 5":["Rated %f out of 5"]}},"comment":{"reference":"assets\/client\/blocks\/product-rating.js"}}
|
||||
{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Rated %1$s out of 5 based on %2$s customer rating":["Rated %1$s out of 5 based on %2$s customer rating","Rated %1$s out of 5 based on %2$s customer ratings"],"Rated %f out of 5":["Rated %f out of 5"]}},"comment":{"reference":"assets\/client\/blocks\/product-rating.js"}}
|
||||
|
|
@ -1 +1 @@
|
|||
{"translation-revision-date":"2024-08-21 18:24:32+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Advanced filters":["Advanced filters"],"Total spend":["Total spend"],"Date registered":["Date registered"],"customer":["customer","customers"],"Search by customer name":["Search by customer name"],"Remove last active filter":["Remove last active filter"],"Last active":["Last active"],"date\u0004Between":["Between"],"date\u0004After":["After"],"date\u0004Before":["Before"],"Select registered date":["Select registered date"],"Remove registered filter":["Remove registered filter"],"Registered":["Registered"],"average order value of customer\u0004Between":["Between"],"average order value of customer\u0004More Than":["More Than"],"Select a last active filter match":["Select a last active filter match"],"Select a registered filter match":["Select a registered filter match"],"average order value of customer\u0004Less Than":["Less than"],"Select an average order value filter match":["Select an average order value filter match"],"Remove average order value filter":["Remove average order value filter"],"total spend by customer\u0004Between":["Between"],"total spend by customer\u0004More Than":["More than"],"total spend by customer\u0004Less Than":["Less than"],"Select a total spend filter match":["Select a total spend filter match"],"Remove customer email filter":["Remove customer email filter"],"Search customer email":["Search customer email"],"countries\u0004Excludes":["Excludes"],"countries\u0004Includes":["Includes"],"Select country \/ region":["Select country \/ region"],"Select a country \/ region filter match":["Select a country \/ region filter match"],"Remove country \/ region filter":["Remove country \/ region filter"],"customer names\u0004Excludes":["Excludes"],"customer names\u0004Includes":["Includes"],"Select customer name":["Select customer name"],"Select a customer name filter match":["Select a customer name filter match"],"Remove customer name filter":["Remove customer name filter"],"Select customer username":["Select customer username"],"Select a customer username filter match":["Select a customer username filter match"],"Remove customer username filter":["Remove customer username filter"],"Search customer username":["Search customer username"],"customer usernames\u0004Excludes":["Excludes"],"customer usernames\u0004Includes":["Includes"],"Type to search for a customer":["Type to search for a customer"],"Single Customer":["Single Customer"],"All Customers":["All Customers"],"customer emails\u0004Includes":["Includes"],"Select customer email":["Select customer email"],"Select a customer email filter match":["Select a customer email filter match"],"Select an order count filter match":["Select an order count filter match"],"Remove order filter":["Remove order filter"],"customer emails\u0004Excludes":["Excludes"],"Remove total spend filter":["Remove total spend filter"],"number of orders\u0004Between":["Between"],"number of orders\u0004More Than":["More Than"],"number of orders\u0004Less Than":["Less Than"],"Average lifetime spend":["Average lifetime spend"],"Average order":["Average order","Average orders"],"Average order value":["Average order value"],"No. of Orders":["No. of Orders"],"AOV":["AOV"],"Total Spend":["Total Spend"],"Country \/ Region":["Country\/Region"],"TAX":["TAX"],"Postal code":["Postcode"],"Any %s":["Any %s"],"Region":["Region"],"Show":["Show"],"Username":["Username"],"Guest":["Guest"],"Search":["Search"],"City":["City"],"Email":["Email"],"Orders":["Orders"],"Customers":["Customers"],"Name":["Name"]}},"comment":{"reference":"assets\/client\/admin\/chunks\/analytics-report-customers.js"}}
|
||||
{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Advanced filters":["Advanced filters"],"Total spend":["Total spend"],"Date registered":["Date registered"],"customer":["customer","customers"],"Search by customer name":["Search by customer name"],"Remove last active filter":["Remove last active filter"],"Last active":["Last active"],"date\u0004Between":["Between"],"date\u0004After":["After"],"date\u0004Before":["Before"],"Select registered date":["Select registered date"],"Remove registered filter":["Remove registered filter"],"Registered":["Registered"],"average order value of customer\u0004Between":["Between"],"average order value of customer\u0004More Than":["More Than"],"Select a last active filter match":["Select a last active filter match"],"Select a registered filter match":["Select a registered filter match"],"average order value of customer\u0004Less Than":["Less than"],"Select an average order value filter match":["Select an average order value filter match"],"Remove average order value filter":["Remove average order value filter"],"total spend by customer\u0004Between":["Between"],"total spend by customer\u0004More Than":["More than"],"total spend by customer\u0004Less Than":["Less than"],"Select a total spend filter match":["Select a total spend filter match"],"Remove customer email filter":["Remove customer email filter"],"Search customer email":["Search customer email"],"countries\u0004Excludes":["Excludes"],"countries\u0004Includes":["Includes"],"Select country \/ region":["Select country \/ region"],"Select a country \/ region filter match":["Select a country \/ region filter match"],"Remove country \/ region filter":["Remove country \/ region filter"],"customer names\u0004Excludes":["Excludes"],"customer names\u0004Includes":["Includes"],"Select customer name":["Select customer name"],"Select a customer name filter match":["Select a customer name filter match"],"Remove customer name filter":["Remove customer name filter"],"Select customer username":["Select customer username"],"Select a customer username filter match":["Select a customer username filter match"],"Remove customer username filter":["Remove customer username filter"],"Search customer username":["Search customer username"],"customer usernames\u0004Excludes":["Excludes"],"customer usernames\u0004Includes":["Includes"],"Type to search for a customer":["Type to search for a customer"],"Single Customer":["Single Customer"],"All Customers":["All Customers"],"customer emails\u0004Includes":["Includes"],"Select customer email":["Select customer email"],"Select a customer email filter match":["Select a customer email filter match"],"Select an order count filter match":["Select an order count filter match"],"Remove order filter":["Remove order filter"],"customer emails\u0004Excludes":["Excludes"],"Remove total spend filter":["Remove total spend filter"],"number of orders\u0004Between":["Between"],"number of orders\u0004More Than":["More Than"],"number of orders\u0004Less Than":["Less Than"],"Average lifetime spend":["Average lifetime spend"],"Average order":["Average order","Average orders"],"Average order value":["Average order value"],"No. of Orders":["No. of Orders"],"AOV":["AOV"],"Total Spend":["Total Spend"],"Country \/ Region":["Country\/Region"],"TAX":["TAX"],"Postal code":["Postcode"],"Any %s":["Any %s"],"Region":["Region"],"Show":["Show"],"Username":["Username"],"Guest":["Guest"],"Search":["Search"],"City":["City"],"Email":["Email"],"Orders":["Orders"],"Customers":["Customers"],"Name":["Name"]}},"comment":{"reference":"assets\/client\/admin\/chunks\/analytics-report-customers.js"}}
|
||||
|
|
@ -1 +1 @@
|
|||
{"translation-revision-date":"2024-08-21 18:24:32+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Product on sale":["Product on sale"],"Sale":["Sale"]}},"comment":{"reference":"assets\/client\/blocks\/product-sale-badge.js"}}
|
||||
{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Product on sale":["Product on sale"],"Sale":["Sale"]}},"comment":{"reference":"assets\/client\/blocks\/product-sale-badge.js"}}
|
||||
|
|
@ -1 +1 @@
|
|||
{"translation-revision-date":"2024-08-21 18:24:32+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"SKU:":["SKU:"]}},"comment":{"reference":"assets\/client\/blocks\/product-sku-frontend.js"}}
|
||||
{"translation-revision-date":"2024-09-02 16:32:25+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"SKU:":["SKU:"]}},"comment":{"reference":"assets\/client\/blocks\/product-sku-frontend.js"}}
|
||||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue