2024-10-09
This commit is contained in:
parent
a129d830cb
commit
336911df78
333 changed files with 5413 additions and 2967 deletions
|
|
@ -1,4 +1,4 @@
|
||||||
#ddev-generated
|
# ddev-generated
|
||||||
additional_hostnames:
|
additional_hostnames:
|
||||||
- vite.haikuatelier.fr
|
- vite.haikuatelier.fr
|
||||||
web_environment:
|
web_environment:
|
||||||
|
|
|
||||||
|
|
@ -223,12 +223,12 @@ corepack_enable: true
|
||||||
# The default time that DDEV waits for all containers to become ready can be increased from
|
# The default time that DDEV waits for all containers to become ready can be increased from
|
||||||
# the default 120. This helps in importing huge databases, for example.
|
# the default 120. This helps in importing huge databases, for example.
|
||||||
|
|
||||||
#web_extra_exposed_ports:
|
# web_extra_exposed_ports:
|
||||||
#- name: nodejs
|
# - name: nodejs
|
||||||
# container_port: 3000
|
# container_port: 3000
|
||||||
# http_port: 2999
|
# http_port: 2999
|
||||||
# https_port: 3000
|
# https_port: 3000
|
||||||
#- name: something
|
# - name: something
|
||||||
# container_port: 4000
|
# container_port: 4000
|
||||||
# https_port: 4000
|
# https_port: 4000
|
||||||
# http_port: 3999
|
# http_port: 3999
|
||||||
|
|
@ -246,11 +246,11 @@ corepack_enable: true
|
||||||
# http_port: 9998
|
# http_port: 9998
|
||||||
# https_port: 9999
|
# https_port: 9999
|
||||||
|
|
||||||
#web_extra_daemons:
|
# web_extra_daemons:
|
||||||
#- name: "http-1"
|
# - name: "http-1"
|
||||||
# command: "/var/www/html/node_modules/.bin/http-server -p 3000"
|
# command: "/var/www/html/node_modules/.bin/http-server -p 3000"
|
||||||
# directory: /var/www/html
|
# directory: /var/www/html
|
||||||
#- name: "http-2"
|
# - name: "http-2"
|
||||||
# command: "/var/www/html/node_modules/.bin/http-server /var/www/html/sub -p 3000"
|
# command: "/var/www/html/node_modules/.bin/http-server /var/www/html/sub -p 3000"
|
||||||
# directory: /var/www/html
|
# directory: /var/www/html
|
||||||
|
|
||||||
|
|
@ -276,7 +276,7 @@ corepack_enable: true
|
||||||
# See https://ddev.readthedocs.io/en/stable/users/extend/custom-commands/ for more
|
# See https://ddev.readthedocs.io/en/stable/users/extend/custom-commands/ for more
|
||||||
# information on the commands that can be extended and the tasks you can define
|
# information on the commands that can be extended and the tasks you can define
|
||||||
# for them. Example:
|
# for them. Example:
|
||||||
#hooks:
|
# hooks:
|
||||||
# Un-comment to emit the WP CLI version after ddev start.
|
# Un-comment to emit the WP CLI version after ddev start.
|
||||||
# post-start:
|
# post-start:
|
||||||
# - exec: wp cli version
|
# - exec: wp cli version
|
||||||
|
|
|
||||||
|
|
@ -1,9 +1,9 @@
|
||||||
<!DOCTYPE html>
|
<!doctype html>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<!-- #ddev-generated -->
|
<!-- #ddev-generated -->
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8" />
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||||
<title>vite not running</title>
|
<title>vite not running</title>
|
||||||
<style>
|
<style>
|
||||||
html, body {
|
html, body {
|
||||||
|
|
@ -26,7 +26,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
body {
|
body {
|
||||||
background: #ddd;
|
background: #dddddd;
|
||||||
display: grid;
|
display: grid;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
justify-items: center;
|
justify-items: center;
|
||||||
|
|
@ -38,9 +38,9 @@
|
||||||
|
|
||||||
main {
|
main {
|
||||||
max-width: 36rem;
|
max-width: 36rem;
|
||||||
background: #fff;
|
background: #ffffff;
|
||||||
padding: 1.5rem;
|
padding: 1.5rem;
|
||||||
border: 1px #999 solid;
|
border: 1px #999999 solid;
|
||||||
}
|
}
|
||||||
|
|
||||||
code {
|
code {
|
||||||
|
|
|
||||||
2
.npmrc
2
.npmrc
|
|
@ -1,2 +1,2 @@
|
||||||
# Nécessaire pour que better-typescript-lib puisse fonctionner
|
# Nécessaire pour better-typescript-lib
|
||||||
public-hoist-pattern[]=@typescript/*
|
public-hoist-pattern[]=@typescript/*
|
||||||
|
|
@ -1,14 +1,7 @@
|
||||||
{
|
{
|
||||||
"$schema": "./node_modules/oxlint/configuration_schema.json",
|
"$schema": "./node_modules/oxlint/configuration_schema.json",
|
||||||
"env": {
|
"env": { "browser": true, "es2020": true, "es2022": true },
|
||||||
"browser": true,
|
|
||||||
"es2020": true,
|
|
||||||
"es2022": true
|
|
||||||
},
|
|
||||||
"settings": {
|
"settings": {
|
||||||
},
|
},
|
||||||
"rules": {
|
"rules": { "import/export": "error", "typescript/consistent-type-imports": "error" }
|
||||||
"import/export": "error",
|
|
||||||
"typescript/consistent-type-imports": "error"
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
11
.vscode/launch.json
vendored
11
.vscode/launch.json
vendored
|
|
@ -6,17 +6,10 @@
|
||||||
"request": "launch",
|
"request": "launch",
|
||||||
"hostname": "0.0.0.0",
|
"hostname": "0.0.0.0",
|
||||||
"port": 9003,
|
"port": 9003,
|
||||||
"pathMappings": {
|
"pathMappings": { "/var/www/html": "${workspaceFolder}" },
|
||||||
"/var/www/html": "${workspaceFolder}"
|
|
||||||
},
|
|
||||||
"preLaunchTask": "DDEV: Enable Xdebug",
|
"preLaunchTask": "DDEV: Enable Xdebug",
|
||||||
"postDebugTask": "DDEV: Disable Xdebug",
|
"postDebugTask": "DDEV: Disable Xdebug",
|
||||||
"skipFiles": [
|
"skipFiles": ["**/vendor/**/*.php", "**/wp-admin/**/*.php", "**/wp-includes/**/*.php", "**/wp-blog-header.php"]
|
||||||
"**/vendor/**/*.php",
|
|
||||||
"**/wp-admin/**/*.php",
|
|
||||||
"**/wp-includes/**/*.php",
|
|
||||||
"**/wp-blog-header.php"
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
|
||||||
4
.vscode/settings.json
vendored
4
.vscode/settings.json
vendored
|
|
@ -12,15 +12,19 @@
|
||||||
"ENTETE",
|
"ENTETE",
|
||||||
"etats",
|
"etats",
|
||||||
"ETATS",
|
"ETATS",
|
||||||
|
"etendu",
|
||||||
"exts",
|
"exts",
|
||||||
"generique",
|
"generique",
|
||||||
|
"geometricprecision",
|
||||||
"gere",
|
"gere",
|
||||||
"glitchtip",
|
"glitchtip",
|
||||||
"GLITCHTIP",
|
"GLITCHTIP",
|
||||||
|
"haikuatelier",
|
||||||
"leve",
|
"leve",
|
||||||
"paypal",
|
"paypal",
|
||||||
"phpstan",
|
"phpstan",
|
||||||
"Proprietes",
|
"Proprietes",
|
||||||
|
"rapprochee",
|
||||||
"reponse",
|
"reponse",
|
||||||
"requete",
|
"requete",
|
||||||
"resultat",
|
"resultat",
|
||||||
|
|
|
||||||
10
.vscode/tasks.json
vendored
10
.vscode/tasks.json
vendored
|
|
@ -5,19 +5,13 @@
|
||||||
"label": "DDEV: Enable Xdebug",
|
"label": "DDEV: Enable Xdebug",
|
||||||
"type": "shell",
|
"type": "shell",
|
||||||
"command": "ddev xdebug on",
|
"command": "ddev xdebug on",
|
||||||
"presentation": {
|
"presentation": { "reveal": "silent", "close": true }
|
||||||
"reveal": "silent",
|
|
||||||
"close": true
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"label": "DDEV: Disable Xdebug",
|
"label": "DDEV: Disable Xdebug",
|
||||||
"type": "shell",
|
"type": "shell",
|
||||||
"command": "ddev xdebug off",
|
"command": "ddev xdebug off",
|
||||||
"presentation": {
|
"presentation": { "reveal": "silent", "close": true }
|
||||||
"reveal": "silent",
|
|
||||||
"close": true
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
|
||||||
12
PANIER.md
Normal file
12
PANIER.md
Normal file
|
|
@ -0,0 +1,12 @@
|
||||||
|
- Cheminement de la création d'une commande
|
||||||
|
- **OK** Choix de la séparation entre livraison et facturation
|
||||||
|
- **OK** Renseignement du formulaire de livraison
|
||||||
|
- **OK** (Renseignement du formulaire de facturation)
|
||||||
|
- Clic sur le bouton "Submit"
|
||||||
|
- Le backend envoie la méthode de livraison et son coût en fonction du pays choisi et des produits dans le Panier
|
||||||
|
- Affichage du choix de la méthode de paiement (caché jusque là)
|
||||||
|
- Change le texte du bouton d'action du formulaire
|
||||||
|
- Rend obligatoire les champs du formulaire de paiement
|
||||||
|
- Choix de la méthode de paiement
|
||||||
|
- (Stripe) Chargement du formulaire
|
||||||
|
- (PayPal) Chargement du formulaire
|
||||||
32
biome.json
32
biome.json
|
|
@ -1,44 +1,24 @@
|
||||||
{
|
{
|
||||||
"$schema": "https://biomejs.dev/schemas/1.9.0/schema.json",
|
"$schema": "https://biomejs.dev/schemas/1.9.0/schema.json",
|
||||||
"css": {
|
"css": { "formatter": { "enabled": false }, "linter": { "enabled": true } },
|
||||||
"formatter": { "enabled": false },
|
|
||||||
"linter": { "enabled": true }
|
|
||||||
},
|
|
||||||
"files": {
|
"files": {
|
||||||
"ignore": [
|
"ignore": ["*.min.js", "vendor", "web/app/plugins", "web/app/themes/haiku-atelier-2024/assets", "web/wp"],
|
||||||
"*.min.js",
|
|
||||||
"vendor",
|
|
||||||
"web/app/plugins",
|
|
||||||
"web/app/themes/haiku-atelier-2024/assets",
|
|
||||||
"web/wp"
|
|
||||||
],
|
|
||||||
"ignoreUnknown": true,
|
"ignoreUnknown": true,
|
||||||
"maxSize": 100000000
|
"maxSize": 100000000
|
||||||
},
|
},
|
||||||
"formatter": { "enabled": false },
|
"formatter": { "enabled": false },
|
||||||
"graphql": {
|
"graphql": { "formatter": { "enabled": false }, "linter": { "enabled": true } },
|
||||||
"formatter": { "enabled": false },
|
"json": { "formatter": { "enabled": false }, "linter": { "enabled": true } },
|
||||||
"linter": { "enabled": true }
|
|
||||||
},
|
|
||||||
"json": {
|
|
||||||
"formatter": { "enabled": false },
|
|
||||||
"linter": { "enabled": true }
|
|
||||||
},
|
|
||||||
"linter": {
|
"linter": {
|
||||||
"enabled": true,
|
"enabled": true,
|
||||||
"rules": {
|
"rules": {
|
||||||
"complexity": {
|
"complexity": { "noForEach": "off" },
|
||||||
"noForEach": "off"
|
|
||||||
},
|
|
||||||
"nursery": {
|
"nursery": {
|
||||||
"recommended": true,
|
"recommended": true,
|
||||||
"useSortedClasses": {
|
"useSortedClasses": {
|
||||||
"fix": "unsafe",
|
"fix": "unsafe",
|
||||||
"level": "error",
|
"level": "error",
|
||||||
"options": {
|
"options": { "attributes": ["class"], "functions": [""] }
|
||||||
"attributes": ["class"],
|
|
||||||
"functions": [""]
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"recommended": true
|
"recommended": true
|
||||||
|
|
|
||||||
|
|
@ -5,38 +5,16 @@
|
||||||
"description": "WordPress boilerplate with Composer, easier configuration, and an improved folder structure",
|
"description": "WordPress boilerplate with Composer, easier configuration, and an improved folder structure",
|
||||||
"homepage": "https://roots.io/bedrock/",
|
"homepage": "https://roots.io/bedrock/",
|
||||||
"authors": [
|
"authors": [
|
||||||
{
|
{ "name": "Scott Walkinshaw", "email": "scott.walkinshaw@gmail.com", "homepage": "https://github.com/swalkinshaw" },
|
||||||
"name": "Scott Walkinshaw",
|
{ "name": "Ben Word", "email": "ben@benword.com", "homepage": "https://github.com/retlehs" }
|
||||||
"email": "scott.walkinshaw@gmail.com",
|
|
||||||
"homepage": "https://github.com/swalkinshaw"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Ben Word",
|
|
||||||
"email": "ben@benword.com",
|
|
||||||
"homepage": "https://github.com/retlehs"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"keywords": [
|
|
||||||
"bedrock",
|
|
||||||
"composer",
|
|
||||||
"roots",
|
|
||||||
"wordpress",
|
|
||||||
"wp",
|
|
||||||
"wp-config"
|
|
||||||
],
|
],
|
||||||
|
"keywords": ["bedrock", "composer", "roots", "wordpress", "wp", "wp-config"],
|
||||||
"support": {
|
"support": {
|
||||||
"issues": "https://github.com/roots/bedrock/issues",
|
"issues": "https://github.com/roots/bedrock/issues",
|
||||||
"forum": "https://discourse.roots.io/category/bedrock"
|
"forum": "https://discourse.roots.io/category/bedrock"
|
||||||
},
|
},
|
||||||
"repositories": [
|
"repositories": [
|
||||||
{
|
{ "type": "composer", "url": "https://wpackagist.org", "only": ["wpackagist-plugin/*", "wpackagist-theme/*"] }
|
||||||
"type": "composer",
|
|
||||||
"url": "https://wpackagist.org",
|
|
||||||
"only": [
|
|
||||||
"wpackagist-plugin/*",
|
|
||||||
"wpackagist-theme/*"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
],
|
],
|
||||||
"require": {
|
"require": {
|
||||||
"php": ">=8.2",
|
"php": ">=8.2",
|
||||||
|
|
@ -89,9 +67,5 @@
|
||||||
},
|
},
|
||||||
"wordpress-install-dir": "web/wp"
|
"wordpress-install-dir": "web/wp"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": { "test": ["phpcs"] }
|
||||||
"test": [
|
|
||||||
"phpcs"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
12
composer.lock
generated
12
composer.lock
generated
|
|
@ -3513,12 +3513,12 @@
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/Roave/SecurityAdvisories.git",
|
"url": "https://github.com/Roave/SecurityAdvisories.git",
|
||||||
"reference": "4cb62de3d4cced8056a472da5fe788225dee4f1d"
|
"reference": "6fc16d8c05a872bf86eb0a1684d89b9bcb93d636"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/Roave/SecurityAdvisories/zipball/4cb62de3d4cced8056a472da5fe788225dee4f1d",
|
"url": "https://api.github.com/repos/Roave/SecurityAdvisories/zipball/6fc16d8c05a872bf86eb0a1684d89b9bcb93d636",
|
||||||
"reference": "4cb62de3d4cced8056a472da5fe788225dee4f1d",
|
"reference": "6fc16d8c05a872bf86eb0a1684d89b9bcb93d636",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"conflict": {
|
"conflict": {
|
||||||
|
|
@ -3851,7 +3851,7 @@
|
||||||
"lightsaml/lightsaml": "<1.3.5",
|
"lightsaml/lightsaml": "<1.3.5",
|
||||||
"limesurvey/limesurvey": "<6.5.12",
|
"limesurvey/limesurvey": "<6.5.12",
|
||||||
"livehelperchat/livehelperchat": "<=3.91",
|
"livehelperchat/livehelperchat": "<=3.91",
|
||||||
"livewire/livewire": "<3.5.2",
|
"livewire/livewire": "<2.12.7|>=3.0.0.0-beta1,<3.5.2",
|
||||||
"lms/routes": "<2.1.1",
|
"lms/routes": "<2.1.1",
|
||||||
"localizationteam/l10nmgr": "<7.4|>=8,<8.7|>=9,<9.2",
|
"localizationteam/l10nmgr": "<7.4|>=8,<8.7|>=9,<9.2",
|
||||||
"luyadev/yii-helpers": "<1.2.1",
|
"luyadev/yii-helpers": "<1.2.1",
|
||||||
|
|
@ -4184,7 +4184,7 @@
|
||||||
"twbs/bootstrap": "<=3.4.1|>=4,<=4.6.2",
|
"twbs/bootstrap": "<=3.4.1|>=4,<=4.6.2",
|
||||||
"twig/twig": "<1.44.8|>=2,<2.16.1|>=3,<3.11.1|>=3.12,<3.14",
|
"twig/twig": "<1.44.8|>=2,<2.16.1|>=3,<3.11.1|>=3.12,<3.14",
|
||||||
"typo3/cms": "<9.5.29|>=10,<10.4.35|>=11,<11.5.23|>=12,<12.2",
|
"typo3/cms": "<9.5.29|>=10,<10.4.35|>=11,<11.5.23|>=12,<12.2",
|
||||||
"typo3/cms-backend": "<11.5.40|>=12,<12.4.21|>=13,<13.3.1",
|
"typo3/cms-backend": "<4.1.14|>=4.2,<4.2.15|>=4.3,<4.3.7|>=4.4,<4.4.4|>=7,<=7.6.50|>=8,<=8.7.39|>=9,<=9.5.24|>=10,<10.4.46|>=11,<11.5.40|>=12,<12.4.21|>=13,<13.3.1",
|
||||||
"typo3/cms-core": "<=8.7.56|>=9,<=9.5.47|>=10,<=10.4.44|>=11,<=11.5.36|>=12,<=12.4.14|>=13,<=13.1",
|
"typo3/cms-core": "<=8.7.56|>=9,<=9.5.47|>=10,<=10.4.44|>=11,<=11.5.36|>=12,<=12.4.14|>=13,<=13.1",
|
||||||
"typo3/cms-extbase": "<6.2.24|>=7,<7.6.8|==8.1.1",
|
"typo3/cms-extbase": "<6.2.24|>=7,<7.6.8|==8.1.1",
|
||||||
"typo3/cms-fluid": "<4.3.4|>=4.4,<4.4.1",
|
"typo3/cms-fluid": "<4.3.4|>=4.4,<4.4.1",
|
||||||
|
|
@ -4337,7 +4337,7 @@
|
||||||
"type": "tidelift"
|
"type": "tidelift"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"time": "2024-10-08T23:05:25+00:00"
|
"time": "2024-10-10T00:18:21+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "sebastian/diff",
|
"name": "sebastian/diff",
|
||||||
|
|
|
||||||
100
dprint.json
100
dprint.json
|
|
@ -2,19 +2,16 @@
|
||||||
"excludes": [
|
"excludes": [
|
||||||
"**/node_modules",
|
"**/node_modules",
|
||||||
"**/pnpm-lock.yaml",
|
"**/pnpm-lock.yaml",
|
||||||
|
"./lib/",
|
||||||
"web/app/languages",
|
"web/app/languages",
|
||||||
"web/app/plugins",
|
"web/app/plugins",
|
||||||
"web/app/themes/haiku-atelier-2024/assets",
|
"web/app/themes/haiku-atelier-2024/assets",
|
||||||
"web/vendor"
|
"web/vendor"
|
||||||
],
|
],
|
||||||
"extends": "/home/gcch/.dprint.jsonc",
|
|
||||||
"exec": {
|
"exec": {
|
||||||
"cacheKey": "1",
|
"cacheKey": "1",
|
||||||
"commands": [
|
"commands": [
|
||||||
{
|
{ "command": "prettier --ignore-unknown --write --stdin-filepath {{file_path}}", "exts": ["php", "xml"] }
|
||||||
"command": "prettier --ignore-unknown --write --stdin-filepath {{file_path}}",
|
|
||||||
"exts": ["php", "xml"]
|
|
||||||
}
|
|
||||||
],
|
],
|
||||||
"cwd": "${originConfigDir}",
|
"cwd": "${originConfigDir}",
|
||||||
"indentWidth": 2,
|
"indentWidth": 2,
|
||||||
|
|
@ -22,6 +19,63 @@
|
||||||
"timeout": 30,
|
"timeout": 30,
|
||||||
"useTabs": false
|
"useTabs": false
|
||||||
},
|
},
|
||||||
|
"indentWidth": 2,
|
||||||
|
"json": {
|
||||||
|
"commentLine.forceSpaceAfterSlashes": true,
|
||||||
|
"indentWidth": 2,
|
||||||
|
"jsonTrailingCommaFiles": [".swcrc", "biome.jsonc", "settings.json", "tsconfig.json"],
|
||||||
|
"lineWidth": 120,
|
||||||
|
"newLineKind": "lf",
|
||||||
|
"preferSingleLine": true,
|
||||||
|
"trailingCommas": "never",
|
||||||
|
"useTabs": false
|
||||||
|
},
|
||||||
|
"lineWidth": 120,
|
||||||
|
"malva": {
|
||||||
|
"alignComments": true,
|
||||||
|
"attrValueQuotes": "always",
|
||||||
|
"blockSelectorLinebreak": "consistent",
|
||||||
|
"declarationOrder": null,
|
||||||
|
"formatComments": true,
|
||||||
|
"hexCase": "lower",
|
||||||
|
"hexColorLength": "long",
|
||||||
|
"indentWidth": 2,
|
||||||
|
"keyframeSelectorNotation": "keyword",
|
||||||
|
"lineBreak": "lf",
|
||||||
|
"linebreakInPseudoParens": true,
|
||||||
|
"omitNumberLeadingZero": false,
|
||||||
|
"operatorLinebreak": "before",
|
||||||
|
"preferSingleLine": true,
|
||||||
|
"printWidth": 100,
|
||||||
|
"quotes": "alwaysDouble",
|
||||||
|
"singleLineBlockThreshold": null,
|
||||||
|
"singleLineTopLevelDeclarations": false,
|
||||||
|
"trailingComma": false,
|
||||||
|
"useTabs": false
|
||||||
|
},
|
||||||
|
"markup": {
|
||||||
|
"closingBracketSameLine": false,
|
||||||
|
"closingTagLineBreakForEmpty": "never",
|
||||||
|
"component.selfClosing": true,
|
||||||
|
"doctypeKeywordCase": "lower",
|
||||||
|
"formatComments": true,
|
||||||
|
"html.normal.selfClosing": true,
|
||||||
|
"html.scriptIndent": false,
|
||||||
|
"html.styleIndent": false,
|
||||||
|
"html.void.selfClosing": true,
|
||||||
|
"indentWidth": 2,
|
||||||
|
"lineBreak": "lf",
|
||||||
|
"maxAttrsPerLine": 3,
|
||||||
|
"preferAttrsSingleLine": false,
|
||||||
|
"printWidth": 120,
|
||||||
|
"quotes": "double",
|
||||||
|
"scriptIndent": true,
|
||||||
|
"styleIndent": true,
|
||||||
|
"svg.selfClosing": true,
|
||||||
|
"useTabs": false,
|
||||||
|
"whitespaceSensitivity": "ignore"
|
||||||
|
},
|
||||||
|
"newLineKind": "lf",
|
||||||
"plugins": [
|
"plugins": [
|
||||||
"https://plugins.dprint.dev/typescript-0.93.0.wasm",
|
"https://plugins.dprint.dev/typescript-0.93.0.wasm",
|
||||||
"https://plugins.dprint.dev/json-0.19.3.wasm",
|
"https://plugins.dprint.dev/json-0.19.3.wasm",
|
||||||
|
|
@ -31,5 +85,39 @@
|
||||||
"https://plugins.dprint.dev/g-plane/markup_fmt-v0.13.1.wasm",
|
"https://plugins.dprint.dev/g-plane/markup_fmt-v0.13.1.wasm",
|
||||||
"https://plugins.dprint.dev/g-plane/pretty_yaml-v0.5.0.wasm",
|
"https://plugins.dprint.dev/g-plane/pretty_yaml-v0.5.0.wasm",
|
||||||
"https://plugins.dprint.dev/exec-0.5.0.json@8d9972eee71fa1590e04873540421f3eda7674d0f1aae3d7c788615e7b7413d0"
|
"https://plugins.dprint.dev/exec-0.5.0.json@8d9972eee71fa1590e04873540421f3eda7674d0f1aae3d7c788615e7b7413d0"
|
||||||
]
|
],
|
||||||
|
"toml": {
|
||||||
|
"cargo.applyConventions": true,
|
||||||
|
"comment.forceLeadingSpace": true,
|
||||||
|
"indentWidth": 2,
|
||||||
|
"lineWidth": 120,
|
||||||
|
"newLineKind": "lf",
|
||||||
|
"useTabs": false
|
||||||
|
},
|
||||||
|
"typescript": {
|
||||||
|
"arrowFunction.useParentheses": "preferNone",
|
||||||
|
"conditionalExpression.operatorPosition": "nextLine",
|
||||||
|
"conditionalExpression.preferSingleLine": true,
|
||||||
|
"exportDeclaration.sortNamedExports": "maintain",
|
||||||
|
"importDeclaration.sortNamedImports": "maintain",
|
||||||
|
"module.sortExportDeclarations": "maintain",
|
||||||
|
"module.sortImportDeclarations": "maintain",
|
||||||
|
"quoteProps": "asNeeded",
|
||||||
|
"trailingCommas": "onlyMultiLine",
|
||||||
|
"useBraces": "whenNotSingleLine"
|
||||||
|
},
|
||||||
|
"yaml": {
|
||||||
|
"braceSpacing": true,
|
||||||
|
"bracketSpacing": false,
|
||||||
|
"formatComments": true,
|
||||||
|
"indentBlockSequenceInMap": true,
|
||||||
|
"indentWidth": 2,
|
||||||
|
"lineBreak": "lf",
|
||||||
|
"preferSingleLine": false,
|
||||||
|
"printWidth": 120,
|
||||||
|
"quotes": "preferDouble",
|
||||||
|
"trailingComma": true,
|
||||||
|
"trimTrailingWhitespaces": true,
|
||||||
|
"trimTrailingZero": true
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -34,13 +34,13 @@ export default tseslint.config(
|
||||||
"@typescript-eslint/consistent-type-definitions": "off",
|
"@typescript-eslint/consistent-type-definitions": "off",
|
||||||
/* Désactive cette règle pour les fonctions fléchées pour rendre le code moins verbeux. */
|
/* Désactive cette règle pour les fonctions fléchées pour rendre le code moins verbeux. */
|
||||||
"@typescript-eslint/no-confusing-void-expression": ["error", {
|
"@typescript-eslint/no-confusing-void-expression": ["error", {
|
||||||
"ignoreArrowShorthand": true,
|
ignoreArrowShorthand: true,
|
||||||
"ignoreVoidOperator": false,
|
ignoreVoidOperator: false,
|
||||||
}],
|
}],
|
||||||
/* Cette règle empêche l'usage de génériques précisant les types de retour de fonctions. */
|
/* Cette règle empêche l'usage de génériques précisant les types de retour de fonctions. */
|
||||||
"@typescript-eslint/no-unnecessary-type-parameters": "off",
|
"@typescript-eslint/no-unnecessary-type-parameters": "off",
|
||||||
"@typescript-eslint/no-unused-expressions": ["error", {
|
"@typescript-eslint/no-unused-expressions": ["error", {
|
||||||
"allowTernary": true,
|
allowTernary: true,
|
||||||
}],
|
}],
|
||||||
/* Cette règle est doublon avec les règles noUnused* de TypeScript. */
|
/* Cette règle est doublon avec les règles noUnused* de TypeScript. */
|
||||||
"@typescript-eslint/no-unused-vars": "off",
|
"@typescript-eslint/no-unused-vars": "off",
|
||||||
|
|
|
||||||
12
package.json
12
package.json
|
|
@ -5,14 +5,12 @@
|
||||||
"description": "",
|
"description": "",
|
||||||
"author": "",
|
"author": "",
|
||||||
"license": "ISC",
|
"license": "ISC",
|
||||||
"packageManager": "pnpm@9.12.0+sha512.4abf725084d7bcbafbd728bfc7bee61f2f791f977fd87542b3579dcb23504d170d46337945e4c66485cd12d588a0c0e570ed9c477e7ccdd8507cf05f3f92eaca",
|
"packageManager": "pnpm@9.12.1",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"keywords": [],
|
"keywords": [],
|
||||||
"scripts": {
|
"scripts": { "test": "echo \"Error: no test specified\" && exit 1" },
|
||||||
"test": "echo \"Error: no test specified\" && exit 1"
|
|
||||||
},
|
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@sentry/browser": "^8.33.1",
|
"@sentry/browser": "8.34.0-internal.0",
|
||||||
"purify-ts": "^2.1.0",
|
"purify-ts": "^2.1.0",
|
||||||
"remeda": "^2.15.0",
|
"remeda": "^2.15.0",
|
||||||
"ts-pattern": "^5.4.0",
|
"ts-pattern": "^5.4.0",
|
||||||
|
|
@ -24,7 +22,7 @@
|
||||||
"@eslint/js": "^9.12.0",
|
"@eslint/js": "^9.12.0",
|
||||||
"@prettier/plugin-php": "^0.22.2",
|
"@prettier/plugin-php": "^0.22.2",
|
||||||
"@prettier/plugin-xml": "^3.4.1",
|
"@prettier/plugin-xml": "^3.4.1",
|
||||||
"@sentry/types": "^8.33.1",
|
"@sentry/types": "8.34.0-internal.0",
|
||||||
"@swc/cli": "0.4.1-nightly.20240914",
|
"@swc/cli": "0.4.1-nightly.20240914",
|
||||||
"@types/eslint__js": "^8.42.3",
|
"@types/eslint__js": "^8.42.3",
|
||||||
"better-typescript-lib": "^2.9.0",
|
"better-typescript-lib": "^2.9.0",
|
||||||
|
|
@ -47,7 +45,7 @@
|
||||||
"stylelint-config-standard-scss": "^13.1.0",
|
"stylelint-config-standard-scss": "^13.1.0",
|
||||||
"stylelint-declaration-block-no-ignored-properties": "^2.8.0",
|
"stylelint-declaration-block-no-ignored-properties": "^2.8.0",
|
||||||
"stylelint-plugin-logical-css": "^1.2.1",
|
"stylelint-plugin-logical-css": "^1.2.1",
|
||||||
"typescript": "^5.6.3",
|
"typescript": "5.7.0-dev.20241010",
|
||||||
"typescript-eslint": "^8.8.1",
|
"typescript-eslint": "^8.8.1",
|
||||||
"vite": "^5.4.8",
|
"vite": "^5.4.8",
|
||||||
"vite-plugin-manifest-sri": "^0.2.0",
|
"vite-plugin-manifest-sri": "^0.2.0",
|
||||||
|
|
|
||||||
4142
pnpm-lock.yaml
generated
4142
pnpm-lock.yaml
generated
File diff suppressed because it is too large
Load diff
|
|
@ -13,7 +13,7 @@
|
||||||
"exactOptionalPropertyTypes": true,
|
"exactOptionalPropertyTypes": true,
|
||||||
"forceConsistentCasingInFileNames": true,
|
"forceConsistentCasingInFileNames": true,
|
||||||
"isolatedModules": true,
|
"isolatedModules": true,
|
||||||
"lib": ["DOM", "ES2020", "ES2022"],
|
"lib": ["DOM", "DOM.Iterable", "ES2020", "ES2022"],
|
||||||
"module": "ES2020",
|
"module": "ES2020",
|
||||||
"moduleDetection": "force",
|
"moduleDetection": "force",
|
||||||
"moduleResolution": "Bundler",
|
"moduleResolution": "Bundler",
|
||||||
|
|
@ -42,14 +42,6 @@
|
||||||
"useDefineForClassFields": true,
|
"useDefineForClassFields": true,
|
||||||
"useUnknownInCatchVariables": true
|
"useUnknownInCatchVariables": true
|
||||||
},
|
},
|
||||||
"exclude": [
|
"exclude": ["vendor", "web/app/plugins", "web/wp"],
|
||||||
"vendor",
|
"include": ["*.js", "lib", "web/app/themes/haiku-atelier-2024/src"]
|
||||||
"web/app/plugins",
|
|
||||||
"web/wp"
|
|
||||||
],
|
|
||||||
"include": [
|
|
||||||
"*.js",
|
|
||||||
"lib",
|
|
||||||
"web/app/themes/haiku-atelier-2024/src"
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1 @@
|
||||||
|
{"translation-revision-date":"2022-11-04 11:06:20+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n > 1;","lang":"fr"},"Dimanche":["Dimanche"],"Samedi":["Samedi"],"Vendredi":["Vendredi"],"Jeudi":["Jeudi"],"Mercredi":["Mercredi"],"Mardi":["Mardi"],"Lundi":["Lundi"]}},"comment":{"reference":"inc\/front\/assets\/js\/pickups\/google_maps\/google_maps_pickup_widget.js"}}
|
||||||
|
|
@ -0,0 +1 @@
|
||||||
|
{"translation-revision-date":"2022-11-04 11:06:20+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n > 1;","lang":"fr"},"Dimanche":["Dimanche"],"Samedi":["Samedi"],"Vendredi":["Vendredi"],"Jeudi":["Jeudi"],"Mercredi":["Mercredi"],"Mardi":["Mardi"],"Lundi":["Lundi"]}},"comment":{"reference":"inc\/front\/assets\/js\/pickups\/openstreetmap\/openstreetmap_pickup_widget.js"}}
|
||||||
File diff suppressed because one or more lines are too long
BIN
web/app/languages/plugins/wc-multishipping-fr_FR.mo
Normal file
BIN
web/app/languages/plugins/wc-multishipping-fr_FR.mo
Normal file
Binary file not shown.
1432
web/app/languages/plugins/wc-multishipping-fr_FR.po
Normal file
1432
web/app/languages/plugins/wc-multishipping-fr_FR.po
Normal file
File diff suppressed because it is too large
Load diff
|
|
@ -1 +1 @@
|
||||||
{"translation-revision-date":"2024-09-23 18:51:19+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-10-02 16:14:23+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-09-23 18:51:19+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-10-02 16:14:23+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-09-23 18:51:19+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-10-02 16:14:23+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-09-23 18:51:19+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-10-02 16:14:23+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-09-23 18:51:19+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Print discounted shipping labels with a click, now with the dedicated plugin!":["Print discounted shipping labels with a click, now with the dedicated plugin!"],"install":["install"],"Create shipping label":["Create shipping label"],"Print discounted shipping labels with a click.":["Print discounted shipping labels with a click."],"Shipping ":["Shipping "],"Shipment Tracking":["Shipment Tracking"],"Toggle panel:":["Toggle panel:"],"By clicking \"%s\", {{wcsLink}}WooCommerce Shipping{{\/wcsLink}} will be installed and you agree to its {{tosLink}}Terms of Service{{\/tosLink}}.":["By clicking \"%s\", {{wcsLink}}WooCommerce Shipping{{\/wcsLink}} will be installed and 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-10-02 16:14:23+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Print discounted shipping labels with a click, now with the dedicated plugin!":["Print discounted shipping labels with a click, now with the dedicated plugin!"],"install":["install"],"Create shipping label":["Create shipping label"],"Print discounted shipping labels with a click.":["Print discounted shipping labels with a click."],"Shipping ":["Shipping "],"Shipment Tracking":["Shipment Tracking"],"Toggle panel:":["Toggle panel:"],"By clicking \"%s\", {{wcsLink}}WooCommerce Shipping{{\/wcsLink}} will be installed and you agree to its {{tosLink}}Terms of Service{{\/tosLink}}.":["By clicking \"%s\", {{wcsLink}}WooCommerce Shipping{{\/wcsLink}} will be installed and 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-09-23 18:51:19+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"],"Header":["Header"],"Settings":["Settings"]}},"comment":{"reference":"assets\/client\/admin\/chunks\/6802.js"}}
|
{"translation-revision-date":"2024-10-02 16:14:23+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"],"Header":["Header"],"Settings":["Settings"]}},"comment":{"reference":"assets\/client\/admin\/chunks\/6802.js"}}
|
||||||
|
|
@ -1 +1 @@
|
||||||
{"translation-revision-date":"2024-09-23 18:51:19+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-10-02 16:14:23+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-09-23 18:51:19+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-10-02 16:14:23+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-09-23 18:51:19+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-10-02 16:14:23+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-09-23 18:51:19+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-10-02 16:14:23+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-09-23 18:51:19+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-10-02 16:14:23+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-09-23 18:51:19+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-10-02 16:14:23+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-09-23 18:51:19+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-10-02 16:14:23+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-09-23 18:51:19+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-10-02 16:14:23+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-09-23 18:51:19+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-10-02 16:14:23+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-09-23 18:51:19+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-10-02 16:14:23+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-09-23 18:51:19+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-10-02 16:14:23+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-09-23 18:51:19+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\u2019s 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-10-02 16:14:23+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\u2019s 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-09-23 18:51:19+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-10-02 16:14:23+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-09-23 18:51:19+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-10-02 16:14:23+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-09-23 18:51:19+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-10-02 16:14:23+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-09-23 18:51:19+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\u2019ll 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-10-02 16:14:23+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\u2019ll 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-09-23 18:51:19+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-10-02 16:14:23+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-09-23 18:51:19+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-10-02 16:14:23+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-09-23 18:51:19+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-10-02 16:14:23+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-09-23 18:51:19+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-10-02 16:14:23+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-09-23 18:51:19+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-10-02 16:14:23+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-09-23 18:51:19+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-10-02 16:14:23+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-09-23 18:51:19+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-10-02 16:14:23+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-09-23 18:51:19+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-10-02 16:14:23+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-09-23 18:51:19+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-10-02 16:14:23+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-09-23 18:51:19+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-10-02 16:14:23+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-09-23 18:51:19+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-10-02 16:14:23+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-09-23 18:51:19+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-10-02 16:14:23+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-09-23 18:51:19+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-10-02 16:14:23+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-09-23 18:51:19+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-10-02 16:14:23+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-09-23 18:51:19+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-10-02 16:14:23+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-09-23 18:51:19+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-10-02 16:14:23+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-09-23 18:51:19+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-10-02 16:14:23+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-09-23 18:51:19+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-10-02 16:14:23+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-09-23 18:51:19+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-10-02 16:14:23+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-09-23 18:51:19+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-10-02 16:14:23+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-09-23 18:51:19+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-10-02 16:14:23+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-09-23 18:51:19+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-10-02 16:14:23+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-09-23 18:51:19+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Edit billing address":["Edit billing address"],"Edit shipping address":["Edit shipping address"],"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-10-02 16:14:23+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Edit billing address":["Edit billing address"],"Edit shipping address":["Edit shipping address"],"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-09-23 18:51:19+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-10-02 16:14:23+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-09-23 18:51:19+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"],"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."],"The following error was returned":["The following error was returned"],"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-10-02 16:14:23+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"],"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."],"The following error was returned":["The following error was returned"],"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-09-23 18:51:19+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-10-02 16:14:23+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"}}
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -1 +1 @@
|
||||||
{"translation-revision-date":"2024-09-23 18:51:19+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-10-02 16:14:23+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-09-23 18:51:19+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-10-02 16:14:23+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-09-23 18:51:19+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-10-02 16:14:23+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-09-23 18:51:19+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-10-02 16:14:23+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-09-23 18:51:19+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-10-02 16:14:23+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-09-23 18:51:19+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-10-02 16:14:23+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-09-23 18:51:19+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-10-02 16:14:23+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-09-23 18:51:19+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-10-02 16:14:23+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-09-23 18:51:19+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-10-02 16:14:23+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-09-23 18:51:19+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-10-02 16:14:23+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-09-23 18:51:19+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-10-02 16:14:23+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-09-23 18:51:19+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-10-02 16:14:23+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-09-23 18:51:19+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-10-02 16:14:23+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-09-23 18:51:19+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-10-02 16:14:23+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-09-23 18:51:19+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-10-02 16:14:23+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-09-23 18:51:19+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-10-02 16:14:23+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-09-23 18:51:19+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-10-02 16:14:23+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-09-23 18:51:19+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-10-02 16:14:23+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-09-23 18:51:19+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-10-02 16:14:23+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-09-23 18:51:19+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"],"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."],"The following error was returned":["The following error was returned"],"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-10-02 16:14:23+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"],"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."],"The following error was returned":["The following error was returned"],"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-09-23 18:51:19+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-10-02 16:14:23+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-09-23 18:51:19+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-10-02 16:14:23+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-09-23 18:51:19+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-10-02 16:14:23+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-09-23 18:51:19+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-10-02 16:14:23+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-09-23 18:51:19+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-10-02 16:14:23+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"}}
|
||||||
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