diff --git a/.ddev/addon-metadata/ddev-vite-sidecar/manifest.yaml b/.ddev/addon-metadata/ddev-vite-sidecar/manifest.yaml deleted file mode 100755 index 45b337aa..00000000 --- a/.ddev/addon-metadata/ddev-vite-sidecar/manifest.yaml +++ /dev/null @@ -1,13 +0,0 @@ -name: ddev-vite-sidecar -repository: s2b/ddev-vite-sidecar -version: 1.1.0 -install_date: "2024-10-02T19:02:43+02:00" -project_files: - - commands/web/vite - - apache/vite.conf - - nginx_full/vite.conf - - vite/vite-server-not-running.html - - config.vite.yaml - - web-build/Dockerfile.vite -global_files: [] -removal_actions: [] diff --git a/.ddev/addon-metadata/phpmyadmin/manifest.yaml b/.ddev/addon-metadata/phpmyadmin/manifest.yaml deleted file mode 100755 index 1da95230..00000000 --- a/.ddev/addon-metadata/phpmyadmin/manifest.yaml +++ /dev/null @@ -1,10 +0,0 @@ -name: phpmyadmin -repository: ddev/ddev-phpmyadmin -version: v0.3.9 -install_date: "2024-11-15T17:27:23+01:00" -project_files: - - docker-compose.phpmyadmin.yaml - - docker-compose.phpmyadmin_norouter.yaml - - commands/host/phpmyadmin -global_files: [] -removal_actions: [] diff --git a/.ddev/addon-metadata/redis/manifest.yaml b/.ddev/addon-metadata/redis/manifest.yaml deleted file mode 100755 index 531812d0..00000000 --- a/.ddev/addon-metadata/redis/manifest.yaml +++ /dev/null @@ -1,19 +0,0 @@ -name: redis -repository: ddev/ddev-redis-7 -version: v2.7.1 -install_date: "2024-11-14T13:56:41+01:00" -project_files: - - commands/redis/redis - - commands/redis/redis-flush - - redis/redis.conf - - redis/advanced.conf - - redis/append.conf - - redis/general.conf - - redis/io.conf - - redis/memory.conf - - redis/network.conf - - redis/security.conf - - redis/snapshots.conf - - docker-compose.redis.yaml -global_files: [] -removal_actions: [] diff --git a/.ddev/apache/vite.conf b/.ddev/apache/vite.conf deleted file mode 100755 index 9dd707ca..00000000 --- a/.ddev/apache/vite.conf +++ /dev/null @@ -1,30 +0,0 @@ -#ddev-generated - - ServerName vite.haikuatelier.fr.ddev.site - DocumentRoot /mnt/ddev_config/vite/ - ErrorDocument 503 "/vite-server-not-running.html" - - # Proxy development server - ProxyPass / http://localhost:5173/ - ProxyPassReverse / http://localhost:5173/ - - # Proxy websockets - RewriteEngine On - RewriteCond %{HTTP:Upgrade} websocket [NC] - RewriteCond %{HTTP:Connection} upgrade [NC] - RewriteRule ^/?(.*) "ws://localhost:5173/$1" [P,L] - - # Do not proxy files in /vite to display the static 503 error message - - ProxyPass ! - - - - Require all granted - - - ErrorLog /dev/stdout - CustomLog ${APACHE_LOG_DIR}/access.log combined - - Alias "/phpstatus" "/var/www/phpstatus.php" - diff --git a/.ddev/commands/host/phpmyadmin b/.ddev/commands/host/phpmyadmin deleted file mode 100755 index c03ee85d..00000000 --- a/.ddev/commands/host/phpmyadmin +++ /dev/null @@ -1,19 +0,0 @@ -#!/bin/bash - -## #ddev-generated: If you want to edit and own this file, remove this line. -## Description: Launch a browser with PhpMyAdmin -## Usage: phpmyadmin -## Example: "ddev phpmyadmin" - -DDEV_PHPMYADMIN_PORT=8036 -DDEV_PHPMYADMIN_HTTPS_PORT=8037 -if [ ${DDEV_PRIMARY_URL%://*} = "http" ] || [ -n "${GITPOD_WORKSPACE_ID:-}" ] || [ "${CODESPACES:-}" = "true" ]; then - # Gitpod: "gp preview" opens a blank page for PhpMyAdmin, use "xdg-open" instead - if [ "${OSTYPE:-}" = "linux-gnu" ] && [ -n "${GITPOD_WORKSPACE_ID:-}" ] && [ -z "${DDEV_DEBUG:-}" ]; then - xdg-open "$(DDEV_DEBUG=true ddev launch :$DDEV_PHPMYADMIN_PORT | grep "FULLURL" | awk '{print $2}')" - else - ddev launch :$DDEV_PHPMYADMIN_PORT - fi -else - ddev launch :$DDEV_PHPMYADMIN_HTTPS_PORT -fi diff --git a/.ddev/commands/redis/redis b/.ddev/commands/redis/redis deleted file mode 100755 index bf015436..00000000 --- a/.ddev/commands/redis/redis +++ /dev/null @@ -1,7 +0,0 @@ -#!/bin/sh -#ddev-generated -## Description: Run redis-cli inside the redis container -## Usage: redis [flags] [args] -## Example: "redis KEYS *" or "ddev redis-cli INFO" or "ddev redis-cli --version" - -redis-cli -p 6379 -h redis -a redis --no-auth-warning "$@" diff --git a/.ddev/commands/redis/redis-cli b/.ddev/commands/redis/redis-cli deleted file mode 100755 index 791bfe47..00000000 --- a/.ddev/commands/redis/redis-cli +++ /dev/null @@ -1,7 +0,0 @@ -#!/bin/bash -#ddev-generated -## Description: Run redis-cli inside the redis container -## Usage: redis-cli [flags] [args] -## Example: "ddev redis-cli KEYS *" or "ddev redis-cli INFO" or "ddev redis-cli --version" - -redis-cli -p 6379 -h redis $@ diff --git a/.ddev/commands/redis/redis-flush b/.ddev/commands/redis/redis-flush deleted file mode 100755 index 2beda33a..00000000 --- a/.ddev/commands/redis/redis-flush +++ /dev/null @@ -1,7 +0,0 @@ -#!/bin/sh -#ddev-generated -## Description: Run redis-cli inside the redis container -## Usage: redis-flush -## Example: "redis-flush" - -redis-cli -a redis --no-auth-warning FLUSHALL ASYNC diff --git a/.ddev/commands/web/vite b/.ddev/commands/web/vite deleted file mode 100755 index 93b4fae8..00000000 --- a/.ddev/commands/web/vite +++ /dev/null @@ -1,49 +0,0 @@ -#!/bin/bash - -#ddev-generated - -## Description: Run vite inside the web container. Servers started by vite (dev, preview) are proxied and made available at https://vite.$PROJECTNAME.ddev.site -## Usage: vite dev|serve|build|optimize|preview [flags] [args] -## Example: "ddev vite" or "ddev vite build" or "ddev vite build --outDir path/to/output/" -## ExecRaw: true -## HostWorkingDir: true -## AutocompleteTerms: ["dev","serve","build","optimize","preview"] - -# Preferred package manager can be specified via VITE_PACKAGE_MANAGER environment variable in config.vite.yaml -PACKAGE_MANAGER="${VITE_PACKAGE_MANAGER:-npm}" - -COMMAND="${1:-dev}" -OPTIONS=$@ - -case $PACKAGE_MANAGER in - npm | npx) - PACKAGE_MANAGER_COMMAND="npx vite" - ;; - yarn) - PACKAGE_MANAGER_COMMAND="yarn exec vite --" - ;; - pnpm) - PACKAGE_MANAGER_COMMAND="pnpm exec vite" - ;; - bun) - PACKAGE_MANAGER_COMMAND="bun vite" - ;; - *) - echo "Invalid node package manager specified: $PACKAGE_MANAGER" - exit 1 - ;; -esac - -if [[ "${COMMAND:0:1}" == "-" ]]; then - COMMAND="dev" -else - OPTIONS="${@:2}" -fi - -echo "Using $PACKAGE_MANAGER to run vite..." - -if [[ $COMMAND == "dev" ]] || [[ $COMMAND == "serve" ]] || [[ $COMMAND == "preview" ]]; then - $PACKAGE_MANAGER_COMMAND $COMMAND --host --port 5173 --strictPort $OPTIONS -else - $PACKAGE_MANAGER_COMMAND $COMMAND $OPTIONS -fi diff --git a/.ddev/config.vite.yaml b/.ddev/config.vite.yaml deleted file mode 100755 index f8df0e3b..00000000 --- a/.ddev/config.vite.yaml +++ /dev/null @@ -1,16 +0,0 @@ -# ddev-generated -additional_hostnames: - - vite.haikuatelier.fr -web_environment: - - VITE_SERVER_URI=https://vite.haikuatelier.fr.ddev.site - - VITE_PACKAGE_MANAGER=pnpm - -# Enable these lines if you want to expose the vite port to the host system -# Note that this means that only one ddev project with vite can be run at a time -# as the different processes might interfere with each other -# -# web_extra_exposed_ports: -# - name: vite -# container_port: 5173 -# http_port: 5172 -# https_port: 5173 diff --git a/.ddev/config.yaml b/.ddev/config.yaml deleted file mode 100755 index e49b8041..00000000 --- a/.ddev/config.yaml +++ /dev/null @@ -1,286 +0,0 @@ -name: haikuatelier.fr -type: wordpress -docroot: web -php_version: "8.4" -webserver_type: nginx-fpm -xdebug_enabled: false -additional_hostnames: - - vite.haikuatelier.fr -additional_fqdns: [] -database: - type: mariadb - version: "11.4" -use_dns_when_possible: true -composer_version: "2" -web_environment: - - VITE_SERVER_URI=https://vite.haikuatelier.fr.ddev.site - - VITE_PACKAGE_MANAGER=pnpm -corepack_enable: true - -# Key features of DDEV's config.yaml: - -# name: # Name of the project, automatically provides -# http://projectname.ddev.site and https://projectname.ddev.site - -# type: # backdrop, cakephp, craftcms, drupal, drupal6, drupal7, drupal8, drupal9, drupal10, drupal11, laravel, magento, magento2, php, shopware6, silverstripe, symfony, typo3, wordpress -# See https://ddev.readthedocs.io/en/stable/users/quickstart/ for more -# information on the different project types - -# docroot: # Relative path to the directory containing index.php. - -# php_version: "8.3" # PHP version to use, "5.6" through "8.4" - -# You can explicitly specify the webimage but this -# is not recommended, as the images are often closely tied to DDEV's' behavior, -# so this can break upgrades. - -# webimage: # nginx/php docker image. - -# database: -# type: # mysql, mariadb, postgres -# version: # database version, like "10.11" or "8.0" -# MariaDB versions can be 5.5-10.8, 10.11, and 11.4. -# MySQL versions can be 5.5-8.0. -# PostgreSQL versions can be 9-17. - -# router_http_port: # Port to be used for http (defaults to global configuration, usually 80) -# router_https_port: # Port for https (defaults to global configuration, usually 443) - -# xdebug_enabled: false # Set to true to enable Xdebug and "ddev start" or "ddev restart" -# Note that for most people the commands -# "ddev xdebug" to enable Xdebug and "ddev xdebug off" to disable it work better, -# as leaving Xdebug enabled all the time is a big performance hit. - -# xhprof_enabled: false # Set to true to enable Xhprof and "ddev start" or "ddev restart" -# Note that for most people the commands -# "ddev xhprof" to enable Xhprof and "ddev xhprof off" to disable it work better, -# as leaving Xhprof enabled all the time is a big performance hit. - -# webserver_type: nginx-fpm or apache-fpm - -# timezone: Europe/Berlin -# If timezone is unset, DDEV will attempt to derive it from the host system timezone -# using the $TZ environment variable or the /etc/localtime symlink. -# This is the timezone used in the containers and by PHP; -# it can be set to any valid timezone, -# see https://en.wikipedia.org/wiki/List_of_tz_database_time_zones -# For example Europe/Dublin or MST7MDT - -# composer_root: -# Relative path to the Composer root directory from the project root. This is -# the directory which contains the composer.json and where all Composer related -# commands are executed. - -# composer_version: "2" -# You can set it to "" or "2" (default) for Composer v2 or "1" for Composer v1 -# to use the latest major version available at the time your container is built. -# It is also possible to use each other Composer version channel. This includes: -# - 2.2 (latest Composer LTS version) -# - stable -# - preview -# - snapshot -# Alternatively, an explicit Composer version may be specified, for example "2.2.18". -# To reinstall Composer after the image was built, run "ddev debug rebuild". - -# nodejs_version: "22" -# change from the default system Node.js version to any other version. -# See https://ddev.readthedocs.io/en/stable/users/configuration/config/#nodejs_version for more information -# and https://www.npmjs.com/package/n#specifying-nodejs-versions for the full documentation, -# Note that using of 'ddev nvm' is discouraged because "nodejs_version" is much easier to use, -# can specify any version, and is more robust than using 'nvm'. - -# corepack_enable: false -# Change to 'true' to 'corepack enable' and gain access to latest versions of yarn/pnpm - -# additional_hostnames: -# - somename -# - someothername -# would provide http and https URLs for "somename.ddev.site" -# and "someothername.ddev.site". - -# additional_fqdns: -# - example.com -# - sub1.example.com -# would provide http and https URLs for "example.com" and "sub1.example.com" -# Please take care with this because it can cause great confusion. - -# upload_dirs: "custom/upload/dir" -# -# upload_dirs: -# - custom/upload/dir -# - ../private -# -# would set the destination paths for ddev import-files to /custom/upload/dir -# When Mutagen is enabled this path is bind-mounted so that all the files -# in the upload_dirs don't have to be synced into Mutagen. - -# disable_upload_dirs_warning: false -# If true, turns off the normal warning that says -# "You have Mutagen enabled and your 'php' project type doesn't have upload_dirs set" - -# ddev_version_constraint: "" -# Example: -# ddev_version_constraint: ">= 1.22.4" -# This will enforce that the running ddev version is within this constraint. -# See https://github.com/Masterminds/semver#checking-version-constraints for -# supported constraint formats - -# working_dir: -# web: /var/www/html -# db: /home -# would set the default working directory for the web and db services. -# These values specify the destination directory for ddev ssh and the -# directory in which commands passed into ddev exec are run. - -# omit_containers: [db, ddev-ssh-agent] -# Currently only these containers are supported. Some containers can also be -# omitted globally in the ~/.ddev/global_config.yaml. Note that if you omit -# the "db" container, several standard features of DDEV that access the -# database container will be unusable. In the global configuration it is also -# possible to omit ddev-router, but not here. - -# performance_mode: "global" -# DDEV offers performance optimization strategies to improve the filesystem -# performance depending on your host system. Should be configured globally. -# -# If set, will override the global config. Possible values are: -# - "global": uses the value from the global config. -# - "none": disables performance optimization for this project. -# - "mutagen": enables Mutagen for this project. -# - "nfs": enables NFS for this project. -# -# See https://ddev.readthedocs.io/en/stable/users/install/performance/#nfs -# See https://ddev.readthedocs.io/en/stable/users/install/performance/#mutagen - -# fail_on_hook_fail: False -# Decide whether 'ddev start' should be interrupted by a failing hook - -# host_https_port: "59002" -# The host port binding for https can be explicitly specified. It is -# dynamic unless otherwise specified. -# This is not used by most people, most people use the *router* instead -# of the localhost port. - -# host_webserver_port: "59001" -# The host port binding for the ddev-webserver can be explicitly specified. It is -# dynamic unless otherwise specified. -# This is not used by most people, most people use the *router* instead -# of the localhost port. - -# host_db_port: "59002" -# The host port binding for the ddev-dbserver can be explicitly specified. It is dynamic -# unless explicitly specified. - -# mailpit_http_port: "8025" -# mailpit_https_port: "8026" -# The Mailpit ports can be changed from the default 8025 and 8026 - -# host_mailpit_port: "8025" -# The mailpit port is not normally bound on the host at all, instead being routed -# through ddev-router, but it can be bound directly to localhost if specified here. - -# webimage_extra_packages: [php7.4-tidy, php-bcmath] -# Extra Debian packages that are needed in the webimage can be added here - -# dbimage_extra_packages: [telnet,netcat] -# Extra Debian packages that are needed in the dbimage can be added here - -# use_dns_when_possible: true -# If the host has internet access and the domain configured can -# successfully be looked up, DNS will be used for hostname resolution -# instead of editing /etc/hosts -# Defaults to true - -# project_tld: ddev.site -# The top-level domain used for project URLs -# The default "ddev.site" allows DNS lookup via a wildcard -# If you prefer you can change this to "ddev.local" to preserve -# pre-v1.9 behavior. - -# ngrok_args: --basic-auth username:pass1234 -# Provide extra flags to the "ngrok http" command, see -# https://ngrok.com/docs/ngrok-agent/config or run "ngrok http -h" - -# disable_settings_management: false -# If true, DDEV will not create CMS-specific settings files like -# Drupal's settings.php/settings.ddev.php or TYPO3's additional.php -# In this case the user must provide all such settings. - -# You can inject environment variables into the web container with: -# web_environment: -# - SOMEENV=somevalue -# - SOMEOTHERENV=someothervalue - -# no_project_mount: false -# (Experimental) If true, DDEV will not mount the project into the web container; -# the user is responsible for mounting it manually or via a script. -# This is to enable experimentation with alternate file mounting strategies. -# For advanced users only! - -# bind_all_interfaces: false -# If true, host ports will be bound on all network interfaces, -# not the localhost interface only. This means that ports -# will be available on the local network if the host firewall -# allows it. - -# default_container_timeout: 120 -# 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. - -# web_extra_exposed_ports: -# - name: nodejs -# container_port: 3000 -# http_port: 2999 -# https_port: 3000 -# - name: something -# container_port: 4000 -# https_port: 4000 -# http_port: 3999 -# Allows a set of extra ports to be exposed via ddev-router -# Fill in all three fields even if you don’t intend to use the https_port! -# If you don’t add https_port, then it defaults to 0 and ddev-router will fail to start. -# -# The port behavior on the ddev-webserver must be arranged separately, for example -# using web_extra_daemons. -# For example, with a web app on port 3000 inside the container, this config would -# expose that web app on https://.ddev.site:9999 and http://.ddev.site:9998 -# web_extra_exposed_ports: -# - name: myapp -# container_port: 3000 -# http_port: 9998 -# https_port: 9999 - -# web_extra_daemons: -# - name: "http-1" -# command: "/var/www/html/node_modules/.bin/http-server -p 3000" -# directory: /var/www/html -# - name: "http-2" -# command: "/var/www/html/node_modules/.bin/http-server /var/www/html/sub -p 3000" -# directory: /var/www/html - -# override_config: false -# By default, config.*.yaml files are *merged* into the configuration -# But this means that some things can't be overridden -# For example, if you have 'use_dns_when_possible: true'' you can't override it with a merge -# and you can't erase existing hooks or all environment variables. -# However, with "override_config: true" in a particular config.*.yaml file, -# 'use_dns_when_possible: false' can override the existing values, and -# hooks: -# post-start: [] -# or -# web_environment: [] -# or -# additional_hostnames: [] -# can have their intended affect. 'override_config' affects only behavior of the -# config.*.yaml file it exists in. - -# Many DDEV commands can be extended to run tasks before or after the -# DDEV command is executed, for example "post-start", "post-import-db", -# "pre-composer", "post-composer" -# 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 -# for them. Example: -# hooks: -# Un-comment to emit the WP CLI version after ddev start. -# post-start: -# - exec: wp cli version diff --git a/.ddev/docker-compose.phpmyadmin.yaml b/.ddev/docker-compose.phpmyadmin.yaml deleted file mode 100755 index b272c1ad..00000000 --- a/.ddev/docker-compose.phpmyadmin.yaml +++ /dev/null @@ -1,30 +0,0 @@ -# ddev-generated -services: - phpmyadmin: - container_name: ddev-${DDEV_SITENAME}-phpmyadmin - image: phpmyadmin:5.2.0 - working_dir: "/root" - restart: "no" - labels: - com.ddev.site-name: ${DDEV_SITENAME} - com.ddev.approot: $DDEV_APPROOT - volumes: - - ".:/mnt/ddev_config" - - "ddev-global-cache:/mnt/ddev-global-cache" - expose: - - "80" - environment: - - PMA_USER=root - - PMA_PASSWORD=root - - PMA_HOST=db - - PMA_PORT=3306 - - VIRTUAL_HOST=$DDEV_HOSTNAME - - UPLOAD_LIMIT=4000M - - HTTP_EXPOSE=8036:80 - - HTTPS_EXPOSE=8037:80 - healthcheck: - interval: 120s - timeout: 2s - retries: 1 - depends_on: - - db diff --git a/.ddev/docker-compose.phpmyadmin_norouter.yaml b/.ddev/docker-compose.phpmyadmin_norouter.yaml deleted file mode 100755 index 4ddd5a73..00000000 --- a/.ddev/docker-compose.phpmyadmin_norouter.yaml +++ /dev/null @@ -1,4 +0,0 @@ -# ddev-generated -# If omit_containers[ddev-router] then this file will be replaced -# with another with a `ports` statement to directly expose port 80 to 8036 -services: {} diff --git a/.ddev/docker-compose.redis.yaml b/.ddev/docker-compose.redis.yaml deleted file mode 100755 index 66417869..00000000 --- a/.ddev/docker-compose.redis.yaml +++ /dev/null @@ -1,34 +0,0 @@ -# ddev-generated -volumes: - redis: - name: ddev-${DDEV_SITENAME}-redis - labels: - com.ddev.site-name: ${DDEV_SITENAME} - -services: - redis: - container_name: ddev-${DDEV_SITENAME}-redis - hostname: ddev-${DDEV_SITENAME}-minio - image: redis:7.2-alpine - command: /etc/redis/conf/redis.conf - volumes: - - ".:/mnt/ddev_config" - - "ddev-global-cache:/mnt/ddev-global-cache" - - "./redis:/etc/redis/conf" - - "redis:/data" - expose: - - 6379 - networks: - - default - deploy: - resources: - limits: - cpus: "2.5" - memory: "768M" - reservations: - cpus: "1.5" - memory: "512M" - restart: "no" - labels: - com.ddev.site-name: ${DDEV_SITENAME} - com.ddev.approot: $DDEV_APPROOT diff --git a/.ddev/nginx_full/vite.conf b/.ddev/nginx_full/vite.conf deleted file mode 100755 index f3f7eb5a..00000000 --- a/.ddev/nginx_full/vite.conf +++ /dev/null @@ -1,33 +0,0 @@ -#ddev-generated -server { - server_name vite.haikuatelier.fr.ddev.site; - - listen 80; - listen 443 ssl; - - ssl_certificate /etc/ssl/certs/master.crt; - ssl_certificate_key /etc/ssl/certs/master.key; - - include /etc/nginx/monitoring.conf; - - # Disable sendfile as per https://docs.vagrantup.com/v2/synced-folders/virtualbox.html - sendfile off; - error_log /dev/stdout info; - access_log off; - - location /vite-server-not-running.html { - root /mnt/ddev_config/vite/; - } - - location / { - proxy_pass http://localhost:5173; - proxy_http_version 1.1; - proxy_set_header Upgrade $http_upgrade; - proxy_set_header Connection "Upgrade"; - proxy_set_header Host $host; - proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; - proxy_set_header X-Forwarded-Proto $http_x_forwarded_proto; - proxy_set_header X-Forwarded-Host $http_x_forwarded_host; - error_page 502 /vite-server-not-running.html; - } -} diff --git a/.ddev/redis/advanced.conf b/.ddev/redis/advanced.conf deleted file mode 100755 index e1875528..00000000 --- a/.ddev/redis/advanced.conf +++ /dev/null @@ -1,341 +0,0 @@ -# #ddev-generated -############################### ADVANCED CONFIG ############################### - -# Hashes are encoded using a memory efficient data structure when they have a -# small number of entries, and the biggest entry does not exceed a given -# threshold. These thresholds can be configured using the following directives. -hash-max-ziplist-entries 512 -hash-max-ziplist-value 64 - -# Lists are also encoded in a special way to save a lot of space. -# The number of entries allowed per internal list node can be specified -# as a fixed maximum size or a maximum number of elements. -# For a fixed maximum size, use -5 through -1, meaning: -# -5: max size: 64 Kb <-- not recommended for normal workloads -# -4: max size: 32 Kb <-- not recommended -# -3: max size: 16 Kb <-- probably not recommended -# -2: max size: 8 Kb <-- good -# -1: max size: 4 Kb <-- good -# Positive numbers mean store up to _exactly_ that number of elements -# per list node. -# The highest performing option is usually -2 (8 Kb size) or -1 (4 Kb size), -# but if your use case is unique, adjust the settings as necessary. -list-max-ziplist-size -2 - -# Lists may also be compressed. -# Compress depth is the number of quicklist ziplist nodes from *each* side of -# the list to *exclude* from compression. The head and tail of the list -# are always uncompressed for fast push/pop operations. Settings are: -# 0: disable all list compression -# 1: depth 1 means "don't start compressing until after 1 node into the list, -# going from either the head or tail" -# So: [head]->node->node->...->node->[tail] -# [head], [tail] will always be uncompressed; inner nodes will compress. -# 2: [head]->[next]->node->node->...->node->[prev]->[tail] -# 2 here means: don't compress head or head->next or tail->prev or tail, -# but compress all nodes between them. -# 3: [head]->[next]->[next]->node->node->...->node->[prev]->[prev]->[tail] -# etc. -list-compress-depth 0 - -# Sets have a special encoding in just one case: when a set is composed -# of just strings that happen to be integers in radix 10 in the range -# of 64 bit signed integers. -# The following configuration setting sets the limit in the size of the -# set in order to use this special memory saving encoding. -set-max-intset-entries 512 - -# Similarly to hashes and lists, sorted sets are also specially encoded in -# order to save a lot of space. This encoding is only used when the length and -# elements of a sorted set are below the following limits: -zset-max-ziplist-entries 128 -zset-max-ziplist-value 64 - -# HyperLogLog sparse representation bytes limit. The limit includes the -# 16 bytes header. When an HyperLogLog using the sparse representation crosses -# this limit, it is converted into the dense representation. -# -# A value greater than 16000 is totally useless, since at that point the -# dense representation is more memory efficient. -# -# The suggested value is ~ 3000 in order to have the benefits of -# the space efficient encoding without slowing down too much PFADD, -# which is O(N) with the sparse encoding. The value can be raised to -# ~ 10000 when CPU is not a concern, but space is, and the data set is -# composed of many HyperLogLogs with cardinality in the 0 - 15000 range. -hll-sparse-max-bytes 3000 - -# Streams macro node max size / items. The stream data structure is a radix -# tree of big nodes that encode multiple items inside. Using this configuration -# it is possible to configure how big a single node can be in bytes, and the -# maximum number of items it may contain before switching to a new node when -# appending new stream entries. If any of the following settings are set to -# zero, the limit is ignored, so for instance it is possible to set just a -# max entires limit by setting max-bytes to 0 and max-entries to the desired -# value. -stream-node-max-bytes 4096 -stream-node-max-entries 100 - -# Active rehashing uses 1 millisecond every 100 milliseconds of CPU time in -# order to help rehashing the main Redis hash table (the one mapping top-level -# keys to values). The hash table implementation Redis uses (see dict.c) -# performs a lazy rehashing: the more operation you run into a hash table -# that is rehashing, the more rehashing "steps" are performed, so if the -# server is idle the rehashing is never complete and some more memory is used -# by the hash table. -# -# The default is to use this millisecond 10 times every second in order to -# actively rehash the main dictionaries, freeing memory when possible. -# -# If unsure: -# use "activerehashing no" if you have hard latency requirements and it is -# not a good thing in your environment that Redis can reply from time to time -# to queries with 2 milliseconds delay. -# -# use "activerehashing yes" if you don't have such hard requirements but -# want to free memory asap when possible. -activerehashing yes - -# The client output buffer limits can be used to force disconnection of clients -# that are not reading data from the server fast enough for some reason (a -# common reason is that a Pub/Sub client can't consume messages as fast as the -# publisher can produce them). -# -# The limit can be set differently for the three different classes of clients: -# -# normal -> normal clients including MONITOR clients -# replica -> replica clients -# pubsub -> clients subscribed to at least one pubsub channel or pattern -# -# The syntax of every client-output-buffer-limit directive is the following: -# -# client-output-buffer-limit -# -# A client is immediately disconnected once the hard limit is reached, or if -# the soft limit is reached and remains reached for the specified number of -# seconds (continuously). -# So for instance if the hard limit is 32 megabytes and the soft limit is -# 16 megabytes / 10 seconds, the client will get disconnected immediately -# if the size of the output buffers reach 32 megabytes, but will also get -# disconnected if the client reaches 16 megabytes and continuously overcomes -# the limit for 10 seconds. -# -# By default normal clients are not limited because they don't receive data -# without asking (in a push way), but just after a request, so only -# asynchronous clients may create a scenario where data is requested faster -# than it can read. -# -# Instead there is a default limit for pubsub and replica clients, since -# subscribers and replicas receive data in a push fashion. -# -# Both the hard or the soft limit can be disabled by setting them to zero. -client-output-buffer-limit normal 0 0 0 -client-output-buffer-limit replica 256mb 64mb 60 -client-output-buffer-limit pubsub 32mb 8mb 60 - -# Client query buffers accumulate new commands. They are limited to a fixed -# amount by default in order to avoid that a protocol desynchronization (for -# instance due to a bug in the client) will lead to unbound memory usage in -# the query buffer. However you can configure it here if you have very special -# needs, such us huge multi/exec requests or alike. -# -# client-query-buffer-limit 1gb - -# In the Redis protocol, bulk requests, that are, elements representing single -# strings, are normally limited to 512 mb. However you can change this limit -# here, but must be 1mb or greater -# -# proto-max-bulk-len 512mb - -# Redis calls an internal function to perform many background tasks, like -# closing connections of clients in timeout, purging expired keys that are -# never requested, and so forth. -# -# Not all tasks are performed with the same frequency, but Redis checks for -# tasks to perform according to the specified "hz" value. -# -# By default "hz" is set to 10. Raising the value will use more CPU when -# Redis is idle, but at the same time will make Redis more responsive when -# there are many keys expiring at the same time, and timeouts may be -# handled with more precision. -# -# The range is between 1 and 500, however a value over 100 is usually not -# a good idea. Most users should use the default of 10 and raise this up to -# 100 only in environments where very low latency is required. -hz 10 - -# Normally it is useful to have an HZ value which is proportional to the -# number of clients connected. This is useful in order, for instance, to -# avoid too many clients are processed for each background task invocation -# in order to avoid latency spikes. -# -# Since the default HZ value by default is conservatively set to 10, Redis -# offers, and enables by default, the ability to use an adaptive HZ value -# which will temporarily raise when there are many connected clients. -# -# When dynamic HZ is enabled, the actual configured HZ will be used -# as a baseline, but multiples of the configured HZ value will be actually -# used as needed once more clients are connected. In this way an idle -# instance will use very little CPU time while a busy instance will be -# more responsive. -dynamic-hz yes - -# When a child rewrites the AOF file, if the following option is enabled -# the file will be fsync-ed every 32 MB of data generated. This is useful -# in order to commit the file to the disk more incrementally and avoid -# big latency spikes. -aof-rewrite-incremental-fsync yes - -# When redis saves RDB file, if the following option is enabled -# the file will be fsync-ed every 32 MB of data generated. This is useful -# in order to commit the file to the disk more incrementally and avoid -# big latency spikes. -rdb-save-incremental-fsync yes - -# Redis LFU eviction (see maxmemory setting) can be tuned. However it is a good -# idea to start with the default settings and only change them after investigating -# how to improve the performances and how the keys LFU change over time, which -# is possible to inspect via the OBJECT FREQ command. -# -# There are two tunable parameters in the Redis LFU implementation: the -# counter logarithm factor and the counter decay time. It is important to -# understand what the two parameters mean before changing them. -# -# The LFU counter is just 8 bits per key, it's maximum value is 255, so Redis -# uses a probabilistic increment with logarithmic behavior. Given the value -# of the old counter, when a key is accessed, the counter is incremented in -# this way: -# -# 1. A random number R between 0 and 1 is extracted. -# 2. A probability P is calculated as 1/(old_value*lfu_log_factor+1). -# 3. The counter is incremented only if R < P. -# -# The default lfu-log-factor is 10. This is a table of how the frequency -# counter changes with a different number of accesses with different -# logarithmic factors: -# -# +--------+------------+------------+------------+------------+------------+ -# | factor | 100 hits | 1000 hits | 100K hits | 1M hits | 10M hits | -# +--------+------------+------------+------------+------------+------------+ -# | 0 | 104 | 255 | 255 | 255 | 255 | -# +--------+------------+------------+------------+------------+------------+ -# | 1 | 18 | 49 | 255 | 255 | 255 | -# +--------+------------+------------+------------+------------+------------+ -# | 10 | 10 | 18 | 142 | 255 | 255 | -# +--------+------------+------------+------------+------------+------------+ -# | 100 | 8 | 11 | 49 | 143 | 255 | -# +--------+------------+------------+------------+------------+------------+ -# -# NOTE: The above table was obtained by running the following commands: -# -# redis-benchmark -n 1000000 incr foo -# redis-cli object freq foo -# -# NOTE 2: The counter initial value is 5 in order to give new objects a chance -# to accumulate hits. -# -# The counter decay time is the time, in minutes, that must elapse in order -# for the key counter to be divided by two (or decremented if it has a value -# less <= 10). -# -# The default value for the lfu-decay-time is 1. A special value of 0 means to -# decay the counter every time it happens to be scanned. -# -# lfu-log-factor 10 -# lfu-decay-time 1 - -############################## DEBUG COMMAND ############################# - -enable-debug-command yes - -########################### ACTIVE DEFRAGMENTATION ####################### -# -# What is active defragmentation? -# ------------------------------- -# -# Active (online) defragmentation allows a Redis server to compact the -# spaces left between small allocations and deallocations of data in memory, -# thus allowing to reclaim back memory. -# -# Fragmentation is a natural process that happens with every allocator (but -# less so with Jemalloc, fortunately) and certain workloads. Normally a server -# restart is needed in order to lower the fragmentation, or at least to flush -# away all the data and create it again. However thanks to this feature -# implemented by Oran Agra for Redis 4.0 this process can happen at runtime -# in a "hot" way, while the server is running. -# -# Basically when the fragmentation is over a certain level (see the -# configuration options below) Redis will start to create new copies of the -# values in contiguous memory regions by exploiting certain specific Jemalloc -# features (in order to understand if an allocation is causing fragmentation -# and to allocate it in a better place), and at the same time, will release the -# old copies of the data. This process, repeated incrementally for all the keys -# will cause the fragmentation to drop back to normal values. -# -# Important things to understand: -# -# 1. This feature is disabled by default, and only works if you compiled Redis -# to use the copy of Jemalloc we ship with the source code of Redis. -# This is the default with Linux builds. -# -# 2. You never need to enable this feature if you don't have fragmentation -# issues. -# -# 3. Once you experience fragmentation, you can enable this feature when -# needed with the command "CONFIG SET activedefrag yes". -# -# The configuration parameters are able to fine tune the behavior of the -# defragmentation process. If you are not sure about what they mean it is -# a good idea to leave the defaults untouched. - -# Enabled active defragmentation -# activedefrag no - -# Minimum amount of fragmentation waste to start active defrag -# active-defrag-ignore-bytes 100mb - -# Minimum percentage of fragmentation to start active defrag -# active-defrag-threshold-lower 10 - -# Maximum percentage of fragmentation at which we use maximum effort -# active-defrag-threshold-upper 100 - -# Minimal effort for defrag in CPU percentage, to be used when the lower -# threshold is reached -# active-defrag-cycle-min 1 - -# Maximal effort for defrag in CPU percentage, to be used when the upper -# threshold is reached -# active-defrag-cycle-max 25 - -# Maximum number of set/hash/zset/list fields that will be processed from -# the main dictionary scan -# active-defrag-max-scan-fields 1000 - -# Jemalloc background thread for purging will be enabled by default -jemalloc-bg-thread yes - -# It is possible to pin different threads and processes of Redis to specific -# CPUs in your system, in order to maximize the performances of the server. -# This is useful both in order to pin different Redis threads in different -# CPUs, but also in order to make sure that multiple Redis instances running -# in the same host will be pinned to different CPUs. -# -# Normally you can do this using the "taskset" command, however it is also -# possible to this via Redis configuration directly, both in Linux and FreeBSD. -# -# You can pin the server/IO threads, bio threads, aof rewrite child process, and -# the bgsave child process. The syntax to specify the cpu list is the same as -# the taskset command: -# -# Set redis server/io threads to cpu affinity 0,2,4,6: -# server_cpulist 0-7:2 -# -# Set bio threads to cpu affinity 1,3: -# bio_cpulist 1,3 -# -# Set aof rewrite child process to cpu affinity 8,9,10,11: -# aof_rewrite_cpulist 8-11 -# -# Set bgsave child process to cpu affinity 1,10,11 -# bgsave_cpulist 1,10-11 diff --git a/.ddev/redis/append.conf b/.ddev/redis/append.conf deleted file mode 100755 index ca05a7b5..00000000 --- a/.ddev/redis/append.conf +++ /dev/null @@ -1,133 +0,0 @@ -# #ddev-generated -############################## APPEND ONLY MODE ############################### - -# By default Redis asynchronously dumps the dataset on disk. This mode is -# good enough in many applications, but an issue with the Redis process or -# a power outage may result into a few minutes of writes lost (depending on -# the configured save points). -# -# The Append Only File is an alternative persistence mode that provides -# much better durability. For instance using the default data fsync policy -# (see later in the config file) Redis can lose just one second of writes in a -# dramatic event like a server power outage, or a single write if something -# wrong with the Redis process itself happens, but the operating system is -# still running correctly. -# -# AOF and RDB persistence can be enabled at the same time without problems. -# If the AOF is enabled on startup Redis will load the AOF, that is the file -# with the better durability guarantees. -# -# Please check http://redis.io/topics/persistence for more information. - -appendonly yes - -# The name of the append only file (default: "appendonly.aof") - -appendfilename "appendonly.aof" - -# For convenience, Redis stores all persistent append-only files in a dedicated -# directory. The name of the directory is determined by the appenddirname -# configuration parameter. - -appenddirname "append" - -# The fsync() call tells the Operating System to actually write data on disk -# instead of waiting for more data in the output buffer. Some OS will really flush -# data on disk, some other OS will just try to do it ASAP. -# -# Redis supports three different modes: -# -# no: don't fsync, just let the OS flush the data when it wants. Faster. -# always: fsync after every write to the append only log. Slow, Safest. -# everysec: fsync only one time every second. Compromise. -# -# The default is "everysec", as that's usually the right compromise between -# speed and data safety. It's up to you to understand if you can relax this to -# "no" that will let the operating system flush the output buffer when -# it wants, for better performances (but if you can live with the idea of -# some data loss consider the default persistence mode that's snapshotting), -# or on the contrary, use "always" that's very slow but a bit safer than -# everysec. -# -# More details please check the following article: -# http://antirez.com/post/redis-persistence-demystified.html -# -# If unsure, use "everysec". - -appendfsync no - -# When the AOF fsync policy is set to always or everysec, and a background -# saving process (a background save or AOF log background rewriting) is -# performing a lot of I/O against the disk, in some Linux configurations -# Redis may block too long on the fsync() call. Note that there is no fix for -# this currently, as even performing fsync in a different thread will block -# our synchronous write(2) call. -# -# In order to mitigate this problem it's possible to use the following option -# that will prevent fsync() from being called in the main process while a -# BGSAVE or BGREWRITEAOF is in progress. -# -# This means that while another child is saving, the durability of Redis is -# the same as "appendfsync none". In practical terms, this means that it is -# possible to lose up to 30 seconds of log in the worst scenario (with the -# default Linux settings). -# -# If you have latency problems turn this to "yes". Otherwise leave it as -# "no" that is the safest pick from the point of view of durability. - -no-appendfsync-on-rewrite no - -# Automatic rewrite of the append only file. -# Redis is able to automatically rewrite the log file implicitly calling -# BGREWRITEAOF when the AOF log size grows by the specified percentage. -# -# This is how it works: Redis remembers the size of the AOF file after the -# latest rewrite (if no rewrite has happened since the restart, the size of -# the AOF at startup is used). -# -# This base size is compared to the current size. If the current size is -# bigger than the specified percentage, the rewrite is triggered. Also -# you need to specify a minimal size for the AOF file to be rewritten, this -# is useful to avoid rewriting the AOF file even if the percentage increase -# is reached but it is still pretty small. -# -# Specify a percentage of zero in order to disable the automatic AOF -# rewrite feature. - -auto-aof-rewrite-percentage 100 -auto-aof-rewrite-min-size 64mb - -# An AOF file may be found to be truncated at the end during the Redis -# startup process, when the AOF data gets loaded back into memory. -# This may happen when the system where Redis is running -# crashes, especially when an ext4 filesystem is mounted without the -# data=ordered option (however this can't happen when Redis itself -# crashes or aborts but the operating system still works correctly). -# -# Redis can either exit with an error when this happens, or load as much -# data as possible (the default now) and start if the AOF file is found -# to be truncated at the end. The following option controls this behavior. -# -# If aof-load-truncated is set to yes, a truncated AOF file is loaded and -# the Redis server starts emitting a log to inform the user of the event. -# Otherwise if the option is set to no, the server aborts with an error -# and refuses to start. When the option is set to no, the user requires -# to fix the AOF file using the "redis-check-aof" utility before to restart -# the server. -# -# Note that if the AOF file will be found to be corrupted in the middle -# the server will still exit with an error. This option only applies when -# Redis will try to read more data from the AOF file but not enough bytes -# will be found. -aof-load-truncated yes - -# When rewriting the AOF file, Redis is able to use an RDB preamble in the -# AOF file for faster rewrites and recoveries. When this option is turned -# on the rewritten AOF file is composed of two different stanzas: -# -# [RDB file][AOF tail] -# -# When loading, Redis recognizes that the AOF file starts with the "REDIS" -# string and loads the prefixed RDB file, then continues loading the AOF -# tail. -aof-use-rdb-preamble yes diff --git a/.ddev/redis/general.conf b/.ddev/redis/general.conf deleted file mode 100755 index edeccccb..00000000 --- a/.ddev/redis/general.conf +++ /dev/null @@ -1,44 +0,0 @@ -# #ddev-generated -################################# GENERAL ##################################### - -# By default Redis does not run as a daemon. Use 'yes' if you need it. -# Note that Redis will write a pid file in /var/run/redis.pid when daemonized. -daemonize no - -# If you run Redis from upstart or systemd, Redis can interact with your -# supervision tree. Options: -# supervised no - no supervision interaction -# supervised upstart - signal upstart by putting Redis into SIGSTOP mode -# requires "expect stop" in your upstart job config -# supervised systemd - signal systemd by writing READY=1 to $NOTIFY_SOCKET -# supervised auto - detect upstart or systemd method based on -# UPSTART_JOB or NOTIFY_SOCKET environment variables -# Note: these supervision methods only signal "process is ready." -# They do not enable continuous pings back to your supervisor. -supervised no - -# Specify the server verbosity level. -# This can be one of: -# debug (a lot of information, useful for development/testing) -# verbose (many rarely useful info, but not a mess like the debug level) -# notice (moderately verbose, what you want in production probably) -# warning (only very important / critical messages are logged) -loglevel notice - -# Specify the log file name. Also the empty string can be used to force -# Redis to log on the standard output. Note that if you use standard -# output for logging but daemonize, logs will be sent to /dev/null -logfile "" - -# Set the number of databases. The default database is DB 0, you can select -# a different one on a per-connection basis using SELECT where -# dbid is a number between 0 and 'databases'-1 -databases 4 - -# By default Redis shows an ASCII art logo only when started to log to the -# standard output and if the standard output is a TTY. Basically this means -# that normally a logo is displayed only in interactive sessions. -# -# However it is possible to force the pre-4.0 behavior and always show a -# ASCII art logo in startup logs by setting the following option to yes. -always-show-logo yes diff --git a/.ddev/redis/io.conf b/.ddev/redis/io.conf deleted file mode 100755 index 83da7370..00000000 --- a/.ddev/redis/io.conf +++ /dev/null @@ -1,98 +0,0 @@ -# #ddev-generated -################################ THREADED I/O ################################# - -# Redis is mostly single threaded, however there are certain threaded -# operations such as UNLINK, slow I/O accesses and other things that are -# performed on side threads. -# -# Now it is also possible to handle Redis clients socket reads and writes -# in different I/O threads. Since especially writing is so slow, normally -# Redis users use pipelining in order to speed up the Redis performances per -# core, and spawn multiple instances in order to scale more. Using I/O -# threads it is possible to easily speedup two times Redis without resorting -# to pipelining nor sharding of the instance. -# -# By default threading is disabled, we suggest enabling it only in machines -# that have at least 4 or more cores, leaving at least one spare core. -# Using more than 8 threads is unlikely to help much. We also recommend using -# threaded I/O only if you actually have performance problems, with Redis -# instances being able to use a quite big percentage of CPU time, otherwise -# there is no point in using this feature. -# -# So for instance if you have a four cores boxes, try to use 2 or 3 I/O -# threads, if you have a 8 cores, try to use 6 threads. In order to -# enable I/O threads use the following configuration directive: -# -io-threads 1 - -# -# Setting io-threads to 1 will just use the main thread as usual. -# When I/O threads are enabled, we only use threads for writes, that is -# to thread the write(2) syscall and transfer the client buffers to the -# socket. However it is also possible to enable threading of reads and -# protocol parsing using the following configuration directive, by setting -# it to yes: -# -io-threads-do-reads no - -# -# Usually threading reads doesn't help much. -# -# NOTE 1: This configuration directive cannot be changed at runtime via -# CONFIG SET. Aso this feature currently does not work when SSL is -# enabled. -# -# NOTE 2: If you want to test the Redis speedup using redis-benchmark, make -# sure you also run the benchmark itself in threaded mode, using the -# --threads option to match the number of Redis threads, otherwise you'll not -# be able to notice the improvements. - -############################ KERNEL OOM CONTROL ############################## - -# On Linux, it is possible to hint the kernel OOM killer on what processes -# should be killed first when out of memory. -# -# Enabling this feature makes Redis actively control the oom_score_adj value -# for all its processes, depending on their role. The default scores will -# attempt to have background child processes killed before all others, and -# replicas killed before masters. - -oom-score-adj no - -# When oom-score-adj is used, this directive controls the specific values used -# for master, replica and background child processes. Values range -1000 to -# 1000 (higher means more likely to be killed). -# -# Unprivileged processes (not root, and without CAP_SYS_RESOURCE capabilities) -# can freely increase their value, but not decrease it below its initial -# settings. -# -# Values are used relative to the initial value of oom_score_adj when the server -# starts. Because typically the initial value is 0, they will often match the -# absolute values. - -oom-score-adj-values 0 200 800 - -################################## SLOW LOG ################################### - -# The Redis Slow Log is a system to log queries that exceeded a specified -# execution time. The execution time does not include the I/O operations -# like talking with the client, sending the reply and so forth, -# but just the time needed to actually execute the command (this is the only -# stage of command execution where the thread is blocked and can not serve -# other requests in the meantime). -# -# You can configure the slow log with two parameters: one tells Redis -# what is the execution time, in microseconds, to exceed in order for the -# command to get logged, and the other parameter is the length of the -# slow log. When a new command is logged the oldest one is removed from the -# queue of logged commands. - -# The following time is expressed in microseconds, so 1000000 is equivalent -# to one second. Note that a negative number disables the slow log, while -# a value of zero forces the logging of every command. -slowlog-log-slower-than 10000 - -# There is no limit to this length. Just be aware that it will consume memory. -# You can reclaim memory used by the slow log with SLOWLOG RESET. -slowlog-max-len 128 diff --git a/.ddev/redis/memory.conf b/.ddev/redis/memory.conf deleted file mode 100755 index 5d4f5a5e..00000000 --- a/.ddev/redis/memory.conf +++ /dev/null @@ -1,142 +0,0 @@ -# #ddev-generated -############################## MEMORY MANAGEMENT ################################ - -# Set a memory usage limit to the specified amount of bytes. -# When the memory limit is reached Redis will try to remove keys -# according to the eviction policy selected (see maxmemory-policy). -# -# If Redis can't remove keys according to the policy, or if the policy is -# set to 'noeviction', Redis will start to reply with errors to commands -# that would use more memory, like SET, LPUSH, and so on, and will continue -# to reply to read-only commands like GET. -# -# This option is usually useful when using Redis as an LRU or LFU cache, or to -# set a hard memory limit for an instance (using the 'noeviction' policy). -# -# WARNING: If you have replicas attached to an instance with maxmemory on, -# the size of the output buffers needed to feed the replicas are subtracted -# from the used memory count, so that network problems / resyncs will -# not trigger a loop where keys are evicted, and in turn the output -# buffer of replicas is full with DELs of keys evicted triggering the deletion -# of more keys, and so forth until the database is completely emptied. -# -# In short... if you have replicas attached it is suggested that you set a lower -# limit for maxmemory so that there is some free RAM on the system for replica -# output buffers (but this is not needed if the policy is 'noeviction'). -# -maxmemory 512mb - -# MAXMEMORY POLICY: how Redis will select what to remove when maxmemory -# is reached. You can select one from the following behaviors: -# -# volatile-lru -> Evict using approximated LRU, only keys with an expire set. -# allkeys-lru -> Evict any key using approximated LRU. -# volatile-lfu -> Evict using approximated LFU, only keys with an expire set. -# allkeys-lfu -> Evict any key using approximated LFU. -# volatile-random -> Remove a random key having an expire set. -# allkeys-random -> Remove a random key, any key. -# volatile-ttl -> Remove the key with the nearest expire time (minor TTL) -# noeviction -> Don't evict anything, just return an error on write operations. -# -# LRU means Least Recently Used -# LFU means Least Frequently Used -# -# Both LRU, LFU and volatile-ttl are implemented using approximated -# randomized algorithms. -# -# Note: with any of the above policies, Redis will return an error on write -# operations, when there are no suitable keys for eviction. -# -# At the date of writing these commands are: set setnx setex append -# incr decr rpush lpush rpushx lpushx linsert lset rpoplpush sadd -# sinter sinterstore sunion sunionstore sdiff sdiffstore zadd zincrby -# zunionstore zinterstore hset hsetnx hmset hincrby incrby decrby -# getset mset msetnx exec sort -# -# The default is: -# -maxmemory-policy allkeys-lru - -# LRU, LFU and minimal TTL algorithms are not precise algorithms but approximated -# algorithms (in order to save memory), so you can tune it for speed or -# accuracy. By default Redis will check five keys and pick the one that was -# used least recently, you can change the sample size using the following -# configuration directive. -# -# The default of 5 produces good enough results. 10 Approximates very closely -# true LRU but costs more CPU. 3 is faster but not very accurate. -# -maxmemory-samples 4 - -# Redis reclaims expired keys in two ways: upon access when those keys are -# found to be expired, and also in background, in what is called the -# "active expire key". The key space is slowly and interactively scanned -# looking for expired keys to reclaim, so that it is possible to free memory -# of keys that are expired and will never be accessed again in a short time. -# -# The default effort of the expire cycle will try to avoid having more than -# ten percent of expired keys still in memory, and will try to avoid consuming -# more than 25% of total memory and to add latency to the system. However -# it is possible to increase the expire "effort" that is normally set to -# "1", to a greater value, up to the value "10". At its maximum value the -# system will use more CPU, longer cycles (and technically may introduce -# more latency), and will tolerate less already expired keys still present -# in the system. It's a tradeoff between memory, CPU and latency. -# -active-expire-effort 2 - -############################# LAZY FREEING #################################### - -# Redis has two primitives to delete keys. One is called DEL and is a blocking -# deletion of the object. It means that the server stops processing new commands -# in order to reclaim all the memory associated with an object in a synchronous -# way. If the key deleted is associated with a small object, the time needed -# in order to execute the DEL command is very small and comparable to most other -# O(1) or O(log_N) commands in Redis. However if the key is associated with an -# aggregated value containing millions of elements, the server can block for -# a long time (even seconds) in order to complete the operation. -# -# For the above reasons Redis also offers non blocking deletion primitives -# such as UNLINK (non blocking DEL) and the ASYNC option of FLUSHALL and -# FLUSHDB commands, in order to reclaim memory in background. Those commands -# are executed in constant time. Another thread will incrementally free the -# object in the background as fast as possible. -# -# DEL, UNLINK and ASYNC option of FLUSHALL and FLUSHDB are user-controlled. -# It's up to the design of the application to understand when it is a good -# idea to use one or the other. However the Redis server sometimes has to -# delete keys or flush the whole database as a side effect of other operations. -# Specifically Redis deletes objects independently of a user call in the -# following scenarios: -# -# 1) On eviction, because of the maxmemory and maxmemory policy configurations, -# in order to make room for new data, without going over the specified -# memory limit. -# 2) Because of expire: when a key with an associated time to live (see the -# EXPIRE command) must be deleted from memory. -# 3) Because of a side effect of a command that stores data on a key that may -# already exist. For example the RENAME command may delete the old key -# content when it is replaced with another one. Similarly SUNIONSTORE -# or SORT with STORE option may delete existing keys. The SET command -# itself removes any old content of the specified key in order to replace -# it with the specified string. -# 4) During replication, when a replica performs a full resynchronization with -# its master, the content of the whole database is removed in order to -# load the RDB file just transferred. -# -# In all the above cases the default is to delete objects in a blocking way, -# like if DEL was called. However you can configure each case specifically -# in order to instead release memory in a non-blocking way like if UNLINK -# was called, using the following configuration directives. - -lazyfree-lazy-eviction no -lazyfree-lazy-expire no -lazyfree-lazy-server-del no -replica-lazy-flush no - -# It is also possible, for the case when to replace the user code DEL calls -# with UNLINK calls is not easy, to modify the default behavior of the DEL -# command to act exactly like UNLINK, using the following configuration -# directive: - -lazyfree-lazy-user-del no diff --git a/.ddev/redis/network.conf b/.ddev/redis/network.conf deleted file mode 100755 index feec15ed..00000000 --- a/.ddev/redis/network.conf +++ /dev/null @@ -1,85 +0,0 @@ -# #ddev-generated -################################## NETWORK ##################################### - -# By default, if no "bind" configuration directive is specified, Redis listens -# for connections from all available network interfaces on the host machine. -# It is possible to listen to just one or multiple selected interfaces using -# the "bind" configuration directive, followed by one or more IP addresses. -# -# Examples: -# -# bind 192.168.1.100 10.0.0.1 -# bind 127.0.0.1 ::1 -# -# ~~~ WARNING ~~~ If the computer running Redis is directly exposed to the -# internet, binding to all the interfaces is dangerous and will expose the -# instance to everybody on the internet. So by default we uncomment the -# following bind directive, that will force Redis to listen only on the -# IPv4 loopback interface address (this means Redis will only be able to -# accept client connections from the same host that it is running on). -# -# IF YOU ARE SURE YOU WANT YOUR INSTANCE TO LISTEN TO ALL THE INTERFACES -# JUST COMMENT OUT THE FOLLOWING LINE. -# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -bind 0.0.0.0 - -# Protected mode is a layer of security protection, in order to avoid that -# Redis instances left open on the internet are accessed and exploited. -# -# When protected mode is on and if: -# -# 1) The server is not binding explicitly to a set of addresses using the -# "bind" directive. -# 2) No password is configured. -# -# The server only accepts connections from clients connecting from the -# IPv4 and IPv6 loopback addresses 127.0.0.1 and ::1, and from Unix domain -# sockets. -# -# By default protected mode is enabled. You should disable it only if -# you are sure you want clients from other hosts to connect to Redis -# even if no authentication is configured, nor a specific set of interfaces -# are explicitly listed using the "bind" directive. -protected-mode yes - -# Accept connections on the specified port, default is 6379 (IANA #815344). -# If port 0 is specified Redis will not listen on a TCP socket. -port 6379 - -# TCP listen() backlog. -# -# In high requests-per-second environments you need a high backlog in order -# to avoid slow clients connection issues. Note that the Linux kernel -# will silently truncate it to the value of /proc/sys/net/core/somaxconn so -# make sure to raise both the value of somaxconn and tcp_max_syn_backlog -# in order to get the desired effect. -tcp-backlog 4096 - -# Unix socket. -# -# Specify the path for the Unix socket that will be used to listen for -# incoming connections. There is no default, so Redis will not listen -# on a unix socket when not specified. -# -# unixsocket /tmp/redis.sock -# unixsocketperm 700 - -# Close the connection after a client is idle for N seconds (0 to disable) -timeout 0 - -# TCP keepalive. -# -# If non-zero, use SO_KEEPALIVE to send TCP ACKs to clients in absence -# of communication. This is useful for two reasons: -# -# 1) Detect dead peers. -# 2) Force network equipment in the middle to consider the connection to be -# alive. -# -# On Linux, the specified value (in seconds) is the period used to send ACKs. -# Note that to close the connection the double of the time is needed. -# On other kernels the period depends on the kernel configuration. -# -# A reasonable value for this option is 300 seconds, which is the new -# Redis default starting with Redis 3.2.1. -tcp-keepalive 0 diff --git a/.ddev/redis/redis.conf b/.ddev/redis/redis.conf deleted file mode 100755 index de579955..00000000 --- a/.ddev/redis/redis.conf +++ /dev/null @@ -1,26 +0,0 @@ -# #ddev-generated -################################## INCLUDES ################################### - -# Network -include /etc/redis/conf/network.conf - -# General -include /etc/redis/conf/general.conf - -# Snapshots -include /etc/redis/conf/snapshots.conf - -# Security -include /etc/redis/conf/security.conf - -# Memory management -include /etc/redis/conf/memory.conf - -# CPU management -include /etc/redis/conf/io.conf - -# Append mode -include /etc/redis/conf/append.conf - -# Advanced config -include /etc/redis/conf/advanced.conf diff --git a/.ddev/redis/security.conf b/.ddev/redis/security.conf deleted file mode 100755 index 50e6c836..00000000 --- a/.ddev/redis/security.conf +++ /dev/null @@ -1,12 +0,0 @@ -# #ddev-generated -################################## SECURITY ################################### - -# Warning: since Redis is pretty fast, an outside user can try up to -# 1 million passwords per second against a modern box. This means that you -# should use very strong passwords, otherwise they will be very easy to break. -# Note that because the password is really a shared secret between the client -# and the server, and should not be memorized by any human, the password -# can be easily a long string from /dev/urandom or whatever, so by using a -# long and unguessable password no brute force attack will be possible. -user default ~* &* +@all on >redis -user redis ~* &* +@all on >redis \ No newline at end of file diff --git a/.ddev/redis/snapshots.conf b/.ddev/redis/snapshots.conf deleted file mode 100755 index ef9a4d12..00000000 --- a/.ddev/redis/snapshots.conf +++ /dev/null @@ -1,66 +0,0 @@ -# #ddev-generated -################################ SNAPSHOTTING ################################ -# -# Save the DB on disk: -# -# save -# -# Will save the DB if both the given number of seconds and the given -# number of write operations against the DB occurred. -# -# In the example below the behavior will be to save: -# after 300 sec (5 min) if at least 1 key changed -# after 150 sec (2.5 min) if at least 10 keys changed -# after 30 sec if at least 10000 keys changed -# -# Note: you can disable saving completely by commenting out all "save" lines. -# -# It is also possible to remove all the previously configured save -# points by adding a save directive with a single empty string argument -# like in the following example: -# -# save "" -save 3600 1 300 100 60 10000 - -# By default Redis will stop accepting writes if RDB snapshots are enabled -# (at least one save point) and the latest background save failed. -# This will make the user aware (in a hard way) that data is not persisting -# on disk properly, otherwise chances are that no one will notice and some -# disaster will happen. -# -# If the background saving process will start working again Redis will -# automatically allow writes again. -# -# However if you have setup your proper monitoring of the Redis server -# and persistence, you may want to disable this feature so that Redis will -# continue to work as usual even if there are problems with disk, -# permissions, and so forth. -stop-writes-on-bgsave-error yes - -# Compress string objects using LZF when dump .rdb databases? -# By default compression is enabled as it's almost always a win. -# If you want to save some CPU in the saving child set it to 'no' but -# the dataset will likely be bigger if you have compressible values or keys. -rdbcompression no - -# Since version 5 of RDB a CRC64 checksum is placed at the end of the file. -# This makes the format more resistant to corruption but there is a performance -# hit to pay (around 10%) when saving and loading RDB files, so you can disable it -# for maximum performances. -# -# RDB files created with checksum disabled have a checksum of zero that will -# tell the loading code to skip the check. -rdbchecksum no - -# The filename where to dump the DB -dbfilename haikuatelier.fr.rdb - -# The working directory. -# -# The DB will be written inside this directory, with the filename specified -# above using the 'dbfilename' configuration directive. -# -# The Append Only File will also be created inside this directory. -# -# Note that you must specify a directory here, not a file name. -dir /data diff --git a/.ddev/vite/vite-server-not-running.html b/.ddev/vite/vite-server-not-running.html deleted file mode 100755 index 63bbc103..00000000 --- a/.ddev/vite/vite-server-not-running.html +++ /dev/null @@ -1,68 +0,0 @@ - - - - - - - vite not running - - - -
-

vite not running

-

- Apparently, you tried to access resources from the vite development server. However, the server is currently not - running. -

-

You can start the server by running the following command in your terminal:

- ddev vite -
- - diff --git a/.ddev/web-build/Dockerfile.vite b/.ddev/web-build/Dockerfile.vite deleted file mode 100755 index b0eb13a0..00000000 --- a/.ddev/web-build/Dockerfile.vite +++ /dev/null @@ -1,2 +0,0 @@ -#ddev-generated -RUN a2enmod proxy_http diff --git a/.gitignore b/.gitignore index 677b4dc5..51a5fcef 100755 --- a/.gitignore +++ b/.gitignore @@ -5,6 +5,8 @@ web/app/mu-plugins/*/ web/app/themes/twentytwentyfour/ web/app/upgrade web/app/cache/* +web/app/languages/plugins/ +web/app/object-cache.php # WordPress web/wp @@ -48,3 +50,9 @@ devenv.local.nix # Gleam build/ + +# Playwright +/test-results/ +/playwright-report/ +/blob-report/ +/playwright/.cache/ diff --git a/.oxlintrc.json b/.oxlintrc.json index 7b935ea7..b3dd9aba 100755 --- a/.oxlintrc.json +++ b/.oxlintrc.json @@ -10,19 +10,7 @@ "style": "warn", "suspicious": "error" }, - "plugins": [ - "eslint-plugin-jsdoc", - "eslint-plugin-promise", - "eslint-plugin-unicorn", - "jsdoc", - "oxc", - "oxc-security", - "promise", - "security", - "typescript", - "typescript-eslint", - "unicorn" - ], + "plugins": ["jsdoc", "promise", "unicorn", "jsdoc", "oxc", "promise", "typescript", "unicorn"], "rules": { "import/export": "error", "no-array-for-each": "off", diff --git a/.vscode/launch.json b/.vscode/launch.json deleted file mode 100755 index b798f5b5..00000000 --- a/.vscode/launch.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "configurations": [ - { - "name": "Listen for Xdebug", - "type": "php", - "request": "launch", - "hostname": "0.0.0.0", - "port": 9003, - "pathMappings": { "/var/www/html": "${workspaceFolder}" }, - "preLaunchTask": "DDEV: Enable Xdebug", - "postDebugTask": "DDEV: Disable Xdebug", - "skipFiles": ["**/vendor/**/*.php", "**/wp-admin/**/*.php", "**/wp-includes/**/*.php", "**/wp-blog-header.php"] - } - ] -} diff --git a/.vscode/settings.json b/.vscode/settings.json deleted file mode 100755 index 8129ac95..00000000 --- a/.vscode/settings.json +++ /dev/null @@ -1,96 +0,0 @@ -{ - "cSpell.words": [ - "backorder", - "backordered", - "backorders", - "chaine", - "cliquée", - "controle", - "controles", - "coordonnee", - "cout", - "COUT", - "couts", - "Crell", - "defaut", - "defini", - "deplie", - "DERNIERE", - "echec", - "Ecoute", - "Ecouteurs", - "Eles", - "emet", - "Emetteurs", - "ENTETE", - "epingle", - "Epingle", - "EPINGLE", - "EPINGLES", - "etat", - "etats", - "ETATS", - "etendu", - "Evenements", - "exts", - "Fenetre", - "FENETRE", - "formatte", - "generique", - "geometricprecision", - "gere", - "glitchtip", - "GLITCHTIP", - "haikuabout", - "haikuatelier", - "idempotency", - "leve", - "methode", - "methodes", - "mobily", - "multiformats", - "paypal", - "phpstan", - "Planifiee", - "prenom", - "presentes", - "problemes", - "Proprietes", - "rafraichissement", - "rapprochee", - "recalcul", - "reinitialise", - "renseignables", - "reponse", - "requete", - "resultat", - "selecteur", - "selecteurs", - "Selectionne", - "Selectionnee", - "Separees", - "Simplifiee", - "souleve", - "specifiques", - "succes", - "Surchargement", - "tabpanel", - "tete", - "tseslint", - "Vali", - "VALIDEE", - "validite", - "Visibilite" - ], - "djlint.pythonPath": "/home/gcch/.local/share/pipxu/venvs/8/bin/python", - "djlint.useVenv": false, - "stylelint.enable": true, - "stylelint.packageManager": "pnpm", - "twiggy.autoInsertSpaces": true, - "twiggy.framework": "ignore", - "twiggy.inlayHints.block": true, - "twiggy.inlayHints.macro": true, - "twiggy.inlayHints.macroArguments": true, - "typescript.tsdk": "node_modules/typescript/lib", - "terminal.integrated.env.osx": {} -} diff --git a/.vscode/tasks.json b/.vscode/tasks.json deleted file mode 100755 index dab30045..00000000 --- a/.vscode/tasks.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "DDEV: Enable Xdebug", - "type": "shell", - "command": "ddev xdebug on", - "presentation": { "reveal": "silent", "close": true } - }, - { - "label": "DDEV: Disable Xdebug", - "type": "shell", - "command": "ddev xdebug off", - "presentation": { "reveal": "silent", "close": true } - } - ] -} diff --git a/.zed/settings.json b/.zed/settings.json new file mode 100644 index 00000000..e69de29b diff --git a/biome.json b/biome.json index 84b182a0..e4547dc9 100755 --- a/biome.json +++ b/biome.json @@ -1,8 +1,15 @@ { - "$schema": "https://biomejs.dev/schemas/1.9.4/schema.json", + "$schema": "https://biomejs.dev/schemas/2.0.4/schema.json", + "assist": { "enabled": false }, "css": { "formatter": { "enabled": false }, "linter": { "enabled": true } }, "files": { - "ignore": ["*.min.js", "vendor", "web/app/plugins", "web/app/themes/haiku-atelier-2024/assets", "web/wp"], + "experimentalScannerIgnores": [ + "*.min.js", + "vendor", + "web/app/plugins", + "web/app/themes/haiku-atelier-2024/assets", + "web/wp" + ], "ignoreUnknown": true, "maxSize": 100000000 }, @@ -10,7 +17,7 @@ "graphql": { "formatter": { "enabled": false }, "linter": { "enabled": true } }, "json": { "formatter": { "enabled": false }, "linter": { "enabled": true } }, "linter": { - "enabled": true, + "enabled": false, "rules": { "complexity": { "noForEach": "off" }, "nursery": { @@ -21,9 +28,21 @@ "options": { "attributes": ["class"], "functions": [""] } } }, - "style": { "recommended": true, "noNonNullAssertion": "off" }, + "style": { + "recommended": true, + "noNonNullAssertion": "off", + "noParameterAssign": "error", + "useAsConstAssertion": "error", + "useDefaultParameterLast": "error", + "useEnumInitializers": "error", + "useSelfClosingElements": "error", + "useSingleVarDeclarator": "error", + "noUnusedTemplateLiteral": "error", + "useNumberNamespace": "error", + "noInferrableTypes": "error", + "noUselessElse": "error" + }, "recommended": true } - }, - "organizeImports": { "enabled": false } + } } diff --git a/bun.lock b/bun.lock index 3cbdb6b6..a5d11d13 100644 --- a/bun.lock +++ b/bun.lock @@ -4,60 +4,67 @@ "": { "name": "haikuatelier.fr", "dependencies": { - "@mobily/ts-belt": "latest", - "@sentry/browser": "latest", - "@swan-io/boxed": "latest", - "a11y-dialog": "latest", - "chalk": "latest", - "lit-html": "latest", - "loglevel": "latest", - "loglevel-plugin-prefix": "latest", - "optics-ts": "latest", - "purify-ts": "latest", - "ts-pattern": "latest", - "valibot": "latest", + "@logtape/logtape": "^1.0.1", + "@mobily/ts-belt": "v4.0.0-rc.5", + "@sentry/browser": "^9.34.0", + "a11y-dialog": "^8.1.4", + "chalk": "^5.4.1", + "lit-html": "^3.3.0", + "loglevel": "^1.9.2", + "loglevel-plugin-prefix": "^0.8.4", + "optics-ts": "^2.4.1", + "purify-ts": "2.1.2", + "ts-pattern": "^5.7.1", + "valibot": "1.1.0", }, "devDependencies": { - "@biomejs/biome": "latest", - "@eslint/js": "latest", - "@prettier/plugin-php": "latest", - "@prettier/plugin-xml": "latest", - "@sentry/core": "latest", - "@swc/cli": "latest", - "@types/node": "latest", - "@vitejs/plugin-legacy": "latest", - "better-typescript-lib": "latest", - "browserslist": "latest", - "eslint": "latest", - "eslint-plugin-oxlint": "latest", - "eslint-plugin-perfectionist": "latest", - "fdir": "latest", - "globals": "latest", - "knip": "latest", - "oxlint": "latest", - "picomatch": "latest", - "prettier": "latest", - "prettier-plugin-pkg": "latest", - "prettier-plugin-sh": "latest", - "sass-embedded": "latest", - "stylelint": "latest", - "stylelint-config-clean-order": "latest", - "stylelint-config-sass-guidelines": "latest", - "stylelint-config-standard-scss": "latest", - "stylelint-declaration-block-no-ignored-properties": "latest", - "stylelint-plugin-logical-css": "latest", - "typescript": "latest", - "typescript-eslint": "latest", - "vite": "latest", - "vite-plugin-manifest-sri": "latest", - "vite-plugin-node-polyfills": "latest", - "vite-plugin-valibot-env": "latest", - "vite-tsconfig-paths": "latest", - "wp-types": "latest", + "@biomejs/biome": "^2.0.6", + "@cspell/dict-fr-fr": "^2.3.0", + "@eslint/js": "^9.30.1", + "@playwright/test": "^1.53.2", + "@prettier/plugin-php": "^0.22.4", + "@prettier/plugin-xml": "^3.4.1", + "@sentry/core": "^9.34.0", + "@swc/cli": "0.7.7", + "@types/eslint__js": "^9.14.0", + "@types/node": "^24.0.10", + "@vitejs/plugin-legacy": "^7.0.0", + "better-typescript-lib": "^2.11.0", + "browserslist": "^4.25.1", + "eslint": "^9.30.1", + "eslint-plugin-oxlint": "^1.5.0", + "eslint-plugin-perfectionist": "^4.15.0", + "fdir": "^6.4.6", + "globals": "^16.3.0", + "knip": "^5.61.3", + "lightningcss-cli": "^1.30.1", + "oxlint": "^1.5.0", + "picomatch": "^4.0.2", + "playwright": "^1.53.2", + "prettier": "^3.6.2", + "prettier-plugin-pkg": "^0.21.1", + "prettier-plugin-sh": "^0.18.0", + "sass-embedded": "^1.89.2", + "stylelint": "^16.21.1", + "stylelint-config-clean-order": "^7.0.0", + "stylelint-config-sass-guidelines": "^12.1.0", + "stylelint-config-standard-scss": "^15.0.1", + "stylelint-declaration-block-no-ignored-properties": "^2.8.0", + "stylelint-plugin-logical-css": "^1.2.3", + "typescript": "5.8.3", + "typescript-eslint": "^8.35.1", + "vite": "^7.0.1", + "vite-plugin-compression2": "^2.2.0", + "vite-plugin-manifest-sri": "^0.2.0", + "vite-plugin-node-polyfills": "^0.23.0", + "vite-plugin-valibot-env": "^1.0.1", + "vite-tsconfig-paths": "^5.1.4", + "wp-types": "^4.68.0", }, }, }, "trustedDependencies": [ + "lightningcss-cli", "core-js", "esbuild", "@biomejs/biome", @@ -66,279 +73,285 @@ "packages": { "@ampproject/remapping": ["@ampproject/remapping@2.3.0", "", { "dependencies": { "@jridgewell/gen-mapping": "^0.3.5", "@jridgewell/trace-mapping": "^0.3.24" } }, "sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw=="], - "@babel/code-frame": ["@babel/code-frame@7.26.2", "", { "dependencies": { "@babel/helper-validator-identifier": "^7.25.9", "js-tokens": "^4.0.0", "picocolors": "^1.0.0" } }, "sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ=="], + "@babel/code-frame": ["@babel/code-frame@7.27.1", "", { "dependencies": { "@babel/helper-validator-identifier": "^7.27.1", "js-tokens": "^4.0.0", "picocolors": "^1.1.1" } }, "sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg=="], - "@babel/compat-data": ["@babel/compat-data@7.26.8", "", {}, "sha512-oH5UPLMWR3L2wEFLnFJ1TZXqHufiTKAiLfqw5zkhS4dKXLJ10yVztfil/twG8EDTA4F/tvVNw9nOl4ZMslB8rQ=="], + "@babel/compat-data": ["@babel/compat-data@7.27.5", "", {}, "sha512-KiRAp/VoJaWkkte84TvUd9qjdbZAdiqyvMxrGl1N6vzFogKmaLgoM3L1kgtLicp2HP5fBJS8JrZKLVIZGVJAVg=="], - "@babel/core": ["@babel/core@7.26.10", "", { "dependencies": { "@ampproject/remapping": "^2.2.0", "@babel/code-frame": "^7.26.2", "@babel/generator": "^7.26.10", "@babel/helper-compilation-targets": "^7.26.5", "@babel/helper-module-transforms": "^7.26.0", "@babel/helpers": "^7.26.10", "@babel/parser": "^7.26.10", "@babel/template": "^7.26.9", "@babel/traverse": "^7.26.10", "@babel/types": "^7.26.10", "convert-source-map": "^2.0.0", "debug": "^4.1.0", "gensync": "^1.0.0-beta.2", "json5": "^2.2.3", "semver": "^6.3.1" } }, "sha512-vMqyb7XCDMPvJFFOaT9kxtiRh42GwlZEg1/uIgtZshS5a/8OaduUfCi7kynKgc3Tw/6Uo2D+db9qBttghhmxwQ=="], + "@babel/core": ["@babel/core@7.27.4", "", { "dependencies": { "@ampproject/remapping": "^2.2.0", "@babel/code-frame": "^7.27.1", "@babel/generator": "^7.27.3", "@babel/helper-compilation-targets": "^7.27.2", "@babel/helper-module-transforms": "^7.27.3", "@babel/helpers": "^7.27.4", "@babel/parser": "^7.27.4", "@babel/template": "^7.27.2", "@babel/traverse": "^7.27.4", "@babel/types": "^7.27.3", "convert-source-map": "^2.0.0", "debug": "^4.1.0", "gensync": "^1.0.0-beta.2", "json5": "^2.2.3", "semver": "^6.3.1" } }, "sha512-bXYxrXFubeYdvB0NhD/NBB3Qi6aZeV20GOWVI47t2dkecCEoneR4NPVcb7abpXDEvejgrUfFtG6vG/zxAKmg+g=="], - "@babel/generator": ["@babel/generator@7.27.0", "", { "dependencies": { "@babel/parser": "^7.27.0", "@babel/types": "^7.27.0", "@jridgewell/gen-mapping": "^0.3.5", "@jridgewell/trace-mapping": "^0.3.25", "jsesc": "^3.0.2" } }, "sha512-VybsKvpiN1gU1sdMZIp7FcqphVVKEwcuj02x73uvcHE0PTihx1nlBcowYWhDwjpoAXRv43+gDzyggGnn1XZhVw=="], + "@babel/generator": ["@babel/generator@7.27.5", "", { "dependencies": { "@babel/parser": "^7.27.5", "@babel/types": "^7.27.3", "@jridgewell/gen-mapping": "^0.3.5", "@jridgewell/trace-mapping": "^0.3.25", "jsesc": "^3.0.2" } }, "sha512-ZGhA37l0e/g2s1Cnzdix0O3aLYm66eF8aufiVteOgnwxgnRP8GoyMj7VWsgWnQbVKXyge7hqrFh2K2TQM6t1Hw=="], - "@babel/helper-annotate-as-pure": ["@babel/helper-annotate-as-pure@7.25.9", "", { "dependencies": { "@babel/types": "^7.25.9" } }, "sha512-gv7320KBUFJz1RnylIg5WWYPRXKZ884AGkYpgpWW02TH66Dl+HaC1t1CKd0z3R4b6hdYEcmrNZHUmfCP+1u3/g=="], + "@babel/helper-annotate-as-pure": ["@babel/helper-annotate-as-pure@7.27.3", "", { "dependencies": { "@babel/types": "^7.27.3" } }, "sha512-fXSwMQqitTGeHLBC08Eq5yXz2m37E4pJX1qAU1+2cNedz/ifv/bVXft90VeSav5nFO61EcNgwr0aJxbyPaWBPg=="], - "@babel/helper-compilation-targets": ["@babel/helper-compilation-targets@7.27.0", "", { "dependencies": { "@babel/compat-data": "^7.26.8", "@babel/helper-validator-option": "^7.25.9", "browserslist": "^4.24.0", "lru-cache": "^5.1.1", "semver": "^6.3.1" } }, "sha512-LVk7fbXml0H2xH34dFzKQ7TDZ2G4/rVTOrq9V+icbbadjbVxxeFeDsNHv2SrZeWoA+6ZiTyWYWtScEIW07EAcA=="], + "@babel/helper-compilation-targets": ["@babel/helper-compilation-targets@7.27.2", "", { "dependencies": { "@babel/compat-data": "^7.27.2", "@babel/helper-validator-option": "^7.27.1", "browserslist": "^4.24.0", "lru-cache": "^5.1.1", "semver": "^6.3.1" } }, "sha512-2+1thGUUWWjLTYTHZWK1n8Yga0ijBz1XAhUXcKy81rd5g6yh7hGqMp45v7cadSbEHc9G3OTv45SyneRN3ps4DQ=="], - "@babel/helper-create-class-features-plugin": ["@babel/helper-create-class-features-plugin@7.27.0", "", { "dependencies": { "@babel/helper-annotate-as-pure": "^7.25.9", "@babel/helper-member-expression-to-functions": "^7.25.9", "@babel/helper-optimise-call-expression": "^7.25.9", "@babel/helper-replace-supers": "^7.26.5", "@babel/helper-skip-transparent-expression-wrappers": "^7.25.9", "@babel/traverse": "^7.27.0", "semver": "^6.3.1" }, "peerDependencies": { "@babel/core": "^7.0.0" } }, "sha512-vSGCvMecvFCd/BdpGlhpXYNhhC4ccxyvQWpbGL4CWbvfEoLFWUZuSuf7s9Aw70flgQF+6vptvgK2IfOnKlRmBg=="], + "@babel/helper-create-class-features-plugin": ["@babel/helper-create-class-features-plugin@7.27.1", "", { "dependencies": { "@babel/helper-annotate-as-pure": "^7.27.1", "@babel/helper-member-expression-to-functions": "^7.27.1", "@babel/helper-optimise-call-expression": "^7.27.1", "@babel/helper-replace-supers": "^7.27.1", "@babel/helper-skip-transparent-expression-wrappers": "^7.27.1", "@babel/traverse": "^7.27.1", "semver": "^6.3.1" }, "peerDependencies": { "@babel/core": "^7.0.0" } }, "sha512-QwGAmuvM17btKU5VqXfb+Giw4JcN0hjuufz3DYnpeVDvZLAObloM77bhMXiqry3Iio+Ai4phVRDwl6WU10+r5A=="], - "@babel/helper-create-regexp-features-plugin": ["@babel/helper-create-regexp-features-plugin@7.27.0", "", { "dependencies": { "@babel/helper-annotate-as-pure": "^7.25.9", "regexpu-core": "^6.2.0", "semver": "^6.3.1" }, "peerDependencies": { "@babel/core": "^7.0.0" } }, "sha512-fO8l08T76v48BhpNRW/nQ0MxfnSdoSKUJBMjubOAYffsVuGG5qOfMq7N6Es7UJvi7Y8goXXo07EfcHZXDPuELQ=="], + "@babel/helper-create-regexp-features-plugin": ["@babel/helper-create-regexp-features-plugin@7.27.1", "", { "dependencies": { "@babel/helper-annotate-as-pure": "^7.27.1", "regexpu-core": "^6.2.0", "semver": "^6.3.1" }, "peerDependencies": { "@babel/core": "^7.0.0" } }, "sha512-uVDC72XVf8UbrH5qQTc18Agb8emwjTiZrQE11Nv3CuBEZmVvTwwE9CBUEvHku06gQCAyYf8Nv6ja1IN+6LMbxQ=="], "@babel/helper-define-polyfill-provider": ["@babel/helper-define-polyfill-provider@0.6.4", "", { "dependencies": { "@babel/helper-compilation-targets": "^7.22.6", "@babel/helper-plugin-utils": "^7.22.5", "debug": "^4.1.1", "lodash.debounce": "^4.0.8", "resolve": "^1.14.2" }, "peerDependencies": { "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" } }, "sha512-jljfR1rGnXXNWnmQg2K3+bvhkxB51Rl32QRaOTuwwjviGrHzIbSc8+x9CpraDtbT7mfyjXObULP4w/adunNwAw=="], - "@babel/helper-member-expression-to-functions": ["@babel/helper-member-expression-to-functions@7.25.9", "", { "dependencies": { "@babel/traverse": "^7.25.9", "@babel/types": "^7.25.9" } }, "sha512-wbfdZ9w5vk0C0oyHqAJbc62+vet5prjj01jjJ8sKn3j9h3MQQlflEdXYvuqRWjHnM12coDEqiC1IRCi0U/EKwQ=="], + "@babel/helper-member-expression-to-functions": ["@babel/helper-member-expression-to-functions@7.27.1", "", { "dependencies": { "@babel/traverse": "^7.27.1", "@babel/types": "^7.27.1" } }, "sha512-E5chM8eWjTp/aNoVpcbfM7mLxu9XGLWYise2eBKGQomAk/Mb4XoxyqXTZbuTohbsl8EKqdlMhnDI2CCLfcs9wA=="], - "@babel/helper-module-imports": ["@babel/helper-module-imports@7.25.9", "", { "dependencies": { "@babel/traverse": "^7.25.9", "@babel/types": "^7.25.9" } }, "sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw=="], + "@babel/helper-module-imports": ["@babel/helper-module-imports@7.27.1", "", { "dependencies": { "@babel/traverse": "^7.27.1", "@babel/types": "^7.27.1" } }, "sha512-0gSFWUPNXNopqtIPQvlD5WgXYI5GY2kP2cCvoT8kczjbfcfuIljTbcWrulD1CIPIX2gt1wghbDy08yE1p+/r3w=="], - "@babel/helper-module-transforms": ["@babel/helper-module-transforms@7.26.0", "", { "dependencies": { "@babel/helper-module-imports": "^7.25.9", "@babel/helper-validator-identifier": "^7.25.9", "@babel/traverse": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0" } }, "sha512-xO+xu6B5K2czEnQye6BHA7DolFFmS3LB7stHZFaOLb1pAwO1HWLS8fXA+eh0A2yIvltPVmx3eNNDBJA2SLHXFw=="], + "@babel/helper-module-transforms": ["@babel/helper-module-transforms@7.27.3", "", { "dependencies": { "@babel/helper-module-imports": "^7.27.1", "@babel/helper-validator-identifier": "^7.27.1", "@babel/traverse": "^7.27.3" }, "peerDependencies": { "@babel/core": "^7.0.0" } }, "sha512-dSOvYwvyLsWBeIRyOeHXp5vPj5l1I011r52FM1+r1jCERv+aFXYk4whgQccYEGYxK2H3ZAIA8nuPkQ0HaUo3qg=="], - "@babel/helper-optimise-call-expression": ["@babel/helper-optimise-call-expression@7.25.9", "", { "dependencies": { "@babel/types": "^7.25.9" } }, "sha512-FIpuNaz5ow8VyrYcnXQTDRGvV6tTjkNtCK/RYNDXGSLlUD6cBuQTSw43CShGxjvfBTfcUA/r6UhUCbtYqkhcuQ=="], + "@babel/helper-optimise-call-expression": ["@babel/helper-optimise-call-expression@7.27.1", "", { "dependencies": { "@babel/types": "^7.27.1" } }, "sha512-URMGH08NzYFhubNSGJrpUEphGKQwMQYBySzat5cAByY1/YgIRkULnIy3tAMeszlL/so2HbeilYloUmSpd7GdVw=="], - "@babel/helper-plugin-utils": ["@babel/helper-plugin-utils@7.26.5", "", {}, "sha512-RS+jZcRdZdRFzMyr+wcsaqOmld1/EqTghfaBGQQd/WnRdzdlvSZ//kF7U8VQTxf1ynZ4cjUcYgjVGx13ewNPMg=="], + "@babel/helper-plugin-utils": ["@babel/helper-plugin-utils@7.27.1", "", {}, "sha512-1gn1Up5YXka3YYAHGKpbideQ5Yjf1tDa9qYcgysz+cNCXukyLl6DjPXhD3VRwSb8c0J9tA4b2+rHEZtc6R0tlw=="], - "@babel/helper-remap-async-to-generator": ["@babel/helper-remap-async-to-generator@7.25.9", "", { "dependencies": { "@babel/helper-annotate-as-pure": "^7.25.9", "@babel/helper-wrap-function": "^7.25.9", "@babel/traverse": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0" } }, "sha512-IZtukuUeBbhgOcaW2s06OXTzVNJR0ybm4W5xC1opWFFJMZbwRj5LCk+ByYH7WdZPZTt8KnFwA8pvjN2yqcPlgw=="], + "@babel/helper-remap-async-to-generator": ["@babel/helper-remap-async-to-generator@7.27.1", "", { "dependencies": { "@babel/helper-annotate-as-pure": "^7.27.1", "@babel/helper-wrap-function": "^7.27.1", "@babel/traverse": "^7.27.1" }, "peerDependencies": { "@babel/core": "^7.0.0" } }, "sha512-7fiA521aVw8lSPeI4ZOD3vRFkoqkJcS+z4hFo82bFSH/2tNd6eJ5qCVMS5OzDmZh/kaHQeBaeyxK6wljcPtveA=="], - "@babel/helper-replace-supers": ["@babel/helper-replace-supers@7.26.5", "", { "dependencies": { "@babel/helper-member-expression-to-functions": "^7.25.9", "@babel/helper-optimise-call-expression": "^7.25.9", "@babel/traverse": "^7.26.5" }, "peerDependencies": { "@babel/core": "^7.0.0" } }, "sha512-bJ6iIVdYX1YooY2X7w1q6VITt+LnUILtNk7zT78ykuwStx8BauCzxvFqFaHjOpW1bVnSUM1PN1f0p5P21wHxvg=="], + "@babel/helper-replace-supers": ["@babel/helper-replace-supers@7.27.1", "", { "dependencies": { "@babel/helper-member-expression-to-functions": "^7.27.1", "@babel/helper-optimise-call-expression": "^7.27.1", "@babel/traverse": "^7.27.1" }, "peerDependencies": { "@babel/core": "^7.0.0" } }, "sha512-7EHz6qDZc8RYS5ElPoShMheWvEgERonFCs7IAonWLLUTXW59DP14bCZt89/GKyreYn8g3S83m21FelHKbeDCKA=="], - "@babel/helper-skip-transparent-expression-wrappers": ["@babel/helper-skip-transparent-expression-wrappers@7.25.9", "", { "dependencies": { "@babel/traverse": "^7.25.9", "@babel/types": "^7.25.9" } }, "sha512-K4Du3BFa3gvyhzgPcntrkDgZzQaq6uozzcpGbOO1OEJaI+EJdqWIMTLgFgQf6lrfiDFo5FU+BxKepI9RmZqahA=="], + "@babel/helper-skip-transparent-expression-wrappers": ["@babel/helper-skip-transparent-expression-wrappers@7.27.1", "", { "dependencies": { "@babel/traverse": "^7.27.1", "@babel/types": "^7.27.1" } }, "sha512-Tub4ZKEXqbPjXgWLl2+3JpQAYBJ8+ikpQ2Ocj/q/r0LwE3UhENh7EUabyHjz2kCEsrRY83ew2DQdHluuiDQFzg=="], - "@babel/helper-string-parser": ["@babel/helper-string-parser@7.25.9", "", {}, "sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA=="], + "@babel/helper-string-parser": ["@babel/helper-string-parser@7.27.1", "", {}, "sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA=="], - "@babel/helper-validator-identifier": ["@babel/helper-validator-identifier@7.25.9", "", {}, "sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ=="], + "@babel/helper-validator-identifier": ["@babel/helper-validator-identifier@7.27.1", "", {}, "sha512-D2hP9eA+Sqx1kBZgzxZh0y1trbuU+JoDkiEwqhQ36nodYqJwyEIhPSdMNd7lOm/4io72luTPWH20Yda0xOuUow=="], - "@babel/helper-validator-option": ["@babel/helper-validator-option@7.25.9", "", {}, "sha512-e/zv1co8pp55dNdEcCynfj9X7nyUKUXoUEwfXqaZt0omVOmDe9oOTdKStH4GmAw6zxMFs50ZayuMfHDKlO7Tfw=="], + "@babel/helper-validator-option": ["@babel/helper-validator-option@7.27.1", "", {}, "sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg=="], - "@babel/helper-wrap-function": ["@babel/helper-wrap-function@7.25.9", "", { "dependencies": { "@babel/template": "^7.25.9", "@babel/traverse": "^7.25.9", "@babel/types": "^7.25.9" } }, "sha512-ETzz9UTjQSTmw39GboatdymDq4XIQbR8ySgVrylRhPOFpsd+JrKHIuF0de7GCWmem+T4uC5z7EZguod7Wj4A4g=="], + "@babel/helper-wrap-function": ["@babel/helper-wrap-function@7.27.1", "", { "dependencies": { "@babel/template": "^7.27.1", "@babel/traverse": "^7.27.1", "@babel/types": "^7.27.1" } }, "sha512-NFJK2sHUvrjo8wAU/nQTWU890/zB2jj0qBcCbZbbf+005cAsv6tMjXz31fBign6M5ov1o0Bllu+9nbqkfsjjJQ=="], - "@babel/helpers": ["@babel/helpers@7.27.0", "", { "dependencies": { "@babel/template": "^7.27.0", "@babel/types": "^7.27.0" } }, "sha512-U5eyP/CTFPuNE3qk+WZMxFkp/4zUzdceQlfzf7DdGdhp+Fezd7HD+i8Y24ZuTMKX3wQBld449jijbGq6OdGNQg=="], + "@babel/helpers": ["@babel/helpers@7.27.6", "", { "dependencies": { "@babel/template": "^7.27.2", "@babel/types": "^7.27.6" } }, "sha512-muE8Tt8M22638HU31A3CgfSUciwz1fhATfoVai05aPXGor//CdWDCbnlY1yvBPo07njuVOCNGCSp/GTt12lIug=="], - "@babel/parser": ["@babel/parser@7.27.0", "", { "dependencies": { "@babel/types": "^7.27.0" }, "bin": "./bin/babel-parser.js" }, "sha512-iaepho73/2Pz7w2eMS0Q5f83+0RKI7i4xmiYeBmDzfRVbQtTOG7Ts0S4HzJVsTMGI9keU8rNfuZr8DKfSt7Yyg=="], + "@babel/parser": ["@babel/parser@7.27.5", "", { "dependencies": { "@babel/types": "^7.27.3" }, "bin": "./bin/babel-parser.js" }, "sha512-OsQd175SxWkGlzbny8J3K8TnnDD0N3lrIUtB92xwyRpzaenGZhxDvxN/JgU00U3CDZNj9tPuDJ5H0WS4Nt3vKg=="], - "@babel/plugin-bugfix-firefox-class-in-computed-class-key": ["@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.25.9", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.25.9", "@babel/traverse": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0" } }, "sha512-ZkRyVkThtxQ/J6nv3JFYv1RYY+JT5BvU0y3k5bWrmuG4woXypRa4PXmm9RhOwodRkYFWqC0C0cqcJ4OqR7kW+g=="], + "@babel/plugin-bugfix-firefox-class-in-computed-class-key": ["@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.27.1", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.27.1", "@babel/traverse": "^7.27.1" }, "peerDependencies": { "@babel/core": "^7.0.0" } }, "sha512-QPG3C9cCVRQLxAVwmefEmwdTanECuUBMQZ/ym5kiw3XKCGA7qkuQLcjWWHcrD/GKbn/WmJwaezfuuAOcyKlRPA=="], - "@babel/plugin-bugfix-safari-class-field-initializer-scope": ["@babel/plugin-bugfix-safari-class-field-initializer-scope@7.25.9", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0" } }, "sha512-MrGRLZxLD/Zjj0gdU15dfs+HH/OXvnw/U4jJD8vpcP2CJQapPEv1IWwjc/qMg7ItBlPwSv1hRBbb7LeuANdcnw=="], + "@babel/plugin-bugfix-safari-class-field-initializer-scope": ["@babel/plugin-bugfix-safari-class-field-initializer-scope@7.27.1", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.27.1" }, "peerDependencies": { "@babel/core": "^7.0.0" } }, "sha512-qNeq3bCKnGgLkEXUuFry6dPlGfCdQNZbn7yUAPCInwAJHMU7THJfrBSozkcWq5sNM6RcF3S8XyQL2A52KNR9IA=="], - "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": ["@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.25.9", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0" } }, "sha512-2qUwwfAFpJLZqxd02YW9btUCZHl+RFvdDkNfZwaIJrvB8Tesjsk8pEQkTvGwZXLqXUx/2oyY3ySRhm6HOXuCug=="], + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": ["@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.27.1", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.27.1" }, "peerDependencies": { "@babel/core": "^7.0.0" } }, "sha512-g4L7OYun04N1WyqMNjldFwlfPCLVkgB54A/YCXICZYBsvJJE3kByKv9c9+R/nAfmIfjl2rKYLNyMHboYbZaWaA=="], - "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": ["@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.25.9", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.25.9", "@babel/helper-skip-transparent-expression-wrappers": "^7.25.9", "@babel/plugin-transform-optional-chaining": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.13.0" } }, "sha512-6xWgLZTJXwilVjlnV7ospI3xi+sl8lN8rXXbBD6vYn3UYDlGsag8wrZkKcSI8G6KgqKP7vNFaDgeDnfAABq61g=="], + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": ["@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.27.1", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.27.1", "@babel/helper-skip-transparent-expression-wrappers": "^7.27.1", "@babel/plugin-transform-optional-chaining": "^7.27.1" }, "peerDependencies": { "@babel/core": "^7.13.0" } }, "sha512-oO02gcONcD5O1iTLi/6frMJBIwWEHceWGSGqrpCmEL8nogiS6J9PBlE48CaK20/Jx1LuRml9aDftLgdjXT8+Cw=="], - "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": ["@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.25.9", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.25.9", "@babel/traverse": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0" } }, "sha512-aLnMXYPnzwwqhYSCyXfKkIkYgJ8zv9RK+roo9DkTXz38ynIhd9XCbN08s3MGvqL2MYGVUGdRQLL/JqBIeJhJBg=="], + "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": ["@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.27.1", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.27.1", "@babel/traverse": "^7.27.1" }, "peerDependencies": { "@babel/core": "^7.0.0" } }, "sha512-6BpaYGDavZqkI6yT+KSPdpZFfpnd68UKXbcjI9pJ13pvHhPrCKWOOLp+ysvMeA+DxnhuPpgIaRpxRxo5A9t5jw=="], "@babel/plugin-proposal-private-property-in-object": ["@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2", "", { "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w=="], - "@babel/plugin-syntax-import-assertions": ["@babel/plugin-syntax-import-assertions@7.26.0", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-QCWT5Hh830hK5EQa7XzuqIkQU9tT/whqbDz7kuaZMHFl1inRRg7JnuAEOQ0Ur0QUl0NufCk1msK2BeY79Aj/eg=="], + "@babel/plugin-syntax-import-assertions": ["@babel/plugin-syntax-import-assertions@7.27.1", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.27.1" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-UT/Jrhw57xg4ILHLFnzFpPDlMbcdEicaAtjPQpbj9wa8T4r5KVWCimHcL/460g8Ht0DMxDyjsLgiWSkVjnwPFg=="], - "@babel/plugin-syntax-import-attributes": ["@babel/plugin-syntax-import-attributes@7.26.0", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-e2dttdsJ1ZTpi3B9UYGLw41hifAubg19AtCu/2I/F1QNVclOBr1dYpTdmdyZ84Xiz43BS/tCUkMAZNLv12Pi+A=="], + "@babel/plugin-syntax-import-attributes": ["@babel/plugin-syntax-import-attributes@7.27.1", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.27.1" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-oFT0FrKHgF53f4vOsZGi2Hh3I35PfSmVs4IBFLFj4dnafP+hIWDLg3VyKmUHfLoLHlyxY4C7DGtmHuJgn+IGww=="], "@babel/plugin-syntax-unicode-sets-regex": ["@babel/plugin-syntax-unicode-sets-regex@7.18.6", "", { "dependencies": { "@babel/helper-create-regexp-features-plugin": "^7.18.6", "@babel/helper-plugin-utils": "^7.18.6" }, "peerDependencies": { "@babel/core": "^7.0.0" } }, "sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg=="], - "@babel/plugin-transform-arrow-functions": ["@babel/plugin-transform-arrow-functions@7.25.9", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-6jmooXYIwn9ca5/RylZADJ+EnSxVUS5sjeJ9UPk6RWRzXCmOJCy6dqItPJFpw2cuCangPK4OYr5uhGKcmrm5Qg=="], + "@babel/plugin-transform-arrow-functions": ["@babel/plugin-transform-arrow-functions@7.27.1", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.27.1" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-8Z4TGic6xW70FKThA5HYEKKyBpOOsucTOD1DjU3fZxDg+K3zBJcXMFnt/4yQiZnf5+MiOMSXQ9PaEK/Ilh1DeA=="], - "@babel/plugin-transform-async-generator-functions": ["@babel/plugin-transform-async-generator-functions@7.26.8", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.26.5", "@babel/helper-remap-async-to-generator": "^7.25.9", "@babel/traverse": "^7.26.8" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-He9Ej2X7tNf2zdKMAGOsmg2MrFc+hfoAhd3po4cWfo/NWjzEAKa0oQruj1ROVUdl0e6fb6/kE/G3SSxE0lRJOg=="], + "@babel/plugin-transform-async-generator-functions": ["@babel/plugin-transform-async-generator-functions@7.27.1", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.27.1", "@babel/helper-remap-async-to-generator": "^7.27.1", "@babel/traverse": "^7.27.1" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-eST9RrwlpaoJBDHShc+DS2SG4ATTi2MYNb4OxYkf3n+7eb49LWpnS+HSpVfW4x927qQwgk8A2hGNVaajAEw0EA=="], - "@babel/plugin-transform-async-to-generator": ["@babel/plugin-transform-async-to-generator@7.25.9", "", { "dependencies": { "@babel/helper-module-imports": "^7.25.9", "@babel/helper-plugin-utils": "^7.25.9", "@babel/helper-remap-async-to-generator": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-NT7Ejn7Z/LjUH0Gv5KsBCxh7BH3fbLTV0ptHvpeMvrt3cPThHfJfst9Wrb7S8EvJ7vRTFI7z+VAvFVEQn/m5zQ=="], + "@babel/plugin-transform-async-to-generator": ["@babel/plugin-transform-async-to-generator@7.27.1", "", { "dependencies": { "@babel/helper-module-imports": "^7.27.1", "@babel/helper-plugin-utils": "^7.27.1", "@babel/helper-remap-async-to-generator": "^7.27.1" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-NREkZsZVJS4xmTr8qzE5y8AfIPqsdQfRuUiLRTEzb7Qii8iFWCyDKaUV2c0rCuh4ljDZ98ALHP/PetiBV2nddA=="], - "@babel/plugin-transform-block-scoped-functions": ["@babel/plugin-transform-block-scoped-functions@7.26.5", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.26.5" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-chuTSY+hq09+/f5lMj8ZSYgCFpppV2CbYrhNFJ1BFoXpiWPnnAb7R0MqrafCpN8E1+YRrtM1MXZHJdIx8B6rMQ=="], + "@babel/plugin-transform-block-scoped-functions": ["@babel/plugin-transform-block-scoped-functions@7.27.1", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.27.1" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-cnqkuOtZLapWYZUYM5rVIdv1nXYuFVIltZ6ZJ7nIj585QsjKM5dhL2Fu/lICXZ1OyIAFc7Qy+bvDAtTXqGrlhg=="], - "@babel/plugin-transform-block-scoping": ["@babel/plugin-transform-block-scoping@7.27.0", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.26.5" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-u1jGphZ8uDI2Pj/HJj6YQ6XQLZCNjOlprjxB5SVz6rq2T6SwAR+CdrWK0CP7F+9rDVMXdB0+r6Am5G5aobOjAQ=="], + "@babel/plugin-transform-block-scoping": ["@babel/plugin-transform-block-scoping@7.27.5", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.27.1" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-JF6uE2s67f0y2RZcm2kpAUEbD50vH62TyWVebxwHAlbSdM49VqPz8t4a1uIjp4NIOIZ4xzLfjY5emt/RCyC7TQ=="], - "@babel/plugin-transform-class-properties": ["@babel/plugin-transform-class-properties@7.25.9", "", { "dependencies": { "@babel/helper-create-class-features-plugin": "^7.25.9", "@babel/helper-plugin-utils": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-bbMAII8GRSkcd0h0b4X+36GksxuheLFjP65ul9w6C3KgAamI3JqErNgSrosX6ZPj+Mpim5VvEbawXxJCyEUV3Q=="], + "@babel/plugin-transform-class-properties": ["@babel/plugin-transform-class-properties@7.27.1", "", { "dependencies": { "@babel/helper-create-class-features-plugin": "^7.27.1", "@babel/helper-plugin-utils": "^7.27.1" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-D0VcalChDMtuRvJIu3U/fwWjf8ZMykz5iZsg77Nuj821vCKI3zCyRLwRdWbsuJ/uRwZhZ002QtCqIkwC/ZkvbA=="], - "@babel/plugin-transform-class-static-block": ["@babel/plugin-transform-class-static-block@7.26.0", "", { "dependencies": { "@babel/helper-create-class-features-plugin": "^7.25.9", "@babel/helper-plugin-utils": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.12.0" } }, "sha512-6J2APTs7BDDm+UMqP1useWqhcRAXo0WIoVj26N7kPFB6S73Lgvyka4KTZYIxtgYXiN5HTyRObA72N2iu628iTQ=="], + "@babel/plugin-transform-class-static-block": ["@babel/plugin-transform-class-static-block@7.27.1", "", { "dependencies": { "@babel/helper-create-class-features-plugin": "^7.27.1", "@babel/helper-plugin-utils": "^7.27.1" }, "peerDependencies": { "@babel/core": "^7.12.0" } }, "sha512-s734HmYU78MVzZ++joYM+NkJusItbdRcbm+AGRgJCt3iA+yux0QpD9cBVdz3tKyrjVYWRl7j0mHSmv4lhV0aoA=="], - "@babel/plugin-transform-classes": ["@babel/plugin-transform-classes@7.25.9", "", { "dependencies": { "@babel/helper-annotate-as-pure": "^7.25.9", "@babel/helper-compilation-targets": "^7.25.9", "@babel/helper-plugin-utils": "^7.25.9", "@babel/helper-replace-supers": "^7.25.9", "@babel/traverse": "^7.25.9", "globals": "^11.1.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-mD8APIXmseE7oZvZgGABDyM34GUmK45Um2TXiBUt7PnuAxrgoSVf123qUzPxEr/+/BHrRn5NMZCdE2m/1F8DGg=="], + "@babel/plugin-transform-classes": ["@babel/plugin-transform-classes@7.27.1", "", { "dependencies": { "@babel/helper-annotate-as-pure": "^7.27.1", "@babel/helper-compilation-targets": "^7.27.1", "@babel/helper-plugin-utils": "^7.27.1", "@babel/helper-replace-supers": "^7.27.1", "@babel/traverse": "^7.27.1", "globals": "^11.1.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-7iLhfFAubmpeJe/Wo2TVuDrykh/zlWXLzPNdL0Jqn/Xu8R3QQ8h9ff8FQoISZOsw74/HFqFI7NX63HN7QFIHKA=="], - "@babel/plugin-transform-computed-properties": ["@babel/plugin-transform-computed-properties@7.25.9", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.25.9", "@babel/template": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-HnBegGqXZR12xbcTHlJ9HGxw1OniltT26J5YpfruGqtUHlz/xKf/G2ak9e+t0rVqrjXa9WOhvYPz1ERfMj23AA=="], + "@babel/plugin-transform-computed-properties": ["@babel/plugin-transform-computed-properties@7.27.1", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.27.1", "@babel/template": "^7.27.1" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-lj9PGWvMTVksbWiDT2tW68zGS/cyo4AkZ/QTp0sQT0mjPopCmrSkzxeXkznjqBxzDI6TclZhOJbBmbBLjuOZUw=="], - "@babel/plugin-transform-destructuring": ["@babel/plugin-transform-destructuring@7.25.9", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-WkCGb/3ZxXepmMiX101nnGiU+1CAdut8oHyEOHxkKuS1qKpU2SMXE2uSvfz8PBuLd49V6LEsbtyPhWC7fnkgvQ=="], + "@babel/plugin-transform-destructuring": ["@babel/plugin-transform-destructuring@7.27.3", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.27.1" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-s4Jrok82JpiaIprtY2nHsYmrThKvvwgHwjgd7UMiYhZaN0asdXNLr0y+NjTfkA7SyQE5i2Fb7eawUOZmLvyqOA=="], - "@babel/plugin-transform-dotall-regex": ["@babel/plugin-transform-dotall-regex@7.25.9", "", { "dependencies": { "@babel/helper-create-regexp-features-plugin": "^7.25.9", "@babel/helper-plugin-utils": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-t7ZQ7g5trIgSRYhI9pIJtRl64KHotutUJsh4Eze5l7olJv+mRSg4/MmbZ0tv1eeqRbdvo/+trvJD/Oc5DmW2cA=="], + "@babel/plugin-transform-dotall-regex": ["@babel/plugin-transform-dotall-regex@7.27.1", "", { "dependencies": { "@babel/helper-create-regexp-features-plugin": "^7.27.1", "@babel/helper-plugin-utils": "^7.27.1" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-gEbkDVGRvjj7+T1ivxrfgygpT7GUd4vmODtYpbs0gZATdkX8/iSnOtZSxiZnsgm1YjTgjI6VKBGSJJevkrclzw=="], - "@babel/plugin-transform-duplicate-keys": ["@babel/plugin-transform-duplicate-keys@7.25.9", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-LZxhJ6dvBb/f3x8xwWIuyiAHy56nrRG3PeYTpBkkzkYRRQ6tJLu68lEF5VIqMUZiAV7a8+Tb78nEoMCMcqjXBw=="], + "@babel/plugin-transform-duplicate-keys": ["@babel/plugin-transform-duplicate-keys@7.27.1", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.27.1" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-MTyJk98sHvSs+cvZ4nOauwTTG1JeonDjSGvGGUNHreGQns+Mpt6WX/dVzWBHgg+dYZhkC4X+zTDfkTU+Vy9y7Q=="], - "@babel/plugin-transform-duplicate-named-capturing-groups-regex": ["@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.25.9", "", { "dependencies": { "@babel/helper-create-regexp-features-plugin": "^7.25.9", "@babel/helper-plugin-utils": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0" } }, "sha512-0UfuJS0EsXbRvKnwcLjFtJy/Sxc5J5jhLHnFhy7u4zih97Hz6tJkLU+O+FMMrNZrosUPxDi6sYxJ/EA8jDiAog=="], + "@babel/plugin-transform-duplicate-named-capturing-groups-regex": ["@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.27.1", "", { "dependencies": { "@babel/helper-create-regexp-features-plugin": "^7.27.1", "@babel/helper-plugin-utils": "^7.27.1" }, "peerDependencies": { "@babel/core": "^7.0.0" } }, "sha512-hkGcueTEzuhB30B3eJCbCYeCaaEQOmQR0AdvzpD4LoN0GXMWzzGSuRrxR2xTnCrvNbVwK9N6/jQ92GSLfiZWoQ=="], - "@babel/plugin-transform-dynamic-import": ["@babel/plugin-transform-dynamic-import@7.25.9", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-GCggjexbmSLaFhqsojeugBpeaRIgWNTcgKVq/0qIteFEqY2A+b9QidYadrWlnbWQUrW5fn+mCvf3tr7OeBFTyg=="], + "@babel/plugin-transform-dynamic-import": ["@babel/plugin-transform-dynamic-import@7.27.1", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.27.1" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-MHzkWQcEmjzzVW9j2q8LGjwGWpG2mjwaaB0BNQwst3FIjqsg8Ct/mIZlvSPJvfi9y2AC8mi/ktxbFVL9pZ1I4A=="], - "@babel/plugin-transform-exponentiation-operator": ["@babel/plugin-transform-exponentiation-operator@7.26.3", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-7CAHcQ58z2chuXPWblnn1K6rLDnDWieghSOEmqQsrBenH0P9InCUtOJYD89pvngljmZlJcz3fcmgYsXFNGa1ZQ=="], + "@babel/plugin-transform-exponentiation-operator": ["@babel/plugin-transform-exponentiation-operator@7.27.1", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.27.1" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-uspvXnhHvGKf2r4VVtBpeFnuDWsJLQ6MF6lGJLC89jBR1uoVeqM416AZtTuhTezOfgHicpJQmoD5YUakO/YmXQ=="], - "@babel/plugin-transform-export-namespace-from": ["@babel/plugin-transform-export-namespace-from@7.25.9", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-2NsEz+CxzJIVOPx2o9UsW1rXLqtChtLoVnwYHHiB04wS5sgn7mrV45fWMBX0Kk+ub9uXytVYfNP2HjbVbCB3Ww=="], + "@babel/plugin-transform-export-namespace-from": ["@babel/plugin-transform-export-namespace-from@7.27.1", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.27.1" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-tQvHWSZ3/jH2xuq/vZDy0jNn+ZdXJeM8gHvX4lnJmsc3+50yPlWdZXIc5ay+umX+2/tJIqHqiEqcJvxlmIvRvQ=="], - "@babel/plugin-transform-for-of": ["@babel/plugin-transform-for-of@7.26.9", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.26.5", "@babel/helper-skip-transparent-expression-wrappers": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-Hry8AusVm8LW5BVFgiyUReuoGzPUpdHQQqJY5bZnbbf+ngOHWuCuYFKw/BqaaWlvEUrF91HMhDtEaI1hZzNbLg=="], + "@babel/plugin-transform-for-of": ["@babel/plugin-transform-for-of@7.27.1", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.27.1", "@babel/helper-skip-transparent-expression-wrappers": "^7.27.1" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-BfbWFFEJFQzLCQ5N8VocnCtA8J1CLkNTe2Ms2wocj75dd6VpiqS5Z5quTYcUoo4Yq+DN0rtikODccuv7RU81sw=="], - "@babel/plugin-transform-function-name": ["@babel/plugin-transform-function-name@7.25.9", "", { "dependencies": { "@babel/helper-compilation-targets": "^7.25.9", "@babel/helper-plugin-utils": "^7.25.9", "@babel/traverse": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-8lP+Yxjv14Vc5MuWBpJsoUCd3hD6V9DgBon2FVYL4jJgbnVQ9fTgYmonchzZJOVNgzEgbxp4OwAf6xz6M/14XA=="], + "@babel/plugin-transform-function-name": ["@babel/plugin-transform-function-name@7.27.1", "", { "dependencies": { "@babel/helper-compilation-targets": "^7.27.1", "@babel/helper-plugin-utils": "^7.27.1", "@babel/traverse": "^7.27.1" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-1bQeydJF9Nr1eBCMMbC+hdwmRlsv5XYOMu03YSWFwNs0HsAmtSxxF1fyuYPqemVldVyFmlCU7w8UE14LupUSZQ=="], - "@babel/plugin-transform-json-strings": ["@babel/plugin-transform-json-strings@7.25.9", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-xoTMk0WXceiiIvsaquQQUaLLXSW1KJ159KP87VilruQm0LNNGxWzahxSS6T6i4Zg3ezp4vA4zuwiNUR53qmQAw=="], + "@babel/plugin-transform-json-strings": ["@babel/plugin-transform-json-strings@7.27.1", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.27.1" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-6WVLVJiTjqcQauBhn1LkICsR2H+zm62I3h9faTDKt1qP4jn2o72tSvqMwtGFKGTpojce0gJs+76eZ2uCHRZh0Q=="], - "@babel/plugin-transform-literals": ["@babel/plugin-transform-literals@7.25.9", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-9N7+2lFziW8W9pBl2TzaNht3+pgMIRP74zizeCSrtnSKVdUl8mAjjOP2OOVQAfZ881P2cNjDj1uAMEdeD50nuQ=="], + "@babel/plugin-transform-literals": ["@babel/plugin-transform-literals@7.27.1", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.27.1" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-0HCFSepIpLTkLcsi86GG3mTUzxV5jpmbv97hTETW3yzrAij8aqlD36toB1D0daVFJM8NK6GvKO0gslVQmm+zZA=="], - "@babel/plugin-transform-logical-assignment-operators": ["@babel/plugin-transform-logical-assignment-operators@7.25.9", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-wI4wRAzGko551Y8eVf6iOY9EouIDTtPb0ByZx+ktDGHwv6bHFimrgJM/2T021txPZ2s4c7bqvHbd+vXG6K948Q=="], + "@babel/plugin-transform-logical-assignment-operators": ["@babel/plugin-transform-logical-assignment-operators@7.27.1", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.27.1" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-SJvDs5dXxiae4FbSL1aBJlG4wvl594N6YEVVn9e3JGulwioy6z3oPjx/sQBO3Y4NwUu5HNix6KJ3wBZoewcdbw=="], - "@babel/plugin-transform-member-expression-literals": ["@babel/plugin-transform-member-expression-literals@7.25.9", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-PYazBVfofCQkkMzh2P6IdIUaCEWni3iYEerAsRWuVd8+jlM1S9S9cz1dF9hIzyoZ8IA3+OwVYIp9v9e+GbgZhA=="], + "@babel/plugin-transform-member-expression-literals": ["@babel/plugin-transform-member-expression-literals@7.27.1", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.27.1" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-hqoBX4dcZ1I33jCSWcXrP+1Ku7kdqXf1oeah7ooKOIiAdKQ+uqftgCFNOSzA5AMS2XIHEYeGFg4cKRCdpxzVOQ=="], - "@babel/plugin-transform-modules-amd": ["@babel/plugin-transform-modules-amd@7.25.9", "", { "dependencies": { "@babel/helper-module-transforms": "^7.25.9", "@babel/helper-plugin-utils": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-g5T11tnI36jVClQlMlt4qKDLlWnG5pP9CSM4GhdRciTNMRgkfpo5cR6b4rGIOYPgRRuFAvwjPQ/Yk+ql4dyhbw=="], + "@babel/plugin-transform-modules-amd": ["@babel/plugin-transform-modules-amd@7.27.1", "", { "dependencies": { "@babel/helper-module-transforms": "^7.27.1", "@babel/helper-plugin-utils": "^7.27.1" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-iCsytMg/N9/oFq6n+gFTvUYDZQOMK5kEdeYxmxt91fcJGycfxVP9CnrxoliM0oumFERba2i8ZtwRUCMhvP1LnA=="], - "@babel/plugin-transform-modules-commonjs": ["@babel/plugin-transform-modules-commonjs@7.26.3", "", { "dependencies": { "@babel/helper-module-transforms": "^7.26.0", "@babel/helper-plugin-utils": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-MgR55l4q9KddUDITEzEFYn5ZsGDXMSsU9E+kh7fjRXTIC3RHqfCo8RPRbyReYJh44HQ/yomFkqbOFohXvDCiIQ=="], + "@babel/plugin-transform-modules-commonjs": ["@babel/plugin-transform-modules-commonjs@7.27.1", "", { "dependencies": { "@babel/helper-module-transforms": "^7.27.1", "@babel/helper-plugin-utils": "^7.27.1" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-OJguuwlTYlN0gBZFRPqwOGNWssZjfIUdS7HMYtN8c1KmwpwHFBwTeFZrg9XZa+DFTitWOW5iTAG7tyCUPsCCyw=="], - "@babel/plugin-transform-modules-systemjs": ["@babel/plugin-transform-modules-systemjs@7.25.9", "", { "dependencies": { "@babel/helper-module-transforms": "^7.25.9", "@babel/helper-plugin-utils": "^7.25.9", "@babel/helper-validator-identifier": "^7.25.9", "@babel/traverse": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-hyss7iIlH/zLHaehT+xwiymtPOpsiwIIRlCAOwBB04ta5Tt+lNItADdlXw3jAWZ96VJ2jlhl/c+PNIQPKNfvcA=="], + "@babel/plugin-transform-modules-systemjs": ["@babel/plugin-transform-modules-systemjs@7.27.1", "", { "dependencies": { "@babel/helper-module-transforms": "^7.27.1", "@babel/helper-plugin-utils": "^7.27.1", "@babel/helper-validator-identifier": "^7.27.1", "@babel/traverse": "^7.27.1" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-w5N1XzsRbc0PQStASMksmUeqECuzKuTJer7kFagK8AXgpCMkeDMO5S+aaFb7A51ZYDF7XI34qsTX+fkHiIm5yA=="], - "@babel/plugin-transform-modules-umd": ["@babel/plugin-transform-modules-umd@7.25.9", "", { "dependencies": { "@babel/helper-module-transforms": "^7.25.9", "@babel/helper-plugin-utils": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-bS9MVObUgE7ww36HEfwe6g9WakQ0KF07mQF74uuXdkoziUPfKyu/nIm663kz//e5O1nPInPFx36z7WJmJ4yNEw=="], + "@babel/plugin-transform-modules-umd": ["@babel/plugin-transform-modules-umd@7.27.1", "", { "dependencies": { "@babel/helper-module-transforms": "^7.27.1", "@babel/helper-plugin-utils": "^7.27.1" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-iQBE/xC5BV1OxJbp6WG7jq9IWiD+xxlZhLrdwpPkTX3ydmXdvoCpyfJN7acaIBZaOqTfr76pgzqBJflNbeRK+w=="], - "@babel/plugin-transform-named-capturing-groups-regex": ["@babel/plugin-transform-named-capturing-groups-regex@7.25.9", "", { "dependencies": { "@babel/helper-create-regexp-features-plugin": "^7.25.9", "@babel/helper-plugin-utils": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0" } }, "sha512-oqB6WHdKTGl3q/ItQhpLSnWWOpjUJLsOCLVyeFgeTktkBSCiurvPOsyt93gibI9CmuKvTUEtWmG5VhZD+5T/KA=="], + "@babel/plugin-transform-named-capturing-groups-regex": ["@babel/plugin-transform-named-capturing-groups-regex@7.27.1", "", { "dependencies": { "@babel/helper-create-regexp-features-plugin": "^7.27.1", "@babel/helper-plugin-utils": "^7.27.1" }, "peerDependencies": { "@babel/core": "^7.0.0" } }, "sha512-SstR5JYy8ddZvD6MhV0tM/j16Qds4mIpJTOd1Yu9J9pJjH93bxHECF7pgtc28XvkzTD6Pxcm/0Z73Hvk7kb3Ng=="], - "@babel/plugin-transform-new-target": ["@babel/plugin-transform-new-target@7.25.9", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-U/3p8X1yCSoKyUj2eOBIx3FOn6pElFOKvAAGf8HTtItuPyB+ZeOqfn+mvTtg9ZlOAjsPdK3ayQEjqHjU/yLeVQ=="], + "@babel/plugin-transform-new-target": ["@babel/plugin-transform-new-target@7.27.1", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.27.1" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-f6PiYeqXQ05lYq3TIfIDu/MtliKUbNwkGApPUvyo6+tc7uaR4cPjPe7DFPr15Uyycg2lZU6btZ575CuQoYh7MQ=="], - "@babel/plugin-transform-nullish-coalescing-operator": ["@babel/plugin-transform-nullish-coalescing-operator@7.26.6", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.26.5" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-CKW8Vu+uUZneQCPtXmSBUC6NCAUdya26hWCElAWh5mVSlSRsmiCPUUDKb3Z0szng1hiAJa098Hkhg9o4SE35Qw=="], + "@babel/plugin-transform-nullish-coalescing-operator": ["@babel/plugin-transform-nullish-coalescing-operator@7.27.1", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.27.1" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-aGZh6xMo6q9vq1JGcw58lZ1Z0+i0xB2x0XaauNIUXd6O1xXc3RwoWEBlsTQrY4KQ9Jf0s5rgD6SiNkaUdJegTA=="], - "@babel/plugin-transform-numeric-separator": ["@babel/plugin-transform-numeric-separator@7.25.9", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-TlprrJ1GBZ3r6s96Yq8gEQv82s8/5HnCVHtEJScUj90thHQbwe+E5MLhi2bbNHBEJuzrvltXSru+BUxHDoog7Q=="], + "@babel/plugin-transform-numeric-separator": ["@babel/plugin-transform-numeric-separator@7.27.1", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.27.1" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-fdPKAcujuvEChxDBJ5c+0BTaS6revLV7CJL08e4m3de8qJfNIuCc2nc7XJYOjBoTMJeqSmwXJ0ypE14RCjLwaw=="], - "@babel/plugin-transform-object-rest-spread": ["@babel/plugin-transform-object-rest-spread@7.25.9", "", { "dependencies": { "@babel/helper-compilation-targets": "^7.25.9", "@babel/helper-plugin-utils": "^7.25.9", "@babel/plugin-transform-parameters": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-fSaXafEE9CVHPweLYw4J0emp1t8zYTXyzN3UuG+lylqkvYd7RMrsOQ8TYx5RF231be0vqtFC6jnx3UmpJmKBYg=="], + "@babel/plugin-transform-object-rest-spread": ["@babel/plugin-transform-object-rest-spread@7.27.3", "", { "dependencies": { "@babel/helper-compilation-targets": "^7.27.2", "@babel/helper-plugin-utils": "^7.27.1", "@babel/plugin-transform-destructuring": "^7.27.3", "@babel/plugin-transform-parameters": "^7.27.1" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-7ZZtznF9g4l2JCImCo5LNKFHB5eXnN39lLtLY5Tg+VkR0jwOt7TBciMckuiQIOIW7L5tkQOCh3bVGYeXgMx52Q=="], - "@babel/plugin-transform-object-super": ["@babel/plugin-transform-object-super@7.25.9", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.25.9", "@babel/helper-replace-supers": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-Kj/Gh+Rw2RNLbCK1VAWj2U48yxxqL2x0k10nPtSdRa0O2xnHXalD0s+o1A6a0W43gJ00ANo38jxkQreckOzv5A=="], + "@babel/plugin-transform-object-super": ["@babel/plugin-transform-object-super@7.27.1", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.27.1", "@babel/helper-replace-supers": "^7.27.1" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-SFy8S9plRPbIcxlJ8A6mT/CxFdJx/c04JEctz4jf8YZaVS2px34j7NXRrlGlHkN/M2gnpL37ZpGRGVFLd3l8Ng=="], - "@babel/plugin-transform-optional-catch-binding": ["@babel/plugin-transform-optional-catch-binding@7.25.9", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-qM/6m6hQZzDcZF3onzIhZeDHDO43bkNNlOX0i8n3lR6zLbu0GN2d8qfM/IERJZYauhAHSLHy39NF0Ctdvcid7g=="], + "@babel/plugin-transform-optional-catch-binding": ["@babel/plugin-transform-optional-catch-binding@7.27.1", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.27.1" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-txEAEKzYrHEX4xSZN4kJ+OfKXFVSWKB2ZxM9dpcE3wT7smwkNmXo5ORRlVzMVdJbD+Q8ILTgSD7959uj+3Dm3Q=="], - "@babel/plugin-transform-optional-chaining": ["@babel/plugin-transform-optional-chaining@7.25.9", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.25.9", "@babel/helper-skip-transparent-expression-wrappers": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-6AvV0FsLULbpnXeBjrY4dmWF8F7gf8QnvTEoO/wX/5xm/xE1Xo8oPuD3MPS+KS9f9XBEAWN7X1aWr4z9HdOr7A=="], + "@babel/plugin-transform-optional-chaining": ["@babel/plugin-transform-optional-chaining@7.27.1", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.27.1", "@babel/helper-skip-transparent-expression-wrappers": "^7.27.1" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-BQmKPPIuc8EkZgNKsv0X4bPmOoayeu4F1YCwx2/CfmDSXDbp7GnzlUH+/ul5VGfRg1AoFPsrIThlEBj2xb4CAg=="], - "@babel/plugin-transform-parameters": ["@babel/plugin-transform-parameters@7.25.9", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-wzz6MKwpnshBAiRmn4jR8LYz/g8Ksg0o80XmwZDlordjwEk9SxBzTWC7F5ef1jhbrbOW2DJ5J6ayRukrJmnr0g=="], + "@babel/plugin-transform-parameters": ["@babel/plugin-transform-parameters@7.27.1", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.27.1" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-018KRk76HWKeZ5l4oTj2zPpSh+NbGdt0st5S6x0pga6HgrjBOJb24mMDHorFopOOd6YHkLgOZ+zaCjZGPO4aKg=="], - "@babel/plugin-transform-private-methods": ["@babel/plugin-transform-private-methods@7.25.9", "", { "dependencies": { "@babel/helper-create-class-features-plugin": "^7.25.9", "@babel/helper-plugin-utils": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-D/JUozNpQLAPUVusvqMxyvjzllRaF8/nSrP1s2YGQT/W4LHK4xxsMcHjhOGTS01mp9Hda8nswb+FblLdJornQw=="], + "@babel/plugin-transform-private-methods": ["@babel/plugin-transform-private-methods@7.27.1", "", { "dependencies": { "@babel/helper-create-class-features-plugin": "^7.27.1", "@babel/helper-plugin-utils": "^7.27.1" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-10FVt+X55AjRAYI9BrdISN9/AQWHqldOeZDUoLyif1Kn05a56xVBXb8ZouL8pZ9jem8QpXaOt8TS7RHUIS+GPA=="], - "@babel/plugin-transform-private-property-in-object": ["@babel/plugin-transform-private-property-in-object@7.25.9", "", { "dependencies": { "@babel/helper-annotate-as-pure": "^7.25.9", "@babel/helper-create-class-features-plugin": "^7.25.9", "@babel/helper-plugin-utils": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-Evf3kcMqzXA3xfYJmZ9Pg1OvKdtqsDMSWBDzZOPLvHiTt36E75jLDQo5w1gtRU95Q4E5PDttrTf25Fw8d/uWLw=="], + "@babel/plugin-transform-private-property-in-object": ["@babel/plugin-transform-private-property-in-object@7.27.1", "", { "dependencies": { "@babel/helper-annotate-as-pure": "^7.27.1", "@babel/helper-create-class-features-plugin": "^7.27.1", "@babel/helper-plugin-utils": "^7.27.1" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-5J+IhqTi1XPa0DXF83jYOaARrX+41gOewWbkPyjMNRDqgOCqdffGh8L3f/Ek5utaEBZExjSAzcyjmV9SSAWObQ=="], - "@babel/plugin-transform-property-literals": ["@babel/plugin-transform-property-literals@7.25.9", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-IvIUeV5KrS/VPavfSM/Iu+RE6llrHrYIKY1yfCzyO/lMXHQ+p7uGhonmGVisv6tSBSVgWzMBohTcvkC9vQcQFA=="], + "@babel/plugin-transform-property-literals": ["@babel/plugin-transform-property-literals@7.27.1", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.27.1" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-oThy3BCuCha8kDZ8ZkgOg2exvPYUlprMukKQXI1r1pJ47NCvxfkEy8vK+r/hT9nF0Aa4H1WUPZZjHTFtAhGfmQ=="], - "@babel/plugin-transform-regenerator": ["@babel/plugin-transform-regenerator@7.27.0", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.26.5", "regenerator-transform": "^0.15.2" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-LX/vCajUJQDqE7Aum/ELUMZAY19+cDpghxrnyt5I1tV6X5PyC86AOoWXWFYFeIvauyeSA6/ktn4tQVn/3ZifsA=="], + "@babel/plugin-transform-regenerator": ["@babel/plugin-transform-regenerator@7.27.5", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.27.1" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-uhB8yHerfe3MWnuLAhEbeQ4afVoqv8BQsPqrTv7e/jZ9y00kJL6l9a/f4OWaKxotmjzewfEyXE1vgDJenkQ2/Q=="], - "@babel/plugin-transform-regexp-modifiers": ["@babel/plugin-transform-regexp-modifiers@7.26.0", "", { "dependencies": { "@babel/helper-create-regexp-features-plugin": "^7.25.9", "@babel/helper-plugin-utils": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0" } }, "sha512-vN6saax7lrA2yA/Pak3sCxuD6F5InBjn9IcrIKQPjpsLvuHYLVroTxjdlVRHjjBWxKOqIwpTXDkOssYT4BFdRw=="], + "@babel/plugin-transform-regexp-modifiers": ["@babel/plugin-transform-regexp-modifiers@7.27.1", "", { "dependencies": { "@babel/helper-create-regexp-features-plugin": "^7.27.1", "@babel/helper-plugin-utils": "^7.27.1" }, "peerDependencies": { "@babel/core": "^7.0.0" } }, "sha512-TtEciroaiODtXvLZv4rmfMhkCv8jx3wgKpL68PuiPh2M4fvz5jhsA7697N1gMvkvr/JTF13DrFYyEbY9U7cVPA=="], - "@babel/plugin-transform-reserved-words": ["@babel/plugin-transform-reserved-words@7.25.9", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-7DL7DKYjn5Su++4RXu8puKZm2XBPHyjWLUidaPEkCUBbE7IPcsrkRHggAOOKydH1dASWdcUBxrkOGNxUv5P3Jg=="], + "@babel/plugin-transform-reserved-words": ["@babel/plugin-transform-reserved-words@7.27.1", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.27.1" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-V2ABPHIJX4kC7HegLkYoDpfg9PVmuWy/i6vUM5eGK22bx4YVFD3M5F0QQnWQoDs6AGsUWTVOopBiMFQgHaSkVw=="], - "@babel/plugin-transform-shorthand-properties": ["@babel/plugin-transform-shorthand-properties@7.25.9", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-MUv6t0FhO5qHnS/W8XCbHmiRWOphNufpE1IVxhK5kuN3Td9FT1x4rx4K42s3RYdMXCXpfWkGSbCSd0Z64xA7Ng=="], + "@babel/plugin-transform-shorthand-properties": ["@babel/plugin-transform-shorthand-properties@7.27.1", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.27.1" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-N/wH1vcn4oYawbJ13Y/FxcQrWk63jhfNa7jef0ih7PHSIHX2LB7GWE1rkPrOnka9kwMxb6hMl19p7lidA+EHmQ=="], - "@babel/plugin-transform-spread": ["@babel/plugin-transform-spread@7.25.9", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.25.9", "@babel/helper-skip-transparent-expression-wrappers": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-oNknIB0TbURU5pqJFVbOOFspVlrpVwo2H1+HUIsVDvp5VauGGDP1ZEvO8Nn5xyMEs3dakajOxlmkNW7kNgSm6A=="], + "@babel/plugin-transform-spread": ["@babel/plugin-transform-spread@7.27.1", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.27.1", "@babel/helper-skip-transparent-expression-wrappers": "^7.27.1" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-kpb3HUqaILBJcRFVhFUs6Trdd4mkrzcGXss+6/mxUd273PfbWqSDHRzMT2234gIg2QYfAjvXLSquP1xECSg09Q=="], - "@babel/plugin-transform-sticky-regex": ["@babel/plugin-transform-sticky-regex@7.25.9", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-WqBUSgeVwucYDP9U/xNRQam7xV8W5Zf+6Eo7T2SRVUFlhRiMNFdFz58u0KZmCVVqs2i7SHgpRnAhzRNmKfi2uA=="], + "@babel/plugin-transform-sticky-regex": ["@babel/plugin-transform-sticky-regex@7.27.1", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.27.1" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-lhInBO5bi/Kowe2/aLdBAawijx+q1pQzicSgnkB6dUPc1+RC8QmJHKf2OjvU+NZWitguJHEaEmbV6VWEouT58g=="], - "@babel/plugin-transform-template-literals": ["@babel/plugin-transform-template-literals@7.26.8", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.26.5" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-OmGDL5/J0CJPJZTHZbi2XpO0tyT2Ia7fzpW5GURwdtp2X3fMmN8au/ej6peC/T33/+CRiIpA8Krse8hFGVmT5Q=="], + "@babel/plugin-transform-template-literals": ["@babel/plugin-transform-template-literals@7.27.1", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.27.1" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-fBJKiV7F2DxZUkg5EtHKXQdbsbURW3DZKQUWphDum0uRP6eHGGa/He9mc0mypL680pb+e/lDIthRohlv8NCHkg=="], - "@babel/plugin-transform-typeof-symbol": ["@babel/plugin-transform-typeof-symbol@7.27.0", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.26.5" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-+LLkxA9rKJpNoGsbLnAgOCdESl73vwYn+V6b+5wHbrE7OGKVDPHIQvbFSzqE6rwqaCw2RE+zdJrlLkcf8YOA0w=="], + "@babel/plugin-transform-typeof-symbol": ["@babel/plugin-transform-typeof-symbol@7.27.1", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.27.1" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-RiSILC+nRJM7FY5srIyc4/fGIwUhyDuuBSdWn4y6yT6gm652DpCHZjIipgn6B7MQ1ITOUnAKWixEUjQRIBIcLw=="], - "@babel/plugin-transform-unicode-escapes": ["@babel/plugin-transform-unicode-escapes@7.25.9", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-s5EDrE6bW97LtxOcGj1Khcx5AaXwiMmi4toFWRDP9/y0Woo6pXC+iyPu/KuhKtfSrNFd7jJB+/fkOtZy6aIC6Q=="], + "@babel/plugin-transform-unicode-escapes": ["@babel/plugin-transform-unicode-escapes@7.27.1", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.27.1" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-Ysg4v6AmF26k9vpfFuTZg8HRfVWzsh1kVfowA23y9j/Gu6dOuahdUVhkLqpObp3JIv27MLSii6noRnuKN8H0Mg=="], - "@babel/plugin-transform-unicode-property-regex": ["@babel/plugin-transform-unicode-property-regex@7.25.9", "", { "dependencies": { "@babel/helper-create-regexp-features-plugin": "^7.25.9", "@babel/helper-plugin-utils": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-Jt2d8Ga+QwRluxRQ307Vlxa6dMrYEMZCgGxoPR8V52rxPyldHu3hdlHspxaqYmE7oID5+kB+UKUB/eWS+DkkWg=="], + "@babel/plugin-transform-unicode-property-regex": ["@babel/plugin-transform-unicode-property-regex@7.27.1", "", { "dependencies": { "@babel/helper-create-regexp-features-plugin": "^7.27.1", "@babel/helper-plugin-utils": "^7.27.1" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-uW20S39PnaTImxp39O5qFlHLS9LJEmANjMG7SxIhap8rCHqu0Ik+tLEPX5DKmHn6CsWQ7j3lix2tFOa5YtL12Q=="], - "@babel/plugin-transform-unicode-regex": ["@babel/plugin-transform-unicode-regex@7.25.9", "", { "dependencies": { "@babel/helper-create-regexp-features-plugin": "^7.25.9", "@babel/helper-plugin-utils": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-yoxstj7Rg9dlNn9UQxzk4fcNivwv4nUYz7fYXBaKxvw/lnmPuOm/ikoELygbYq68Bls3D/D+NBPHiLwZdZZ4HA=="], + "@babel/plugin-transform-unicode-regex": ["@babel/plugin-transform-unicode-regex@7.27.1", "", { "dependencies": { "@babel/helper-create-regexp-features-plugin": "^7.27.1", "@babel/helper-plugin-utils": "^7.27.1" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-xvINq24TRojDuyt6JGtHmkVkrfVV3FPT16uytxImLeBZqW3/H52yN+kM1MGuyPkIQxrzKwPHs5U/MP3qKyzkGw=="], - "@babel/plugin-transform-unicode-sets-regex": ["@babel/plugin-transform-unicode-sets-regex@7.25.9", "", { "dependencies": { "@babel/helper-create-regexp-features-plugin": "^7.25.9", "@babel/helper-plugin-utils": "^7.25.9" }, "peerDependencies": { "@babel/core": "^7.0.0" } }, "sha512-8BYqO3GeVNHtx69fdPshN3fnzUNLrWdHhk/icSwigksJGczKSizZ+Z6SBCxTs723Fr5VSNorTIK7a+R2tISvwQ=="], + "@babel/plugin-transform-unicode-sets-regex": ["@babel/plugin-transform-unicode-sets-regex@7.27.1", "", { "dependencies": { "@babel/helper-create-regexp-features-plugin": "^7.27.1", "@babel/helper-plugin-utils": "^7.27.1" }, "peerDependencies": { "@babel/core": "^7.0.0" } }, "sha512-EtkOujbc4cgvb0mlpQefi4NTPBzhSIevblFevACNLUspmrALgmEBdL/XfnyyITfd8fKBZrZys92zOWcik7j9Tw=="], - "@babel/preset-env": ["@babel/preset-env@7.26.9", "", { "dependencies": { "@babel/compat-data": "^7.26.8", "@babel/helper-compilation-targets": "^7.26.5", "@babel/helper-plugin-utils": "^7.26.5", "@babel/helper-validator-option": "^7.25.9", "@babel/plugin-bugfix-firefox-class-in-computed-class-key": "^7.25.9", "@babel/plugin-bugfix-safari-class-field-initializer-scope": "^7.25.9", "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.25.9", "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.25.9", "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": "^7.25.9", "@babel/plugin-proposal-private-property-in-object": "7.21.0-placeholder-for-preset-env.2", "@babel/plugin-syntax-import-assertions": "^7.26.0", "@babel/plugin-syntax-import-attributes": "^7.26.0", "@babel/plugin-syntax-unicode-sets-regex": "^7.18.6", "@babel/plugin-transform-arrow-functions": "^7.25.9", "@babel/plugin-transform-async-generator-functions": "^7.26.8", "@babel/plugin-transform-async-to-generator": "^7.25.9", "@babel/plugin-transform-block-scoped-functions": "^7.26.5", "@babel/plugin-transform-block-scoping": "^7.25.9", "@babel/plugin-transform-class-properties": "^7.25.9", "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-classes": "^7.25.9", "@babel/plugin-transform-computed-properties": "^7.25.9", "@babel/plugin-transform-destructuring": "^7.25.9", "@babel/plugin-transform-dotall-regex": "^7.25.9", "@babel/plugin-transform-duplicate-keys": "^7.25.9", "@babel/plugin-transform-duplicate-named-capturing-groups-regex": "^7.25.9", "@babel/plugin-transform-dynamic-import": "^7.25.9", "@babel/plugin-transform-exponentiation-operator": "^7.26.3", "@babel/plugin-transform-export-namespace-from": "^7.25.9", "@babel/plugin-transform-for-of": "^7.26.9", "@babel/plugin-transform-function-name": "^7.25.9", "@babel/plugin-transform-json-strings": "^7.25.9", "@babel/plugin-transform-literals": "^7.25.9", "@babel/plugin-transform-logical-assignment-operators": "^7.25.9", "@babel/plugin-transform-member-expression-literals": "^7.25.9", "@babel/plugin-transform-modules-amd": "^7.25.9", "@babel/plugin-transform-modules-commonjs": "^7.26.3", "@babel/plugin-transform-modules-systemjs": "^7.25.9", "@babel/plugin-transform-modules-umd": "^7.25.9", "@babel/plugin-transform-named-capturing-groups-regex": "^7.25.9", "@babel/plugin-transform-new-target": "^7.25.9", "@babel/plugin-transform-nullish-coalescing-operator": "^7.26.6", "@babel/plugin-transform-numeric-separator": "^7.25.9", "@babel/plugin-transform-object-rest-spread": "^7.25.9", "@babel/plugin-transform-object-super": "^7.25.9", "@babel/plugin-transform-optional-catch-binding": "^7.25.9", "@babel/plugin-transform-optional-chaining": "^7.25.9", "@babel/plugin-transform-parameters": "^7.25.9", "@babel/plugin-transform-private-methods": "^7.25.9", "@babel/plugin-transform-private-property-in-object": "^7.25.9", "@babel/plugin-transform-property-literals": "^7.25.9", "@babel/plugin-transform-regenerator": "^7.25.9", "@babel/plugin-transform-regexp-modifiers": "^7.26.0", "@babel/plugin-transform-reserved-words": "^7.25.9", "@babel/plugin-transform-shorthand-properties": "^7.25.9", "@babel/plugin-transform-spread": "^7.25.9", "@babel/plugin-transform-sticky-regex": "^7.25.9", "@babel/plugin-transform-template-literals": "^7.26.8", "@babel/plugin-transform-typeof-symbol": "^7.26.7", "@babel/plugin-transform-unicode-escapes": "^7.25.9", "@babel/plugin-transform-unicode-property-regex": "^7.25.9", "@babel/plugin-transform-unicode-regex": "^7.25.9", "@babel/plugin-transform-unicode-sets-regex": "^7.25.9", "@babel/preset-modules": "0.1.6-no-external-plugins", "babel-plugin-polyfill-corejs2": "^0.4.10", "babel-plugin-polyfill-corejs3": "^0.11.0", "babel-plugin-polyfill-regenerator": "^0.6.1", "core-js-compat": "^3.40.0", "semver": "^6.3.1" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-vX3qPGE8sEKEAZCWk05k3cpTAE3/nOYca++JA+Rd0z2NCNzabmYvEiSShKzm10zdquOIAVXsy2Ei/DTW34KlKQ=="], + "@babel/preset-env": ["@babel/preset-env@7.27.2", "", { "dependencies": { "@babel/compat-data": "^7.27.2", "@babel/helper-compilation-targets": "^7.27.2", "@babel/helper-plugin-utils": "^7.27.1", "@babel/helper-validator-option": "^7.27.1", "@babel/plugin-bugfix-firefox-class-in-computed-class-key": "^7.27.1", "@babel/plugin-bugfix-safari-class-field-initializer-scope": "^7.27.1", "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.27.1", "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.27.1", "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": "^7.27.1", "@babel/plugin-proposal-private-property-in-object": "7.21.0-placeholder-for-preset-env.2", "@babel/plugin-syntax-import-assertions": "^7.27.1", "@babel/plugin-syntax-import-attributes": "^7.27.1", "@babel/plugin-syntax-unicode-sets-regex": "^7.18.6", "@babel/plugin-transform-arrow-functions": "^7.27.1", "@babel/plugin-transform-async-generator-functions": "^7.27.1", "@babel/plugin-transform-async-to-generator": "^7.27.1", "@babel/plugin-transform-block-scoped-functions": "^7.27.1", "@babel/plugin-transform-block-scoping": "^7.27.1", "@babel/plugin-transform-class-properties": "^7.27.1", "@babel/plugin-transform-class-static-block": "^7.27.1", "@babel/plugin-transform-classes": "^7.27.1", "@babel/plugin-transform-computed-properties": "^7.27.1", "@babel/plugin-transform-destructuring": "^7.27.1", "@babel/plugin-transform-dotall-regex": "^7.27.1", "@babel/plugin-transform-duplicate-keys": "^7.27.1", "@babel/plugin-transform-duplicate-named-capturing-groups-regex": "^7.27.1", "@babel/plugin-transform-dynamic-import": "^7.27.1", "@babel/plugin-transform-exponentiation-operator": "^7.27.1", "@babel/plugin-transform-export-namespace-from": "^7.27.1", "@babel/plugin-transform-for-of": "^7.27.1", "@babel/plugin-transform-function-name": "^7.27.1", "@babel/plugin-transform-json-strings": "^7.27.1", "@babel/plugin-transform-literals": "^7.27.1", "@babel/plugin-transform-logical-assignment-operators": "^7.27.1", "@babel/plugin-transform-member-expression-literals": "^7.27.1", "@babel/plugin-transform-modules-amd": "^7.27.1", "@babel/plugin-transform-modules-commonjs": "^7.27.1", "@babel/plugin-transform-modules-systemjs": "^7.27.1", "@babel/plugin-transform-modules-umd": "^7.27.1", "@babel/plugin-transform-named-capturing-groups-regex": "^7.27.1", "@babel/plugin-transform-new-target": "^7.27.1", "@babel/plugin-transform-nullish-coalescing-operator": "^7.27.1", "@babel/plugin-transform-numeric-separator": "^7.27.1", "@babel/plugin-transform-object-rest-spread": "^7.27.2", "@babel/plugin-transform-object-super": "^7.27.1", "@babel/plugin-transform-optional-catch-binding": "^7.27.1", "@babel/plugin-transform-optional-chaining": "^7.27.1", "@babel/plugin-transform-parameters": "^7.27.1", "@babel/plugin-transform-private-methods": "^7.27.1", "@babel/plugin-transform-private-property-in-object": "^7.27.1", "@babel/plugin-transform-property-literals": "^7.27.1", "@babel/plugin-transform-regenerator": "^7.27.1", "@babel/plugin-transform-regexp-modifiers": "^7.27.1", "@babel/plugin-transform-reserved-words": "^7.27.1", "@babel/plugin-transform-shorthand-properties": "^7.27.1", "@babel/plugin-transform-spread": "^7.27.1", "@babel/plugin-transform-sticky-regex": "^7.27.1", "@babel/plugin-transform-template-literals": "^7.27.1", "@babel/plugin-transform-typeof-symbol": "^7.27.1", "@babel/plugin-transform-unicode-escapes": "^7.27.1", "@babel/plugin-transform-unicode-property-regex": "^7.27.1", "@babel/plugin-transform-unicode-regex": "^7.27.1", "@babel/plugin-transform-unicode-sets-regex": "^7.27.1", "@babel/preset-modules": "0.1.6-no-external-plugins", "babel-plugin-polyfill-corejs2": "^0.4.10", "babel-plugin-polyfill-corejs3": "^0.11.0", "babel-plugin-polyfill-regenerator": "^0.6.1", "core-js-compat": "^3.40.0", "semver": "^6.3.1" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "sha512-Ma4zSuYSlGNRlCLO+EAzLnCmJK2vdstgv+n7aUP+/IKZrOfWHOJVdSJtuub8RzHTj3ahD37k5OKJWvzf16TQyQ=="], "@babel/preset-modules": ["@babel/preset-modules@0.1.6-no-external-plugins", "", { "dependencies": { "@babel/helper-plugin-utils": "^7.0.0", "@babel/types": "^7.4.4", "esutils": "^2.0.2" }, "peerDependencies": { "@babel/core": "^7.0.0-0 || ^8.0.0-0 <8.0.0" } }, "sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA=="], - "@babel/runtime": ["@babel/runtime@7.27.0", "", { "dependencies": { "regenerator-runtime": "^0.14.0" } }, "sha512-VtPOkrdPHZsKc/clNqyi9WUA8TINkZ4cGk63UUE3u4pmB2k+ZMQRDuIOagv8UVd6j7k0T3+RRIb7beKTebNbcw=="], + "@babel/template": ["@babel/template@7.27.2", "", { "dependencies": { "@babel/code-frame": "^7.27.1", "@babel/parser": "^7.27.2", "@babel/types": "^7.27.1" } }, "sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw=="], - "@babel/template": ["@babel/template@7.27.0", "", { "dependencies": { "@babel/code-frame": "^7.26.2", "@babel/parser": "^7.27.0", "@babel/types": "^7.27.0" } }, "sha512-2ncevenBqXI6qRMukPlXwHKHchC7RyMuu4xv5JBXRfOGVcTy1mXCD12qrp7Jsoxll1EV3+9sE4GugBVRjT2jFA=="], + "@babel/traverse": ["@babel/traverse@7.27.4", "", { "dependencies": { "@babel/code-frame": "^7.27.1", "@babel/generator": "^7.27.3", "@babel/parser": "^7.27.4", "@babel/template": "^7.27.2", "@babel/types": "^7.27.3", "debug": "^4.3.1", "globals": "^11.1.0" } }, "sha512-oNcu2QbHqts9BtOWJosOVJapWjBDSxGCpFvikNR5TGDYDQf3JwpIoMzIKrvfoti93cLfPJEG4tH9SPVeyCGgdA=="], - "@babel/traverse": ["@babel/traverse@7.27.0", "", { "dependencies": { "@babel/code-frame": "^7.26.2", "@babel/generator": "^7.27.0", "@babel/parser": "^7.27.0", "@babel/template": "^7.27.0", "@babel/types": "^7.27.0", "debug": "^4.3.1", "globals": "^11.1.0" } }, "sha512-19lYZFzYVQkkHkl4Cy4WrAVcqBkgvV2YM2TU3xG6DIwO7O3ecbDPfW3yM3bjAGcqcQHi+CCtjMR3dIEHxsd6bA=="], + "@babel/types": ["@babel/types@7.27.6", "", { "dependencies": { "@babel/helper-string-parser": "^7.27.1", "@babel/helper-validator-identifier": "^7.27.1" } }, "sha512-ETyHEk2VHHvl9b9jZP5IHPavHYk57EhanlRRuae9XCpb/j5bDCbPPMOBfCWhnl/7EDJz0jEMCi/RhccCE8r1+Q=="], - "@babel/types": ["@babel/types@7.27.0", "", { "dependencies": { "@babel/helper-string-parser": "^7.25.9", "@babel/helper-validator-identifier": "^7.25.9" } }, "sha512-H45s8fVLYjbhFH62dIJ3WtmJ6RSPt/3DRO0ZcT2SUiYiQyz3BLVb9ADEnLl91m74aQPS3AzzeajZHYOalWe3bg=="], + "@biomejs/biome": ["@biomejs/biome@2.0.6", "", { "optionalDependencies": { "@biomejs/cli-darwin-arm64": "2.0.6", "@biomejs/cli-darwin-x64": "2.0.6", "@biomejs/cli-linux-arm64": "2.0.6", "@biomejs/cli-linux-arm64-musl": "2.0.6", "@biomejs/cli-linux-x64": "2.0.6", "@biomejs/cli-linux-x64-musl": "2.0.6", "@biomejs/cli-win32-arm64": "2.0.6", "@biomejs/cli-win32-x64": "2.0.6" }, "bin": { "biome": "bin/biome" } }, "sha512-RRP+9cdh5qwe2t0gORwXaa27oTOiQRQvrFf49x2PA1tnpsyU7FIHX4ZOFMtBC4QNtyWsN7Dqkf5EDbg4X+9iqA=="], - "@biomejs/biome": ["@biomejs/biome@1.9.4", "", { "optionalDependencies": { "@biomejs/cli-darwin-arm64": "1.9.4", "@biomejs/cli-darwin-x64": "1.9.4", "@biomejs/cli-linux-arm64": "1.9.4", "@biomejs/cli-linux-arm64-musl": "1.9.4", "@biomejs/cli-linux-x64": "1.9.4", "@biomejs/cli-linux-x64-musl": "1.9.4", "@biomejs/cli-win32-arm64": "1.9.4", "@biomejs/cli-win32-x64": "1.9.4" }, "bin": { "biome": "bin/biome" } }, "sha512-1rkd7G70+o9KkTn5KLmDYXihGoTaIGO9PIIN2ZB7UJxFrWw04CZHPYiMRjYsaDvVV7hP1dYNRLxSANLaBFGpog=="], + "@biomejs/cli-darwin-arm64": ["@biomejs/cli-darwin-arm64@2.0.6", "", { "os": "darwin", "cpu": "arm64" }, "sha512-AzdiNNjNzsE6LfqWyBvcL29uWoIuZUkndu+wwlXW13EKcBHbbKjNQEZIJKYDc6IL+p7bmWGx3v9ZtcRyIoIz5A=="], - "@biomejs/cli-darwin-arm64": ["@biomejs/cli-darwin-arm64@1.9.4", "", { "os": "darwin", "cpu": "arm64" }, "sha512-bFBsPWrNvkdKrNCYeAp+xo2HecOGPAy9WyNyB/jKnnedgzl4W4Hb9ZMzYNbf8dMCGmUdSavlYHiR01QaYR58cw=="], + "@biomejs/cli-darwin-x64": ["@biomejs/cli-darwin-x64@2.0.6", "", { "os": "darwin", "cpu": "x64" }, "sha512-wJjjP4E7bO4WJmiQaLnsdXMa516dbtC6542qeRkyJg0MqMXP0fvs4gdsHhZ7p9XWTAmGIjZHFKXdsjBvKGIJJQ=="], - "@biomejs/cli-darwin-x64": ["@biomejs/cli-darwin-x64@1.9.4", "", { "os": "darwin", "cpu": "x64" }, "sha512-ngYBh/+bEedqkSevPVhLP4QfVPCpb+4BBe2p7Xs32dBgs7rh9nY2AIYUL6BgLw1JVXV8GlpKmb/hNiuIxfPfZg=="], + "@biomejs/cli-linux-arm64": ["@biomejs/cli-linux-arm64@2.0.6", "", { "os": "linux", "cpu": "arm64" }, "sha512-ZSVf6TYo5rNMUHIW1tww+rs/krol7U5A1Is/yzWyHVZguuB0lBnIodqyFuwCNqG9aJGyk7xIMS8HG0qGUPz0SA=="], - "@biomejs/cli-linux-arm64": ["@biomejs/cli-linux-arm64@1.9.4", "", { "os": "linux", "cpu": "arm64" }, "sha512-fJIW0+LYujdjUgJJuwesP4EjIBl/N/TcOX3IvIHJQNsAqvV2CHIogsmA94BPG6jZATS4Hi+xv4SkBBQSt1N4/g=="], + "@biomejs/cli-linux-arm64-musl": ["@biomejs/cli-linux-arm64-musl@2.0.6", "", { "os": "linux", "cpu": "arm64" }, "sha512-CVPEMlin3bW49sBqLBg2x016Pws7eUXA27XYDFlEtponD0luYjg2zQaMJ2nOqlkKG9fqzzkamdYxHdMDc2gZFw=="], - "@biomejs/cli-linux-arm64-musl": ["@biomejs/cli-linux-arm64-musl@1.9.4", "", { "os": "linux", "cpu": "arm64" }, "sha512-v665Ct9WCRjGa8+kTr0CzApU0+XXtRgwmzIf1SeKSGAv+2scAlW6JR5PMFo6FzqqZ64Po79cKODKf3/AAmECqA=="], + "@biomejs/cli-linux-x64": ["@biomejs/cli-linux-x64@2.0.6", "", { "os": "linux", "cpu": "x64" }, "sha512-geM1MkHTV1Kh2Cs/Xzot9BOF3WBacihw6bkEmxkz4nSga8B9/hWy5BDiOG3gHDGIBa8WxT0nzsJs2f/hPqQIQw=="], - "@biomejs/cli-linux-x64": ["@biomejs/cli-linux-x64@1.9.4", "", { "os": "linux", "cpu": "x64" }, "sha512-lRCJv/Vi3Vlwmbd6K+oQ0KhLHMAysN8lXoCI7XeHlxaajk06u7G+UsFSO01NAs5iYuWKmVZjmiOzJ0OJmGsMwg=="], + "@biomejs/cli-linux-x64-musl": ["@biomejs/cli-linux-x64-musl@2.0.6", "", { "os": "linux", "cpu": "x64" }, "sha512-mKHE/e954hR/hSnAcJSjkf4xGqZc/53Kh39HVW1EgO5iFi0JutTN07TSjEMg616julRtfSNJi0KNyxvc30Y4rQ=="], - "@biomejs/cli-linux-x64-musl": ["@biomejs/cli-linux-x64-musl@1.9.4", "", { "os": "linux", "cpu": "x64" }, "sha512-gEhi/jSBhZ2m6wjV530Yy8+fNqG8PAinM3oV7CyO+6c3CEh16Eizm21uHVsyVBEB6RIM8JHIl6AGYCv6Q6Q9Tg=="], + "@biomejs/cli-win32-arm64": ["@biomejs/cli-win32-arm64@2.0.6", "", { "os": "win32", "cpu": "arm64" }, "sha512-290V4oSFoKaprKE1zkYVsDfAdn0An5DowZ+GIABgjoq1ndhvNxkJcpxPsiYtT7slbVe3xmlT0ncdfOsN7KruzA=="], - "@biomejs/cli-win32-arm64": ["@biomejs/cli-win32-arm64@1.9.4", "", { "os": "win32", "cpu": "arm64" }, "sha512-tlbhLk+WXZmgwoIKwHIHEBZUwxml7bRJgk0X2sPyNR3S93cdRq6XulAZRQJ17FYGGzWne0fgrXBKpl7l4M87Hg=="], + "@biomejs/cli-win32-x64": ["@biomejs/cli-win32-x64@2.0.6", "", { "os": "win32", "cpu": "x64" }, "sha512-bfM1Bce0d69Ao7pjTjUS+AWSZ02+5UHdiAP85Th8e9yV5xzw6JrHXbL5YWlcEKQ84FIZMdDc7ncuti1wd2sdbw=="], - "@biomejs/cli-win32-x64": ["@biomejs/cli-win32-x64@1.9.4", "", { "os": "win32", "cpu": "x64" }, "sha512-8Y5wMhVIPaWe6jw2H+KlEm4wP/f7EW3810ZLmDlrEEy5KvBsb9ECEfu/kMWD484ijfQ8+nIi0giMgu9g1UAuuA=="], + "@bufbuild/protobuf": ["@bufbuild/protobuf@2.5.2", "", {}, "sha512-foZ7qr0IsUBjzWIq+SuBLfdQCpJ1j8cTuNNT4owngTHoN5KsJb8L9t65fzz7SCeSWzescoOil/0ldqiL041ABg=="], - "@bufbuild/protobuf": ["@bufbuild/protobuf@2.2.5", "", {}, "sha512-/g5EzJifw5GF8aren8wZ/G5oMuPoGeS6MQD3ca8ddcvdXR5UELUfdTZITCGNhNXynY/AYl3Z4plmxdj/tRl/hQ=="], + "@cspell/dict-fr-fr": ["@cspell/dict-fr-fr@2.3.0", "", {}, "sha512-OsUgonI5aWV8i+DmOl8KO0fqFLZFZIAvFaCysXROeYoSfumdiqzmBrgv6UNOIhYMIBfs2Os3UsM5E69sLpoY8g=="], - "@csstools/css-parser-algorithms": ["@csstools/css-parser-algorithms@3.0.4", "", { "peerDependencies": { "@csstools/css-tokenizer": "^3.0.3" } }, "sha512-Up7rBoV77rv29d3uKHUIVubz1BTcgyUK72IvCQAbfbMv584xHcGKCKbWh7i8hPrRJ7qU4Y8IO3IY9m+iTB7P3A=="], + "@csstools/css-parser-algorithms": ["@csstools/css-parser-algorithms@3.0.5", "", { "peerDependencies": { "@csstools/css-tokenizer": "^3.0.4" } }, "sha512-DaDeUkXZKjdGhgYaHNJTV9pV7Y9B3b644jCLs9Upc3VeNGg6LWARAT6O+Q+/COo+2gg/bM5rhpMAtf70WqfBdQ=="], - "@csstools/css-tokenizer": ["@csstools/css-tokenizer@3.0.3", "", {}, "sha512-UJnjoFsmxfKUdNYdWgOB0mWUypuLvAfQPH1+pyvRJs6euowbFkFC6P13w1l8mJyi3vxYMxc9kld5jZEGRQs6bw=="], + "@csstools/css-tokenizer": ["@csstools/css-tokenizer@3.0.4", "", {}, "sha512-Vd/9EVDiu6PPJt9yAh6roZP6El1xHrdvIVGjyBsHR0RYwNHgL7FJPyIIW4fANJNG6FtyZfvlRPpFI4ZM/lubvw=="], - "@csstools/media-query-list-parser": ["@csstools/media-query-list-parser@4.0.2", "", { "peerDependencies": { "@csstools/css-parser-algorithms": "^3.0.4", "@csstools/css-tokenizer": "^3.0.3" } }, "sha512-EUos465uvVvMJehckATTlNqGj4UJWkTmdWuDMjqvSUkjGpmOyFZBVwb4knxCm/k2GMTXY+c/5RkdndzFYWeX5A=="], + "@csstools/media-query-list-parser": ["@csstools/media-query-list-parser@4.0.3", "", { "peerDependencies": { "@csstools/css-parser-algorithms": "^3.0.5", "@csstools/css-tokenizer": "^3.0.4" } }, "sha512-HAYH7d3TLRHDOUQK4mZKf9k9Ph/m8Akstg66ywKR4SFAigjs3yBiUeZtFxywiTm5moZMAp/5W/ZuFnNXXYLuuQ=="], "@csstools/selector-specificity": ["@csstools/selector-specificity@5.0.0", "", { "peerDependencies": { "postcss-selector-parser": "^7.0.0" } }, "sha512-PCqQV3c4CoVm3kdPhyeZ07VmBRdH2EpMFA/pd9OASpOEC3aXNGoqPDAZ80D0cLpMBxnmk0+yNhGsEx31hq7Gtw=="], "@dual-bundle/import-meta-resolve": ["@dual-bundle/import-meta-resolve@4.1.0", "", {}, "sha512-+nxncfwHM5SgAtrVzgpzJOI1ol0PkumhVo469KCf9lUi21IGcY90G98VuHm9VRrUypmAzawAHO9bs6hqeADaVg=="], - "@esbuild/aix-ppc64": ["@esbuild/aix-ppc64@0.25.3", "", { "os": "aix", "cpu": "ppc64" }, "sha512-W8bFfPA8DowP8l//sxjJLSLkD8iEjMc7cBVyP+u4cEv9sM7mdUCkgsj+t0n/BWPFtv7WWCN5Yzj0N6FJNUUqBQ=="], + "@emnapi/core": ["@emnapi/core@1.4.3", "", { "dependencies": { "@emnapi/wasi-threads": "1.0.2", "tslib": "^2.4.0" } }, "sha512-4m62DuCE07lw01soJwPiBGC0nAww0Q+RY70VZ+n49yDIO13yyinhbWCeNnaob0lakDtWQzSdtNWzJeOJt2ma+g=="], - "@esbuild/android-arm": ["@esbuild/android-arm@0.25.3", "", { "os": "android", "cpu": "arm" }, "sha512-PuwVXbnP87Tcff5I9ngV0lmiSu40xw1At6i3GsU77U7cjDDB4s0X2cyFuBiDa1SBk9DnvWwnGvVaGBqoFWPb7A=="], + "@emnapi/runtime": ["@emnapi/runtime@1.4.3", "", { "dependencies": { "tslib": "^2.4.0" } }, "sha512-pBPWdu6MLKROBX05wSNKcNb++m5Er+KQ9QkB+WVM+pW2Kx9hoSrVTnu3BdkI5eBLZoKu/J6mW/B6i6bJB2ytXQ=="], - "@esbuild/android-arm64": ["@esbuild/android-arm64@0.25.3", "", { "os": "android", "cpu": "arm64" }, "sha512-XelR6MzjlZuBM4f5z2IQHK6LkK34Cvv6Rj2EntER3lwCBFdg6h2lKbtRjpTTsdEjD/WSe1q8UyPBXP1x3i/wYQ=="], + "@emnapi/wasi-threads": ["@emnapi/wasi-threads@1.0.2", "", { "dependencies": { "tslib": "^2.4.0" } }, "sha512-5n3nTJblwRi8LlXkJ9eBzu+kZR8Yxcc7ubakyQTFzPMtIhFpUBRbsnc2Dv88IZDIbCDlBiWrknhB4Lsz7mg6BA=="], - "@esbuild/android-x64": ["@esbuild/android-x64@0.25.3", "", { "os": "android", "cpu": "x64" }, "sha512-ogtTpYHT/g1GWS/zKM0cc/tIebFjm1F9Aw1boQ2Y0eUQ+J89d0jFY//s9ei9jVIlkYi8AfOjiixcLJSGNSOAdQ=="], + "@esbuild/aix-ppc64": ["@esbuild/aix-ppc64@0.25.5", "", { "os": "aix", "cpu": "ppc64" }, "sha512-9o3TMmpmftaCMepOdA5k/yDw8SfInyzWWTjYTFCX3kPSDJMROQTb8jg+h9Cnwnmm1vOzvxN7gIfB5V2ewpjtGA=="], - "@esbuild/darwin-arm64": ["@esbuild/darwin-arm64@0.25.3", "", { "os": "darwin", "cpu": "arm64" }, "sha512-eESK5yfPNTqpAmDfFWNsOhmIOaQA59tAcF/EfYvo5/QWQCzXn5iUSOnqt3ra3UdzBv073ykTtmeLJZGt3HhA+w=="], + "@esbuild/android-arm": ["@esbuild/android-arm@0.25.5", "", { "os": "android", "cpu": "arm" }, "sha512-AdJKSPeEHgi7/ZhuIPtcQKr5RQdo6OO2IL87JkianiMYMPbCtot9fxPbrMiBADOWWm3T2si9stAiVsGbTQFkbA=="], - "@esbuild/darwin-x64": ["@esbuild/darwin-x64@0.25.3", "", { "os": "darwin", "cpu": "x64" }, "sha512-Kd8glo7sIZtwOLcPbW0yLpKmBNWMANZhrC1r6K++uDR2zyzb6AeOYtI6udbtabmQpFaxJ8uduXMAo1gs5ozz8A=="], + "@esbuild/android-arm64": ["@esbuild/android-arm64@0.25.5", "", { "os": "android", "cpu": "arm64" }, "sha512-VGzGhj4lJO+TVGV1v8ntCZWJktV7SGCs3Pn1GRWI1SBFtRALoomm8k5E9Pmwg3HOAal2VDc2F9+PM/rEY6oIDg=="], - "@esbuild/freebsd-arm64": ["@esbuild/freebsd-arm64@0.25.3", "", { "os": "freebsd", "cpu": "arm64" }, "sha512-EJiyS70BYybOBpJth3M0KLOus0n+RRMKTYzhYhFeMwp7e/RaajXvP+BWlmEXNk6uk+KAu46j/kaQzr6au+JcIw=="], + "@esbuild/android-x64": ["@esbuild/android-x64@0.25.5", "", { "os": "android", "cpu": "x64" }, "sha512-D2GyJT1kjvO//drbRT3Hib9XPwQeWd9vZoBJn+bu/lVsOZ13cqNdDeqIF/xQ5/VmWvMduP6AmXvylO/PIc2isw=="], - "@esbuild/freebsd-x64": ["@esbuild/freebsd-x64@0.25.3", "", { "os": "freebsd", "cpu": "x64" }, "sha512-Q+wSjaLpGxYf7zC0kL0nDlhsfuFkoN+EXrx2KSB33RhinWzejOd6AvgmP5JbkgXKmjhmpfgKZq24pneodYqE8Q=="], + "@esbuild/darwin-arm64": ["@esbuild/darwin-arm64@0.25.5", "", { "os": "darwin", "cpu": "arm64" }, "sha512-GtaBgammVvdF7aPIgH2jxMDdivezgFu6iKpmT+48+F8Hhg5J/sfnDieg0aeG/jfSvkYQU2/pceFPDKlqZzwnfQ=="], - "@esbuild/linux-arm": ["@esbuild/linux-arm@0.25.3", "", { "os": "linux", "cpu": "arm" }, "sha512-dUOVmAUzuHy2ZOKIHIKHCm58HKzFqd+puLaS424h6I85GlSDRZIA5ycBixb3mFgM0Jdh+ZOSB6KptX30DD8YOQ=="], + "@esbuild/darwin-x64": ["@esbuild/darwin-x64@0.25.5", "", { "os": "darwin", "cpu": "x64" }, "sha512-1iT4FVL0dJ76/q1wd7XDsXrSW+oLoquptvh4CLR4kITDtqi2e/xwXwdCVH8hVHU43wgJdsq7Gxuzcs6Iq/7bxQ=="], - "@esbuild/linux-arm64": ["@esbuild/linux-arm64@0.25.3", "", { "os": "linux", "cpu": "arm64" }, "sha512-xCUgnNYhRD5bb1C1nqrDV1PfkwgbswTTBRbAd8aH5PhYzikdf/ddtsYyMXFfGSsb/6t6QaPSzxtbfAZr9uox4A=="], + "@esbuild/freebsd-arm64": ["@esbuild/freebsd-arm64@0.25.5", "", { "os": "freebsd", "cpu": "arm64" }, "sha512-nk4tGP3JThz4La38Uy/gzyXtpkPW8zSAmoUhK9xKKXdBCzKODMc2adkB2+8om9BDYugz+uGV7sLmpTYzvmz6Sw=="], - "@esbuild/linux-ia32": ["@esbuild/linux-ia32@0.25.3", "", { "os": "linux", "cpu": "ia32" }, "sha512-yplPOpczHOO4jTYKmuYuANI3WhvIPSVANGcNUeMlxH4twz/TeXuzEP41tGKNGWJjuMhotpGabeFYGAOU2ummBw=="], + "@esbuild/freebsd-x64": ["@esbuild/freebsd-x64@0.25.5", "", { "os": "freebsd", "cpu": "x64" }, "sha512-PrikaNjiXdR2laW6OIjlbeuCPrPaAl0IwPIaRv+SMV8CiM8i2LqVUHFC1+8eORgWyY7yhQY+2U2fA55mBzReaw=="], - "@esbuild/linux-loong64": ["@esbuild/linux-loong64@0.25.3", "", { "os": "linux", "cpu": "none" }, "sha512-P4BLP5/fjyihmXCELRGrLd793q/lBtKMQl8ARGpDxgzgIKJDRJ/u4r1A/HgpBpKpKZelGct2PGI4T+axcedf6g=="], + "@esbuild/linux-arm": ["@esbuild/linux-arm@0.25.5", "", { "os": "linux", "cpu": "arm" }, "sha512-cPzojwW2okgh7ZlRpcBEtsX7WBuqbLrNXqLU89GxWbNt6uIg78ET82qifUy3W6OVww6ZWobWub5oqZOVtwolfw=="], - "@esbuild/linux-mips64el": ["@esbuild/linux-mips64el@0.25.3", "", { "os": "linux", "cpu": "none" }, "sha512-eRAOV2ODpu6P5divMEMa26RRqb2yUoYsuQQOuFUexUoQndm4MdpXXDBbUoKIc0iPa4aCO7gIhtnYomkn2x+bag=="], + "@esbuild/linux-arm64": ["@esbuild/linux-arm64@0.25.5", "", { "os": "linux", "cpu": "arm64" }, "sha512-Z9kfb1v6ZlGbWj8EJk9T6czVEjjq2ntSYLY2cw6pAZl4oKtfgQuS4HOq41M/BcoLPzrUbNd+R4BXFyH//nHxVg=="], - "@esbuild/linux-ppc64": ["@esbuild/linux-ppc64@0.25.3", "", { "os": "linux", "cpu": "ppc64" }, "sha512-ZC4jV2p7VbzTlnl8nZKLcBkfzIf4Yad1SJM4ZMKYnJqZFD4rTI+pBG65u8ev4jk3/MPwY9DvGn50wi3uhdaghg=="], + "@esbuild/linux-ia32": ["@esbuild/linux-ia32@0.25.5", "", { "os": "linux", "cpu": "ia32" }, "sha512-sQ7l00M8bSv36GLV95BVAdhJ2QsIbCuCjh/uYrWiMQSUuV+LpXwIqhgJDcvMTj+VsQmqAHL2yYaasENvJ7CDKA=="], - "@esbuild/linux-riscv64": ["@esbuild/linux-riscv64@0.25.3", "", { "os": "linux", "cpu": "none" }, "sha512-LDDODcFzNtECTrUUbVCs6j9/bDVqy7DDRsuIXJg6so+mFksgwG7ZVnTruYi5V+z3eE5y+BJZw7VvUadkbfg7QA=="], + "@esbuild/linux-loong64": ["@esbuild/linux-loong64@0.25.5", "", { "os": "linux", "cpu": "none" }, "sha512-0ur7ae16hDUC4OL5iEnDb0tZHDxYmuQyhKhsPBV8f99f6Z9KQM02g33f93rNH5A30agMS46u2HP6qTdEt6Q1kg=="], - "@esbuild/linux-s390x": ["@esbuild/linux-s390x@0.25.3", "", { "os": "linux", "cpu": "s390x" }, "sha512-s+w/NOY2k0yC2p9SLen+ymflgcpRkvwwa02fqmAwhBRI3SC12uiS10edHHXlVWwfAagYSY5UpmT/zISXPMW3tQ=="], + "@esbuild/linux-mips64el": ["@esbuild/linux-mips64el@0.25.5", "", { "os": "linux", "cpu": "none" }, "sha512-kB/66P1OsHO5zLz0i6X0RxlQ+3cu0mkxS3TKFvkb5lin6uwZ/ttOkP3Z8lfR9mJOBk14ZwZ9182SIIWFGNmqmg=="], - "@esbuild/linux-x64": ["@esbuild/linux-x64@0.25.3", "", { "os": "linux", "cpu": "x64" }, "sha512-nQHDz4pXjSDC6UfOE1Fw9Q8d6GCAd9KdvMZpfVGWSJztYCarRgSDfOVBY5xwhQXseiyxapkiSJi/5/ja8mRFFA=="], + "@esbuild/linux-ppc64": ["@esbuild/linux-ppc64@0.25.5", "", { "os": "linux", "cpu": "ppc64" }, "sha512-UZCmJ7r9X2fe2D6jBmkLBMQetXPXIsZjQJCjgwpVDz+YMcS6oFR27alkgGv3Oqkv07bxdvw7fyB71/olceJhkQ=="], - "@esbuild/netbsd-arm64": ["@esbuild/netbsd-arm64@0.25.3", "", { "os": "none", "cpu": "arm64" }, "sha512-1QaLtOWq0mzK6tzzp0jRN3eccmN3hezey7mhLnzC6oNlJoUJz4nym5ZD7mDnS/LZQgkrhEbEiTn515lPeLpgWA=="], + "@esbuild/linux-riscv64": ["@esbuild/linux-riscv64@0.25.5", "", { "os": "linux", "cpu": "none" }, "sha512-kTxwu4mLyeOlsVIFPfQo+fQJAV9mh24xL+y+Bm6ej067sYANjyEw1dNHmvoqxJUCMnkBdKpvOn0Ahql6+4VyeA=="], - "@esbuild/netbsd-x64": ["@esbuild/netbsd-x64@0.25.3", "", { "os": "none", "cpu": "x64" }, "sha512-i5Hm68HXHdgv8wkrt+10Bc50zM0/eonPb/a/OFVfB6Qvpiirco5gBA5bz7S2SHuU+Y4LWn/zehzNX14Sp4r27g=="], + "@esbuild/linux-s390x": ["@esbuild/linux-s390x@0.25.5", "", { "os": "linux", "cpu": "s390x" }, "sha512-K2dSKTKfmdh78uJ3NcWFiqyRrimfdinS5ErLSn3vluHNeHVnBAFWC8a4X5N+7FgVE1EjXS1QDZbpqZBjfrqMTQ=="], - "@esbuild/openbsd-arm64": ["@esbuild/openbsd-arm64@0.25.3", "", { "os": "openbsd", "cpu": "arm64" }, "sha512-zGAVApJEYTbOC6H/3QBr2mq3upG/LBEXr85/pTtKiv2IXcgKV0RT0QA/hSXZqSvLEpXeIxah7LczB4lkiYhTAQ=="], + "@esbuild/linux-x64": ["@esbuild/linux-x64@0.25.5", "", { "os": "linux", "cpu": "x64" }, "sha512-uhj8N2obKTE6pSZ+aMUbqq+1nXxNjZIIjCjGLfsWvVpy7gKCOL6rsY1MhRh9zLtUtAI7vpgLMK6DxjO8Qm9lJw=="], - "@esbuild/openbsd-x64": ["@esbuild/openbsd-x64@0.25.3", "", { "os": "openbsd", "cpu": "x64" }, "sha512-fpqctI45NnCIDKBH5AXQBsD0NDPbEFczK98hk/aa6HJxbl+UtLkJV2+Bvy5hLSLk3LHmqt0NTkKNso1A9y1a4w=="], + "@esbuild/netbsd-arm64": ["@esbuild/netbsd-arm64@0.25.5", "", { "os": "none", "cpu": "arm64" }, "sha512-pwHtMP9viAy1oHPvgxtOv+OkduK5ugofNTVDilIzBLpoWAM16r7b/mxBvfpuQDpRQFMfuVr5aLcn4yveGvBZvw=="], - "@esbuild/sunos-x64": ["@esbuild/sunos-x64@0.25.3", "", { "os": "sunos", "cpu": "x64" }, "sha512-ROJhm7d8bk9dMCUZjkS8fgzsPAZEjtRJqCAmVgB0gMrvG7hfmPmz9k1rwO4jSiblFjYmNvbECL9uhaPzONMfgA=="], + "@esbuild/netbsd-x64": ["@esbuild/netbsd-x64@0.25.5", "", { "os": "none", "cpu": "x64" }, "sha512-WOb5fKrvVTRMfWFNCroYWWklbnXH0Q5rZppjq0vQIdlsQKuw6mdSihwSo4RV/YdQ5UCKKvBy7/0ZZYLBZKIbwQ=="], - "@esbuild/win32-arm64": ["@esbuild/win32-arm64@0.25.3", "", { "os": "win32", "cpu": "arm64" }, "sha512-YWcow8peiHpNBiIXHwaswPnAXLsLVygFwCB3A7Bh5jRkIBFWHGmNQ48AlX4xDvQNoMZlPYzjVOQDYEzWCqufMQ=="], + "@esbuild/openbsd-arm64": ["@esbuild/openbsd-arm64@0.25.5", "", { "os": "openbsd", "cpu": "arm64" }, "sha512-7A208+uQKgTxHd0G0uqZO8UjK2R0DDb4fDmERtARjSHWxqMTye4Erz4zZafx7Di9Cv+lNHYuncAkiGFySoD+Mw=="], - "@esbuild/win32-ia32": ["@esbuild/win32-ia32@0.25.3", "", { "os": "win32", "cpu": "ia32" }, "sha512-qspTZOIGoXVS4DpNqUYUs9UxVb04khS1Degaw/MnfMe7goQ3lTfQ13Vw4qY/Nj0979BGvMRpAYbs/BAxEvU8ew=="], + "@esbuild/openbsd-x64": ["@esbuild/openbsd-x64@0.25.5", "", { "os": "openbsd", "cpu": "x64" }, "sha512-G4hE405ErTWraiZ8UiSoesH8DaCsMm0Cay4fsFWOOUcz8b8rC6uCvnagr+gnioEjWn0wC+o1/TAHt+It+MpIMg=="], - "@esbuild/win32-x64": ["@esbuild/win32-x64@0.25.3", "", { "os": "win32", "cpu": "x64" }, "sha512-ICgUR+kPimx0vvRzf+N/7L7tVSQeE3BYY+NhHRHXS1kBuPO7z2+7ea2HbhDyZdTephgvNvKrlDDKUexuCVBVvg=="], + "@esbuild/sunos-x64": ["@esbuild/sunos-x64@0.25.5", "", { "os": "sunos", "cpu": "x64" }, "sha512-l+azKShMy7FxzY0Rj4RCt5VD/q8mG/e+mDivgspo+yL8zW7qEwctQ6YqKX34DTEleFAvCIUviCFX1SDZRSyMQA=="], - "@eslint-community/eslint-utils": ["@eslint-community/eslint-utils@4.6.1", "", { "dependencies": { "eslint-visitor-keys": "^3.4.3" }, "peerDependencies": { "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" } }, "sha512-KTsJMmobmbrFLe3LDh0PC2FXpcSYJt/MLjlkh/9LEnmKYLSYmT/0EW9JWANjeoemiuZrmogti0tW5Ch+qNUYDw=="], + "@esbuild/win32-arm64": ["@esbuild/win32-arm64@0.25.5", "", { "os": "win32", "cpu": "arm64" }, "sha512-O2S7SNZzdcFG7eFKgvwUEZ2VG9D/sn/eIiz8XRZ1Q/DO5a3s76Xv0mdBzVM5j5R639lXQmPmSo0iRpHqUUrsxw=="], + + "@esbuild/win32-ia32": ["@esbuild/win32-ia32@0.25.5", "", { "os": "win32", "cpu": "ia32" }, "sha512-onOJ02pqs9h1iMJ1PQphR+VZv8qBMQ77Klcsqv9CNW2w6yLqoURLcgERAIurY6QE63bbLuqgP9ATqajFLK5AMQ=="], + + "@esbuild/win32-x64": ["@esbuild/win32-x64@0.25.5", "", { "os": "win32", "cpu": "x64" }, "sha512-TXv6YnJ8ZMVdX+SXWVBo/0p8LTcrUYngpWjvm91TMjjBQii7Oz11Lw5lbDV5Y0TzuhSJHwiH4hEtC1I42mMS0g=="], + + "@eslint-community/eslint-utils": ["@eslint-community/eslint-utils@4.7.0", "", { "dependencies": { "eslint-visitor-keys": "^3.4.3" }, "peerDependencies": { "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" } }, "sha512-dyybb3AcajC7uha6CvhdVRJqaKyn7w2YKqKyAN37NKYgZT36w+iRb0Dymmc5qEJ549c/S31cMMSFd75bteCpCw=="], "@eslint-community/regexpp": ["@eslint-community/regexpp@4.12.1", "", {}, "sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ=="], - "@eslint/config-array": ["@eslint/config-array@0.20.0", "", { "dependencies": { "@eslint/object-schema": "^2.1.6", "debug": "^4.3.1", "minimatch": "^3.1.2" } }, "sha512-fxlS1kkIjx8+vy2SjuCB94q3htSNrufYTXubwiBFeaQHbH6Ipi43gFJq2zCMt6PHhImH3Xmr0NksKDvchWlpQQ=="], + "@eslint/config-array": ["@eslint/config-array@0.21.0", "", { "dependencies": { "@eslint/object-schema": "^2.1.6", "debug": "^4.3.1", "minimatch": "^3.1.2" } }, "sha512-ENIdc4iLu0d93HeYirvKmrzshzofPw6VkZRKQGe9Nv46ZnWUzcF1xV01dcvEg/1wXUR61OmmlSfyeyO7EvjLxQ=="], - "@eslint/config-helpers": ["@eslint/config-helpers@0.2.1", "", {}, "sha512-RI17tsD2frtDu/3dmI7QRrD4bedNKPM08ziRYaC5AhkGrzIAJelm9kJU1TznK+apx6V+cqRz8tfpEeG3oIyjxw=="], + "@eslint/config-helpers": ["@eslint/config-helpers@0.3.0", "", {}, "sha512-ViuymvFmcJi04qdZeDc2whTHryouGcDlaxPqarTD0ZE10ISpxGUVZGZDx4w01upyIynL3iu6IXH2bS1NhclQMw=="], - "@eslint/core": ["@eslint/core@0.13.0", "", { "dependencies": { "@types/json-schema": "^7.0.15" } }, "sha512-yfkgDw1KR66rkT5A8ci4irzDysN7FRpq3ttJolR88OqQikAWqwA8j5VZyas+vjyBNFIJ7MfybJ9plMILI2UrCw=="], + "@eslint/core": ["@eslint/core@0.14.0", "", { "dependencies": { "@types/json-schema": "^7.0.15" } }, "sha512-qIbV0/JZr7iSDjqAc60IqbLdsj9GDt16xQtWD+B78d/HAlvysGdZZ6rpJHGAc2T0FQx1X6thsSPdnoiGKdNtdg=="], "@eslint/eslintrc": ["@eslint/eslintrc@3.3.1", "", { "dependencies": { "ajv": "^6.12.4", "debug": "^4.3.2", "espree": "^10.0.1", "globals": "^14.0.0", "ignore": "^5.2.0", "import-fresh": "^3.2.1", "js-yaml": "^4.1.0", "minimatch": "^3.1.2", "strip-json-comments": "^3.1.1" } }, "sha512-gtF186CXhIl1p4pJNGZw8Yc6RlshoePRvE0X91oPGb3vZ8pM3qOS9W9NGPat9LziaBV7XrJWGylNQXkGcnM3IQ=="], - "@eslint/js": ["@eslint/js@9.25.1", "", {}, "sha512-dEIwmjntEx8u3Uvv+kr3PDeeArL8Hw07H9kyYxCjnM9pBjfEhk6uLXSchxxzgiwtRhhzVzqmUSDFBOi1TuZ7qg=="], + "@eslint/js": ["@eslint/js@9.30.1", "", {}, "sha512-zXhuECFlyep42KZUhWjfvsmXGX39W8K8LFb8AWXM9gSV9dQB+MrJGLKvW6Zw0Ggnbpw0VHTtrhFXYe3Gym18jg=="], "@eslint/object-schema": ["@eslint/object-schema@2.1.6", "", {}, "sha512-RBMg5FRL0I0gs51M/guSAj5/e14VQ4tpZnQNWwuDT66P14I43ItmPfIZRhO9fUVIPOAQXU47atlywZ/czoqFPA=="], - "@eslint/plugin-kit": ["@eslint/plugin-kit@0.2.8", "", { "dependencies": { "@eslint/core": "^0.13.0", "levn": "^0.4.1" } }, "sha512-ZAoA40rNMPwSm+AeHpCq8STiNAwzWLJuP8Xv4CHIc9wv/PSuExjMrmjfYNj682vW0OOiZ1HKxzvjQr9XZIisQA=="], + "@eslint/plugin-kit": ["@eslint/plugin-kit@0.3.2", "", { "dependencies": { "@eslint/core": "^0.15.0", "levn": "^0.4.1" } }, "sha512-4SaFZCNfJqvk/kenHpI8xvN42DMaoycy4PzKc5otHxRswww1kAt82OlBuwRVLofCACCTZEcla2Ydxv8scMXaTg=="], "@humanfs/core": ["@humanfs/core@0.19.1", "", {}, "sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA=="], @@ -346,7 +359,7 @@ "@humanwhocodes/module-importer": ["@humanwhocodes/module-importer@1.0.1", "", {}, "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA=="], - "@humanwhocodes/retry": ["@humanwhocodes/retry@0.4.2", "", {}, "sha512-xeO57FpIu4p1Ri3Jq/EXq4ClRm86dVF2z/+kvFnyqVYRavTZmaFaUBbWCOuuTh0o/g7DSsk6kc2vrS4Vl5oPOQ=="], + "@humanwhocodes/retry": ["@humanwhocodes/retry@0.4.3", "", {}, "sha512-bV0Tgo9K4hfPCek+aMAn81RppFKv2ySDQeMoSZuvTASywNTnVJCArCZE2FWqpvIatKu7VMRLWlR1EazvVhDyhQ=="], "@jridgewell/gen-mapping": ["@jridgewell/gen-mapping@0.3.8", "", { "dependencies": { "@jridgewell/set-array": "^1.2.1", "@jridgewell/sourcemap-codec": "^1.4.10", "@jridgewell/trace-mapping": "^0.3.24" } }, "sha512-imAbBGkb+ebQyxKgzv5Hu2nmROxoDOXHh80evxdoXNOrvAnVx7zimzc1Oo5h9RlfV4vPXaE2iM5pOFbvOCClWA=="], @@ -362,7 +375,9 @@ "@keyv/serialize": ["@keyv/serialize@1.0.3", "", { "dependencies": { "buffer": "^6.0.3" } }, "sha512-qnEovoOp5Np2JDGonIDL6Ayihw0RhnRh6vxPuHo4RDn1UOzwEo4AeIfpL6UGIrsceWrCMiVPgwRjbHu4vYFc3g=="], - "@mobily/ts-belt": ["@mobily/ts-belt@3.13.1", "", {}, "sha512-K5KqIhPI/EoCTbA6CGbrenM9s41OouyK8A03fGJJcla/zKucsgLbz8HNbeseoLarRPgyWJsUyCYqFhI7t3Ra9Q=="], + "@logtape/logtape": ["@logtape/logtape@1.0.2", "", {}, "sha512-6EWfs4KyTAVsiAnXXSFpzEmUYI2k7qLJogqPv3JqwFd8S8Zr2iUBPv3pbIC+70cW4P6Zpq1l1hnX/jDVZwvc+Q=="], + + "@mobily/ts-belt": ["@mobily/ts-belt@4.0.0-rc.5", "", {}, "sha512-HLWJ8yKrfwdMzCvckRunrAL8Z+K5q31FdY6JzhkBp8o6uQsVuzf26KFyno1s6n6GB78OJEsjs57SaDk9plsJhA=="], "@napi-rs/nice": ["@napi-rs/nice@1.0.1", "", { "optionalDependencies": { "@napi-rs/nice-android-arm-eabi": "1.0.1", "@napi-rs/nice-android-arm64": "1.0.1", "@napi-rs/nice-darwin-arm64": "1.0.1", "@napi-rs/nice-darwin-x64": "1.0.1", "@napi-rs/nice-freebsd-x64": "1.0.1", "@napi-rs/nice-linux-arm-gnueabihf": "1.0.1", "@napi-rs/nice-linux-arm64-gnu": "1.0.1", "@napi-rs/nice-linux-arm64-musl": "1.0.1", "@napi-rs/nice-linux-ppc64-gnu": "1.0.1", "@napi-rs/nice-linux-riscv64-gnu": "1.0.1", "@napi-rs/nice-linux-s390x-gnu": "1.0.1", "@napi-rs/nice-linux-x64-gnu": "1.0.1", "@napi-rs/nice-linux-x64-musl": "1.0.1", "@napi-rs/nice-win32-arm64-msvc": "1.0.1", "@napi-rs/nice-win32-ia32-msvc": "1.0.1", "@napi-rs/nice-win32-x64-msvc": "1.0.1" } }, "sha512-zM0mVWSXE0a0h9aKACLwKmD6nHcRiKrPpCfvaKqG1CqDEyjEawId0ocXxVzPMCAm6kkWr2P025msfxXEnt8UGQ=="], @@ -398,27 +413,57 @@ "@napi-rs/nice-win32-x64-msvc": ["@napi-rs/nice-win32-x64-msvc@1.0.1", "", { "os": "win32", "cpu": "x64" }, "sha512-JlF+uDcatt3St2ntBG8H02F1mM45i5SF9W+bIKiReVE6wiy3o16oBP/yxt+RZ+N6LbCImJXJ6bXNO2kn9AXicg=="], + "@napi-rs/wasm-runtime": ["@napi-rs/wasm-runtime@0.2.11", "", { "dependencies": { "@emnapi/core": "^1.4.3", "@emnapi/runtime": "^1.4.3", "@tybys/wasm-util": "^0.9.0" } }, "sha512-9DPkXtvHydrcOsopiYpUgPHpmj0HWZKMUnL2dZqpvC42lsratuBG06V5ipyno0fUek5VlFsNQ+AcFATSrJXgMA=="], + "@nodelib/fs.scandir": ["@nodelib/fs.scandir@2.1.5", "", { "dependencies": { "@nodelib/fs.stat": "2.0.5", "run-parallel": "^1.1.9" } }, "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g=="], "@nodelib/fs.stat": ["@nodelib/fs.stat@2.0.5", "", {}, "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A=="], "@nodelib/fs.walk": ["@nodelib/fs.walk@1.2.8", "", { "dependencies": { "@nodelib/fs.scandir": "2.1.5", "fastq": "^1.6.0" } }, "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg=="], - "@oxlint/darwin-arm64": ["@oxlint/darwin-arm64@0.16.7", "", { "os": "darwin", "cpu": "arm64" }, "sha512-VeWa9qDieR8TsjCLlQ9t0IkFQru3VSv5fwiNzqA14OKosTunFbAp0qaN4kw7bbwdtaVojwg7p0kKKX7TToyHrA=="], + "@oxc-resolver/binding-darwin-arm64": ["@oxc-resolver/binding-darwin-arm64@11.2.0", "", { "os": "darwin", "cpu": "arm64" }, "sha512-ruKLkS+Dm/YIJaUhzEB7zPI+jh3EXxu0QnNV8I7t9jf0lpD2VnltuyRbhrbJEkksklZj//xCMyFFsILGjiU2Mg=="], - "@oxlint/darwin-x64": ["@oxlint/darwin-x64@0.16.7", "", { "os": "darwin", "cpu": "x64" }, "sha512-uFRVF91sKIaXAYvJuAwj2t66IW11AmQZlAf1zIAymTZkFg513y7t92SAAPQEE131RU1WF/jKkrBv6kZyiFKddw=="], + "@oxc-resolver/binding-darwin-x64": ["@oxc-resolver/binding-darwin-x64@11.2.0", "", { "os": "darwin", "cpu": "x64" }, "sha512-0zhgNUm5bYezdSFOg3FYhtVP83bAq7FTV/3suGQDl/43MixfQG7+bl+hlrP4mz6WlD2SUb2u9BomnJWl1uey9w=="], - "@oxlint/linux-arm64-gnu": ["@oxlint/linux-arm64-gnu@0.16.7", "", { "os": "linux", "cpu": "arm64" }, "sha512-4wdrsLT8QE/89ln3WfsfLVvh+FqhDuzNTw2tiV8BNhJRORjenmNH8oX8NAvDXkA2OL/SIQ9YmFrPdh9MLdCPXA=="], + "@oxc-resolver/binding-freebsd-x64": ["@oxc-resolver/binding-freebsd-x64@11.2.0", "", { "os": "freebsd", "cpu": "x64" }, "sha512-SHOxfCcZV1axeIGfyeD1BkdLvfQgjmPy18tO0OUXGElcdScxD6MqU5rj/AVtiuBT+51GtFfOKlwl1+BdVwhD1A=="], - "@oxlint/linux-arm64-musl": ["@oxlint/linux-arm64-musl@0.16.7", "", { "os": "linux", "cpu": "arm64" }, "sha512-2zC+9HrZ8Cc0w9fdrnFSmLizommZqgzFbWK7PpmNUdvcULT/NFCUA/RVfsxxEcwBCNiEcnay4xTbXnI2UUPXQA=="], + "@oxc-resolver/binding-linux-arm-gnueabihf": ["@oxc-resolver/binding-linux-arm-gnueabihf@11.2.0", "", { "os": "linux", "cpu": "arm" }, "sha512-mgEkYrJ+N90sgEDqEZ07zH+4I1D28WjqAhdzfW3aS2x2vynVpoY9jWfHuH8S62vZt3uATJrTKTRa8CjPWEsrdw=="], - "@oxlint/linux-x64-gnu": ["@oxlint/linux-x64-gnu@0.16.7", "", { "os": "linux", "cpu": "x64" }, "sha512-6w7H+deX+5Y6J3mcjOTrnKTY5i/EV2O/2+U3GblOFov101W4KV1IFhkKjuHl+JvIFRi364ns98fOQNr9gk+Wsw=="], + "@oxc-resolver/binding-linux-arm64-gnu": ["@oxc-resolver/binding-linux-arm64-gnu@11.2.0", "", { "os": "linux", "cpu": "arm64" }, "sha512-BhEzNLjn4HjP8+Q18D3/jeIDBxW7OgoJYIjw2CaaysnYneoTlij8hPTKxHfyqq4IGM3fFs9TLR/k338M3zkQ7g=="], - "@oxlint/linux-x64-musl": ["@oxlint/linux-x64-musl@0.16.7", "", { "os": "linux", "cpu": "x64" }, "sha512-zFwBAzefgZNL2gQnQwiFnVmhPKXlIBp1ETjNarja56oWPUeWCwVvls1MQAvNgPjHDVdS40Vnka0DOHUelQk67Q=="], + "@oxc-resolver/binding-linux-arm64-musl": ["@oxc-resolver/binding-linux-arm64-musl@11.2.0", "", { "os": "linux", "cpu": "arm64" }, "sha512-yxbMYUgRmN2V8x8XoxmD/Qq6aG7YIW3ToMDILfmcfeeRRVieEJ3DOWBT0JSE+YgrOy79OyFDH/1lO8VnqLmDQQ=="], - "@oxlint/win32-arm64": ["@oxlint/win32-arm64@0.16.7", "", { "os": "win32", "cpu": "arm64" }, "sha512-ORQS2kw73Pqn8jE0oXlTol4W9KU+83aBQ0DMRg8vCl7ghhZ3BbJl87K3C+A5eGaH7wDHj/f8WtAgW6y460JtjQ=="], + "@oxc-resolver/binding-linux-riscv64-gnu": ["@oxc-resolver/binding-linux-riscv64-gnu@11.2.0", "", { "os": "linux", "cpu": "none" }, "sha512-QG1UfgC2N2qhW1tOnDCgB/26vn1RCshR5sYPhMeaxO1gMQ3kEKbZ3QyBXxrG1IX5qsXYj5hPDJLDYNYUjRcOpg=="], - "@oxlint/win32-x64": ["@oxlint/win32-x64@0.16.7", "", { "os": "win32", "cpu": "x64" }, "sha512-kUGut1deJm9JnKK1mYP+5F2QaxL7yY0Z0yiSGkLHjhwuYSkpprb9z/PePcTsu2yhs4fDtOriDxT8fUZEu8xvhQ=="], + "@oxc-resolver/binding-linux-s390x-gnu": ["@oxc-resolver/binding-linux-s390x-gnu@11.2.0", "", { "os": "linux", "cpu": "s390x" }, "sha512-uqTDsQdi6mrkSV1gvwbuT8jf/WFl6qVDVjNlx7IPSaAByrNiJfPrhTmH8b+Do58Dylz7QIRZgxQ8CHIZSyBUdg=="], + + "@oxc-resolver/binding-linux-x64-gnu": ["@oxc-resolver/binding-linux-x64-gnu@11.2.0", "", { "os": "linux", "cpu": "x64" }, "sha512-GZdHXhJ7p6GaQg9MjRqLebwBf8BLvGIagccI6z5yMj4fV3LU4QuDfwSEERG+R6oQ/Su9672MBqWwncvKcKT68w=="], + + "@oxc-resolver/binding-linux-x64-musl": ["@oxc-resolver/binding-linux-x64-musl@11.2.0", "", { "os": "linux", "cpu": "x64" }, "sha512-YBAC3GOicYznReG2twE7oFPSeK9Z1f507z1EYWKg6HpGYRYRlJyszViu7PrhMT85r/MumDTs429zm+CNqpFWOA=="], + + "@oxc-resolver/binding-wasm32-wasi": ["@oxc-resolver/binding-wasm32-wasi@11.2.0", "", { "dependencies": { "@napi-rs/wasm-runtime": "^0.2.11" }, "cpu": "none" }, "sha512-+qlIg45CPVPy+Jn3vqU1zkxA/AAv6e/2Ax/ImX8usZa8Tr2JmQn/93bmSOOOnr9fXRV9d0n4JyqYzSWxWPYDEw=="], + + "@oxc-resolver/binding-win32-arm64-msvc": ["@oxc-resolver/binding-win32-arm64-msvc@11.2.0", "", { "os": "win32", "cpu": "arm64" }, "sha512-AI4KIpS8Zf6vwfOPk0uQPSC0pQ1m5HU4hCbtrgL21JgJSlnJaeEu3/aoOBB45AXKiExBU9R+CDR7aSnW7uhc5A=="], + + "@oxc-resolver/binding-win32-x64-msvc": ["@oxc-resolver/binding-win32-x64-msvc@11.2.0", "", { "os": "win32", "cpu": "x64" }, "sha512-r19cQc7HaEJ76HFsMsbiKMTIV2YqFGSof8H5hB7e5Jkb/23Y8Isv1YrSzkDaGhcw02I/COsrPo+eEmjy35eFuA=="], + + "@oxlint/darwin-arm64": ["@oxlint/darwin-arm64@1.5.0", "", { "os": "darwin", "cpu": "arm64" }, "sha512-CxzOtmOwQfaXXwAAJzPInNHhzldMeFsga7oe9mUp5bYIa/mm/Aqs0lxyAP9RZXoxaUHJTbfJovSsl6PU6gbCHw=="], + + "@oxlint/darwin-x64": ["@oxlint/darwin-x64@1.5.0", "", { "os": "darwin", "cpu": "x64" }, "sha512-awD5yNGIRy2DrfzbrfeTSjZ+ITKr9+FGGvufquAB7kzfveFZNa621FpmCJ8MQY8hzXFD99iP7ClMNbaCzDfV/g=="], + + "@oxlint/linux-arm64-gnu": ["@oxlint/linux-arm64-gnu@1.5.0", "", { "os": "linux", "cpu": "arm64" }, "sha512-Nr8oUAEo20WIBo/qi76dBo5IGw2bQcl7d2YbaigOSQoAGfHR9xE9hAySYhIsnv7W0jtAZu1YTn0So7Tg0idExw=="], + + "@oxlint/linux-arm64-musl": ["@oxlint/linux-arm64-musl@1.5.0", "", { "os": "linux", "cpu": "arm64" }, "sha512-H2MBL0LZnl3GP09r12tFfcv3Y2fvetMD1TYbf5cetYCQ7hG7aIYTsuOTENjZ0SDK+L9Id35YWFNP3YES+3tsgw=="], + + "@oxlint/linux-x64-gnu": ["@oxlint/linux-x64-gnu@1.5.0", "", { "os": "linux", "cpu": "x64" }, "sha512-pRu77WJ+Uy0l6OkCjljnHuzOlSbMsN1mFDeAyzh8R69O44Mc2C7f1Fe+fbbW2kjgIwFQq8JkUffvPWr1MCMa+A=="], + + "@oxlint/linux-x64-musl": ["@oxlint/linux-x64-musl@1.5.0", "", { "os": "linux", "cpu": "x64" }, "sha512-qHG2YR+06pEAF4Gfp3T8hSaiI/IchdbuditnnVYxy32pN43vNMVDO7fU5hnNzJpxh6HozAD3uRrskBNvxgeSrQ=="], + + "@oxlint/win32-arm64": ["@oxlint/win32-arm64@1.5.0", "", { "os": "win32", "cpu": "arm64" }, "sha512-/YRDPf1sPCF6B026buZTvh1vOF/pS+75aBDnxrDWIFhP1w3flqcI9v5QVjtq/sOZEWAoP2ee46CrxcxK5UuYag=="], + + "@oxlint/win32-x64": ["@oxlint/win32-x64@1.5.0", "", { "os": "win32", "cpu": "x64" }, "sha512-4HmkdYgDmejTxXESV1EBXd0zFLsoNJad+VrWZizzpTCmBnWEL5+tueEmEBBb4F55/sFZt8bdD//RbaTM9aOQJA=="], + + "@playwright/test": ["@playwright/test@1.53.2", "", { "dependencies": { "playwright": "1.53.2" }, "bin": { "playwright": "cli.js" } }, "sha512-tEB2U5z74ebBeyfGNZ3Jfg29AnW+5HlWhvHtb/Mqco9pFdZU1ZLNdVb2UtB5CvmiilNr2ZfVH/qMmAROG/XTzw=="], "@prettier/plugin-php": ["@prettier/plugin-php@0.22.4", "", { "dependencies": { "linguist-languages": "^7.27.0", "php-parser": "^3.1.5" }, "peerDependencies": { "prettier": "^3.0.0" } }, "sha512-uZWqfyrwsxScIYkmVcfnoQGFmKVMXTHD5pqYT4l8fxzm5P3XY94hTPbf8X6TFCi2QTZBIot7GS8lfIjQjldc2g=="], @@ -428,125 +473,131 @@ "@rollup/plugin-inject": ["@rollup/plugin-inject@5.0.5", "", { "dependencies": { "@rollup/pluginutils": "^5.0.1", "estree-walker": "^2.0.2", "magic-string": "^0.30.3" }, "peerDependencies": { "rollup": "^1.20.0||^2.0.0||^3.0.0||^4.0.0" }, "optionalPeers": ["rollup"] }, "sha512-2+DEJbNBoPROPkgTDNe8/1YXWcqxbN5DTjASVIOx8HS+pITXushyNiBV56RB08zuptzz8gT3YfkqriTBVycepg=="], - "@rollup/pluginutils": ["@rollup/pluginutils@5.1.4", "", { "dependencies": { "@types/estree": "^1.0.0", "estree-walker": "^2.0.2", "picomatch": "^4.0.2" }, "peerDependencies": { "rollup": "^1.20.0||^2.0.0||^3.0.0||^4.0.0" }, "optionalPeers": ["rollup"] }, "sha512-USm05zrsFxYLPdWWq+K3STlWiT/3ELn3RcV5hJMghpeAIhxfsUIg6mt12CBJBInWMV4VneoV7SfGv8xIwo2qNQ=="], + "@rollup/pluginutils": ["@rollup/pluginutils@5.2.0", "", { "dependencies": { "@types/estree": "^1.0.0", "estree-walker": "^2.0.2", "picomatch": "^4.0.2" }, "peerDependencies": { "rollup": "^1.20.0||^2.0.0||^3.0.0||^4.0.0" }, "optionalPeers": ["rollup"] }, "sha512-qWJ2ZTbmumwiLFomfzTyt5Kng4hwPi9rwCYN4SHb6eaRU1KNO4ccxINHr/VhH4GgPlt1XfSTLX2LBTme8ne4Zw=="], - "@rollup/rollup-android-arm-eabi": ["@rollup/rollup-android-arm-eabi@4.40.0", "", { "os": "android", "cpu": "arm" }, "sha512-+Fbls/diZ0RDerhE8kyC6hjADCXA1K4yVNlH0EYfd2XjyH0UGgzaQ8MlT0pCXAThfxv3QUAczHaL+qSv1E4/Cg=="], + "@rollup/rollup-android-arm-eabi": ["@rollup/rollup-android-arm-eabi@4.44.0", "", { "os": "android", "cpu": "arm" }, "sha512-xEiEE5oDW6tK4jXCAyliuntGR+amEMO7HLtdSshVuhFnKTYoeYMyXQK7pLouAJJj5KHdwdn87bfHAR2nSdNAUA=="], - "@rollup/rollup-android-arm64": ["@rollup/rollup-android-arm64@4.40.0", "", { "os": "android", "cpu": "arm64" }, "sha512-PPA6aEEsTPRz+/4xxAmaoWDqh67N7wFbgFUJGMnanCFs0TV99M0M8QhhaSCks+n6EbQoFvLQgYOGXxlMGQe/6w=="], + "@rollup/rollup-android-arm64": ["@rollup/rollup-android-arm64@4.44.0", "", { "os": "android", "cpu": "arm64" }, "sha512-uNSk/TgvMbskcHxXYHzqwiyBlJ/lGcv8DaUfcnNwict8ba9GTTNxfn3/FAoFZYgkaXXAdrAA+SLyKplyi349Jw=="], - "@rollup/rollup-darwin-arm64": ["@rollup/rollup-darwin-arm64@4.40.0", "", { "os": "darwin", "cpu": "arm64" }, "sha512-GwYOcOakYHdfnjjKwqpTGgn5a6cUX7+Ra2HeNj/GdXvO2VJOOXCiYYlRFU4CubFM67EhbmzLOmACKEfvp3J1kQ=="], + "@rollup/rollup-darwin-arm64": ["@rollup/rollup-darwin-arm64@4.44.0", "", { "os": "darwin", "cpu": "arm64" }, "sha512-VGF3wy0Eq1gcEIkSCr8Ke03CWT+Pm2yveKLaDvq51pPpZza3JX/ClxXOCmTYYq3us5MvEuNRTaeyFThCKRQhOA=="], - "@rollup/rollup-darwin-x64": ["@rollup/rollup-darwin-x64@4.40.0", "", { "os": "darwin", "cpu": "x64" }, "sha512-CoLEGJ+2eheqD9KBSxmma6ld01czS52Iw0e2qMZNpPDlf7Z9mj8xmMemxEucinev4LgHalDPczMyxzbq+Q+EtA=="], + "@rollup/rollup-darwin-x64": ["@rollup/rollup-darwin-x64@4.44.0", "", { "os": "darwin", "cpu": "x64" }, "sha512-fBkyrDhwquRvrTxSGH/qqt3/T0w5Rg0L7ZIDypvBPc1/gzjJle6acCpZ36blwuwcKD/u6oCE/sRWlUAcxLWQbQ=="], - "@rollup/rollup-freebsd-arm64": ["@rollup/rollup-freebsd-arm64@4.40.0", "", { "os": "freebsd", "cpu": "arm64" }, "sha512-r7yGiS4HN/kibvESzmrOB/PxKMhPTlz+FcGvoUIKYoTyGd5toHp48g1uZy1o1xQvybwwpqpe010JrcGG2s5nkg=="], + "@rollup/rollup-freebsd-arm64": ["@rollup/rollup-freebsd-arm64@4.44.0", "", { "os": "freebsd", "cpu": "arm64" }, "sha512-u5AZzdQJYJXByB8giQ+r4VyfZP+walV+xHWdaFx/1VxsOn6eWJhK2Vl2eElvDJFKQBo/hcYIBg/jaKS8ZmKeNQ=="], - "@rollup/rollup-freebsd-x64": ["@rollup/rollup-freebsd-x64@4.40.0", "", { "os": "freebsd", "cpu": "x64" }, "sha512-mVDxzlf0oLzV3oZOr0SMJ0lSDd3xC4CmnWJ8Val8isp9jRGl5Dq//LLDSPFrasS7pSm6m5xAcKaw3sHXhBjoRw=="], + "@rollup/rollup-freebsd-x64": ["@rollup/rollup-freebsd-x64@4.44.0", "", { "os": "freebsd", "cpu": "x64" }, "sha512-qC0kS48c/s3EtdArkimctY7h3nHicQeEUdjJzYVJYR3ct3kWSafmn6jkNCA8InbUdge6PVx6keqjk5lVGJf99g=="], - "@rollup/rollup-linux-arm-gnueabihf": ["@rollup/rollup-linux-arm-gnueabihf@4.40.0", "", { "os": "linux", "cpu": "arm" }, "sha512-y/qUMOpJxBMy8xCXD++jeu8t7kzjlOCkoxxajL58G62PJGBZVl/Gwpm7JK9+YvlB701rcQTzjUZ1JgUoPTnoQA=="], + "@rollup/rollup-linux-arm-gnueabihf": ["@rollup/rollup-linux-arm-gnueabihf@4.44.0", "", { "os": "linux", "cpu": "arm" }, "sha512-x+e/Z9H0RAWckn4V2OZZl6EmV0L2diuX3QB0uM1r6BvhUIv6xBPL5mrAX2E3e8N8rEHVPwFfz/ETUbV4oW9+lQ=="], - "@rollup/rollup-linux-arm-musleabihf": ["@rollup/rollup-linux-arm-musleabihf@4.40.0", "", { "os": "linux", "cpu": "arm" }, "sha512-GoCsPibtVdJFPv/BOIvBKO/XmwZLwaNWdyD8TKlXuqp0veo2sHE+A/vpMQ5iSArRUz/uaoj4h5S6Pn0+PdhRjg=="], + "@rollup/rollup-linux-arm-musleabihf": ["@rollup/rollup-linux-arm-musleabihf@4.44.0", "", { "os": "linux", "cpu": "arm" }, "sha512-1exwiBFf4PU/8HvI8s80icyCcnAIB86MCBdst51fwFmH5dyeoWVPVgmQPcKrMtBQ0W5pAs7jBCWuRXgEpRzSCg=="], - "@rollup/rollup-linux-arm64-gnu": ["@rollup/rollup-linux-arm64-gnu@4.40.0", "", { "os": "linux", "cpu": "arm64" }, "sha512-L5ZLphTjjAD9leJzSLI7rr8fNqJMlGDKlazW2tX4IUF9P7R5TMQPElpH82Q7eNIDQnQlAyiNVfRPfP2vM5Avvg=="], + "@rollup/rollup-linux-arm64-gnu": ["@rollup/rollup-linux-arm64-gnu@4.44.0", "", { "os": "linux", "cpu": "arm64" }, "sha512-ZTR2mxBHb4tK4wGf9b8SYg0Y6KQPjGpR4UWwTFdnmjB4qRtoATZ5dWn3KsDwGa5Z2ZBOE7K52L36J9LueKBdOQ=="], - "@rollup/rollup-linux-arm64-musl": ["@rollup/rollup-linux-arm64-musl@4.40.0", "", { "os": "linux", "cpu": "arm64" }, "sha512-ATZvCRGCDtv1Y4gpDIXsS+wfFeFuLwVxyUBSLawjgXK2tRE6fnsQEkE4csQQYWlBlsFztRzCnBvWVfcae/1qxQ=="], + "@rollup/rollup-linux-arm64-musl": ["@rollup/rollup-linux-arm64-musl@4.44.0", "", { "os": "linux", "cpu": "arm64" }, "sha512-GFWfAhVhWGd4r6UxmnKRTBwP1qmModHtd5gkraeW2G490BpFOZkFtem8yuX2NyafIP/mGpRJgTJ2PwohQkUY/Q=="], - "@rollup/rollup-linux-loongarch64-gnu": ["@rollup/rollup-linux-loongarch64-gnu@4.40.0", "", { "os": "linux", "cpu": "none" }, "sha512-wG9e2XtIhd++QugU5MD9i7OnpaVb08ji3P1y/hNbxrQ3sYEelKJOq1UJ5dXczeo6Hj2rfDEL5GdtkMSVLa/AOg=="], + "@rollup/rollup-linux-loongarch64-gnu": ["@rollup/rollup-linux-loongarch64-gnu@4.44.0", "", { "os": "linux", "cpu": "none" }, "sha512-xw+FTGcov/ejdusVOqKgMGW3c4+AgqrfvzWEVXcNP6zq2ue+lsYUgJ+5Rtn/OTJf7e2CbgTFvzLW2j0YAtj0Gg=="], - "@rollup/rollup-linux-powerpc64le-gnu": ["@rollup/rollup-linux-powerpc64le-gnu@4.40.0", "", { "os": "linux", "cpu": "ppc64" }, "sha512-vgXfWmj0f3jAUvC7TZSU/m/cOE558ILWDzS7jBhiCAFpY2WEBn5jqgbqvmzlMjtp8KlLcBlXVD2mkTSEQE6Ixw=="], + "@rollup/rollup-linux-powerpc64le-gnu": ["@rollup/rollup-linux-powerpc64le-gnu@4.44.0", "", { "os": "linux", "cpu": "ppc64" }, "sha512-bKGibTr9IdF0zr21kMvkZT4K6NV+jjRnBoVMt2uNMG0BYWm3qOVmYnXKzx7UhwrviKnmK46IKMByMgvpdQlyJQ=="], - "@rollup/rollup-linux-riscv64-gnu": ["@rollup/rollup-linux-riscv64-gnu@4.40.0", "", { "os": "linux", "cpu": "none" }, "sha512-uJkYTugqtPZBS3Z136arevt/FsKTF/J9dEMTX/cwR7lsAW4bShzI2R0pJVw+hcBTWF4dxVckYh72Hk3/hWNKvA=="], + "@rollup/rollup-linux-riscv64-gnu": ["@rollup/rollup-linux-riscv64-gnu@4.44.0", "", { "os": "linux", "cpu": "none" }, "sha512-vV3cL48U5kDaKZtXrti12YRa7TyxgKAIDoYdqSIOMOFBXqFj2XbChHAtXquEn2+n78ciFgr4KIqEbydEGPxXgA=="], - "@rollup/rollup-linux-riscv64-musl": ["@rollup/rollup-linux-riscv64-musl@4.40.0", "", { "os": "linux", "cpu": "none" }, "sha512-rKmSj6EXQRnhSkE22+WvrqOqRtk733x3p5sWpZilhmjnkHkpeCgWsFFo0dGnUGeA+OZjRl3+VYq+HyCOEuwcxQ=="], + "@rollup/rollup-linux-riscv64-musl": ["@rollup/rollup-linux-riscv64-musl@4.44.0", "", { "os": "linux", "cpu": "none" }, "sha512-TDKO8KlHJuvTEdfw5YYFBjhFts2TR0VpZsnLLSYmB7AaohJhM8ctDSdDnUGq77hUh4m/djRafw+9zQpkOanE2Q=="], - "@rollup/rollup-linux-s390x-gnu": ["@rollup/rollup-linux-s390x-gnu@4.40.0", "", { "os": "linux", "cpu": "s390x" }, "sha512-SpnYlAfKPOoVsQqmTFJ0usx0z84bzGOS9anAC0AZ3rdSo3snecihbhFTlJZ8XMwzqAcodjFU4+/SM311dqE5Sw=="], + "@rollup/rollup-linux-s390x-gnu": ["@rollup/rollup-linux-s390x-gnu@4.44.0", "", { "os": "linux", "cpu": "s390x" }, "sha512-8541GEyktXaw4lvnGp9m84KENcxInhAt6vPWJ9RodsB/iGjHoMB2Pp5MVBCiKIRxrxzJhGCxmNzdu+oDQ7kwRA=="], - "@rollup/rollup-linux-x64-gnu": ["@rollup/rollup-linux-x64-gnu@4.40.0", "", { "os": "linux", "cpu": "x64" }, "sha512-RcDGMtqF9EFN8i2RYN2W+64CdHruJ5rPqrlYw+cgM3uOVPSsnAQps7cpjXe9be/yDp8UC7VLoCoKC8J3Kn2FkQ=="], + "@rollup/rollup-linux-x64-gnu": ["@rollup/rollup-linux-x64-gnu@4.44.0", "", { "os": "linux", "cpu": "x64" }, "sha512-iUVJc3c0o8l9Sa/qlDL2Z9UP92UZZW1+EmQ4xfjTc1akr0iUFZNfxrXJ/R1T90h/ILm9iXEY6+iPrmYB3pXKjw=="], - "@rollup/rollup-linux-x64-musl": ["@rollup/rollup-linux-x64-musl@4.40.0", "", { "os": "linux", "cpu": "x64" }, "sha512-HZvjpiUmSNx5zFgwtQAV1GaGazT2RWvqeDi0hV+AtC8unqqDSsaFjPxfsO6qPtKRRg25SisACWnJ37Yio8ttaw=="], + "@rollup/rollup-linux-x64-musl": ["@rollup/rollup-linux-x64-musl@4.44.0", "", { "os": "linux", "cpu": "x64" }, "sha512-PQUobbhLTQT5yz/SPg116VJBgz+XOtXt8D1ck+sfJJhuEsMj2jSej5yTdp8CvWBSceu+WW+ibVL6dm0ptG5fcA=="], - "@rollup/rollup-win32-arm64-msvc": ["@rollup/rollup-win32-arm64-msvc@4.40.0", "", { "os": "win32", "cpu": "arm64" }, "sha512-UtZQQI5k/b8d7d3i9AZmA/t+Q4tk3hOC0tMOMSq2GlMYOfxbesxG4mJSeDp0EHs30N9bsfwUvs3zF4v/RzOeTQ=="], + "@rollup/rollup-win32-arm64-msvc": ["@rollup/rollup-win32-arm64-msvc@4.44.0", "", { "os": "win32", "cpu": "arm64" }, "sha512-M0CpcHf8TWn+4oTxJfh7LQuTuaYeXGbk0eageVjQCKzYLsajWS/lFC94qlRqOlyC2KvRT90ZrfXULYmukeIy7w=="], - "@rollup/rollup-win32-ia32-msvc": ["@rollup/rollup-win32-ia32-msvc@4.40.0", "", { "os": "win32", "cpu": "ia32" }, "sha512-+m03kvI2f5syIqHXCZLPVYplP8pQch9JHyXKZ3AGMKlg8dCyr2PKHjwRLiW53LTrN/Nc3EqHOKxUxzoSPdKddA=="], + "@rollup/rollup-win32-ia32-msvc": ["@rollup/rollup-win32-ia32-msvc@4.44.0", "", { "os": "win32", "cpu": "ia32" }, "sha512-3XJ0NQtMAXTWFW8FqZKcw3gOQwBtVWP/u8TpHP3CRPXD7Pd6s8lLdH3sHWh8vqKCyyiI8xW5ltJScQmBU9j7WA=="], - "@rollup/rollup-win32-x64-msvc": ["@rollup/rollup-win32-x64-msvc@4.40.0", "", { "os": "win32", "cpu": "x64" }, "sha512-lpPE1cLfP5oPzVjKMx10pgBmKELQnFJXHgvtHCtuJWOv8MxqdEIMNtgHgBFf7Ea2/7EuVwa9fodWUfXAlXZLZQ=="], + "@rollup/rollup-win32-x64-msvc": ["@rollup/rollup-win32-x64-msvc@4.44.0", "", { "os": "win32", "cpu": "x64" }, "sha512-Q2Mgwt+D8hd5FIPUuPDsvPR7Bguza6yTkJxspDGkZj7tBRn2y4KSWYuIXpftFSjBra76TbKerCV7rgFPQrn+wQ=="], "@sec-ant/readable-stream": ["@sec-ant/readable-stream@0.4.1", "", {}, "sha512-831qok9r2t8AlxLko40y2ebgSDhenenCatLVeW/uBtnHPyhHOvG0C7TvfgecV+wHzIm5KUICgzmVpWS+IMEAeg=="], - "@sentry-internal/browser-utils": ["@sentry-internal/browser-utils@9.14.0", "", { "dependencies": { "@sentry/core": "9.14.0" } }, "sha512-pDk9XUu9zf7lcT9QX0nTObPNp/y0xQyy1Dj+5/8TSB3vAfe0LQcooKGl/D1h7EoIXVHUozZk5JC/dH+gz6BXRg=="], + "@sentry-internal/browser-utils": ["@sentry-internal/browser-utils@9.34.0", "", { "dependencies": { "@sentry/core": "9.34.0" } }, "sha512-pXVznvP4CROejYtk6y7UQvPTieWz2vXjukGlO45fsnQa9nNo30lkQh3Ws2HZw2YbTxYZQYx75FBDezwKl2q0hQ=="], - "@sentry-internal/feedback": ["@sentry-internal/feedback@9.14.0", "", { "dependencies": { "@sentry/core": "9.14.0" } }, "sha512-D+PiEUWbDT0vqmaTiOs6OzXwVRVFgf7BCkFs48qsN9sAPwUgT+5zh2oo/rU2r0NrmMcvJVtSY+ezwPMk8BgGsg=="], + "@sentry-internal/feedback": ["@sentry-internal/feedback@9.34.0", "", { "dependencies": { "@sentry/core": "9.34.0" } }, "sha512-HT/EBRl1DR8XqlJk2wFNPJFcnIzNcEDjmW7C/o7K0GeP5jcSH0dKpcH7ykz2bi46gMRPrkO5EK2eXGK81KYI3g=="], - "@sentry-internal/replay": ["@sentry-internal/replay@9.14.0", "", { "dependencies": { "@sentry-internal/browser-utils": "9.14.0", "@sentry/core": "9.14.0" } }, "sha512-wgt397/PtpfVQ9t779a0L+hGH3JN9doXv3+9Wj98MLWwhymvJBjpjCFUBLScO5iP6imewTbRqQHbq7XS7I+x1A=="], + "@sentry-internal/replay": ["@sentry-internal/replay@9.34.0", "", { "dependencies": { "@sentry-internal/browser-utils": "9.34.0", "@sentry/core": "9.34.0" } }, "sha512-joYSqWltmpkcqI8Gg8jwFtPv0F01whmuQfNGoGaL7Z6B/xO1vvkqEudrg1tmswUHhqtYpZYaEaCvrmv0sPGCfA=="], - "@sentry-internal/replay-canvas": ["@sentry-internal/replay-canvas@9.14.0", "", { "dependencies": { "@sentry-internal/replay": "9.14.0", "@sentry/core": "9.14.0" } }, "sha512-GhCSqc0oNzRiLhQsi9LCXgUmIwdHdvzVIsX4fihoFYWfgWSSj5YLqeEkb3CMM8htM6vheSFzIbPLlRS8fjCrPQ=="], + "@sentry-internal/replay-canvas": ["@sentry-internal/replay-canvas@9.34.0", "", { "dependencies": { "@sentry-internal/replay": "9.34.0", "@sentry/core": "9.34.0" } }, "sha512-GCtqMFk9WwrU3JNz1tlCFAhzmNfgZhLRaS0cLzoTuxPbG3CC2VUIWYEOw7+AdCJZGm8ElTMxu+BkChgGb8qthQ=="], - "@sentry/browser": ["@sentry/browser@9.14.0", "", { "dependencies": { "@sentry-internal/browser-utils": "9.14.0", "@sentry-internal/feedback": "9.14.0", "@sentry-internal/replay": "9.14.0", "@sentry-internal/replay-canvas": "9.14.0", "@sentry/core": "9.14.0" } }, "sha512-acxFbFEei3hzKr/IW3OmkzHlwohRaRBG0872nIhLYV2f/BgZmR6eV5zrUoELMmt2cgoLmDYyfp1734OoplfDbw=="], + "@sentry/browser": ["@sentry/browser@9.34.0", "", { "dependencies": { "@sentry-internal/browser-utils": "9.34.0", "@sentry-internal/feedback": "9.34.0", "@sentry-internal/replay": "9.34.0", "@sentry-internal/replay-canvas": "9.34.0", "@sentry/core": "9.34.0" } }, "sha512-6oJxU7JEA/RCgMTVlHXT54U9d0DWg61GgzyLTM+FUa8OUrAoK/t+CZGSMc/13nYN8xs7vcpiORdRx0ogch9zGw=="], - "@sentry/core": ["@sentry/core@9.14.0", "", {}, "sha512-OLfucnP3LAL5bxVNWc2RVOHCX7fk9Er5bWPCS+O5cPjqNUUz0HQHhVh2Vhei5C0kYZZM4vy4BQit5T9LrlOaNA=="], + "@sentry/core": ["@sentry/core@9.34.0", "", {}, "sha512-M/zikVaE3KLkhCFDyrHB35sF7pVkB2RPy07BcRsdFsSsdpjoG+Zq2Sxth2tMTbjd0x9Vtb/X6LVjyCj9GSEvVg=="], "@sindresorhus/is": ["@sindresorhus/is@5.6.0", "", {}, "sha512-TV7t8GKYaJWsn00tFDqBw8+Uqmr8A0fRU1tvTQhyZzGv0sJCGRQL3JGMI3ucuKo3XIZdUP+Lx7/gh2t3lewy7g=="], "@stylistic/stylelint-plugin": ["@stylistic/stylelint-plugin@3.1.2", "", { "dependencies": { "@csstools/css-parser-algorithms": "^3.0.1", "@csstools/css-tokenizer": "^3.0.1", "@csstools/media-query-list-parser": "^3.0.1", "is-plain-object": "^5.0.0", "postcss-selector-parser": "^6.1.2", "postcss-value-parser": "^4.2.0", "style-search": "^0.1.0", "stylelint": "^16.8.2" } }, "sha512-tylFJGMQo62alGazK74MNxFjMagYOHmBZiePZFOJK2n13JZta0uVkB3Bh5qodUmOLtRH+uxH297EibK14UKm8g=="], - "@swan-io/boxed": ["@swan-io/boxed@3.2.0", "", { "peerDependencies": { "typescript": ">=5.0.0" }, "optionalPeers": ["typescript"] }, "sha512-wk6gSWjZ7nj619ifwyLFZN+B0mjpsXyfroT97ByFqvi5Ywx9nLWz7cEvStTNGIh1oAxKxGtGQLbs9dFGmtypNA=="], + "@swc/cli": ["@swc/cli@0.7.7", "", { "dependencies": { "@swc/counter": "^0.1.3", "@xhmikosr/bin-wrapper": "^13.0.5", "commander": "^8.3.0", "fast-glob": "^3.2.5", "minimatch": "^9.0.3", "piscina": "^4.3.1", "semver": "^7.3.8", "slash": "3.0.0", "source-map": "^0.7.3" }, "peerDependencies": { "@swc/core": "^1.2.66", "chokidar": "^4.0.1" }, "optionalPeers": ["chokidar"], "bin": { "swc": "bin/swc.js", "swcx": "bin/swcx.js", "spack": "bin/spack.js" } }, "sha512-j4yYm9bx3pxWofaJKX1BFwj/3ngUDynN4UIQ2Xd2h0h/7Gt7zkReBTpDN7g5S13mgAYxacaTHTOUsz18097E8w=="], - "@swc/cli": ["@swc/cli@0.7.3", "", { "dependencies": { "@swc/counter": "^0.1.3", "@xhmikosr/bin-wrapper": "^13.0.5", "commander": "^8.3.0", "fast-glob": "^3.2.5", "minimatch": "^9.0.3", "piscina": "^4.3.1", "semver": "^7.3.8", "slash": "3.0.0", "source-map": "^0.7.3" }, "peerDependencies": { "@swc/core": "^1.2.66", "chokidar": "^4.0.1" }, "optionalPeers": ["chokidar"], "bin": { "swc": "bin/swc.js", "swcx": "bin/swcx.js", "spack": "bin/spack.js" } }, "sha512-rnVXNnlURjdOuPaBIwZ3TmBA44BF/eP0j154LanlgPEYfau74ige7cpKlKkZr1IBqMOG99lAnYNxQipDWA3hdg=="], + "@swc/core": ["@swc/core@1.12.5", "", { "dependencies": { "@swc/counter": "^0.1.3", "@swc/types": "^0.1.23" }, "optionalDependencies": { "@swc/core-darwin-arm64": "1.12.5", "@swc/core-darwin-x64": "1.12.5", "@swc/core-linux-arm-gnueabihf": "1.12.5", "@swc/core-linux-arm64-gnu": "1.12.5", "@swc/core-linux-arm64-musl": "1.12.5", "@swc/core-linux-x64-gnu": "1.12.5", "@swc/core-linux-x64-musl": "1.12.5", "@swc/core-win32-arm64-msvc": "1.12.5", "@swc/core-win32-ia32-msvc": "1.12.5", "@swc/core-win32-x64-msvc": "1.12.5" }, "peerDependencies": { "@swc/helpers": ">=0.5.17" }, "optionalPeers": ["@swc/helpers"] }, "sha512-KxA0PHHIuUBmQ/Oi+xFpVzILj2Oo37sTtftCbyowQlyx5YOknEOw1kLpas5hMcpznXgFyAWbpK71xQps4INPgA=="], - "@swc/core": ["@swc/core@1.11.22", "", { "dependencies": { "@swc/counter": "^0.1.3", "@swc/types": "^0.1.21" }, "optionalDependencies": { "@swc/core-darwin-arm64": "1.11.22", "@swc/core-darwin-x64": "1.11.22", "@swc/core-linux-arm-gnueabihf": "1.11.22", "@swc/core-linux-arm64-gnu": "1.11.22", "@swc/core-linux-arm64-musl": "1.11.22", "@swc/core-linux-x64-gnu": "1.11.22", "@swc/core-linux-x64-musl": "1.11.22", "@swc/core-win32-arm64-msvc": "1.11.22", "@swc/core-win32-ia32-msvc": "1.11.22", "@swc/core-win32-x64-msvc": "1.11.22" }, "peerDependencies": { "@swc/helpers": ">=0.5.17" }, "optionalPeers": ["@swc/helpers"] }, "sha512-mjPYbqq8XjwqSE0hEPT9CzaJDyxql97LgK4iyvYlwVSQhdN1uK0DBG4eP9PxYzCS2MUGAXB34WFLegdUj5HGpg=="], + "@swc/core-darwin-arm64": ["@swc/core-darwin-arm64@1.12.5", "", { "os": "darwin", "cpu": "arm64" }, "sha512-3WF+naP/qkt5flrTfJr+p07b522JcixKvIivM7FgvllA6LjJxf+pheoILrTS8IwrNAK/XtHfKWYcGY+3eaA4mA=="], - "@swc/core-darwin-arm64": ["@swc/core-darwin-arm64@1.11.22", "", { "os": "darwin", "cpu": "arm64" }, "sha512-upSiFQfo1TE2QM3+KpBcp5SrOdKKjoc+oUoD1mmBDU2Wv4Bjjv16Z2I5ADvIqMV+b87AhYW+4Qu6iVrQD7j96Q=="], + "@swc/core-darwin-x64": ["@swc/core-darwin-x64@1.12.5", "", { "os": "darwin", "cpu": "x64" }, "sha512-GCcD3dft8YN7unTBcW02Fx41jXp2MNQHCjx5ceWSEYOGvn7vBSUp7k7LkfTxGN5Ftxb9a1mxhPq8r4rD2u/aPw=="], - "@swc/core-darwin-x64": ["@swc/core-darwin-x64@1.11.22", "", { "os": "darwin", "cpu": "x64" }, "sha512-8PEuF/gxIMJVK21DjuCOtzdqstn2DqnxVhpAYfXEtm3WmMqLIOIZBypF/xafAozyaHws4aB/5xmz8/7rPsjavw=="], + "@swc/core-linux-arm-gnueabihf": ["@swc/core-linux-arm-gnueabihf@1.12.5", "", { "os": "linux", "cpu": "arm" }, "sha512-jWlzP/Y4+wbE/EJM+WGIDQsklLFV3g5LmbYTBgrY4+5nb517P31mkBzf5y2knfNWPrL7HzNu0578j3Zi2E6Iig=="], - "@swc/core-linux-arm-gnueabihf": ["@swc/core-linux-arm-gnueabihf@1.11.22", "", { "os": "linux", "cpu": "arm" }, "sha512-NIPTXvqtn9e7oQHgdaxM9Z/anHoXC3Fg4ZAgw5rSGa1OlnKKupt5sdfJamNggSi+eAtyoFcyfkgqHnfe2u63HA=="], + "@swc/core-linux-arm64-gnu": ["@swc/core-linux-arm64-gnu@1.12.5", "", { "os": "linux", "cpu": "arm64" }, "sha512-GkzgIUz+2r6J6Tn3hb7/4ByaWHRrRZt4vuN9BLAd+y65m2Bt0vlEpPtWhrB/TVe4hEkFR+W5PDETLEbUT4i0tQ=="], - "@swc/core-linux-arm64-gnu": ["@swc/core-linux-arm64-gnu@1.11.22", "", { "os": "linux", "cpu": "arm64" }, "sha512-xZ+bgS60c5r8kAeYsLNjJJhhQNkXdidQ277pUabSlu5GjR0CkQUPQ+L9hFeHf8DITEqpPBPRiAiiJsWq5eqMBg=="], + "@swc/core-linux-arm64-musl": ["@swc/core-linux-arm64-musl@1.12.5", "", { "os": "linux", "cpu": "arm64" }, "sha512-g0AJ7QmZPj3Uw+C5pDa48LAUG7JBgQmB0mN5cW+s2mjaFKT0mTSxYALtx/MDZwJExDPo0yJV8kSbFO1tvFPyhg=="], - "@swc/core-linux-arm64-musl": ["@swc/core-linux-arm64-musl@1.11.22", "", { "os": "linux", "cpu": "arm64" }, "sha512-JhrP/q5VqQl2eJR0xKYIkKTPjgf8CRsAmRnjJA2PtZhfQ543YbYvUqxyXSRyBOxdyX8JwzuAxIPEAlKlT7PPuQ=="], + "@swc/core-linux-x64-gnu": ["@swc/core-linux-x64-gnu@1.12.5", "", { "os": "linux", "cpu": "x64" }, "sha512-PeYoSziNy+iNiBHPtAsO84bzBne/mbCsG5ijYkAhS1GVsDgohClorUvRXXhcUZoX2gr8TfSI9WLHo30K+DKiHg=="], - "@swc/core-linux-x64-gnu": ["@swc/core-linux-x64-gnu@1.11.22", "", { "os": "linux", "cpu": "x64" }, "sha512-htmAVL+U01gk9GyziVUP0UWYaUQBgrsiP7Ytf6uDffrySyn/FclUS3MDPocNydqYsOpj3OpNKPxkaHK+F+X5fg=="], + "@swc/core-linux-x64-musl": ["@swc/core-linux-x64-musl@1.12.5", "", { "os": "linux", "cpu": "x64" }, "sha512-EJrfCCIyuV5LLmYgKtIMwtgsnjVesdFe0IgQzEKs9OfB6cL6g7WO9conn8BkGX8jphVa7jChKxShDGkreWWDzA=="], - "@swc/core-linux-x64-musl": ["@swc/core-linux-x64-musl@1.11.22", "", { "os": "linux", "cpu": "x64" }, "sha512-PL0VHbduWPX+ANoyOzr58jBiL2VnD0xGSFwPy7NRZ1Pr6SNWm4jw3x2u6RjLArGhS5EcWp64BSk9ZxqmTV3FEg=="], + "@swc/core-win32-arm64-msvc": ["@swc/core-win32-arm64-msvc@1.12.5", "", { "os": "win32", "cpu": "arm64" }, "sha512-FnwT7fxkJJMgsfiDoZKEVGyCzrPFbzpflFAAoTCUCu3MaHw6mW55o/MAAfofvJ1iIcEpec4o93OilsmKtpyO5Q=="], - "@swc/core-win32-arm64-msvc": ["@swc/core-win32-arm64-msvc@1.11.22", "", { "os": "win32", "cpu": "arm64" }, "sha512-moJvFhhTVGoMeEThtdF7hQog80Q00CS06v5uB+32VRuv+I31+4WPRyGlTWHO+oY4rReNcXut/mlDHPH7p0LdFg=="], + "@swc/core-win32-ia32-msvc": ["@swc/core-win32-ia32-msvc@1.12.5", "", { "os": "win32", "cpu": "ia32" }, "sha512-jW6l4KFt9mIXSpGseE6BQOEFmbIeXeShDuWgldEJXKeXf/uPs8wrqv80XBIUwVpK0ZbmJwPQ0waGVj8UM3th2Q=="], - "@swc/core-win32-ia32-msvc": ["@swc/core-win32-ia32-msvc@1.11.22", "", { "os": "win32", "cpu": "ia32" }, "sha512-/jnsPJJz89F1aKHIb5ScHkwyzBciz2AjEq2m9tDvQdIdVufdJ4SpEDEN9FqsRNRLcBHjtbLs6bnboA+B+pRFXw=="], - - "@swc/core-win32-x64-msvc": ["@swc/core-win32-x64-msvc@1.11.22", "", { "os": "win32", "cpu": "x64" }, "sha512-lc93Y8Mku7LCFGqIxJ91coXZp2HeoDcFZSHCL90Wttg5xhk5xVM9uUCP+OdQsSsEixLF34h5DbT9ObzP8rAdRw=="], + "@swc/core-win32-x64-msvc": ["@swc/core-win32-x64-msvc@1.12.5", "", { "os": "win32", "cpu": "x64" }, "sha512-AZszwuEjlz1tSNLQRm3T5OZJ5eebxjJlDQnnzXJmg0B7DJMRoaAe1HTLOmejxjFK6yWr7fh+pSeCw2PgQLxgqA=="], "@swc/counter": ["@swc/counter@0.1.3", "", {}, "sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ=="], - "@swc/types": ["@swc/types@0.1.21", "", { "dependencies": { "@swc/counter": "^0.1.3" } }, "sha512-2YEtj5HJVbKivud9N4bpPBAyZhj4S2Ipe5LkUG94alTpr7in/GU/EARgPAd3BwU+YOmFVJC2+kjqhGRi3r0ZpQ=="], + "@swc/types": ["@swc/types@0.1.23", "", { "dependencies": { "@swc/counter": "^0.1.3" } }, "sha512-u1iIVZV9Q0jxY+yM2vw/hZGDNudsN85bBpTqzAQ9rzkxW9D+e3aEM4Han+ow518gSewkXgjmEK0BD79ZcNVgPw=="], "@szmarczak/http-timer": ["@szmarczak/http-timer@5.0.1", "", { "dependencies": { "defer-to-connect": "^2.0.1" } }, "sha512-+PmQX0PiAYPMeVYe237LJAYvOMYW1j2rH5YROyS3b4CTVJum34HfRvKvAzozHAQG0TnHNdUfY9nCeUyRAs//cw=="], "@tokenizer/token": ["@tokenizer/token@0.3.0", "", {}, "sha512-OvjF+z51L3ov0OyAU0duzsYuvO01PH7x4t6DJx+guahgTnBHkhJdG7soQeTSFLWN3efnHyibZ4Z8l2EuWwJN3A=="], - "@types/estree": ["@types/estree@1.0.7", "", {}, "sha512-w28IoSUCJpidD/TGviZwwMJckNESJZXFu7NBZ5YJ4mEUnNraUn9Pm8HSZm/jDF1pDWYKspWE7oVphigUPRakIQ=="], + "@tybys/wasm-util": ["@tybys/wasm-util@0.9.0", "", { "dependencies": { "tslib": "^2.4.0" } }, "sha512-6+7nlbMVX/PVDCwaIQ8nTOPveOcFLSt8GcXdx8hD0bt39uWxYT88uXzqTd4fTvqta7oeUJqudepapKNt2DYJFw=="], + + "@types/eslint__js": ["@types/eslint__js@9.14.0", "", { "dependencies": { "@eslint/js": "*" } }, "sha512-s0jepCjOJWB/GKcuba4jISaVpBudw3ClXJ3fUK4tugChUMQsp6kSwuA8Dcx6wFd/JsJqcY8n4rEpa5RTHs5ypA=="], + + "@types/estree": ["@types/estree@1.0.8", "", {}, "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w=="], "@types/http-cache-semantics": ["@types/http-cache-semantics@4.0.4", "", {}, "sha512-1m0bIFVc7eJWyve9S0RnuRgcQqF/Xd5QsUZAZeQFr1Q3/p9JWoQQEqmVy+DPTNpGXwhgIetAoYF8JSc33q29QA=="], "@types/json-schema": ["@types/json-schema@7.0.15", "", {}, "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA=="], - "@types/node": ["@types/node@22.14.1", "", { "dependencies": { "undici-types": "~6.21.0" } }, "sha512-u0HuPQwe/dHrItgHHpmw3N2fYCR6x4ivMNbPHRkBVP4CvN+kiRrKHWk3i8tXiO/joPwXLMYvF9TTF0eqgHIuOw=="], + "@types/node": ["@types/node@24.0.10", "", { "dependencies": { "undici-types": "~7.8.0" } }, "sha512-ENHwaH+JIRTDIEEbDK6QSQntAYGtbvdDXnMXnZaZ6k13Du1dPMmprkEHIL7ok2Wl2aZevetwTAb5S+7yIF+enA=="], "@types/trusted-types": ["@types/trusted-types@2.0.7", "", {}, "sha512-ScaPdn1dQczgbl0QFTeTOmVHFULt394XJgOQNoyVhZ6r2vLnMLJfBPd53SB52T/3G36VI1/g2MZaX0cwDuXsfw=="], - "@typescript-eslint/eslint-plugin": ["@typescript-eslint/eslint-plugin@8.31.0", "", { "dependencies": { "@eslint-community/regexpp": "^4.10.0", "@typescript-eslint/scope-manager": "8.31.0", "@typescript-eslint/type-utils": "8.31.0", "@typescript-eslint/utils": "8.31.0", "@typescript-eslint/visitor-keys": "8.31.0", "graphemer": "^1.4.0", "ignore": "^5.3.1", "natural-compare": "^1.4.0", "ts-api-utils": "^2.0.1" }, "peerDependencies": { "@typescript-eslint/parser": "^8.0.0 || ^8.0.0-alpha.0", "eslint": "^8.57.0 || ^9.0.0", "typescript": ">=4.8.4 <5.9.0" } }, "sha512-evaQJZ/J/S4wisevDvC1KFZkPzRetH8kYZbkgcTRyql3mcKsf+ZFDV1BVWUGTCAW5pQHoqn5gK5b8kn7ou9aFQ=="], + "@typescript-eslint/eslint-plugin": ["@typescript-eslint/eslint-plugin@8.35.1", "", { "dependencies": { "@eslint-community/regexpp": "^4.10.0", "@typescript-eslint/scope-manager": "8.35.1", "@typescript-eslint/type-utils": "8.35.1", "@typescript-eslint/utils": "8.35.1", "@typescript-eslint/visitor-keys": "8.35.1", "graphemer": "^1.4.0", "ignore": "^7.0.0", "natural-compare": "^1.4.0", "ts-api-utils": "^2.1.0" }, "peerDependencies": { "@typescript-eslint/parser": "^8.35.1", "eslint": "^8.57.0 || ^9.0.0", "typescript": ">=4.8.4 <5.9.0" } }, "sha512-9XNTlo7P7RJxbVeICaIIIEipqxLKguyh+3UbXuT2XQuFp6d8VOeDEGuz5IiX0dgZo8CiI6aOFLg4e8cF71SFVg=="], - "@typescript-eslint/parser": ["@typescript-eslint/parser@8.31.0", "", { "dependencies": { "@typescript-eslint/scope-manager": "8.31.0", "@typescript-eslint/types": "8.31.0", "@typescript-eslint/typescript-estree": "8.31.0", "@typescript-eslint/visitor-keys": "8.31.0", "debug": "^4.3.4" }, "peerDependencies": { "eslint": "^8.57.0 || ^9.0.0", "typescript": ">=4.8.4 <5.9.0" } }, "sha512-67kYYShjBR0jNI5vsf/c3WG4u+zDnCTHTPqVMQguffaWWFs7artgwKmfwdifl+r6XyM5LYLas/dInj2T0SgJyw=="], + "@typescript-eslint/parser": ["@typescript-eslint/parser@8.35.1", "", { "dependencies": { "@typescript-eslint/scope-manager": "8.35.1", "@typescript-eslint/types": "8.35.1", "@typescript-eslint/typescript-estree": "8.35.1", "@typescript-eslint/visitor-keys": "8.35.1", "debug": "^4.3.4" }, "peerDependencies": { "eslint": "^8.57.0 || ^9.0.0", "typescript": ">=4.8.4 <5.9.0" } }, "sha512-3MyiDfrfLeK06bi/g9DqJxP5pV74LNv4rFTyvGDmT3x2p1yp1lOd+qYZfiRPIOf/oON+WRZR5wxxuF85qOar+w=="], - "@typescript-eslint/scope-manager": ["@typescript-eslint/scope-manager@8.31.0", "", { "dependencies": { "@typescript-eslint/types": "8.31.0", "@typescript-eslint/visitor-keys": "8.31.0" } }, "sha512-knO8UyF78Nt8O/B64i7TlGXod69ko7z6vJD9uhSlm0qkAbGeRUSudcm0+K/4CrRjrpiHfBCjMWlc08Vav1xwcw=="], + "@typescript-eslint/project-service": ["@typescript-eslint/project-service@8.34.1", "", { "dependencies": { "@typescript-eslint/tsconfig-utils": "^8.34.1", "@typescript-eslint/types": "^8.34.1", "debug": "^4.3.4" }, "peerDependencies": { "typescript": ">=4.8.4 <5.9.0" } }, "sha512-nuHlOmFZfuRwLJKDGQOVc0xnQrAmuq1Mj/ISou5044y1ajGNp2BNliIqp7F2LPQ5sForz8lempMFCovfeS1XoA=="], - "@typescript-eslint/type-utils": ["@typescript-eslint/type-utils@8.31.0", "", { "dependencies": { "@typescript-eslint/typescript-estree": "8.31.0", "@typescript-eslint/utils": "8.31.0", "debug": "^4.3.4", "ts-api-utils": "^2.0.1" }, "peerDependencies": { "eslint": "^8.57.0 || ^9.0.0", "typescript": ">=4.8.4 <5.9.0" } }, "sha512-DJ1N1GdjI7IS7uRlzJuEDCgDQix3ZVYVtgeWEyhyn4iaoitpMBX6Ndd488mXSx0xah/cONAkEaYyylDyAeHMHg=="], + "@typescript-eslint/scope-manager": ["@typescript-eslint/scope-manager@8.34.1", "", { "dependencies": { "@typescript-eslint/types": "8.34.1", "@typescript-eslint/visitor-keys": "8.34.1" } }, "sha512-beu6o6QY4hJAgL1E8RaXNC071G4Kso2MGmJskCFQhRhg8VOH/FDbC8soP8NHN7e/Hdphwp8G8cE6OBzC8o41ZA=="], - "@typescript-eslint/types": ["@typescript-eslint/types@8.31.0", "", {}, "sha512-Ch8oSjVyYyJxPQk8pMiP2FFGYatqXQfQIaMp+TpuuLlDachRWpUAeEu1u9B/v/8LToehUIWyiKcA/w5hUFRKuQ=="], + "@typescript-eslint/tsconfig-utils": ["@typescript-eslint/tsconfig-utils@8.34.1", "", { "peerDependencies": { "typescript": ">=4.8.4 <5.9.0" } }, "sha512-K4Sjdo4/xF9NEeA2khOb7Y5nY6NSXBnod87uniVYW9kHP+hNlDV8trUSFeynA2uxWam4gIWgWoygPrv9VMWrYg=="], - "@typescript-eslint/typescript-estree": ["@typescript-eslint/typescript-estree@8.31.0", "", { "dependencies": { "@typescript-eslint/types": "8.31.0", "@typescript-eslint/visitor-keys": "8.31.0", "debug": "^4.3.4", "fast-glob": "^3.3.2", "is-glob": "^4.0.3", "minimatch": "^9.0.4", "semver": "^7.6.0", "ts-api-utils": "^2.0.1" }, "peerDependencies": { "typescript": ">=4.8.4 <5.9.0" } }, "sha512-xLmgn4Yl46xi6aDSZ9KkyfhhtnYI15/CvHbpOy/eR5NWhK/BK8wc709KKwhAR0m4ZKRP7h07bm4BWUYOCuRpQQ=="], + "@typescript-eslint/type-utils": ["@typescript-eslint/type-utils@8.35.1", "", { "dependencies": { "@typescript-eslint/typescript-estree": "8.35.1", "@typescript-eslint/utils": "8.35.1", "debug": "^4.3.4", "ts-api-utils": "^2.1.0" }, "peerDependencies": { "eslint": "^8.57.0 || ^9.0.0", "typescript": ">=4.8.4 <5.9.0" } }, "sha512-HOrUBlfVRz5W2LIKpXzZoy6VTZzMu2n8q9C2V/cFngIC5U1nStJgv0tMV4sZPzdf4wQm9/ToWUFPMN9Vq9VJQQ=="], - "@typescript-eslint/utils": ["@typescript-eslint/utils@8.31.0", "", { "dependencies": { "@eslint-community/eslint-utils": "^4.4.0", "@typescript-eslint/scope-manager": "8.31.0", "@typescript-eslint/types": "8.31.0", "@typescript-eslint/typescript-estree": "8.31.0" }, "peerDependencies": { "eslint": "^8.57.0 || ^9.0.0", "typescript": ">=4.8.4 <5.9.0" } }, "sha512-qi6uPLt9cjTFxAb1zGNgTob4x9ur7xC6mHQJ8GwEzGMGE9tYniublmJaowOJ9V2jUzxrltTPfdG2nKlWsq0+Ww=="], + "@typescript-eslint/types": ["@typescript-eslint/types@8.34.1", "", {}, "sha512-rjLVbmE7HR18kDsjNIZQHxmv9RZwlgzavryL5Lnj2ujIRTeXlKtILHgRNmQ3j4daw7zd+mQgy+uyt6Zo6I0IGA=="], - "@typescript-eslint/visitor-keys": ["@typescript-eslint/visitor-keys@8.31.0", "", { "dependencies": { "@typescript-eslint/types": "8.31.0", "eslint-visitor-keys": "^4.2.0" } }, "sha512-QcGHmlRHWOl93o64ZUMNewCdwKGU6WItOU52H0djgNmn1EOrhVudrDzXz4OycCRSCPwFCDrE2iIt5vmuUdHxuQ=="], + "@typescript-eslint/typescript-estree": ["@typescript-eslint/typescript-estree@8.34.1", "", { "dependencies": { "@typescript-eslint/project-service": "8.34.1", "@typescript-eslint/tsconfig-utils": "8.34.1", "@typescript-eslint/types": "8.34.1", "@typescript-eslint/visitor-keys": "8.34.1", "debug": "^4.3.4", "fast-glob": "^3.3.2", "is-glob": "^4.0.3", "minimatch": "^9.0.4", "semver": "^7.6.0", "ts-api-utils": "^2.1.0" }, "peerDependencies": { "typescript": ">=4.8.4 <5.9.0" } }, "sha512-rjCNqqYPuMUF5ODD+hWBNmOitjBWghkGKJg6hiCHzUvXRy6rK22Jd3rwbP2Xi+R7oYVvIKhokHVhH41BxPV5mA=="], + + "@typescript-eslint/utils": ["@typescript-eslint/utils@8.34.1", "", { "dependencies": { "@eslint-community/eslint-utils": "^4.7.0", "@typescript-eslint/scope-manager": "8.34.1", "@typescript-eslint/types": "8.34.1", "@typescript-eslint/typescript-estree": "8.34.1" }, "peerDependencies": { "eslint": "^8.57.0 || ^9.0.0", "typescript": ">=4.8.4 <5.9.0" } }, "sha512-mqOwUdZ3KjtGk7xJJnLbHxTuWVn3GO2WZZuM+Slhkun4+qthLdXx32C8xIXbO1kfCECb3jIs3eoxK3eryk7aoQ=="], + + "@typescript-eslint/visitor-keys": ["@typescript-eslint/visitor-keys@8.35.1", "", { "dependencies": { "@typescript-eslint/types": "8.35.1", "eslint-visitor-keys": "^4.2.1" } }, "sha512-VRwixir4zBWCSTP/ljEo091lbpypz57PoeAQ9imjG+vbeof9LplljsL1mos4ccG6H9IjfrVGM359RozUnuFhpw=="], "@typescript/lib-decorators": ["@better-typescript-lib/decorators@2.11.0", "", { "peerDependencies": { "typescript": ">=4.5.2" } }, "sha512-ZL90jrzAhnvDr/fbpJt3CgGZdWvAeoAWznp56/mHJRKrCwsaJ9uCPqU09D21FJkWsmZ2jkz+mwBI9+e5dzwFvg=="], @@ -582,7 +633,7 @@ "@typescript/lib-webworker": ["@better-typescript-lib/webworker@2.11.0", "", { "peerDependencies": { "typescript": ">=4.5.2" } }, "sha512-9jdYsSj7YWGixeVok7xZSV+OHpOxMBEcuw+zPHj2462LS812Xq2Vs5Kk00PoFjVXolgQm6naXDG1Wa+x445BPQ=="], - "@vitejs/plugin-legacy": ["@vitejs/plugin-legacy@6.1.0", "", { "dependencies": { "@babel/core": "^7.26.10", "@babel/preset-env": "^7.26.9", "browserslist": "^4.24.4", "browserslist-to-esbuild": "^2.1.1", "core-js": "^3.41.0", "magic-string": "^0.30.17", "regenerator-runtime": "^0.14.1", "systemjs": "^6.15.1" }, "peerDependencies": { "terser": "^5.16.0", "vite": "^6.0.0" } }, "sha512-D5/33NZFBDdlXvCoRbdGe3DcnSY4TZIDkQpolbMdMXBtUNgwJc03X1LHmEov4Igi4f5z2l9/lC0te74R8iHn5A=="], + "@vitejs/plugin-legacy": ["@vitejs/plugin-legacy@7.0.0", "", { "dependencies": { "@babel/core": "^7.27.4", "@babel/preset-env": "^7.27.2", "browserslist": "^4.25.0", "browserslist-to-esbuild": "^2.1.1", "core-js": "^3.43.0", "magic-string": "^0.30.17", "regenerator-runtime": "^0.14.1", "systemjs": "^6.15.1" }, "peerDependencies": { "terser": "^5.16.0", "vite": "^7.0.0" } }, "sha512-qevhyYFUeZXBd/bAZGwpBgyn4GGAYije9YPV8Jg07newPCZtFEIlFlzsQowPbm87iKekOIL/90wKn+hvGkjzkg=="], "@xhmikosr/archive-type": ["@xhmikosr/archive-type@7.0.0", "", { "dependencies": { "file-type": "^19.0.0" } }, "sha512-sIm84ZneCOJuiy3PpWR5bxkx3HaNt1pqaN+vncUBZIlPZCq8ASZH+hBVdu5H8znR7qYC6sKwx+ie2Q7qztJTxA=="], @@ -606,9 +657,9 @@ "@xml-tools/parser": ["@xml-tools/parser@1.0.11", "", { "dependencies": { "chevrotain": "7.1.1" } }, "sha512-aKqQ077XnR+oQtHJlrAflaZaL7qZsulWc/i/ZEooar5JiWj1eLt0+Wg28cpa+XLney107wXqneC+oG1IZvxkTA=="], - "a11y-dialog": ["a11y-dialog@8.1.3", "", { "dependencies": { "focusable-selectors": "^0.8.0" } }, "sha512-fA1RKuGEeDnfqSUeigf0Yec8SHsn7Qng/V0Tw4lcwbwLl+4bigxqxm8b7UdBhl6cqGmKO/4USRXU1lkCdpW0/g=="], + "a11y-dialog": ["a11y-dialog@8.1.4", "", { "dependencies": { "focusable-selectors": "^0.8.0" } }, "sha512-CgaQfoTg9t+O8vArlNAYN7Gzv6h1bpWRqggzCtng6TQ2im6XCpUQI+GWlPvQdovQtwzJN6MydxipXKB8qP5Zxw=="], - "acorn": ["acorn@8.14.1", "", { "bin": { "acorn": "bin/acorn" } }, "sha512-OvQ/2pUDKmgfCg++xsTX1wGxfTaszcHVcTctW4UJB4hibJx2HXxxO5UmVgyjMa+ZDsiaf5wWLXYpRWMmBI0QHg=="], + "acorn": ["acorn@8.15.0", "", { "bin": { "acorn": "bin/acorn" } }, "sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg=="], "acorn-jsx": ["acorn-jsx@5.3.2", "", { "peerDependencies": { "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" } }, "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ=="], @@ -652,9 +703,9 @@ "bin-version-check": ["bin-version-check@5.1.0", "", { "dependencies": { "bin-version": "^6.0.0", "semver": "^7.5.3", "semver-truncate": "^3.0.0" } }, "sha512-bYsvMqJ8yNGILLz1KP9zKLzQ6YpljV3ln1gqhuLkUtyfGi3qXKGuK2p+U4NAvjVFzDFiBBtOpCOSFNuYYEGZ5g=="], - "bn.js": ["bn.js@5.2.1", "", {}, "sha512-eXRvHzWyYPBuB4NBy0cmYQjGitUrtqwbvlzP3G6VFnNRbsZQIxQ10PbKKHt8gZ/HW/D/747aDl+QkDqg3KQLMQ=="], + "bn.js": ["bn.js@5.2.2", "", {}, "sha512-v2YAxEmKaBLahNwE1mjp4WON6huMNeuDvagFZW+ASCuA/ku0bXR9hSMw0XpiqMoA3+rmnyck/tPRSFQkoC9Cuw=="], - "brace-expansion": ["brace-expansion@2.0.1", "", { "dependencies": { "balanced-match": "^1.0.0" } }, "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA=="], + "brace-expansion": ["brace-expansion@2.0.2", "", { "dependencies": { "balanced-match": "^1.0.0" } }, "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ=="], "braces": ["braces@3.0.3", "", { "dependencies": { "fill-range": "^7.1.1" } }, "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA=="], @@ -674,7 +725,7 @@ "browserify-zlib": ["browserify-zlib@0.2.0", "", { "dependencies": { "pako": "~1.0.5" } }, "sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA=="], - "browserslist": ["browserslist@4.24.4", "", { "dependencies": { "caniuse-lite": "^1.0.30001688", "electron-to-chromium": "^1.5.73", "node-releases": "^2.0.19", "update-browserslist-db": "^1.1.1" }, "bin": { "browserslist": "cli.js" } }, "sha512-KDi1Ny1gSePi1vm0q4oxSF8b4DR44GF4BbmS2YdhPLOEqd8pDviZOGH/GsmRwoWJ2+5Lr085X7naowMwKHDG1A=="], + "browserslist": ["browserslist@4.25.1", "", { "dependencies": { "caniuse-lite": "^1.0.30001726", "electron-to-chromium": "^1.5.173", "node-releases": "^2.0.19", "update-browserslist-db": "^1.1.3" }, "bin": { "browserslist": "cli.js" } }, "sha512-KGj0KoOMXLpSNkkEI6Z6mShmQy0bc1I+T7K9N81k4WWMrfz+6fQ6es80B/YLAeRoKvjYE1YSHHOW1qe9xIVzHw=="], "browserslist-to-esbuild": ["browserslist-to-esbuild@2.1.1", "", { "dependencies": { "meow": "^13.0.0" }, "peerDependencies": { "browserslist": "*" }, "bin": { "browserslist-to-esbuild": "cli/index.js" } }, "sha512-KN+mty6C3e9AN8Z5dI1xeN15ExcRNeISoC3g7V0Kax/MMF9MSoYA2G7lkTTcVUFntiEjkpI0HNgqJC1NjdyNUw=="], @@ -690,7 +741,7 @@ "builtin-status-codes": ["builtin-status-codes@3.0.0", "", {}, "sha512-HpGFw18DgFWlncDfjTa2rcQ4W88O1mC8e8yZ2AvQY5KDaktSTwo+KRf6nHK6FRI5FyRyb/5T6+TSxfP7QyGsmQ=="], - "cacheable": ["cacheable@1.8.10", "", { "dependencies": { "hookified": "^1.8.1", "keyv": "^5.3.2" } }, "sha512-0ZnbicB/N2R6uziva8l6O6BieBklArWyiGx4GkwAhLKhSHyQtRfM9T1nx7HHuHDKkYB/efJQhz3QJ6x/YqoZzA=="], + "cacheable": ["cacheable@1.10.0", "", { "dependencies": { "hookified": "^1.8.2", "keyv": "^5.3.3" } }, "sha512-SSgQTAnhd7WlJXnGlIi4jJJOiHzgnM5wRMEPaXAU4kECTAMpBoYKoZ9i5zHmclIEZbxcu3j7yY/CF8DTmwIsHg=="], "cacheable-lookup": ["cacheable-lookup@7.0.0", "", {}, "sha512-+qJyx4xiKra8mZrcwhjMRMUhD5NR1R8esPkzIYxX96JiecFoxAXFuz/GpR3+ev4PE1WamHip78wV0vcmPQtp8w=="], @@ -704,7 +755,7 @@ "callsites": ["callsites@3.1.0", "", {}, "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ=="], - "caniuse-lite": ["caniuse-lite@1.0.30001715", "", {}, "sha512-7ptkFGMm2OAOgvZpwgA4yjQ5SQbrNVGdRjzH0pBdy1Fasvcr+KAeECmbCAECzTuDuoX0FCY8KzUxjf9+9kfZEw=="], + "caniuse-lite": ["caniuse-lite@1.0.30001726", "", {}, "sha512-VQAUIUzBiZ/UnlM28fSp2CRF3ivUn1BWEvxMcVTNwpw91Py1pGbPIyIKtd+tzct9C3ouceCVdGAXxZOpZAsgdw=="], "chalk": ["chalk@5.4.1", "", {}, "sha512-zgVZuo2WcZgfUEmsn6eO3kINexW8RAE4maiQ8QNs8CtpPCSyMiYsULR3HQYkm3w8FIA3SberyMJMSldGsW+U3w=="], @@ -712,8 +763,6 @@ "cipher-base": ["cipher-base@1.0.6", "", { "dependencies": { "inherits": "^2.0.4", "safe-buffer": "^5.2.1" } }, "sha512-3Ek9H3X6pj5TgenXYtNWdaBon1tgYCaebd+XPg0keyjEbEfkD4KkmAxkQ/i1vYvxdcT5nscLBfq9VJRmCBcFSw=="], - "clone": ["clone@1.0.4", "", {}, "sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg=="], - "color-convert": ["color-convert@2.0.1", "", { "dependencies": { "color-name": "~1.1.4" } }, "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ=="], "color-name": ["color-name@1.1.4", "", {}, "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="], @@ -734,9 +783,9 @@ "convert-source-map": ["convert-source-map@2.0.0", "", {}, "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg=="], - "core-js": ["core-js@3.41.0", "", {}, "sha512-SJ4/EHwS36QMJd6h/Rg+GyR4A5xE0FSI3eZ+iBVpfqf1x0eTSg1smWLHrA+2jQThZSh97fmSgFSU8B61nxosxA=="], + "core-js": ["core-js@3.43.0", "", {}, "sha512-N6wEbTTZSYOY2rYAn85CuvWWkCK6QweMn7/4Nr3w+gDBeBhk/x4EJeY6FPo4QzDoJZxVTv8U7CMvgWk6pOHHqA=="], - "core-js-compat": ["core-js-compat@3.41.0", "", { "dependencies": { "browserslist": "^4.24.4" } }, "sha512-RFsU9LySVue9RTwdDVX/T0e2Y6jRYWXERKElIjpuEOEnxaXffI0X7RUwVzfYLfzuLXSNJDYoRYUAmRUcyln20A=="], + "core-js-compat": ["core-js-compat@3.43.0", "", { "dependencies": { "browserslist": "^4.25.0" } }, "sha512-2GML2ZsCc5LR7hZYz4AXmjQw8zuy2T//2QntwdnpuYI7jteT6GVYJL7F6C2C57R7gSYrcqVW3lAALefdbhBLDA=="], "core-util-is": ["core-util-is@1.0.3", "", {}, "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ=="], @@ -760,7 +809,7 @@ "cssesc": ["cssesc@3.0.0", "", { "bin": { "cssesc": "bin/cssesc" } }, "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg=="], - "debug": ["debug@4.4.0", "", { "dependencies": { "ms": "^2.1.3" } }, "sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA=="], + "debug": ["debug@4.4.1", "", { "dependencies": { "ms": "^2.1.3" } }, "sha512-KcKCqiftBJcZr++7ykoDIEwSa3XWowTfNPo92BYxjXiyYEVrUQh2aLyhxBCwww+heortUFxEJYcRzosstTEBYQ=="], "decompress-response": ["decompress-response@6.0.0", "", { "dependencies": { "mimic-response": "^3.1.0" } }, "sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ=="], @@ -776,6 +825,8 @@ "des.js": ["des.js@1.1.0", "", { "dependencies": { "inherits": "^2.0.1", "minimalistic-assert": "^1.0.0" } }, "sha512-r17GxjhUCjSRy8aiJpr8/UadFIzMzJGexI3Nmz4ADi9LYSFx4gTBp80+NaX/YsXWWLhpZ7v/v/ubEc/bCNfKwg=="], + "detect-libc": ["detect-libc@2.0.4", "", {}, "sha512-3UDv+G9CsCKO1WKMGw9fwq/SWJYbI0c5Y7LU1AXYoDdbhE2AHQ6N6Nb34sG8Fj7T5APy8qXDCKuuIHd1BR0tVA=="], + "diffie-hellman": ["diffie-hellman@5.0.3", "", { "dependencies": { "bn.js": "^4.1.0", "miller-rabin": "^4.0.0", "randombytes": "^2.0.0" } }, "sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg=="], "dir-glob": ["dir-glob@3.0.1", "", { "dependencies": { "path-type": "^4.0.0" } }, "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA=="], @@ -784,16 +835,12 @@ "dunder-proto": ["dunder-proto@1.0.1", "", { "dependencies": { "call-bind-apply-helpers": "^1.0.1", "es-errors": "^1.3.0", "gopd": "^1.2.0" } }, "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A=="], - "easy-table": ["easy-table@1.2.0", "", { "dependencies": { "ansi-regex": "^5.0.1" }, "optionalDependencies": { "wcwidth": "^1.0.1" } }, "sha512-OFzVOv03YpvtcWGe5AayU5G2hgybsg3iqA6drU8UaoZyB9jLGMTrz9+asnLp/E+6qPh88yEI1gvyZFZ41dmgww=="], - - "electron-to-chromium": ["electron-to-chromium@1.5.140", "", {}, "sha512-o82Rj+ONp4Ip7Cl1r7lrqx/pXhbp/lh9DpKcMNscFJdh8ebyRofnc7Sh01B4jx403RI0oqTBvlZ7OBIZLMr2+Q=="], + "electron-to-chromium": ["electron-to-chromium@1.5.176", "", {}, "sha512-2nDK9orkm7M9ZZkjO3PjbEd3VUulQLyg5T9O3enJdFvUg46Hzd4DUvTvAuEgbdHYXyFsiG4A5sO9IzToMH1cDg=="], "elliptic": ["elliptic@6.6.1", "", { "dependencies": { "bn.js": "^4.11.9", "brorand": "^1.1.0", "hash.js": "^1.0.0", "hmac-drbg": "^1.0.1", "inherits": "^2.0.4", "minimalistic-assert": "^1.0.1", "minimalistic-crypto-utils": "^1.0.1" } }, "sha512-RaddvvMatK2LJHqFJ+YA4WysVN5Ita9E35botqIYspQ4TkRAlCicdzKOjlyv/1Za5RyTNn7di//eEV0uTAfe3g=="], "emoji-regex": ["emoji-regex@8.0.0", "", {}, "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A=="], - "enhanced-resolve": ["enhanced-resolve@5.18.1", "", { "dependencies": { "graceful-fs": "^4.2.4", "tapable": "^2.2.0" } }, "sha512-ZSW3ma5GkcQBIpwZTSRAI8N71Uuwgs93IezB7mf7R60tC8ZbJideoDNKjHn2O9KIlx6rkGTTEk1xUCK2E1Y2Yg=="], - "env-paths": ["env-paths@2.2.1", "", {}, "sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A=="], "error-ex": ["error-ex@1.3.2", "", { "dependencies": { "is-arrayish": "^0.2.1" } }, "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g=="], @@ -804,23 +851,23 @@ "es-object-atoms": ["es-object-atoms@1.1.1", "", { "dependencies": { "es-errors": "^1.3.0" } }, "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA=="], - "esbuild": ["esbuild@0.25.3", "", { "optionalDependencies": { "@esbuild/aix-ppc64": "0.25.3", "@esbuild/android-arm": "0.25.3", "@esbuild/android-arm64": "0.25.3", "@esbuild/android-x64": "0.25.3", "@esbuild/darwin-arm64": "0.25.3", "@esbuild/darwin-x64": "0.25.3", "@esbuild/freebsd-arm64": "0.25.3", "@esbuild/freebsd-x64": "0.25.3", "@esbuild/linux-arm": "0.25.3", "@esbuild/linux-arm64": "0.25.3", "@esbuild/linux-ia32": "0.25.3", "@esbuild/linux-loong64": "0.25.3", "@esbuild/linux-mips64el": "0.25.3", "@esbuild/linux-ppc64": "0.25.3", "@esbuild/linux-riscv64": "0.25.3", "@esbuild/linux-s390x": "0.25.3", "@esbuild/linux-x64": "0.25.3", "@esbuild/netbsd-arm64": "0.25.3", "@esbuild/netbsd-x64": "0.25.3", "@esbuild/openbsd-arm64": "0.25.3", "@esbuild/openbsd-x64": "0.25.3", "@esbuild/sunos-x64": "0.25.3", "@esbuild/win32-arm64": "0.25.3", "@esbuild/win32-ia32": "0.25.3", "@esbuild/win32-x64": "0.25.3" }, "bin": { "esbuild": "bin/esbuild" } }, "sha512-qKA6Pvai73+M2FtftpNKRxJ78GIjmFXFxd/1DVBqGo/qNhLSfv+G12n9pNoWdytJC8U00TrViOwpjT0zgqQS8Q=="], + "esbuild": ["esbuild@0.25.5", "", { "optionalDependencies": { "@esbuild/aix-ppc64": "0.25.5", "@esbuild/android-arm": "0.25.5", "@esbuild/android-arm64": "0.25.5", "@esbuild/android-x64": "0.25.5", "@esbuild/darwin-arm64": "0.25.5", "@esbuild/darwin-x64": "0.25.5", "@esbuild/freebsd-arm64": "0.25.5", "@esbuild/freebsd-x64": "0.25.5", "@esbuild/linux-arm": "0.25.5", "@esbuild/linux-arm64": "0.25.5", "@esbuild/linux-ia32": "0.25.5", "@esbuild/linux-loong64": "0.25.5", "@esbuild/linux-mips64el": "0.25.5", "@esbuild/linux-ppc64": "0.25.5", "@esbuild/linux-riscv64": "0.25.5", "@esbuild/linux-s390x": "0.25.5", "@esbuild/linux-x64": "0.25.5", "@esbuild/netbsd-arm64": "0.25.5", "@esbuild/netbsd-x64": "0.25.5", "@esbuild/openbsd-arm64": "0.25.5", "@esbuild/openbsd-x64": "0.25.5", "@esbuild/sunos-x64": "0.25.5", "@esbuild/win32-arm64": "0.25.5", "@esbuild/win32-ia32": "0.25.5", "@esbuild/win32-x64": "0.25.5" }, "bin": { "esbuild": "bin/esbuild" } }, "sha512-P8OtKZRv/5J5hhz0cUAdu/cLuPIKXpQl1R9pZtvmHWQvrAUVd0UNIPT4IB4W3rNOqVO0rlqHmCIbSwxh/c9yUQ=="], "escalade": ["escalade@3.2.0", "", {}, "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA=="], "escape-string-regexp": ["escape-string-regexp@4.0.0", "", {}, "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA=="], - "eslint": ["eslint@9.25.1", "", { "dependencies": { "@eslint-community/eslint-utils": "^4.2.0", "@eslint-community/regexpp": "^4.12.1", "@eslint/config-array": "^0.20.0", "@eslint/config-helpers": "^0.2.1", "@eslint/core": "^0.13.0", "@eslint/eslintrc": "^3.3.1", "@eslint/js": "9.25.1", "@eslint/plugin-kit": "^0.2.8", "@humanfs/node": "^0.16.6", "@humanwhocodes/module-importer": "^1.0.1", "@humanwhocodes/retry": "^0.4.2", "@types/estree": "^1.0.6", "@types/json-schema": "^7.0.15", "ajv": "^6.12.4", "chalk": "^4.0.0", "cross-spawn": "^7.0.6", "debug": "^4.3.2", "escape-string-regexp": "^4.0.0", "eslint-scope": "^8.3.0", "eslint-visitor-keys": "^4.2.0", "espree": "^10.3.0", "esquery": "^1.5.0", "esutils": "^2.0.2", "fast-deep-equal": "^3.1.3", "file-entry-cache": "^8.0.0", "find-up": "^5.0.0", "glob-parent": "^6.0.2", "ignore": "^5.2.0", "imurmurhash": "^0.1.4", "is-glob": "^4.0.0", "json-stable-stringify-without-jsonify": "^1.0.1", "lodash.merge": "^4.6.2", "minimatch": "^3.1.2", "natural-compare": "^1.4.0", "optionator": "^0.9.3" }, "peerDependencies": { "jiti": "*" }, "optionalPeers": ["jiti"], "bin": { "eslint": "bin/eslint.js" } }, "sha512-E6Mtz9oGQWDCpV12319d59n4tx9zOTXSTmc8BLVxBx+G/0RdM5MvEEJLU9c0+aleoePYYgVTOsRblx433qmhWQ=="], + "eslint": ["eslint@9.30.1", "", { "dependencies": { "@eslint-community/eslint-utils": "^4.2.0", "@eslint-community/regexpp": "^4.12.1", "@eslint/config-array": "^0.21.0", "@eslint/config-helpers": "^0.3.0", "@eslint/core": "^0.14.0", "@eslint/eslintrc": "^3.3.1", "@eslint/js": "9.30.1", "@eslint/plugin-kit": "^0.3.1", "@humanfs/node": "^0.16.6", "@humanwhocodes/module-importer": "^1.0.1", "@humanwhocodes/retry": "^0.4.2", "@types/estree": "^1.0.6", "@types/json-schema": "^7.0.15", "ajv": "^6.12.4", "chalk": "^4.0.0", "cross-spawn": "^7.0.6", "debug": "^4.3.2", "escape-string-regexp": "^4.0.0", "eslint-scope": "^8.4.0", "eslint-visitor-keys": "^4.2.1", "espree": "^10.4.0", "esquery": "^1.5.0", "esutils": "^2.0.2", "fast-deep-equal": "^3.1.3", "file-entry-cache": "^8.0.0", "find-up": "^5.0.0", "glob-parent": "^6.0.2", "ignore": "^5.2.0", "imurmurhash": "^0.1.4", "is-glob": "^4.0.0", "json-stable-stringify-without-jsonify": "^1.0.1", "lodash.merge": "^4.6.2", "minimatch": "^3.1.2", "natural-compare": "^1.4.0", "optionator": "^0.9.3" }, "peerDependencies": { "jiti": "*" }, "optionalPeers": ["jiti"], "bin": { "eslint": "bin/eslint.js" } }, "sha512-zmxXPNMOXmwm9E0yQLi5uqXHs7uq2UIiqEKo3Gq+3fwo1XrJ+hijAZImyF7hclW3E6oHz43Yk3RP8at6OTKflQ=="], - "eslint-plugin-oxlint": ["eslint-plugin-oxlint@0.16.7", "", { "dependencies": { "jsonc-parser": "^3.3.1" } }, "sha512-1XBlEkJdVguNRKk65MAavP4SY5hxMIOrx+uFl5Ijvji5xV+QgYksV11fUNE85Uik7+IjDVLXQFDWZfWHrr4dxw=="], + "eslint-plugin-oxlint": ["eslint-plugin-oxlint@1.5.0", "", { "dependencies": { "jsonc-parser": "^3.3.1" } }, "sha512-+Um4akCxGOSJ8ozILC7GEU6xbKB1P8nYhLTfsvLiLot6Tt0VtM3oR/PH7SzHYgKb0HNpD5+8bXcaD5KErlIkIg=="], - "eslint-plugin-perfectionist": ["eslint-plugin-perfectionist@4.12.1", "", { "dependencies": { "@typescript-eslint/types": "^8.31.0", "@typescript-eslint/utils": "^8.31.0", "natural-orderby": "^5.0.0" }, "peerDependencies": { "eslint": ">=8.45.0" } }, "sha512-0w0zF4ugHqFfsSFfZcg/pQTUoKkSJOYqqFPURRgA8hkpZsbYksCO4rfpDdiMkOgCJ3y4wxPvwKm3eTrP7jl7zg=="], + "eslint-plugin-perfectionist": ["eslint-plugin-perfectionist@4.15.0", "", { "dependencies": { "@typescript-eslint/types": "^8.34.1", "@typescript-eslint/utils": "^8.34.1", "natural-orderby": "^5.0.0" }, "peerDependencies": { "eslint": ">=8.45.0" } }, "sha512-pC7PgoXyDnEXe14xvRUhBII8A3zRgggKqJFx2a82fjrItDs1BSI7zdZnQtM2yQvcyod6/ujmzb7ejKPx8lZTnw=="], - "eslint-scope": ["eslint-scope@8.3.0", "", { "dependencies": { "esrecurse": "^4.3.0", "estraverse": "^5.2.0" } }, "sha512-pUNxi75F8MJ/GdeKtVLSbYg4ZI34J6C0C7sbL4YOp2exGwen7ZsuBqKzUhXd0qMQ362yET3z+uPwKeg/0C2XCQ=="], + "eslint-scope": ["eslint-scope@8.4.0", "", { "dependencies": { "esrecurse": "^4.3.0", "estraverse": "^5.2.0" } }, "sha512-sNXOfKCn74rt8RICKMvJS7XKV/Xk9kA7DyJr8mJik3S7Cwgy3qlkkmyS2uQB3jiJg6VNdZd/pDBJu0nvG2NlTg=="], - "eslint-visitor-keys": ["eslint-visitor-keys@4.2.0", "", {}, "sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw=="], + "eslint-visitor-keys": ["eslint-visitor-keys@4.2.1", "", {}, "sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ=="], - "espree": ["espree@10.3.0", "", { "dependencies": { "acorn": "^8.14.0", "acorn-jsx": "^5.3.2", "eslint-visitor-keys": "^4.2.0" } }, "sha512-0QYC8b24HWY8zjRnDTL6RiHfDbAWn63qb4LMj1Z4b076A4une81+z03Kg7l7mn/48PUTqoLptSXez8oknU8Clg=="], + "espree": ["espree@10.4.0", "", { "dependencies": { "acorn": "^8.15.0", "acorn-jsx": "^5.3.2", "eslint-visitor-keys": "^4.2.1" } }, "sha512-j6PAQ2uUr79PZhBjP5C5fhl8e39FmRnOjsD5lGnWrFU8i2G776tBK7+nP8KuQUTTyAZUwfQqXAgrVH5MbH9CYQ=="], "esquery": ["esquery@1.6.0", "", { "dependencies": { "estraverse": "^5.1.0" } }, "sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg=="], @@ -858,7 +905,9 @@ "fastq": ["fastq@1.19.1", "", { "dependencies": { "reusify": "^1.0.4" } }, "sha512-GwLTyxkCXjXbxqIhTsMI2Nui8huMPtnxg7krajPJAjnEG/iiOS7i+zCtWGZR9G0NBKbXKh6X9m9UIsYX/N6vvQ=="], - "fdir": ["fdir@6.4.4", "", { "peerDependencies": { "picomatch": "^3 || ^4" }, "optionalPeers": ["picomatch"] }, "sha512-1NZP+GK4GfuAv3PqKvxQRDMjdSRZjnkq7KfhlNrCNNlZ0ygQFpebfrnfnq/W7fpUnAv9aGWmY1zKx7FYL3gwhg=="], + "fd-package-json": ["fd-package-json@2.0.0", "", { "dependencies": { "walk-up-path": "^4.0.0" } }, "sha512-jKmm9YtsNXN789RS/0mSzOC1NUq9mkVd65vbSSVsKdjGvYXBuE4oWe2QOEoFeRmJg+lPuZxpmrfFclNhoRMneQ=="], + + "fdir": ["fdir@6.4.6", "", { "peerDependencies": { "picomatch": "^3 || ^4" }, "optionalPeers": ["picomatch"] }, "sha512-hiFoqpyZcfNm1yc4u8oWCf9A2c4D3QjCrks3zmoVKVxpQRzmPNar1hUJcBG2RQHvEVGDN+Jm81ZheVLAQMK6+w=="], "file-entry-cache": ["file-entry-cache@8.0.0", "", { "dependencies": { "flat-cache": "^4.0.0" } }, "sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ=="], @@ -884,7 +933,9 @@ "form-data-encoder": ["form-data-encoder@2.1.4", "", {}, "sha512-yDYSgNMraqvnxiEXO4hi88+YZxaHC6QKzb5N84iRCTDeRO7ZALpir/lVmf/uXUhnwUr2O4HU8s/n6x+yNjQkHw=="], - "fsevents": ["fsevents@2.3.3", "", { "os": "darwin" }, "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw=="], + "formatly": ["formatly@0.2.4", "", { "dependencies": { "fd-package-json": "^2.0.0" }, "bin": { "formatly": "bin/index.mjs" } }, "sha512-lIN7GpcvX/l/i24r/L9bnJ0I8Qn01qijWpQpDDvTLL29nKqSaJJu4h20+7VJ6m2CAhQ2/En/GbxDiHCzq/0MyA=="], + + "fsevents": ["fsevents@2.3.2", "", { "os": "darwin" }, "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA=="], "function-bind": ["function-bind@1.1.2", "", {}, "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA=="], @@ -902,7 +953,7 @@ "global-prefix": ["global-prefix@3.0.0", "", { "dependencies": { "ini": "^1.3.5", "kind-of": "^6.0.2", "which": "^1.3.1" } }, "sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg=="], - "globals": ["globals@16.0.0", "", {}, "sha512-iInW14XItCXET01CQFqudPOWP2jYMl7T+QRQT+UNcR/iQncN/F0UNpgd76iFkBPgNQb4+X3LV9tLJYzwh+Gl3A=="], + "globals": ["globals@16.3.0", "", {}, "sha512-bqWEnJ1Nt3neqx2q5SFfGS8r/ahumIakg3HcwtNlrVlwXIeNumWn/c7Pn/wKzGhf6SaW6H6uWXLqC30STCMchQ=="], "globby": ["globby@11.1.0", "", { "dependencies": { "array-union": "^2.1.0", "dir-glob": "^3.0.1", "fast-glob": "^3.2.9", "ignore": "^5.2.0", "merge2": "^1.4.1", "slash": "^3.0.0" } }, "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g=="], @@ -934,11 +985,11 @@ "hmac-drbg": ["hmac-drbg@1.0.1", "", { "dependencies": { "hash.js": "^1.0.3", "minimalistic-assert": "^1.0.0", "minimalistic-crypto-utils": "^1.0.1" } }, "sha512-Tti3gMqLdZfhOQY1Mzf/AanLiqh1WTiJgEj26ZuYQ9fbkLomzGchCws4FyrSd4VkpBfiNhaE1On+lOz894jvXg=="], - "hookified": ["hookified@1.8.2", "", {}, "sha512-5nZbBNP44sFCDjSoB//0N7m508APCgbQ4mGGo1KJGBYyCKNHfry1Pvd0JVHZIxjdnqn8nFRBAN/eFB6Rk/4w5w=="], + "hookified": ["hookified@1.9.1", "", {}, "sha512-u3pxtGhKjcSXnGm1CX6aXS9xew535j3lkOCegbA6jdyh0BaAjTbXI4aslKstCr6zUNtoCxFGFKwjbSHdGrMB8g=="], "html-tags": ["html-tags@3.3.1", "", {}, "sha512-ztqyC3kLto0e9WbNp0aeP+M3kTt+nbaIveGmUxAtZa+8iFgKLUOD4YKM5j+f3QD89bra7UeumolZHKuOXnTmeQ=="], - "http-cache-semantics": ["http-cache-semantics@4.1.1", "", {}, "sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ=="], + "http-cache-semantics": ["http-cache-semantics@4.2.0", "", {}, "sha512-dTxcvPXqPvXBQpq5dUr6mEMJX4oIEFv6bwom3FDwKRDsuIjjJGANqhBuoAn9c1RQJIdAKav33ED65E2ys+87QQ=="], "http2-wrapper": ["http2-wrapper@2.2.1", "", { "dependencies": { "quick-lru": "^5.1.1", "resolve-alpn": "^1.2.0" } }, "sha512-V5nVw1PAOgfI3Lmeaj2Exmeg7fenjhRUgz1lPSezy1CuhPYbgQtbQj4jZfEAEMlaL+vupsvhjqCyjzob0yxsmQ=="], @@ -950,7 +1001,7 @@ "ignore": ["ignore@5.3.2", "", {}, "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g=="], - "immutable": ["immutable@5.1.1", "", {}, "sha512-3jatXi9ObIsPGr3N5hGw/vWWcTkq6hUYhpQz4k0wLC+owqWi/LiugIw9x0EdNZ2yGedKN/HzePiBvaJRXa0Ujg=="], + "immutable": ["immutable@5.1.3", "", {}, "sha512-+chQdDfvscSF1SJqv2gn4SRO2ZyS3xL3r7IW/wWEEzrzLisnOlKiQu5ytC/BVNcS15C39WT2Hg/bjKjDMcu+zg=="], "import-fresh": ["import-fresh@3.3.1", "", { "dependencies": { "parent-module": "^1.0.0", "resolve-from": "^4.0.0" } }, "sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ=="], @@ -1024,15 +1075,37 @@ "kind-of": ["kind-of@6.0.3", "", {}, "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw=="], - "knip": ["knip@5.50.5", "", { "dependencies": { "@nodelib/fs.walk": "^1.2.3", "easy-table": "1.2.0", "enhanced-resolve": "^5.18.1", "fast-glob": "^3.3.3", "jiti": "^2.4.2", "js-yaml": "^4.1.0", "minimist": "^1.2.8", "picocolors": "^1.1.0", "picomatch": "^4.0.1", "pretty-ms": "^9.0.0", "smol-toml": "^1.3.1", "strip-json-comments": "5.0.1", "zod": "^3.22.4", "zod-validation-error": "^3.0.3" }, "peerDependencies": { "@types/node": ">=18", "typescript": ">=5.0.4" }, "bin": { "knip": "bin/knip.js", "knip-bun": "bin/knip-bun.js" } }, "sha512-I3mfebuG5x8i/mJJA41xjnmHMbLw75ymbDxlS7HMP+4CjY+jXEDSJyP3A2xmI5JF5/o47Fr8D7Pq3BVT0/nQPw=="], + "knip": ["knip@5.61.3", "", { "dependencies": { "@nodelib/fs.walk": "^1.2.3", "fast-glob": "^3.3.3", "formatly": "^0.2.4", "jiti": "^2.4.2", "js-yaml": "^4.1.0", "minimist": "^1.2.8", "oxc-resolver": "^11.1.0", "picocolors": "^1.1.1", "picomatch": "^4.0.1", "smol-toml": "^1.3.4", "strip-json-comments": "5.0.2", "zod": "^3.22.4", "zod-validation-error": "^3.0.3" }, "peerDependencies": { "@types/node": ">=18", "typescript": ">=5.0.4" }, "bin": { "knip": "bin/knip.js", "knip-bun": "bin/knip-bun.js" } }, "sha512-8iSz8i8ufIjuUwUKzEwye7ROAW0RzCze7T770bUiz0PKL+SSwbs4RS32fjMztLwcOzSsNPlXdUAeqmkdzXxJ1Q=="], - "known-css-properties": ["known-css-properties@0.36.0", "", {}, "sha512-A+9jP+IUmuQsNdsLdcg6Yt7voiMF/D4K83ew0OpJtpu+l34ef7LaohWV0Rc6KNvzw6ZDizkqfyB5JznZnzuKQA=="], + "known-css-properties": ["known-css-properties@0.37.0", "", {}, "sha512-JCDrsP4Z1Sb9JwG0aJ8Eo2r7k4Ou5MwmThS/6lcIe1ICyb7UBJKGRIUUdqc2ASdE/42lgz6zFUnzAIhtXnBVrQ=="], "levn": ["levn@0.4.1", "", { "dependencies": { "prelude-ls": "^1.2.1", "type-check": "~0.4.0" } }, "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ=="], + "lightningcss-cli": ["lightningcss-cli@1.30.1", "", { "dependencies": { "detect-libc": "^2.0.3" }, "optionalDependencies": { "lightningcss-cli-darwin-arm64": "1.30.1", "lightningcss-cli-darwin-x64": "1.30.1", "lightningcss-cli-freebsd-x64": "1.30.1", "lightningcss-cli-linux-arm-gnueabihf": "1.30.1", "lightningcss-cli-linux-arm64-gnu": "1.30.1", "lightningcss-cli-linux-arm64-musl": "1.30.1", "lightningcss-cli-linux-x64-gnu": "1.30.1", "lightningcss-cli-linux-x64-musl": "1.30.1", "lightningcss-cli-win32-arm64-msvc": "1.30.1", "lightningcss-cli-win32-x64-msvc": "1.30.1" }, "bin": { "lightningcss": "lightningcss" } }, "sha512-m3VtCMfPrEucBbdbJ4om7biAknXJUnMukGzE64Anww6iYgsEaBJJhXQZMLwwEEWtpZrQf78f1xejCDIBhumjUw=="], + + "lightningcss-cli-darwin-arm64": ["lightningcss-cli-darwin-arm64@1.30.1", "", { "os": "darwin", "cpu": "arm64" }, "sha512-h00/Iq4Hjw+1Bm3Uoc2i1cryDdH1YhTK8e7d/Y/Wn2sUrdK9nVRxzuTk7qUur6KqVgXFthItAUhuGjFyDBJpmg=="], + + "lightningcss-cli-darwin-x64": ["lightningcss-cli-darwin-x64@1.30.1", "", { "os": "darwin", "cpu": "x64" }, "sha512-Q7hzbzkGe5EUMgojjYgnhT9wkSLZp0I9Q25IP7IDnMv2KMTdqUSLAn7YMu9Xqt22MspAuIWV7DkyTiN4xM7fIA=="], + + "lightningcss-cli-freebsd-x64": ["lightningcss-cli-freebsd-x64@1.30.1", "", { "os": "freebsd", "cpu": "x64" }, "sha512-0VbQDecfjJn7GtvtVbsdEnvR8OY8PyWiVnchbozjODqE4ASpDBjQDtSMbIDRvBtkk5Me6PFhVmCKfuyctCuDqQ=="], + + "lightningcss-cli-linux-arm-gnueabihf": ["lightningcss-cli-linux-arm-gnueabihf@1.30.1", "", { "os": "linux", "cpu": "arm" }, "sha512-ngJVmTygPRafw2sF7NFWwez54NKDO2AEY5IEm241qytAw+YsY/oAx/0gG2Fyq4HTGcKud9dc7kHQpWfDTXuGHg=="], + + "lightningcss-cli-linux-arm64-gnu": ["lightningcss-cli-linux-arm64-gnu@1.30.1", "", { "os": "linux", "cpu": "arm64" }, "sha512-2uh0vwHn0UyrZnVX2XCw8qbwLKuAwM1nLo43ddcviQum9rF08nHdPEqLXZfDzR/VA0pbyFjSw7EbbEBjXGsFxw=="], + + "lightningcss-cli-linux-arm64-musl": ["lightningcss-cli-linux-arm64-musl@1.30.1", "", { "os": "linux", "cpu": "arm64" }, "sha512-IUrg/O4r7OPuGo+G9BGaDDodvAoLSq3f0pMmdiODCl8so/LkYvue7ySL8JQO8TebTKoUXE7VcZgdfoSVxkCbuQ=="], + + "lightningcss-cli-linux-x64-gnu": ["lightningcss-cli-linux-x64-gnu@1.30.1", "", { "os": "linux", "cpu": "x64" }, "sha512-AoxyUYuwl/IGTFl178Kxm/MMIgao3s9bmp/RrTbh51+8LsUh9YWolvyhmVxfiCauJ70dfoknQ/tsa+NKs2XDfQ=="], + + "lightningcss-cli-linux-x64-musl": ["lightningcss-cli-linux-x64-musl@1.30.1", "", { "os": "linux", "cpu": "x64" }, "sha512-NSkm/6sKsMTvO/pf8hU1Nwalrz9VsmSC9AKTYmxNsLDrLtzc8PYobcauyv0b1MnXxO1KuqLmFiCnVzGU7WbRPQ=="], + + "lightningcss-cli-win32-arm64-msvc": ["lightningcss-cli-win32-arm64-msvc@1.30.1", "", { "os": "win32", "cpu": "arm64" }, "sha512-qDlhf9FAy+26MDMP14VWy+W5ho7KruR1ne2fYWKxgCGw7WZ5gnaaZpRBewp4KRd7lqo/opaIsK8kQy/WJTJD9A=="], + + "lightningcss-cli-win32-x64-msvc": ["lightningcss-cli-win32-x64-msvc@1.30.1", "", { "os": "win32", "cpu": "x64" }, "sha512-AwkpPbM9NABz1bRLr6GPrUa1wyOOUAZpOoR/HmDMOYPUAiQOlzxsNUR0/YreWbwD3X+dqkwXywSbwHddvTNZ1A=="], + "lines-and-columns": ["lines-and-columns@1.2.4", "", {}, "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg=="], - "linguist-languages": ["linguist-languages@7.29.0", "", {}, "sha512-KTh6ltVzr3ycnqxWw7zlzy8CqTSrpdymUzGl0EgYxK7cHoRgsX3VrZw4ExCWGCPX3uxxa7kgZwir4zeQkqjdZw=="], + "linguist-languages": ["linguist-languages@7.31.2", "", {}, "sha512-UQv5iuzEcGoYWdc/Ea2yqLiFbe8rQmIa5uD1FLwF5vBYmwbTvJlPJfHaIVtfYZTQf2wg7pzhxkwkGPP3q+v+EA=="], "lit-html": ["lit-html@3.3.0", "", { "dependencies": { "@types/trusted-types": "^2.0.2" } }, "sha512-RHoswrFAxY2d8Cf2mm4OZ1DgzCoBKUKSPvA1fhtSELxUERq2aQQ2h05pO9j81gS1o7RIRJ+CePLogfyahwmynw=="], @@ -1102,7 +1175,7 @@ "normalize-path": ["normalize-path@3.0.0", "", {}, "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA=="], - "normalize-url": ["normalize-url@8.0.1", "", {}, "sha512-IO9QvjUMWxPQQhs60oOu10CRkWCiZzSUkzbXGGV9pviYl1fXYcvkzQ5jV9z8Y6un8ARoVRl4EtC6v6jNqbaJ/w=="], + "normalize-url": ["normalize-url@8.0.2", "", {}, "sha512-Ee/R3SyN4BuynXcnTaekmaVdbDAEiNrHqjQIA37mHU8G9pf7aaAD4ZX3XjBLo6rsdcxA/gtkcNYZLt30ACgynw=="], "npm-run-path": ["npm-run-path@4.0.1", "", { "dependencies": { "path-key": "^3.0.0" } }, "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw=="], @@ -1122,7 +1195,9 @@ "os-browserify": ["os-browserify@0.3.0", "", {}, "sha512-gjcpUc3clBf9+210TRaDWbf+rZZZEshZ+DlXMRCeAjp0xhTrnQsKHypIy1J3d5hKdUzj69t708EHtU8P6bUn0A=="], - "oxlint": ["oxlint@0.16.7", "", { "optionalDependencies": { "@oxlint/darwin-arm64": "0.16.7", "@oxlint/darwin-x64": "0.16.7", "@oxlint/linux-arm64-gnu": "0.16.7", "@oxlint/linux-arm64-musl": "0.16.7", "@oxlint/linux-x64-gnu": "0.16.7", "@oxlint/linux-x64-musl": "0.16.7", "@oxlint/win32-arm64": "0.16.7", "@oxlint/win32-x64": "0.16.7" }, "bin": { "oxlint": "bin/oxlint", "oxc_language_server": "bin/oxc_language_server" } }, "sha512-/ab3XRLSbZT25/M2Hm7MKrcQDsqzk1DcWyfFTRidorOvYAkgk0p7gW93e7nDPHnatsdLqSWIShkXO1DFOsP3Nw=="], + "oxc-resolver": ["oxc-resolver@11.2.0", "", { "optionalDependencies": { "@oxc-resolver/binding-darwin-arm64": "11.2.0", "@oxc-resolver/binding-darwin-x64": "11.2.0", "@oxc-resolver/binding-freebsd-x64": "11.2.0", "@oxc-resolver/binding-linux-arm-gnueabihf": "11.2.0", "@oxc-resolver/binding-linux-arm64-gnu": "11.2.0", "@oxc-resolver/binding-linux-arm64-musl": "11.2.0", "@oxc-resolver/binding-linux-riscv64-gnu": "11.2.0", "@oxc-resolver/binding-linux-s390x-gnu": "11.2.0", "@oxc-resolver/binding-linux-x64-gnu": "11.2.0", "@oxc-resolver/binding-linux-x64-musl": "11.2.0", "@oxc-resolver/binding-wasm32-wasi": "11.2.0", "@oxc-resolver/binding-win32-arm64-msvc": "11.2.0", "@oxc-resolver/binding-win32-x64-msvc": "11.2.0" } }, "sha512-3iJYyIdDZMDoj0ZSVBrI1gUvPBMkDC4gxonBG+7uqUyK5EslG0mCwnf6qhxK8oEU7jLHjbRBNyzflPSd3uvH7Q=="], + + "oxlint": ["oxlint@1.5.0", "", { "optionalDependencies": { "@oxlint/darwin-arm64": "1.5.0", "@oxlint/darwin-x64": "1.5.0", "@oxlint/linux-arm64-gnu": "1.5.0", "@oxlint/linux-arm64-musl": "1.5.0", "@oxlint/linux-x64-gnu": "1.5.0", "@oxlint/linux-x64-musl": "1.5.0", "@oxlint/win32-arm64": "1.5.0", "@oxlint/win32-x64": "1.5.0" }, "bin": { "oxlint": "bin/oxlint", "oxc_language_server": "bin/oxc_language_server" } }, "sha512-Oh48XZy6BY2jE9xKwN4DjwpK/l7LOUHfPJsZ/rUKudWN1RXHXBnJkubsgIHlfTwWJGYJU2LAlyXKZcE46mD4OQ=="], "p-cancelable": ["p-cancelable@3.0.0", "", {}, "sha512-mlVgR3PGuzlo0MmTdk4cXqXWlwQDLnONTAg6sm62XkMJEiRxN3GL3SffkYvqwonbkJBcrI7Uvv5Zh9yjvn2iUw=="], @@ -1138,8 +1213,6 @@ "parse-json": ["parse-json@5.2.0", "", { "dependencies": { "@babel/code-frame": "^7.0.0", "error-ex": "^1.3.1", "json-parse-even-better-errors": "^2.3.0", "lines-and-columns": "^1.1.6" } }, "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg=="], - "parse-ms": ["parse-ms@4.0.0", "", {}, "sha512-TXfryirbmq34y8QBwgqCVLi+8oA3oWx2eAnSn62ITyEhEYaWRlVZ2DvMM9eZbMs/RfxPu/PK/aBLyGj4IrqMHw=="], - "path-browserify": ["path-browserify@1.0.1", "", {}, "sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g=="], "path-exists": ["path-exists@4.0.0", "", {}, "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w=="], @@ -1150,7 +1223,7 @@ "path-type": ["path-type@4.0.0", "", {}, "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw=="], - "pbkdf2": ["pbkdf2@3.1.2", "", { "dependencies": { "create-hash": "^1.1.2", "create-hmac": "^1.1.4", "ripemd160": "^2.0.1", "safe-buffer": "^5.0.1", "sha.js": "^2.4.8" } }, "sha512-iuh7L6jA7JEGu2WxDwtQP1ddOpaJNC4KlDEFfdQajSGgGPNi4OyDc2R7QnbY2bR9QjBVGwgvTdNJZoE7RaxUMA=="], + "pbkdf2": ["pbkdf2@3.1.3", "", { "dependencies": { "create-hash": "~1.1.3", "create-hmac": "^1.1.7", "ripemd160": "=2.0.1", "safe-buffer": "^5.2.1", "sha.js": "^2.4.11", "to-buffer": "^1.2.0" } }, "sha512-wfRLBZ0feWRhCIkoMB6ete7czJcnNnqRpcoWQBLqatqXXmelSRqfdDK4F3u9T2s2cXas/hQJcryI/4lAL+XTlA=="], "peek-readable": ["peek-readable@5.4.2", "", {}, "sha512-peBp3qZyuS6cNIJ2akRNG1uo1WJ1d0wTxg/fxMdZ0BqCVhx242bSFHM9eNqflfJVS9SsgkzgT/1UgnsurBOTMg=="], @@ -1166,9 +1239,13 @@ "pkg-dir": ["pkg-dir@5.0.0", "", { "dependencies": { "find-up": "^5.0.0" } }, "sha512-NPE8TDbzl/3YQYY7CSS228s3g2ollTFnc+Qi3tqmqJp9Vg2ovUpixcJEo2HJScN2Ez+kEaal6y70c0ehqJBJeA=="], + "playwright": ["playwright@1.53.2", "", { "dependencies": { "playwright-core": "1.53.2" }, "optionalDependencies": { "fsevents": "2.3.2" }, "bin": { "playwright": "cli.js" } }, "sha512-6K/qQxVFuVQhRQhFsVZ9fGeatxirtrpPgxzBYWyZLEXJzqYwuL4fuNmfOfD5et1tJE4GScKyPNeLhZeRwuTU3A=="], + + "playwright-core": ["playwright-core@1.53.2", "", { "bin": { "playwright-core": "cli.js" } }, "sha512-ox/OytMy+2w1jcYEYlOo1Hhp8hZkLCximMTUTMBXjGUA1KoFfiSZ+DU+3a739jsPY0yoKH2TFy9S2fsJas8yAw=="], + "possible-typed-array-names": ["possible-typed-array-names@1.1.0", "", {}, "sha512-/+5VFTchJDoVj3bhoqi6UeymcD00DAwb1nJwamzPvHEszJ4FpF6SNNbUbOS8yI56qHzdV8eK0qEfOSiodkTdxg=="], - "postcss": ["postcss@8.5.3", "", { "dependencies": { "nanoid": "^3.3.8", "picocolors": "^1.1.1", "source-map-js": "^1.2.1" } }, "sha512-dle9A3yYxlBSrt8Fu+IpjGT8SY8hN0mlaA6GY8t0P5PjIOZemULz/E2Bnm/2dcUOena75OTNkHI76uZBNUUq3A=="], + "postcss": ["postcss@8.5.6", "", { "dependencies": { "nanoid": "^3.3.11", "picocolors": "^1.1.1", "source-map-js": "^1.2.1" } }, "sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg=="], "postcss-media-query-parser": ["postcss-media-query-parser@0.2.3", "", {}, "sha512-3sOlxmbKcSHMjlUXQZKQ06jOswE7oVkXPxmZdoB1r5l0q6gTFTQSHxNxOrCccElbW7dxNytifNEo8qidX2Vsig=="], @@ -1186,13 +1263,11 @@ "prelude-ls": ["prelude-ls@1.2.1", "", {}, "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g=="], - "prettier": ["prettier@3.5.3", "", { "bin": { "prettier": "bin/prettier.cjs" } }, "sha512-QQtaxnoDJeAkDvDKWCLiwIXkTgRhwYDEQCghU9Z6q03iyek/rxRh/2lC3HB7P8sWT2xC/y5JDctPLBIGzHKbhw=="], + "prettier": ["prettier@3.6.2", "", { "bin": { "prettier": "bin/prettier.cjs" } }, "sha512-I7AIg5boAr5R0FFtJ6rCfD+LFsWHp81dolrFD8S79U9tb8Az2nGrJncnMSnys+bpQJfRUzqs9hnA81OAA3hCuQ=="], - "prettier-plugin-pkg": ["prettier-plugin-pkg@0.19.0", "", { "peerDependencies": { "prettier": "^3.0.3" } }, "sha512-wlBvVhAZQ+iOH8/4gWc1SxJbf5++xwKmnFkqHYUsmoQIg6hgdyL1055Z9FOWa6cumqL/QwqdOzY9aH4McdjKyw=="], + "prettier-plugin-pkg": ["prettier-plugin-pkg@0.21.1", "", { "peerDependencies": { "prettier": "^3.0.3" } }, "sha512-f9qlj08joTh+x4UAQvL0UdhLf+LyJyBN9CBEnH7Ip1hitcc52vfkZEH5I7PsRFyDu/bm4d94GaJ7mfeLmFEsfg=="], - "prettier-plugin-sh": ["prettier-plugin-sh@0.17.2", "", { "dependencies": { "@reteps/dockerfmt": "^0.3.2", "sh-syntax": "^0.5.6" }, "peerDependencies": { "prettier": "^3.0.3" } }, "sha512-7+dEo/IYbhrUj4qP+1QXj41/5Hv9ZkxBuEatI1jywrcAlVF1aGhdYJF4Sn+M67nkA16iRL53W4FSRe1bitTdmQ=="], - - "pretty-ms": ["pretty-ms@9.2.0", "", { "dependencies": { "parse-ms": "^4.0.0" } }, "sha512-4yf0QO/sllf/1zbZWYnvWw3NxCQwLXKzIj0G849LSufP15BXKM0rbD2Z3wVnkMfjdn/CB0Dpp444gYAACdsplg=="], + "prettier-plugin-sh": ["prettier-plugin-sh@0.18.0", "", { "dependencies": { "@reteps/dockerfmt": "^0.3.6", "sh-syntax": "^0.5.8" }, "peerDependencies": { "prettier": "^3.6.0" } }, "sha512-cW1XL27FOJQ/qGHOW6IHwdCiNWQsAgK+feA8V6+xUTaH0cD3Mh+tFAtBvEEWvuY6hTDzRV943Fzeii+qMOh7nQ=="], "process": ["process@0.11.10", "", {}, "sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A=="], @@ -1202,7 +1277,7 @@ "punycode": ["punycode@1.4.1", "", {}, "sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ=="], - "purify-ts": ["purify-ts@2.1.1", "", { "dependencies": { "@types/json-schema": "7.0.15" } }, "sha512-usEWO44vu0GnfnvfmgT5L8LDO4dTHVC2kcITclDi2tbNGMEcbQm7IZADs8FD8chqni7tU5F0LZQRQdzFHndnPw=="], + "purify-ts": ["purify-ts@2.1.2", "", { "dependencies": { "@types/json-schema": "7.0.15" } }, "sha512-v9RnHfoxZJZt5PeZork6zErRwYnGKxUiO7wk+NqPnJcG7AKjt97ut41WbGRMSUuMBexrXZsVNePSMcO9qPHODQ=="], "qs": ["qs@6.14.0", "", { "dependencies": { "side-channel": "^1.1.0" } }, "sha512-YWWTjgABSKcvs/nWBi9PycY/JiPJqOD4JA6o9Sej2AtvSGarXxKC3OQSk4pAarbdQlKAh5D4FCQkJNkW+GAn3w=="], @@ -1224,8 +1299,6 @@ "regenerator-runtime": ["regenerator-runtime@0.14.1", "", {}, "sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw=="], - "regenerator-transform": ["regenerator-transform@0.15.2", "", { "dependencies": { "@babel/runtime": "^7.8.4" } }, "sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg=="], - "regexp-to-ast": ["regexp-to-ast@0.5.0", "", {}, "sha512-tlbJqcMHnPKI9zSrystikWKwHkBqu2a/Sgw01h3zFjvYrMxEDYHzzoMZnUrbIfpTFEsoRnnviOXNCzFiSc54Qw=="], "regexpu-core": ["regexpu-core@6.2.0", "", { "dependencies": { "regenerate": "^1.4.2", "regenerate-unicode-properties": "^10.2.0", "regjsgen": "^0.8.0", "regjsparser": "^0.12.0", "unicode-match-property-ecmascript": "^2.0.0", "unicode-match-property-value-ecmascript": "^2.1.0" } }, "sha512-H66BPQMrv+V16t8xtmq+UC0CBpiTBA60V8ibS1QVReIp8T1z8hwFxqcGzm9K6lgsN7sB5edVH8a+ze6Fqm4weA=="], @@ -1248,7 +1321,7 @@ "ripemd160": ["ripemd160@2.0.2", "", { "dependencies": { "hash-base": "^3.0.0", "inherits": "^2.0.1" } }, "sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA=="], - "rollup": ["rollup@4.40.0", "", { "dependencies": { "@types/estree": "1.0.7" }, "optionalDependencies": { "@rollup/rollup-android-arm-eabi": "4.40.0", "@rollup/rollup-android-arm64": "4.40.0", "@rollup/rollup-darwin-arm64": "4.40.0", "@rollup/rollup-darwin-x64": "4.40.0", "@rollup/rollup-freebsd-arm64": "4.40.0", "@rollup/rollup-freebsd-x64": "4.40.0", "@rollup/rollup-linux-arm-gnueabihf": "4.40.0", "@rollup/rollup-linux-arm-musleabihf": "4.40.0", "@rollup/rollup-linux-arm64-gnu": "4.40.0", "@rollup/rollup-linux-arm64-musl": "4.40.0", "@rollup/rollup-linux-loongarch64-gnu": "4.40.0", "@rollup/rollup-linux-powerpc64le-gnu": "4.40.0", "@rollup/rollup-linux-riscv64-gnu": "4.40.0", "@rollup/rollup-linux-riscv64-musl": "4.40.0", "@rollup/rollup-linux-s390x-gnu": "4.40.0", "@rollup/rollup-linux-x64-gnu": "4.40.0", "@rollup/rollup-linux-x64-musl": "4.40.0", "@rollup/rollup-win32-arm64-msvc": "4.40.0", "@rollup/rollup-win32-ia32-msvc": "4.40.0", "@rollup/rollup-win32-x64-msvc": "4.40.0", "fsevents": "~2.3.2" }, "bin": { "rollup": "dist/bin/rollup" } }, "sha512-Noe455xmA96nnqH5piFtLobsGbCij7Tu+tb3c1vYjNbTkfzGqXqQXG3wJaYXkRZuQ0vEYN4bhwg7QnIrqB5B+w=="], + "rollup": ["rollup@4.44.0", "", { "dependencies": { "@types/estree": "1.0.8" }, "optionalDependencies": { "@rollup/rollup-android-arm-eabi": "4.44.0", "@rollup/rollup-android-arm64": "4.44.0", "@rollup/rollup-darwin-arm64": "4.44.0", "@rollup/rollup-darwin-x64": "4.44.0", "@rollup/rollup-freebsd-arm64": "4.44.0", "@rollup/rollup-freebsd-x64": "4.44.0", "@rollup/rollup-linux-arm-gnueabihf": "4.44.0", "@rollup/rollup-linux-arm-musleabihf": "4.44.0", "@rollup/rollup-linux-arm64-gnu": "4.44.0", "@rollup/rollup-linux-arm64-musl": "4.44.0", "@rollup/rollup-linux-loongarch64-gnu": "4.44.0", "@rollup/rollup-linux-powerpc64le-gnu": "4.44.0", "@rollup/rollup-linux-riscv64-gnu": "4.44.0", "@rollup/rollup-linux-riscv64-musl": "4.44.0", "@rollup/rollup-linux-s390x-gnu": "4.44.0", "@rollup/rollup-linux-x64-gnu": "4.44.0", "@rollup/rollup-linux-x64-musl": "4.44.0", "@rollup/rollup-win32-arm64-msvc": "4.44.0", "@rollup/rollup-win32-ia32-msvc": "4.44.0", "@rollup/rollup-win32-x64-msvc": "4.44.0", "fsevents": "~2.3.2" }, "bin": { "rollup": "dist/bin/rollup" } }, "sha512-qHcdEzLCiktQIfwBq420pn2dP+30uzqYxv9ETm91wdt2R9AFcWfjNAmje4NWlnCIQ5RMTzVf0ZyisOKqHR6RwA=="], "run-parallel": ["run-parallel@1.2.0", "", { "dependencies": { "queue-microtask": "^1.2.2" } }, "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA=="], @@ -1258,51 +1331,43 @@ "safe-regex-test": ["safe-regex-test@1.1.0", "", { "dependencies": { "call-bound": "^1.0.2", "es-errors": "^1.3.0", "is-regex": "^1.2.1" } }, "sha512-x/+Cz4YrimQxQccJf5mKEbIa1NzeCRNI5Ecl/ekmlYaampdNLPalVyIcCZNNH3MvmqBugV5TMYZXv0ljslUlaw=="], - "sass-embedded": ["sass-embedded@1.87.0", "", { "dependencies": { "@bufbuild/protobuf": "^2.0.0", "buffer-builder": "^0.2.0", "colorjs.io": "^0.5.0", "immutable": "^5.0.2", "rxjs": "^7.4.0", "supports-color": "^8.1.1", "sync-child-process": "^1.0.2", "varint": "^6.0.0" }, "optionalDependencies": { "sass-embedded-android-arm": "1.87.0", "sass-embedded-android-arm64": "1.87.0", "sass-embedded-android-ia32": "1.87.0", "sass-embedded-android-riscv64": "1.87.0", "sass-embedded-android-x64": "1.87.0", "sass-embedded-darwin-arm64": "1.87.0", "sass-embedded-darwin-x64": "1.87.0", "sass-embedded-linux-arm": "1.87.0", "sass-embedded-linux-arm64": "1.87.0", "sass-embedded-linux-ia32": "1.87.0", "sass-embedded-linux-musl-arm": "1.87.0", "sass-embedded-linux-musl-arm64": "1.87.0", "sass-embedded-linux-musl-ia32": "1.87.0", "sass-embedded-linux-musl-riscv64": "1.87.0", "sass-embedded-linux-musl-x64": "1.87.0", "sass-embedded-linux-riscv64": "1.87.0", "sass-embedded-linux-x64": "1.87.0", "sass-embedded-win32-arm64": "1.87.0", "sass-embedded-win32-ia32": "1.87.0", "sass-embedded-win32-x64": "1.87.0" }, "bin": { "sass": "dist/bin/sass.js" } }, "sha512-1IA3iTJNh4BkkA/nidKiVwbmkxr9o6LsPegycHMX/JYs255zpocN5GdLF1+onohQCJxbs5ldr8osKV7qNaNBjg=="], + "sass-embedded": ["sass-embedded@1.89.2", "", { "dependencies": { "@bufbuild/protobuf": "^2.5.0", "buffer-builder": "^0.2.0", "colorjs.io": "^0.5.0", "immutable": "^5.0.2", "rxjs": "^7.4.0", "supports-color": "^8.1.1", "sync-child-process": "^1.0.2", "varint": "^6.0.0" }, "optionalDependencies": { "sass-embedded-android-arm": "1.89.2", "sass-embedded-android-arm64": "1.89.2", "sass-embedded-android-riscv64": "1.89.2", "sass-embedded-android-x64": "1.89.2", "sass-embedded-darwin-arm64": "1.89.2", "sass-embedded-darwin-x64": "1.89.2", "sass-embedded-linux-arm": "1.89.2", "sass-embedded-linux-arm64": "1.89.2", "sass-embedded-linux-musl-arm": "1.89.2", "sass-embedded-linux-musl-arm64": "1.89.2", "sass-embedded-linux-musl-riscv64": "1.89.2", "sass-embedded-linux-musl-x64": "1.89.2", "sass-embedded-linux-riscv64": "1.89.2", "sass-embedded-linux-x64": "1.89.2", "sass-embedded-win32-arm64": "1.89.2", "sass-embedded-win32-x64": "1.89.2" }, "bin": { "sass": "dist/bin/sass.js" } }, "sha512-Ack2K8rc57kCFcYlf3HXpZEJFNUX8xd8DILldksREmYXQkRHI879yy8q4mRDJgrojkySMZqmmmW1NxrFxMsYaA=="], - "sass-embedded-android-arm": ["sass-embedded-android-arm@1.87.0", "", { "os": "android", "cpu": "arm" }, "sha512-Z20u/Y1kFDpMbgiloR5YPLxNuMVeKQRC8e/n68oAAxf3u7rDSmNn2msi7USqgT1f2zdBBNawn/ifbFEla6JiHw=="], + "sass-embedded-android-arm": ["sass-embedded-android-arm@1.89.2", "", { "os": "android", "cpu": "arm" }, "sha512-oHAPTboBHRZlDBhyRB6dvDKh4KvFs+DZibDHXbkSI6dBZxMTT+Yb2ivocHnctVGucKTLQeT7+OM5DjWHyynL/A=="], - "sass-embedded-android-arm64": ["sass-embedded-android-arm64@1.87.0", "", { "os": "android", "cpu": "arm64" }, "sha512-uqeZoBuXm3W2KhxolScAAfWOLHL21e50g7AxlLmG0he7WZsWw6e9kSnmq301iLIFp4kvmXYXbXbNKAeu9ItRYA=="], + "sass-embedded-android-arm64": ["sass-embedded-android-arm64@1.89.2", "", { "os": "android", "cpu": "arm64" }, "sha512-+pq7a7AUpItNyPu61sRlP6G2A8pSPpyazASb+8AK2pVlFayCSPAEgpwpCE9A2/Xj86xJZeMizzKUHxM2CBCUxA=="], - "sass-embedded-android-ia32": ["sass-embedded-android-ia32@1.87.0", "", { "os": "android", "cpu": "ia32" }, "sha512-hSWTqo2Igdig528cUb1W1+emw9d1J4+nqOoR4tERS04zcwRRFNDiuBT0o5meV7nkEwE982F+h57YdcRXj8gTtg=="], + "sass-embedded-android-riscv64": ["sass-embedded-android-riscv64@1.89.2", "", { "os": "android", "cpu": "none" }, "sha512-HfJJWp/S6XSYvlGAqNdakeEMPOdhBkj2s2lN6SHnON54rahKem+z9pUbCriUJfM65Z90lakdGuOfidY61R9TYg=="], - "sass-embedded-android-riscv64": ["sass-embedded-android-riscv64@1.87.0", "", { "os": "android", "cpu": "none" }, "sha512-kBAPSjiTBLy5ua/0LRNAJwOAARhzFU7gP35fYORJcdBuz1lkIVPVnid1lh9qQ6Ce9MOJcr7VKFtGnTuqVeig5A=="], + "sass-embedded-android-x64": ["sass-embedded-android-x64@1.89.2", "", { "os": "android", "cpu": "x64" }, "sha512-BGPzq53VH5z5HN8de6jfMqJjnRe1E6sfnCWFd4pK+CAiuM7iw5Fx6BQZu3ikfI1l2GY0y6pRXzsVLdp/j4EKEA=="], - "sass-embedded-android-x64": ["sass-embedded-android-x64@1.87.0", "", { "os": "android", "cpu": "x64" }, "sha512-ZHMrNdtdMSpJUYco2MesnlPwDTZftD3pqkkOMI2pbqarPoFUKJtP5k80nwCM0sJGtqfNE+O16w9yPght0CMiJg=="], + "sass-embedded-darwin-arm64": ["sass-embedded-darwin-arm64@1.89.2", "", { "os": "darwin", "cpu": "arm64" }, "sha512-UCm3RL/tzMpG7DsubARsvGUNXC5pgfQvP+RRFJo9XPIi6elopY5B6H4m9dRYDpHA+scjVthdiDwkPYr9+S/KGw=="], - "sass-embedded-darwin-arm64": ["sass-embedded-darwin-arm64@1.87.0", "", { "os": "darwin", "cpu": "arm64" }, "sha512-7TK1JWJdCIRSdZv5CJv/HpDz/wIfwUy2FoPz9sVOEj1pDTH0N+VfJd5VutCddIdoQN9jr0ap8vwkc65FbAxV2A=="], + "sass-embedded-darwin-x64": ["sass-embedded-darwin-x64@1.89.2", "", { "os": "darwin", "cpu": "x64" }, "sha512-D9WxtDY5VYtMApXRuhQK9VkPHB8R79NIIR6xxVlN2MIdEid/TZWi1MHNweieETXhWGrKhRKglwnHxxyKdJYMnA=="], - "sass-embedded-darwin-x64": ["sass-embedded-darwin-x64@1.87.0", "", { "os": "darwin", "cpu": "x64" }, "sha512-2JiQzt7FmgUC4MYT2QvbeH/Bi3e76WEhaYoc5P3WyTW8unsHksyTdMuTuYe0Qf9usIyt6bmm5no/4BBw7c8Cig=="], + "sass-embedded-linux-arm": ["sass-embedded-linux-arm@1.89.2", "", { "os": "linux", "cpu": "arm" }, "sha512-leP0t5U4r95dc90o8TCWfxNXwMAsQhpWxTkdtySDpngoqtTy3miMd7EYNYd1znI0FN1CBaUvbdCMbnbPwygDlA=="], - "sass-embedded-linux-arm": ["sass-embedded-linux-arm@1.87.0", "", { "os": "linux", "cpu": "arm" }, "sha512-z5P6INMsGXiUcq1sRRbksyQUhalFFYjTEexuxfSYdK3U2YQMADHubQh8pGzkWvFRPOpnh83RiGuwvpaARYHnsw=="], + "sass-embedded-linux-arm64": ["sass-embedded-linux-arm64@1.89.2", "", { "os": "linux", "cpu": "arm64" }, "sha512-2N4WW5LLsbtrWUJ7iTpjvhajGIbmDR18ZzYRywHdMLpfdPApuHPMDF5CYzHbS+LLx2UAx7CFKBnj5LLjY6eFgQ=="], - "sass-embedded-linux-arm64": ["sass-embedded-linux-arm64@1.87.0", "", { "os": "linux", "cpu": "arm64" }, "sha512-5z+mwJCbGZcg+q+MwdEVSh0ogFK7OSAe175Gsozzr/Izw34Q+RGUw9O82jsV2c4YNuTAQvzEHgIO5cvNvt3Quw=="], + "sass-embedded-linux-musl-arm": ["sass-embedded-linux-musl-arm@1.89.2", "", { "os": "linux", "cpu": "arm" }, "sha512-Z6gG2FiVEEdxYHRi2sS5VIYBmp17351bWtOCUZ/thBM66+e70yiN6Eyqjz80DjL8haRUegNQgy9ZJqsLAAmr9g=="], - "sass-embedded-linux-ia32": ["sass-embedded-linux-ia32@1.87.0", "", { "os": "linux", "cpu": "ia32" }, "sha512-Xzcp+YPp0iakGL148Jl57CO+MxLuj2jsry3M+rc1cSnDlvkjNVs6TMxaL70GFeV5HdU2V60voYcgE7adDUtJjw=="], + "sass-embedded-linux-musl-arm64": ["sass-embedded-linux-musl-arm64@1.89.2", "", { "os": "linux", "cpu": "arm64" }, "sha512-nTyuaBX6U1A/cG7WJh0pKD1gY8hbg1m2SnzsyoFG+exQ0lBX/lwTLHq3nyhF+0atv7YYhYKbmfz+sjPP8CZ9lw=="], - "sass-embedded-linux-musl-arm": ["sass-embedded-linux-musl-arm@1.87.0", "", { "os": "linux", "cpu": "arm" }, "sha512-4PyqOWhRzyu06RRmpCCBOJdF4BOv7s446wrV6yODtEyyfSIDx3MJabo3KT0oJ1lTWSI/aU3R89bKx0JFXcIHHw=="], + "sass-embedded-linux-musl-riscv64": ["sass-embedded-linux-musl-riscv64@1.89.2", "", { "os": "linux", "cpu": "none" }, "sha512-N6oul+qALO0SwGY8JW7H/Vs0oZIMrRMBM4GqX3AjM/6y8JsJRxkAwnfd0fDyK+aICMFarDqQonQNIx99gdTZqw=="], - "sass-embedded-linux-musl-arm64": ["sass-embedded-linux-musl-arm64@1.87.0", "", { "os": "linux", "cpu": "arm64" }, "sha512-HWE5eTRCoKzFZWsxOjDMTF5m4DDTQ0n7NJxSYiUXPBDydr9viPXbGOMYG7WVJLjiF7upr7DYo/mfp/SNTMlZyg=="], + "sass-embedded-linux-musl-x64": ["sass-embedded-linux-musl-x64@1.89.2", "", { "os": "linux", "cpu": "x64" }, "sha512-K+FmWcdj/uyP8GiG9foxOCPfb5OAZG0uSVq80DKgVSC0U44AdGjvAvVZkrgFEcZ6cCqlNC2JfYmslB5iqdL7tg=="], - "sass-embedded-linux-musl-ia32": ["sass-embedded-linux-musl-ia32@1.87.0", "", { "os": "linux", "cpu": "ia32" }, "sha512-aQaPvlRn3kh93PLQvl6BcFKu8Ji92+42blFEkg6nMVvmugD5ZwH2TGFrX25ibx4CYxRpMS4ssF7a0i7vy5HB1Q=="], + "sass-embedded-linux-riscv64": ["sass-embedded-linux-riscv64@1.89.2", "", { "os": "linux", "cpu": "none" }, "sha512-g9nTbnD/3yhOaskeqeBQETbtfDQWRgsjHok6bn7DdAuwBsyrR3JlSFyqKc46pn9Xxd9SQQZU8AzM4IR+sY0A0w=="], - "sass-embedded-linux-musl-riscv64": ["sass-embedded-linux-musl-riscv64@1.87.0", "", { "os": "linux", "cpu": "none" }, "sha512-o5DxcqiFzET3KRWo+futHr/lhAMBP3tJGGx8YIgpHQYfvDMbsvE0hiFC+nZ/GF9dbcGd+ceIQwfvE5mcc7Gsjw=="], + "sass-embedded-linux-x64": ["sass-embedded-linux-x64@1.89.2", "", { "os": "linux", "cpu": "x64" }, "sha512-Ax7dKvzncyQzIl4r7012KCMBvJzOz4uwSNoyoM5IV6y5I1f5hEwI25+U4WfuTqdkv42taCMgpjZbh9ERr6JVMQ=="], - "sass-embedded-linux-musl-x64": ["sass-embedded-linux-musl-x64@1.87.0", "", { "os": "linux", "cpu": "x64" }, "sha512-dKxWsu9Wu/CyfzQmHdeiGqrRSzJ85VUjbSx+aP1/7ttmps3SSg+YW95PuqnCOa7GSuSreC3dKKpXHTywUxMLQA=="], + "sass-embedded-win32-arm64": ["sass-embedded-win32-arm64@1.89.2", "", { "os": "win32", "cpu": "arm64" }, "sha512-j96iJni50ZUsfD6tRxDQE2QSYQ2WrfHxeiyAXf41Kw0V4w5KYR/Sf6rCZQLMTUOHnD16qTMVpQi20LQSqf4WGg=="], - "sass-embedded-linux-riscv64": ["sass-embedded-linux-riscv64@1.87.0", "", { "os": "linux", "cpu": "none" }, "sha512-Sy3ESZ4FwBiijvmTA9n+0p0w3MNCue1AgINVPzpAY27EFi0h49eqQm9SWfOkFqmkFS2zFRYowdQOr5Bbr2gOXA=="], - - "sass-embedded-linux-x64": ["sass-embedded-linux-x64@1.87.0", "", { "os": "linux", "cpu": "x64" }, "sha512-+UfjakOcHHKTnEqB3EZ+KqzezQOe1emvy4Rs+eQhLyfekpYuNze/qlRvYxfKTmrtvDiUrIto8MXsyZfMLzkuMA=="], - - "sass-embedded-win32-arm64": ["sass-embedded-win32-arm64@1.87.0", "", { "os": "win32", "cpu": "arm64" }, "sha512-m1DS6FYUE0/fv+vt38uQB/kxR4UjnyD+2zcSc298pFmA0aYh/XZIPWw7RxG1HL3KLE1ZrGyu3254MPoxRhs3ig=="], - - "sass-embedded-win32-ia32": ["sass-embedded-win32-ia32@1.87.0", "", { "os": "win32", "cpu": "ia32" }, "sha512-JztXLo59GMe2E6g+kCsyiERYhtZgkcyDYx6CrXoSTE5WaE+RbxRiCCCv8/1+hf406f08pUxJ8G0Ody7M5urtBA=="], - - "sass-embedded-win32-x64": ["sass-embedded-win32-x64@1.87.0", "", { "os": "win32", "cpu": "x64" }, "sha512-4nQErpauvhgSo+7ClumGdjdf9sGx+U9yBgvhI0+zUw+D5YvraVgvA0Lk8Wuwntx2PqnvKUk8YDr/vxHJostv4Q=="], + "sass-embedded-win32-x64": ["sass-embedded-win32-x64@1.89.2", "", { "os": "win32", "cpu": "x64" }, "sha512-cS2j5ljdkQsb4PaORiClaVYynE9OAPZG/XjbOMxpQmjRIf7UroY4PEIH+Waf+y47PfXFX9SyxhYuw2NIKGbEng=="], "seek-bzip": ["seek-bzip@2.0.0", "", { "dependencies": { "commander": "^6.0.0" }, "bin": { "seek-bunzip": "bin/seek-bunzip", "seek-table": "bin/seek-bzip-table" } }, "sha512-SMguiTnYrhpLdk3PwfzHeotrcwi8bNV4iemL9tx9poR/yeaMYwB9VzR1w7b57DuWpuqR8n6oZboi0hj3AxZxQg=="], - "semver": ["semver@7.7.1", "", { "bin": { "semver": "bin/semver.js" } }, "sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA=="], + "semver": ["semver@7.7.2", "", { "bin": { "semver": "bin/semver.js" } }, "sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA=="], "semver-regex": ["semver-regex@4.0.5", "", {}, "sha512-hunMQrEy1T6Jr2uEVjrAIqjwWcQTgOAcIM52C8MY1EZSD3DDNft04XzvYKPqjED65bNVVko0YI38nYeEHCX3yw=="], @@ -1312,7 +1377,7 @@ "setimmediate": ["setimmediate@1.0.5", "", {}, "sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA=="], - "sh-syntax": ["sh-syntax@0.5.7", "", { "dependencies": { "tslib": "^2.8.1" } }, "sha512-74m9dt91konrF5+m0kASugzi37VxKsnTJQ6yvdDZu3IijG5/vIZpImP6FadsJLWNt2X2YD0VaTwW5W7Ox7mFVg=="], + "sh-syntax": ["sh-syntax@0.5.8", "", { "dependencies": { "tslib": "^2.8.1" } }, "sha512-JfVoxf4FxQI5qpsPbkHhZo+n6N9YMJobyl4oGEUBb/31oQYlgTjkXQD8PBiafS2UbWoxrTO0Z5PJUBXEPAG1Zw=="], "sha.js": ["sha.js@2.4.11", "", { "dependencies": { "inherits": "^2.0.1", "safe-buffer": "^5.0.1" }, "bin": { "sha.js": "./bin.js" } }, "sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ=="], @@ -1334,7 +1399,7 @@ "slice-ansi": ["slice-ansi@4.0.0", "", { "dependencies": { "ansi-styles": "^4.0.0", "astral-regex": "^2.0.0", "is-fullwidth-code-point": "^3.0.0" } }, "sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ=="], - "smol-toml": ["smol-toml@1.3.3", "", {}, "sha512-KMVLNWu490KlNfD0lbfDBUktJIEaZRBj1eeK0SMfdpO/rfyARIzlnPVI1Ge4l0vtSJmQUAiGKxMyLGrCT38iyA=="], + "smol-toml": ["smol-toml@1.3.4", "", {}, "sha512-UOPtVuYkzYGee0Bd2Szz8d2G3RfMfJ2t3qVdZUAozZyAk+a0Sxa+QKix0YCwjL/A1RR0ar44nCxaoN9FxdJGwA=="], "sort-keys": ["sort-keys@1.1.2", "", { "dependencies": { "is-plain-obj": "^1.0.0" } }, "sha512-vzn8aSqKgytVik0iwdBEi+zevbTYZogewTUM6dtpmGwEcdzbub/TX4bCzRhebDCRC3QzXgJsLRKB2V/Oof7HXg=="], @@ -1350,7 +1415,7 @@ "stream-http": ["stream-http@3.2.0", "", { "dependencies": { "builtin-status-codes": "^3.0.0", "inherits": "^2.0.4", "readable-stream": "^3.6.0", "xtend": "^4.0.2" } }, "sha512-Oq1bLqisTyK3TSCXpPbT4sdeYNdmyZJv1LxpEm2vu1ZhK89kSE5YXwZc3cWk0MagGaKriBh9mCFbVGtO+vY29A=="], - "streamx": ["streamx@2.22.0", "", { "dependencies": { "fast-fifo": "^1.3.2", "text-decoder": "^1.1.0" }, "optionalDependencies": { "bare-events": "^2.2.0" } }, "sha512-sLh1evHOzBy/iWRiR6d1zRcLao4gGZr3C1kzNz4fopCOKJb6xD9ub8Mpi9Mr1R6id5o43S+d93fI48UC5uM9aw=="], + "streamx": ["streamx@2.22.1", "", { "dependencies": { "fast-fifo": "^1.3.2", "text-decoder": "^1.1.0" }, "optionalDependencies": { "bare-events": "^2.2.0" } }, "sha512-znKXEBxfatz2GBNK02kRnCXjV+AA4kjZIUxeWSr3UGirZMJfTE9uiwKHobnbgxWyL/JWro8tTq+vOqAK1/qbSA=="], "string-width": ["string-width@4.2.3", "", { "dependencies": { "emoji-regex": "^8.0.0", "is-fullwidth-code-point": "^3.0.0", "strip-ansi": "^6.0.1" } }, "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g=="], @@ -1362,25 +1427,25 @@ "strip-final-newline": ["strip-final-newline@2.0.0", "", {}, "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA=="], - "strip-json-comments": ["strip-json-comments@5.0.1", "", {}, "sha512-0fk9zBqO67Nq5M/m45qHCJxylV/DhBlIOVExqgOMiCCrzrhU6tCibRXNqE3jwJLftzE9SNuZtYbpzcO+i9FiKw=="], + "strip-json-comments": ["strip-json-comments@5.0.2", "", {}, "sha512-4X2FR3UwhNUE9G49aIsJW5hRRR3GXGTBTZRMfv568O60ojM8HcWjV/VxAxCDW3SUND33O6ZY66ZuRcdkj73q2g=="], "strtok3": ["strtok3@9.1.1", "", { "dependencies": { "@tokenizer/token": "^0.3.0", "peek-readable": "^5.3.1" } }, "sha512-FhwotcEqjr241ZbjFzjlIYg6c5/L/s4yBGWSMvJ9UoExiSqL+FnFA/CaeZx17WGaZMS/4SOZp8wH18jSS4R4lw=="], "style-search": ["style-search@0.1.0", "", {}, "sha512-Dj1Okke1C3uKKwQcetra4jSuk0DqbzbYtXipzFlFMZtowbF1x7BKJwB9AayVMyFARvU8EDrZdcax4At/452cAg=="], - "stylelint": ["stylelint@16.19.0", "", { "dependencies": { "@csstools/css-parser-algorithms": "^3.0.4", "@csstools/css-tokenizer": "^3.0.3", "@csstools/media-query-list-parser": "^4.0.2", "@csstools/selector-specificity": "^5.0.0", "@dual-bundle/import-meta-resolve": "^4.1.0", "balanced-match": "^2.0.0", "colord": "^2.9.3", "cosmiconfig": "^9.0.0", "css-functions-list": "^3.2.3", "css-tree": "^3.1.0", "debug": "^4.3.7", "fast-glob": "^3.3.3", "fastest-levenshtein": "^1.0.16", "file-entry-cache": "^10.0.8", "global-modules": "^2.0.0", "globby": "^11.1.0", "globjoin": "^0.1.4", "html-tags": "^3.3.1", "ignore": "^7.0.3", "imurmurhash": "^0.1.4", "is-plain-object": "^5.0.0", "known-css-properties": "^0.36.0", "mathml-tag-names": "^2.1.3", "meow": "^13.2.0", "micromatch": "^4.0.8", "normalize-path": "^3.0.0", "picocolors": "^1.1.1", "postcss": "^8.5.3", "postcss-resolve-nested-selector": "^0.1.6", "postcss-safe-parser": "^7.0.1", "postcss-selector-parser": "^7.1.0", "postcss-value-parser": "^4.2.0", "resolve-from": "^5.0.0", "string-width": "^4.2.3", "supports-hyperlinks": "^3.2.0", "svg-tags": "^1.0.0", "table": "^6.9.0", "write-file-atomic": "^5.0.1" }, "bin": { "stylelint": "bin/stylelint.mjs" } }, "sha512-BJzc5mo/ez0H/ZSl3UbxGdkK/s0kFGsF5/k6IGu4z8wJ1qp49WrOS9RxswvcN6HMirt0g/iiJqOwLHTbWv49IQ=="], + "stylelint": ["stylelint@16.21.1", "", { "dependencies": { "@csstools/css-parser-algorithms": "^3.0.5", "@csstools/css-tokenizer": "^3.0.4", "@csstools/media-query-list-parser": "^4.0.3", "@csstools/selector-specificity": "^5.0.0", "@dual-bundle/import-meta-resolve": "^4.1.0", "balanced-match": "^2.0.0", "colord": "^2.9.3", "cosmiconfig": "^9.0.0", "css-functions-list": "^3.2.3", "css-tree": "^3.1.0", "debug": "^4.4.1", "fast-glob": "^3.3.3", "fastest-levenshtein": "^1.0.16", "file-entry-cache": "^10.1.1", "global-modules": "^2.0.0", "globby": "^11.1.0", "globjoin": "^0.1.4", "html-tags": "^3.3.1", "ignore": "^7.0.5", "imurmurhash": "^0.1.4", "is-plain-object": "^5.0.0", "known-css-properties": "^0.37.0", "mathml-tag-names": "^2.1.3", "meow": "^13.2.0", "micromatch": "^4.0.8", "normalize-path": "^3.0.0", "picocolors": "^1.1.1", "postcss": "^8.5.6", "postcss-resolve-nested-selector": "^0.1.6", "postcss-safe-parser": "^7.0.1", "postcss-selector-parser": "^7.1.0", "postcss-value-parser": "^4.2.0", "resolve-from": "^5.0.0", "string-width": "^4.2.3", "supports-hyperlinks": "^3.2.0", "svg-tags": "^1.0.0", "table": "^6.9.0", "write-file-atomic": "^5.0.1" }, "bin": { "stylelint": "bin/stylelint.mjs" } }, "sha512-WCXdXnYK2tpCbebgMF0Bme3YZH/Rh/UXerj75twYo4uLULlcrLwFVdZTvTEF8idFnAcW21YUDJFyKOfaf6xJRw=="], "stylelint-config-clean-order": ["stylelint-config-clean-order@7.0.0", "", { "dependencies": { "stylelint-order": "^6.0.4" }, "peerDependencies": { "stylelint": ">=14" } }, "sha512-R28w1xNliIbem3o+VIrNjAU8cMgxrGlDoXVqWW7lJ1OvSDsmNGj5aKSW6Xm7i5PK4E99T3Hs19BJFni5IbE56g=="], - "stylelint-config-recommended": ["stylelint-config-recommended@14.0.1", "", { "peerDependencies": { "stylelint": "^16.1.0" } }, "sha512-bLvc1WOz/14aPImu/cufKAZYfXs/A/owZfSMZ4N+16WGXLoX5lOir53M6odBxvhgmgdxCVnNySJmZKx73T93cg=="], + "stylelint-config-recommended": ["stylelint-config-recommended@16.0.0", "", { "peerDependencies": { "stylelint": "^16.16.0" } }, "sha512-4RSmPjQegF34wNcK1e1O3Uz91HN8P1aFdFzio90wNK9mjgAI19u5vsU868cVZboKzCaa5XbpvtTzAAGQAxpcXA=="], - "stylelint-config-recommended-scss": ["stylelint-config-recommended-scss@14.1.0", "", { "dependencies": { "postcss-scss": "^4.0.9", "stylelint-config-recommended": "^14.0.1", "stylelint-scss": "^6.4.0" }, "peerDependencies": { "postcss": "^8.3.3", "stylelint": "^16.6.1" }, "optionalPeers": ["postcss"] }, "sha512-bhaMhh1u5dQqSsf6ri2GVWWQW5iUjBYgcHkh7SgDDn92ijoItC/cfO/W+fpXshgTQWhwFkP1rVcewcv4jaftRg=="], + "stylelint-config-recommended-scss": ["stylelint-config-recommended-scss@15.0.1", "", { "dependencies": { "postcss-scss": "^4.0.9", "stylelint-config-recommended": "^16.0.0", "stylelint-scss": "^6.12.0" }, "peerDependencies": { "postcss": "^8.3.3", "stylelint": "^16.16.0" }, "optionalPeers": ["postcss"] }, "sha512-V24bxkNkFGggqPVJlP9iXaBabwSGEG7QTz+PyxrRtjPkcF+/NsWtB3tKYvFYEmczRkWiIEfuFMhGpJFj9Fxe6Q=="], "stylelint-config-sass-guidelines": ["stylelint-config-sass-guidelines@12.1.0", "", { "dependencies": { "@stylistic/stylelint-plugin": "^3.0.1", "postcss-scss": "^4.0.9", "stylelint-scss": "^6.2.1" }, "peerDependencies": { "postcss": "^8.4.21", "stylelint": "^16.1.0" } }, "sha512-NTxEtVT6uNSqRvq+A3ScyKhjUrY/Z845TnpWEwnMgIPZ/+/Waa4+51r6OPuQRMu4XZS3D8DK1UaT4TWFBvuuAw=="], - "stylelint-config-standard": ["stylelint-config-standard@36.0.1", "", { "dependencies": { "stylelint-config-recommended": "^14.0.1" }, "peerDependencies": { "stylelint": "^16.1.0" } }, "sha512-8aX8mTzJ6cuO8mmD5yon61CWuIM4UD8Q5aBcWKGSf6kg+EC3uhB+iOywpTK4ca6ZL7B49en8yanOFtUW0qNzyw=="], + "stylelint-config-standard": ["stylelint-config-standard@38.0.0", "", { "dependencies": { "stylelint-config-recommended": "^16.0.0" }, "peerDependencies": { "stylelint": "^16.18.0" } }, "sha512-uj3JIX+dpFseqd/DJx8Gy3PcRAJhlEZ2IrlFOc4LUxBX/PNMEQ198x7LCOE2Q5oT9Vw8nyc4CIL78xSqPr6iag=="], - "stylelint-config-standard-scss": ["stylelint-config-standard-scss@14.0.0", "", { "dependencies": { "stylelint-config-recommended-scss": "^14.1.0", "stylelint-config-standard": "^36.0.1" }, "peerDependencies": { "postcss": "^8.3.3", "stylelint": "^16.11.0" }, "optionalPeers": ["postcss"] }, "sha512-6Pa26D9mHyi4LauJ83ls3ELqCglU6VfCXchovbEqQUiEkezvKdv6VgsIoMy58i00c854wVmOw0k8W5FTpuaVqg=="], + "stylelint-config-standard-scss": ["stylelint-config-standard-scss@15.0.1", "", { "dependencies": { "stylelint-config-recommended-scss": "^15.0.1", "stylelint-config-standard": "^38.0.0" }, "peerDependencies": { "postcss": "^8.3.3", "stylelint": "^16.18.0" }, "optionalPeers": ["postcss"] }, "sha512-8pmmfutrMlPHukLp+Th9asmk21tBXMVGxskZCzkRVWt1d8Z0SrXjUUQ3vn9KcBj1bJRd5msk6yfEFM0UYHBRdg=="], "stylelint-declaration-block-no-ignored-properties": ["stylelint-declaration-block-no-ignored-properties@2.8.0", "", { "peerDependencies": { "stylelint": "^7.0.0 || ^8.0.0 || ^9.0.0 || ^10.0.0 || ^11.0.0 || ^12.0.0 || ^13.0.0 || ^14.0.0 || ^15.0.0 || ^16.0.0" } }, "sha512-Ws8Cav7Y+SPN0JsV407LrnNXWOrqGjxShf+37GBtnU/C58Syve9c0+I/xpLcFOosST3ternykn3Lp77f3ITnFw=="], @@ -1388,7 +1453,7 @@ "stylelint-plugin-logical-css": ["stylelint-plugin-logical-css@1.2.3", "", { "peerDependencies": { "stylelint": "^14.0.0 || ^15.0.0 || ^16.0.0" } }, "sha512-yzSDrw4yyZJosgMablqqQzCeJmsPRAK/H7X1XzliQkYvoC/ZHBfHKos27dQEwwSLBUaYg+7nJ1ct7OlST4iqZA=="], - "stylelint-scss": ["stylelint-scss@6.11.1", "", { "dependencies": { "css-tree": "^3.0.1", "is-plain-object": "^5.0.0", "known-css-properties": "^0.35.0", "mdn-data": "^2.15.0", "postcss-media-query-parser": "^0.2.3", "postcss-resolve-nested-selector": "^0.1.6", "postcss-selector-parser": "^7.1.0", "postcss-value-parser": "^4.2.0" }, "peerDependencies": { "stylelint": "^16.0.2" } }, "sha512-e4rYo0UY+BIMtGeGanghrvHTjcryxgZbyFxUedp8dLFqC4P70aawNdYjRrQxbnKhu3BNr4+lt5e/53tcKXiwFA=="], + "stylelint-scss": ["stylelint-scss@6.12.1", "", { "dependencies": { "css-tree": "^3.0.1", "is-plain-object": "^5.0.0", "known-css-properties": "^0.36.0", "mdn-data": "^2.21.0", "postcss-media-query-parser": "^0.2.3", "postcss-resolve-nested-selector": "^0.1.6", "postcss-selector-parser": "^7.1.0", "postcss-value-parser": "^4.2.0" }, "peerDependencies": { "stylelint": "^16.0.2" } }, "sha512-UJUfBFIvXfly8WKIgmqfmkGKPilKB4L5j38JfsDd+OCg2GBdU0vGUV08Uw82tsRZzd4TbsUURVVNGeOhJVF7pA=="], "supports-color": ["supports-color@8.1.1", "", { "dependencies": { "has-flag": "^4.0.0" } }, "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q=="], @@ -1406,11 +1471,11 @@ "table": ["table@6.9.0", "", { "dependencies": { "ajv": "^8.0.1", "lodash.truncate": "^4.4.2", "slice-ansi": "^4.0.0", "string-width": "^4.2.3", "strip-ansi": "^6.0.1" } }, "sha512-9kY+CygyYM6j02t5YFHbNz2FN5QmYGv9zAjVp4lCDjlCw7amdckXlEt/bjMhUIfj4ThGRE4gCUH5+yGnNuPo5A=="], - "tapable": ["tapable@2.2.1", "", {}, "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ=="], + "tar-mini": ["tar-mini@0.2.0", "", {}, "sha512-+qfUHz700DWnRutdUsxRRVZ38G1Qr27OetwaMYTdg8hcPxf46U0S1Zf76dQMWRBmusOt2ZCK5kbIaiLkoGO7WQ=="], "tar-stream": ["tar-stream@3.1.7", "", { "dependencies": { "b4a": "^1.6.4", "fast-fifo": "^1.2.0", "streamx": "^2.15.0" } }, "sha512-qJj60CXt7IU1Ffyc3NJMjh6EkuCFej46zUqJ4J7pqYlThyd9bO0XBTmcOIhSzZJVWfsLks0+nle/j538YAW9RQ=="], - "terser": ["terser@5.39.0", "", { "dependencies": { "@jridgewell/source-map": "^0.3.3", "acorn": "^8.8.2", "commander": "^2.20.0", "source-map-support": "~0.5.20" }, "bin": { "terser": "bin/terser" } }, "sha512-LBAhFyLho16harJoWMg/nZsQYgTrg5jXOn2nCYjRUcZZEdE3qa2zb8QEDRUGVZBW4rlazf2fxkg8tztybTaqWw=="], + "terser": ["terser@5.43.1", "", { "dependencies": { "@jridgewell/source-map": "^0.3.3", "acorn": "^8.14.0", "commander": "^2.20.0", "source-map-support": "~0.5.20" }, "bin": { "terser": "bin/terser" } }, "sha512-+6erLbBm0+LROX2sPXlUYx/ux5PyE9K/a92Wrt6oA+WDAoFTdpHE5tCYCI5PNzq2y8df4rA+QgHLJuR4jNymsg=="], "text-decoder": ["text-decoder@1.2.3", "", { "dependencies": { "b4a": "^1.6.4" } }, "sha512-3/o9z3X0X0fTupwsYvR03pJ/DjWuqqrfwBgTQzdWDiQSm9KitAyz/9WqsT2JQW7KV2m+bC2ol/zqpW37NHxLaA=="], @@ -1418,7 +1483,9 @@ "timers-browserify": ["timers-browserify@2.0.12", "", { "dependencies": { "setimmediate": "^1.0.4" } }, "sha512-9phl76Cqm6FhSX9Xe1ZUAMLtm1BLkKj2Qd5ApyWkXzsMRaA7dgr81kf4wJmQf/hAvg8EEyJxDo3du/0KlhPiKQ=="], - "tinyglobby": ["tinyglobby@0.2.13", "", { "dependencies": { "fdir": "^6.4.4", "picomatch": "^4.0.2" } }, "sha512-mEwzpUgrLySlveBwEVDMKk5B57bhLPYovRfPAXD5gA/98Opn0rCDj3GtLwFvCvH5RK9uPCExUROW5NjDwvqkxw=="], + "tinyglobby": ["tinyglobby@0.2.14", "", { "dependencies": { "fdir": "^6.4.4", "picomatch": "^4.0.2" } }, "sha512-tX5e7OM1HnYr2+a2C/4V0htOcSQcoSTH9KgJnVvNm5zm/cyEWKJ7j7YutsH9CxMdtOkkLFy2AHrMci9IM8IPZQ=="], + + "to-buffer": ["to-buffer@1.2.1", "", { "dependencies": { "isarray": "^2.0.5", "safe-buffer": "^5.2.1", "typed-array-buffer": "^1.0.3" } }, "sha512-tB82LpAIWjhLYbqjx3X4zEeHN6M8CiuOEy2JY8SEQVdYRe3CCHOFaqrBW1doLDrfpWhplcW7BL+bO3/6S3pcDQ=="], "to-regex-range": ["to-regex-range@5.0.1", "", { "dependencies": { "is-number": "^7.0.0" } }, "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ=="], @@ -1426,9 +1493,9 @@ "ts-api-utils": ["ts-api-utils@2.1.0", "", { "peerDependencies": { "typescript": ">=4.8.4" } }, "sha512-CUgTZL1irw8u29bzrOD/nH85jqyc74D6SshFgujOIA7osm2Rz7dYH77agkx7H4FBNxDq7Cjf+IjaX/8zwFW+ZQ=="], - "ts-pattern": ["ts-pattern@5.7.0", "", {}, "sha512-0/FvIG4g3kNkYgbNwBBW5pZBkfpeYQnH+2AA3xmjkCAit/DSDPKmgwC3fKof4oYUq6gupClVOJlFl+939VRBMg=="], + "ts-pattern": ["ts-pattern@5.7.1", "", {}, "sha512-EGs8PguQqAAUIcQfK4E9xdXxB6s2GK4sJfT/vcc9V1ELIvC4LH/zXu2t/5fajtv6oiRCxdv7BgtVK3vWgROxag=="], - "tsconfck": ["tsconfck@3.1.5", "", { "peerDependencies": { "typescript": "^5.0.0" }, "optionalPeers": ["typescript"], "bin": { "tsconfck": "bin/tsconfck.js" } }, "sha512-CLDfGgUp7XPswWnezWwsCRxNmgQjhYq3VXHM0/XIRxhVrKw0M1if9agzryh1QS3nxjCROvV+xWxoJO1YctzzWg=="], + "tsconfck": ["tsconfck@3.1.6", "", { "peerDependencies": { "typescript": "^5.0.0" }, "optionalPeers": ["typescript"], "bin": { "tsconfck": "bin/tsconfck.js" } }, "sha512-ks6Vjr/jEw0P1gmOVwutM3B7fWxoWBL2KRDb1JfqGVawBmO5UsvmWOQFGHBPl5yxYz4eERr19E6L7NMv+Fej4w=="], "tslib": ["tslib@2.8.1", "", {}, "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w=="], @@ -1436,15 +1503,17 @@ "type-check": ["type-check@0.4.0", "", { "dependencies": { "prelude-ls": "^1.2.1" } }, "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew=="], + "typed-array-buffer": ["typed-array-buffer@1.0.3", "", { "dependencies": { "call-bound": "^1.0.3", "es-errors": "^1.3.0", "is-typed-array": "^1.1.14" } }, "sha512-nAYYwfY3qnzX30IkA6AQZjVbtK6duGontcQm1WSG1MD94YLqK0515GNApXkoxKOWMusVssAHWLh9SeaoefYFGw=="], + "typescript": ["typescript@5.8.3", "", { "bin": { "tsc": "bin/tsc", "tsserver": "bin/tsserver" } }, "sha512-p1diW6TqL9L07nNxvRMM7hMMw4c5XOo/1ibL4aAIGmSAt9slTE1Xgw5KWuof2uTOvCg9BY7ZRi+GaF+7sfgPeQ=="], - "typescript-eslint": ["typescript-eslint@8.31.0", "", { "dependencies": { "@typescript-eslint/eslint-plugin": "8.31.0", "@typescript-eslint/parser": "8.31.0", "@typescript-eslint/utils": "8.31.0" }, "peerDependencies": { "eslint": "^8.57.0 || ^9.0.0", "typescript": ">=4.8.4 <5.9.0" } }, "sha512-u+93F0sB0An8WEAPtwxVhFby573E8ckdjwUUQUj9QA4v8JAvgtoDdIyYR3XFwFHq2W1KJ1AurwJCO+w+Y1ixyQ=="], + "typescript-eslint": ["typescript-eslint@8.35.1", "", { "dependencies": { "@typescript-eslint/eslint-plugin": "8.35.1", "@typescript-eslint/parser": "8.35.1", "@typescript-eslint/utils": "8.35.1" }, "peerDependencies": { "eslint": "^8.57.0 || ^9.0.0", "typescript": ">=4.8.4 <5.9.0" } }, "sha512-xslJjFzhOmHYQzSB/QTeASAHbjmxOGEP6Coh93TXmUBFQoJ1VU35UHIDmG06Jd6taf3wqqC1ntBnCMeymy5Ovw=="], "uint8array-extras": ["uint8array-extras@1.4.0", "", {}, "sha512-ZPtzy0hu4cZjv3z5NW9gfKnNLjoz4y6uv4HlelAjDK7sY/xOkKZv9xK/WQpcsBB3jEybChz9DPC2U/+cusjJVQ=="], "unbzip2-stream": ["unbzip2-stream@1.4.3", "", { "dependencies": { "buffer": "^5.2.1", "through": "^2.3.8" } }, "sha512-mlExGW4w71ebDJviH16lQLtZS32VKqsSfk80GCfUlwT/4/hNRFsoscrF/c++9xinkMzECL1uL9DDwXqFWkruPg=="], - "undici-types": ["undici-types@6.21.0", "", {}, "sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ=="], + "undici-types": ["undici-types@7.8.0", "", {}, "sha512-9UJ2xGDvQ43tYyVMpuHlsgApydB8ZKfVYTsLDhXkFL/6gfkp+U8xTGdh8pMJv1SpZna0zxG1DwsKZsreLbXBxw=="], "unicode-canonical-property-names-ecmascript": ["unicode-canonical-property-names-ecmascript@2.0.1", "", {}, "sha512-dA8WbNeb2a6oQzAQ55YlT5vQAWGV9WXOsi3SskE3bcCdM0P4SDd+24zS/OCacdRq5BkdsRj9q3Pg6YyQoxIGqg=="], @@ -1464,23 +1533,25 @@ "util-deprecate": ["util-deprecate@1.0.2", "", {}, "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw=="], - "valibot": ["valibot@1.0.0", "", { "peerDependencies": { "typescript": ">=5" }, "optionalPeers": ["typescript"] }, "sha512-1Hc0ihzWxBar6NGeZv7fPLY0QuxFMyxwYR2sF1Blu7Wq7EnremwY2W02tit2ij2VJT8HcSkHAQqmFfl77f73Yw=="], + "valibot": ["valibot@1.1.0", "", { "peerDependencies": { "typescript": ">=5" }, "optionalPeers": ["typescript"] }, "sha512-Nk8lX30Qhu+9txPYTwM0cFlWLdPFsFr6LblzqIySfbZph9+BFsAHsNvHOymEviUepeIW6KFHzpX8TKhbptBXXw=="], "varint": ["varint@6.0.0", "", {}, "sha512-cXEIW6cfr15lFv563k4GuVuW/fiwjknytD37jIOLSdSWuOI6WnO/oKwmP2FQTU2l01LP8/M5TSAJpzUaGe3uWg=="], - "vite": ["vite@6.3.2", "", { "dependencies": { "esbuild": "^0.25.0", "fdir": "^6.4.3", "picomatch": "^4.0.2", "postcss": "^8.5.3", "rollup": "^4.34.9", "tinyglobby": "^0.2.12" }, "optionalDependencies": { "fsevents": "~2.3.3" }, "peerDependencies": { "@types/node": "^18.0.0 || ^20.0.0 || >=22.0.0", "jiti": ">=1.21.0", "less": "*", "lightningcss": "^1.21.0", "sass": "*", "sass-embedded": "*", "stylus": "*", "sugarss": "*", "terser": "^5.16.0", "tsx": "^4.8.1", "yaml": "^2.4.2" }, "optionalPeers": ["@types/node", "jiti", "less", "lightningcss", "sass", "sass-embedded", "stylus", "sugarss", "terser", "tsx", "yaml"], "bin": { "vite": "bin/vite.js" } }, "sha512-ZSvGOXKGceizRQIZSz7TGJ0pS3QLlVY/9hwxVh17W3re67je1RKYzFHivZ/t0tubU78Vkyb9WnHPENSBCzbckg=="], + "vite": ["vite@7.0.2", "", { "dependencies": { "esbuild": "^0.25.0", "fdir": "^6.4.6", "picomatch": "^4.0.2", "postcss": "^8.5.6", "rollup": "^4.40.0", "tinyglobby": "^0.2.14" }, "optionalDependencies": { "fsevents": "~2.3.3" }, "peerDependencies": { "@types/node": "^20.19.0 || >=22.12.0", "jiti": ">=1.21.0", "less": "^4.0.0", "lightningcss": "^1.21.0", "sass": "^1.70.0", "sass-embedded": "^1.70.0", "stylus": ">=0.54.8", "sugarss": "^5.0.0", "terser": "^5.16.0", "tsx": "^4.8.1", "yaml": "^2.4.2" }, "optionalPeers": ["@types/node", "jiti", "less", "lightningcss", "sass", "sass-embedded", "stylus", "sugarss", "terser", "tsx", "yaml"], "bin": { "vite": "bin/vite.js" } }, "sha512-hxdyZDY1CM6SNpKI4w4lcUc3Mtkd9ej4ECWVHSMrOdSinVc2zYOAppHeGc/hzmRo3pxM5blMzkuWHOJA/3NiFw=="], + + "vite-plugin-compression2": ["vite-plugin-compression2@2.2.0", "", { "dependencies": { "@rollup/pluginutils": "^5.1.0", "tar-mini": "^0.2.0" } }, "sha512-7BZlU2mBHbqoBGy0ARkn3tv/7LC/2h8ewVDpG/cyH8iSzLw6E/yH6P4oBOEvchkQxNpl+B5W6rFR5fdSwfDhMA=="], "vite-plugin-manifest-sri": ["vite-plugin-manifest-sri@0.2.0", "", {}, "sha512-Zt5jt19xTIJ91LOuQTCtNG7rTFc5OziAjBz2H5NdCGqaOD1nxrWExLhcKW+W4/q8/jOPCg/n5ncYEQmqCxiGQQ=="], "vite-plugin-node-polyfills": ["vite-plugin-node-polyfills@0.23.0", "", { "dependencies": { "@rollup/plugin-inject": "^5.0.5", "node-stdlib-browser": "^1.2.0" }, "peerDependencies": { "vite": "^2.0.0 || ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0" } }, "sha512-4n+Ys+2bKHQohPBKigFlndwWQ5fFKwaGY6muNDMTb0fSQLyBzS+jjUNRZG9sKF0S/Go4ApG6LFnUGopjkILg3w=="], - "vite-plugin-valibot-env": ["vite-plugin-valibot-env@0.10.0", "", { "dependencies": { "is-unicode-supported": "^2.1.0" }, "peerDependencies": { "valibot": "^1.0.0", "vite": "^5.0.0 || ^6.0.0" } }, "sha512-q/a+l8fRD2x7+gSD1nn25TojXI2qHwt9aGy0I6++D65Sabv3Rp70K/IPV554nWy67qcwpqfD1Q5vOFPa+zl5dw=="], + "vite-plugin-valibot-env": ["vite-plugin-valibot-env@1.0.1", "", { "dependencies": { "is-unicode-supported": "^2.1.0" }, "peerDependencies": { "valibot": ">=1.0.0", "vite": "^5.0.0 || ^6.0.0 || >=7.0.0" } }, "sha512-u/X+iHKrvilvJrP1UiQHzaeLYDuDa3pu6i3rJxW22Tj0+LvQMENK4piLfBO6NmcopnVmD4K36Ngk08NNrmIjVw=="], "vite-tsconfig-paths": ["vite-tsconfig-paths@5.1.4", "", { "dependencies": { "debug": "^4.1.1", "globrex": "^0.1.2", "tsconfck": "^3.0.3" }, "peerDependencies": { "vite": "*" }, "optionalPeers": ["vite"] }, "sha512-cYj0LRuLV2c2sMqhqhGpaO3LretdtMn/BVX4cPLanIZuwwrkVl+lK84E/miEXkCHWXuq65rhNN4rXsBcOB3S4w=="], "vm-browserify": ["vm-browserify@1.1.2", "", {}, "sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ=="], - "wcwidth": ["wcwidth@1.0.1", "", { "dependencies": { "defaults": "^1.0.3" } }, "sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg=="], + "walk-up-path": ["walk-up-path@4.0.0", "", {}, "sha512-3hu+tD8YzSLGuFYtPRb48vdhKMi0KQV5sn+uWr8+7dMEq/2G/dtLrdDinkLjqq5TIbIBjYJ4Ax/n3YiaW7QM8A=="], "which": ["which@2.0.2", "", { "dependencies": { "isexe": "^2.0.0" }, "bin": { "node-which": "./bin/node-which" } }, "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA=="], @@ -1488,7 +1559,7 @@ "word-wrap": ["word-wrap@1.2.5", "", {}, "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA=="], - "wp-types": ["wp-types@4.68.0", "", { "dependencies": { "typescript": ">=4" } }, "sha512-b4E861y0BzNUJSWH2i1/ArTISI87qdadEO0qBJRocJ0L95P8gaa7r4RXQHMIfBpFnQy0NToMrnN8Qb3rWP2Vjg=="], + "wp-types": ["wp-types@4.68.1", "", { "dependencies": { "typescript": ">=4" } }, "sha512-PpyF5va7pxdBSV8cE3oao/Wfsrbx1gZKmBaijOd6/Q6RmuzCfUSPHtj8RzAtwDYD8dv7cga5lX63TvYTHdOIZA=="], "write-file-atomic": ["write-file-atomic@5.0.1", "", { "dependencies": { "imurmurhash": "^0.1.4", "signal-exit": "^4.0.1" } }, "sha512-+QU2zd6OTD8XWIJCbffaiQeH9U73qIqafo1x6V1snCWYGJf6cVE0cDR4D8xRzcEnfI21IFrUPzPGtcPf8AC+Rw=="], @@ -1500,12 +1571,14 @@ "yocto-queue": ["yocto-queue@0.1.0", "", {}, "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q=="], - "zod": ["zod@3.24.3", "", {}, "sha512-HhY1oqzWCQWuUqvBFnsyrtZRhyPeR7SUGv+C4+MsisMuVfSPx8HpwWqH8tRahSlt6M3PiFAcoeFhZAqIXTxoSg=="], + "zod": ["zod@3.25.67", "", {}, "sha512-idA2YXwpCdqUSKRCACDE6ItZD9TZzy3OZMtpfLoh6oPR47lipysRrJfjzMqFxQ3uJuUPyUeWe1r9vLH33xO/Qw=="], - "zod-validation-error": ["zod-validation-error@3.4.0", "", { "peerDependencies": { "zod": "^3.18.0" } }, "sha512-ZOPR9SVY6Pb2qqO5XHt+MkkTRxGXb4EVtnjc9JpXUOtUB1T9Ru7mZOT361AN3MsetVe7R0a1KZshJDZdgp9miQ=="], + "zod-validation-error": ["zod-validation-error@3.5.2", "", { "peerDependencies": { "zod": "^3.25.0" } }, "sha512-mdi7YOLtram5dzJ5aDtm1AG9+mxRma1iaMrZdYIpFO7epdKBUwLHIxTF8CPDeCQ828zAXYtizrKlEJAtzgfgrw=="], "@babel/core/semver": ["semver@6.3.1", "", { "bin": { "semver": "bin/semver.js" } }, "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA=="], + "@babel/helper-compilation-targets/browserslist": ["browserslist@4.25.0", "", { "dependencies": { "caniuse-lite": "^1.0.30001718", "electron-to-chromium": "^1.5.160", "node-releases": "^2.0.19", "update-browserslist-db": "^1.1.3" }, "bin": { "browserslist": "cli.js" } }, "sha512-PJ8gYKeS5e/whHBh8xrwYK+dAvEj7JXtz6uTucnMRB8OiGTsKccFekoRrjajPBHV8oOY+2tI4uxeceSimKwMFA=="], + "@babel/helper-compilation-targets/semver": ["semver@6.3.1", "", { "bin": { "semver": "bin/semver.js" } }, "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA=="], "@babel/helper-create-class-features-plugin/semver": ["semver@6.3.1", "", { "bin": { "semver": "bin/semver.js" } }, "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA=="], @@ -1528,6 +1601,8 @@ "@eslint/eslintrc/strip-json-comments": ["strip-json-comments@3.1.1", "", {}, "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig=="], + "@eslint/plugin-kit/@eslint/core": ["@eslint/core@0.15.0", "", { "dependencies": { "@types/json-schema": "^7.0.15" } }, "sha512-b7ePw78tEWWkpgZCDYkbqDOP8dmM6qe+AOC6iuJqlq1R/0ahMAeH3qynpnqKFGkMltrp44ohV4ubGyvLX28tzw=="], + "@humanfs/node/@humanwhocodes/retry": ["@humanwhocodes/retry@0.3.1", "", {}, "sha512-JBxkERygn7Bv/GbN5Rv8Ul6LVknS+5Bp6RgDC/O8gEBU/yeH5Ui5C/OlWrTb6qct7LjjfT6Re2NxB0ln0yYybA=="], "@keyv/serialize/buffer": ["buffer@6.0.3", "", { "dependencies": { "base64-js": "^1.3.1", "ieee754": "^1.2.1" } }, "sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA=="], @@ -1536,7 +1611,35 @@ "@stylistic/stylelint-plugin/postcss-selector-parser": ["postcss-selector-parser@6.1.2", "", { "dependencies": { "cssesc": "^3.0.0", "util-deprecate": "^1.0.2" } }, "sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg=="], - "asn1.js/bn.js": ["bn.js@4.12.1", "", {}, "sha512-k8TVBiPkPJT9uHLdOKfFpqcfprwBFOAAXXozRubr7R7PfIuKvQlzcI4M0pALeqXN09vdaMbUdUj+pass+uULAg=="], + "@stylistic/stylelint-plugin/stylelint": ["stylelint@16.21.0", "", { "dependencies": { "@csstools/css-parser-algorithms": "^3.0.5", "@csstools/css-tokenizer": "^3.0.4", "@csstools/media-query-list-parser": "^4.0.3", "@csstools/selector-specificity": "^5.0.0", "@dual-bundle/import-meta-resolve": "^4.1.0", "balanced-match": "^2.0.0", "colord": "^2.9.3", "cosmiconfig": "^9.0.0", "css-functions-list": "^3.2.3", "css-tree": "^3.1.0", "debug": "^4.4.1", "fast-glob": "^3.3.3", "fastest-levenshtein": "^1.0.16", "file-entry-cache": "^10.1.1", "global-modules": "^2.0.0", "globby": "^11.1.0", "globjoin": "^0.1.4", "html-tags": "^3.3.1", "ignore": "^7.0.5", "imurmurhash": "^0.1.4", "is-plain-object": "^5.0.0", "known-css-properties": "^0.37.0", "mathml-tag-names": "^2.1.3", "meow": "^13.2.0", "micromatch": "^4.0.8", "normalize-path": "^3.0.0", "picocolors": "^1.1.1", "postcss": "^8.5.5", "postcss-resolve-nested-selector": "^0.1.6", "postcss-safe-parser": "^7.0.1", "postcss-selector-parser": "^7.1.0", "postcss-value-parser": "^4.2.0", "resolve-from": "^5.0.0", "string-width": "^4.2.3", "supports-hyperlinks": "^3.2.0", "svg-tags": "^1.0.0", "table": "^6.9.0", "write-file-atomic": "^5.0.1" }, "bin": { "stylelint": "bin/stylelint.mjs" } }, "sha512-ki3PpJGG7xhm3WtINoWGnlvqAmbqSexoRMbEMJzlwewSIOqPRKPlq452c22xAdEJISVi80r+I7KL9GPUiwFgbg=="], + + "@types/eslint__js/@eslint/js": ["@eslint/js@9.29.0", "", {}, "sha512-3PIF4cBw/y+1u2EazflInpV+lYsSG0aByVIQzAgb1m1MhHFSbqTyNqtBKHgWf/9Ykud+DhILS9EGkmekVhbKoQ=="], + + "@typescript-eslint/eslint-plugin/@typescript-eslint/scope-manager": ["@typescript-eslint/scope-manager@8.35.1", "", { "dependencies": { "@typescript-eslint/types": "8.35.1", "@typescript-eslint/visitor-keys": "8.35.1" } }, "sha512-s/Bpd4i7ht2934nG+UoSPlYXd08KYz3bmjLEb7Ye1UVob0d1ENiT3lY8bsCmik4RqfSbPw9xJJHbugpPpP5JUg=="], + + "@typescript-eslint/eslint-plugin/@typescript-eslint/utils": ["@typescript-eslint/utils@8.35.1", "", { "dependencies": { "@eslint-community/eslint-utils": "^4.7.0", "@typescript-eslint/scope-manager": "8.35.1", "@typescript-eslint/types": "8.35.1", "@typescript-eslint/typescript-estree": "8.35.1" }, "peerDependencies": { "eslint": "^8.57.0 || ^9.0.0", "typescript": ">=4.8.4 <5.9.0" } }, "sha512-lhnwatFmOFcazAsUm3ZnZFpXSxiwoa1Lj50HphnDe1Et01NF4+hrdXONSUHIcbVu2eFb1bAf+5yjXkGVkXBKAQ=="], + + "@typescript-eslint/eslint-plugin/ignore": ["ignore@7.0.5", "", {}, "sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg=="], + + "@typescript-eslint/parser/@typescript-eslint/scope-manager": ["@typescript-eslint/scope-manager@8.35.1", "", { "dependencies": { "@typescript-eslint/types": "8.35.1", "@typescript-eslint/visitor-keys": "8.35.1" } }, "sha512-s/Bpd4i7ht2934nG+UoSPlYXd08KYz3bmjLEb7Ye1UVob0d1ENiT3lY8bsCmik4RqfSbPw9xJJHbugpPpP5JUg=="], + + "@typescript-eslint/parser/@typescript-eslint/types": ["@typescript-eslint/types@8.35.1", "", {}, "sha512-q/O04vVnKHfrrhNAscndAn1tuQhIkwqnaW+eu5waD5IPts2eX1dgJxgqcPx5BX109/qAz7IG6VrEPTOYKCNfRQ=="], + + "@typescript-eslint/parser/@typescript-eslint/typescript-estree": ["@typescript-eslint/typescript-estree@8.35.1", "", { "dependencies": { "@typescript-eslint/project-service": "8.35.1", "@typescript-eslint/tsconfig-utils": "8.35.1", "@typescript-eslint/types": "8.35.1", "@typescript-eslint/visitor-keys": "8.35.1", "debug": "^4.3.4", "fast-glob": "^3.3.2", "is-glob": "^4.0.3", "minimatch": "^9.0.4", "semver": "^7.6.0", "ts-api-utils": "^2.1.0" }, "peerDependencies": { "typescript": ">=4.8.4 <5.9.0" } }, "sha512-Vvpuvj4tBxIka7cPs6Y1uvM7gJgdF5Uu9F+mBJBPY4MhvjrjWGK4H0lVgLJd/8PWZ23FTqsaJaLEkBCFUk8Y9g=="], + + "@typescript-eslint/scope-manager/@typescript-eslint/visitor-keys": ["@typescript-eslint/visitor-keys@8.34.1", "", { "dependencies": { "@typescript-eslint/types": "8.34.1", "eslint-visitor-keys": "^4.2.1" } }, "sha512-xoh5rJ+tgsRKoXnkBPFRLZ7rjKM0AfVbC68UZ/ECXoDbfggb9RbEySN359acY1vS3qZ0jVTVWzbtfapwm5ztxw=="], + + "@typescript-eslint/type-utils/@typescript-eslint/typescript-estree": ["@typescript-eslint/typescript-estree@8.35.1", "", { "dependencies": { "@typescript-eslint/project-service": "8.35.1", "@typescript-eslint/tsconfig-utils": "8.35.1", "@typescript-eslint/types": "8.35.1", "@typescript-eslint/visitor-keys": "8.35.1", "debug": "^4.3.4", "fast-glob": "^3.3.2", "is-glob": "^4.0.3", "minimatch": "^9.0.4", "semver": "^7.6.0", "ts-api-utils": "^2.1.0" }, "peerDependencies": { "typescript": ">=4.8.4 <5.9.0" } }, "sha512-Vvpuvj4tBxIka7cPs6Y1uvM7gJgdF5Uu9F+mBJBPY4MhvjrjWGK4H0lVgLJd/8PWZ23FTqsaJaLEkBCFUk8Y9g=="], + + "@typescript-eslint/type-utils/@typescript-eslint/utils": ["@typescript-eslint/utils@8.35.1", "", { "dependencies": { "@eslint-community/eslint-utils": "^4.7.0", "@typescript-eslint/scope-manager": "8.35.1", "@typescript-eslint/types": "8.35.1", "@typescript-eslint/typescript-estree": "8.35.1" }, "peerDependencies": { "eslint": "^8.57.0 || ^9.0.0", "typescript": ">=4.8.4 <5.9.0" } }, "sha512-lhnwatFmOFcazAsUm3ZnZFpXSxiwoa1Lj50HphnDe1Et01NF4+hrdXONSUHIcbVu2eFb1bAf+5yjXkGVkXBKAQ=="], + + "@typescript-eslint/typescript-estree/@typescript-eslint/visitor-keys": ["@typescript-eslint/visitor-keys@8.34.1", "", { "dependencies": { "@typescript-eslint/types": "8.34.1", "eslint-visitor-keys": "^4.2.1" } }, "sha512-xoh5rJ+tgsRKoXnkBPFRLZ7rjKM0AfVbC68UZ/ECXoDbfggb9RbEySN359acY1vS3qZ0jVTVWzbtfapwm5ztxw=="], + + "@typescript-eslint/visitor-keys/@typescript-eslint/types": ["@typescript-eslint/types@8.35.1", "", {}, "sha512-q/O04vVnKHfrrhNAscndAn1tuQhIkwqnaW+eu5waD5IPts2eX1dgJxgqcPx5BX109/qAz7IG6VrEPTOYKCNfRQ=="], + + "@vitejs/plugin-legacy/browserslist": ["browserslist@4.25.0", "", { "dependencies": { "caniuse-lite": "^1.0.30001718", "electron-to-chromium": "^1.5.160", "node-releases": "^2.0.19", "update-browserslist-db": "^1.1.3" }, "bin": { "browserslist": "cli.js" } }, "sha512-PJ8gYKeS5e/whHBh8xrwYK+dAvEj7JXtz6uTucnMRB8OiGTsKccFekoRrjajPBHV8oOY+2tI4uxeceSimKwMFA=="], + + "asn1.js/bn.js": ["bn.js@4.12.2", "", {}, "sha512-n4DSx829VRTRByMRGdjQ9iqsN0Bh4OolPsFnaZBLcbi8iXcB+kJ9s7EnRt4wILZNV3kPLHkRVfOc/HvhC3ovDw=="], "babel-plugin-polyfill-corejs2/semver": ["semver@6.3.1", "", { "bin": { "semver": "bin/semver.js" } }, "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA=="], @@ -1544,15 +1647,17 @@ "browserify-sign/readable-stream": ["readable-stream@2.3.8", "", { "dependencies": { "core-util-is": "~1.0.0", "inherits": "~2.0.3", "isarray": "~1.0.0", "process-nextick-args": "~2.0.0", "safe-buffer": "~5.1.1", "string_decoder": "~1.1.1", "util-deprecate": "~1.0.1" } }, "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA=="], - "cacheable/keyv": ["keyv@5.3.3", "", { "dependencies": { "@keyv/serialize": "^1.0.3" } }, "sha512-Rwu4+nXI9fqcxiEHtbkvoes2X+QfkTRo1TMkPfwzipGsJlJO/z69vqB4FNl9xJ3xCpAcbkvmEabZfPzrwN3+gQ=="], + "cacheable/keyv": ["keyv@5.3.4", "", { "dependencies": { "@keyv/serialize": "^1.0.3" } }, "sha512-ypEvQvInNpUe+u+w8BIcPkQvEqXquyyibWE/1NB5T2BTzIpS5cGEV1LZskDzPSTvNAaT4+5FutvzlvnkxOSKlw=="], - "create-ecdh/bn.js": ["bn.js@4.12.1", "", {}, "sha512-k8TVBiPkPJT9uHLdOKfFpqcfprwBFOAAXXozRubr7R7PfIuKvQlzcI4M0pALeqXN09vdaMbUdUj+pass+uULAg=="], + "core-js-compat/browserslist": ["browserslist@4.25.0", "", { "dependencies": { "caniuse-lite": "^1.0.30001718", "electron-to-chromium": "^1.5.160", "node-releases": "^2.0.19", "update-browserslist-db": "^1.1.3" }, "bin": { "browserslist": "cli.js" } }, "sha512-PJ8gYKeS5e/whHBh8xrwYK+dAvEj7JXtz6uTucnMRB8OiGTsKccFekoRrjajPBHV8oOY+2tI4uxeceSimKwMFA=="], + + "create-ecdh/bn.js": ["bn.js@4.12.2", "", {}, "sha512-n4DSx829VRTRByMRGdjQ9iqsN0Bh4OolPsFnaZBLcbi8iXcB+kJ9s7EnRt4wILZNV3kPLHkRVfOc/HvhC3ovDw=="], "decompress-response/mimic-response": ["mimic-response@3.1.0", "", {}, "sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ=="], - "diffie-hellman/bn.js": ["bn.js@4.12.1", "", {}, "sha512-k8TVBiPkPJT9uHLdOKfFpqcfprwBFOAAXXozRubr7R7PfIuKvQlzcI4M0pALeqXN09vdaMbUdUj+pass+uULAg=="], + "diffie-hellman/bn.js": ["bn.js@4.12.2", "", {}, "sha512-n4DSx829VRTRByMRGdjQ9iqsN0Bh4OolPsFnaZBLcbi8iXcB+kJ9s7EnRt4wILZNV3kPLHkRVfOc/HvhC3ovDw=="], - "elliptic/bn.js": ["bn.js@4.12.1", "", {}, "sha512-k8TVBiPkPJT9uHLdOKfFpqcfprwBFOAAXXozRubr7R7PfIuKvQlzcI4M0pALeqXN09vdaMbUdUj+pass+uULAg=="], + "elliptic/bn.js": ["bn.js@4.12.2", "", {}, "sha512-n4DSx829VRTRByMRGdjQ9iqsN0Bh4OolPsFnaZBLcbi8iXcB+kJ9s7EnRt4wILZNV3kPLHkRVfOc/HvhC3ovDw=="], "eslint/chalk": ["chalk@4.1.2", "", { "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" } }, "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA=="], @@ -1570,21 +1675,27 @@ "micromatch/picomatch": ["picomatch@2.3.1", "", {}, "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA=="], - "miller-rabin/bn.js": ["bn.js@4.12.1", "", {}, "sha512-k8TVBiPkPJT9uHLdOKfFpqcfprwBFOAAXXozRubr7R7PfIuKvQlzcI4M0pALeqXN09vdaMbUdUj+pass+uULAg=="], + "miller-rabin/bn.js": ["bn.js@4.12.2", "", {}, "sha512-n4DSx829VRTRByMRGdjQ9iqsN0Bh4OolPsFnaZBLcbi8iXcB+kJ9s7EnRt4wILZNV3kPLHkRVfOc/HvhC3ovDw=="], - "public-encrypt/bn.js": ["bn.js@4.12.1", "", {}, "sha512-k8TVBiPkPJT9uHLdOKfFpqcfprwBFOAAXXozRubr7R7PfIuKvQlzcI4M0pALeqXN09vdaMbUdUj+pass+uULAg=="], + "pbkdf2/create-hash": ["create-hash@1.1.3", "", { "dependencies": { "cipher-base": "^1.0.1", "inherits": "^2.0.1", "ripemd160": "^2.0.0", "sha.js": "^2.4.0" } }, "sha512-snRpch/kwQhcdlnZKYanNF1m0RDlrCdSKQaH87w1FCFPVPNCQ/Il9QJKAX2jVBZddRdaHBMC+zXa9Gw9tmkNUA=="], + + "pbkdf2/ripemd160": ["ripemd160@2.0.1", "", { "dependencies": { "hash-base": "^2.0.0", "inherits": "^2.0.1" } }, "sha512-J7f4wutN8mdbV08MJnXibYpCOPHR+yzy+iQ/AsjMv2j8cLavQ8VGagDFUwwTAdF8FmRKVeNpbTTEwNHCW1g94w=="], + + "public-encrypt/bn.js": ["bn.js@4.12.2", "", {}, "sha512-n4DSx829VRTRByMRGdjQ9iqsN0Bh4OolPsFnaZBLcbi8iXcB+kJ9s7EnRt4wILZNV3kPLHkRVfOc/HvhC3ovDw=="], "regjsparser/jsesc": ["jsesc@3.0.2", "", { "bin": { "jsesc": "bin/jsesc" } }, "sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g=="], + "rollup/fsevents": ["fsevents@2.3.3", "", { "os": "darwin" }, "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw=="], + "seek-bzip/commander": ["commander@6.2.1", "", {}, "sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA=="], "source-map-support/source-map": ["source-map@0.6.1", "", {}, "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g=="], - "stylelint/file-entry-cache": ["file-entry-cache@10.0.8", "", { "dependencies": { "flat-cache": "^6.1.8" } }, "sha512-FGXHpfmI4XyzbLd3HQ8cbUcsFGohJpZtmQRHr8z8FxxtCe2PcpgIlVLwIgunqjvRmXypBETvwhV4ptJizA+Y1Q=="], + "stylelint/file-entry-cache": ["file-entry-cache@10.1.1", "", { "dependencies": { "flat-cache": "^6.1.10" } }, "sha512-zcmsHjg2B2zjuBgjdnB+9q0+cWcgWfykIcsDkWDB4GTPtl1eXUA+gTI6sO0u01AqK3cliHryTU55/b2Ow1hfZg=="], - "stylelint/ignore": ["ignore@7.0.3", "", {}, "sha512-bAH5jbK/F3T3Jls4I0SO1hmPR0dKU0a7+SY6n1yzRtG54FLO8d6w/nxLFX2Nb7dBu6cCWXPaAME6cYqFUMmuCA=="], + "stylelint/ignore": ["ignore@7.0.5", "", {}, "sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg=="], - "stylelint-scss/known-css-properties": ["known-css-properties@0.35.0", "", {}, "sha512-a/RAk2BfKk+WFGhhOCAYqSiFLc34k8Mt/6NWRI4joER0EYUzXIcFivjjnoD3+XU1DggLn/tZc3DOAgke7l8a4A=="], + "stylelint-scss/known-css-properties": ["known-css-properties@0.36.0", "", {}, "sha512-A+9jP+IUmuQsNdsLdcg6Yt7voiMF/D4K83ew0OpJtpu+l34ef7LaohWV0Rc6KNvzw6ZDizkqfyB5JznZnzuKQA=="], "stylelint-scss/mdn-data": ["mdn-data@2.21.0", "", {}, "sha512-+ZKPQezM5vYJIkCxaC+4DTnRrVZR1CgsKLu5zsQERQx6Tea8Y+wMx5A24rq8A8NepCeatIQufVAekKNgiBMsGQ=="], @@ -1594,32 +1705,96 @@ "terser/commander": ["commander@2.20.3", "", {}, "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ=="], + "to-buffer/isarray": ["isarray@2.0.5", "", {}, "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw=="], + + "typescript-eslint/@typescript-eslint/utils": ["@typescript-eslint/utils@8.35.1", "", { "dependencies": { "@eslint-community/eslint-utils": "^4.7.0", "@typescript-eslint/scope-manager": "8.35.1", "@typescript-eslint/types": "8.35.1", "@typescript-eslint/typescript-estree": "8.35.1" }, "peerDependencies": { "eslint": "^8.57.0 || ^9.0.0", "typescript": ">=4.8.4 <5.9.0" } }, "sha512-lhnwatFmOFcazAsUm3ZnZFpXSxiwoa1Lj50HphnDe1Et01NF4+hrdXONSUHIcbVu2eFb1bAf+5yjXkGVkXBKAQ=="], + "uri-js/punycode": ["punycode@2.3.1", "", {}, "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg=="], - "wcwidth/defaults": ["defaults@1.0.4", "", { "dependencies": { "clone": "^1.0.2" } }, "sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A=="], + "vite/fsevents": ["fsevents@2.3.3", "", { "os": "darwin" }, "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw=="], - "@eslint/config-array/minimatch/brace-expansion": ["brace-expansion@1.1.11", "", { "dependencies": { "balanced-match": "^1.0.0", "concat-map": "0.0.1" } }, "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA=="], + "@babel/helper-compilation-targets/browserslist/caniuse-lite": ["caniuse-lite@1.0.30001724", "", {}, "sha512-WqJo7p0TbHDOythNTqYujmaJTvtYRZrjpP8TCvH6Vb9CYJerJNKamKzIWOM4BkQatWj9H2lYulpdAQNBe7QhNA=="], - "@eslint/eslintrc/minimatch/brace-expansion": ["brace-expansion@1.1.11", "", { "dependencies": { "balanced-match": "^1.0.0", "concat-map": "0.0.1" } }, "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA=="], + "@babel/helper-compilation-targets/browserslist/electron-to-chromium": ["electron-to-chromium@1.5.171", "", {}, "sha512-scWpzXEJEMrGJa4Y6m/tVotb0WuvNmasv3wWVzUAeCgKU0ToFOhUW6Z+xWnRQANMYGxN4ngJXIThgBJOqzVPCQ=="], + + "@eslint/config-array/minimatch/brace-expansion": ["brace-expansion@1.1.12", "", { "dependencies": { "balanced-match": "^1.0.0", "concat-map": "0.0.1" } }, "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg=="], + + "@eslint/eslintrc/minimatch/brace-expansion": ["brace-expansion@1.1.12", "", { "dependencies": { "balanced-match": "^1.0.0", "concat-map": "0.0.1" } }, "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg=="], + + "@stylistic/stylelint-plugin/stylelint/@csstools/media-query-list-parser": ["@csstools/media-query-list-parser@4.0.3", "", { "peerDependencies": { "@csstools/css-parser-algorithms": "^3.0.5", "@csstools/css-tokenizer": "^3.0.4" } }, "sha512-HAYH7d3TLRHDOUQK4mZKf9k9Ph/m8Akstg66ywKR4SFAigjs3yBiUeZtFxywiTm5moZMAp/5W/ZuFnNXXYLuuQ=="], + + "@stylistic/stylelint-plugin/stylelint/file-entry-cache": ["file-entry-cache@10.1.1", "", { "dependencies": { "flat-cache": "^6.1.10" } }, "sha512-zcmsHjg2B2zjuBgjdnB+9q0+cWcgWfykIcsDkWDB4GTPtl1eXUA+gTI6sO0u01AqK3cliHryTU55/b2Ow1hfZg=="], + + "@stylistic/stylelint-plugin/stylelint/ignore": ["ignore@7.0.5", "", {}, "sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg=="], + + "@stylistic/stylelint-plugin/stylelint/postcss-selector-parser": ["postcss-selector-parser@7.1.0", "", { "dependencies": { "cssesc": "^3.0.0", "util-deprecate": "^1.0.2" } }, "sha512-8sLjZwK0R+JlxlYcTuVnyT2v+htpdrjDOKuMcOVdYjt52Lh8hWRYpxBPoKx/Zg+bcjc3wx6fmQevMmUztS/ccA=="], + + "@typescript-eslint/eslint-plugin/@typescript-eslint/scope-manager/@typescript-eslint/types": ["@typescript-eslint/types@8.35.1", "", {}, "sha512-q/O04vVnKHfrrhNAscndAn1tuQhIkwqnaW+eu5waD5IPts2eX1dgJxgqcPx5BX109/qAz7IG6VrEPTOYKCNfRQ=="], + + "@typescript-eslint/eslint-plugin/@typescript-eslint/utils/@typescript-eslint/types": ["@typescript-eslint/types@8.35.1", "", {}, "sha512-q/O04vVnKHfrrhNAscndAn1tuQhIkwqnaW+eu5waD5IPts2eX1dgJxgqcPx5BX109/qAz7IG6VrEPTOYKCNfRQ=="], + + "@typescript-eslint/eslint-plugin/@typescript-eslint/utils/@typescript-eslint/typescript-estree": ["@typescript-eslint/typescript-estree@8.35.1", "", { "dependencies": { "@typescript-eslint/project-service": "8.35.1", "@typescript-eslint/tsconfig-utils": "8.35.1", "@typescript-eslint/types": "8.35.1", "@typescript-eslint/visitor-keys": "8.35.1", "debug": "^4.3.4", "fast-glob": "^3.3.2", "is-glob": "^4.0.3", "minimatch": "^9.0.4", "semver": "^7.6.0", "ts-api-utils": "^2.1.0" }, "peerDependencies": { "typescript": ">=4.8.4 <5.9.0" } }, "sha512-Vvpuvj4tBxIka7cPs6Y1uvM7gJgdF5Uu9F+mBJBPY4MhvjrjWGK4H0lVgLJd/8PWZ23FTqsaJaLEkBCFUk8Y9g=="], + + "@typescript-eslint/parser/@typescript-eslint/typescript-estree/@typescript-eslint/project-service": ["@typescript-eslint/project-service@8.35.1", "", { "dependencies": { "@typescript-eslint/tsconfig-utils": "^8.35.1", "@typescript-eslint/types": "^8.35.1", "debug": "^4.3.4" }, "peerDependencies": { "typescript": ">=4.8.4 <5.9.0" } }, "sha512-VYxn/5LOpVxADAuP3NrnxxHYfzVtQzLKeldIhDhzC8UHaiQvYlXvKuVho1qLduFbJjjy5U5bkGwa3rUGUb1Q6Q=="], + + "@typescript-eslint/parser/@typescript-eslint/typescript-estree/@typescript-eslint/tsconfig-utils": ["@typescript-eslint/tsconfig-utils@8.35.1", "", { "peerDependencies": { "typescript": ">=4.8.4 <5.9.0" } }, "sha512-K5/U9VmT9dTHoNowWZpz+/TObS3xqC5h0xAIjXPw+MNcKV9qg6eSatEnmeAwkjHijhACH0/N7bkhKvbt1+DXWQ=="], + + "@typescript-eslint/type-utils/@typescript-eslint/typescript-estree/@typescript-eslint/project-service": ["@typescript-eslint/project-service@8.35.1", "", { "dependencies": { "@typescript-eslint/tsconfig-utils": "^8.35.1", "@typescript-eslint/types": "^8.35.1", "debug": "^4.3.4" }, "peerDependencies": { "typescript": ">=4.8.4 <5.9.0" } }, "sha512-VYxn/5LOpVxADAuP3NrnxxHYfzVtQzLKeldIhDhzC8UHaiQvYlXvKuVho1qLduFbJjjy5U5bkGwa3rUGUb1Q6Q=="], + + "@typescript-eslint/type-utils/@typescript-eslint/typescript-estree/@typescript-eslint/tsconfig-utils": ["@typescript-eslint/tsconfig-utils@8.35.1", "", { "peerDependencies": { "typescript": ">=4.8.4 <5.9.0" } }, "sha512-K5/U9VmT9dTHoNowWZpz+/TObS3xqC5h0xAIjXPw+MNcKV9qg6eSatEnmeAwkjHijhACH0/N7bkhKvbt1+DXWQ=="], + + "@typescript-eslint/type-utils/@typescript-eslint/typescript-estree/@typescript-eslint/types": ["@typescript-eslint/types@8.35.1", "", {}, "sha512-q/O04vVnKHfrrhNAscndAn1tuQhIkwqnaW+eu5waD5IPts2eX1dgJxgqcPx5BX109/qAz7IG6VrEPTOYKCNfRQ=="], + + "@typescript-eslint/type-utils/@typescript-eslint/utils/@typescript-eslint/scope-manager": ["@typescript-eslint/scope-manager@8.35.1", "", { "dependencies": { "@typescript-eslint/types": "8.35.1", "@typescript-eslint/visitor-keys": "8.35.1" } }, "sha512-s/Bpd4i7ht2934nG+UoSPlYXd08KYz3bmjLEb7Ye1UVob0d1ENiT3lY8bsCmik4RqfSbPw9xJJHbugpPpP5JUg=="], + + "@typescript-eslint/type-utils/@typescript-eslint/utils/@typescript-eslint/types": ["@typescript-eslint/types@8.35.1", "", {}, "sha512-q/O04vVnKHfrrhNAscndAn1tuQhIkwqnaW+eu5waD5IPts2eX1dgJxgqcPx5BX109/qAz7IG6VrEPTOYKCNfRQ=="], + + "@vitejs/plugin-legacy/browserslist/caniuse-lite": ["caniuse-lite@1.0.30001724", "", {}, "sha512-WqJo7p0TbHDOythNTqYujmaJTvtYRZrjpP8TCvH6Vb9CYJerJNKamKzIWOM4BkQatWj9H2lYulpdAQNBe7QhNA=="], + + "@vitejs/plugin-legacy/browserslist/electron-to-chromium": ["electron-to-chromium@1.5.171", "", {}, "sha512-scWpzXEJEMrGJa4Y6m/tVotb0WuvNmasv3wWVzUAeCgKU0ToFOhUW6Z+xWnRQANMYGxN4ngJXIThgBJOqzVPCQ=="], "browserify-sign/readable-stream/safe-buffer": ["safe-buffer@5.1.2", "", {}, "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g=="], "browserify-sign/readable-stream/string_decoder": ["string_decoder@1.1.1", "", { "dependencies": { "safe-buffer": "~5.1.0" } }, "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg=="], + "core-js-compat/browserslist/caniuse-lite": ["caniuse-lite@1.0.30001724", "", {}, "sha512-WqJo7p0TbHDOythNTqYujmaJTvtYRZrjpP8TCvH6Vb9CYJerJNKamKzIWOM4BkQatWj9H2lYulpdAQNBe7QhNA=="], + + "core-js-compat/browserslist/electron-to-chromium": ["electron-to-chromium@1.5.171", "", {}, "sha512-scWpzXEJEMrGJa4Y6m/tVotb0WuvNmasv3wWVzUAeCgKU0ToFOhUW6Z+xWnRQANMYGxN4ngJXIThgBJOqzVPCQ=="], + "eslint/chalk/supports-color": ["supports-color@7.2.0", "", { "dependencies": { "has-flag": "^4.0.0" } }, "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw=="], - "eslint/minimatch/brace-expansion": ["brace-expansion@1.1.11", "", { "dependencies": { "balanced-match": "^1.0.0", "concat-map": "0.0.1" } }, "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA=="], + "eslint/minimatch/brace-expansion": ["brace-expansion@1.1.12", "", { "dependencies": { "balanced-match": "^1.0.0", "concat-map": "0.0.1" } }, "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg=="], "file-type/get-stream/is-stream": ["is-stream@4.0.1", "", {}, "sha512-Dnz92NInDqYckGEUJv689RbRiTSEHCQ7wOVeALbkOz999YpqT46yMRIGtSNl2iCL1waAZSx40+h59NV/EwzV/A=="], - "stylelint/file-entry-cache/flat-cache": ["flat-cache@6.1.8", "", { "dependencies": { "cacheable": "^1.8.9", "flatted": "^3.3.3", "hookified": "^1.8.1" } }, "sha512-R6MaD3nrJAtO7C3QOuS79ficm2pEAy++TgEUD8ii1LVlbcgZ9DtASLkt9B+RZSFCzm7QHDMlXPsqqB6W2Pfr1Q=="], + "pbkdf2/create-hash/ripemd160": ["ripemd160@2.0.2", "", { "dependencies": { "hash-base": "^3.0.0", "inherits": "^2.0.1" } }, "sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA=="], + + "pbkdf2/ripemd160/hash-base": ["hash-base@2.0.2", "", { "dependencies": { "inherits": "^2.0.1" } }, "sha512-0TROgQ1/SxE6KmxWSvXHvRj90/Xo1JvZShofnYF+f6ZsGtR4eES7WfrQzPalmyagfKZCXpVnitiRebZulWsbiw=="], + + "stylelint/file-entry-cache/flat-cache": ["flat-cache@6.1.10", "", { "dependencies": { "cacheable": "^1.10.0", "flatted": "^3.3.3", "hookified": "^1.9.1" } }, "sha512-B6/v1f0NwjxzmeOhzfXPGWpKBVA207LS7lehaVKQnFrVktcFRfkzjZZ2gwj2i1TkEUMQht7ZMJbABUT5N+V1Nw=="], "table/ajv/json-schema-traverse": ["json-schema-traverse@1.0.0", "", {}, "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug=="], + "typescript-eslint/@typescript-eslint/utils/@typescript-eslint/scope-manager": ["@typescript-eslint/scope-manager@8.35.1", "", { "dependencies": { "@typescript-eslint/types": "8.35.1", "@typescript-eslint/visitor-keys": "8.35.1" } }, "sha512-s/Bpd4i7ht2934nG+UoSPlYXd08KYz3bmjLEb7Ye1UVob0d1ENiT3lY8bsCmik4RqfSbPw9xJJHbugpPpP5JUg=="], + + "typescript-eslint/@typescript-eslint/utils/@typescript-eslint/types": ["@typescript-eslint/types@8.35.1", "", {}, "sha512-q/O04vVnKHfrrhNAscndAn1tuQhIkwqnaW+eu5waD5IPts2eX1dgJxgqcPx5BX109/qAz7IG6VrEPTOYKCNfRQ=="], + + "typescript-eslint/@typescript-eslint/utils/@typescript-eslint/typescript-estree": ["@typescript-eslint/typescript-estree@8.35.1", "", { "dependencies": { "@typescript-eslint/project-service": "8.35.1", "@typescript-eslint/tsconfig-utils": "8.35.1", "@typescript-eslint/types": "8.35.1", "@typescript-eslint/visitor-keys": "8.35.1", "debug": "^4.3.4", "fast-glob": "^3.3.2", "is-glob": "^4.0.3", "minimatch": "^9.0.4", "semver": "^7.6.0", "ts-api-utils": "^2.1.0" }, "peerDependencies": { "typescript": ">=4.8.4 <5.9.0" } }, "sha512-Vvpuvj4tBxIka7cPs6Y1uvM7gJgdF5Uu9F+mBJBPY4MhvjrjWGK4H0lVgLJd/8PWZ23FTqsaJaLEkBCFUk8Y9g=="], + "@eslint/config-array/minimatch/brace-expansion/balanced-match": ["balanced-match@1.0.2", "", {}, "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw=="], "@eslint/eslintrc/minimatch/brace-expansion/balanced-match": ["balanced-match@1.0.2", "", {}, "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw=="], + "@stylistic/stylelint-plugin/stylelint/file-entry-cache/flat-cache": ["flat-cache@6.1.10", "", { "dependencies": { "cacheable": "^1.10.0", "flatted": "^3.3.3", "hookified": "^1.9.1" } }, "sha512-B6/v1f0NwjxzmeOhzfXPGWpKBVA207LS7lehaVKQnFrVktcFRfkzjZZ2gwj2i1TkEUMQht7ZMJbABUT5N+V1Nw=="], + + "@typescript-eslint/eslint-plugin/@typescript-eslint/utils/@typescript-eslint/typescript-estree/@typescript-eslint/project-service": ["@typescript-eslint/project-service@8.35.1", "", { "dependencies": { "@typescript-eslint/tsconfig-utils": "^8.35.1", "@typescript-eslint/types": "^8.35.1", "debug": "^4.3.4" }, "peerDependencies": { "typescript": ">=4.8.4 <5.9.0" } }, "sha512-VYxn/5LOpVxADAuP3NrnxxHYfzVtQzLKeldIhDhzC8UHaiQvYlXvKuVho1qLduFbJjjy5U5bkGwa3rUGUb1Q6Q=="], + + "@typescript-eslint/eslint-plugin/@typescript-eslint/utils/@typescript-eslint/typescript-estree/@typescript-eslint/tsconfig-utils": ["@typescript-eslint/tsconfig-utils@8.35.1", "", { "peerDependencies": { "typescript": ">=4.8.4 <5.9.0" } }, "sha512-K5/U9VmT9dTHoNowWZpz+/TObS3xqC5h0xAIjXPw+MNcKV9qg6eSatEnmeAwkjHijhACH0/N7bkhKvbt1+DXWQ=="], + "eslint/minimatch/brace-expansion/balanced-match": ["balanced-match@1.0.2", "", {}, "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw=="], + + "typescript-eslint/@typescript-eslint/utils/@typescript-eslint/typescript-estree/@typescript-eslint/project-service": ["@typescript-eslint/project-service@8.35.1", "", { "dependencies": { "@typescript-eslint/tsconfig-utils": "^8.35.1", "@typescript-eslint/types": "^8.35.1", "debug": "^4.3.4" }, "peerDependencies": { "typescript": ">=4.8.4 <5.9.0" } }, "sha512-VYxn/5LOpVxADAuP3NrnxxHYfzVtQzLKeldIhDhzC8UHaiQvYlXvKuVho1qLduFbJjjy5U5bkGwa3rUGUb1Q6Q=="], + + "typescript-eslint/@typescript-eslint/utils/@typescript-eslint/typescript-estree/@typescript-eslint/tsconfig-utils": ["@typescript-eslint/tsconfig-utils@8.35.1", "", { "peerDependencies": { "typescript": ">=4.8.4 <5.9.0" } }, "sha512-K5/U9VmT9dTHoNowWZpz+/TObS3xqC5h0xAIjXPw+MNcKV9qg6eSatEnmeAwkjHijhACH0/N7bkhKvbt1+DXWQ=="], } } diff --git a/captures/about/desktop-chromium-1366-1366-768 2025-06-18.jxl b/captures/about/desktop-chromium-1366-1366-768 2025-06-18.jxl new file mode 100644 index 00000000..a1fa0867 Binary files /dev/null and b/captures/about/desktop-chromium-1366-1366-768 2025-06-18.jxl differ diff --git a/captures/about/desktop-chromium-1536-1536-864 2025-06-18.jxl b/captures/about/desktop-chromium-1536-1536-864 2025-06-18.jxl new file mode 100644 index 00000000..c193771a Binary files /dev/null and b/captures/about/desktop-chromium-1536-1536-864 2025-06-18.jxl differ diff --git a/captures/about/desktop-chromium-1920-1920-1080 2025-06-18.jxl b/captures/about/desktop-chromium-1920-1920-1080 2025-06-18.jxl new file mode 100644 index 00000000..15e6c663 Binary files /dev/null and b/captures/about/desktop-chromium-1920-1920-1080 2025-06-18.jxl differ diff --git a/captures/about/desktop-firefox-1366-1366-768 2025-06-18.jxl b/captures/about/desktop-firefox-1366-1366-768 2025-06-18.jxl new file mode 100644 index 00000000..12fbfe7c Binary files /dev/null and b/captures/about/desktop-firefox-1366-1366-768 2025-06-18.jxl differ diff --git a/captures/about/desktop-firefox-1536-1536-864 2025-06-18.jxl b/captures/about/desktop-firefox-1536-1536-864 2025-06-18.jxl new file mode 100644 index 00000000..3a872bba Binary files /dev/null and b/captures/about/desktop-firefox-1536-1536-864 2025-06-18.jxl differ diff --git a/captures/about/desktop-firefox-1920-1920-1080 2025-06-18.jxl b/captures/about/desktop-firefox-1920-1920-1080 2025-06-18.jxl new file mode 100644 index 00000000..59582615 Binary files /dev/null and b/captures/about/desktop-firefox-1920-1920-1080 2025-06-18.jxl differ diff --git a/captures/about/mobile-chromium-landscape-863-360 2025-06-18.jxl b/captures/about/mobile-chromium-landscape-863-360 2025-06-18.jxl new file mode 100644 index 00000000..db40e6f0 Binary files /dev/null and b/captures/about/mobile-chromium-landscape-863-360 2025-06-18.jxl differ diff --git a/captures/about/mobile-chromium-portrait-412-839 2025-06-18.jxl b/captures/about/mobile-chromium-portrait-412-839 2025-06-18.jxl new file mode 100644 index 00000000..07a1981a Binary files /dev/null and b/captures/about/mobile-chromium-portrait-412-839 2025-06-18.jxl differ diff --git a/captures/about/tablet-chromium-landscape-1024-640 2025-06-18.jxl b/captures/about/tablet-chromium-landscape-1024-640 2025-06-18.jxl new file mode 100644 index 00000000..159b0be2 Binary files /dev/null and b/captures/about/tablet-chromium-landscape-1024-640 2025-06-18.jxl differ diff --git a/captures/about/tablet-chromium-portrait-640-1024 2025-06-18.jxl b/captures/about/tablet-chromium-portrait-640-1024 2025-06-18.jxl new file mode 100644 index 00000000..a7945b45 Binary files /dev/null and b/captures/about/tablet-chromium-portrait-640-1024 2025-06-18.jxl differ diff --git a/captures/category/desktop-chromium-1366-1366-768 2025-06-18.jxl b/captures/category/desktop-chromium-1366-1366-768 2025-06-18.jxl new file mode 100644 index 00000000..f4063da6 Binary files /dev/null and b/captures/category/desktop-chromium-1366-1366-768 2025-06-18.jxl differ diff --git a/captures/category/desktop-chromium-1536-1536-864 2025-06-18.jxl b/captures/category/desktop-chromium-1536-1536-864 2025-06-18.jxl new file mode 100644 index 00000000..7d4d01ad Binary files /dev/null and b/captures/category/desktop-chromium-1536-1536-864 2025-06-18.jxl differ diff --git a/captures/category/desktop-chromium-1920-1920-1080 2025-06-18.jxl b/captures/category/desktop-chromium-1920-1920-1080 2025-06-18.jxl new file mode 100644 index 00000000..98b7719d Binary files /dev/null and b/captures/category/desktop-chromium-1920-1920-1080 2025-06-18.jxl differ diff --git a/captures/category/desktop-firefox-1366-1366-768 2025-06-18.jxl b/captures/category/desktop-firefox-1366-1366-768 2025-06-18.jxl new file mode 100644 index 00000000..80571f53 Binary files /dev/null and b/captures/category/desktop-firefox-1366-1366-768 2025-06-18.jxl differ diff --git a/captures/category/desktop-firefox-1536-1536-864 2025-06-18.jxl b/captures/category/desktop-firefox-1536-1536-864 2025-06-18.jxl new file mode 100644 index 00000000..da3dcdb6 Binary files /dev/null and b/captures/category/desktop-firefox-1536-1536-864 2025-06-18.jxl differ diff --git a/captures/category/desktop-firefox-1920-1920-1080 2025-06-18.jxl b/captures/category/desktop-firefox-1920-1920-1080 2025-06-18.jxl new file mode 100644 index 00000000..e6caabe1 Binary files /dev/null and b/captures/category/desktop-firefox-1920-1920-1080 2025-06-18.jxl differ diff --git a/captures/category/mobile-chromium-landscape-863-360 2025-06-18.jxl b/captures/category/mobile-chromium-landscape-863-360 2025-06-18.jxl new file mode 100644 index 00000000..d974c2d8 Binary files /dev/null and b/captures/category/mobile-chromium-landscape-863-360 2025-06-18.jxl differ diff --git a/captures/category/mobile-chromium-portrait-412-839 2025-06-18.jxl b/captures/category/mobile-chromium-portrait-412-839 2025-06-18.jxl new file mode 100644 index 00000000..789fce80 Binary files /dev/null and b/captures/category/mobile-chromium-portrait-412-839 2025-06-18.jxl differ diff --git a/captures/category/tablet-chromium-landscape-1024-640 2025-06-18.jxl b/captures/category/tablet-chromium-landscape-1024-640 2025-06-18.jxl new file mode 100644 index 00000000..05194c1a Binary files /dev/null and b/captures/category/tablet-chromium-landscape-1024-640 2025-06-18.jxl differ diff --git a/captures/category/tablet-chromium-portrait-640-1024 2025-06-18.jxl b/captures/category/tablet-chromium-portrait-640-1024 2025-06-18.jxl new file mode 100644 index 00000000..6114d8ac Binary files /dev/null and b/captures/category/tablet-chromium-portrait-640-1024 2025-06-18.jxl differ diff --git a/captures/home/desktop-chromium-1366-1366-768 2025-06-18.jxl b/captures/home/desktop-chromium-1366-1366-768 2025-06-18.jxl new file mode 100644 index 00000000..3a31f7cc Binary files /dev/null and b/captures/home/desktop-chromium-1366-1366-768 2025-06-18.jxl differ diff --git a/captures/home/desktop-chromium-1536-1536-864 2025-06-18.jxl b/captures/home/desktop-chromium-1536-1536-864 2025-06-18.jxl new file mode 100644 index 00000000..d58f1d6e Binary files /dev/null and b/captures/home/desktop-chromium-1536-1536-864 2025-06-18.jxl differ diff --git a/captures/home/desktop-chromium-1920-1920-1080 2025-06-18.jxl b/captures/home/desktop-chromium-1920-1920-1080 2025-06-18.jxl new file mode 100644 index 00000000..fc1affb0 Binary files /dev/null and b/captures/home/desktop-chromium-1920-1920-1080 2025-06-18.jxl differ diff --git a/captures/home/desktop-firefox-1366-1366-768 2025-06-18.jxl b/captures/home/desktop-firefox-1366-1366-768 2025-06-18.jxl new file mode 100644 index 00000000..67931939 Binary files /dev/null and b/captures/home/desktop-firefox-1366-1366-768 2025-06-18.jxl differ diff --git a/captures/home/desktop-firefox-1536-1536-864 2025-06-18.jxl b/captures/home/desktop-firefox-1536-1536-864 2025-06-18.jxl new file mode 100644 index 00000000..49a01f33 Binary files /dev/null and b/captures/home/desktop-firefox-1536-1536-864 2025-06-18.jxl differ diff --git a/captures/home/desktop-firefox-1920-1920-1080 2025-06-18.jxl b/captures/home/desktop-firefox-1920-1920-1080 2025-06-18.jxl new file mode 100644 index 00000000..9e22dd68 Binary files /dev/null and b/captures/home/desktop-firefox-1920-1920-1080 2025-06-18.jxl differ diff --git a/captures/home/mobile-chromium-landscape-863-360 2025-06-18.jxl b/captures/home/mobile-chromium-landscape-863-360 2025-06-18.jxl new file mode 100644 index 00000000..e975cd0c Binary files /dev/null and b/captures/home/mobile-chromium-landscape-863-360 2025-06-18.jxl differ diff --git a/captures/home/mobile-chromium-portrait-412-839 2025-06-18.jxl b/captures/home/mobile-chromium-portrait-412-839 2025-06-18.jxl new file mode 100644 index 00000000..f4a146b4 Binary files /dev/null and b/captures/home/mobile-chromium-portrait-412-839 2025-06-18.jxl differ diff --git a/captures/home/tablet-chromium-landscape-1024-640 2025-06-18.jxl b/captures/home/tablet-chromium-landscape-1024-640 2025-06-18.jxl new file mode 100644 index 00000000..162a4e6c Binary files /dev/null and b/captures/home/tablet-chromium-landscape-1024-640 2025-06-18.jxl differ diff --git a/captures/home/tablet-chromium-portrait-640-1024 2025-06-18.jxl b/captures/home/tablet-chromium-portrait-640-1024 2025-06-18.jxl new file mode 100644 index 00000000..b3786cd7 Binary files /dev/null and b/captures/home/tablet-chromium-portrait-640-1024 2025-06-18.jxl differ diff --git a/captures/product/desktop-chromium-1366-1366-768 2025-06-18.jxl b/captures/product/desktop-chromium-1366-1366-768 2025-06-18.jxl new file mode 100644 index 00000000..572ac78e Binary files /dev/null and b/captures/product/desktop-chromium-1366-1366-768 2025-06-18.jxl differ diff --git a/captures/product/desktop-chromium-1536-1536-864 2025-06-18.jxl b/captures/product/desktop-chromium-1536-1536-864 2025-06-18.jxl new file mode 100644 index 00000000..a154f6a6 Binary files /dev/null and b/captures/product/desktop-chromium-1536-1536-864 2025-06-18.jxl differ diff --git a/captures/product/desktop-chromium-1920-1920-1080 2025-06-18.jxl b/captures/product/desktop-chromium-1920-1920-1080 2025-06-18.jxl new file mode 100644 index 00000000..c70b4e98 Binary files /dev/null and b/captures/product/desktop-chromium-1920-1920-1080 2025-06-18.jxl differ diff --git a/captures/product/desktop-firefox-1366-1366-768 2025-06-18.jxl b/captures/product/desktop-firefox-1366-1366-768 2025-06-18.jxl new file mode 100644 index 00000000..0914dda3 Binary files /dev/null and b/captures/product/desktop-firefox-1366-1366-768 2025-06-18.jxl differ diff --git a/captures/product/desktop-firefox-1536-1536-864 2025-06-18.jxl b/captures/product/desktop-firefox-1536-1536-864 2025-06-18.jxl new file mode 100644 index 00000000..b6c06433 Binary files /dev/null and b/captures/product/desktop-firefox-1536-1536-864 2025-06-18.jxl differ diff --git a/captures/product/desktop-firefox-1920-1920-1080 2025-06-18.jxl b/captures/product/desktop-firefox-1920-1920-1080 2025-06-18.jxl new file mode 100644 index 00000000..ac23c4f5 Binary files /dev/null and b/captures/product/desktop-firefox-1920-1920-1080 2025-06-18.jxl differ diff --git a/captures/product/mobile-chromium-landscape-863-360 2025-06-18.jxl b/captures/product/mobile-chromium-landscape-863-360 2025-06-18.jxl new file mode 100644 index 00000000..769570f9 Binary files /dev/null and b/captures/product/mobile-chromium-landscape-863-360 2025-06-18.jxl differ diff --git a/captures/product/mobile-chromium-portrait-412-839 2025-06-18.jxl b/captures/product/mobile-chromium-portrait-412-839 2025-06-18.jxl new file mode 100644 index 00000000..29164a83 Binary files /dev/null and b/captures/product/mobile-chromium-portrait-412-839 2025-06-18.jxl differ diff --git a/captures/product/tablet-chromium-landscape-1024-640 2025-06-18.jxl b/captures/product/tablet-chromium-landscape-1024-640 2025-06-18.jxl new file mode 100644 index 00000000..df584200 Binary files /dev/null and b/captures/product/tablet-chromium-landscape-1024-640 2025-06-18.jxl differ diff --git a/captures/product/tablet-chromium-portrait-640-1024 2025-06-18.jxl b/captures/product/tablet-chromium-portrait-640-1024 2025-06-18.jxl new file mode 100644 index 00000000..b451ac3d Binary files /dev/null and b/captures/product/tablet-chromium-portrait-640-1024 2025-06-18.jxl differ diff --git a/captures/shop/desktop-chromium-1366-1366-768 2025-06-18.jxl b/captures/shop/desktop-chromium-1366-1366-768 2025-06-18.jxl new file mode 100644 index 00000000..e1732750 Binary files /dev/null and b/captures/shop/desktop-chromium-1366-1366-768 2025-06-18.jxl differ diff --git a/captures/shop/desktop-chromium-1536-1536-864 2025-06-18.jxl b/captures/shop/desktop-chromium-1536-1536-864 2025-06-18.jxl new file mode 100644 index 00000000..f1fd5314 Binary files /dev/null and b/captures/shop/desktop-chromium-1536-1536-864 2025-06-18.jxl differ diff --git a/captures/shop/desktop-chromium-1920-1920-1080 2025-06-18.jxl b/captures/shop/desktop-chromium-1920-1920-1080 2025-06-18.jxl new file mode 100644 index 00000000..9a3205ab Binary files /dev/null and b/captures/shop/desktop-chromium-1920-1920-1080 2025-06-18.jxl differ diff --git a/captures/shop/desktop-firefox-1366-1366-768 2025-06-18.jxl b/captures/shop/desktop-firefox-1366-1366-768 2025-06-18.jxl new file mode 100644 index 00000000..ab206627 Binary files /dev/null and b/captures/shop/desktop-firefox-1366-1366-768 2025-06-18.jxl differ diff --git a/captures/shop/desktop-firefox-1536-1536-864 2025-06-18.jxl b/captures/shop/desktop-firefox-1536-1536-864 2025-06-18.jxl new file mode 100644 index 00000000..2fa37af1 Binary files /dev/null and b/captures/shop/desktop-firefox-1536-1536-864 2025-06-18.jxl differ diff --git a/captures/shop/desktop-firefox-1920-1920-1080 2025-06-18.jxl b/captures/shop/desktop-firefox-1920-1920-1080 2025-06-18.jxl new file mode 100644 index 00000000..21d543ae Binary files /dev/null and b/captures/shop/desktop-firefox-1920-1920-1080 2025-06-18.jxl differ diff --git a/captures/shop/mobile-chromium-landscape-863-360 2025-06-18.jxl b/captures/shop/mobile-chromium-landscape-863-360 2025-06-18.jxl new file mode 100644 index 00000000..b00b45d3 Binary files /dev/null and b/captures/shop/mobile-chromium-landscape-863-360 2025-06-18.jxl differ diff --git a/captures/shop/mobile-chromium-portrait-412-839 2025-06-18.jxl b/captures/shop/mobile-chromium-portrait-412-839 2025-06-18.jxl new file mode 100644 index 00000000..e7ca9f21 Binary files /dev/null and b/captures/shop/mobile-chromium-portrait-412-839 2025-06-18.jxl differ diff --git a/captures/shop/tablet-chromium-landscape-1024-640 2025-06-18.jxl b/captures/shop/tablet-chromium-landscape-1024-640 2025-06-18.jxl new file mode 100644 index 00000000..340bcef7 Binary files /dev/null and b/captures/shop/tablet-chromium-landscape-1024-640 2025-06-18.jxl differ diff --git a/captures/shop/tablet-chromium-portrait-640-1024 2025-06-18.jxl b/captures/shop/tablet-chromium-portrait-640-1024 2025-06-18.jxl new file mode 100644 index 00000000..02f36ee4 Binary files /dev/null and b/captures/shop/tablet-chromium-portrait-640-1024 2025-06-18.jxl differ diff --git a/composer.json b/composer.json index 0fe639fc..55e5d2b5 100755 --- a/composer.json +++ b/composer.json @@ -20,8 +20,8 @@ "php": ">=8.2", "composer/installers": "^2.3", "crell/fp": "^1.0", - "htmlburger/carbon-fields": "^3.6.5", - "illuminate/support": "^11.34.2", + "htmlburger/carbon-fields": "^3.6", + "illuminate/support": "^12.18", "laravel/helpers": "^1.7.1", "log1x/wp-smtp": "^1.0.2", "lstrojny/functional-php": "^1.17", @@ -31,9 +31,8 @@ "ramsey/uuid": "^4.7.6", "roots/bedrock-autoloader": "^1.0.4", "roots/bedrock-disallow-indexing": "^2.0", - "roots/wordpress": "^6.7.1", + "roots/wordpress": "^6.8.1", "roots/wp-config": "^1.0", - "roots/wp-password-bcrypt": "^1.2", "stripe/stripe-php": "^16.3", "symfony/uid": "^7.2.0", "timber/timber": "^2.3", diff --git a/composer.lock b/composer.lock old mode 100755 new mode 100644 index 2fb99db0..814a3644 --- a/composer.lock +++ b/composer.lock @@ -4,20 +4,20 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "c785707c9df9c91d85b0ebd9d836de05", + "content-hash": "645f4deb85c947c9765848f2f170af6b", "packages": [ { "name": "brick/math", - "version": "0.12.3", + "version": "0.13.1", "source": { "type": "git", "url": "https://github.com/brick/math.git", - "reference": "866551da34e9a618e64a819ee1e01c20d8a588ba" + "reference": "fc7ed316430118cc7836bf45faff18d5dfc8de04" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/brick/math/zipball/866551da34e9a618e64a819ee1e01c20d8a588ba", - "reference": "866551da34e9a618e64a819ee1e01c20d8a588ba", + "url": "https://api.github.com/repos/brick/math/zipball/fc7ed316430118cc7836bf45faff18d5dfc8de04", + "reference": "fc7ed316430118cc7836bf45faff18d5dfc8de04", "shasum": "" }, "require": { @@ -56,7 +56,7 @@ ], "support": { "issues": "https://github.com/brick/math/issues", - "source": "https://github.com/brick/math/tree/0.12.3" + "source": "https://github.com/brick/math/tree/0.13.1" }, "funding": [ { @@ -64,7 +64,7 @@ "type": "github" } ], - "time": "2025-02-28T13:11:00+00:00" + "time": "2025-03-29T13:50:30+00:00" }, { "name": "carbonphp/carbon-doctrine-types", @@ -506,16 +506,16 @@ }, { "name": "htmlburger/carbon-fields", - "version": "v3.6.6", + "version": "v3.6.9", "source": { "type": "git", "url": "https://github.com/htmlburger/carbon-fields.git", - "reference": "9cb536e775f3c0688e18fca39445326521197220" + "reference": "f82e80e3e3469d6e86cc17a8950b918ad448a059" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/htmlburger/carbon-fields/zipball/9cb536e775f3c0688e18fca39445326521197220", - "reference": "9cb536e775f3c0688e18fca39445326521197220", + "url": "https://api.github.com/repos/htmlburger/carbon-fields/zipball/f82e80e3e3469d6e86cc17a8950b918ad448a059", + "reference": "f82e80e3e3469d6e86cc17a8950b918ad448a059", "shasum": "" }, "require": { @@ -642,35 +642,36 @@ "issues": "https://github.com/htmlburger/carbon-fields/issues", "source": "https://github.com/htmlburger/carbon-fields" }, - "time": "2025-04-17T11:56:23+00:00" + "time": "2025-06-11T11:23:23+00:00" }, { "name": "illuminate/collections", - "version": "v11.44.3", + "version": "v12.19.3", "source": { "type": "git", "url": "https://github.com/illuminate/collections.git", - "reference": "856b1da953e46281ba61d7c82d337072d3ee1825" + "reference": "21a206b2b2297e838c181b482b5f8bbe7ac48f61" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/illuminate/collections/zipball/856b1da953e46281ba61d7c82d337072d3ee1825", - "reference": "856b1da953e46281ba61d7c82d337072d3ee1825", + "url": "https://api.github.com/repos/illuminate/collections/zipball/21a206b2b2297e838c181b482b5f8bbe7ac48f61", + "reference": "21a206b2b2297e838c181b482b5f8bbe7ac48f61", "shasum": "" }, "require": { - "illuminate/conditionable": "^11.0", - "illuminate/contracts": "^11.0", - "illuminate/macroable": "^11.0", + "illuminate/conditionable": "^12.0", + "illuminate/contracts": "^12.0", + "illuminate/macroable": "^12.0", "php": "^8.2" }, "suggest": { - "symfony/var-dumper": "Required to use the dump method (^7.0)." + "illuminate/http": "Required to convert collections to API resources (^12.0).", + "symfony/var-dumper": "Required to use the dump method (^7.2)." }, "type": "library", "extra": { "branch-alias": { - "dev-master": "11.x-dev" + "dev-master": "12.x-dev" } }, "autoload": { @@ -698,29 +699,29 @@ "issues": "https://github.com/laravel/framework/issues", "source": "https://github.com/laravel/framework" }, - "time": "2025-03-24T11:54:20+00:00" + "time": "2025-06-12T14:21:37+00:00" }, { "name": "illuminate/conditionable", - "version": "v11.44.3", + "version": "v12.19.3", "source": { "type": "git", "url": "https://github.com/illuminate/conditionable.git", - "reference": "319b717e0587bd7c8a3b44464f0e27867b4bcda9" + "reference": "ec677967c1f2faf90b8428919124d2184a4c9b49" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/illuminate/conditionable/zipball/319b717e0587bd7c8a3b44464f0e27867b4bcda9", - "reference": "319b717e0587bd7c8a3b44464f0e27867b4bcda9", + "url": "https://api.github.com/repos/illuminate/conditionable/zipball/ec677967c1f2faf90b8428919124d2184a4c9b49", + "reference": "ec677967c1f2faf90b8428919124d2184a4c9b49", "shasum": "" }, "require": { - "php": "^8.0.2" + "php": "^8.2" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "11.x-dev" + "dev-master": "12.x-dev" } }, "autoload": { @@ -744,20 +745,20 @@ "issues": "https://github.com/laravel/framework/issues", "source": "https://github.com/laravel/framework" }, - "time": "2025-03-24T11:54:20+00:00" + "time": "2025-05-13T15:08:45+00:00" }, { "name": "illuminate/contracts", - "version": "v11.44.3", + "version": "v12.19.3", "source": { "type": "git", "url": "https://github.com/illuminate/contracts.git", - "reference": "4b2a67d1663f50085bc91e6371492697a5d2d4e8" + "reference": "ad1d16d827927455d3b7e39fabac66b1afb82582" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/illuminate/contracts/zipball/4b2a67d1663f50085bc91e6371492697a5d2d4e8", - "reference": "4b2a67d1663f50085bc91e6371492697a5d2d4e8", + "url": "https://api.github.com/repos/illuminate/contracts/zipball/ad1d16d827927455d3b7e39fabac66b1afb82582", + "reference": "ad1d16d827927455d3b7e39fabac66b1afb82582", "shasum": "" }, "require": { @@ -768,7 +769,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "11.x-dev" + "dev-master": "12.x-dev" } }, "autoload": { @@ -792,20 +793,20 @@ "issues": "https://github.com/laravel/framework/issues", "source": "https://github.com/laravel/framework" }, - "time": "2025-03-24T11:54:20+00:00" + "time": "2025-06-12T15:07:31+00:00" }, { "name": "illuminate/macroable", - "version": "v11.44.3", + "version": "v12.19.3", "source": { "type": "git", "url": "https://github.com/illuminate/macroable.git", - "reference": "e1cb9e51b9ed5d3c9bc1ab431d0a52fe42a990ed" + "reference": "e862e5648ee34004fa56046b746f490dfa86c613" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/illuminate/macroable/zipball/e1cb9e51b9ed5d3c9bc1ab431d0a52fe42a990ed", - "reference": "e1cb9e51b9ed5d3c9bc1ab431d0a52fe42a990ed", + "url": "https://api.github.com/repos/illuminate/macroable/zipball/e862e5648ee34004fa56046b746f490dfa86c613", + "reference": "e862e5648ee34004fa56046b746f490dfa86c613", "shasum": "" }, "require": { @@ -814,7 +815,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "11.x-dev" + "dev-master": "12.x-dev" } }, "autoload": { @@ -838,20 +839,20 @@ "issues": "https://github.com/laravel/framework/issues", "source": "https://github.com/laravel/framework" }, - "time": "2024-06-28T20:10:30+00:00" + "time": "2024-07-23T16:31:01+00:00" }, { "name": "illuminate/support", - "version": "v11.44.3", + "version": "v12.19.3", "source": { "type": "git", "url": "https://github.com/illuminate/support.git", - "reference": "b462971289facee2c6002b8c4dc2403dd258bcd3" + "reference": "4e5d098d1cdbf5cabff09c1903a141bd9747ae75" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/illuminate/support/zipball/b462971289facee2c6002b8c4dc2403dd258bcd3", - "reference": "b462971289facee2c6002b8c4dc2403dd258bcd3", + "url": "https://api.github.com/repos/illuminate/support/zipball/4e5d098d1cdbf5cabff09c1903a141bd9747ae75", + "reference": "4e5d098d1cdbf5cabff09c1903a141bd9747ae75", "shasum": "" }, "require": { @@ -859,11 +860,11 @@ "ext-ctype": "*", "ext-filter": "*", "ext-mbstring": "*", - "illuminate/collections": "^11.0", - "illuminate/conditionable": "^11.0", - "illuminate/contracts": "^11.0", - "illuminate/macroable": "^11.0", - "nesbot/carbon": "^2.72.6|^3.8.4", + "illuminate/collections": "^12.0", + "illuminate/conditionable": "^12.0", + "illuminate/contracts": "^12.0", + "illuminate/macroable": "^12.0", + "nesbot/carbon": "^3.8.4", "php": "^8.2", "voku/portable-ascii": "^2.0.2" }, @@ -874,20 +875,20 @@ "spatie/once": "*" }, "suggest": { - "illuminate/filesystem": "Required to use the Composer class (^11.0).", + "illuminate/filesystem": "Required to use the Composer class (^12.0).", "laravel/serializable-closure": "Required to use the once function (^1.3|^2.0).", - "league/commonmark": "Required to use Str::markdown() and Stringable::markdown() (^2.6).", + "league/commonmark": "Required to use Str::markdown() and Stringable::markdown() (^2.7).", "league/uri": "Required to use the Uri class (^7.5.1).", "ramsey/uuid": "Required to use Str::uuid() (^4.7).", - "symfony/process": "Required to use the Composer class (^7.0).", - "symfony/uid": "Required to use Str::ulid() (^7.0).", - "symfony/var-dumper": "Required to use the dd function (^7.0).", + "symfony/process": "Required to use the Composer class (^7.2).", + "symfony/uid": "Required to use Str::ulid() (^7.2).", + "symfony/var-dumper": "Required to use the dd function (^7.2).", "vlucas/phpdotenv": "Required to use the Env class and env helper (^5.6.1)." }, "type": "library", "extra": { "branch-alias": { - "dev-master": "11.x-dev" + "dev-master": "12.x-dev" } }, "autoload": { @@ -915,7 +916,7 @@ "issues": "https://github.com/laravel/framework/issues", "source": "https://github.com/laravel/framework" }, - "time": "2025-03-28T16:08:47+00:00" + "time": "2025-06-12T15:07:56+00:00" }, { "name": "laravel/helpers", @@ -1223,16 +1224,16 @@ }, { "name": "nesbot/carbon", - "version": "3.9.0", + "version": "3.10.1", "source": { "type": "git", "url": "https://github.com/CarbonPHP/carbon.git", - "reference": "6d16a8a015166fe54e22c042e0805c5363aef50d" + "reference": "1fd1935b2d90aef2f093c5e35f7ae1257c448d00" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/CarbonPHP/carbon/zipball/6d16a8a015166fe54e22c042e0805c5363aef50d", - "reference": "6d16a8a015166fe54e22c042e0805c5363aef50d", + "url": "https://api.github.com/repos/CarbonPHP/carbon/zipball/1fd1935b2d90aef2f093c5e35f7ae1257c448d00", + "reference": "1fd1935b2d90aef2f093c5e35f7ae1257c448d00", "shasum": "" }, "require": { @@ -1240,9 +1241,9 @@ "ext-json": "*", "php": "^8.1", "psr/clock": "^1.0", - "symfony/clock": "^6.3 || ^7.0", + "symfony/clock": "^6.3.12 || ^7.0", "symfony/polyfill-mbstring": "^1.0", - "symfony/translation": "^4.4.18 || ^5.2.1|| ^6.0 || ^7.0" + "symfony/translation": "^4.4.18 || ^5.2.1 || ^6.0 || ^7.0" }, "provide": { "psr/clock-implementation": "1.0" @@ -1250,14 +1251,13 @@ "require-dev": { "doctrine/dbal": "^3.6.3 || ^4.0", "doctrine/orm": "^2.15.2 || ^3.0", - "friendsofphp/php-cs-fixer": "^3.57.2", + "friendsofphp/php-cs-fixer": "^3.75.0", "kylekatarnls/multi-tester": "^2.5.3", - "ondrejmirtes/better-reflection": "^6.25.0.4", "phpmd/phpmd": "^2.15.0", - "phpstan/extension-installer": "^1.3.1", - "phpstan/phpstan": "^1.11.2", - "phpunit/phpunit": "^10.5.20", - "squizlabs/php_codesniffer": "^3.9.0" + "phpstan/extension-installer": "^1.4.3", + "phpstan/phpstan": "^2.1.17", + "phpunit/phpunit": "^10.5.46", + "squizlabs/php_codesniffer": "^3.13.0" }, "bin": [ "bin/carbon" @@ -1325,7 +1325,7 @@ "type": "tidelift" } ], - "time": "2025-03-27T12:57:33+00:00" + "time": "2025-06-21T15:19:35+00:00" }, { "name": "oscarotero/env", @@ -1687,21 +1687,20 @@ }, { "name": "ramsey/uuid", - "version": "4.7.6", + "version": "4.9.0", "source": { "type": "git", "url": "https://github.com/ramsey/uuid.git", - "reference": "91039bc1faa45ba123c4328958e620d382ec7088" + "reference": "4e0e23cc785f0724a0e838279a9eb03f28b092a0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/ramsey/uuid/zipball/91039bc1faa45ba123c4328958e620d382ec7088", - "reference": "91039bc1faa45ba123c4328958e620d382ec7088", + "url": "https://api.github.com/repos/ramsey/uuid/zipball/4e0e23cc785f0724a0e838279a9eb03f28b092a0", + "reference": "4e0e23cc785f0724a0e838279a9eb03f28b092a0", "shasum": "" }, "require": { - "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11 || ^0.12", - "ext-json": "*", + "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11 || ^0.12 || ^0.13", "php": "^8.0", "ramsey/collection": "^1.2 || ^2.0" }, @@ -1709,26 +1708,23 @@ "rhumsaa/uuid": "self.version" }, "require-dev": { - "captainhook/captainhook": "^5.10", + "captainhook/captainhook": "^5.25", "captainhook/plugin-composer": "^5.3", - "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0", - "doctrine/annotations": "^1.8", - "ergebnis/composer-normalize": "^2.15", - "mockery/mockery": "^1.3", + "dealerdirect/phpcodesniffer-composer-installer": "^1.0", + "ergebnis/composer-normalize": "^2.47", + "mockery/mockery": "^1.6", "paragonie/random-lib": "^2", - "php-mock/php-mock": "^2.2", - "php-mock/php-mock-mockery": "^1.3", - "php-parallel-lint/php-parallel-lint": "^1.1", - "phpbench/phpbench": "^1.0", - "phpstan/extension-installer": "^1.1", - "phpstan/phpstan": "^1.8", - "phpstan/phpstan-mockery": "^1.1", - "phpstan/phpstan-phpunit": "^1.1", - "phpunit/phpunit": "^8.5 || ^9", - "ramsey/composer-repl": "^1.4", - "slevomat/coding-standard": "^8.4", - "squizlabs/php_codesniffer": "^3.5", - "vimeo/psalm": "^4.9" + "php-mock/php-mock": "^2.6", + "php-mock/php-mock-mockery": "^1.5", + "php-parallel-lint/php-parallel-lint": "^1.4.0", + "phpbench/phpbench": "^1.2.14", + "phpstan/extension-installer": "^1.4", + "phpstan/phpstan": "^2.1", + "phpstan/phpstan-mockery": "^2.0", + "phpstan/phpstan-phpunit": "^2.0", + "phpunit/phpunit": "^9.6", + "slevomat/coding-standard": "^8.18", + "squizlabs/php_codesniffer": "^3.13" }, "suggest": { "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.", @@ -1763,19 +1759,9 @@ ], "support": { "issues": "https://github.com/ramsey/uuid/issues", - "source": "https://github.com/ramsey/uuid/tree/4.7.6" + "source": "https://github.com/ramsey/uuid/tree/4.9.0" }, - "funding": [ - { - "url": "https://github.com/ramsey", - "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid", - "type": "tidelift" - } - ], - "time": "2024-04-27T21:32:50+00:00" + "time": "2025-06-25T14:20:11+00:00" }, { "name": "roots/bedrock-autoloader", @@ -1913,7 +1899,7 @@ }, { "name": "roots/wordpress", - "version": "6.8", + "version": "6.8.1", "source": { "type": "git", "url": "https://github.com/roots/wordpress.git", @@ -1944,7 +1930,7 @@ ], "support": { "issues": "https://github.com/roots/wordpress/issues", - "source": "https://github.com/roots/wordpress/tree/6.8" + "source": "https://github.com/roots/wordpress/tree/6.8.1" }, "funding": [ { @@ -2027,23 +2013,23 @@ }, { "name": "roots/wordpress-no-content", - "version": "6.8", + "version": "6.8.1", "source": { "type": "git", "url": "https://github.com/WordPress/WordPress.git", - "reference": "6.8" + "reference": "6.8.1" }, "dist": { "type": "zip", - "url": "https://downloads.wordpress.org/release/wordpress-6.8-no-content.zip", - "reference": "6.8", - "shasum": "f6bb25f590bb6dc45d21e26de97b589c5f0703bd" + "url": "https://downloads.wordpress.org/release/wordpress-6.8.1-no-content.zip", + "reference": "6.8.1", + "shasum": "33a47970c8e42d9d8719cfae34e02a7a75920959" }, "require": { "php": ">= 7.2.24" }, "provide": { - "wordpress/core-implementation": "6.8" + "wordpress/core-implementation": "6.8.1" }, "suggest": { "ext-curl": "Performs remote request operations.", @@ -2094,7 +2080,7 @@ "type": "other" } ], - "time": "2025-04-15T15:45:35+00:00" + "time": "2025-04-30T16:53:41+00:00" }, { "name": "roots/wp-config", @@ -2142,82 +2128,6 @@ }, "time": "2018-08-10T14:18:38+00:00" }, - { - "name": "roots/wp-password-bcrypt", - "version": "1.2.0", - "source": { - "type": "git", - "url": "https://github.com/roots/wp-password-bcrypt.git", - "reference": "bd26ab98aa646d88ce98c76e365d16259c5227a2" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/roots/wp-password-bcrypt/zipball/bd26ab98aa646d88ce98c76e365d16259c5227a2", - "reference": "bd26ab98aa646d88ce98c76e365d16259c5227a2", - "shasum": "" - }, - "require": { - "php": ">=5.6.0" - }, - "require-dev": { - "brain/monkey": "^2.6", - "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0", - "mockery/mockery": "^1.4", - "phpcompatibility/php-compatibility": "^9.3", - "phpunit/phpunit": "<= 9.3", - "squizlabs/php_codesniffer": "^3.5" - }, - "type": "library", - "autoload": { - "files": [ - "wp-password-bcrypt.php" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Scott Walkinshaw", - "email": "scott.walkinshaw@gmail.com", - "homepage": "https://github.com/swalkinshaw" - }, - { - "name": "QWp6t", - "homepage": "https://github.com/qwp6t" - }, - { - "name": "Brandon Nifong", - "homepage": "https://github.com/log1x" - }, - { - "name": "Jan Pingel", - "email": "jpingel@bitpiston.com", - "homepage": "http://janpingel.com" - } - ], - "description": "WordPress plugin which replaces wp_hash_password and wp_check_password's phpass hasher with PHP 5.5's password_hash and password_verify using bcrypt.", - "homepage": "https://roots.io/plugins/wp-password-bcrypt", - "keywords": [ - "bcrypt", - "passwords", - "wordpress" - ], - "support": { - "forum": "https://discourse.roots.io/", - "issues": "https://github.com/roots/wp-password-bcrypt/issues", - "source": "https://github.com/roots/wp-password-bcrypt/tree/1.2.0" - }, - "funding": [ - { - "url": "https://github.com/roots", - "type": "github" - } - ], - "abandoned": "roots/wp-password-bcrypt", - "time": "2024-09-10T23:11:22+00:00" - }, { "name": "stripe/stripe-php", "version": "v16.6.0", @@ -2279,7 +2189,7 @@ }, { "name": "symfony/clock", - "version": "v7.2.0", + "version": "v7.3.0", "source": { "type": "git", "url": "https://github.com/symfony/clock.git", @@ -2333,7 +2243,7 @@ "time" ], "support": { - "source": "https://github.com/symfony/clock/tree/v7.2.0" + "source": "https://github.com/symfony/clock/tree/v7.3.0" }, "funding": [ { @@ -2353,16 +2263,16 @@ }, { "name": "symfony/deprecation-contracts", - "version": "v3.5.1", + "version": "v3.6.0", "source": { "type": "git", "url": "https://github.com/symfony/deprecation-contracts.git", - "reference": "74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6" + "reference": "63afe740e99a13ba87ec199bb07bbdee937a5b62" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6", - "reference": "74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6", + "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/63afe740e99a13ba87ec199bb07bbdee937a5b62", + "reference": "63afe740e99a13ba87ec199bb07bbdee937a5b62", "shasum": "" }, "require": { @@ -2375,7 +2285,7 @@ "name": "symfony/contracts" }, "branch-alias": { - "dev-main": "3.5-dev" + "dev-main": "3.6-dev" } }, "autoload": { @@ -2400,7 +2310,7 @@ "description": "A generic function and convention to trigger deprecation notices", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/deprecation-contracts/tree/v3.5.1" + "source": "https://github.com/symfony/deprecation-contracts/tree/v3.6.0" }, "funding": [ { @@ -2416,11 +2326,11 @@ "type": "tidelift" } ], - "time": "2024-09-25T14:20:29+00:00" + "time": "2024-09-25T14:21:43+00:00" }, { "name": "symfony/polyfill-ctype", - "version": "v1.31.0", + "version": "v1.32.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-ctype.git", @@ -2479,7 +2389,7 @@ "portable" ], "support": { - "source": "https://github.com/symfony/polyfill-ctype/tree/v1.31.0" + "source": "https://github.com/symfony/polyfill-ctype/tree/v1.32.0" }, "funding": [ { @@ -2499,19 +2409,20 @@ }, { "name": "symfony/polyfill-mbstring", - "version": "v1.31.0", + "version": "v1.32.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-mbstring.git", - "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341" + "reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/85181ba99b2345b0ef10ce42ecac37612d9fd341", - "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341", + "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/6d857f4d76bd4b343eac26d6b539585d2bc56493", + "reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493", "shasum": "" }, "require": { + "ext-iconv": "*", "php": ">=7.2" }, "provide": { @@ -2559,7 +2470,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.31.0" + "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.32.0" }, "funding": [ { @@ -2575,20 +2486,20 @@ "type": "tidelift" } ], - "time": "2024-09-09T11:45:10+00:00" + "time": "2024-12-23T08:48:59+00:00" }, { "name": "symfony/polyfill-php80", - "version": "v1.31.0", + "version": "v1.32.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-php80.git", - "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8" + "reference": "0cc9dd0f17f61d8131e7df6b84bd344899fe2608" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/60328e362d4c2c802a54fcbf04f9d3fb892b4cf8", - "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8", + "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/0cc9dd0f17f61d8131e7df6b84bd344899fe2608", + "reference": "0cc9dd0f17f61d8131e7df6b84bd344899fe2608", "shasum": "" }, "require": { @@ -2639,7 +2550,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-php80/tree/v1.31.0" + "source": "https://github.com/symfony/polyfill-php80/tree/v1.32.0" }, "funding": [ { @@ -2655,11 +2566,11 @@ "type": "tidelift" } ], - "time": "2024-09-09T11:45:10+00:00" + "time": "2025-01-02T08:10:11+00:00" }, { "name": "symfony/polyfill-php83", - "version": "v1.31.0", + "version": "v1.32.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-php83.git", @@ -2715,7 +2626,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-php83/tree/v1.31.0" + "source": "https://github.com/symfony/polyfill-php83/tree/v1.32.0" }, "funding": [ { @@ -2735,7 +2646,7 @@ }, { "name": "symfony/polyfill-uuid", - "version": "v1.31.0", + "version": "v1.32.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-uuid.git", @@ -2794,7 +2705,7 @@ "uuid" ], "support": { - "source": "https://github.com/symfony/polyfill-uuid/tree/v1.31.0" + "source": "https://github.com/symfony/polyfill-uuid/tree/v1.32.0" }, "funding": [ { @@ -2814,16 +2725,16 @@ }, { "name": "symfony/translation", - "version": "v7.2.4", + "version": "v7.3.1", "source": { "type": "git", "url": "https://github.com/symfony/translation.git", - "reference": "283856e6981286cc0d800b53bd5703e8e363f05a" + "reference": "241d5ac4910d256660238a7ecf250deba4c73063" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/translation/zipball/283856e6981286cc0d800b53bd5703e8e363f05a", - "reference": "283856e6981286cc0d800b53bd5703e8e363f05a", + "url": "https://api.github.com/repos/symfony/translation/zipball/241d5ac4910d256660238a7ecf250deba4c73063", + "reference": "241d5ac4910d256660238a7ecf250deba4c73063", "shasum": "" }, "require": { @@ -2833,6 +2744,7 @@ "symfony/translation-contracts": "^2.5|^3.0" }, "conflict": { + "nikic/php-parser": "<5.0", "symfony/config": "<6.4", "symfony/console": "<6.4", "symfony/dependency-injection": "<6.4", @@ -2846,7 +2758,7 @@ "symfony/translation-implementation": "2.3|3.0" }, "require-dev": { - "nikic/php-parser": "^4.18|^5.0", + "nikic/php-parser": "^5.0", "psr/log": "^1|^2|^3", "symfony/config": "^6.4|^7.0", "symfony/console": "^6.4|^7.0", @@ -2889,7 +2801,7 @@ "description": "Provides tools to internationalize your application", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/translation/tree/v7.2.4" + "source": "https://github.com/symfony/translation/tree/v7.3.1" }, "funding": [ { @@ -2905,20 +2817,20 @@ "type": "tidelift" } ], - "time": "2025-02-13T10:27:23+00:00" + "time": "2025-06-27T19:55:54+00:00" }, { "name": "symfony/translation-contracts", - "version": "v3.5.1", + "version": "v3.6.0", "source": { "type": "git", "url": "https://github.com/symfony/translation-contracts.git", - "reference": "4667ff3bd513750603a09c8dedbea942487fb07c" + "reference": "df210c7a2573f1913b2d17cc95f90f53a73d8f7d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/4667ff3bd513750603a09c8dedbea942487fb07c", - "reference": "4667ff3bd513750603a09c8dedbea942487fb07c", + "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/df210c7a2573f1913b2d17cc95f90f53a73d8f7d", + "reference": "df210c7a2573f1913b2d17cc95f90f53a73d8f7d", "shasum": "" }, "require": { @@ -2931,7 +2843,7 @@ "name": "symfony/contracts" }, "branch-alias": { - "dev-main": "3.5-dev" + "dev-main": "3.6-dev" } }, "autoload": { @@ -2967,7 +2879,7 @@ "standards" ], "support": { - "source": "https://github.com/symfony/translation-contracts/tree/v3.5.1" + "source": "https://github.com/symfony/translation-contracts/tree/v3.6.0" }, "funding": [ { @@ -2983,20 +2895,20 @@ "type": "tidelift" } ], - "time": "2024-09-25T14:20:29+00:00" + "time": "2024-09-27T08:32:26+00:00" }, { "name": "symfony/uid", - "version": "v7.2.0", + "version": "v7.3.1", "source": { "type": "git", "url": "https://github.com/symfony/uid.git", - "reference": "2d294d0c48df244c71c105a169d0190bfb080426" + "reference": "a69f69f3159b852651a6bf45a9fdd149520525bb" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/uid/zipball/2d294d0c48df244c71c105a169d0190bfb080426", - "reference": "2d294d0c48df244c71c105a169d0190bfb080426", + "url": "https://api.github.com/repos/symfony/uid/zipball/a69f69f3159b852651a6bf45a9fdd149520525bb", + "reference": "a69f69f3159b852651a6bf45a9fdd149520525bb", "shasum": "" }, "require": { @@ -3041,7 +2953,7 @@ "uuid" ], "support": { - "source": "https://github.com/symfony/uid/tree/v7.2.0" + "source": "https://github.com/symfony/uid/tree/v7.3.1" }, "funding": [ { @@ -3057,25 +2969,25 @@ "type": "tidelift" } ], - "time": "2024-09-25T14:21:43+00:00" + "time": "2025-06-27T19:55:54+00:00" }, { "name": "timber/timber", - "version": "v2.3.1", + "version": "v2.3.2", "source": { "type": "git", "url": "https://github.com/timber/timber.git", - "reference": "3f6e73feadf5d547dff4992f645805da7fbc4d3a" + "reference": "08ce601167a03ed7a4fa7da740481c17ed650ef0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/timber/timber/zipball/3f6e73feadf5d547dff4992f645805da7fbc4d3a", - "reference": "3f6e73feadf5d547dff4992f645805da7fbc4d3a", + "url": "https://api.github.com/repos/timber/timber/zipball/08ce601167a03ed7a4fa7da740481c17ed650ef0", + "reference": "08ce601167a03ed7a4fa7da740481c17ed650ef0", "shasum": "" }, "require": { "php": "^8.1", - "twig/twig": "^3.17" + "twig/twig": "^3.19" }, "require-dev": { "ergebnis/composer-normalize": "^2.28", @@ -3159,20 +3071,20 @@ "type": "open_collective" } ], - "time": "2024-12-23T13:04:50+00:00" + "time": "2025-05-13T13:41:56+00:00" }, { "name": "twig/twig", - "version": "v3.20.0", + "version": "v3.21.1", "source": { "type": "git", "url": "https://github.com/twigphp/Twig.git", - "reference": "3468920399451a384bef53cf7996965f7cd40183" + "reference": "285123877d4dd97dd7c11842ac5fb7e86e60d81d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/twigphp/Twig/zipball/3468920399451a384bef53cf7996965f7cd40183", - "reference": "3468920399451a384bef53cf7996965f7cd40183", + "url": "https://api.github.com/repos/twigphp/Twig/zipball/285123877d4dd97dd7c11842ac5fb7e86e60d81d", + "reference": "285123877d4dd97dd7c11842ac5fb7e86e60d81d", "shasum": "" }, "require": { @@ -3226,7 +3138,7 @@ ], "support": { "issues": "https://github.com/twigphp/Twig/issues", - "source": "https://github.com/twigphp/Twig/tree/v3.20.0" + "source": "https://github.com/twigphp/Twig/tree/v3.21.1" }, "funding": [ { @@ -3238,20 +3150,20 @@ "type": "tidelift" } ], - "time": "2025-02-13T08:34:43+00:00" + "time": "2025-05-03T07:21:55+00:00" }, { "name": "vlucas/phpdotenv", - "version": "v5.6.1", + "version": "v5.6.2", "source": { "type": "git", "url": "https://github.com/vlucas/phpdotenv.git", - "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2" + "reference": "24ac4c74f91ee2c193fa1aaa5c249cb0822809af" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/a59a13791077fe3d44f90e7133eb68e7d22eaff2", - "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2", + "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/24ac4c74f91ee2c193fa1aaa5c249cb0822809af", + "reference": "24ac4c74f91ee2c193fa1aaa5c249cb0822809af", "shasum": "" }, "require": { @@ -3310,7 +3222,7 @@ ], "support": { "issues": "https://github.com/vlucas/phpdotenv/issues", - "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.1" + "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.2" }, "funding": [ { @@ -3322,7 +3234,7 @@ "type": "tidelift" } ], - "time": "2024-07-20T21:52:34+00:00" + "time": "2025-04-30T23:37:27+00:00" }, { "name": "voku/portable-ascii", @@ -3418,15 +3330,15 @@ }, { "name": "wpackagist-plugin/force-regenerate-thumbnails", - "version": "2.2.1", + "version": "2.2.2", "source": { "type": "svn", "url": "https://plugins.svn.wordpress.org/force-regenerate-thumbnails/", - "reference": "tags/2.2.1" + "reference": "tags/2.2.2" }, "dist": { "type": "zip", - "url": "https://downloads.wordpress.org/plugin/force-regenerate-thumbnails.2.2.1.zip" + "url": "https://downloads.wordpress.org/plugin/force-regenerate-thumbnails.2.2.2.zip" }, "require": { "composer/installers": "^1.0 || ^2.0" @@ -3436,15 +3348,15 @@ }, { "name": "wpackagist-plugin/query-monitor", - "version": "3.17.2", + "version": "3.18.0", "source": { "type": "svn", "url": "https://plugins.svn.wordpress.org/query-monitor/", - "reference": "tags/3.17.2" + "reference": "tags/3.18.0" }, "dist": { "type": "zip", - "url": "https://downloads.wordpress.org/plugin/query-monitor.3.17.2.zip" + "url": "https://downloads.wordpress.org/plugin/query-monitor.3.18.0.zip" }, "require": { "composer/installers": "^1.0 || ^2.0" @@ -3472,15 +3384,15 @@ }, { "name": "wpackagist-plugin/wc-multishipping", - "version": "2.5.6", + "version": "2.5.8", "source": { "type": "svn", "url": "https://plugins.svn.wordpress.org/wc-multishipping/", - "reference": "tags/2.5.6" + "reference": "tags/2.5.8" }, "dist": { "type": "zip", - "url": "https://downloads.wordpress.org/plugin/wc-multishipping.2.5.6.zip" + "url": "https://downloads.wordpress.org/plugin/wc-multishipping.2.5.8.zip" }, "require": { "composer/installers": "^1.0 || ^2.0" @@ -3508,15 +3420,15 @@ }, { "name": "wpackagist-plugin/woocommerce", - "version": "9.8.2", + "version": "9.9.5", "source": { "type": "svn", "url": "https://plugins.svn.wordpress.org/woocommerce/", - "reference": "tags/9.8.2" + "reference": "tags/9.9.5" }, "dist": { "type": "zip", - "url": "https://downloads.wordpress.org/plugin/woocommerce.9.8.2.zip" + "url": "https://downloads.wordpress.org/plugin/woocommerce.9.9.5.zip" }, "require": { "composer/installers": "^1.0 || ^2.0" @@ -3544,15 +3456,15 @@ }, { "name": "wpackagist-plugin/wp-mail-smtp", - "version": "4.4.0", + "version": "4.5.0", "source": { "type": "svn", "url": "https://plugins.svn.wordpress.org/wp-mail-smtp/", - "reference": "tags/4.4.0" + "reference": "tags/4.5.0" }, "dist": { "type": "zip", - "url": "https://downloads.wordpress.org/plugin/wp-mail-smtp.4.4.0.zip" + "url": "https://downloads.wordpress.org/plugin/wp-mail-smtp.4.5.0.zip" }, "require": { "composer/installers": "^1.0 || ^2.0" @@ -3600,16 +3512,16 @@ "packages-dev": [ { "name": "php-stubs/wordpress-stubs", - "version": "v6.8.0", + "version": "v6.8.1", "source": { "type": "git", "url": "https://github.com/php-stubs/wordpress-stubs.git", - "reference": "1824db4d1d00d32c0119175d2369d9425dbc4953" + "reference": "92e444847d94f7c30f88c60004648f507688acd5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-stubs/wordpress-stubs/zipball/1824db4d1d00d32c0119175d2369d9425dbc4953", - "reference": "1824db4d1d00d32c0119175d2369d9425dbc4953", + "url": "https://api.github.com/repos/php-stubs/wordpress-stubs/zipball/92e444847d94f7c30f88c60004648f507688acd5", + "reference": "92e444847d94f7c30f88c60004648f507688acd5", "shasum": "" }, "conflict": { @@ -3617,7 +3529,7 @@ }, "require-dev": { "dealerdirect/phpcodesniffer-composer-installer": "^1.0", - "nikic/php-parser": "^4.13", + "nikic/php-parser": "^5.4", "php": "^7.4 || ^8.0", "php-stubs/generator": "^0.8.3", "phpdocumentor/reflection-docblock": "^5.4.1", @@ -3645,9 +3557,9 @@ ], "support": { "issues": "https://github.com/php-stubs/wordpress-stubs/issues", - "source": "https://github.com/php-stubs/wordpress-stubs/tree/v6.8.0" + "source": "https://github.com/php-stubs/wordpress-stubs/tree/v6.8.1" }, - "time": "2025-04-17T15:13:53+00:00" + "time": "2025-05-02T12:33:34+00:00" }, { "name": "phpstan/extension-installer", @@ -3699,16 +3611,16 @@ }, { "name": "phpstan/phpstan", - "version": "2.1.12", + "version": "2.1.17", "source": { "type": "git", "url": "https://github.com/phpstan/phpstan.git", - "reference": "96dde49e967c0c22812bcfa7bda4ff82c09f3b0c" + "reference": "89b5ef665716fa2a52ecd2633f21007a6a349053" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpstan/phpstan/zipball/96dde49e967c0c22812bcfa7bda4ff82c09f3b0c", - "reference": "96dde49e967c0c22812bcfa7bda4ff82c09f3b0c", + "url": "https://api.github.com/repos/phpstan/phpstan/zipball/89b5ef665716fa2a52ecd2633f21007a6a349053", + "reference": "89b5ef665716fa2a52ecd2633f21007a6a349053", "shasum": "" }, "require": { @@ -3753,7 +3665,7 @@ "type": "github" } ], - "time": "2025-04-16T13:19:18+00:00" + "time": "2025-05-21T20:55:28+00:00" }, { "name": "roave/security-advisories", @@ -3761,19 +3673,19 @@ "source": { "type": "git", "url": "https://github.com/Roave/SecurityAdvisories.git", - "reference": "3fe23dd6d9c692ec019ba1cff225f960699a0da3" + "reference": "e798e1676cbc3fa2f63b439b844fe30645b1e052" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Roave/SecurityAdvisories/zipball/3fe23dd6d9c692ec019ba1cff225f960699a0da3", - "reference": "3fe23dd6d9c692ec019ba1cff225f960699a0da3", + "url": "https://api.github.com/repos/Roave/SecurityAdvisories/zipball/e798e1676cbc3fa2f63b439b844fe30645b1e052", + "reference": "e798e1676cbc3fa2f63b439b844fe30645b1e052", "shasum": "" }, "conflict": { "3f/pygmentize": "<1.2", "adaptcms/adaptcms": "<=1.3", "admidio/admidio": "<4.3.12", - "adodb/adodb-php": "<=5.20.20|>=5.21,<=5.21.3", + "adodb/adodb-php": "<=5.22.8", "aheinze/cockpit": "<2.2", "aimeos/ai-admin-graphql": ">=2022.04.1,<2022.10.10|>=2023.04.1,<2023.10.6|>=2024.04.1,<2024.07.2", "aimeos/ai-admin-jsonadm": "<2020.10.13|>=2021.04.1,<2021.10.6|>=2022.04.1,<2022.10.3|>=2023.04.1,<2023.10.4|==2024.04.1", @@ -3784,7 +3696,7 @@ "airesvsg/acf-to-rest-api": "<=3.1", "akaunting/akaunting": "<2.1.13", "akeneo/pim-community-dev": "<5.0.119|>=6,<6.0.53", - "alextselegidis/easyappointments": "<=1.5", + "alextselegidis/easyappointments": "<=1.5.1", "alterphp/easyadmin-extension-bundle": ">=1.2,<1.2.11|>=1.3,<1.3.1", "amazing/media2click": ">=1,<1.3.3", "ameos/ameos_tarteaucitron": "<1.2.23", @@ -3808,7 +3720,10 @@ "athlon1600/php-proxy-app": "<=3", "athlon1600/youtube-downloader": "<=4", "austintoddj/canvas": "<=3.4.2", - "auth0/wordpress": "<=4.6", + "auth0/auth0-php": ">=8.0.0.0-beta1,<8.14", + "auth0/login": "<7.17", + "auth0/symfony": "<5.4", + "auth0/wordpress": "<5.3", "automad/automad": "<2.0.0.0-alpha5", "automattic/jetpack": "<9.8", "awesome-support/awesome-support": "<=6.0.7", @@ -3823,16 +3738,17 @@ "bagisto/bagisto": "<2.1", "barrelstrength/sprout-base-email": "<1.2.7", "barrelstrength/sprout-forms": "<3.9", - "barryvdh/laravel-translation-manager": "<0.6.2", + "barryvdh/laravel-translation-manager": "<0.6.8", "barzahlen/barzahlen-php": "<2.0.1", "baserproject/basercms": "<=5.1.1", "bassjobsen/bootstrap-3-typeahead": ">4.0.2", "bbpress/bbpress": "<2.6.5", + "bcit-ci/codeigniter": "<3.1.3", "bcosca/fatfree": "<3.7.2", "bedita/bedita": "<4", "bednee/cooluri": "<1.0.30", "bigfork/silverstripe-form-capture": ">=3,<3.1.1", - "billz/raspap-webgui": "<=3.1.4", + "billz/raspap-webgui": "<3.3.6", "bk2k/bootstrap-package": ">=7.1,<7.1.2|>=8,<8.0.8|>=9,<9.0.4|>=9.1,<9.1.3|>=10,<10.0.10|>=11,<11.0.3", "blueimp/jquery-file-upload": "==6.4.4", "bmarshall511/wordpress_zero_spam": "<5.2.13", @@ -3863,13 +3779,14 @@ "centreon/centreon": "<22.10.15", "cesnet/simplesamlphp-module-proxystatistics": "<3.1", "chriskacerguis/codeigniter-restserver": "<=2.7.1", + "chrome-php/chrome": "<1.14", "civicrm/civicrm-core": ">=4.2,<4.2.9|>=4.3,<4.3.3", "ckeditor/ckeditor": "<4.25", - "clickstorm/cs-seo": ">=6,<6.7|>=7,<7.4|>=8,<8.3|>=9,<9.2", + "clickstorm/cs-seo": ">=6,<6.8|>=7,<7.5|>=8,<8.4|>=9,<9.3", "co-stack/fal_sftp": "<0.2.6", "cockpit-hq/cockpit": "<2.7|==2.7", "codeception/codeception": "<3.1.3|>=4,<4.1.22", - "codeigniter/framework": "<3.1.9", + "codeigniter/framework": "<3.1.10", "codeigniter4/framework": "<4.5.8", "codeigniter4/shield": "<1.0.0.0-beta8", "codiad/codiad": "<=2.8.4", @@ -3888,7 +3805,8 @@ "contao/managed-edition": "<=1.5", "corveda/phpsandbox": "<1.3.5", "cosenary/instagram": "<=2.3", - "craftcms/cms": "<4.13.8|>=5,<5.5.5", + "couleurcitron/tarteaucitron-wp": "<0.3", + "craftcms/cms": "<4.15.3|>=5,<5.7.5", "croogo/croogo": "<4", "cuyz/valinor": "<0.12", "czim/file-handling": "<1.5|>=2,<2.3", @@ -3923,9 +3841,12 @@ "dolibarr/dolibarr": "<19.0.2|==21.0.0.0-beta", "dompdf/dompdf": "<2.0.4", "doublethreedigital/guest-entries": "<3.1.2", + "drupal/admin_audit_trail": "<1.0.5", "drupal/ai": "<1.0.5", "drupal/alogin": "<2.0.6", "drupal/cache_utility": "<1.2.1", + "drupal/commerce_alphabank_redirect": "<1.0.3", + "drupal/commerce_eurobank_redirect": "<2.1.1", "drupal/config_split": "<1.10|>=2,<2.0.2", "drupal/core": ">=6,<6.38|>=7,<7.102|>=8,<10.3.14|>=10.4,<10.4.5|>=11,<11.0.13|>=11.1,<11.1.5", "drupal/core-recommended": ">=7,<7.102|>=8,<10.2.11|>=10.3,<10.3.9|>=11,<11.0.8", @@ -3934,11 +3855,13 @@ "drupal/gdpr": "<3.0.1|>=3.1,<3.1.2", "drupal/google_tag": "<1.8|>=2,<2.0.8", "drupal/ignition": "<1.0.4", + "drupal/lightgallery": "<1.6", "drupal/link_field_display_mode_formatter": "<1.6", "drupal/matomo": "<1.24", "drupal/oauth2_client": "<4.1.3", "drupal/oauth2_server": "<2.1", "drupal/obfuscate": "<2.0.1", + "drupal/quick_node_block": "<2", "drupal/rapidoc_elements_field_formatter": "<1.0.1", "drupal/spamspan": "<3.2.1", "drupal/tfa": "<1.10", @@ -3951,6 +3874,7 @@ "elefant/cms": "<2.0.7", "elgg/elgg": "<3.3.24|>=4,<4.0.5", "elijaa/phpmemcacheadmin": "<=1.3", + "elmsln/haxcms": "<11", "encore/laravel-admin": "<=1.8.19", "endroid/qr-code-bundle": "<3.4.2", "enhavo/enhavo-app": "<=0.13.1", @@ -3965,8 +3889,8 @@ "ezsystems/ezdemo-ls-extension": ">=5.4,<5.4.2.1-dev", "ezsystems/ezfind-ls": ">=5.3,<5.3.6.1-dev|>=5.4,<5.4.11.1-dev|>=2017.12,<2017.12.0.1-dev", "ezsystems/ezplatform": "<=1.13.6|>=2,<=2.5.24", - "ezsystems/ezplatform-admin-ui": ">=1.3,<1.3.5|>=1.4,<1.4.6|>=1.5,<1.5.29|>=2.3,<2.3.26|>=3.3,<3.3.39", - "ezsystems/ezplatform-admin-ui-assets": ">=4,<4.2.1|>=5,<5.0.1|>=5.1,<5.1.1", + "ezsystems/ezplatform-admin-ui": ">=1.3,<1.3.5|>=1.4,<1.4.6|>=1.5,<1.5.29|>=2.3,<2.3.38|>=3.3,<3.3.39", + "ezsystems/ezplatform-admin-ui-assets": ">=4,<4.2.1|>=5,<5.0.1|>=5.1,<5.1.1|>=5.3.0.0-beta1,<5.3.5", "ezsystems/ezplatform-graphql": ">=1.0.0.0-RC1-dev,<1.0.13|>=2.0.0.0-beta1,<2.3.12", "ezsystems/ezplatform-http-cache": "<2.3.16", "ezsystems/ezplatform-kernel": "<1.2.5.1-dev|>=1.3,<1.3.35", @@ -4026,11 +3950,11 @@ "gaoming13/wechat-php-sdk": "<=1.10.2", "genix/cms": "<=1.1.11", "georgringer/news": "<1.3.3", - "geshi/geshi": "<1.0.8.11-dev", + "geshi/geshi": "<=1.0.9.1", "getformwork/formwork": "<1.13.1|>=2.0.0.0-beta1,<2.0.0.0-beta4", "getgrav/grav": "<1.7.46", - "getkirby/cms": "<=3.6.6.5|>=3.7,<=3.7.5.4|>=3.8,<=3.8.4.3|>=3.9,<=3.9.8.1|>=3.10,<=3.10.1|>=4,<=4.3", - "getkirby/kirby": "<=2.5.12", + "getkirby/cms": "<3.9.8.3-dev|>=3.10,<3.10.1.2-dev|>=4,<4.7.1", + "getkirby/kirby": "<3.9.8.3-dev|>=3.10,<3.10.1.2-dev|>=4,<4.7.1", "getkirby/panel": "<2.5.14", "getkirby/starterkit": "<=3.7.0.2", "gilacms/gila": "<=1.15.4", @@ -4048,6 +3972,7 @@ "guzzlehttp/oauth-subscriber": "<0.8.1", "guzzlehttp/psr7": "<1.9.1|>=2,<2.4.5", "haffner/jh_captcha": "<=2.1.3|>=3,<=3.0.2", + "handcraftedinthealps/goodby-csv": "<1.4.3", "harvesthq/chosen": "<1.8.7", "helloxz/imgurl": "<=2.31", "hhxsv5/laravel-s": "<3.7.36", @@ -4057,9 +3982,10 @@ "hov/jobfair": "<1.0.13|>=2,<2.0.2", "httpsoft/http-message": "<1.0.12", "hyn/multi-tenant": ">=5.6,<5.7.2", - "ibexa/admin-ui": ">=4.2,<4.2.3|>=4.6,<4.6.14", + "ibexa/admin-ui": ">=4.2,<4.2.3|>=4.6,<4.6.21", + "ibexa/admin-ui-assets": ">=4.6.0.0-alpha1,<4.6.21", "ibexa/core": ">=4,<4.0.7|>=4.1,<4.1.4|>=4.2,<4.2.3|>=4.5,<4.5.6|>=4.6,<4.6.2", - "ibexa/fieldtype-richtext": ">=4.6,<4.6.19", + "ibexa/fieldtype-richtext": ">=4.6,<4.6.21", "ibexa/graphql": ">=2.5,<2.5.31|>=3.3,<3.3.28|>=4.2,<4.2.3", "ibexa/http-cache": ">=4.6,<4.6.14", "ibexa/post-install": "<1.0.16|>=4.6,<4.6.14", @@ -4076,7 +4002,7 @@ "imdbphp/imdbphp": "<=5.1.1", "impresscms/impresscms": "<=1.4.5", "impresspages/impresspages": "<1.0.13", - "in2code/femanager": "<5.5.3|>=6,<6.3.4|>=7,<7.2.3", + "in2code/femanager": "<5.5.5|>=6,<6.4.1|>=7,<7.4.2|>=8,<8.2.2", "in2code/ipandlanguageredirect": "<5.1.2", "in2code/lux": "<17.6.1|>=18,<24.0.2", "in2code/powermail": "<7.5.1|>=8,<8.5.1|>=9,<10.9.1|>=11,<12.4.1", @@ -4109,7 +4035,7 @@ "joyqi/hyper-down": "<=2.4.27", "jsdecena/laracom": "<2.0.9", "jsmitty12/phpwhois": "<5.1", - "juzaweb/cms": "<=3.4", + "juzaweb/cms": "<=3.4.2", "jweiland/events2": "<8.3.8|>=9,<9.0.6", "jweiland/kk-downloader": "<1.2.2", "kazist/phpwhois": "<=4.2.6", @@ -4121,6 +4047,7 @@ "klaviyo/magento2-extension": ">=1,<3", "knplabs/knp-snappy": "<=1.4.2", "kohana/core": "<3.3.3", + "koillection/koillection": "<1.6.12", "krayin/laravel-crm": "<=1.3", "kreait/firebase-php": ">=3.2,<3.8.1", "kumbiaphp/kumbiapp": "<=1.1.1", @@ -4139,7 +4066,7 @@ "latte/latte": "<2.10.8", "lavalite/cms": "<=9|==10.1", "lcobucci/jwt": ">=3.4,<3.4.6|>=4,<4.0.4|>=4.1,<4.1.5", - "league/commonmark": "<2.6", + "league/commonmark": "<2.7", "league/flysystem": "<1.1.4|>=2,<2.1.1", "league/oauth2-server": ">=8.3.2,<8.4.2|>=8.5,<8.5.3", "leantime/leantime": "<3.3", @@ -4154,11 +4081,12 @@ "livewire/volt": "<1.7", "lms/routes": "<2.1.1", "localizationteam/l10nmgr": "<7.4|>=8,<8.7|>=9,<9.2", + "lomkit/laravel-rest-api": "<2.13", "luracast/restler": "<3.1", "luyadev/yii-helpers": "<1.2.1", "macropay-solutions/laravel-crud-wizard-free": "<3.4.17", "maestroerror/php-heic-to-jpg": "<1.0.5", - "magento/community-edition": "<2.4.5|==2.4.5|>=2.4.5.0-patch1,<2.4.5.0-patch11|==2.4.6|>=2.4.6.0-patch1,<2.4.6.0-patch9|>=2.4.7.0-beta1,<2.4.7.0-patch4|>=2.4.8.0-beta1,<2.4.8.0-beta2", + "magento/community-edition": "<2.4.5.0-patch13|==2.4.6|>=2.4.6.0-patch1,<2.4.6.0-patch11|>=2.4.7.0-beta1,<2.4.7.0-patch6|>=2.4.8.0-beta1,<2.4.8.0-patch1", "magento/core": "<=1.9.4.5", "magento/magento1ce": "<1.9.4.3-dev", "magento/magento1ee": ">=1,<1.14.4.3-dev", @@ -4171,7 +4099,7 @@ "marcwillmann/turn": "<0.3.3", "matomo/matomo": "<1.11", "matyhtf/framework": "<3.0.6", - "mautic/core": "<5.2.3", + "mautic/core": "<5.2.6|>=6.0.0.0-alpha,<6.0.2", "mautic/core-lib": ">=1.0.0.0-beta,<4.4.13|>=5.0.0.0-alpha,<5.1.1", "maximebf/debugbar": "<1.19", "mdanter/ecc": "<2", @@ -4199,7 +4127,7 @@ "mojo42/jirafeau": "<4.4", "mongodb/mongodb": ">=1,<1.9.2", "monolog/monolog": ">=1.8,<1.12", - "moodle/moodle": "<4.3.10|>=4.4,<4.4.6|>=4.5.0.0-beta,<4.5.2", + "moodle/moodle": "<4.3.12|>=4.4,<4.4.8|>=4.5.0.0-beta,<4.5.4", "mos/cimage": "<0.7.19", "movim/moxl": ">=0.8,<=0.10", "movingbytes/social-network": "<=1.2.1", @@ -4228,6 +4156,7 @@ "nette/application": ">=2,<2.0.19|>=2.1,<2.1.13|>=2.2,<2.2.10|>=2.3,<2.3.14|>=2.4,<2.4.16|>=3,<3.0.6", "nette/nette": ">=2,<2.0.19|>=2.1,<2.1.13", "nilsteampassnet/teampass": "<3.1.3.1-dev", + "nitsan/ns-backup": "<13.0.1", "nonfiction/nterchange": "<4.1.1", "notrinos/notrinos-erp": "<=0.7", "noumo/easyii": "<=0.9", @@ -4239,9 +4168,9 @@ "nzo/url-encryptor-bundle": ">=4,<4.3.2|>=5,<5.0.1", "october/backend": "<1.1.2", "october/cms": "<1.0.469|==1.0.469|==1.0.471|==1.1.1", - "october/october": "<=3.6.4", + "october/october": "<3.7.5", "october/rain": "<1.0.472|>=1.1,<1.1.2", - "october/system": "<1.0.476|>=1.1,<1.1.12|>=2,<2.2.34|>=3,<3.5.15", + "october/system": "<3.7.5", "oliverklee/phpunit": "<3.5.15", "omeka/omeka-s": "<4.0.3", "onelogin/php-saml": "<2.10.4", @@ -4260,7 +4189,7 @@ "oro/customer-portal": ">=4.1,<=4.1.13|>=4.2,<=4.2.10|>=5,<=5.0.11|>=5.1,<=5.1.3", "oro/platform": ">=1.7,<1.7.4|>=3.1,<3.1.29|>=4.1,<4.1.17|>=4.2,<=4.2.10|>=5,<=5.0.12|>=5.1,<=5.1.3", "oveleon/contao-cookiebar": "<1.16.3|>=2,<2.1.3", - "oxid-esales/oxideshop-ce": "<4.5", + "oxid-esales/oxideshop-ce": "<=7.0.5", "oxid-esales/paymorrow-module": ">=1,<1.0.2|>=2,<2.0.1", "packbackbooks/lti-1-3-php-library": "<5", "padraic/humbug_get_contents": "<1.1.2", @@ -4292,6 +4221,7 @@ "phpmyadmin/phpmyadmin": "<5.2.2", "phpmyfaq/phpmyfaq": "<3.2.5|==3.2.5|>=3.2.10,<=4.0.1", "phpoffice/common": "<0.2.9", + "phpoffice/math": "<=0.2", "phpoffice/phpexcel": "<=1.8.2", "phpoffice/phpspreadsheet": "<1.29.9|>=2,<2.1.8|>=2.2,<2.3.7|>=3,<3.9", "phpseclib/phpseclib": "<2.0.47|>=3,<3.0.36", @@ -4332,7 +4262,7 @@ "processwire/processwire": "<=3.0.229", "propel/propel": ">=2.0.0.0-alpha1,<=2.0.0.0-alpha7", "propel/propel1": ">=1,<=1.7.1", - "pterodactyl/panel": "<1.11.8", + "pterodactyl/panel": "<=1.11.10", "ptheofan/yii2-statemachine": ">=2.0.0.0-RC1-dev,<=2", "ptrofimov/beanstalk_console": "<1.7.14", "pubnub/pubnub": "<6.1", @@ -4352,11 +4282,13 @@ "really-simple-plugins/complianz-gdpr": "<6.4.2", "redaxo/source": "<5.18.3", "remdex/livehelperchat": "<4.29", + "renolit/reint-downloadmanager": "<4.0.2|>=5,<5.0.1", "reportico-web/reportico": "<=8.1", "rhukster/dom-sanitizer": "<1.0.7", "rmccue/requests": ">=1.6,<1.8", "robrichards/xmlseclibs": ">=1,<3.0.4", "roots/soil": "<4.1", + "roundcube/roundcubemail": "<1.5.10|>=1.6,<1.6.11", "rudloff/alltube": "<3.0.3", "rudloff/rtmpdump-bin": "<=2.3.1", "s-cart/core": "<6.9", @@ -4369,8 +4301,8 @@ "serluck/phpwhois": "<=4.2.6", "sfroemken/url_redirect": "<=1.2.1", "sheng/yiicms": "<1.2.1", - "shopware/core": "<6.5.8.17-dev|>=6.6,<6.6.10.3-dev|>=6.7.0.0-RC1-dev,<6.7.0.0-RC2-dev", - "shopware/platform": "<6.5.8.17-dev|>=6.6,<6.6.10.3-dev|>=6.7.0.0-RC1-dev,<6.7.0.0-RC2-dev", + "shopware/core": "<6.5.8.18-dev|>=6.6,<6.6.10.3-dev|>=6.7.0.0-RC1-dev,<6.7.0.0-RC2-dev", + "shopware/platform": "<6.5.8.18-dev|>=6.6,<6.6.10.3-dev|>=6.7.0.0-RC1-dev,<6.7.0.0-RC2-dev", "shopware/production": "<=6.3.5.2", "shopware/shopware": "<=5.7.17", "shopware/storefront": "<=6.4.8.1|>=6.5.8,<6.5.8.7-dev", @@ -4406,14 +4338,14 @@ "simplesamlphp/xml-security": "==1.6.11", "simplito/elliptic-php": "<1.0.6", "sitegeist/fluid-components": "<3.5", - "sjbr/sr-feuser-register": "<2.6.2", + "sjbr/sr-feuser-register": "<2.6.2|>=5.1,<12.5", "sjbr/sr-freecap": "<2.4.6|>=2.5,<2.5.3", "sjbr/static-info-tables": "<2.3.1", "slim/psr7": "<1.4.1|>=1.5,<1.5.1|>=1.6,<1.6.1", "slim/slim": "<2.6", "slub/slub-events": "<3.0.3", "smarty/smarty": "<4.5.3|>=5,<5.1.1", - "snipe/snipe-it": "<=7.0.13", + "snipe/snipe-it": "<8.1", "socalnick/scn-social-auth": "<1.15.2", "socialiteproviders/steam": "<1.1", "spatie/browsershot": "<5.0.5", @@ -4424,8 +4356,9 @@ "spoonity/tcpdf": "<6.2.22", "squizlabs/php_codesniffer": ">=1,<2.8.1|>=3,<3.0.1", "ssddanbrown/bookstack": "<24.05.1", - "starcitizentools/citizen-skin": ">=2.6.3,<2.31", - "starcitizentools/tabber-neue": ">=1.9.1,<2.7.2", + "starcitizentools/citizen-skin": ">=1.9.4,<3.4", + "starcitizentools/short-description": ">=4,<4.0.1", + "starcitizentools/tabber-neue": ">=1.9.1,<2.7.2|>=3,<3.1.1", "statamic/cms": "<=5.16", "stormpath/sdk": "<9.9.99", "studio-42/elfinder": "<=2.1.64", @@ -4433,7 +4366,7 @@ "subhh/libconnect": "<7.0.8|>=8,<8.1", "sukohi/surpass": "<1", "sulu/form-bundle": ">=2,<2.5.3", - "sulu/sulu": "<1.6.44|>=2,<2.5.21|>=2.6,<2.6.5", + "sulu/sulu": "<1.6.44|>=2,<2.5.25|>=2.6,<2.6.9|>=3.0.0.0-alpha1,<3.0.0.0-alpha3", "sumocoders/framework-user-bundle": "<1.4", "superbig/craft-audit": "<3.0.2", "svewap/a21glossary": "<=0.4.10", @@ -4480,6 +4413,8 @@ "symfony/translation": ">=2,<2.0.17", "symfony/twig-bridge": ">=2,<4.4.51|>=5,<5.4.31|>=6,<6.3.8", "symfony/ux-autocomplete": "<2.11.2", + "symfony/ux-live-component": "<2.25.1", + "symfony/ux-twig-component": "<2.25.1", "symfony/validator": "<5.4.43|>=6,<6.4.11|>=7,<7.1.4", "symfony/var-exporter": ">=4.2,<4.2.12|>=4.3,<4.3.8", "symfony/web-profiler-bundle": ">=2,<2.3.19|>=2.4,<2.4.9|>=2.5,<2.5.4", @@ -4517,10 +4452,10 @@ "twbs/bootstrap": "<=3.4.1|>=4,<=4.6.2", "twig/twig": "<3.11.2|>=3.12,<3.14.1|>=3.16,<3.19", "typo3/cms": "<9.5.29|>=10,<10.4.35|>=11,<11.5.23|>=12,<12.2", - "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-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.30|>=13,<=13.4.11", "typo3/cms-belog": ">=10,<=10.4.47|>=11,<=11.5.41|>=12,<=12.4.24|>=13,<=13.4.2", "typo3/cms-beuser": ">=10,<=10.4.47|>=11,<=11.5.41|>=12,<=12.4.24|>=13,<=13.4.2", - "typo3/cms-core": "<=8.7.56|>=9,<=9.5.48|>=10,<=10.4.47|>=11,<=11.5.41|>=12,<=12.4.24|>=13,<=13.4.2", + "typo3/cms-core": "<=8.7.56|>=9,<=9.5.50|>=10,<=10.4.49|>=11,<=11.5.43|>=12,<=12.4.30|>=13,<=13.4.11", "typo3/cms-dashboard": ">=10,<=10.4.47|>=11,<=11.5.41|>=12,<=12.4.24|>=13,<=13.4.2", "typo3/cms-extbase": "<6.2.24|>=7,<7.6.8|==8.1.1", "typo3/cms-extensionmanager": ">=10,<=10.4.47|>=11,<=11.5.41|>=12,<=12.4.24|>=13,<=13.4.2", @@ -4533,6 +4468,8 @@ "typo3/cms-lowlevel": ">=11,<=11.5.41", "typo3/cms-rte-ckeditor": ">=9.5,<9.5.42|>=10,<10.4.39|>=11,<11.5.30", "typo3/cms-scheduler": ">=11,<=11.5.41", + "typo3/cms-setup": ">=9,<=9.5.50|>=10,<=10.4.49|>=11,<=11.5.43|>=12,<=12.4.30|>=13,<=13.4.11", + "typo3/cms-webhooks": ">=12,<=12.4.30|>=13,<=13.4.11", "typo3/flow": ">=1,<1.0.4|>=1.1,<1.1.1|>=2,<2.0.1|>=2.3,<2.3.16|>=3,<3.0.12|>=3.1,<3.1.10|>=3.2,<3.2.13|>=3.3,<3.3.13|>=4,<4.0.6", "typo3/html-sanitizer": ">=1,<=1.5.2|>=2,<=2.1.3", "typo3/neos": ">=1.1,<1.1.3|>=1.2,<1.2.13|>=2,<2.0.4|>=2.3,<2.3.99|>=3,<3.0.20|>=3.1,<3.1.18|>=3.2,<3.2.14|>=3.3,<3.3.23|>=4,<4.0.17|>=4.1,<4.1.16|>=4.2,<4.2.12|>=4.3,<4.3.3", @@ -4592,7 +4529,7 @@ "xataface/xataface": "<3", "xpressengine/xpressengine": "<3.0.15", "yab/quarx": "<2.4.5", - "yeswiki/yeswiki": "<4.5.2", + "yeswiki/yeswiki": "<4.5.4", "yetiforce/yetiforce-crm": "<6.5", "yidashi/yii2cmf": "<=2", "yii2mod/yii2-cms": "<1.9.2", @@ -4604,7 +4541,7 @@ "yiisoft/yii2-elasticsearch": "<2.0.5", "yiisoft/yii2-gii": "<=2.2.4", "yiisoft/yii2-jui": "<2.0.4", - "yiisoft/yii2-redis": "<2.0.8", + "yiisoft/yii2-redis": "<2.0.20", "yikesinc/yikes-inc-easy-mailchimp-extender": "<6.8.6", "yoast-seo-for-typo3/yoast_seo": "<7.2.3", "yourls/yourls": "<=1.8.2", @@ -4683,20 +4620,20 @@ "type": "tidelift" } ], - "time": "2025-04-23T02:32:45+00:00" + "time": "2025-07-03T22:05:19+00:00" }, { "name": "squizlabs/php_codesniffer", - "version": "3.12.2", + "version": "3.13.2", "source": { "type": "git", "url": "https://github.com/PHPCSStandards/PHP_CodeSniffer.git", - "reference": "6d4cf6032d4b718f168c90a96e36c7d0eaacb2aa" + "reference": "5b5e3821314f947dd040c70f7992a64eac89025c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/PHPCSStandards/PHP_CodeSniffer/zipball/6d4cf6032d4b718f168c90a96e36c7d0eaacb2aa", - "reference": "6d4cf6032d4b718f168c90a96e36c7d0eaacb2aa", + "url": "https://api.github.com/repos/PHPCSStandards/PHP_CodeSniffer/zipball/5b5e3821314f947dd040c70f7992a64eac89025c", + "reference": "5b5e3821314f947dd040c70f7992a64eac89025c", "shasum": "" }, "require": { @@ -4767,7 +4704,7 @@ "type": "thanks_dev" } ], - "time": "2025-04-13T04:10:18+00:00" + "time": "2025-06-17T22:17:01+00:00" }, { "name": "szepeviktor/phpstan-wordpress", @@ -4775,12 +4712,12 @@ "source": { "type": "git", "url": "https://github.com/szepeviktor/phpstan-wordpress.git", - "reference": "963887b04c21fe7ac78e61c1351f8b00fff9f8f8" + "reference": "f9c2366c2e661f7323d882f7784ee64847d7d019" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/szepeviktor/phpstan-wordpress/zipball/963887b04c21fe7ac78e61c1351f8b00fff9f8f8", - "reference": "963887b04c21fe7ac78e61c1351f8b00fff9f8f8", + "url": "https://api.github.com/repos/szepeviktor/phpstan-wordpress/zipball/f9c2366c2e661f7323d882f7784ee64847d7d019", + "reference": "f9c2366c2e661f7323d882f7784ee64847d7d019", "shasum": "" }, "require": { @@ -4830,7 +4767,7 @@ "issues": "https://github.com/szepeviktor/phpstan-wordpress/issues", "source": "https://github.com/szepeviktor/phpstan-wordpress/tree/2.x" }, - "time": "2025-02-12T18:43:37+00:00" + "time": "2025-07-03T13:31:50+00:00" } ], "aliases": [], diff --git a/cspell.json b/cspell.json new file mode 100644 index 00000000..189dfeed --- /dev/null +++ b/cspell.json @@ -0,0 +1,4 @@ +{ + "dictionaries": ["fr-fr", "en-gb"], + "words": ["GLITCHTIP", "Vali", "fdir", "mobily", "oxlint", "valibot", "zstandard", "Eles", "logtape"] +} diff --git a/db/haiku_atelier-2025-06-23-1fbd59e.sql b/db/haiku_atelier-2025-06-23-1fbd59e.sql new file mode 100644 index 00000000..0fc2bf14 --- /dev/null +++ b/db/haiku_atelier-2025-06-23-1fbd59e.sql @@ -0,0 +1,12916 @@ +/*M!999999\- enable the sandbox mode */ +-- MariaDB dump 10.19-11.8.1-MariaDB, for debian-linux-gnu (x86_64) +-- +-- Host: localhost Database: haiku_atelier +-- ------------------------------------------------------ +-- Server version 11.8.1-MariaDB-4 + +/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; +/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; +/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; +/*!40101 SET NAMES utf8mb4 */; +/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; +/*!40103 SET TIME_ZONE='+00:00' */; +/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; +/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; +/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; +/*M!100616 SET @OLD_NOTE_VERBOSITY=@@NOTE_VERBOSITY, NOTE_VERBOSITY=0 */; + +-- +-- Table structure for table `haikuwp_actionscheduler_actions` +-- + +DROP TABLE IF EXISTS `haikuwp_actionscheduler_actions`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8mb4 */; +CREATE TABLE `haikuwp_actionscheduler_actions` ( + `action_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, + `hook` varchar(191) NOT NULL, + `status` varchar(20) NOT NULL, + `scheduled_date_gmt` datetime DEFAULT '0000-00-00 00:00:00', + `scheduled_date_local` datetime DEFAULT '0000-00-00 00:00:00', + `priority` tinyint(3) unsigned NOT NULL DEFAULT 10, + `args` varchar(191) DEFAULT NULL, + `schedule` longtext DEFAULT NULL, + `group_id` bigint(20) unsigned NOT NULL DEFAULT 0, + `attempts` int(11) NOT NULL DEFAULT 0, + `last_attempt_gmt` datetime DEFAULT '0000-00-00 00:00:00', + `last_attempt_local` datetime DEFAULT '0000-00-00 00:00:00', + `claim_id` bigint(20) unsigned NOT NULL DEFAULT 0, + `extended_args` varchar(8000) DEFAULT NULL, + PRIMARY KEY (`action_id`), + KEY `hook_status_scheduled_date_gmt` (`hook`(163),`status`,`scheduled_date_gmt`), + KEY `status_scheduled_date_gmt` (`status`,`scheduled_date_gmt`), + KEY `scheduled_date_gmt` (`scheduled_date_gmt`), + KEY `args` (`args`), + KEY `group_id` (`group_id`), + KEY `last_attempt_gmt` (`last_attempt_gmt`), + KEY `claim_id_status_scheduled_date_gmt` (`claim_id`,`status`,`scheduled_date_gmt`) +) ENGINE=InnoDB AUTO_INCREMENT=2747 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `haikuwp_actionscheduler_actions` +-- + +LOCK TABLES `haikuwp_actionscheduler_actions` WRITE; +/*!40000 ALTER TABLE `haikuwp_actionscheduler_actions` DISABLE KEYS */; +set autocommit=0; +INSERT INTO `haikuwp_actionscheduler_actions` VALUES +(2285,'wp_mail_smtp_summary_report_email','complete','2025-05-27 01:32:11','2025-05-27 03:32:11',10,'[null]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1748309531;s:18:\"\0*\0first_timestamp\";i:1733144400;s:13:\"\0*\0recurrence\";i:604800;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1748309531;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:604800;}',6,1,'2025-05-27 01:38:13','2025-05-27 03:38:13',0,NULL), +(2300,'woocommerce_cleanup_draft_orders','complete','2025-05-24 12:29:54','2025-05-24 14:29:54',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1748089794;s:18:\"\0*\0first_timestamp\";i:1722863558;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1748089794;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',2,1,'2025-05-24 12:46:03','2025-05-24 14:46:03',0,NULL), +(2301,'wp_mail_smtp_admin_notifications_update','complete','2025-05-24 12:29:54','2025-05-24 14:29:54',10,'[1]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1748089794;s:18:\"\0*\0first_timestamp\";i:1732553416;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1748089794;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',6,1,'2025-05-24 12:46:03','2025-05-24 14:46:03',0,NULL), +(2302,'woocommerce_cleanup_draft_orders','complete','2025-05-25 12:46:03','2025-05-25 14:46:03',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1748177163;s:18:\"\0*\0first_timestamp\";i:1722863558;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1748177163;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',2,1,'2025-05-25 13:10:11','2025-05-25 15:10:11',0,NULL), +(2303,'wp_mail_smtp_admin_notifications_update','complete','2025-05-25 12:46:03','2025-05-25 14:46:03',10,'[1]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1748177163;s:18:\"\0*\0first_timestamp\";i:1732553416;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1748177163;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',6,1,'2025-05-25 13:10:11','2025-05-25 15:10:11',0,NULL), +(2304,'woocommerce_cleanup_draft_orders','complete','2025-05-26 13:10:11','2025-05-26 15:10:11',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1748265011;s:18:\"\0*\0first_timestamp\";i:1722863558;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1748265011;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',2,1,'2025-05-26 13:10:21','2025-05-26 15:10:21',0,NULL), +(2305,'wp_mail_smtp_admin_notifications_update','complete','2025-05-26 13:10:11','2025-05-26 15:10:11',10,'[1]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1748265011;s:18:\"\0*\0first_timestamp\";i:1732553416;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1748265011;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',6,1,'2025-05-26 13:10:21','2025-05-26 15:10:21',0,NULL), +(2306,'woocommerce_cleanup_draft_orders','complete','2025-05-27 13:10:21','2025-05-27 15:10:21',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1748351421;s:18:\"\0*\0first_timestamp\";i:1722863558;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1748351421;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',2,1,'2025-05-27 13:10:36','2025-05-27 15:10:36',0,NULL), +(2307,'wp_mail_smtp_admin_notifications_update','complete','2025-05-27 13:10:21','2025-05-27 15:10:21',10,'[1]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1748351421;s:18:\"\0*\0first_timestamp\";i:1732553416;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1748351421;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',6,1,'2025-05-27 13:10:36','2025-05-27 15:10:36',0,NULL), +(2308,'wp_mail_smtp_summary_report_email','complete','2025-06-03 01:38:13','2025-06-03 03:38:13',10,'[null]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1748914693;s:18:\"\0*\0first_timestamp\";i:1733144400;s:13:\"\0*\0recurrence\";i:604800;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1748914693;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:604800;}',6,1,'2025-06-03 01:59:59','2025-06-03 03:59:59',0,NULL), +(2309,'wc_delete_related_product_transients_async','complete','2025-05-27 06:46:10','2025-05-27 08:46:10',10,'{\"post_id\":398}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1748328370;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1748328370;}',8,1,'2025-05-27 06:46:12','2025-05-27 08:46:12',0,NULL), +(2310,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-05-27 06:46:11','2025-05-27 08:46:11',10,'[398,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1748328371;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1748328371;}',3,1,'2025-05-27 06:46:12','2025-05-27 08:46:12',0,NULL), +(2311,'wc_delete_related_product_transients_async','complete','2025-05-27 06:46:35','2025-05-27 08:46:35',10,'{\"post_id\":393}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1748328395;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1748328395;}',8,1,'2025-05-27 06:47:55','2025-05-27 08:47:55',0,NULL), +(2312,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-05-27 06:46:36','2025-05-27 08:46:36',10,'[393,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1748328396;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1748328396;}',3,1,'2025-05-27 06:47:55','2025-05-27 08:47:55',0,NULL), +(2313,'wc_delete_related_product_transients_async','complete','2025-05-27 06:49:54','2025-05-27 08:49:54',10,'{\"post_id\":251}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1748328594;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1748328594;}',8,1,'2025-05-27 06:50:07','2025-05-27 08:50:07',0,NULL), +(2314,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-05-27 06:49:55','2025-05-27 08:49:55',10,'[251,2]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1748328595;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1748328595;}',3,1,'2025-05-27 06:50:07','2025-05-27 08:50:07',0,NULL), +(2315,'woocommerce_cleanup_draft_orders','complete','2025-05-28 13:10:36','2025-05-28 15:10:36',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1748437836;s:18:\"\0*\0first_timestamp\";i:1722863558;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1748437836;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',2,1,'2025-05-28 13:30:29','2025-05-28 15:30:29',0,NULL), +(2316,'wp_mail_smtp_admin_notifications_update','complete','2025-05-28 13:10:36','2025-05-28 15:10:36',10,'[1]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1748437836;s:18:\"\0*\0first_timestamp\";i:1732553416;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1748437836;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',6,1,'2025-05-28 13:30:29','2025-05-28 15:30:29',0,NULL), +(2317,'woocommerce_cleanup_draft_orders','complete','2025-05-29 13:30:29','2025-05-29 15:30:29',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1748525429;s:18:\"\0*\0first_timestamp\";i:1722863558;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1748525429;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',2,1,'2025-05-29 13:38:13','2025-05-29 15:38:13',0,NULL), +(2318,'wp_mail_smtp_admin_notifications_update','complete','2025-05-29 13:30:29','2025-05-29 15:30:29',10,'[1]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1748525429;s:18:\"\0*\0first_timestamp\";i:1732553416;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1748525429;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',6,1,'2025-05-29 13:38:13','2025-05-29 15:38:13',0,NULL), +(2319,'wc_delete_related_product_transients_async','complete','2025-05-28 20:20:04','2025-05-28 22:20:04',10,'{\"post_id\":589}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1748463604;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1748463604;}',8,1,'2025-05-28 20:28:06','2025-05-28 22:28:06',0,NULL), +(2320,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-05-28 20:20:05','2025-05-28 22:20:05',10,'[590,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1748463605;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1748463605;}',3,1,'2025-05-28 20:28:06','2025-05-28 22:28:06',0,NULL), +(2321,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-05-28 20:20:05','2025-05-28 22:20:05',10,'[591,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1748463605;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1748463605;}',3,1,'2025-05-28 20:28:06','2025-05-28 22:28:06',0,NULL), +(2322,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-05-28 20:20:05','2025-05-28 22:20:05',10,'[592,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1748463605;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1748463605;}',3,1,'2025-05-28 20:28:06','2025-05-28 22:28:06',0,NULL), +(2323,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-05-28 20:20:05','2025-05-28 22:20:05',10,'[593,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1748463605;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1748463605;}',3,1,'2025-05-28 20:28:06','2025-05-28 22:28:06',0,NULL), +(2324,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-05-28 20:20:05','2025-05-28 22:20:05',10,'[594,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1748463605;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1748463605;}',3,1,'2025-05-28 20:28:06','2025-05-28 22:28:06',0,NULL), +(2325,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-05-28 20:20:05','2025-05-28 22:20:05',10,'[595,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1748463605;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1748463605;}',3,1,'2025-05-28 20:28:06','2025-05-28 22:28:06',0,NULL), +(2326,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-05-28 20:20:05','2025-05-28 22:20:05',10,'[596,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1748463605;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1748463605;}',3,1,'2025-05-28 20:28:06','2025-05-28 22:28:06',0,NULL), +(2327,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-05-28 20:20:05','2025-05-28 22:20:05',10,'[597,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1748463605;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1748463605;}',3,1,'2025-05-28 20:28:06','2025-05-28 22:28:06',0,NULL), +(2328,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-05-28 20:20:05','2025-05-28 22:20:05',10,'[589,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1748463605;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1748463605;}',3,1,'2025-05-28 20:28:06','2025-05-28 22:28:06',0,NULL), +(2329,'wc_delete_related_product_transients_async','complete','2025-05-28 20:20:04','2025-05-28 22:20:04',10,'{\"post_id\":572}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1748463604;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1748463604;}',8,1,'2025-05-28 20:28:06','2025-05-28 22:28:06',0,NULL), +(2330,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-05-28 20:20:05','2025-05-28 22:20:05',10,'[579,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1748463605;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1748463605;}',3,1,'2025-05-28 20:28:06','2025-05-28 22:28:06',0,NULL), +(2331,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-05-28 20:20:05','2025-05-28 22:20:05',10,'[580,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1748463605;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1748463605;}',3,1,'2025-05-28 20:28:06','2025-05-28 22:28:06',0,NULL), +(2332,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-05-28 20:20:05','2025-05-28 22:20:05',10,'[581,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1748463605;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1748463605;}',3,1,'2025-05-28 20:28:06','2025-05-28 22:28:06',0,NULL), +(2333,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-05-28 20:20:05','2025-05-28 22:20:05',10,'[582,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1748463605;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1748463605;}',3,1,'2025-05-28 20:28:06','2025-05-28 22:28:06',0,NULL), +(2334,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-05-28 20:20:05','2025-05-28 22:20:05',10,'[583,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1748463605;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1748463605;}',3,1,'2025-05-28 20:28:06','2025-05-28 22:28:06',0,NULL), +(2335,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-05-28 20:20:05','2025-05-28 22:20:05',10,'[584,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1748463605;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1748463605;}',3,1,'2025-05-28 20:28:06','2025-05-28 22:28:06',0,NULL), +(2336,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-05-28 20:20:05','2025-05-28 22:20:05',10,'[585,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1748463605;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1748463605;}',3,1,'2025-05-28 20:28:06','2025-05-28 22:28:06',0,NULL), +(2337,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-05-28 20:20:05','2025-05-28 22:20:05',10,'[586,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1748463605;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1748463605;}',3,1,'2025-05-28 20:28:06','2025-05-28 22:28:06',0,NULL), +(2338,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-05-28 20:20:05','2025-05-28 22:20:05',10,'[572,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1748463605;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1748463605;}',3,1,'2025-05-28 20:28:06','2025-05-28 22:28:06',0,NULL), +(2339,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-05-28 20:20:05','2025-05-28 22:20:05',10,'[406,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1748463605;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1748463605;}',3,1,'2025-05-28 20:28:06','2025-05-28 22:28:06',0,NULL), +(2340,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-05-28 20:20:05','2025-05-28 22:20:05',10,'[402,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1748463605;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1748463605;}',3,1,'2025-05-28 20:28:06','2025-05-28 22:28:06',0,NULL), +(2341,'wc_delete_related_product_transients_async','complete','2025-05-28 20:20:04','2025-05-28 22:20:04',10,'{\"post_id\":372}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1748463604;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1748463604;}',8,1,'2025-05-28 20:28:06','2025-05-28 22:28:06',0,NULL), +(2342,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-05-28 20:20:05','2025-05-28 22:20:05',10,'[674,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1748463605;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1748463605;}',3,1,'2025-05-28 20:28:06','2025-05-28 22:28:06',0,NULL), +(2343,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-05-28 20:20:06','2025-05-28 22:20:06',10,'[675,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1748463606;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1748463606;}',3,1,'2025-05-28 20:28:06','2025-05-28 22:28:06',0,NULL), +(2344,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-05-28 20:20:06','2025-05-28 22:20:06',10,'[372,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1748463606;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1748463606;}',3,1,'2025-05-28 20:28:06','2025-05-28 22:28:06',0,NULL), +(2345,'wc_delete_related_product_transients_async','complete','2025-05-28 20:20:05','2025-05-28 22:20:05',10,'{\"post_id\":365}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1748463605;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1748463605;}',8,1,'2025-05-28 20:28:06','2025-05-28 22:28:06',0,NULL), +(2346,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-05-28 20:20:06','2025-05-28 22:20:06',10,'[676,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1748463606;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1748463606;}',3,1,'2025-05-28 20:28:06','2025-05-28 22:28:06',0,NULL), +(2347,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-05-28 20:20:06','2025-05-28 22:20:06',10,'[677,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1748463606;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1748463606;}',3,1,'2025-05-28 20:28:06','2025-05-28 22:28:06',0,NULL), +(2348,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-05-28 20:20:06','2025-05-28 22:20:06',10,'[365,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1748463606;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1748463606;}',3,1,'2025-05-28 20:28:06','2025-05-28 22:28:06',0,NULL), +(2349,'wc_delete_related_product_transients_async','complete','2025-05-28 20:20:05','2025-05-28 22:20:05',10,'{\"post_id\":356}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1748463605;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1748463605;}',8,1,'2025-05-28 20:28:06','2025-05-28 22:28:06',0,NULL), +(2350,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-05-28 20:20:06','2025-05-28 22:20:06',10,'[549,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1748463606;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1748463606;}',3,1,'2025-05-28 20:28:06','2025-05-28 22:28:06',0,NULL), +(2351,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-05-28 20:20:06','2025-05-28 22:20:06',10,'[550,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1748463606;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1748463606;}',3,1,'2025-05-28 20:28:06','2025-05-28 22:28:06',0,NULL), +(2352,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-05-28 20:20:06','2025-05-28 22:20:06',10,'[551,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1748463606;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1748463606;}',3,1,'2025-05-28 20:28:06','2025-05-28 22:28:06',0,NULL), +(2353,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-05-28 20:20:06','2025-05-28 22:20:06',10,'[356,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1748463606;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1748463606;}',3,1,'2025-05-28 20:28:06','2025-05-28 22:28:06',0,NULL), +(2354,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-05-28 20:20:06','2025-05-28 22:20:06',10,'[335,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1748463606;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1748463606;}',3,1,'2025-05-28 20:28:06','2025-05-28 22:28:06',0,NULL), +(2355,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-05-28 20:20:06','2025-05-28 22:20:06',10,'[331,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1748463606;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1748463606;}',3,1,'2025-05-28 20:28:06','2025-05-28 22:28:06',0,NULL), +(2356,'wc_delete_related_product_transients_async','complete','2025-05-28 20:20:05','2025-05-28 22:20:05',10,'{\"post_id\":291}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1748463605;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1748463605;}',8,1,'2025-05-28 20:28:06','2025-05-28 22:28:06',0,NULL), +(2357,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-05-28 20:20:06','2025-05-28 22:20:06',10,'[648,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1748463606;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1748463606;}',3,1,'2025-05-28 20:28:06','2025-05-28 22:28:06',0,NULL), +(2358,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-05-28 20:20:06','2025-05-28 22:20:06',10,'[649,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1748463606;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1748463606;}',3,1,'2025-05-28 20:28:06','2025-05-28 22:28:06',0,NULL), +(2359,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-05-28 20:20:06','2025-05-28 22:20:06',10,'[650,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1748463606;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1748463606;}',3,1,'2025-05-28 20:28:06','2025-05-28 22:28:06',0,NULL), +(2360,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-05-28 20:20:06','2025-05-28 22:20:06',10,'[291,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1748463606;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1748463606;}',3,1,'2025-05-28 20:28:06','2025-05-28 22:28:06',0,NULL), +(2361,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-05-28 20:20:06','2025-05-28 22:20:06',10,'[481,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1748463606;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1748463606;}',3,1,'2025-05-28 20:28:06','2025-05-28 22:28:06',0,NULL), +(2362,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-05-28 20:20:06','2025-05-28 22:20:06',10,'[381,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1748463606;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1748463606;}',3,1,'2025-05-28 20:28:06','2025-05-28 22:28:06',0,NULL), +(2363,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-05-28 20:20:06','2025-05-28 22:20:06',10,'[377,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1748463606;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1748463606;}',3,1,'2025-05-28 20:28:06','2025-05-28 22:28:06',0,NULL), +(2364,'wc_delete_related_product_transients_async','complete','2025-05-28 20:20:05','2025-05-28 22:20:05',10,'{\"post_id\":232}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1748463605;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1748463605;}',8,1,'2025-05-28 20:28:06','2025-05-28 22:28:06',0,NULL), +(2365,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-05-28 20:20:06','2025-05-28 22:20:06',10,'[238,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1748463606;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1748463606;}',3,1,'2025-05-28 20:28:06','2025-05-28 22:28:06',0,NULL), +(2366,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-05-28 20:20:07','2025-05-28 22:20:07',10,'[239,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1748463607;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1748463607;}',3,1,'2025-05-28 20:28:06','2025-05-28 22:28:06',0,NULL), +(2367,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-05-28 20:20:07','2025-05-28 22:20:07',10,'[232,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1748463607;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1748463607;}',3,1,'2025-05-28 20:28:06','2025-05-28 22:28:06',0,NULL), +(2368,'wc_delete_related_product_transients_async','complete','2025-05-28 20:20:06','2025-05-28 22:20:06',10,'{\"post_id\":86}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1748463606;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1748463606;}',8,1,'2025-05-28 20:28:06','2025-05-28 22:28:06',0,NULL), +(2369,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-05-28 20:20:07','2025-05-28 22:20:07',10,'[414,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1748463607;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1748463607;}',3,1,'2025-05-28 20:28:06','2025-05-28 22:28:06',0,NULL), +(2370,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-05-28 20:20:07','2025-05-28 22:20:07',10,'[87,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1748463607;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1748463607;}',3,1,'2025-05-28 20:28:06','2025-05-28 22:28:06',0,NULL), +(2371,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-05-28 20:20:07','2025-05-28 22:20:07',10,'[88,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1748463607;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1748463607;}',3,1,'2025-05-28 20:28:06','2025-05-28 22:28:06',0,NULL), +(2372,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-05-28 20:20:07','2025-05-28 22:20:07',10,'[89,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1748463607;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1748463607;}',3,1,'2025-05-28 20:28:06','2025-05-28 22:28:06',0,NULL), +(2373,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-05-28 20:20:07','2025-05-28 22:20:07',10,'[90,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1748463607;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1748463607;}',3,1,'2025-05-28 20:28:06','2025-05-28 22:28:06',0,NULL), +(2374,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-05-28 20:20:07','2025-05-28 22:20:07',10,'[91,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1748463607;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1748463607;}',3,1,'2025-05-28 20:28:06','2025-05-28 22:28:06',0,NULL), +(2375,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-05-28 20:20:07','2025-05-28 22:20:07',10,'[92,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1748463607;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1748463607;}',3,1,'2025-05-28 20:28:06','2025-05-28 22:28:06',0,NULL), +(2376,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-05-28 20:20:07','2025-05-28 22:20:07',10,'[93,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1748463607;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1748463607;}',3,1,'2025-05-28 20:28:06','2025-05-28 22:28:06',0,NULL), +(2377,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-05-28 20:20:07','2025-05-28 22:20:07',10,'[86,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1748463607;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1748463607;}',3,1,'2025-05-28 20:28:06','2025-05-28 22:28:06',0,NULL), +(2378,'woocommerce_cleanup_draft_orders','complete','2025-05-30 13:38:13','2025-05-30 15:38:13',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1748612293;s:18:\"\0*\0first_timestamp\";i:1722863558;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1748612293;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',2,1,'2025-05-30 13:54:54','2025-05-30 15:54:54',0,NULL), +(2379,'wp_mail_smtp_admin_notifications_update','complete','2025-05-30 13:38:13','2025-05-30 15:38:13',10,'[1]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1748612293;s:18:\"\0*\0first_timestamp\";i:1732553416;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1748612293;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',6,1,'2025-05-30 13:54:54','2025-05-30 15:54:54',0,NULL), +(2380,'woocommerce_cleanup_draft_orders','complete','2025-05-31 13:54:54','2025-05-31 15:54:54',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1748699694;s:18:\"\0*\0first_timestamp\";i:1722863558;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1748699694;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',2,1,'2025-05-31 13:58:51','2025-05-31 15:58:51',0,NULL), +(2381,'wp_mail_smtp_admin_notifications_update','complete','2025-05-31 13:54:54','2025-05-31 15:54:54',10,'[1]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1748699694;s:18:\"\0*\0first_timestamp\";i:1732553416;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1748699694;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',6,1,'2025-05-31 13:58:51','2025-05-31 15:58:51',0,NULL), +(2382,'woocommerce_cleanup_draft_orders','complete','2025-06-01 13:58:51','2025-06-01 15:58:51',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1748786331;s:18:\"\0*\0first_timestamp\";i:1722863558;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1748786331;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',2,1,'2025-06-01 14:12:54','2025-06-01 16:12:54',0,NULL), +(2383,'wp_mail_smtp_admin_notifications_update','complete','2025-06-01 13:58:51','2025-06-01 15:58:51',10,'[1]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1748786331;s:18:\"\0*\0first_timestamp\";i:1732553416;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1748786331;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',6,1,'2025-06-01 14:12:54','2025-06-01 16:12:54',0,NULL), +(2384,'woocommerce_cleanup_draft_orders','complete','2025-06-02 14:12:54','2025-06-02 16:12:54',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1748873574;s:18:\"\0*\0first_timestamp\";i:1722863558;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1748873574;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',2,1,'2025-06-02 14:19:53','2025-06-02 16:19:53',0,NULL), +(2385,'wp_mail_smtp_admin_notifications_update','complete','2025-06-02 14:12:54','2025-06-02 16:12:54',10,'[1]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1748873574;s:18:\"\0*\0first_timestamp\";i:1732553416;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1748873574;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',6,1,'2025-06-02 14:19:53','2025-06-02 16:19:53',0,NULL), +(2386,'woocommerce_cleanup_draft_orders','complete','2025-06-03 14:19:53','2025-06-03 16:19:53',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1748960393;s:18:\"\0*\0first_timestamp\";i:1722863558;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1748960393;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',2,1,'2025-06-03 14:25:25','2025-06-03 16:25:25',0,NULL), +(2387,'wp_mail_smtp_admin_notifications_update','complete','2025-06-03 14:19:53','2025-06-03 16:19:53',10,'[1]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1748960393;s:18:\"\0*\0first_timestamp\";i:1732553416;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1748960393;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',6,1,'2025-06-03 14:25:25','2025-06-03 16:25:25',0,NULL), +(2388,'wp_mail_smtp_summary_report_email','complete','2025-06-10 01:59:59','2025-06-10 03:59:59',10,'[null]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1749520799;s:18:\"\0*\0first_timestamp\";i:1733144400;s:13:\"\0*\0recurrence\";i:604800;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1749520799;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:604800;}',6,1,'2025-06-10 02:51:53','2025-06-10 04:51:53',0,NULL), +(2389,'woocommerce_cleanup_draft_orders','complete','2025-06-04 14:25:25','2025-06-04 16:25:25',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1749047125;s:18:\"\0*\0first_timestamp\";i:1722863558;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1749047125;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',2,1,'2025-06-04 14:50:58','2025-06-04 16:50:58',0,NULL), +(2390,'wp_mail_smtp_admin_notifications_update','complete','2025-06-04 14:25:25','2025-06-04 16:25:25',10,'[1]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1749047125;s:18:\"\0*\0first_timestamp\";i:1732553416;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1749047125;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',6,1,'2025-06-04 14:50:58','2025-06-04 16:50:58',0,NULL), +(2391,'wc-admin_import_orders','complete','2025-06-04 11:13:36','2025-06-04 13:13:36',10,'[923]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1749035616;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1749035616;}',4,1,'2025-06-04 11:20:58','2025-06-04 13:20:58',0,NULL), +(2392,'woocommerce_cleanup_draft_orders','complete','2025-06-05 14:50:58','2025-06-05 16:50:58',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1749135058;s:18:\"\0*\0first_timestamp\";i:1722863558;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1749135058;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',2,1,'2025-06-05 15:01:14','2025-06-05 17:01:14',0,NULL), +(2393,'wp_mail_smtp_admin_notifications_update','complete','2025-06-05 14:50:58','2025-06-05 16:50:58',10,'[1]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1749135058;s:18:\"\0*\0first_timestamp\";i:1732553416;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1749135058;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',6,1,'2025-06-05 15:01:14','2025-06-05 17:01:14',0,NULL), +(2394,'wc-admin_import_orders','complete','2025-06-05 07:44:50','2025-06-05 09:44:50',10,'[924]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1749109490;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1749109490;}',4,1,'2025-06-05 07:45:47','2025-06-05 09:45:47',0,NULL), +(2395,'wc-admin_import_orders','complete','2025-06-05 07:45:53','2025-06-05 09:45:53',10,'[924]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1749109553;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1749109553;}',4,1,'2025-06-05 07:49:35','2025-06-05 09:49:35',0,NULL), +(2396,'woocommerce_cleanup_draft_orders','complete','2025-06-06 15:01:14','2025-06-06 17:01:14',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1749222074;s:18:\"\0*\0first_timestamp\";i:1722863558;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1749222074;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',2,1,'2025-06-06 15:20:27','2025-06-06 17:20:27',0,NULL), +(2397,'wp_mail_smtp_admin_notifications_update','complete','2025-06-06 15:01:14','2025-06-06 17:01:14',10,'[1]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1749222074;s:18:\"\0*\0first_timestamp\";i:1732553416;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1749222074;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',6,1,'2025-06-06 15:20:27','2025-06-06 17:20:27',0,NULL), +(2398,'woocommerce_cleanup_draft_orders','complete','2025-06-07 15:20:27','2025-06-07 17:20:27',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1749309627;s:18:\"\0*\0first_timestamp\";i:1722863558;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1749309627;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',2,1,'2025-06-07 15:21:21','2025-06-07 17:21:21',0,NULL), +(2399,'wp_mail_smtp_admin_notifications_update','complete','2025-06-07 15:20:27','2025-06-07 17:20:27',10,'[1]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1749309627;s:18:\"\0*\0first_timestamp\";i:1732553416;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1749309627;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',6,1,'2025-06-07 15:21:22','2025-06-07 17:21:22',0,NULL), +(2400,'woocommerce_cleanup_draft_orders','complete','2025-06-08 15:21:21','2025-06-08 17:21:21',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1749396081;s:18:\"\0*\0first_timestamp\";i:1722863558;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1749396081;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',2,1,'2025-06-08 15:39:25','2025-06-08 17:39:25',0,NULL), +(2401,'wp_mail_smtp_admin_notifications_update','complete','2025-06-08 15:21:22','2025-06-08 17:21:22',10,'[1]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1749396082;s:18:\"\0*\0first_timestamp\";i:1732553416;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1749396082;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',6,1,'2025-06-08 15:39:26','2025-06-08 17:39:26',0,NULL), +(2402,'woocommerce_cleanup_draft_orders','complete','2025-06-09 15:39:25','2025-06-09 17:39:25',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1749483565;s:18:\"\0*\0first_timestamp\";i:1722863558;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1749483565;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',2,1,'2025-06-09 15:58:51','2025-06-09 17:58:51',0,NULL), +(2403,'wp_mail_smtp_admin_notifications_update','complete','2025-06-09 15:39:26','2025-06-09 17:39:26',10,'[1]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1749483566;s:18:\"\0*\0first_timestamp\";i:1732553416;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1749483566;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',6,1,'2025-06-09 15:58:51','2025-06-09 17:58:51',0,NULL), +(2404,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-08 20:23:59','2025-06-08 22:23:59',10,'[282,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1749414239;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1749414239;}',3,1,'2025-06-08 20:45:42','2025-06-08 22:45:42',0,NULL), +(2405,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-08 20:23:59','2025-06-08 22:23:59',10,'[276,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1749414239;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1749414239;}',3,1,'2025-06-08 20:45:42','2025-06-08 22:45:42',0,NULL), +(2406,'wc-admin_import_orders','complete','2025-06-09 11:00:01','2025-06-09 13:00:01',10,'[924]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1749466801;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1749466801;}',4,1,'2025-06-09 11:00:49','2025-06-09 13:00:49',0,NULL), +(2407,'woocommerce_cleanup_draft_orders','complete','2025-06-10 15:58:51','2025-06-10 17:58:51',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1749571131;s:18:\"\0*\0first_timestamp\";i:1722863558;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1749571131;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',2,1,'2025-06-10 16:23:04','2025-06-10 18:23:04',0,NULL), +(2408,'wp_mail_smtp_admin_notifications_update','complete','2025-06-10 15:58:51','2025-06-10 17:58:51',10,'[1]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1749571131;s:18:\"\0*\0first_timestamp\";i:1732553416;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1749571131;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',6,1,'2025-06-10 16:23:04','2025-06-10 18:23:04',0,NULL), +(2409,'wp_mail_smtp_summary_report_email','complete','2025-06-17 02:51:53','2025-06-17 04:51:53',10,'[null]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1750128713;s:18:\"\0*\0first_timestamp\";i:1733144400;s:13:\"\0*\0recurrence\";i:604800;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1750128713;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:604800;}',6,1,'2025-06-17 04:02:35','2025-06-17 06:02:35',0,NULL), +(2410,'woocommerce_cleanup_draft_orders','complete','2025-06-11 16:23:04','2025-06-11 18:23:04',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1749658984;s:18:\"\0*\0first_timestamp\";i:1722863558;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1749658984;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',2,1,'2025-06-11 16:25:54','2025-06-11 18:25:54',0,NULL), +(2411,'wp_mail_smtp_admin_notifications_update','complete','2025-06-11 16:23:04','2025-06-11 18:23:04',10,'[1]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1749658984;s:18:\"\0*\0first_timestamp\";i:1732553416;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1749658984;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',6,1,'2025-06-11 16:25:54','2025-06-11 18:25:54',0,NULL), +(2412,'woocommerce_cleanup_draft_orders','complete','2025-06-12 16:25:54','2025-06-12 18:25:54',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1749745554;s:18:\"\0*\0first_timestamp\";i:1722863558;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1749745554;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',2,1,'2025-06-12 16:31:42','2025-06-12 18:31:42',0,NULL), +(2413,'wp_mail_smtp_admin_notifications_update','complete','2025-06-12 16:25:54','2025-06-12 18:25:54',10,'[1]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1749745554;s:18:\"\0*\0first_timestamp\";i:1732553416;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1749745554;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',6,1,'2025-06-12 16:31:42','2025-06-12 18:31:42',0,NULL), +(2414,'woocommerce_cleanup_draft_orders','complete','2025-06-13 16:31:42','2025-06-13 18:31:42',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1749832302;s:18:\"\0*\0first_timestamp\";i:1722863558;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1749832302;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',2,1,'2025-06-13 16:32:59','2025-06-13 18:32:59',0,NULL), +(2415,'wp_mail_smtp_admin_notifications_update','complete','2025-06-13 16:31:42','2025-06-13 18:31:42',10,'[1]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1749832302;s:18:\"\0*\0first_timestamp\";i:1732553416;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1749832302;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',6,1,'2025-06-13 16:32:59','2025-06-13 18:32:59',0,NULL), +(2416,'fetch_patterns','complete','2025-06-12 16:49:47','2025-06-12 18:49:47',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1749746987;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1749746987;}',2,1,'2025-06-12 16:51:22','2025-06-12 18:51:22',0,NULL), +(2417,'woocommerce_run_update_callback','complete','2025-06-12 16:50:03','2025-06-12 18:50:03',10,'{\"update_callback\":\"wc_update_990_remove_wc_count_comments_transient\"}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1749747003;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1749747003;}',3,1,'2025-06-12 16:51:22','2025-06-12 18:51:22',0,NULL), +(2418,'woocommerce_run_update_callback','complete','2025-06-12 16:50:04','2025-06-12 18:50:04',10,'{\"update_callback\":\"wc_update_990_remove_email_notes\"}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1749747004;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1749747004;}',3,1,'2025-06-12 16:51:22','2025-06-12 18:51:22',0,NULL), +(2419,'woocommerce_update_db_to_current_version','complete','2025-06-12 16:50:05','2025-06-12 18:50:05',10,'{\"version\":\"9.9.3\"}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1749747005;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1749747005;}',3,1,'2025-06-12 16:51:22','2025-06-12 18:51:22',0,NULL), +(2420,'woocommerce_refresh_order_count_cache','complete','2025-06-13 04:50:03','2025-06-13 06:50:03',10,'[\"shop_order\"]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1749790203;s:18:\"\0*\0first_timestamp\";i:1749790203;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1749790203;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',9,1,'2025-06-13 04:51:28','2025-06-13 06:51:28',0,NULL), +(2421,'woocommerce_refresh_order_count_cache','complete','2025-06-13 16:51:28','2025-06-13 18:51:28',10,'[\"shop_order\"]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1749833488;s:18:\"\0*\0first_timestamp\";i:1749790203;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1749833488;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',9,1,'2025-06-13 17:27:39','2025-06-13 19:27:39',0,NULL), +(2422,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-13 08:38:01','2025-06-13 10:38:01',10,'[540,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1749803881;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1749803881;}',3,1,'2025-06-13 08:38:27','2025-06-13 10:38:27',0,NULL), +(2423,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-13 08:38:01','2025-06-13 10:38:01',10,'[541,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1749803881;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1749803881;}',3,1,'2025-06-13 08:38:27','2025-06-13 10:38:27',0,NULL), +(2424,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-13 08:38:01','2025-06-13 10:38:01',10,'[535,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1749803881;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1749803881;}',3,1,'2025-06-13 08:38:27','2025-06-13 10:38:27',0,NULL), +(2425,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-13 08:38:33','2025-06-13 10:38:33',10,'[534,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1749803913;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1749803913;}',3,1,'2025-06-13 08:38:45','2025-06-13 10:38:45',0,NULL), +(2426,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-13 08:38:33','2025-06-13 10:38:33',10,'[161,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1749803913;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1749803913;}',3,1,'2025-06-13 08:38:45','2025-06-13 10:38:45',0,NULL), +(2427,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-13 08:38:33','2025-06-13 10:38:33',10,'[162,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1749803913;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1749803913;}',3,1,'2025-06-13 08:38:45','2025-06-13 10:38:45',0,NULL), +(2428,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-13 08:38:33','2025-06-13 10:38:33',10,'[156,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1749803913;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1749803913;}',3,1,'2025-06-13 08:38:45','2025-06-13 10:38:45',0,NULL), +(2429,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-13 08:38:33','2025-06-13 10:38:33',10,'[157,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1749803913;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1749803913;}',3,1,'2025-06-13 08:38:45','2025-06-13 10:38:45',0,NULL), +(2430,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-13 08:38:33','2025-06-13 10:38:33',10,'[158,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1749803913;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1749803913;}',3,1,'2025-06-13 08:38:45','2025-06-13 10:38:45',0,NULL), +(2431,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-13 08:38:33','2025-06-13 10:38:33',10,'[159,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1749803913;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1749803913;}',3,1,'2025-06-13 08:38:45','2025-06-13 10:38:45',0,NULL), +(2432,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-13 08:38:33','2025-06-13 10:38:33',10,'[160,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1749803913;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1749803913;}',3,1,'2025-06-13 08:38:45','2025-06-13 10:38:45',0,NULL), +(2433,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-13 08:38:33','2025-06-13 10:38:33',10,'[155,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1749803913;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1749803913;}',3,1,'2025-06-13 08:38:45','2025-06-13 10:38:45',0,NULL), +(2434,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-13 08:38:33','2025-06-13 10:38:33',10,'[533,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1749803913;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1749803913;}',3,1,'2025-06-13 08:38:45','2025-06-13 10:38:45',0,NULL), +(2435,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-13 08:38:33','2025-06-13 10:38:33',10,'[147,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1749803913;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1749803913;}',3,1,'2025-06-13 08:38:45','2025-06-13 10:38:45',0,NULL), +(2436,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-13 08:38:33','2025-06-13 10:38:33',10,'[148,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1749803913;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1749803913;}',3,1,'2025-06-13 08:38:46','2025-06-13 10:38:46',0,NULL), +(2437,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-13 08:38:33','2025-06-13 10:38:33',10,'[149,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1749803913;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1749803913;}',3,1,'2025-06-13 08:38:46','2025-06-13 10:38:46',0,NULL), +(2438,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-13 08:38:33','2025-06-13 10:38:33',10,'[150,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1749803913;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1749803913;}',3,1,'2025-06-13 08:38:46','2025-06-13 10:38:46',0,NULL), +(2439,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-13 08:38:33','2025-06-13 10:38:33',10,'[151,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1749803913;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1749803913;}',3,1,'2025-06-13 08:38:46','2025-06-13 10:38:46',0,NULL), +(2440,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-13 08:38:33','2025-06-13 10:38:33',10,'[145,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1749803913;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1749803913;}',3,1,'2025-06-13 08:38:46','2025-06-13 10:38:46',0,NULL), +(2441,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-13 08:38:33','2025-06-13 10:38:33',10,'[146,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1749803913;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1749803913;}',3,1,'2025-06-13 08:38:46','2025-06-13 10:38:46',0,NULL), +(2442,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-13 08:38:33','2025-06-13 10:38:33',10,'[144,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1749803913;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1749803913;}',3,1,'2025-06-13 08:38:46','2025-06-13 10:38:46',0,NULL), +(2443,'woocommerce_cleanup_draft_orders','complete','2025-06-14 16:32:59','2025-06-14 18:32:59',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1749918779;s:18:\"\0*\0first_timestamp\";i:1722863558;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1749918779;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',2,1,'2025-06-14 16:59:16','2025-06-14 18:59:16',0,NULL), +(2444,'wp_mail_smtp_admin_notifications_update','complete','2025-06-14 16:32:59','2025-06-14 18:32:59',10,'[1]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1749918779;s:18:\"\0*\0first_timestamp\";i:1732553416;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1749918779;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',6,1,'2025-06-14 16:59:16','2025-06-14 18:59:16',0,NULL), +(2445,'woocommerce_refresh_order_count_cache','complete','2025-06-14 05:27:39','2025-06-14 07:27:39',10,'[\"shop_order\"]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1749878859;s:18:\"\0*\0first_timestamp\";i:1749790203;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1749878859;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',9,1,'2025-06-14 05:48:31','2025-06-14 07:48:31',0,NULL), +(2446,'woocommerce_refresh_order_count_cache','complete','2025-06-14 17:48:31','2025-06-14 19:48:31',10,'[\"shop_order\"]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1749923311;s:18:\"\0*\0first_timestamp\";i:1749790203;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1749923311;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',9,1,'2025-06-14 18:00:53','2025-06-14 20:00:53',0,NULL), +(2447,'woocommerce_cleanup_draft_orders','complete','2025-06-15 16:59:16','2025-06-15 18:59:16',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1750006756;s:18:\"\0*\0first_timestamp\";i:1722863558;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1750006756;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',2,1,'2025-06-15 17:19:05','2025-06-15 19:19:05',0,NULL), +(2448,'wp_mail_smtp_admin_notifications_update','complete','2025-06-15 16:59:16','2025-06-15 18:59:16',10,'[1]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1750006756;s:18:\"\0*\0first_timestamp\";i:1732553416;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1750006756;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',6,1,'2025-06-15 17:19:05','2025-06-15 19:19:05',0,NULL), +(2449,'woocommerce_refresh_order_count_cache','complete','2025-06-15 06:00:53','2025-06-15 08:00:53',10,'[\"shop_order\"]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1749967253;s:18:\"\0*\0first_timestamp\";i:1749790203;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1749967253;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',9,1,'2025-06-15 06:30:14','2025-06-15 08:30:14',0,NULL), +(2450,'woocommerce_refresh_order_count_cache','complete','2025-06-15 18:30:14','2025-06-15 20:30:14',10,'[\"shop_order\"]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1750012214;s:18:\"\0*\0first_timestamp\";i:1749790203;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1750012214;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',9,1,'2025-06-15 18:30:56','2025-06-15 20:30:56',0,NULL), +(2451,'woocommerce_cleanup_draft_orders','complete','2025-06-16 17:19:05','2025-06-16 19:19:05',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1750094345;s:18:\"\0*\0first_timestamp\";i:1722863558;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1750094345;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',2,1,'2025-06-16 17:54:06','2025-06-16 19:54:06',0,NULL), +(2452,'wp_mail_smtp_admin_notifications_update','complete','2025-06-16 17:19:05','2025-06-16 19:19:05',10,'[1]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1750094345;s:18:\"\0*\0first_timestamp\";i:1732553416;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1750094345;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',6,1,'2025-06-16 17:54:06','2025-06-16 19:54:06',0,NULL), +(2453,'woocommerce_refresh_order_count_cache','complete','2025-06-16 06:30:56','2025-06-16 08:30:56',10,'[\"shop_order\"]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1750055456;s:18:\"\0*\0first_timestamp\";i:1749790203;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1750055456;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',9,1,'2025-06-16 06:31:59','2025-06-16 08:31:59',0,NULL), +(2454,'woocommerce_refresh_order_count_cache','complete','2025-06-16 18:31:59','2025-06-16 20:31:59',10,'[\"shop_order\"]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1750098719;s:18:\"\0*\0first_timestamp\";i:1749790203;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1750098719;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',9,1,'2025-06-16 18:36:49','2025-06-16 20:36:49',0,NULL), +(2455,'woocommerce_cleanup_draft_orders','complete','2025-06-17 17:54:06','2025-06-17 19:54:06',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1750182846;s:18:\"\0*\0first_timestamp\";i:1722863558;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1750182846;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',2,1,'2025-06-17 18:12:19','2025-06-17 20:12:19',0,NULL), +(2456,'wp_mail_smtp_admin_notifications_update','complete','2025-06-17 17:54:06','2025-06-17 19:54:06',10,'[1]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1750182846;s:18:\"\0*\0first_timestamp\";i:1732553416;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1750182846;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',6,1,'2025-06-17 18:12:19','2025-06-17 20:12:19',0,NULL), +(2457,'woocommerce_refresh_order_count_cache','complete','2025-06-17 06:36:49','2025-06-17 08:36:49',10,'[\"shop_order\"]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1750142209;s:18:\"\0*\0first_timestamp\";i:1749790203;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1750142209;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',9,1,'2025-06-17 06:46:21','2025-06-17 08:46:21',0,NULL), +(2458,'wp_mail_smtp_summary_report_email','pending','2025-06-24 04:02:35','2025-06-24 06:02:35',10,'[null]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1750737755;s:18:\"\0*\0first_timestamp\";i:1733144400;s:13:\"\0*\0recurrence\";i:604800;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1750737755;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:604800;}',6,0,'0000-00-00 00:00:00','0000-00-00 00:00:00',0,NULL), +(2459,'wc_delete_related_product_transients_async','complete','2025-06-17 06:01:29','2025-06-17 08:01:29',10,'{\"post_id\":521}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750140089;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750140089;}',8,1,'2025-06-17 06:02:02','2025-06-17 08:02:02',0,NULL), +(2460,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-17 06:01:30','2025-06-17 08:01:30',10,'[522,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750140090;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750140090;}',3,1,'2025-06-17 06:02:02','2025-06-17 08:02:02',0,NULL), +(2461,'wc_delete_related_product_transients_async','complete','2025-06-17 06:09:14','2025-06-17 08:09:14',10,'{\"post_id\":521}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750140554;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750140554;}',8,1,'2025-06-17 06:09:26','2025-06-17 08:09:26',0,NULL), +(2462,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-17 06:09:15','2025-06-17 08:09:15',10,'[521,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750140555;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750140555;}',3,1,'2025-06-17 06:09:26','2025-06-17 08:09:26',0,NULL), +(2463,'wc_delete_related_product_transients_async','complete','2025-06-17 06:09:31','2025-06-17 08:09:31',10,'{\"post_id\":521}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750140571;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750140571;}',8,1,'2025-06-17 06:09:43','2025-06-17 08:09:43',0,NULL), +(2464,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-17 06:09:32','2025-06-17 08:09:32',10,'[521,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750140572;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750140572;}',3,1,'2025-06-17 06:09:43','2025-06-17 08:09:43',0,NULL), +(2465,'wc_delete_related_product_transients_async','complete','2025-06-17 06:09:43','2025-06-17 08:09:43',10,'{\"post_id\":926}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750140583;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750140583;}',8,1,'2025-06-17 06:09:43','2025-06-17 08:09:43',0,NULL), +(2466,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-17 06:09:44','2025-06-17 08:09:44',10,'[926,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750140584;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750140584;}',3,1,'2025-06-17 06:09:48','2025-06-17 08:09:48',0,NULL), +(2467,'wc_delete_related_product_transients_async','complete','2025-06-17 06:10:30','2025-06-17 08:10:30',10,'{\"post_id\":521}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750140630;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750140630;}',8,1,'2025-06-17 06:10:46','2025-06-17 08:10:46',0,NULL), +(2468,'wc_delete_related_product_transients_async','complete','2025-06-17 06:10:30','2025-06-17 08:10:30',10,'{\"post_id\":926}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750140630;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750140630;}',8,1,'2025-06-17 06:10:46','2025-06-17 08:10:46',0,NULL), +(2469,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-17 06:10:31','2025-06-17 08:10:31',10,'[926,2]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750140631;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750140631;}',3,1,'2025-06-17 06:10:46','2025-06-17 08:10:46',0,NULL), +(2470,'wc_delete_related_product_transients_async','complete','2025-06-17 06:10:52','2025-06-17 08:10:52',10,'{\"post_id\":521}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750140652;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750140652;}',8,1,'2025-06-17 06:11:26','2025-06-17 08:11:26',0,NULL), +(2471,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-17 06:10:53','2025-06-17 08:10:53',10,'[521,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750140653;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750140653;}',3,1,'2025-06-17 06:11:26','2025-06-17 08:11:26',0,NULL), +(2472,'wc_delete_related_product_transients_async','complete','2025-06-17 06:13:27','2025-06-17 08:13:27',10,'{\"post_id\":515}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750140807;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750140807;}',8,1,'2025-06-17 06:14:16','2025-06-17 08:14:16',0,NULL), +(2473,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-17 06:13:28','2025-06-17 08:13:28',10,'[519,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750140808;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750140808;}',3,1,'2025-06-17 06:14:16','2025-06-17 08:14:16',0,NULL), +(2474,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-17 06:13:28','2025-06-17 08:13:28',10,'[520,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750140808;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750140808;}',3,1,'2025-06-17 06:14:16','2025-06-17 08:14:16',0,NULL), +(2475,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-17 06:13:28','2025-06-17 08:13:28',10,'[515,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750140808;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750140808;}',3,1,'2025-06-17 06:14:16','2025-06-17 08:14:16',0,NULL), +(2476,'wc_delete_related_product_transients_async','complete','2025-06-17 06:19:09','2025-06-17 08:19:09',10,'{\"post_id\":342}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750141149;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750141149;}',8,1,'2025-06-17 06:20:25','2025-06-17 08:20:25',0,NULL), +(2477,'wc_delete_related_product_transients_async','complete','2025-06-17 06:19:09','2025-06-17 08:19:09',10,'{\"post_id\":560}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750141149;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750141149;}',8,1,'2025-06-17 06:20:25','2025-06-17 08:20:25',0,NULL), +(2478,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-17 06:19:10','2025-06-17 08:19:10',10,'[560,2]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750141150;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750141150;}',3,1,'2025-06-17 06:20:25','2025-06-17 08:20:25',0,NULL), +(2479,'wc_delete_related_product_transients_async','complete','2025-06-17 06:19:09','2025-06-17 08:19:09',10,'{\"post_id\":561}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750141149;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750141149;}',8,1,'2025-06-17 06:20:25','2025-06-17 08:20:25',0,NULL), +(2480,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-17 06:19:10','2025-06-17 08:19:10',10,'[561,2]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750141150;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750141150;}',3,1,'2025-06-17 06:20:25','2025-06-17 08:20:25',0,NULL), +(2481,'wc_delete_related_product_transients_async','complete','2025-06-17 06:19:09','2025-06-17 08:19:09',10,'{\"post_id\":562}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750141149;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750141149;}',8,1,'2025-06-17 06:20:25','2025-06-17 08:20:25',0,NULL), +(2482,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-17 06:19:10','2025-06-17 08:19:10',10,'[562,2]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750141150;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750141150;}',3,1,'2025-06-17 06:20:25','2025-06-17 08:20:25',0,NULL), +(2483,'wc_delete_related_product_transients_async','complete','2025-06-17 06:19:09','2025-06-17 08:19:09',10,'{\"post_id\":563}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750141149;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750141149;}',8,1,'2025-06-17 06:20:25','2025-06-17 08:20:25',0,NULL), +(2484,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-17 06:19:10','2025-06-17 08:19:10',10,'[563,2]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750141150;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750141150;}',3,1,'2025-06-17 06:20:25','2025-06-17 08:20:25',0,NULL), +(2485,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-17 06:19:16','2025-06-17 08:19:16',10,'[342,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750141156;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750141156;}',3,1,'2025-06-17 06:20:25','2025-06-17 08:20:25',0,NULL), +(2486,'wc_delete_related_product_transients_async','complete','2025-06-17 06:25:09','2025-06-17 08:25:09',10,'{\"post_id\":496}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750141509;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750141509;}',8,1,'2025-06-17 06:25:09','2025-06-17 08:25:09',0,NULL), +(2487,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-17 06:25:10','2025-06-17 08:25:10',10,'[496,2]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750141510;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750141510;}',3,1,'2025-06-17 06:25:14','2025-06-17 08:25:14',0,NULL), +(2488,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-17 06:25:42','2025-06-17 08:25:42',10,'[478,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750141542;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750141542;}',3,1,'2025-06-17 06:26:11','2025-06-17 08:26:11',0,NULL), +(2489,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-17 06:25:42','2025-06-17 08:25:42',10,'[479,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750141542;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750141542;}',3,1,'2025-06-17 06:26:11','2025-06-17 08:26:11',0,NULL), +(2490,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-17 06:25:42','2025-06-17 08:25:42',10,'[480,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750141542;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750141542;}',3,1,'2025-06-17 06:26:11','2025-06-17 08:26:11',0,NULL), +(2491,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-17 06:25:42','2025-06-17 08:25:42',10,'[433,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750141542;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750141542;}',3,1,'2025-06-17 06:26:11','2025-06-17 08:26:11',0,NULL), +(2492,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-17 06:25:53','2025-06-17 08:25:53',10,'[845,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750141553;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750141553;}',3,1,'2025-06-17 06:26:11','2025-06-17 08:26:11',0,NULL), +(2493,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-17 06:25:53','2025-06-17 08:25:53',10,'[846,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750141553;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750141553;}',3,1,'2025-06-17 06:26:11','2025-06-17 08:26:11',0,NULL), +(2494,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-17 06:25:53','2025-06-17 08:25:53',10,'[847,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750141553;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750141553;}',3,1,'2025-06-17 06:26:11','2025-06-17 08:26:11',0,NULL), +(2495,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-17 06:25:53','2025-06-17 08:25:53',10,'[430,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750141553;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750141553;}',3,1,'2025-06-17 06:26:11','2025-06-17 08:26:11',0,NULL), +(2496,'wc_delete_related_product_transients_async','complete','2025-06-17 06:33:17','2025-06-17 08:33:17',10,'{\"post_id\":398}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750141997;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750141997;}',8,1,'2025-06-17 06:33:28','2025-06-17 08:33:28',0,NULL), +(2497,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-17 06:33:18','2025-06-17 08:33:18',10,'[398,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750141998;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750141998;}',3,1,'2025-06-17 06:33:28','2025-06-17 08:33:28',0,NULL), +(2498,'wc_delete_related_product_transients_async','complete','2025-06-17 06:33:37','2025-06-17 08:33:37',10,'{\"post_id\":398}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750142017;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750142017;}',8,1,'2025-06-17 06:34:19','2025-06-17 08:34:19',0,NULL), +(2499,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-17 06:33:38','2025-06-17 08:33:38',10,'[398,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750142018;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750142018;}',3,1,'2025-06-17 06:34:19','2025-06-17 08:34:19',0,NULL), +(2500,'wc_delete_related_product_transients_async','complete','2025-06-17 06:35:24','2025-06-17 08:35:24',10,'{\"post_id\":393}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750142124;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750142124;}',8,1,'2025-06-17 06:35:26','2025-06-17 08:35:26',0,NULL), +(2501,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-17 06:35:25','2025-06-17 08:35:25',10,'[393,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750142125;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750142125;}',3,1,'2025-06-17 06:35:26','2025-06-17 08:35:26',0,NULL), +(2502,'woocommerce_refresh_order_count_cache','complete','2025-06-17 18:46:21','2025-06-17 20:46:21',10,'[\"shop_order\"]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1750185981;s:18:\"\0*\0first_timestamp\";i:1749790203;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1750185981;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',9,1,'2025-06-17 18:48:25','2025-06-17 20:48:25',0,NULL), +(2503,'wc_delete_related_product_transients_async','complete','2025-06-17 07:46:46','2025-06-17 09:46:46',10,'{\"post_id\":490}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750146406;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750146406;}',8,1,'2025-06-17 07:47:28','2025-06-17 09:47:28',0,NULL), +(2504,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-17 07:46:47','2025-06-17 09:46:47',10,'[490,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750146407;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750146407;}',3,1,'2025-06-17 07:47:28','2025-06-17 09:47:28',0,NULL), +(2505,'wc_delete_related_product_transients_async','complete','2025-06-17 08:21:21','2025-06-17 10:21:21',10,'{\"post_id\":554}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750148481;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750148481;}',8,1,'2025-06-17 08:21:26','2025-06-17 10:21:26',0,NULL), +(2506,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-17 08:21:22','2025-06-17 10:21:22',10,'[554,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750148482;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750148482;}',3,1,'2025-06-17 08:21:26','2025-06-17 10:21:26',0,NULL), +(2507,'wc_delete_related_product_transients_async','complete','2025-06-17 08:23:24','2025-06-17 10:23:24',10,'{\"post_id\":545}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750148604;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750148604;}',8,1,'2025-06-17 08:23:27','2025-06-17 10:23:27',0,NULL), +(2508,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-17 08:23:25','2025-06-17 10:23:25',10,'[545,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750148605;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750148605;}',3,1,'2025-06-17 08:23:27','2025-06-17 10:23:27',0,NULL), +(2509,'wc_delete_related_product_transients_async','complete','2025-06-17 08:27:36','2025-06-17 10:27:36',10,'{\"post_id\":447}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750148856;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750148856;}',8,1,'2025-06-17 08:28:27','2025-06-17 10:28:27',0,NULL), +(2510,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-17 08:27:37','2025-06-17 10:27:37',10,'[447,2]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750148857;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750148857;}',3,1,'2025-06-17 08:28:27','2025-06-17 10:28:27',0,NULL), +(2511,'wc_delete_related_product_transients_async','complete','2025-06-17 08:28:57','2025-06-17 10:28:57',10,'{\"post_id\":435}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750148937;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750148937;}',8,1,'2025-06-17 08:29:26','2025-06-17 10:29:26',0,NULL), +(2512,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-17 08:28:58','2025-06-17 10:28:58',10,'[435,2]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750148938;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750148938;}',3,1,'2025-06-17 08:29:26','2025-06-17 10:29:26',0,NULL), +(2513,'woocommerce_cleanup_draft_orders','complete','2025-06-18 18:12:19','2025-06-18 20:12:19',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1750270339;s:18:\"\0*\0first_timestamp\";i:1722863558;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1750270339;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',2,1,'2025-06-18 18:28:36','2025-06-18 20:28:36',0,NULL), +(2514,'wp_mail_smtp_admin_notifications_update','complete','2025-06-18 18:12:19','2025-06-18 20:12:19',10,'[1]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1750270339;s:18:\"\0*\0first_timestamp\";i:1732553416;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1750270339;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',6,1,'2025-06-18 18:28:36','2025-06-18 20:28:36',0,NULL), +(2515,'woocommerce_refresh_order_count_cache','complete','2025-06-18 06:48:25','2025-06-18 08:48:25',10,'[\"shop_order\"]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1750229305;s:18:\"\0*\0first_timestamp\";i:1749790203;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1750229305;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',9,1,'2025-06-18 06:50:55','2025-06-18 08:50:55',0,NULL), +(2516,'woocommerce_refresh_order_count_cache','failed','2025-06-18 18:50:55','2025-06-18 20:50:55',10,'[\"shop_order\"]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1750272655;s:18:\"\0*\0first_timestamp\";i:1749790203;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1750272655;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',9,1,'2025-06-18 18:51:12','2025-06-18 20:51:12',0,NULL), +(2517,'wc_delete_related_product_transients_async','complete','2025-06-18 17:33:21','2025-06-18 19:33:21',10,'{\"post_id\":941}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750268001;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750268001;}',8,1,'2025-06-18 17:33:26','2025-06-18 19:33:26',0,NULL), +(2518,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-18 17:33:22','2025-06-18 19:33:22',10,'[941,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750268002;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750268002;}',3,1,'2025-06-18 17:33:26','2025-06-18 19:33:26',0,NULL), +(2519,'wc_delete_related_product_transients_async','complete','2025-06-18 17:33:26','2025-06-18 19:33:26',10,'{\"post_id\":944}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750268006;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750268006;}',8,1,'2025-06-18 17:33:26','2025-06-18 19:33:26',0,NULL), +(2520,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-18 17:33:27','2025-06-18 19:33:27',10,'[944,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750268007;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750268007;}',3,1,'2025-06-18 17:33:47','2025-06-18 19:33:47',0,NULL), +(2521,'wc_delete_related_product_transients_async','complete','2025-06-18 17:33:26','2025-06-18 19:33:26',10,'{\"post_id\":945}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750268006;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750268006;}',8,1,'2025-06-18 17:33:26','2025-06-18 19:33:26',0,NULL), +(2522,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-18 17:33:27','2025-06-18 19:33:27',10,'[945,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750268007;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750268007;}',3,1,'2025-06-18 17:33:47','2025-06-18 19:33:47',0,NULL), +(2523,'wc_delete_related_product_transients_async','complete','2025-06-18 17:33:26','2025-06-18 19:33:26',10,'{\"post_id\":946}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750268006;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750268006;}',8,1,'2025-06-18 17:33:47','2025-06-18 19:33:47',0,NULL), +(2524,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-18 17:33:27','2025-06-18 19:33:27',10,'[946,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750268007;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750268007;}',3,1,'2025-06-18 17:33:47','2025-06-18 19:33:47',0,NULL), +(2525,'wc_delete_related_product_transients_async','complete','2025-06-18 17:33:26','2025-06-18 19:33:26',10,'{\"post_id\":947}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750268006;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750268006;}',8,1,'2025-06-18 17:33:47','2025-06-18 19:33:47',0,NULL), +(2526,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-18 17:33:27','2025-06-18 19:33:27',10,'[947,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750268007;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750268007;}',3,1,'2025-06-18 17:33:47','2025-06-18 19:33:47',0,NULL), +(2527,'wc_delete_related_product_transients_async','complete','2025-06-18 17:33:26','2025-06-18 19:33:26',10,'{\"post_id\":948}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750268006;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750268006;}',8,1,'2025-06-18 17:33:47','2025-06-18 19:33:47',0,NULL), +(2528,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-18 17:33:27','2025-06-18 19:33:27',10,'[948,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750268007;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750268007;}',3,1,'2025-06-18 17:33:47','2025-06-18 19:33:47',0,NULL), +(2529,'wc_delete_related_product_transients_async','complete','2025-06-18 17:33:27','2025-06-18 19:33:27',10,'{\"post_id\":949}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750268007;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750268007;}',8,1,'2025-06-18 17:33:47','2025-06-18 19:33:47',0,NULL), +(2530,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-18 17:33:28','2025-06-18 19:33:28',10,'[949,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750268008;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750268008;}',3,1,'2025-06-18 17:33:47','2025-06-18 19:33:47',0,NULL), +(2531,'wc_delete_related_product_transients_async','complete','2025-06-18 17:33:27','2025-06-18 19:33:27',10,'{\"post_id\":950}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750268007;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750268007;}',8,1,'2025-06-18 17:33:47','2025-06-18 19:33:47',0,NULL), +(2532,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-18 17:33:28','2025-06-18 19:33:28',10,'[950,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750268008;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750268008;}',3,1,'2025-06-18 17:33:47','2025-06-18 19:33:47',0,NULL), +(2533,'wc_delete_related_product_transients_async','complete','2025-06-18 17:33:27','2025-06-18 19:33:27',10,'{\"post_id\":951}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750268007;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750268007;}',8,1,'2025-06-18 17:33:47','2025-06-18 19:33:47',0,NULL), +(2534,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-18 17:33:28','2025-06-18 19:33:28',10,'[951,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750268008;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750268008;}',3,1,'2025-06-18 17:33:47','2025-06-18 19:33:47',0,NULL), +(2535,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-18 17:33:28','2025-06-18 19:33:28',10,'[941,2]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750268008;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750268008;}',3,1,'2025-06-18 17:33:47','2025-06-18 19:33:47',0,NULL), +(2536,'wc_delete_related_product_transients_async','complete','2025-06-18 17:35:03','2025-06-18 19:35:03',10,'{\"post_id\":941}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750268103;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750268103;}',8,1,'2025-06-18 17:35:26','2025-06-18 19:35:26',0,NULL), +(2537,'wc_delete_related_product_transients_async','complete','2025-06-18 17:35:03','2025-06-18 19:35:03',10,'{\"post_id\":944}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750268103;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750268103;}',8,1,'2025-06-18 17:35:26','2025-06-18 19:35:26',0,NULL), +(2538,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-18 17:35:04','2025-06-18 19:35:04',10,'[944,2]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750268104;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750268104;}',3,1,'2025-06-18 17:35:26','2025-06-18 19:35:26',0,NULL), +(2539,'wc_delete_related_product_transients_async','complete','2025-06-18 17:35:03','2025-06-18 19:35:03',10,'{\"post_id\":945}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750268103;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750268103;}',8,1,'2025-06-18 17:35:26','2025-06-18 19:35:26',0,NULL), +(2540,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-18 17:35:04','2025-06-18 19:35:04',10,'[945,2]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750268104;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750268104;}',3,1,'2025-06-18 17:35:26','2025-06-18 19:35:26',0,NULL), +(2541,'wc_delete_related_product_transients_async','complete','2025-06-18 17:35:03','2025-06-18 19:35:03',10,'{\"post_id\":946}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750268103;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750268103;}',8,1,'2025-06-18 17:35:26','2025-06-18 19:35:26',0,NULL), +(2542,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-18 17:35:04','2025-06-18 19:35:04',10,'[946,2]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750268104;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750268104;}',3,1,'2025-06-18 17:35:26','2025-06-18 19:35:26',0,NULL), +(2543,'wc_delete_related_product_transients_async','complete','2025-06-18 17:35:03','2025-06-18 19:35:03',10,'{\"post_id\":947}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750268103;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750268103;}',8,1,'2025-06-18 17:35:26','2025-06-18 19:35:26',0,NULL), +(2544,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-18 17:35:05','2025-06-18 19:35:05',10,'[947,2]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750268105;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750268105;}',3,1,'2025-06-18 17:35:26','2025-06-18 19:35:26',0,NULL), +(2545,'wc_delete_related_product_transients_async','complete','2025-06-18 17:35:04','2025-06-18 19:35:04',10,'{\"post_id\":948}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750268104;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750268104;}',8,1,'2025-06-18 17:35:26','2025-06-18 19:35:26',0,NULL), +(2546,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-18 17:35:05','2025-06-18 19:35:05',10,'[948,2]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750268105;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750268105;}',3,1,'2025-06-18 17:35:26','2025-06-18 19:35:26',0,NULL), +(2547,'wc_delete_related_product_transients_async','complete','2025-06-18 17:35:04','2025-06-18 19:35:04',10,'{\"post_id\":949}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750268104;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750268104;}',8,1,'2025-06-18 17:35:26','2025-06-18 19:35:26',0,NULL), +(2548,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-18 17:35:05','2025-06-18 19:35:05',10,'[949,2]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750268105;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750268105;}',3,1,'2025-06-18 17:35:26','2025-06-18 19:35:26',0,NULL), +(2549,'wc_delete_related_product_transients_async','complete','2025-06-18 17:35:04','2025-06-18 19:35:04',10,'{\"post_id\":950}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750268104;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750268104;}',8,1,'2025-06-18 17:35:26','2025-06-18 19:35:26',0,NULL), +(2550,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-18 17:35:05','2025-06-18 19:35:05',10,'[950,2]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750268105;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750268105;}',3,1,'2025-06-18 17:35:26','2025-06-18 19:35:26',0,NULL), +(2551,'wc_delete_related_product_transients_async','complete','2025-06-18 17:35:04','2025-06-18 19:35:04',10,'{\"post_id\":951}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750268104;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750268104;}',8,1,'2025-06-18 17:35:26','2025-06-18 19:35:26',0,NULL), +(2552,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-18 17:35:05','2025-06-18 19:35:05',10,'[951,2]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750268105;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750268105;}',3,1,'2025-06-18 17:35:26','2025-06-18 19:35:26',0,NULL), +(2553,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-18 17:35:23','2025-06-18 19:35:23',10,'[941,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750268123;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750268123;}',3,1,'2025-06-18 17:35:26','2025-06-18 19:35:26',0,NULL), +(2554,'woocommerce_cleanup_draft_orders','complete','2025-06-19 18:28:36','2025-06-19 20:28:36',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1750357716;s:18:\"\0*\0first_timestamp\";i:1722863558;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1750357716;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',2,1,'2025-06-19 18:29:11','2025-06-19 20:29:11',0,NULL), +(2555,'wp_mail_smtp_admin_notifications_update','complete','2025-06-19 18:28:36','2025-06-19 20:28:36',10,'[1]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1750357716;s:18:\"\0*\0first_timestamp\";i:1732553416;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1750357716;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',6,1,'2025-06-19 18:29:11','2025-06-19 20:29:11',0,NULL), +(2556,'woocommerce_refresh_order_count_cache','complete','2025-06-19 06:51:12','2025-06-19 08:51:12',10,'[\"shop_order\"]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1750315872;s:18:\"\0*\0first_timestamp\";i:1749790203;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1750315872;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',9,1,'2025-06-19 07:00:39','2025-06-19 09:00:39',0,NULL), +(2557,'wc_delete_related_product_transients_async','complete','2025-06-18 20:19:27','2025-06-18 22:19:27',10,'{\"post_id\":941}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750277967;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750277967;}',8,1,'2025-06-18 20:20:11','2025-06-18 22:20:11',0,NULL), +(2558,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-18 20:19:28','2025-06-18 22:19:28',10,'[941,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750277968;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750277968;}',3,1,'2025-06-18 20:20:11','2025-06-18 22:20:11',0,NULL), +(2559,'wc_delete_related_product_transients_async','complete','2025-06-18 20:19:47','2025-06-18 22:19:47',10,'{\"post_id\":953}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750277987;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750277987;}',8,1,'2025-06-18 20:20:11','2025-06-18 22:20:11',0,NULL), +(2560,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-18 20:19:48','2025-06-18 22:19:48',10,'[953,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750277988;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750277988;}',3,1,'2025-06-18 20:20:11','2025-06-18 22:20:11',0,NULL), +(2561,'wc_delete_related_product_transients_async','complete','2025-06-18 20:19:47','2025-06-18 22:19:47',10,'{\"post_id\":954}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750277987;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750277987;}',8,1,'2025-06-18 20:20:11','2025-06-18 22:20:11',0,NULL), +(2562,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-18 20:19:48','2025-06-18 22:19:48',10,'[954,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750277988;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750277988;}',3,1,'2025-06-18 20:20:11','2025-06-18 22:20:11',0,NULL), +(2563,'wc_delete_related_product_transients_async','complete','2025-06-18 20:19:47','2025-06-18 22:19:47',10,'{\"post_id\":955}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750277987;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750277987;}',8,1,'2025-06-18 20:20:11','2025-06-18 22:20:11',0,NULL), +(2564,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-18 20:19:48','2025-06-18 22:19:48',10,'[955,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750277988;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750277988;}',3,1,'2025-06-18 20:20:11','2025-06-18 22:20:11',0,NULL), +(2565,'wc_delete_related_product_transients_async','complete','2025-06-18 20:19:47','2025-06-18 22:19:47',10,'{\"post_id\":956}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750277987;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750277987;}',8,1,'2025-06-18 20:20:11','2025-06-18 22:20:11',0,NULL), +(2566,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-18 20:19:48','2025-06-18 22:19:48',10,'[956,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750277988;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750277988;}',3,1,'2025-06-18 20:20:11','2025-06-18 22:20:11',0,NULL), +(2567,'wc_delete_related_product_transients_async','complete','2025-06-18 20:19:48','2025-06-18 22:19:48',10,'{\"post_id\":957}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750277988;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750277988;}',8,1,'2025-06-18 20:20:11','2025-06-18 22:20:11',0,NULL), +(2568,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-18 20:19:49','2025-06-18 22:19:49',10,'[957,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750277989;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750277989;}',3,1,'2025-06-18 20:20:11','2025-06-18 22:20:11',0,NULL), +(2569,'wc_delete_related_product_transients_async','complete','2025-06-18 20:19:48','2025-06-18 22:19:48',10,'{\"post_id\":958}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750277988;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750277988;}',8,1,'2025-06-18 20:20:11','2025-06-18 22:20:11',0,NULL), +(2570,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-18 20:19:49','2025-06-18 22:19:49',10,'[958,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750277989;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750277989;}',3,1,'2025-06-18 20:20:11','2025-06-18 22:20:11',0,NULL), +(2571,'wc_delete_related_product_transients_async','complete','2025-06-18 20:19:48','2025-06-18 22:19:48',10,'{\"post_id\":959}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750277988;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750277988;}',8,1,'2025-06-18 20:20:11','2025-06-18 22:20:11',0,NULL), +(2572,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-18 20:19:49','2025-06-18 22:19:49',10,'[959,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750277989;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750277989;}',3,1,'2025-06-18 20:20:11','2025-06-18 22:20:11',0,NULL), +(2573,'wc_delete_related_product_transients_async','complete','2025-06-18 20:19:48','2025-06-18 22:19:48',10,'{\"post_id\":960}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750277988;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750277988;}',8,1,'2025-06-18 20:20:11','2025-06-18 22:20:11',0,NULL), +(2574,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-18 20:19:49','2025-06-18 22:19:49',10,'[960,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750277989;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750277989;}',3,1,'2025-06-18 20:20:11','2025-06-18 22:20:11',0,NULL), +(2575,'wc_delete_related_product_transients_async','complete','2025-06-18 20:19:48','2025-06-18 22:19:48',10,'{\"post_id\":961}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750277988;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750277988;}',8,1,'2025-06-18 20:20:11','2025-06-18 22:20:11',0,NULL), +(2576,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-18 20:19:49','2025-06-18 22:19:49',10,'[961,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750277989;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750277989;}',3,1,'2025-06-18 20:20:11','2025-06-18 22:20:11',0,NULL), +(2577,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-18 20:19:49','2025-06-18 22:19:49',10,'[953,2]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750277989;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750277989;}',3,1,'2025-06-18 20:20:11','2025-06-18 22:20:11',0,NULL), +(2578,'wc_delete_related_product_transients_async','complete','2025-06-18 20:24:50','2025-06-18 22:24:50',10,'{\"post_id\":953}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750278290;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750278290;}',8,1,'2025-06-18 20:25:27','2025-06-18 22:25:27',0,NULL), +(2579,'wc_delete_related_product_transients_async','complete','2025-06-18 20:24:50','2025-06-18 22:24:50',10,'{\"post_id\":954}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750278290;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750278290;}',8,1,'2025-06-18 20:25:27','2025-06-18 22:25:27',0,NULL), +(2580,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-18 20:24:51','2025-06-18 22:24:51',10,'[954,2]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750278291;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750278291;}',3,1,'2025-06-18 20:25:27','2025-06-18 22:25:27',0,NULL), +(2581,'wc_delete_related_product_transients_async','complete','2025-06-18 20:24:50','2025-06-18 22:24:50',10,'{\"post_id\":955}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750278290;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750278290;}',8,1,'2025-06-18 20:25:27','2025-06-18 22:25:27',0,NULL), +(2582,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-18 20:24:51','2025-06-18 22:24:51',10,'[955,2]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750278291;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750278291;}',3,1,'2025-06-18 20:25:27','2025-06-18 22:25:27',0,NULL), +(2583,'wc_delete_related_product_transients_async','complete','2025-06-18 20:24:50','2025-06-18 22:24:50',10,'{\"post_id\":956}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750278290;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750278290;}',8,1,'2025-06-18 20:25:27','2025-06-18 22:25:27',0,NULL), +(2584,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-18 20:24:51','2025-06-18 22:24:51',10,'[956,2]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750278291;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750278291;}',3,1,'2025-06-18 20:25:27','2025-06-18 22:25:27',0,NULL), +(2585,'wc_delete_related_product_transients_async','complete','2025-06-18 20:24:50','2025-06-18 22:24:50',10,'{\"post_id\":957}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750278290;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750278290;}',8,1,'2025-06-18 20:25:27','2025-06-18 22:25:27',0,NULL), +(2586,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-18 20:24:51','2025-06-18 22:24:51',10,'[957,2]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750278291;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750278291;}',3,1,'2025-06-18 20:25:27','2025-06-18 22:25:27',0,NULL), +(2587,'wc_delete_related_product_transients_async','complete','2025-06-18 20:24:50','2025-06-18 22:24:50',10,'{\"post_id\":958}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750278290;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750278290;}',8,1,'2025-06-18 20:25:27','2025-06-18 22:25:27',0,NULL), +(2588,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-18 20:24:51','2025-06-18 22:24:51',10,'[958,2]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750278291;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750278291;}',3,1,'2025-06-18 20:25:27','2025-06-18 22:25:27',0,NULL), +(2589,'wc_delete_related_product_transients_async','complete','2025-06-18 20:24:50','2025-06-18 22:24:50',10,'{\"post_id\":959}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750278290;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750278290;}',8,1,'2025-06-18 20:25:27','2025-06-18 22:25:27',0,NULL), +(2590,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-18 20:24:51','2025-06-18 22:24:51',10,'[959,2]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750278291;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750278291;}',3,1,'2025-06-18 20:25:27','2025-06-18 22:25:27',0,NULL), +(2591,'wc_delete_related_product_transients_async','complete','2025-06-18 20:24:50','2025-06-18 22:24:50',10,'{\"post_id\":960}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750278290;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750278290;}',8,1,'2025-06-18 20:25:27','2025-06-18 22:25:27',0,NULL), +(2592,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-18 20:24:51','2025-06-18 22:24:51',10,'[960,2]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750278291;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750278291;}',3,1,'2025-06-18 20:25:27','2025-06-18 22:25:27',0,NULL), +(2593,'wc_delete_related_product_transients_async','complete','2025-06-18 20:24:50','2025-06-18 22:24:50',10,'{\"post_id\":961}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750278290;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750278290;}',8,1,'2025-06-18 20:25:27','2025-06-18 22:25:27',0,NULL), +(2594,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-18 20:24:51','2025-06-18 22:24:51',10,'[961,2]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750278291;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750278291;}',3,1,'2025-06-18 20:25:27','2025-06-18 22:25:27',0,NULL), +(2595,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-18 20:24:51','2025-06-18 22:24:51',10,'[953,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750278291;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750278291;}',3,1,'2025-06-18 20:25:27','2025-06-18 22:25:27',0,NULL), +(2596,'wc_delete_related_product_transients_async','complete','2025-06-18 20:28:46','2025-06-18 22:28:46',10,'{\"post_id\":263}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750278526;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750278526;}',8,1,'2025-06-18 20:29:03','2025-06-18 22:29:03',0,NULL), +(2597,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-18 20:28:47','2025-06-18 22:28:47',10,'[263,2]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750278527;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750278527;}',3,1,'2025-06-18 20:29:03','2025-06-18 22:29:03',0,NULL), +(2598,'wc_delete_related_product_transients_async','complete','2025-06-18 20:29:26','2025-06-18 22:29:26',10,'{\"post_id\":268}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750278566;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750278566;}',8,1,'2025-06-18 20:29:26','2025-06-18 22:29:26',0,NULL), +(2599,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-18 20:29:27','2025-06-18 22:29:27',10,'[268,2]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750278567;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750278567;}',3,1,'2025-06-18 20:30:06','2025-06-18 22:30:06',0,NULL), +(2600,'wc_delete_related_product_transients_async','complete','2025-06-18 20:30:24','2025-06-18 22:30:24',10,'{\"post_id\":288}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750278624;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750278624;}',8,1,'2025-06-18 20:30:26','2025-06-18 22:30:26',0,NULL), +(2601,'wc_delete_related_product_transients_async','complete','2025-06-18 20:30:24','2025-06-18 22:30:24',10,'{\"post_id\":646}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750278624;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750278624;}',8,1,'2025-06-18 20:30:26','2025-06-18 22:30:26',0,NULL), +(2602,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-18 20:30:25','2025-06-18 22:30:25',10,'[646,2]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750278625;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750278625;}',3,1,'2025-06-18 20:30:26','2025-06-18 22:30:26',0,NULL), +(2603,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-18 20:30:25','2025-06-18 22:30:25',10,'[288,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750278625;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750278625;}',3,1,'2025-06-18 20:30:26','2025-06-18 22:30:26',0,NULL), +(2604,'wc_delete_related_product_transients_async','complete','2025-06-18 20:31:04','2025-06-18 22:31:04',10,'{\"post_id\":285}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750278664;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750278664;}',8,1,'2025-06-18 20:31:07','2025-06-18 22:31:07',0,NULL), +(2605,'wc_delete_related_product_transients_async','complete','2025-06-18 20:31:04','2025-06-18 22:31:04',10,'{\"post_id\":642}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750278664;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750278664;}',8,1,'2025-06-18 20:31:07','2025-06-18 22:31:07',0,NULL), +(2606,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-18 20:31:05','2025-06-18 22:31:05',10,'[642,2]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750278665;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750278665;}',3,1,'2025-06-18 20:31:07','2025-06-18 22:31:07',0,NULL), +(2607,'wc_delete_related_product_transients_async','complete','2025-06-18 20:31:13','2025-06-18 22:31:13',10,'{\"post_id\":285}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750278673;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750278673;}',8,1,'2025-06-18 20:31:30','2025-06-18 22:31:30',0,NULL), +(2608,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-18 20:31:14','2025-06-18 22:31:14',10,'[285,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750278674;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750278674;}',3,1,'2025-06-18 20:31:30','2025-06-18 22:31:30',0,NULL), +(2609,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-18 20:32:01','2025-06-18 22:32:01',10,'[247,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750278721;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750278721;}',3,1,'2025-06-18 20:32:11','2025-06-18 22:32:11',0,NULL), +(2610,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-18 20:32:01','2025-06-18 22:32:01',10,'[248,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750278721;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750278721;}',3,1,'2025-06-18 20:32:11','2025-06-18 22:32:11',0,NULL), +(2611,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-18 20:32:01','2025-06-18 22:32:01',10,'[246,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750278721;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750278721;}',3,1,'2025-06-18 20:32:11','2025-06-18 22:32:11',0,NULL), +(2612,'wc_delete_related_product_transients_async','complete','2025-06-18 20:36:56','2025-06-18 22:36:56',10,'{\"post_id\":213}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750279016;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750279016;}',8,1,'2025-06-18 20:37:30','2025-06-18 22:37:30',0,NULL), +(2613,'wc_delete_related_product_transients_async','complete','2025-06-18 20:36:56','2025-06-18 22:36:56',10,'{\"post_id\":570}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750279016;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750279016;}',8,1,'2025-06-18 20:37:30','2025-06-18 22:37:30',0,NULL), +(2614,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-18 20:36:57','2025-06-18 22:36:57',10,'[570,2]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750279017;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750279017;}',3,1,'2025-06-18 20:37:30','2025-06-18 22:37:30',0,NULL), +(2615,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-18 20:36:57','2025-06-18 22:36:57',10,'[213,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750279017;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750279017;}',3,1,'2025-06-18 20:37:30','2025-06-18 22:37:30',0,NULL), +(2616,'wc_delete_related_product_transients_async','failed','2025-06-18 20:39:06','2025-06-18 22:39:06',10,'{\"post_id\":183}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750279146;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750279146;}',8,1,'2025-06-18 20:39:25','2025-06-18 22:39:25',0,NULL), +(2617,'wc_delete_related_product_transients_async','failed','2025-06-18 20:39:06','2025-06-18 22:39:06',10,'{\"post_id\":566}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750279146;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750279146;}',8,1,'2025-06-18 20:39:25','2025-06-18 22:39:25',0,NULL), +(2618,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-18 20:39:07','2025-06-18 22:39:07',10,'[566,2]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750279147;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750279147;}',3,1,'2025-06-18 20:39:25','2025-06-18 22:39:25',0,NULL), +(2619,'wc_delete_related_product_transients_async','failed','2025-06-18 20:39:06','2025-06-18 22:39:06',10,'{\"post_id\":565}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750279146;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750279146;}',8,1,'2025-06-18 20:39:25','2025-06-18 22:39:25',0,NULL), +(2620,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-18 20:39:07','2025-06-18 22:39:07',10,'[565,2]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750279147;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750279147;}',3,1,'2025-06-18 20:39:25','2025-06-18 22:39:25',0,NULL), +(2621,'wc_delete_related_product_transients_async','failed','2025-06-18 20:39:06','2025-06-18 22:39:06',10,'{\"post_id\":567}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750279146;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750279146;}',8,1,'2025-06-18 20:39:25','2025-06-18 22:39:25',0,NULL), +(2622,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-18 20:39:07','2025-06-18 22:39:07',10,'[567,2]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750279147;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750279147;}',3,1,'2025-06-18 20:39:25','2025-06-18 22:39:25',0,NULL), +(2623,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-18 20:39:09','2025-06-18 22:39:09',10,'[183,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750279149;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750279149;}',3,1,'2025-06-18 20:39:25','2025-06-18 22:39:25',0,NULL), +(2624,'wc_delete_related_product_transients_async','complete','2025-06-18 20:44:51','2025-06-18 22:44:51',10,'{\"post_id\":123}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750279491;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750279491;}',8,1,'2025-06-18 20:45:32','2025-06-18 22:45:32',0,NULL), +(2625,'wc_delete_related_product_transients_async','complete','2025-06-18 20:44:51','2025-06-18 22:44:51',10,'{\"post_id\":124}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750279491;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750279491;}',8,1,'2025-06-18 20:45:32','2025-06-18 22:45:32',0,NULL), +(2626,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-18 20:44:52','2025-06-18 22:44:52',10,'[124,2]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750279492;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750279492;}',3,1,'2025-06-18 20:45:32','2025-06-18 22:45:32',0,NULL), +(2627,'wc_delete_related_product_transients_async','complete','2025-06-18 20:44:51','2025-06-18 22:44:51',10,'{\"post_id\":125}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750279491;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750279491;}',8,1,'2025-06-18 20:45:32','2025-06-18 22:45:32',0,NULL), +(2628,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-18 20:44:52','2025-06-18 22:44:52',10,'[125,2]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750279492;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750279492;}',3,1,'2025-06-18 20:45:32','2025-06-18 22:45:32',0,NULL), +(2629,'wc_delete_related_product_transients_async','complete','2025-06-18 20:44:51','2025-06-18 22:44:51',10,'{\"post_id\":126}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750279491;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750279491;}',8,1,'2025-06-18 20:45:32','2025-06-18 22:45:32',0,NULL), +(2630,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-18 20:44:52','2025-06-18 22:44:52',10,'[126,2]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750279492;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750279492;}',3,1,'2025-06-18 20:45:32','2025-06-18 22:45:32',0,NULL), +(2631,'wc_delete_related_product_transients_async','complete','2025-06-18 20:44:51','2025-06-18 22:44:51',10,'{\"post_id\":127}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750279491;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750279491;}',8,1,'2025-06-18 20:45:32','2025-06-18 22:45:32',0,NULL), +(2632,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-18 20:44:52','2025-06-18 22:44:52',10,'[127,2]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750279492;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750279492;}',3,1,'2025-06-18 20:45:32','2025-06-18 22:45:32',0,NULL), +(2633,'wc_delete_related_product_transients_async','complete','2025-06-18 20:44:51','2025-06-18 22:44:51',10,'{\"post_id\":128}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750279491;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750279491;}',8,1,'2025-06-18 20:45:32','2025-06-18 22:45:32',0,NULL), +(2634,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-18 20:44:52','2025-06-18 22:44:52',10,'[128,2]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750279492;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750279492;}',3,1,'2025-06-18 20:45:32','2025-06-18 22:45:32',0,NULL), +(2635,'wc_delete_related_product_transients_async','complete','2025-06-18 20:44:51','2025-06-18 22:44:51',10,'{\"post_id\":129}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750279491;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750279491;}',8,1,'2025-06-18 20:45:32','2025-06-18 22:45:32',0,NULL), +(2636,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-18 20:44:52','2025-06-18 22:44:52',10,'[129,2]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750279492;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750279492;}',3,1,'2025-06-18 20:45:32','2025-06-18 22:45:32',0,NULL), +(2637,'wc_delete_related_product_transients_async','complete','2025-06-18 20:44:51','2025-06-18 22:44:51',10,'{\"post_id\":130}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750279491;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750279491;}',8,1,'2025-06-18 20:45:32','2025-06-18 22:45:32',0,NULL), +(2638,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-18 20:44:52','2025-06-18 22:44:52',10,'[130,2]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750279492;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750279492;}',3,1,'2025-06-18 20:45:32','2025-06-18 22:45:32',0,NULL), +(2639,'wc_delete_related_product_transients_async','complete','2025-06-18 20:44:51','2025-06-18 22:44:51',10,'{\"post_id\":530}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750279491;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750279491;}',8,1,'2025-06-18 20:45:32','2025-06-18 22:45:32',0,NULL), +(2640,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-18 20:44:52','2025-06-18 22:44:52',10,'[530,2]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750279492;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750279492;}',3,1,'2025-06-18 20:45:32','2025-06-18 22:45:32',0,NULL), +(2641,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-18 20:44:59','2025-06-18 22:44:59',10,'[123,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750279499;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750279499;}',3,1,'2025-06-18 20:45:32','2025-06-18 22:45:32',0,NULL), +(2642,'wc_delete_related_product_transients_async','complete','2025-06-18 20:45:56','2025-06-18 22:45:56',10,'{\"post_id\":168}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750279556;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750279556;}',8,1,'2025-06-18 20:46:29','2025-06-18 22:46:29',0,NULL), +(2643,'wc_delete_related_product_transients_async','complete','2025-06-18 20:45:56','2025-06-18 22:45:56',10,'{\"post_id\":200}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750279556;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750279556;}',8,1,'2025-06-18 20:46:29','2025-06-18 22:46:29',0,NULL), +(2644,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-18 20:45:57','2025-06-18 22:45:57',10,'[200,2]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750279557;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750279557;}',3,1,'2025-06-18 20:46:29','2025-06-18 22:46:29',0,NULL), +(2645,'wc_delete_related_product_transients_async','complete','2025-06-18 20:45:56','2025-06-18 22:45:56',10,'{\"post_id\":201}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750279556;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750279556;}',8,1,'2025-06-18 20:46:29','2025-06-18 22:46:29',0,NULL), +(2646,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-18 20:45:57','2025-06-18 22:45:57',10,'[201,2]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750279557;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750279557;}',3,1,'2025-06-18 20:46:29','2025-06-18 22:46:29',0,NULL), +(2647,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-18 20:46:04','2025-06-18 22:46:04',10,'[168,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750279564;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750279564;}',3,1,'2025-06-18 20:46:29','2025-06-18 22:46:29',0,NULL), +(2648,'wc_delete_related_product_transients_async','complete','2025-06-18 20:49:37','2025-06-18 22:49:37',10,'{\"post_id\":271}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750279777;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750279777;}',8,1,'2025-06-18 20:50:34','2025-06-18 22:50:34',0,NULL), +(2649,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-18 20:49:38','2025-06-18 22:49:38',10,'[271,2]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750279778;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750279778;}',3,1,'2025-06-18 20:50:34','2025-06-18 22:50:34',0,NULL), +(2650,'woocommerce_refresh_order_count_cache','complete','2025-06-19 19:00:39','2025-06-19 21:00:39',10,'[\"shop_order\"]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1750359639;s:18:\"\0*\0first_timestamp\";i:1749790203;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1750359639;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',9,1,'2025-06-19 19:01:11','2025-06-19 21:01:11',0,NULL), +(2651,'wc_delete_related_product_transients_async','complete','2025-06-19 14:19:33','2025-06-19 16:19:33',10,'{\"post_id\":941}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750342773;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750342773;}',8,1,'2025-06-19 14:19:38','2025-06-19 16:19:38',0,NULL), +(2652,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-19 14:19:34','2025-06-19 16:19:34',10,'[941,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750342774;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750342774;}',3,1,'2025-06-19 14:19:38','2025-06-19 16:19:38',0,NULL), +(2653,'wc_delete_related_product_transients_async','complete','2025-06-19 14:20:06','2025-06-19 16:20:06',10,'{\"post_id\":521}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750342806;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750342806;}',8,1,'2025-06-19 14:20:29','2025-06-19 16:20:29',0,NULL), +(2654,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-19 14:20:07','2025-06-19 16:20:07',10,'[521,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750342807;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750342807;}',3,1,'2025-06-19 14:20:29','2025-06-19 16:20:29',0,NULL), +(2655,'wc_delete_related_product_transients_async','complete','2025-06-19 14:20:08','2025-06-19 16:20:08',10,'{\"post_id\":515}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750342808;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750342808;}',8,1,'2025-06-19 14:20:29','2025-06-19 16:20:29',0,NULL), +(2656,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-19 14:20:09','2025-06-19 16:20:09',10,'[515,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750342809;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750342809;}',3,1,'2025-06-19 14:20:29','2025-06-19 16:20:29',0,NULL), +(2657,'woocommerce_cleanup_draft_orders','complete','2025-06-20 18:29:11','2025-06-20 20:29:11',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1750444151;s:18:\"\0*\0first_timestamp\";i:1722863558;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1750444151;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',2,1,'2025-06-20 18:29:11','2025-06-20 20:29:11',0,NULL), +(2658,'wp_mail_smtp_admin_notifications_update','complete','2025-06-20 18:29:11','2025-06-20 20:29:11',10,'[1]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1750444151;s:18:\"\0*\0first_timestamp\";i:1732553416;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1750444151;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',6,1,'2025-06-20 18:29:11','2025-06-20 20:29:11',0,NULL), +(2659,'woocommerce_refresh_order_count_cache','complete','2025-06-20 07:01:11','2025-06-20 09:01:11',10,'[\"shop_order\"]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1750402871;s:18:\"\0*\0first_timestamp\";i:1749790203;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1750402871;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',9,1,'2025-06-20 07:01:11','2025-06-20 09:01:11',0,NULL), +(2660,'wc_delete_related_product_transients_async','complete','2025-06-19 20:11:11','2025-06-19 22:11:11',10,'{\"post_id\":226}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750363871;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750363871;}',8,1,'2025-06-19 20:12:11','2025-06-19 22:12:11',0,NULL), +(2661,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-19 20:11:12','2025-06-19 22:11:12',10,'[227,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750363872;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750363872;}',3,1,'2025-06-19 20:12:11','2025-06-19 22:12:11',0,NULL), +(2662,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-19 20:11:12','2025-06-19 22:11:12',10,'[228,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750363872;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750363872;}',3,1,'2025-06-19 20:12:11','2025-06-19 22:12:11',0,NULL), +(2663,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-19 20:11:12','2025-06-19 22:11:12',10,'[229,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750363872;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750363872;}',3,1,'2025-06-19 20:12:11','2025-06-19 22:12:11',0,NULL), +(2664,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-19 20:11:12','2025-06-19 22:11:12',10,'[226,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750363872;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750363872;}',3,1,'2025-06-19 20:12:11','2025-06-19 22:12:11',0,NULL), +(2665,'wc_delete_related_product_transients_async','complete','2025-06-19 20:11:11','2025-06-19 22:11:11',10,'{\"post_id\":220}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750363871;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750363871;}',8,1,'2025-06-19 20:12:11','2025-06-19 22:12:11',0,NULL), +(2666,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-19 20:11:12','2025-06-19 22:11:12',10,'[221,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750363872;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750363872;}',3,1,'2025-06-19 20:12:11','2025-06-19 22:12:11',0,NULL), +(2667,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-19 20:11:12','2025-06-19 22:11:12',10,'[222,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750363872;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750363872;}',3,1,'2025-06-19 20:12:11','2025-06-19 22:12:11',0,NULL), +(2668,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-19 20:11:12','2025-06-19 22:11:12',10,'[223,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750363872;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750363872;}',3,1,'2025-06-19 20:12:11','2025-06-19 22:12:11',0,NULL), +(2669,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-19 20:11:12','2025-06-19 22:11:12',10,'[220,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750363872;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750363872;}',3,1,'2025-06-19 20:12:11','2025-06-19 22:12:11',0,NULL), +(2670,'woocommerce_refresh_order_count_cache','complete','2025-06-20 19:01:11','2025-06-20 21:01:11',10,'[\"shop_order\"]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1750446071;s:18:\"\0*\0first_timestamp\";i:1749790203;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1750446071;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',9,1,'2025-06-20 19:01:11','2025-06-20 21:01:11',0,NULL), +(2671,'wc_update_product_lookup_tables_column','complete','2025-06-20 10:09:32','2025-06-20 12:09:32',10,'{\"column\":\"min_max_price\"}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750414172;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750414172;}',7,1,'2025-06-20 10:09:42','2025-06-20 12:09:42',0,NULL), +(2672,'wc_update_product_lookup_tables_column','complete','2025-06-20 10:09:33','2025-06-20 12:09:33',10,'{\"column\":\"stock_quantity\"}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750414173;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750414173;}',7,1,'2025-06-20 10:09:42','2025-06-20 12:09:42',0,NULL), +(2673,'wc_update_product_lookup_tables_column','complete','2025-06-20 10:09:34','2025-06-20 12:09:34',10,'{\"column\":\"sku\"}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750414174;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750414174;}',7,1,'2025-06-20 10:09:42','2025-06-20 12:09:42',0,NULL), +(2674,'wc_update_product_lookup_tables_column','complete','2025-06-20 10:09:35','2025-06-20 12:09:35',10,'{\"column\":\"global_unique_id\"}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750414175;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750414175;}',7,1,'2025-06-20 10:09:42','2025-06-20 12:09:42',0,NULL), +(2675,'wc_update_product_lookup_tables_column','complete','2025-06-20 10:09:36','2025-06-20 12:09:36',10,'{\"column\":\"stock_status\"}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750414176;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750414176;}',7,1,'2025-06-20 10:09:42','2025-06-20 12:09:42',0,NULL), +(2676,'wc_update_product_lookup_tables_column','complete','2025-06-20 10:09:37','2025-06-20 12:09:37',10,'{\"column\":\"average_rating\"}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750414177;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750414177;}',7,1,'2025-06-20 10:09:42','2025-06-20 12:09:42',0,NULL), +(2677,'wc_update_product_lookup_tables_column','complete','2025-06-20 10:09:38','2025-06-20 12:09:38',10,'{\"column\":\"total_sales\"}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750414178;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750414178;}',7,1,'2025-06-20 10:09:42','2025-06-20 12:09:42',0,NULL), +(2678,'wc_update_product_lookup_tables_column','complete','2025-06-20 10:09:39','2025-06-20 12:09:39',10,'{\"column\":\"downloadable\"}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750414179;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750414179;}',7,1,'2025-06-20 10:09:42','2025-06-20 12:09:42',0,NULL), +(2679,'wc_update_product_lookup_tables_column','complete','2025-06-20 10:09:40','2025-06-20 12:09:40',10,'{\"column\":\"virtual\"}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750414180;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750414180;}',7,1,'2025-06-20 10:09:42','2025-06-20 12:09:42',0,NULL), +(2680,'wc_update_product_lookup_tables_column','complete','2025-06-20 10:09:41','2025-06-20 12:09:41',10,'{\"column\":\"onsale\"}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750414181;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750414181;}',7,1,'2025-06-20 10:09:42','2025-06-20 12:09:42',0,NULL), +(2681,'wc_update_product_lookup_tables_column','complete','2025-06-20 10:09:42','2025-06-20 12:09:42',10,'{\"column\":\"tax_class\"}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750414182;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750414182;}',7,1,'2025-06-20 10:09:42','2025-06-20 12:09:42',0,NULL), +(2682,'wc_update_product_lookup_tables_column','complete','2025-06-20 10:09:43','2025-06-20 12:09:43',10,'{\"column\":\"tax_status\"}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750414183;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750414183;}',7,1,'2025-06-20 10:09:47','2025-06-20 12:09:47',0,NULL), +(2683,'wc_update_product_lookup_tables_rating_count_batch','complete','2025-06-20 10:09:42','2025-06-20 12:09:42',10,'{\"offset\":0,\"limit\":50}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750414182;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750414182;}',7,1,'2025-06-20 10:09:42','2025-06-20 12:09:42',0,NULL), +(2684,'wc-admin_import_orders','complete','2025-06-20 10:13:05','2025-06-20 12:13:05',10,'[981]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750414385;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750414385;}',4,1,'2025-06-20 10:14:11','2025-06-20 12:14:11',0,NULL), +(2685,'wc_delete_related_product_transients_async','complete','2025-06-20 16:59:01','2025-06-20 18:59:01',10,'{\"post_id\":982}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750438741;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750438741;}',8,1,'2025-06-20 16:59:33','2025-06-20 18:59:33',0,NULL), +(2686,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-20 16:59:02','2025-06-20 18:59:02',10,'[982,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750438742;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750438742;}',3,1,'2025-06-20 16:59:33','2025-06-20 18:59:33',0,NULL), +(2687,'wc_delete_related_product_transients_async','complete','2025-06-20 16:59:01','2025-06-20 18:59:01',10,'{\"post_id\":983}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750438741;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750438741;}',8,1,'2025-06-20 16:59:33','2025-06-20 18:59:33',0,NULL), +(2688,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-20 16:59:02','2025-06-20 18:59:02',10,'[983,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750438742;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750438742;}',3,1,'2025-06-20 16:59:33','2025-06-20 18:59:33',0,NULL), +(2689,'wc_delete_related_product_transients_async','complete','2025-06-20 16:59:01','2025-06-20 18:59:01',10,'{\"post_id\":984}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750438741;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750438741;}',8,1,'2025-06-20 16:59:33','2025-06-20 18:59:33',0,NULL), +(2690,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-20 16:59:02','2025-06-20 18:59:02',10,'[984,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750438742;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750438742;}',3,1,'2025-06-20 16:59:33','2025-06-20 18:59:33',0,NULL), +(2691,'wc_delete_related_product_transients_async','complete','2025-06-20 16:59:01','2025-06-20 18:59:01',10,'{\"post_id\":985}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750438741;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750438741;}',8,1,'2025-06-20 16:59:33','2025-06-20 18:59:33',0,NULL), +(2692,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-20 16:59:02','2025-06-20 18:59:02',10,'[985,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750438742;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750438742;}',3,1,'2025-06-20 16:59:33','2025-06-20 18:59:33',0,NULL), +(2693,'wc_delete_related_product_transients_async','complete','2025-06-20 16:59:01','2025-06-20 18:59:01',10,'{\"post_id\":986}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750438741;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750438741;}',8,1,'2025-06-20 16:59:33','2025-06-20 18:59:33',0,NULL), +(2694,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-20 16:59:02','2025-06-20 18:59:02',10,'[986,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750438742;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750438742;}',3,1,'2025-06-20 16:59:33','2025-06-20 18:59:33',0,NULL), +(2695,'wc_delete_related_product_transients_async','complete','2025-06-20 16:59:01','2025-06-20 18:59:01',10,'{\"post_id\":987}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750438741;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750438741;}',8,1,'2025-06-20 16:59:33','2025-06-20 18:59:33',0,NULL), +(2696,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-20 16:59:02','2025-06-20 18:59:02',10,'[987,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750438742;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750438742;}',3,1,'2025-06-20 16:59:33','2025-06-20 18:59:33',0,NULL), +(2697,'wc_delete_related_product_transients_async','complete','2025-06-20 16:59:01','2025-06-20 18:59:01',10,'{\"post_id\":988}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750438741;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750438741;}',8,1,'2025-06-20 16:59:33','2025-06-20 18:59:33',0,NULL), +(2698,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-20 16:59:02','2025-06-20 18:59:02',10,'[988,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750438742;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750438742;}',3,1,'2025-06-20 16:59:33','2025-06-20 18:59:33',0,NULL), +(2699,'wc_delete_related_product_transients_async','complete','2025-06-20 16:59:01','2025-06-20 18:59:01',10,'{\"post_id\":989}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750438741;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750438741;}',8,1,'2025-06-20 16:59:33','2025-06-20 18:59:33',0,NULL), +(2700,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-20 16:59:02','2025-06-20 18:59:02',10,'[989,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750438742;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750438742;}',3,1,'2025-06-20 16:59:33','2025-06-20 18:59:33',0,NULL), +(2701,'wc_delete_related_product_transients_async','complete','2025-06-20 16:59:01','2025-06-20 18:59:01',10,'{\"post_id\":990}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750438741;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750438741;}',8,1,'2025-06-20 16:59:33','2025-06-20 18:59:33',0,NULL), +(2702,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-20 16:59:02','2025-06-20 18:59:02',10,'[990,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750438742;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750438742;}',3,1,'2025-06-20 16:59:33','2025-06-20 18:59:33',0,NULL), +(2703,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-20 16:59:02','2025-06-20 18:59:02',10,'[982,2]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750438742;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750438742;}',3,1,'2025-06-20 16:59:33','2025-06-20 18:59:33',0,NULL), +(2704,'wc_delete_related_product_transients_async','complete','2025-06-20 17:07:36','2025-06-20 19:07:36',10,'{\"post_id\":982}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750439256;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750439256;}',8,1,'2025-06-20 17:07:36','2025-06-20 19:07:36',0,NULL), +(2705,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-20 17:07:37','2025-06-20 19:07:37',10,'[983,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750439257;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750439257;}',3,1,'2025-06-20 17:07:41','2025-06-20 19:07:41',0,NULL), +(2706,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-20 17:07:37','2025-06-20 19:07:37',10,'[984,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750439257;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750439257;}',3,1,'2025-06-20 17:07:41','2025-06-20 19:07:41',0,NULL), +(2707,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-20 17:07:37','2025-06-20 19:07:37',10,'[985,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750439257;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750439257;}',3,1,'2025-06-20 17:07:41','2025-06-20 19:07:41',0,NULL), +(2708,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-20 17:07:37','2025-06-20 19:07:37',10,'[986,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750439257;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750439257;}',3,1,'2025-06-20 17:07:41','2025-06-20 19:07:41',0,NULL), +(2709,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-20 17:07:37','2025-06-20 19:07:37',10,'[987,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750439257;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750439257;}',3,1,'2025-06-20 17:07:41','2025-06-20 19:07:41',0,NULL), +(2710,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-20 17:07:37','2025-06-20 19:07:37',10,'[988,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750439257;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750439257;}',3,1,'2025-06-20 17:07:41','2025-06-20 19:07:41',0,NULL), +(2711,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-20 17:07:37','2025-06-20 19:07:37',10,'[989,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750439257;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750439257;}',3,1,'2025-06-20 17:07:41','2025-06-20 19:07:41',0,NULL), +(2712,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-20 17:07:37','2025-06-20 19:07:37',10,'[990,3]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750439257;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750439257;}',3,1,'2025-06-20 17:07:41','2025-06-20 19:07:41',0,NULL), +(2713,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-20 17:07:37','2025-06-20 19:07:37',10,'[982,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750439257;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750439257;}',3,1,'2025-06-20 17:07:41','2025-06-20 19:07:41',0,NULL), +(2714,'wc_delete_related_product_transients_async','complete','2025-06-20 17:07:54','2025-06-20 19:07:54',10,'{\"post_id\":994}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750439274;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750439274;}',8,1,'2025-06-20 17:08:26','2025-06-20 19:08:26',0,NULL), +(2715,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-20 17:07:55','2025-06-20 19:07:55',10,'[994,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750439275;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750439275;}',3,1,'2025-06-20 17:08:26','2025-06-20 19:08:26',0,NULL), +(2716,'wc_delete_related_product_transients_async','complete','2025-06-20 17:11:18','2025-06-20 19:11:18',10,'{\"post_id\":994}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750439478;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750439478;}',8,1,'2025-06-20 17:11:27','2025-06-20 19:11:27',0,NULL), +(2717,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-20 17:11:19','2025-06-20 19:11:19',10,'[994,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750439479;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750439479;}',3,1,'2025-06-20 17:11:27','2025-06-20 19:11:27',0,NULL), +(2718,'wc_delete_related_product_transients_async','complete','2025-06-20 17:13:24','2025-06-20 19:13:24',10,'{\"post_id\":941}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750439604;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750439604;}',8,1,'2025-06-20 17:13:27','2025-06-20 19:13:27',0,NULL), +(2719,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-20 17:13:25','2025-06-20 19:13:25',10,'[941,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750439605;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750439605;}',3,1,'2025-06-20 17:13:27','2025-06-20 19:13:27',0,NULL), +(2720,'wc_delete_related_product_transients_async','complete','2025-06-20 17:14:42','2025-06-20 19:14:42',10,'{\"post_id\":953}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750439682;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750439682;}',8,1,'2025-06-20 17:15:03','2025-06-20 19:15:03',0,NULL), +(2721,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-20 17:14:43','2025-06-20 19:14:43',10,'[953,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750439683;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750439683;}',3,1,'2025-06-20 17:15:03','2025-06-20 19:15:03',0,NULL), +(2722,'wc_delete_related_product_transients_async','complete','2025-06-20 17:21:04','2025-06-20 19:21:04',10,'{\"post_id\":953}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750440064;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750440064;}',8,1,'2025-06-20 17:21:27','2025-06-20 19:21:27',0,NULL), +(2723,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-20 17:21:05','2025-06-20 19:21:05',10,'[953,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750440065;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750440065;}',3,1,'2025-06-20 17:21:27','2025-06-20 19:21:27',0,NULL), +(2724,'wc_delete_related_product_transients_async','complete','2025-06-20 17:22:20','2025-06-20 19:22:20',10,'{\"post_id\":941}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750440140;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750440140;}',8,1,'2025-06-20 17:23:06','2025-06-20 19:23:06',0,NULL), +(2725,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-20 17:22:21','2025-06-20 19:22:21',10,'[941,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750440141;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750440141;}',3,1,'2025-06-20 17:23:06','2025-06-20 19:23:06',0,NULL), +(2726,'wc_delete_related_product_transients_async','complete','2025-06-20 17:24:13','2025-06-20 19:24:13',10,'{\"post_id\":994}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750440253;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750440253;}',8,1,'2025-06-20 17:24:13','2025-06-20 19:24:13',0,NULL), +(2727,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-20 17:24:14','2025-06-20 19:24:14',10,'[994,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750440254;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750440254;}',3,1,'2025-06-20 17:24:19','2025-06-20 19:24:19',0,NULL), +(2728,'wc_delete_related_product_transients_async','complete','2025-06-20 17:25:14','2025-06-20 19:25:14',10,'{\"post_id\":982}','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750440314;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750440314;}',8,1,'2025-06-20 17:25:14','2025-06-20 19:25:14',0,NULL), +(2729,'woocommerce_run_product_attribute_lookup_update_callback','complete','2025-06-20 17:25:15','2025-06-20 19:25:15',10,'[982,1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750440315;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750440315;}',3,1,'2025-06-20 17:25:19','2025-06-20 19:25:19',0,NULL), +(2730,'woocommerce_cleanup_draft_orders','complete','2025-06-21 18:29:11','2025-06-21 20:29:11',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1750530551;s:18:\"\0*\0first_timestamp\";i:1722863558;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1750530551;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',2,1,'2025-06-21 18:29:59','2025-06-21 20:29:59',0,NULL), +(2731,'wp_mail_smtp_admin_notifications_update','complete','2025-06-21 18:29:11','2025-06-21 20:29:11',10,'[1]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1750530551;s:18:\"\0*\0first_timestamp\";i:1732553416;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1750530551;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',6,1,'2025-06-21 18:29:59','2025-06-21 20:29:59',0,NULL), +(2732,'woocommerce_refresh_order_count_cache','complete','2025-06-21 07:01:11','2025-06-21 09:01:11',10,'[\"shop_order\"]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1750489271;s:18:\"\0*\0first_timestamp\";i:1749790203;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1750489271;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',9,1,'2025-06-21 07:01:11','2025-06-21 09:01:11',0,NULL), +(2733,'woocommerce_refresh_order_count_cache','complete','2025-06-21 19:01:11','2025-06-21 21:01:11',10,'[\"shop_order\"]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1750532471;s:18:\"\0*\0first_timestamp\";i:1749790203;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1750532471;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',9,1,'2025-06-21 19:01:59','2025-06-21 21:01:59',0,NULL), +(2734,'wc-admin_import_orders','complete','2025-06-21 09:54:36','2025-06-21 11:54:36',10,'[997]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750499676;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750499676;}',4,1,'2025-06-21 09:56:06','2025-06-21 11:56:06',0,NULL), +(2735,'wc-admin_import_orders','complete','2025-06-21 09:56:11','2025-06-21 11:56:11',10,'[997]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750499771;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750499771;}',4,1,'2025-06-21 09:57:11','2025-06-21 11:57:11',0,NULL), +(2736,'wc-admin_import_orders','complete','2025-06-21 12:43:56','2025-06-21 14:43:56',10,'[998]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750509836;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750509836;}',4,1,'2025-06-21 12:44:29','2025-06-21 14:44:29',0,NULL), +(2737,'wc-admin_import_orders','complete','2025-06-21 12:54:57','2025-06-21 14:54:57',10,'[999]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750510497;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750510497;}',4,1,'2025-06-21 12:55:11','2025-06-21 14:55:11',0,NULL), +(2738,'wc-admin_import_orders','complete','2025-06-21 12:58:28','2025-06-21 14:58:28',10,'[1000]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1750510708;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1750510708;}',4,1,'2025-06-21 12:58:29','2025-06-21 14:58:29',0,NULL), +(2739,'woocommerce_cleanup_draft_orders','complete','2025-06-22 18:29:59','2025-06-22 20:29:59',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1750616999;s:18:\"\0*\0first_timestamp\";i:1722863558;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1750616999;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',2,1,'2025-06-22 18:29:59','2025-06-22 20:29:59',0,NULL), +(2740,'wp_mail_smtp_admin_notifications_update','complete','2025-06-22 18:29:59','2025-06-22 20:29:59',10,'[1]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1750616999;s:18:\"\0*\0first_timestamp\";i:1732553416;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1750616999;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',6,1,'2025-06-22 18:30:00','2025-06-22 20:30:00',0,NULL), +(2741,'woocommerce_refresh_order_count_cache','complete','2025-06-22 07:01:59','2025-06-22 09:01:59',10,'[\"shop_order\"]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1750575719;s:18:\"\0*\0first_timestamp\";i:1749790203;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1750575719;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',9,1,'2025-06-22 07:01:59','2025-06-22 09:01:59',0,NULL), +(2742,'woocommerce_refresh_order_count_cache','complete','2025-06-22 19:01:59','2025-06-22 21:01:59',10,'[\"shop_order\"]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1750618919;s:18:\"\0*\0first_timestamp\";i:1749790203;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1750618919;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',9,1,'2025-06-22 19:01:59','2025-06-22 21:01:59',0,NULL), +(2743,'woocommerce_cleanup_draft_orders','pending','2025-06-23 18:29:59','2025-06-23 20:29:59',10,'[]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1750703399;s:18:\"\0*\0first_timestamp\";i:1722863558;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1750703399;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',2,0,'0000-00-00 00:00:00','0000-00-00 00:00:00',0,NULL), +(2744,'wp_mail_smtp_admin_notifications_update','pending','2025-06-23 18:30:00','2025-06-23 20:30:00',10,'[1]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1750703400;s:18:\"\0*\0first_timestamp\";i:1732553416;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1750703400;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',6,0,'0000-00-00 00:00:00','0000-00-00 00:00:00',0,NULL), +(2745,'woocommerce_refresh_order_count_cache','complete','2025-06-23 07:01:59','2025-06-23 09:01:59',10,'[\"shop_order\"]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1750662119;s:18:\"\0*\0first_timestamp\";i:1749790203;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1750662119;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',9,1,'2025-06-23 07:02:00','2025-06-23 09:02:00',0,NULL), +(2746,'woocommerce_refresh_order_count_cache','pending','2025-06-23 19:02:00','2025-06-23 21:02:00',10,'[\"shop_order\"]','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1750705320;s:18:\"\0*\0first_timestamp\";i:1749790203;s:13:\"\0*\0recurrence\";i:43200;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1750705320;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:43200;}',9,0,'0000-00-00 00:00:00','0000-00-00 00:00:00',0,NULL); +/*!40000 ALTER TABLE `haikuwp_actionscheduler_actions` ENABLE KEYS */; +UNLOCK TABLES; +commit; + +-- +-- Table structure for table `haikuwp_actionscheduler_claims` +-- + +DROP TABLE IF EXISTS `haikuwp_actionscheduler_claims`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8mb4 */; +CREATE TABLE `haikuwp_actionscheduler_claims` ( + `claim_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, + `date_created_gmt` datetime DEFAULT '0000-00-00 00:00:00', + PRIMARY KEY (`claim_id`), + KEY `date_created_gmt` (`date_created_gmt`) +) ENGINE=InnoDB AUTO_INCREMENT=97637 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `haikuwp_actionscheduler_claims` +-- + +LOCK TABLES `haikuwp_actionscheduler_claims` WRITE; +/*!40000 ALTER TABLE `haikuwp_actionscheduler_claims` DISABLE KEYS */; +set autocommit=0; +/*!40000 ALTER TABLE `haikuwp_actionscheduler_claims` ENABLE KEYS */; +UNLOCK TABLES; +commit; + +-- +-- Table structure for table `haikuwp_actionscheduler_groups` +-- + +DROP TABLE IF EXISTS `haikuwp_actionscheduler_groups`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8mb4 */; +CREATE TABLE `haikuwp_actionscheduler_groups` ( + `group_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, + `slug` varchar(255) NOT NULL, + PRIMARY KEY (`group_id`), + KEY `slug` (`slug`(191)) +) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `haikuwp_actionscheduler_groups` +-- + +LOCK TABLES `haikuwp_actionscheduler_groups` WRITE; +/*!40000 ALTER TABLE `haikuwp_actionscheduler_groups` DISABLE KEYS */; +set autocommit=0; +INSERT INTO `haikuwp_actionscheduler_groups` VALUES +(1,'action-scheduler-migration'), +(2,''), +(3,'woocommerce-db-updates'), +(4,'wc-admin-data'), +(5,'wc_update_product_default_cat'), +(6,'wp_mail_smtp'), +(7,'wc_update_product_lookup_tables'), +(8,'wc_delete_related_product_transients_group'), +(9,'count'); +/*!40000 ALTER TABLE `haikuwp_actionscheduler_groups` ENABLE KEYS */; +UNLOCK TABLES; +commit; + +-- +-- Table structure for table `haikuwp_actionscheduler_logs` +-- + +DROP TABLE IF EXISTS `haikuwp_actionscheduler_logs`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8mb4 */; +CREATE TABLE `haikuwp_actionscheduler_logs` ( + `log_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, + `action_id` bigint(20) unsigned NOT NULL, + `message` text NOT NULL, + `log_date_gmt` datetime DEFAULT '0000-00-00 00:00:00', + `log_date_local` datetime DEFAULT '0000-00-00 00:00:00', + PRIMARY KEY (`log_id`), + KEY `action_id` (`action_id`), + KEY `log_date_gmt` (`log_date_gmt`) +) ENGINE=InnoDB AUTO_INCREMENT=8212 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `haikuwp_actionscheduler_logs` +-- + +LOCK TABLES `haikuwp_actionscheduler_logs` WRITE; +/*!40000 ALTER TABLE `haikuwp_actionscheduler_logs` DISABLE KEYS */; +set autocommit=0; +INSERT INTO `haikuwp_actionscheduler_logs` VALUES +(6830,2285,'action created','2025-05-20 01:32:11','2025-05-20 03:32:11'), +(6875,2300,'action created','2025-05-23 12:29:54','2025-05-23 14:29:54'), +(6878,2301,'action created','2025-05-23 12:29:54','2025-05-23 14:29:54'), +(6879,2300,'action started via WP Cron','2025-05-24 12:46:03','2025-05-24 14:46:03'), +(6880,2300,'action complete via WP Cron','2025-05-24 12:46:03','2025-05-24 14:46:03'), +(6881,2302,'action created','2025-05-24 12:46:03','2025-05-24 14:46:03'), +(6882,2301,'action started via WP Cron','2025-05-24 12:46:03','2025-05-24 14:46:03'), +(6883,2301,'action complete via WP Cron','2025-05-24 12:46:03','2025-05-24 14:46:03'), +(6884,2303,'action created','2025-05-24 12:46:03','2025-05-24 14:46:03'), +(6885,2302,'action started via WP Cron','2025-05-25 13:10:11','2025-05-25 15:10:11'), +(6886,2302,'action complete via WP Cron','2025-05-25 13:10:11','2025-05-25 15:10:11'), +(6887,2304,'action created','2025-05-25 13:10:11','2025-05-25 15:10:11'), +(6888,2303,'action started via WP Cron','2025-05-25 13:10:11','2025-05-25 15:10:11'), +(6889,2303,'action complete via WP Cron','2025-05-25 13:10:11','2025-05-25 15:10:11'), +(6890,2305,'action created','2025-05-25 13:10:11','2025-05-25 15:10:11'), +(6891,2304,'action started via WP Cron','2025-05-26 13:10:21','2025-05-26 15:10:21'), +(6892,2304,'action complete via WP Cron','2025-05-26 13:10:21','2025-05-26 15:10:21'), +(6893,2306,'action created','2025-05-26 13:10:21','2025-05-26 15:10:21'), +(6894,2305,'action started via WP Cron','2025-05-26 13:10:21','2025-05-26 15:10:21'), +(6895,2305,'action complete via WP Cron','2025-05-26 13:10:21','2025-05-26 15:10:21'), +(6896,2307,'action created','2025-05-26 13:10:21','2025-05-26 15:10:21'), +(6897,2285,'action started via WP Cron','2025-05-27 01:38:13','2025-05-27 03:38:13'), +(6898,2285,'action complete via WP Cron','2025-05-27 01:38:13','2025-05-27 03:38:13'), +(6899,2308,'action created','2025-05-27 01:38:13','2025-05-27 03:38:13'), +(6900,2309,'action created','2025-05-27 06:46:10','2025-05-27 08:46:10'), +(6901,2310,'action created','2025-05-27 06:46:10','2025-05-27 08:46:10'), +(6902,2309,'action started via Async Request','2025-05-27 06:46:12','2025-05-27 08:46:12'), +(6903,2309,'action complete via Async Request','2025-05-27 06:46:12','2025-05-27 08:46:12'), +(6904,2310,'action started via Async Request','2025-05-27 06:46:12','2025-05-27 08:46:12'), +(6905,2310,'action complete via Async Request','2025-05-27 06:46:12','2025-05-27 08:46:12'), +(6906,2311,'action created','2025-05-27 06:46:35','2025-05-27 08:46:35'), +(6907,2312,'action created','2025-05-27 06:46:35','2025-05-27 08:46:35'), +(6908,2311,'action started via WP Cron','2025-05-27 06:47:55','2025-05-27 08:47:55'), +(6909,2311,'action complete via WP Cron','2025-05-27 06:47:55','2025-05-27 08:47:55'), +(6910,2312,'action started via WP Cron','2025-05-27 06:47:55','2025-05-27 08:47:55'), +(6911,2312,'action complete via WP Cron','2025-05-27 06:47:55','2025-05-27 08:47:55'), +(6912,2313,'action created','2025-05-27 06:49:54','2025-05-27 08:49:54'), +(6913,2314,'action created','2025-05-27 06:49:54','2025-05-27 08:49:54'), +(6914,2313,'action started via Async Request','2025-05-27 06:50:07','2025-05-27 08:50:07'), +(6915,2313,'action complete via Async Request','2025-05-27 06:50:07','2025-05-27 08:50:07'), +(6916,2314,'action started via Async Request','2025-05-27 06:50:07','2025-05-27 08:50:07'), +(6917,2314,'action complete via Async Request','2025-05-27 06:50:07','2025-05-27 08:50:07'), +(6918,2306,'action started via WP Cron','2025-05-27 13:10:36','2025-05-27 15:10:36'), +(6919,2306,'action complete via WP Cron','2025-05-27 13:10:36','2025-05-27 15:10:36'), +(6920,2315,'action created','2025-05-27 13:10:36','2025-05-27 15:10:36'), +(6921,2307,'action started via WP Cron','2025-05-27 13:10:36','2025-05-27 15:10:36'), +(6922,2307,'action complete via WP Cron','2025-05-27 13:10:36','2025-05-27 15:10:36'), +(6923,2316,'action created','2025-05-27 13:10:36','2025-05-27 15:10:36'), +(6924,2315,'action started via WP Cron','2025-05-28 13:30:29','2025-05-28 15:30:29'), +(6925,2315,'action complete via WP Cron','2025-05-28 13:30:29','2025-05-28 15:30:29'), +(6926,2317,'action created','2025-05-28 13:30:29','2025-05-28 15:30:29'), +(6927,2316,'action started via WP Cron','2025-05-28 13:30:29','2025-05-28 15:30:29'), +(6928,2316,'action complete via WP Cron','2025-05-28 13:30:29','2025-05-28 15:30:29'), +(6929,2318,'action created','2025-05-28 13:30:29','2025-05-28 15:30:29'), +(6930,2319,'action created','2025-05-28 20:20:04','2025-05-28 22:20:04'), +(6931,2320,'action created','2025-05-28 20:20:04','2025-05-28 22:20:04'), +(6932,2321,'action created','2025-05-28 20:20:04','2025-05-28 22:20:04'), +(6933,2322,'action created','2025-05-28 20:20:04','2025-05-28 22:20:04'), +(6934,2323,'action created','2025-05-28 20:20:04','2025-05-28 22:20:04'), +(6935,2324,'action created','2025-05-28 20:20:04','2025-05-28 22:20:04'), +(6936,2325,'action created','2025-05-28 20:20:04','2025-05-28 22:20:04'), +(6937,2326,'action created','2025-05-28 20:20:04','2025-05-28 22:20:04'), +(6938,2327,'action created','2025-05-28 20:20:04','2025-05-28 22:20:04'), +(6939,2328,'action created','2025-05-28 20:20:04','2025-05-28 22:20:04'), +(6940,2329,'action created','2025-05-28 20:20:04','2025-05-28 22:20:04'), +(6941,2330,'action created','2025-05-28 20:20:04','2025-05-28 22:20:04'), +(6942,2331,'action created','2025-05-28 20:20:04','2025-05-28 22:20:04'), +(6943,2332,'action created','2025-05-28 20:20:04','2025-05-28 22:20:04'), +(6944,2333,'action created','2025-05-28 20:20:04','2025-05-28 22:20:04'), +(6945,2334,'action created','2025-05-28 20:20:04','2025-05-28 22:20:04'), +(6946,2335,'action created','2025-05-28 20:20:04','2025-05-28 22:20:04'), +(6947,2336,'action created','2025-05-28 20:20:04','2025-05-28 22:20:04'), +(6948,2337,'action created','2025-05-28 20:20:04','2025-05-28 22:20:04'), +(6949,2338,'action created','2025-05-28 20:20:04','2025-05-28 22:20:04'), +(6950,2339,'action created','2025-05-28 20:20:04','2025-05-28 22:20:04'), +(6951,2340,'action created','2025-05-28 20:20:04','2025-05-28 22:20:04'), +(6952,2341,'action created','2025-05-28 20:20:04','2025-05-28 22:20:04'), +(6953,2342,'action created','2025-05-28 20:20:04','2025-05-28 22:20:04'), +(6954,2343,'action created','2025-05-28 20:20:05','2025-05-28 22:20:05'), +(6955,2344,'action created','2025-05-28 20:20:05','2025-05-28 22:20:05'), +(6956,2345,'action created','2025-05-28 20:20:05','2025-05-28 22:20:05'), +(6957,2346,'action created','2025-05-28 20:20:05','2025-05-28 22:20:05'), +(6958,2347,'action created','2025-05-28 20:20:05','2025-05-28 22:20:05'), +(6959,2348,'action created','2025-05-28 20:20:05','2025-05-28 22:20:05'), +(6960,2349,'action created','2025-05-28 20:20:05','2025-05-28 22:20:05'), +(6961,2350,'action created','2025-05-28 20:20:05','2025-05-28 22:20:05'), +(6962,2351,'action created','2025-05-28 20:20:05','2025-05-28 22:20:05'), +(6963,2352,'action created','2025-05-28 20:20:05','2025-05-28 22:20:05'), +(6964,2353,'action created','2025-05-28 20:20:05','2025-05-28 22:20:05'), +(6965,2354,'action created','2025-05-28 20:20:05','2025-05-28 22:20:05'), +(6966,2355,'action created','2025-05-28 20:20:05','2025-05-28 22:20:05'), +(6967,2356,'action created','2025-05-28 20:20:05','2025-05-28 22:20:05'), +(6968,2357,'action created','2025-05-28 20:20:05','2025-05-28 22:20:05'), +(6969,2358,'action created','2025-05-28 20:20:05','2025-05-28 22:20:05'), +(6970,2359,'action created','2025-05-28 20:20:05','2025-05-28 22:20:05'), +(6971,2360,'action created','2025-05-28 20:20:05','2025-05-28 22:20:05'), +(6972,2361,'action created','2025-05-28 20:20:05','2025-05-28 22:20:05'), +(6973,2362,'action created','2025-05-28 20:20:05','2025-05-28 22:20:05'), +(6974,2363,'action created','2025-05-28 20:20:05','2025-05-28 22:20:05'), +(6975,2364,'action created','2025-05-28 20:20:05','2025-05-28 22:20:05'), +(6976,2365,'action created','2025-05-28 20:20:05','2025-05-28 22:20:05'), +(6977,2366,'action created','2025-05-28 20:20:06','2025-05-28 22:20:06'), +(6978,2367,'action created','2025-05-28 20:20:06','2025-05-28 22:20:06'), +(6979,2368,'action created','2025-05-28 20:20:06','2025-05-28 22:20:06'), +(6980,2369,'action created','2025-05-28 20:20:06','2025-05-28 22:20:06'), +(6981,2370,'action created','2025-05-28 20:20:06','2025-05-28 22:20:06'), +(6982,2371,'action created','2025-05-28 20:20:06','2025-05-28 22:20:06'), +(6983,2372,'action created','2025-05-28 20:20:06','2025-05-28 22:20:06'), +(6984,2373,'action created','2025-05-28 20:20:06','2025-05-28 22:20:06'), +(6985,2374,'action created','2025-05-28 20:20:06','2025-05-28 22:20:06'), +(6986,2375,'action created','2025-05-28 20:20:06','2025-05-28 22:20:06'), +(6987,2376,'action created','2025-05-28 20:20:06','2025-05-28 22:20:06'), +(6988,2377,'action created','2025-05-28 20:20:06','2025-05-28 22:20:06'), +(6989,2319,'action started via WP Cron','2025-05-28 20:28:06','2025-05-28 22:28:06'), +(6990,2319,'action complete via WP Cron','2025-05-28 20:28:06','2025-05-28 22:28:06'), +(6991,2329,'action started via WP Cron','2025-05-28 20:28:06','2025-05-28 22:28:06'), +(6992,2329,'action complete via WP Cron','2025-05-28 20:28:06','2025-05-28 22:28:06'), +(6993,2341,'action started via WP Cron','2025-05-28 20:28:06','2025-05-28 22:28:06'), +(6994,2341,'action complete via WP Cron','2025-05-28 20:28:06','2025-05-28 22:28:06'), +(6995,2320,'action started via WP Cron','2025-05-28 20:28:06','2025-05-28 22:28:06'), +(6996,2320,'action complete via WP Cron','2025-05-28 20:28:06','2025-05-28 22:28:06'), +(6997,2321,'action started via WP Cron','2025-05-28 20:28:06','2025-05-28 22:28:06'), +(6998,2321,'action complete via WP Cron','2025-05-28 20:28:06','2025-05-28 22:28:06'), +(6999,2322,'action started via WP Cron','2025-05-28 20:28:06','2025-05-28 22:28:06'), +(7000,2322,'action complete via WP Cron','2025-05-28 20:28:06','2025-05-28 22:28:06'), +(7001,2323,'action started via WP Cron','2025-05-28 20:28:06','2025-05-28 22:28:06'), +(7002,2323,'action complete via WP Cron','2025-05-28 20:28:06','2025-05-28 22:28:06'), +(7003,2324,'action started via WP Cron','2025-05-28 20:28:06','2025-05-28 22:28:06'), +(7004,2324,'action complete via WP Cron','2025-05-28 20:28:06','2025-05-28 22:28:06'), +(7005,2325,'action started via WP Cron','2025-05-28 20:28:06','2025-05-28 22:28:06'), +(7006,2325,'action complete via WP Cron','2025-05-28 20:28:06','2025-05-28 22:28:06'), +(7007,2326,'action started via WP Cron','2025-05-28 20:28:06','2025-05-28 22:28:06'), +(7008,2326,'action complete via WP Cron','2025-05-28 20:28:06','2025-05-28 22:28:06'), +(7009,2327,'action started via WP Cron','2025-05-28 20:28:06','2025-05-28 22:28:06'), +(7010,2327,'action complete via WP Cron','2025-05-28 20:28:06','2025-05-28 22:28:06'), +(7011,2328,'action started via WP Cron','2025-05-28 20:28:06','2025-05-28 22:28:06'), +(7012,2328,'action complete via WP Cron','2025-05-28 20:28:06','2025-05-28 22:28:06'), +(7013,2330,'action started via WP Cron','2025-05-28 20:28:06','2025-05-28 22:28:06'), +(7014,2330,'action complete via WP Cron','2025-05-28 20:28:06','2025-05-28 22:28:06'), +(7015,2331,'action started via WP Cron','2025-05-28 20:28:06','2025-05-28 22:28:06'), +(7016,2331,'action complete via WP Cron','2025-05-28 20:28:06','2025-05-28 22:28:06'), +(7017,2332,'action started via WP Cron','2025-05-28 20:28:06','2025-05-28 22:28:06'), +(7018,2332,'action complete via WP Cron','2025-05-28 20:28:06','2025-05-28 22:28:06'), +(7019,2333,'action started via WP Cron','2025-05-28 20:28:06','2025-05-28 22:28:06'), +(7020,2333,'action complete via WP Cron','2025-05-28 20:28:06','2025-05-28 22:28:06'), +(7021,2334,'action started via WP Cron','2025-05-28 20:28:06','2025-05-28 22:28:06'), +(7022,2334,'action complete via WP Cron','2025-05-28 20:28:06','2025-05-28 22:28:06'), +(7023,2335,'action started via WP Cron','2025-05-28 20:28:06','2025-05-28 22:28:06'), +(7024,2335,'action complete via WP Cron','2025-05-28 20:28:06','2025-05-28 22:28:06'), +(7025,2336,'action started via WP Cron','2025-05-28 20:28:06','2025-05-28 22:28:06'), +(7026,2336,'action complete via WP Cron','2025-05-28 20:28:06','2025-05-28 22:28:06'), +(7027,2337,'action started via WP Cron','2025-05-28 20:28:06','2025-05-28 22:28:06'), +(7028,2337,'action complete via WP Cron','2025-05-28 20:28:06','2025-05-28 22:28:06'), +(7029,2338,'action started via WP Cron','2025-05-28 20:28:06','2025-05-28 22:28:06'), +(7030,2338,'action complete via WP Cron','2025-05-28 20:28:06','2025-05-28 22:28:06'), +(7031,2339,'action started via WP Cron','2025-05-28 20:28:06','2025-05-28 22:28:06'), +(7032,2339,'action complete via WP Cron','2025-05-28 20:28:06','2025-05-28 22:28:06'), +(7033,2340,'action started via WP Cron','2025-05-28 20:28:06','2025-05-28 22:28:06'), +(7034,2340,'action complete via WP Cron','2025-05-28 20:28:06','2025-05-28 22:28:06'), +(7035,2342,'action started via WP Cron','2025-05-28 20:28:06','2025-05-28 22:28:06'), +(7036,2342,'action complete via WP Cron','2025-05-28 20:28:06','2025-05-28 22:28:06'), +(7037,2345,'action started via WP Cron','2025-05-28 20:28:06','2025-05-28 22:28:06'), +(7038,2345,'action complete via WP Cron','2025-05-28 20:28:06','2025-05-28 22:28:06'), +(7039,2349,'action started via WP Cron','2025-05-28 20:28:06','2025-05-28 22:28:06'), +(7040,2349,'action complete via WP Cron','2025-05-28 20:28:06','2025-05-28 22:28:06'), +(7041,2356,'action started via WP Cron','2025-05-28 20:28:06','2025-05-28 22:28:06'), +(7042,2356,'action complete via WP Cron','2025-05-28 20:28:06','2025-05-28 22:28:06'), +(7043,2364,'action started via WP Cron','2025-05-28 20:28:06','2025-05-28 22:28:06'), +(7044,2364,'action complete via WP Cron','2025-05-28 20:28:06','2025-05-28 22:28:06'), +(7045,2343,'action started via WP Cron','2025-05-28 20:28:06','2025-05-28 22:28:06'), +(7046,2343,'action complete via WP Cron','2025-05-28 20:28:06','2025-05-28 22:28:06'), +(7047,2344,'action started via WP Cron','2025-05-28 20:28:06','2025-05-28 22:28:06'), +(7048,2344,'action complete via WP Cron','2025-05-28 20:28:06','2025-05-28 22:28:06'), +(7049,2346,'action started via WP Cron','2025-05-28 20:28:06','2025-05-28 22:28:06'), +(7050,2346,'action complete via WP Cron','2025-05-28 20:28:06','2025-05-28 22:28:06'), +(7051,2347,'action started via WP Cron','2025-05-28 20:28:06','2025-05-28 22:28:06'), +(7052,2347,'action complete via WP Cron','2025-05-28 20:28:06','2025-05-28 22:28:06'), +(7053,2348,'action started via WP Cron','2025-05-28 20:28:06','2025-05-28 22:28:06'), +(7054,2348,'action complete via WP Cron','2025-05-28 20:28:06','2025-05-28 22:28:06'), +(7055,2350,'action started via WP Cron','2025-05-28 20:28:06','2025-05-28 22:28:06'), +(7056,2350,'action complete via WP Cron','2025-05-28 20:28:06','2025-05-28 22:28:06'), +(7057,2351,'action started via WP Cron','2025-05-28 20:28:06','2025-05-28 22:28:06'), +(7058,2351,'action complete via WP Cron','2025-05-28 20:28:06','2025-05-28 22:28:06'), +(7059,2352,'action started via WP Cron','2025-05-28 20:28:06','2025-05-28 22:28:06'), +(7060,2352,'action complete via WP Cron','2025-05-28 20:28:06','2025-05-28 22:28:06'), +(7061,2353,'action started via WP Cron','2025-05-28 20:28:06','2025-05-28 22:28:06'), +(7062,2353,'action complete via WP Cron','2025-05-28 20:28:06','2025-05-28 22:28:06'), +(7063,2354,'action started via WP Cron','2025-05-28 20:28:06','2025-05-28 22:28:06'), +(7064,2354,'action complete via WP Cron','2025-05-28 20:28:06','2025-05-28 22:28:06'), +(7065,2355,'action started via WP Cron','2025-05-28 20:28:06','2025-05-28 22:28:06'), +(7066,2355,'action complete via WP Cron','2025-05-28 20:28:06','2025-05-28 22:28:06'), +(7067,2357,'action started via WP Cron','2025-05-28 20:28:06','2025-05-28 22:28:06'), +(7068,2357,'action complete via WP Cron','2025-05-28 20:28:06','2025-05-28 22:28:06'), +(7069,2358,'action started via WP Cron','2025-05-28 20:28:06','2025-05-28 22:28:06'), +(7070,2358,'action complete via WP Cron','2025-05-28 20:28:06','2025-05-28 22:28:06'), +(7071,2359,'action started via WP Cron','2025-05-28 20:28:06','2025-05-28 22:28:06'), +(7072,2359,'action complete via WP Cron','2025-05-28 20:28:06','2025-05-28 22:28:06'), +(7073,2360,'action started via WP Cron','2025-05-28 20:28:06','2025-05-28 22:28:06'), +(7074,2360,'action complete via WP Cron','2025-05-28 20:28:06','2025-05-28 22:28:06'), +(7075,2361,'action started via WP Cron','2025-05-28 20:28:06','2025-05-28 22:28:06'), +(7076,2361,'action complete via WP Cron','2025-05-28 20:28:06','2025-05-28 22:28:06'), +(7077,2362,'action started via WP Cron','2025-05-28 20:28:06','2025-05-28 22:28:06'), +(7078,2362,'action complete via WP Cron','2025-05-28 20:28:06','2025-05-28 22:28:06'), +(7079,2363,'action started via WP Cron','2025-05-28 20:28:06','2025-05-28 22:28:06'), +(7080,2363,'action complete via WP Cron','2025-05-28 20:28:06','2025-05-28 22:28:06'), +(7081,2365,'action started via WP Cron','2025-05-28 20:28:06','2025-05-28 22:28:06'), +(7082,2365,'action complete via WP Cron','2025-05-28 20:28:06','2025-05-28 22:28:06'), +(7083,2368,'action started via WP Cron','2025-05-28 20:28:06','2025-05-28 22:28:06'), +(7084,2368,'action complete via WP Cron','2025-05-28 20:28:06','2025-05-28 22:28:06'), +(7085,2366,'action started via WP Cron','2025-05-28 20:28:06','2025-05-28 22:28:06'), +(7086,2366,'action complete via WP Cron','2025-05-28 20:28:06','2025-05-28 22:28:06'), +(7087,2367,'action started via WP Cron','2025-05-28 20:28:06','2025-05-28 22:28:06'), +(7088,2367,'action complete via WP Cron','2025-05-28 20:28:06','2025-05-28 22:28:06'), +(7089,2369,'action started via WP Cron','2025-05-28 20:28:06','2025-05-28 22:28:06'), +(7090,2369,'action complete via WP Cron','2025-05-28 20:28:06','2025-05-28 22:28:06'), +(7091,2370,'action started via WP Cron','2025-05-28 20:28:06','2025-05-28 22:28:06'), +(7092,2370,'action complete via WP Cron','2025-05-28 20:28:06','2025-05-28 22:28:06'), +(7093,2371,'action started via WP Cron','2025-05-28 20:28:06','2025-05-28 22:28:06'), +(7094,2371,'action complete via WP Cron','2025-05-28 20:28:06','2025-05-28 22:28:06'), +(7095,2372,'action started via WP Cron','2025-05-28 20:28:06','2025-05-28 22:28:06'), +(7096,2372,'action complete via WP Cron','2025-05-28 20:28:06','2025-05-28 22:28:06'), +(7097,2373,'action started via WP Cron','2025-05-28 20:28:06','2025-05-28 22:28:06'), +(7098,2373,'action complete via WP Cron','2025-05-28 20:28:06','2025-05-28 22:28:06'), +(7099,2374,'action started via WP Cron','2025-05-28 20:28:06','2025-05-28 22:28:06'), +(7100,2374,'action complete via WP Cron','2025-05-28 20:28:06','2025-05-28 22:28:06'), +(7101,2375,'action started via WP Cron','2025-05-28 20:28:06','2025-05-28 22:28:06'), +(7102,2375,'action complete via WP Cron','2025-05-28 20:28:06','2025-05-28 22:28:06'), +(7103,2376,'action started via WP Cron','2025-05-28 20:28:06','2025-05-28 22:28:06'), +(7104,2376,'action complete via WP Cron','2025-05-28 20:28:06','2025-05-28 22:28:06'), +(7105,2377,'action started via WP Cron','2025-05-28 20:28:06','2025-05-28 22:28:06'), +(7106,2377,'action complete via WP Cron','2025-05-28 20:28:06','2025-05-28 22:28:06'), +(7107,2317,'action started via WP Cron','2025-05-29 13:38:13','2025-05-29 15:38:13'), +(7108,2317,'action complete via WP Cron','2025-05-29 13:38:13','2025-05-29 15:38:13'), +(7109,2378,'action created','2025-05-29 13:38:13','2025-05-29 15:38:13'), +(7110,2318,'action started via WP Cron','2025-05-29 13:38:13','2025-05-29 15:38:13'), +(7111,2318,'action complete via WP Cron','2025-05-29 13:38:13','2025-05-29 15:38:13'), +(7112,2379,'action created','2025-05-29 13:38:13','2025-05-29 15:38:13'), +(7113,2378,'action started via WP Cron','2025-05-30 13:54:54','2025-05-30 15:54:54'), +(7114,2378,'action complete via WP Cron','2025-05-30 13:54:54','2025-05-30 15:54:54'), +(7115,2380,'action created','2025-05-30 13:54:54','2025-05-30 15:54:54'), +(7116,2379,'action started via WP Cron','2025-05-30 13:54:54','2025-05-30 15:54:54'), +(7117,2379,'action complete via WP Cron','2025-05-30 13:54:54','2025-05-30 15:54:54'), +(7118,2381,'action created','2025-05-30 13:54:54','2025-05-30 15:54:54'), +(7119,2380,'action started via WP Cron','2025-05-31 13:58:51','2025-05-31 15:58:51'), +(7120,2380,'action complete via WP Cron','2025-05-31 13:58:51','2025-05-31 15:58:51'), +(7121,2382,'action created','2025-05-31 13:58:51','2025-05-31 15:58:51'), +(7122,2381,'action started via WP Cron','2025-05-31 13:58:51','2025-05-31 15:58:51'), +(7123,2381,'action complete via WP Cron','2025-05-31 13:58:51','2025-05-31 15:58:51'), +(7124,2383,'action created','2025-05-31 13:58:51','2025-05-31 15:58:51'), +(7125,2382,'action started via WP Cron','2025-06-01 14:12:54','2025-06-01 16:12:54'), +(7126,2382,'action complete via WP Cron','2025-06-01 14:12:54','2025-06-01 16:12:54'), +(7127,2384,'action created','2025-06-01 14:12:54','2025-06-01 16:12:54'), +(7128,2383,'action started via WP Cron','2025-06-01 14:12:54','2025-06-01 16:12:54'), +(7129,2383,'action complete via WP Cron','2025-06-01 14:12:54','2025-06-01 16:12:54'), +(7130,2385,'action created','2025-06-01 14:12:54','2025-06-01 16:12:54'), +(7131,2384,'action started via WP Cron','2025-06-02 14:19:53','2025-06-02 16:19:53'), +(7132,2384,'action complete via WP Cron','2025-06-02 14:19:53','2025-06-02 16:19:53'), +(7133,2386,'action created','2025-06-02 14:19:53','2025-06-02 16:19:53'), +(7134,2385,'action started via WP Cron','2025-06-02 14:19:53','2025-06-02 16:19:53'), +(7135,2385,'action complete via WP Cron','2025-06-02 14:19:53','2025-06-02 16:19:53'), +(7136,2387,'action created','2025-06-02 14:19:53','2025-06-02 16:19:53'), +(7137,2308,'action started via WP Cron','2025-06-03 01:59:59','2025-06-03 03:59:59'), +(7138,2308,'action complete via WP Cron','2025-06-03 01:59:59','2025-06-03 03:59:59'), +(7139,2388,'action created','2025-06-03 01:59:59','2025-06-03 03:59:59'), +(7140,2386,'action started via WP Cron','2025-06-03 14:25:25','2025-06-03 16:25:25'), +(7141,2386,'action complete via WP Cron','2025-06-03 14:25:25','2025-06-03 16:25:25'), +(7142,2389,'action created','2025-06-03 14:25:25','2025-06-03 16:25:25'), +(7143,2387,'action started via WP Cron','2025-06-03 14:25:25','2025-06-03 16:25:25'), +(7144,2387,'action complete via WP Cron','2025-06-03 14:25:25','2025-06-03 16:25:25'), +(7145,2390,'action created','2025-06-03 14:25:25','2025-06-03 16:25:25'), +(7146,2391,'action created','2025-06-04 11:13:31','2025-06-04 13:13:31'), +(7147,2391,'action started via WP Cron','2025-06-04 11:20:58','2025-06-04 13:20:58'), +(7148,2391,'action complete via WP Cron','2025-06-04 11:20:58','2025-06-04 13:20:58'), +(7149,2389,'action started via WP Cron','2025-06-04 14:50:58','2025-06-04 16:50:58'), +(7150,2389,'action complete via WP Cron','2025-06-04 14:50:58','2025-06-04 16:50:58'), +(7151,2392,'action created','2025-06-04 14:50:58','2025-06-04 16:50:58'), +(7152,2390,'action started via WP Cron','2025-06-04 14:50:58','2025-06-04 16:50:58'), +(7153,2390,'action complete via WP Cron','2025-06-04 14:50:58','2025-06-04 16:50:58'), +(7154,2393,'action created','2025-06-04 14:50:58','2025-06-04 16:50:58'), +(7155,2394,'action created','2025-06-05 07:44:45','2025-06-05 09:44:45'), +(7156,2394,'action started via WP Cron','2025-06-05 07:45:47','2025-06-05 09:45:47'), +(7157,2394,'action complete via WP Cron','2025-06-05 07:45:47','2025-06-05 09:45:47'), +(7158,2395,'action created','2025-06-05 07:45:48','2025-06-05 09:45:48'), +(7159,2395,'action started via WP Cron','2025-06-05 07:49:35','2025-06-05 09:49:35'), +(7160,2395,'action complete via WP Cron','2025-06-05 07:49:35','2025-06-05 09:49:35'), +(7161,2392,'action started via WP Cron','2025-06-05 15:01:14','2025-06-05 17:01:14'), +(7162,2392,'action complete via WP Cron','2025-06-05 15:01:14','2025-06-05 17:01:14'), +(7163,2396,'action created','2025-06-05 15:01:14','2025-06-05 17:01:14'), +(7164,2393,'action started via WP Cron','2025-06-05 15:01:14','2025-06-05 17:01:14'), +(7165,2393,'action complete via WP Cron','2025-06-05 15:01:14','2025-06-05 17:01:14'), +(7166,2397,'action created','2025-06-05 15:01:14','2025-06-05 17:01:14'), +(7167,2396,'action started via WP Cron','2025-06-06 15:20:27','2025-06-06 17:20:27'), +(7168,2396,'action complete via WP Cron','2025-06-06 15:20:27','2025-06-06 17:20:27'), +(7169,2398,'action created','2025-06-06 15:20:27','2025-06-06 17:20:27'), +(7170,2397,'action started via WP Cron','2025-06-06 15:20:27','2025-06-06 17:20:27'), +(7171,2397,'action complete via WP Cron','2025-06-06 15:20:27','2025-06-06 17:20:27'), +(7172,2399,'action created','2025-06-06 15:20:27','2025-06-06 17:20:27'), +(7173,2398,'action started via WP Cron','2025-06-07 15:21:21','2025-06-07 17:21:21'), +(7174,2398,'action complete via WP Cron','2025-06-07 15:21:21','2025-06-07 17:21:21'), +(7175,2400,'action created','2025-06-07 15:21:21','2025-06-07 17:21:21'), +(7176,2399,'action started via WP Cron','2025-06-07 15:21:21','2025-06-07 17:21:21'), +(7177,2399,'action complete via WP Cron','2025-06-07 15:21:22','2025-06-07 17:21:22'), +(7178,2401,'action created','2025-06-07 15:21:22','2025-06-07 17:21:22'), +(7179,2400,'action started via WP Cron','2025-06-08 15:39:25','2025-06-08 17:39:25'), +(7180,2400,'action complete via WP Cron','2025-06-08 15:39:25','2025-06-08 17:39:25'), +(7181,2402,'action created','2025-06-08 15:39:25','2025-06-08 17:39:25'), +(7182,2401,'action started via WP Cron','2025-06-08 15:39:25','2025-06-08 17:39:25'), +(7183,2401,'action complete via WP Cron','2025-06-08 15:39:26','2025-06-08 17:39:26'), +(7184,2403,'action created','2025-06-08 15:39:26','2025-06-08 17:39:26'), +(7185,2404,'action created','2025-06-08 20:23:58','2025-06-08 22:23:58'), +(7186,2405,'action created','2025-06-08 20:23:58','2025-06-08 22:23:58'), +(7187,2404,'action started via WP Cron','2025-06-08 20:45:42','2025-06-08 22:45:42'), +(7188,2404,'action complete via WP Cron','2025-06-08 20:45:42','2025-06-08 22:45:42'), +(7189,2405,'action started via WP Cron','2025-06-08 20:45:42','2025-06-08 22:45:42'), +(7190,2405,'action complete via WP Cron','2025-06-08 20:45:42','2025-06-08 22:45:42'), +(7191,2406,'action created','2025-06-09 10:59:56','2025-06-09 12:59:56'), +(7192,2406,'action started via Async Request','2025-06-09 11:00:49','2025-06-09 13:00:49'), +(7193,2406,'action complete via Async Request','2025-06-09 11:00:49','2025-06-09 13:00:49'), +(7194,2402,'action started via WP Cron','2025-06-09 15:58:51','2025-06-09 17:58:51'), +(7195,2402,'action complete via WP Cron','2025-06-09 15:58:51','2025-06-09 17:58:51'), +(7196,2407,'action created','2025-06-09 15:58:51','2025-06-09 17:58:51'), +(7197,2403,'action started via WP Cron','2025-06-09 15:58:51','2025-06-09 17:58:51'), +(7198,2403,'action complete via WP Cron','2025-06-09 15:58:51','2025-06-09 17:58:51'), +(7199,2408,'action created','2025-06-09 15:58:51','2025-06-09 17:58:51'), +(7200,2388,'action started via WP Cron','2025-06-10 02:51:53','2025-06-10 04:51:53'), +(7201,2388,'action complete via WP Cron','2025-06-10 02:51:53','2025-06-10 04:51:53'), +(7202,2409,'action created','2025-06-10 02:51:53','2025-06-10 04:51:53'), +(7203,2407,'action started via WP Cron','2025-06-10 16:23:04','2025-06-10 18:23:04'), +(7204,2407,'action complete via WP Cron','2025-06-10 16:23:04','2025-06-10 18:23:04'), +(7205,2410,'action created','2025-06-10 16:23:04','2025-06-10 18:23:04'), +(7206,2408,'action started via WP Cron','2025-06-10 16:23:04','2025-06-10 18:23:04'), +(7207,2408,'action complete via WP Cron','2025-06-10 16:23:04','2025-06-10 18:23:04'), +(7208,2411,'action created','2025-06-10 16:23:04','2025-06-10 18:23:04'), +(7209,2410,'action started via WP Cron','2025-06-11 16:25:54','2025-06-11 18:25:54'), +(7210,2410,'action complete via WP Cron','2025-06-11 16:25:54','2025-06-11 18:25:54'), +(7211,2412,'action created','2025-06-11 16:25:54','2025-06-11 18:25:54'), +(7212,2411,'action started via WP Cron','2025-06-11 16:25:54','2025-06-11 18:25:54'), +(7213,2411,'action complete via WP Cron','2025-06-11 16:25:54','2025-06-11 18:25:54'), +(7214,2413,'action created','2025-06-11 16:25:54','2025-06-11 18:25:54'), +(7215,2412,'action started via WP Cron','2025-06-12 16:31:42','2025-06-12 18:31:42'), +(7216,2412,'action complete via WP Cron','2025-06-12 16:31:42','2025-06-12 18:31:42'), +(7217,2414,'action created','2025-06-12 16:31:42','2025-06-12 18:31:42'), +(7218,2413,'action started via WP Cron','2025-06-12 16:31:42','2025-06-12 18:31:42'), +(7219,2413,'action complete via WP Cron','2025-06-12 16:31:42','2025-06-12 18:31:42'), +(7220,2415,'action created','2025-06-12 16:31:42','2025-06-12 18:31:42'), +(7221,2416,'action created','2025-06-12 16:49:47','2025-06-12 18:49:47'), +(7222,2417,'action created','2025-06-12 16:50:03','2025-06-12 18:50:03'), +(7223,2418,'action created','2025-06-12 16:50:03','2025-06-12 18:50:03'), +(7224,2419,'action created','2025-06-12 16:50:03','2025-06-12 18:50:03'), +(7225,2420,'action created','2025-06-12 16:50:03','2025-06-12 18:50:03'), +(7226,2416,'action started via WP Cron','2025-06-12 16:51:22','2025-06-12 18:51:22'), +(7227,2416,'action complete via WP Cron','2025-06-12 16:51:22','2025-06-12 18:51:22'), +(7228,2417,'action started via WP Cron','2025-06-12 16:51:22','2025-06-12 18:51:22'), +(7229,2417,'action complete via WP Cron','2025-06-12 16:51:22','2025-06-12 18:51:22'), +(7230,2418,'action started via WP Cron','2025-06-12 16:51:22','2025-06-12 18:51:22'), +(7231,2418,'action complete via WP Cron','2025-06-12 16:51:22','2025-06-12 18:51:22'), +(7232,2419,'action started via WP Cron','2025-06-12 16:51:22','2025-06-12 18:51:22'), +(7233,2419,'action complete via WP Cron','2025-06-12 16:51:22','2025-06-12 18:51:22'), +(7234,2420,'action started via WP Cron','2025-06-13 04:51:28','2025-06-13 06:51:28'), +(7235,2420,'action complete via WP Cron','2025-06-13 04:51:28','2025-06-13 06:51:28'), +(7236,2421,'action created','2025-06-13 04:51:28','2025-06-13 06:51:28'), +(7237,2422,'action created','2025-06-13 08:38:00','2025-06-13 10:38:00'), +(7238,2423,'action created','2025-06-13 08:38:00','2025-06-13 10:38:00'), +(7239,2424,'action created','2025-06-13 08:38:00','2025-06-13 10:38:00'), +(7240,2422,'action started via WP Cron','2025-06-13 08:38:27','2025-06-13 10:38:27'), +(7241,2422,'action complete via WP Cron','2025-06-13 08:38:27','2025-06-13 10:38:27'), +(7242,2423,'action started via WP Cron','2025-06-13 08:38:27','2025-06-13 10:38:27'), +(7243,2423,'action complete via WP Cron','2025-06-13 08:38:27','2025-06-13 10:38:27'), +(7244,2424,'action started via WP Cron','2025-06-13 08:38:27','2025-06-13 10:38:27'), +(7245,2424,'action complete via WP Cron','2025-06-13 08:38:27','2025-06-13 10:38:27'), +(7246,2425,'action created','2025-06-13 08:38:32','2025-06-13 10:38:32'), +(7247,2426,'action created','2025-06-13 08:38:32','2025-06-13 10:38:32'), +(7248,2427,'action created','2025-06-13 08:38:32','2025-06-13 10:38:32'), +(7249,2428,'action created','2025-06-13 08:38:32','2025-06-13 10:38:32'), +(7250,2429,'action created','2025-06-13 08:38:32','2025-06-13 10:38:32'), +(7251,2430,'action created','2025-06-13 08:38:32','2025-06-13 10:38:32'), +(7252,2431,'action created','2025-06-13 08:38:32','2025-06-13 10:38:32'), +(7253,2432,'action created','2025-06-13 08:38:32','2025-06-13 10:38:32'), +(7254,2433,'action created','2025-06-13 08:38:32','2025-06-13 10:38:32'), +(7255,2434,'action created','2025-06-13 08:38:32','2025-06-13 10:38:32'), +(7256,2435,'action created','2025-06-13 08:38:32','2025-06-13 10:38:32'), +(7257,2436,'action created','2025-06-13 08:38:32','2025-06-13 10:38:32'), +(7258,2437,'action created','2025-06-13 08:38:32','2025-06-13 10:38:32'), +(7259,2438,'action created','2025-06-13 08:38:32','2025-06-13 10:38:32'), +(7260,2439,'action created','2025-06-13 08:38:32','2025-06-13 10:38:32'), +(7261,2440,'action created','2025-06-13 08:38:32','2025-06-13 10:38:32'), +(7262,2441,'action created','2025-06-13 08:38:32','2025-06-13 10:38:32'), +(7263,2442,'action created','2025-06-13 08:38:32','2025-06-13 10:38:32'), +(7264,2425,'action started via Async Request','2025-06-13 08:38:45','2025-06-13 10:38:45'), +(7265,2425,'action complete via Async Request','2025-06-13 08:38:45','2025-06-13 10:38:45'), +(7266,2426,'action started via Async Request','2025-06-13 08:38:45','2025-06-13 10:38:45'), +(7267,2426,'action complete via Async Request','2025-06-13 08:38:45','2025-06-13 10:38:45'), +(7268,2427,'action started via Async Request','2025-06-13 08:38:45','2025-06-13 10:38:45'), +(7269,2427,'action complete via Async Request','2025-06-13 08:38:45','2025-06-13 10:38:45'), +(7270,2428,'action started via Async Request','2025-06-13 08:38:45','2025-06-13 10:38:45'), +(7271,2428,'action complete via Async Request','2025-06-13 08:38:45','2025-06-13 10:38:45'), +(7272,2429,'action started via Async Request','2025-06-13 08:38:45','2025-06-13 10:38:45'), +(7273,2429,'action complete via Async Request','2025-06-13 08:38:45','2025-06-13 10:38:45'), +(7274,2430,'action started via Async Request','2025-06-13 08:38:45','2025-06-13 10:38:45'), +(7275,2430,'action complete via Async Request','2025-06-13 08:38:45','2025-06-13 10:38:45'), +(7276,2431,'action started via Async Request','2025-06-13 08:38:45','2025-06-13 10:38:45'), +(7277,2431,'action complete via Async Request','2025-06-13 08:38:45','2025-06-13 10:38:45'), +(7278,2432,'action started via Async Request','2025-06-13 08:38:45','2025-06-13 10:38:45'), +(7279,2432,'action complete via Async Request','2025-06-13 08:38:45','2025-06-13 10:38:45'), +(7280,2433,'action started via Async Request','2025-06-13 08:38:45','2025-06-13 10:38:45'), +(7281,2433,'action complete via Async Request','2025-06-13 08:38:45','2025-06-13 10:38:45'), +(7282,2434,'action started via Async Request','2025-06-13 08:38:45','2025-06-13 10:38:45'), +(7283,2434,'action complete via Async Request','2025-06-13 08:38:45','2025-06-13 10:38:45'), +(7284,2435,'action started via Async Request','2025-06-13 08:38:45','2025-06-13 10:38:45'), +(7285,2435,'action complete via Async Request','2025-06-13 08:38:45','2025-06-13 10:38:45'), +(7286,2436,'action started via Async Request','2025-06-13 08:38:45','2025-06-13 10:38:45'), +(7287,2436,'action complete via Async Request','2025-06-13 08:38:46','2025-06-13 10:38:46'), +(7288,2437,'action started via Async Request','2025-06-13 08:38:46','2025-06-13 10:38:46'), +(7289,2437,'action complete via Async Request','2025-06-13 08:38:46','2025-06-13 10:38:46'), +(7290,2438,'action started via Async Request','2025-06-13 08:38:46','2025-06-13 10:38:46'), +(7291,2438,'action complete via Async Request','2025-06-13 08:38:46','2025-06-13 10:38:46'), +(7292,2439,'action started via Async Request','2025-06-13 08:38:46','2025-06-13 10:38:46'), +(7293,2439,'action complete via Async Request','2025-06-13 08:38:46','2025-06-13 10:38:46'), +(7294,2440,'action started via Async Request','2025-06-13 08:38:46','2025-06-13 10:38:46'), +(7295,2440,'action complete via Async Request','2025-06-13 08:38:46','2025-06-13 10:38:46'), +(7296,2441,'action started via Async Request','2025-06-13 08:38:46','2025-06-13 10:38:46'), +(7297,2441,'action complete via Async Request','2025-06-13 08:38:46','2025-06-13 10:38:46'), +(7298,2442,'action started via Async Request','2025-06-13 08:38:46','2025-06-13 10:38:46'), +(7299,2442,'action complete via Async Request','2025-06-13 08:38:46','2025-06-13 10:38:46'), +(7300,2414,'action started via WP Cron','2025-06-13 16:32:59','2025-06-13 18:32:59'), +(7301,2414,'action complete via WP Cron','2025-06-13 16:32:59','2025-06-13 18:32:59'), +(7302,2443,'action created','2025-06-13 16:32:59','2025-06-13 18:32:59'), +(7303,2415,'action started via WP Cron','2025-06-13 16:32:59','2025-06-13 18:32:59'), +(7304,2415,'action complete via WP Cron','2025-06-13 16:32:59','2025-06-13 18:32:59'), +(7305,2444,'action created','2025-06-13 16:32:59','2025-06-13 18:32:59'), +(7306,2421,'action started via WP Cron','2025-06-13 17:27:39','2025-06-13 19:27:39'), +(7307,2421,'action complete via WP Cron','2025-06-13 17:27:39','2025-06-13 19:27:39'), +(7308,2445,'action created','2025-06-13 17:27:39','2025-06-13 19:27:39'), +(7309,2445,'action started via WP Cron','2025-06-14 05:48:31','2025-06-14 07:48:31'), +(7310,2445,'action complete via WP Cron','2025-06-14 05:48:31','2025-06-14 07:48:31'), +(7311,2446,'action created','2025-06-14 05:48:31','2025-06-14 07:48:31'), +(7312,2443,'action started via WP Cron','2025-06-14 16:59:16','2025-06-14 18:59:16'), +(7313,2443,'action complete via WP Cron','2025-06-14 16:59:16','2025-06-14 18:59:16'), +(7314,2447,'action created','2025-06-14 16:59:16','2025-06-14 18:59:16'), +(7315,2444,'action started via WP Cron','2025-06-14 16:59:16','2025-06-14 18:59:16'), +(7316,2444,'action complete via WP Cron','2025-06-14 16:59:16','2025-06-14 18:59:16'), +(7317,2448,'action created','2025-06-14 16:59:16','2025-06-14 18:59:16'), +(7318,2446,'action started via WP Cron','2025-06-14 18:00:53','2025-06-14 20:00:53'), +(7319,2446,'action complete via WP Cron','2025-06-14 18:00:53','2025-06-14 20:00:53'), +(7320,2449,'action created','2025-06-14 18:00:53','2025-06-14 20:00:53'), +(7321,2449,'action started via WP Cron','2025-06-15 06:30:14','2025-06-15 08:30:14'), +(7322,2449,'action complete via WP Cron','2025-06-15 06:30:14','2025-06-15 08:30:14'), +(7323,2450,'action created','2025-06-15 06:30:14','2025-06-15 08:30:14'), +(7324,2447,'action started via WP Cron','2025-06-15 17:19:05','2025-06-15 19:19:05'), +(7325,2447,'action complete via WP Cron','2025-06-15 17:19:05','2025-06-15 19:19:05'), +(7326,2451,'action created','2025-06-15 17:19:05','2025-06-15 19:19:05'), +(7327,2448,'action started via WP Cron','2025-06-15 17:19:05','2025-06-15 19:19:05'), +(7328,2448,'action complete via WP Cron','2025-06-15 17:19:05','2025-06-15 19:19:05'), +(7329,2452,'action created','2025-06-15 17:19:05','2025-06-15 19:19:05'), +(7330,2450,'action started via WP Cron','2025-06-15 18:30:56','2025-06-15 20:30:56'), +(7331,2450,'action complete via WP Cron','2025-06-15 18:30:56','2025-06-15 20:30:56'), +(7332,2453,'action created','2025-06-15 18:30:56','2025-06-15 20:30:56'), +(7333,2453,'action started via WP Cron','2025-06-16 06:31:59','2025-06-16 08:31:59'), +(7334,2453,'action complete via WP Cron','2025-06-16 06:31:59','2025-06-16 08:31:59'), +(7335,2454,'action created','2025-06-16 06:31:59','2025-06-16 08:31:59'), +(7336,2451,'action started via WP Cron','2025-06-16 17:54:06','2025-06-16 19:54:06'), +(7337,2451,'action complete via WP Cron','2025-06-16 17:54:06','2025-06-16 19:54:06'), +(7338,2455,'action created','2025-06-16 17:54:06','2025-06-16 19:54:06'), +(7339,2452,'action started via WP Cron','2025-06-16 17:54:06','2025-06-16 19:54:06'), +(7340,2452,'action complete via WP Cron','2025-06-16 17:54:06','2025-06-16 19:54:06'), +(7341,2456,'action created','2025-06-16 17:54:06','2025-06-16 19:54:06'), +(7342,2454,'action started via WP Cron','2025-06-16 18:36:49','2025-06-16 20:36:49'), +(7343,2454,'action complete via WP Cron','2025-06-16 18:36:49','2025-06-16 20:36:49'), +(7344,2457,'action created','2025-06-16 18:36:49','2025-06-16 20:36:49'), +(7345,2409,'action started via WP Cron','2025-06-17 04:02:35','2025-06-17 06:02:35'), +(7346,2409,'action complete via WP Cron','2025-06-17 04:02:35','2025-06-17 06:02:35'), +(7347,2458,'action created','2025-06-17 04:02:35','2025-06-17 06:02:35'), +(7348,2459,'action created','2025-06-17 06:01:29','2025-06-17 08:01:29'), +(7349,2460,'action created','2025-06-17 06:01:29','2025-06-17 08:01:29'), +(7350,2459,'action started via Async Request','2025-06-17 06:02:02','2025-06-17 08:02:02'), +(7351,2459,'action complete via Async Request','2025-06-17 06:02:02','2025-06-17 08:02:02'), +(7352,2460,'action started via Async Request','2025-06-17 06:02:02','2025-06-17 08:02:02'), +(7353,2460,'action complete via Async Request','2025-06-17 06:02:02','2025-06-17 08:02:02'), +(7354,2461,'action created','2025-06-17 06:09:14','2025-06-17 08:09:14'), +(7355,2462,'action created','2025-06-17 06:09:14','2025-06-17 08:09:14'), +(7356,2461,'action started via WP Cron','2025-06-17 06:09:26','2025-06-17 08:09:26'), +(7357,2461,'action complete via WP Cron','2025-06-17 06:09:26','2025-06-17 08:09:26'), +(7358,2462,'action started via WP Cron','2025-06-17 06:09:26','2025-06-17 08:09:26'), +(7359,2462,'action complete via WP Cron','2025-06-17 06:09:26','2025-06-17 08:09:26'), +(7360,2463,'action created','2025-06-17 06:09:31','2025-06-17 08:09:31'), +(7361,2464,'action created','2025-06-17 06:09:31','2025-06-17 08:09:31'), +(7362,2465,'action created','2025-06-17 06:09:43','2025-06-17 08:09:43'), +(7363,2466,'action created','2025-06-17 06:09:43','2025-06-17 08:09:43'), +(7364,2463,'action started via Async Request','2025-06-17 06:09:43','2025-06-17 08:09:43'), +(7365,2463,'action complete via Async Request','2025-06-17 06:09:43','2025-06-17 08:09:43'), +(7366,2464,'action started via Async Request','2025-06-17 06:09:43','2025-06-17 08:09:43'), +(7367,2464,'action complete via Async Request','2025-06-17 06:09:43','2025-06-17 08:09:43'), +(7368,2465,'action started via Async Request','2025-06-17 06:09:43','2025-06-17 08:09:43'), +(7369,2465,'action complete via Async Request','2025-06-17 06:09:43','2025-06-17 08:09:43'), +(7370,2466,'action started via Async Request','2025-06-17 06:09:48','2025-06-17 08:09:48'), +(7371,2466,'action complete via Async Request','2025-06-17 06:09:48','2025-06-17 08:09:48'), +(7372,2467,'action created','2025-06-17 06:10:30','2025-06-17 08:10:30'), +(7373,2468,'action created','2025-06-17 06:10:30','2025-06-17 08:10:30'), +(7374,2469,'action created','2025-06-17 06:10:30','2025-06-17 08:10:30'), +(7375,2467,'action started via Async Request','2025-06-17 06:10:46','2025-06-17 08:10:46'), +(7376,2467,'action complete via Async Request','2025-06-17 06:10:46','2025-06-17 08:10:46'), +(7377,2468,'action started via Async Request','2025-06-17 06:10:46','2025-06-17 08:10:46'), +(7378,2468,'action complete via Async Request','2025-06-17 06:10:46','2025-06-17 08:10:46'), +(7379,2469,'action started via Async Request','2025-06-17 06:10:46','2025-06-17 08:10:46'), +(7380,2469,'action complete via Async Request','2025-06-17 06:10:46','2025-06-17 08:10:46'), +(7381,2470,'action created','2025-06-17 06:10:52','2025-06-17 08:10:52'), +(7382,2471,'action created','2025-06-17 06:10:52','2025-06-17 08:10:52'), +(7383,2470,'action started via WP Cron','2025-06-17 06:11:26','2025-06-17 08:11:26'), +(7384,2470,'action complete via WP Cron','2025-06-17 06:11:26','2025-06-17 08:11:26'), +(7385,2471,'action started via WP Cron','2025-06-17 06:11:26','2025-06-17 08:11:26'), +(7386,2471,'action complete via WP Cron','2025-06-17 06:11:26','2025-06-17 08:11:26'), +(7387,2472,'action created','2025-06-17 06:13:27','2025-06-17 08:13:27'), +(7388,2473,'action created','2025-06-17 06:13:27','2025-06-17 08:13:27'), +(7389,2474,'action created','2025-06-17 06:13:27','2025-06-17 08:13:27'), +(7390,2475,'action created','2025-06-17 06:13:27','2025-06-17 08:13:27'), +(7391,2472,'action started via Async Request','2025-06-17 06:14:16','2025-06-17 08:14:16'), +(7392,2472,'action complete via Async Request','2025-06-17 06:14:16','2025-06-17 08:14:16'), +(7393,2473,'action started via Async Request','2025-06-17 06:14:16','2025-06-17 08:14:16'), +(7394,2473,'action complete via Async Request','2025-06-17 06:14:16','2025-06-17 08:14:16'), +(7395,2474,'action started via Async Request','2025-06-17 06:14:16','2025-06-17 08:14:16'), +(7396,2474,'action complete via Async Request','2025-06-17 06:14:16','2025-06-17 08:14:16'), +(7397,2475,'action started via Async Request','2025-06-17 06:14:16','2025-06-17 08:14:16'), +(7398,2475,'action complete via Async Request','2025-06-17 06:14:16','2025-06-17 08:14:16'), +(7399,2476,'action created','2025-06-17 06:19:09','2025-06-17 08:19:09'), +(7400,2477,'action created','2025-06-17 06:19:09','2025-06-17 08:19:09'), +(7401,2478,'action created','2025-06-17 06:19:09','2025-06-17 08:19:09'), +(7402,2479,'action created','2025-06-17 06:19:09','2025-06-17 08:19:09'), +(7403,2480,'action created','2025-06-17 06:19:09','2025-06-17 08:19:09'), +(7404,2481,'action created','2025-06-17 06:19:09','2025-06-17 08:19:09'), +(7405,2482,'action created','2025-06-17 06:19:09','2025-06-17 08:19:09'), +(7406,2483,'action created','2025-06-17 06:19:09','2025-06-17 08:19:09'), +(7407,2484,'action created','2025-06-17 06:19:09','2025-06-17 08:19:09'), +(7408,2485,'action created','2025-06-17 06:19:15','2025-06-17 08:19:15'), +(7409,2476,'action started via WP Cron','2025-06-17 06:20:25','2025-06-17 08:20:25'), +(7410,2476,'action complete via WP Cron','2025-06-17 06:20:25','2025-06-17 08:20:25'), +(7411,2477,'action started via WP Cron','2025-06-17 06:20:25','2025-06-17 08:20:25'), +(7412,2477,'action complete via WP Cron','2025-06-17 06:20:25','2025-06-17 08:20:25'), +(7413,2479,'action started via WP Cron','2025-06-17 06:20:25','2025-06-17 08:20:25'), +(7414,2479,'action complete via WP Cron','2025-06-17 06:20:25','2025-06-17 08:20:25'), +(7415,2481,'action started via WP Cron','2025-06-17 06:20:25','2025-06-17 08:20:25'), +(7416,2481,'action complete via WP Cron','2025-06-17 06:20:25','2025-06-17 08:20:25'), +(7417,2483,'action started via WP Cron','2025-06-17 06:20:25','2025-06-17 08:20:25'), +(7418,2483,'action complete via WP Cron','2025-06-17 06:20:25','2025-06-17 08:20:25'), +(7419,2478,'action started via WP Cron','2025-06-17 06:20:25','2025-06-17 08:20:25'), +(7420,2478,'action complete via WP Cron','2025-06-17 06:20:25','2025-06-17 08:20:25'), +(7421,2480,'action started via WP Cron','2025-06-17 06:20:25','2025-06-17 08:20:25'), +(7422,2480,'action complete via WP Cron','2025-06-17 06:20:25','2025-06-17 08:20:25'), +(7423,2482,'action started via WP Cron','2025-06-17 06:20:25','2025-06-17 08:20:25'), +(7424,2482,'action complete via WP Cron','2025-06-17 06:20:25','2025-06-17 08:20:25'), +(7425,2484,'action started via WP Cron','2025-06-17 06:20:25','2025-06-17 08:20:25'), +(7426,2484,'action complete via WP Cron','2025-06-17 06:20:25','2025-06-17 08:20:25'), +(7427,2485,'action started via WP Cron','2025-06-17 06:20:25','2025-06-17 08:20:25'), +(7428,2485,'action complete via WP Cron','2025-06-17 06:20:25','2025-06-17 08:20:25'), +(7429,2486,'action created','2025-06-17 06:25:09','2025-06-17 08:25:09'), +(7430,2487,'action created','2025-06-17 06:25:09','2025-06-17 08:25:09'), +(7431,2486,'action started via Async Request','2025-06-17 06:25:09','2025-06-17 08:25:09'), +(7432,2486,'action complete via Async Request','2025-06-17 06:25:09','2025-06-17 08:25:09'), +(7433,2487,'action started via Async Request','2025-06-17 06:25:14','2025-06-17 08:25:14'), +(7434,2487,'action complete via Async Request','2025-06-17 06:25:14','2025-06-17 08:25:14'), +(7435,2488,'action created','2025-06-17 06:25:41','2025-06-17 08:25:41'), +(7436,2489,'action created','2025-06-17 06:25:41','2025-06-17 08:25:41'), +(7437,2490,'action created','2025-06-17 06:25:41','2025-06-17 08:25:41'), +(7438,2491,'action created','2025-06-17 06:25:41','2025-06-17 08:25:41'), +(7439,2492,'action created','2025-06-17 06:25:52','2025-06-17 08:25:52'), +(7440,2493,'action created','2025-06-17 06:25:52','2025-06-17 08:25:52'), +(7441,2494,'action created','2025-06-17 06:25:52','2025-06-17 08:25:52'), +(7442,2495,'action created','2025-06-17 06:25:52','2025-06-17 08:25:52'), +(7443,2488,'action started via Async Request','2025-06-17 06:26:11','2025-06-17 08:26:11'), +(7444,2488,'action complete via Async Request','2025-06-17 06:26:11','2025-06-17 08:26:11'), +(7445,2489,'action started via Async Request','2025-06-17 06:26:11','2025-06-17 08:26:11'), +(7446,2489,'action complete via Async Request','2025-06-17 06:26:11','2025-06-17 08:26:11'), +(7447,2490,'action started via Async Request','2025-06-17 06:26:11','2025-06-17 08:26:11'), +(7448,2490,'action complete via Async Request','2025-06-17 06:26:11','2025-06-17 08:26:11'), +(7449,2491,'action started via Async Request','2025-06-17 06:26:11','2025-06-17 08:26:11'), +(7450,2491,'action complete via Async Request','2025-06-17 06:26:11','2025-06-17 08:26:11'), +(7451,2492,'action started via Async Request','2025-06-17 06:26:11','2025-06-17 08:26:11'), +(7452,2492,'action complete via Async Request','2025-06-17 06:26:11','2025-06-17 08:26:11'), +(7453,2493,'action started via Async Request','2025-06-17 06:26:11','2025-06-17 08:26:11'), +(7454,2493,'action complete via Async Request','2025-06-17 06:26:11','2025-06-17 08:26:11'), +(7455,2494,'action started via Async Request','2025-06-17 06:26:11','2025-06-17 08:26:11'), +(7456,2494,'action complete via Async Request','2025-06-17 06:26:11','2025-06-17 08:26:11'), +(7457,2495,'action started via Async Request','2025-06-17 06:26:11','2025-06-17 08:26:11'), +(7458,2495,'action complete via Async Request','2025-06-17 06:26:11','2025-06-17 08:26:11'), +(7459,2496,'action created','2025-06-17 06:33:17','2025-06-17 08:33:17'), +(7460,2497,'action created','2025-06-17 06:33:17','2025-06-17 08:33:17'), +(7461,2496,'action started via WP Cron','2025-06-17 06:33:28','2025-06-17 08:33:28'), +(7462,2496,'action complete via WP Cron','2025-06-17 06:33:28','2025-06-17 08:33:28'), +(7463,2497,'action started via WP Cron','2025-06-17 06:33:28','2025-06-17 08:33:28'), +(7464,2497,'action complete via WP Cron','2025-06-17 06:33:28','2025-06-17 08:33:28'), +(7465,2498,'action created','2025-06-17 06:33:37','2025-06-17 08:33:37'), +(7466,2499,'action created','2025-06-17 06:33:37','2025-06-17 08:33:37'), +(7467,2498,'action started via Async Request','2025-06-17 06:34:19','2025-06-17 08:34:19'), +(7468,2498,'action complete via Async Request','2025-06-17 06:34:19','2025-06-17 08:34:19'), +(7469,2499,'action started via Async Request','2025-06-17 06:34:19','2025-06-17 08:34:19'), +(7470,2499,'action complete via Async Request','2025-06-17 06:34:19','2025-06-17 08:34:19'), +(7471,2500,'action created','2025-06-17 06:35:24','2025-06-17 08:35:24'), +(7472,2501,'action created','2025-06-17 06:35:24','2025-06-17 08:35:24'), +(7473,2500,'action started via WP Cron','2025-06-17 06:35:26','2025-06-17 08:35:26'), +(7474,2500,'action complete via WP Cron','2025-06-17 06:35:26','2025-06-17 08:35:26'), +(7475,2501,'action started via WP Cron','2025-06-17 06:35:26','2025-06-17 08:35:26'), +(7476,2501,'action complete via WP Cron','2025-06-17 06:35:26','2025-06-17 08:35:26'), +(7477,2457,'action started via WP Cron','2025-06-17 06:46:21','2025-06-17 08:46:21'), +(7478,2457,'action complete via WP Cron','2025-06-17 06:46:21','2025-06-17 08:46:21'), +(7479,2502,'action created','2025-06-17 06:46:21','2025-06-17 08:46:21'), +(7480,2503,'action created','2025-06-17 07:46:46','2025-06-17 09:46:46'), +(7481,2504,'action created','2025-06-17 07:46:46','2025-06-17 09:46:46'), +(7482,2503,'action started via WP Cron','2025-06-17 07:47:28','2025-06-17 09:47:28'), +(7483,2503,'action complete via WP Cron','2025-06-17 07:47:28','2025-06-17 09:47:28'), +(7484,2504,'action started via WP Cron','2025-06-17 07:47:28','2025-06-17 09:47:28'), +(7485,2504,'action complete via WP Cron','2025-06-17 07:47:28','2025-06-17 09:47:28'), +(7486,2505,'action created','2025-06-17 08:21:21','2025-06-17 10:21:21'), +(7487,2506,'action created','2025-06-17 08:21:21','2025-06-17 10:21:21'), +(7488,2505,'action started via WP Cron','2025-06-17 08:21:26','2025-06-17 10:21:26'), +(7489,2505,'action complete via WP Cron','2025-06-17 08:21:26','2025-06-17 10:21:26'), +(7490,2506,'action started via WP Cron','2025-06-17 08:21:26','2025-06-17 10:21:26'), +(7491,2506,'action complete via WP Cron','2025-06-17 08:21:26','2025-06-17 10:21:26'), +(7492,2507,'action created','2025-06-17 08:23:24','2025-06-17 10:23:24'), +(7493,2508,'action created','2025-06-17 08:23:24','2025-06-17 10:23:24'), +(7494,2507,'action started via WP Cron','2025-06-17 08:23:27','2025-06-17 10:23:27'), +(7495,2507,'action complete via WP Cron','2025-06-17 08:23:27','2025-06-17 10:23:27'), +(7496,2508,'action started via WP Cron','2025-06-17 08:23:27','2025-06-17 10:23:27'), +(7497,2508,'action complete via WP Cron','2025-06-17 08:23:27','2025-06-17 10:23:27'), +(7498,2509,'action created','2025-06-17 08:27:36','2025-06-17 10:27:36'), +(7499,2510,'action created','2025-06-17 08:27:36','2025-06-17 10:27:36'), +(7500,2509,'action started via WP Cron','2025-06-17 08:28:27','2025-06-17 10:28:27'), +(7501,2509,'action complete via WP Cron','2025-06-17 08:28:27','2025-06-17 10:28:27'), +(7502,2510,'action started via WP Cron','2025-06-17 08:28:27','2025-06-17 10:28:27'), +(7503,2510,'action complete via WP Cron','2025-06-17 08:28:27','2025-06-17 10:28:27'), +(7504,2511,'action created','2025-06-17 08:28:57','2025-06-17 10:28:57'), +(7505,2512,'action created','2025-06-17 08:28:57','2025-06-17 10:28:57'), +(7506,2511,'action started via WP Cron','2025-06-17 08:29:26','2025-06-17 10:29:26'), +(7507,2511,'action complete via WP Cron','2025-06-17 08:29:26','2025-06-17 10:29:26'), +(7508,2512,'action started via WP Cron','2025-06-17 08:29:26','2025-06-17 10:29:26'), +(7509,2512,'action complete via WP Cron','2025-06-17 08:29:26','2025-06-17 10:29:26'), +(7510,2455,'action started via WP Cron','2025-06-17 18:12:19','2025-06-17 20:12:19'), +(7511,2455,'action complete via WP Cron','2025-06-17 18:12:19','2025-06-17 20:12:19'), +(7512,2513,'action created','2025-06-17 18:12:19','2025-06-17 20:12:19'), +(7513,2456,'action started via WP Cron','2025-06-17 18:12:19','2025-06-17 20:12:19'), +(7514,2456,'action complete via WP Cron','2025-06-17 18:12:19','2025-06-17 20:12:19'), +(7515,2514,'action created','2025-06-17 18:12:19','2025-06-17 20:12:19'), +(7516,2502,'action started via WP Cron','2025-06-17 18:48:25','2025-06-17 20:48:25'), +(7517,2502,'action complete via WP Cron','2025-06-17 18:48:25','2025-06-17 20:48:25'), +(7518,2515,'action created','2025-06-17 18:48:25','2025-06-17 20:48:25'), +(7519,2515,'action started via WP Cron','2025-06-18 06:50:55','2025-06-18 08:50:55'), +(7520,2515,'action complete via WP Cron','2025-06-18 06:50:55','2025-06-18 08:50:55'), +(7521,2516,'action created','2025-06-18 06:50:55','2025-06-18 08:50:55'), +(7522,2517,'action created','2025-06-18 17:33:21','2025-06-18 19:33:21'), +(7523,2518,'action created','2025-06-18 17:33:21','2025-06-18 19:33:21'), +(7524,2519,'action created','2025-06-18 17:33:26','2025-06-18 19:33:26'), +(7525,2520,'action created','2025-06-18 17:33:26','2025-06-18 19:33:26'), +(7526,2517,'action started via WP Cron','2025-06-18 17:33:26','2025-06-18 19:33:26'), +(7527,2517,'action complete via WP Cron','2025-06-18 17:33:26','2025-06-18 19:33:26'), +(7528,2518,'action started via WP Cron','2025-06-18 17:33:26','2025-06-18 19:33:26'), +(7529,2518,'action complete via WP Cron','2025-06-18 17:33:26','2025-06-18 19:33:26'), +(7530,2519,'action started via WP Cron','2025-06-18 17:33:26','2025-06-18 19:33:26'), +(7531,2521,'action created','2025-06-18 17:33:26','2025-06-18 19:33:26'), +(7532,2519,'action complete via WP Cron','2025-06-18 17:33:26','2025-06-18 19:33:26'), +(7533,2522,'action created','2025-06-18 17:33:26','2025-06-18 19:33:26'), +(7534,2521,'action started via WP Cron','2025-06-18 17:33:26','2025-06-18 19:33:26'), +(7535,2521,'action complete via WP Cron','2025-06-18 17:33:26','2025-06-18 19:33:26'), +(7536,2523,'action created','2025-06-18 17:33:26','2025-06-18 19:33:26'), +(7537,2524,'action created','2025-06-18 17:33:26','2025-06-18 19:33:26'), +(7538,2525,'action created','2025-06-18 17:33:26','2025-06-18 19:33:26'), +(7539,2526,'action created','2025-06-18 17:33:26','2025-06-18 19:33:26'), +(7540,2527,'action created','2025-06-18 17:33:26','2025-06-18 19:33:26'), +(7541,2528,'action created','2025-06-18 17:33:26','2025-06-18 19:33:26'), +(7542,2529,'action created','2025-06-18 17:33:27','2025-06-18 19:33:27'), +(7543,2530,'action created','2025-06-18 17:33:27','2025-06-18 19:33:27'), +(7544,2531,'action created','2025-06-18 17:33:27','2025-06-18 19:33:27'), +(7545,2532,'action created','2025-06-18 17:33:27','2025-06-18 19:33:27'), +(7546,2533,'action created','2025-06-18 17:33:27','2025-06-18 19:33:27'), +(7547,2534,'action created','2025-06-18 17:33:27','2025-06-18 19:33:27'), +(7548,2535,'action created','2025-06-18 17:33:27','2025-06-18 19:33:27'), +(7549,2523,'action started via Async Request','2025-06-18 17:33:47','2025-06-18 19:33:47'), +(7550,2523,'action complete via Async Request','2025-06-18 17:33:47','2025-06-18 19:33:47'), +(7551,2525,'action started via Async Request','2025-06-18 17:33:47','2025-06-18 19:33:47'), +(7552,2525,'action complete via Async Request','2025-06-18 17:33:47','2025-06-18 19:33:47'), +(7553,2527,'action started via Async Request','2025-06-18 17:33:47','2025-06-18 19:33:47'), +(7554,2527,'action complete via Async Request','2025-06-18 17:33:47','2025-06-18 19:33:47'), +(7555,2520,'action started via Async Request','2025-06-18 17:33:47','2025-06-18 19:33:47'), +(7556,2520,'action complete via Async Request','2025-06-18 17:33:47','2025-06-18 19:33:47'), +(7557,2522,'action started via Async Request','2025-06-18 17:33:47','2025-06-18 19:33:47'), +(7558,2522,'action complete via Async Request','2025-06-18 17:33:47','2025-06-18 19:33:47'), +(7559,2524,'action started via Async Request','2025-06-18 17:33:47','2025-06-18 19:33:47'), +(7560,2524,'action complete via Async Request','2025-06-18 17:33:47','2025-06-18 19:33:47'), +(7561,2526,'action started via Async Request','2025-06-18 17:33:47','2025-06-18 19:33:47'), +(7562,2526,'action complete via Async Request','2025-06-18 17:33:47','2025-06-18 19:33:47'), +(7563,2528,'action started via Async Request','2025-06-18 17:33:47','2025-06-18 19:33:47'), +(7564,2528,'action complete via Async Request','2025-06-18 17:33:47','2025-06-18 19:33:47'), +(7565,2529,'action started via Async Request','2025-06-18 17:33:47','2025-06-18 19:33:47'), +(7566,2529,'action complete via Async Request','2025-06-18 17:33:47','2025-06-18 19:33:47'), +(7567,2531,'action started via Async Request','2025-06-18 17:33:47','2025-06-18 19:33:47'), +(7568,2531,'action complete via Async Request','2025-06-18 17:33:47','2025-06-18 19:33:47'), +(7569,2533,'action started via Async Request','2025-06-18 17:33:47','2025-06-18 19:33:47'), +(7570,2533,'action complete via Async Request','2025-06-18 17:33:47','2025-06-18 19:33:47'), +(7571,2530,'action started via Async Request','2025-06-18 17:33:47','2025-06-18 19:33:47'), +(7572,2530,'action complete via Async Request','2025-06-18 17:33:47','2025-06-18 19:33:47'), +(7573,2532,'action started via Async Request','2025-06-18 17:33:47','2025-06-18 19:33:47'), +(7574,2532,'action complete via Async Request','2025-06-18 17:33:47','2025-06-18 19:33:47'), +(7575,2534,'action started via Async Request','2025-06-18 17:33:47','2025-06-18 19:33:47'), +(7576,2534,'action complete via Async Request','2025-06-18 17:33:47','2025-06-18 19:33:47'), +(7577,2535,'action started via Async Request','2025-06-18 17:33:47','2025-06-18 19:33:47'), +(7578,2535,'action complete via Async Request','2025-06-18 17:33:47','2025-06-18 19:33:47'), +(7579,2536,'action created','2025-06-18 17:35:03','2025-06-18 19:35:03'), +(7580,2537,'action created','2025-06-18 17:35:03','2025-06-18 19:35:03'), +(7581,2538,'action created','2025-06-18 17:35:03','2025-06-18 19:35:03'), +(7582,2539,'action created','2025-06-18 17:35:03','2025-06-18 19:35:03'), +(7583,2540,'action created','2025-06-18 17:35:03','2025-06-18 19:35:03'), +(7584,2541,'action created','2025-06-18 17:35:03','2025-06-18 19:35:03'), +(7585,2542,'action created','2025-06-18 17:35:03','2025-06-18 19:35:03'), +(7586,2543,'action created','2025-06-18 17:35:03','2025-06-18 19:35:03'), +(7587,2544,'action created','2025-06-18 17:35:04','2025-06-18 19:35:04'), +(7588,2545,'action created','2025-06-18 17:35:04','2025-06-18 19:35:04'), +(7589,2546,'action created','2025-06-18 17:35:04','2025-06-18 19:35:04'), +(7590,2547,'action created','2025-06-18 17:35:04','2025-06-18 19:35:04'), +(7591,2548,'action created','2025-06-18 17:35:04','2025-06-18 19:35:04'), +(7592,2549,'action created','2025-06-18 17:35:04','2025-06-18 19:35:04'), +(7593,2550,'action created','2025-06-18 17:35:04','2025-06-18 19:35:04'), +(7594,2551,'action created','2025-06-18 17:35:04','2025-06-18 19:35:04'), +(7595,2552,'action created','2025-06-18 17:35:04','2025-06-18 19:35:04'), +(7596,2553,'action created','2025-06-18 17:35:22','2025-06-18 19:35:22'), +(7597,2536,'action started via WP Cron','2025-06-18 17:35:26','2025-06-18 19:35:26'), +(7598,2536,'action complete via WP Cron','2025-06-18 17:35:26','2025-06-18 19:35:26'), +(7599,2537,'action started via WP Cron','2025-06-18 17:35:26','2025-06-18 19:35:26'), +(7600,2537,'action complete via WP Cron','2025-06-18 17:35:26','2025-06-18 19:35:26'), +(7601,2539,'action started via WP Cron','2025-06-18 17:35:26','2025-06-18 19:35:26'), +(7602,2539,'action complete via WP Cron','2025-06-18 17:35:26','2025-06-18 19:35:26'), +(7603,2541,'action started via WP Cron','2025-06-18 17:35:26','2025-06-18 19:35:26'), +(7604,2541,'action complete via WP Cron','2025-06-18 17:35:26','2025-06-18 19:35:26'), +(7605,2543,'action started via WP Cron','2025-06-18 17:35:26','2025-06-18 19:35:26'), +(7606,2543,'action complete via WP Cron','2025-06-18 17:35:26','2025-06-18 19:35:26'), +(7607,2538,'action started via WP Cron','2025-06-18 17:35:26','2025-06-18 19:35:26'), +(7608,2538,'action complete via WP Cron','2025-06-18 17:35:26','2025-06-18 19:35:26'), +(7609,2540,'action started via WP Cron','2025-06-18 17:35:26','2025-06-18 19:35:26'), +(7610,2540,'action complete via WP Cron','2025-06-18 17:35:26','2025-06-18 19:35:26'), +(7611,2542,'action started via WP Cron','2025-06-18 17:35:26','2025-06-18 19:35:26'), +(7612,2542,'action complete via WP Cron','2025-06-18 17:35:26','2025-06-18 19:35:26'), +(7613,2545,'action started via WP Cron','2025-06-18 17:35:26','2025-06-18 19:35:26'), +(7614,2545,'action complete via WP Cron','2025-06-18 17:35:26','2025-06-18 19:35:26'), +(7615,2547,'action started via WP Cron','2025-06-18 17:35:26','2025-06-18 19:35:26'), +(7616,2547,'action complete via WP Cron','2025-06-18 17:35:26','2025-06-18 19:35:26'), +(7617,2549,'action started via WP Cron','2025-06-18 17:35:26','2025-06-18 19:35:26'), +(7618,2549,'action complete via WP Cron','2025-06-18 17:35:26','2025-06-18 19:35:26'), +(7619,2551,'action started via WP Cron','2025-06-18 17:35:26','2025-06-18 19:35:26'), +(7620,2551,'action complete via WP Cron','2025-06-18 17:35:26','2025-06-18 19:35:26'), +(7621,2544,'action started via WP Cron','2025-06-18 17:35:26','2025-06-18 19:35:26'), +(7622,2544,'action complete via WP Cron','2025-06-18 17:35:26','2025-06-18 19:35:26'), +(7623,2546,'action started via WP Cron','2025-06-18 17:35:26','2025-06-18 19:35:26'), +(7624,2546,'action complete via WP Cron','2025-06-18 17:35:26','2025-06-18 19:35:26'), +(7625,2548,'action started via WP Cron','2025-06-18 17:35:26','2025-06-18 19:35:26'), +(7626,2548,'action complete via WP Cron','2025-06-18 17:35:26','2025-06-18 19:35:26'), +(7627,2550,'action started via WP Cron','2025-06-18 17:35:26','2025-06-18 19:35:26'), +(7628,2550,'action complete via WP Cron','2025-06-18 17:35:26','2025-06-18 19:35:26'), +(7629,2552,'action started via WP Cron','2025-06-18 17:35:26','2025-06-18 19:35:26'), +(7630,2552,'action complete via WP Cron','2025-06-18 17:35:26','2025-06-18 19:35:26'), +(7631,2553,'action started via WP Cron','2025-06-18 17:35:26','2025-06-18 19:35:26'), +(7632,2553,'action complete via WP Cron','2025-06-18 17:35:26','2025-06-18 19:35:26'), +(7633,2513,'action started via WP Cron','2025-06-18 18:28:36','2025-06-18 20:28:36'), +(7634,2513,'action complete via WP Cron','2025-06-18 18:28:36','2025-06-18 20:28:36'), +(7635,2554,'action created','2025-06-18 18:28:36','2025-06-18 20:28:36'), +(7636,2514,'action started via WP Cron','2025-06-18 18:28:36','2025-06-18 20:28:36'), +(7637,2514,'action complete via WP Cron','2025-06-18 18:28:36','2025-06-18 20:28:36'), +(7638,2555,'action created','2025-06-18 18:28:36','2025-06-18 20:28:36'), +(7639,2516,'action started via WP Cron','2025-06-18 18:51:12','2025-06-18 20:51:12'), +(7640,2516,'action failed via WP Cron: Scheduled action for woocommerce_refresh_order_count_cache will not be executed as no callbacks are registered.','2025-06-18 18:51:12','2025-06-18 20:51:12'), +(7641,2556,'action created','2025-06-18 18:51:12','2025-06-18 20:51:12'), +(7642,2557,'action created','2025-06-18 20:19:27','2025-06-18 22:19:27'), +(7643,2558,'action created','2025-06-18 20:19:27','2025-06-18 22:19:27'), +(7644,2559,'action created','2025-06-18 20:19:47','2025-06-18 22:19:47'), +(7645,2560,'action created','2025-06-18 20:19:47','2025-06-18 22:19:47'), +(7646,2561,'action created','2025-06-18 20:19:47','2025-06-18 22:19:47'), +(7647,2562,'action created','2025-06-18 20:19:47','2025-06-18 22:19:47'), +(7648,2563,'action created','2025-06-18 20:19:47','2025-06-18 22:19:47'), +(7649,2564,'action created','2025-06-18 20:19:47','2025-06-18 22:19:47'), +(7650,2565,'action created','2025-06-18 20:19:47','2025-06-18 22:19:47'), +(7651,2566,'action created','2025-06-18 20:19:47','2025-06-18 22:19:47'), +(7652,2567,'action created','2025-06-18 20:19:48','2025-06-18 22:19:48'), +(7653,2568,'action created','2025-06-18 20:19:48','2025-06-18 22:19:48'), +(7654,2569,'action created','2025-06-18 20:19:48','2025-06-18 22:19:48'), +(7655,2570,'action created','2025-06-18 20:19:48','2025-06-18 22:19:48'), +(7656,2571,'action created','2025-06-18 20:19:48','2025-06-18 22:19:48'), +(7657,2572,'action created','2025-06-18 20:19:48','2025-06-18 22:19:48'), +(7658,2573,'action created','2025-06-18 20:19:48','2025-06-18 22:19:48'), +(7659,2574,'action created','2025-06-18 20:19:48','2025-06-18 22:19:48'), +(7660,2575,'action created','2025-06-18 20:19:48','2025-06-18 22:19:48'), +(7661,2576,'action created','2025-06-18 20:19:48','2025-06-18 22:19:48'), +(7662,2577,'action created','2025-06-18 20:19:48','2025-06-18 22:19:48'), +(7663,2557,'action started via Async Request','2025-06-18 20:20:11','2025-06-18 22:20:11'), +(7664,2557,'action complete via Async Request','2025-06-18 20:20:11','2025-06-18 22:20:11'), +(7665,2558,'action started via Async Request','2025-06-18 20:20:11','2025-06-18 22:20:11'), +(7666,2558,'action complete via Async Request','2025-06-18 20:20:11','2025-06-18 22:20:11'), +(7667,2559,'action started via Async Request','2025-06-18 20:20:11','2025-06-18 22:20:11'), +(7668,2559,'action complete via Async Request','2025-06-18 20:20:11','2025-06-18 22:20:11'), +(7669,2561,'action started via Async Request','2025-06-18 20:20:11','2025-06-18 22:20:11'), +(7670,2561,'action complete via Async Request','2025-06-18 20:20:11','2025-06-18 22:20:11'), +(7671,2563,'action started via Async Request','2025-06-18 20:20:11','2025-06-18 22:20:11'), +(7672,2563,'action complete via Async Request','2025-06-18 20:20:11','2025-06-18 22:20:11'), +(7673,2565,'action started via Async Request','2025-06-18 20:20:11','2025-06-18 22:20:11'), +(7674,2565,'action complete via Async Request','2025-06-18 20:20:11','2025-06-18 22:20:11'), +(7675,2560,'action started via Async Request','2025-06-18 20:20:11','2025-06-18 22:20:11'), +(7676,2560,'action complete via Async Request','2025-06-18 20:20:11','2025-06-18 22:20:11'), +(7677,2562,'action started via Async Request','2025-06-18 20:20:11','2025-06-18 22:20:11'), +(7678,2562,'action complete via Async Request','2025-06-18 20:20:11','2025-06-18 22:20:11'), +(7679,2564,'action started via Async Request','2025-06-18 20:20:11','2025-06-18 22:20:11'), +(7680,2564,'action complete via Async Request','2025-06-18 20:20:11','2025-06-18 22:20:11'), +(7681,2566,'action started via Async Request','2025-06-18 20:20:11','2025-06-18 22:20:11'), +(7682,2566,'action complete via Async Request','2025-06-18 20:20:11','2025-06-18 22:20:11'), +(7683,2567,'action started via Async Request','2025-06-18 20:20:11','2025-06-18 22:20:11'), +(7684,2567,'action complete via Async Request','2025-06-18 20:20:11','2025-06-18 22:20:11'), +(7685,2569,'action started via Async Request','2025-06-18 20:20:11','2025-06-18 22:20:11'), +(7686,2569,'action complete via Async Request','2025-06-18 20:20:11','2025-06-18 22:20:11'), +(7687,2571,'action started via Async Request','2025-06-18 20:20:11','2025-06-18 22:20:11'), +(7688,2571,'action complete via Async Request','2025-06-18 20:20:11','2025-06-18 22:20:11'), +(7689,2573,'action started via Async Request','2025-06-18 20:20:11','2025-06-18 22:20:11'), +(7690,2573,'action complete via Async Request','2025-06-18 20:20:11','2025-06-18 22:20:11'), +(7691,2575,'action started via Async Request','2025-06-18 20:20:11','2025-06-18 22:20:11'), +(7692,2575,'action complete via Async Request','2025-06-18 20:20:11','2025-06-18 22:20:11'), +(7693,2568,'action started via Async Request','2025-06-18 20:20:11','2025-06-18 22:20:11'), +(7694,2568,'action complete via Async Request','2025-06-18 20:20:11','2025-06-18 22:20:11'), +(7695,2570,'action started via Async Request','2025-06-18 20:20:11','2025-06-18 22:20:11'), +(7696,2570,'action complete via Async Request','2025-06-18 20:20:11','2025-06-18 22:20:11'), +(7697,2572,'action started via Async Request','2025-06-18 20:20:11','2025-06-18 22:20:11'), +(7698,2572,'action complete via Async Request','2025-06-18 20:20:11','2025-06-18 22:20:11'), +(7699,2574,'action started via Async Request','2025-06-18 20:20:11','2025-06-18 22:20:11'), +(7700,2574,'action complete via Async Request','2025-06-18 20:20:11','2025-06-18 22:20:11'), +(7701,2576,'action started via Async Request','2025-06-18 20:20:11','2025-06-18 22:20:11'), +(7702,2576,'action complete via Async Request','2025-06-18 20:20:11','2025-06-18 22:20:11'), +(7703,2577,'action started via Async Request','2025-06-18 20:20:11','2025-06-18 22:20:11'), +(7704,2577,'action complete via Async Request','2025-06-18 20:20:11','2025-06-18 22:20:11'), +(7705,2578,'action created','2025-06-18 20:24:50','2025-06-18 22:24:50'), +(7706,2579,'action created','2025-06-18 20:24:50','2025-06-18 22:24:50'), +(7707,2580,'action created','2025-06-18 20:24:50','2025-06-18 22:24:50'), +(7708,2581,'action created','2025-06-18 20:24:50','2025-06-18 22:24:50'), +(7709,2582,'action created','2025-06-18 20:24:50','2025-06-18 22:24:50'), +(7710,2583,'action created','2025-06-18 20:24:50','2025-06-18 22:24:50'), +(7711,2584,'action created','2025-06-18 20:24:50','2025-06-18 22:24:50'), +(7712,2585,'action created','2025-06-18 20:24:50','2025-06-18 22:24:50'), +(7713,2586,'action created','2025-06-18 20:24:50','2025-06-18 22:24:50'), +(7714,2587,'action created','2025-06-18 20:24:50','2025-06-18 22:24:50'), +(7715,2588,'action created','2025-06-18 20:24:50','2025-06-18 22:24:50'), +(7716,2589,'action created','2025-06-18 20:24:50','2025-06-18 22:24:50'), +(7717,2590,'action created','2025-06-18 20:24:50','2025-06-18 22:24:50'), +(7718,2591,'action created','2025-06-18 20:24:50','2025-06-18 22:24:50'), +(7719,2592,'action created','2025-06-18 20:24:50','2025-06-18 22:24:50'), +(7720,2593,'action created','2025-06-18 20:24:50','2025-06-18 22:24:50'), +(7721,2594,'action created','2025-06-18 20:24:50','2025-06-18 22:24:50'), +(7722,2595,'action created','2025-06-18 20:24:50','2025-06-18 22:24:50'), +(7723,2578,'action started via WP Cron','2025-06-18 20:25:27','2025-06-18 22:25:27'), +(7724,2578,'action complete via WP Cron','2025-06-18 20:25:27','2025-06-18 22:25:27'), +(7725,2579,'action started via WP Cron','2025-06-18 20:25:27','2025-06-18 22:25:27'), +(7726,2579,'action complete via WP Cron','2025-06-18 20:25:27','2025-06-18 22:25:27'), +(7727,2581,'action started via WP Cron','2025-06-18 20:25:27','2025-06-18 22:25:27'), +(7728,2581,'action complete via WP Cron','2025-06-18 20:25:27','2025-06-18 22:25:27'), +(7729,2583,'action started via WP Cron','2025-06-18 20:25:27','2025-06-18 22:25:27'), +(7730,2583,'action complete via WP Cron','2025-06-18 20:25:27','2025-06-18 22:25:27'), +(7731,2585,'action started via WP Cron','2025-06-18 20:25:27','2025-06-18 22:25:27'), +(7732,2585,'action complete via WP Cron','2025-06-18 20:25:27','2025-06-18 22:25:27'), +(7733,2587,'action started via WP Cron','2025-06-18 20:25:27','2025-06-18 22:25:27'), +(7734,2587,'action complete via WP Cron','2025-06-18 20:25:27','2025-06-18 22:25:27'), +(7735,2589,'action started via WP Cron','2025-06-18 20:25:27','2025-06-18 22:25:27'), +(7736,2589,'action complete via WP Cron','2025-06-18 20:25:27','2025-06-18 22:25:27'), +(7737,2591,'action started via WP Cron','2025-06-18 20:25:27','2025-06-18 22:25:27'), +(7738,2591,'action complete via WP Cron','2025-06-18 20:25:27','2025-06-18 22:25:27'), +(7739,2593,'action started via WP Cron','2025-06-18 20:25:27','2025-06-18 22:25:27'), +(7740,2593,'action complete via WP Cron','2025-06-18 20:25:27','2025-06-18 22:25:27'), +(7741,2580,'action started via WP Cron','2025-06-18 20:25:27','2025-06-18 22:25:27'), +(7742,2580,'action complete via WP Cron','2025-06-18 20:25:27','2025-06-18 22:25:27'), +(7743,2582,'action started via WP Cron','2025-06-18 20:25:27','2025-06-18 22:25:27'), +(7744,2582,'action complete via WP Cron','2025-06-18 20:25:27','2025-06-18 22:25:27'), +(7745,2584,'action started via WP Cron','2025-06-18 20:25:27','2025-06-18 22:25:27'), +(7746,2584,'action complete via WP Cron','2025-06-18 20:25:27','2025-06-18 22:25:27'), +(7747,2586,'action started via WP Cron','2025-06-18 20:25:27','2025-06-18 22:25:27'), +(7748,2586,'action complete via WP Cron','2025-06-18 20:25:27','2025-06-18 22:25:27'), +(7749,2588,'action started via WP Cron','2025-06-18 20:25:27','2025-06-18 22:25:27'), +(7750,2588,'action complete via WP Cron','2025-06-18 20:25:27','2025-06-18 22:25:27'), +(7751,2590,'action started via WP Cron','2025-06-18 20:25:27','2025-06-18 22:25:27'), +(7752,2590,'action complete via WP Cron','2025-06-18 20:25:27','2025-06-18 22:25:27'), +(7753,2592,'action started via WP Cron','2025-06-18 20:25:27','2025-06-18 22:25:27'), +(7754,2592,'action complete via WP Cron','2025-06-18 20:25:27','2025-06-18 22:25:27'), +(7755,2594,'action started via WP Cron','2025-06-18 20:25:27','2025-06-18 22:25:27'), +(7756,2594,'action complete via WP Cron','2025-06-18 20:25:27','2025-06-18 22:25:27'), +(7757,2595,'action started via WP Cron','2025-06-18 20:25:27','2025-06-18 22:25:27'), +(7758,2595,'action complete via WP Cron','2025-06-18 20:25:27','2025-06-18 22:25:27'), +(7759,2596,'action created','2025-06-18 20:28:46','2025-06-18 22:28:46'), +(7760,2597,'action created','2025-06-18 20:28:46','2025-06-18 22:28:46'), +(7761,2596,'action started via Async Request','2025-06-18 20:29:03','2025-06-18 22:29:03'), +(7762,2596,'action complete via Async Request','2025-06-18 20:29:03','2025-06-18 22:29:03'), +(7763,2597,'action started via Async Request','2025-06-18 20:29:03','2025-06-18 22:29:03'), +(7764,2597,'action complete via Async Request','2025-06-18 20:29:03','2025-06-18 22:29:03'), +(7765,2598,'action created','2025-06-18 20:29:26','2025-06-18 22:29:26'), +(7766,2598,'action started via WP Cron','2025-06-18 20:29:26','2025-06-18 22:29:26'), +(7767,2599,'action created','2025-06-18 20:29:26','2025-06-18 22:29:26'), +(7768,2598,'action complete via WP Cron','2025-06-18 20:29:26','2025-06-18 22:29:26'), +(7769,2599,'action started via Async Request','2025-06-18 20:30:06','2025-06-18 22:30:06'), +(7770,2599,'action complete via Async Request','2025-06-18 20:30:06','2025-06-18 22:30:06'), +(7771,2600,'action created','2025-06-18 20:30:24','2025-06-18 22:30:24'), +(7772,2601,'action created','2025-06-18 20:30:24','2025-06-18 22:30:24'), +(7773,2602,'action created','2025-06-18 20:30:24','2025-06-18 22:30:24'), +(7774,2603,'action created','2025-06-18 20:30:24','2025-06-18 22:30:24'), +(7775,2600,'action started via WP Cron','2025-06-18 20:30:26','2025-06-18 22:30:26'), +(7776,2600,'action complete via WP Cron','2025-06-18 20:30:26','2025-06-18 22:30:26'), +(7777,2601,'action started via WP Cron','2025-06-18 20:30:26','2025-06-18 22:30:26'), +(7778,2601,'action complete via WP Cron','2025-06-18 20:30:26','2025-06-18 22:30:26'), +(7779,2602,'action started via WP Cron','2025-06-18 20:30:26','2025-06-18 22:30:26'), +(7780,2602,'action complete via WP Cron','2025-06-18 20:30:26','2025-06-18 22:30:26'), +(7781,2603,'action started via WP Cron','2025-06-18 20:30:26','2025-06-18 22:30:26'), +(7782,2603,'action complete via WP Cron','2025-06-18 20:30:26','2025-06-18 22:30:26'), +(7783,2604,'action created','2025-06-18 20:31:04','2025-06-18 22:31:04'), +(7784,2605,'action created','2025-06-18 20:31:04','2025-06-18 22:31:04'), +(7785,2606,'action created','2025-06-18 20:31:04','2025-06-18 22:31:04'), +(7786,2604,'action started via Async Request','2025-06-18 20:31:07','2025-06-18 22:31:07'), +(7787,2604,'action complete via Async Request','2025-06-18 20:31:07','2025-06-18 22:31:07'), +(7788,2605,'action started via Async Request','2025-06-18 20:31:07','2025-06-18 22:31:07'), +(7789,2605,'action complete via Async Request','2025-06-18 20:31:07','2025-06-18 22:31:07'), +(7790,2606,'action started via Async Request','2025-06-18 20:31:07','2025-06-18 22:31:07'), +(7791,2606,'action complete via Async Request','2025-06-18 20:31:07','2025-06-18 22:31:07'), +(7792,2607,'action created','2025-06-18 20:31:13','2025-06-18 22:31:13'), +(7793,2608,'action created','2025-06-18 20:31:13','2025-06-18 22:31:13'), +(7794,2607,'action started via WP Cron','2025-06-18 20:31:30','2025-06-18 22:31:30'), +(7795,2607,'action complete via WP Cron','2025-06-18 20:31:30','2025-06-18 22:31:30'), +(7796,2608,'action started via WP Cron','2025-06-18 20:31:30','2025-06-18 22:31:30'), +(7797,2608,'action complete via WP Cron','2025-06-18 20:31:30','2025-06-18 22:31:30'), +(7798,2609,'action created','2025-06-18 20:32:00','2025-06-18 22:32:00'), +(7799,2610,'action created','2025-06-18 20:32:00','2025-06-18 22:32:00'), +(7800,2611,'action created','2025-06-18 20:32:00','2025-06-18 22:32:00'), +(7801,2609,'action started via Async Request','2025-06-18 20:32:11','2025-06-18 22:32:11'), +(7802,2609,'action complete via Async Request','2025-06-18 20:32:11','2025-06-18 22:32:11'), +(7803,2610,'action started via Async Request','2025-06-18 20:32:11','2025-06-18 22:32:11'), +(7804,2610,'action complete via Async Request','2025-06-18 20:32:11','2025-06-18 22:32:11'), +(7805,2611,'action started via Async Request','2025-06-18 20:32:11','2025-06-18 22:32:11'), +(7806,2611,'action complete via Async Request','2025-06-18 20:32:11','2025-06-18 22:32:11'), +(7807,2612,'action created','2025-06-18 20:36:56','2025-06-18 22:36:56'), +(7808,2613,'action created','2025-06-18 20:36:56','2025-06-18 22:36:56'), +(7809,2614,'action created','2025-06-18 20:36:56','2025-06-18 22:36:56'), +(7810,2615,'action created','2025-06-18 20:36:56','2025-06-18 22:36:56'), +(7811,2612,'action started via WP Cron','2025-06-18 20:37:30','2025-06-18 22:37:30'), +(7812,2612,'action complete via WP Cron','2025-06-18 20:37:30','2025-06-18 22:37:30'), +(7813,2613,'action started via WP Cron','2025-06-18 20:37:30','2025-06-18 22:37:30'), +(7814,2613,'action complete via WP Cron','2025-06-18 20:37:30','2025-06-18 22:37:30'), +(7815,2614,'action started via WP Cron','2025-06-18 20:37:30','2025-06-18 22:37:30'), +(7816,2614,'action complete via WP Cron','2025-06-18 20:37:30','2025-06-18 22:37:30'), +(7817,2615,'action started via WP Cron','2025-06-18 20:37:30','2025-06-18 22:37:30'), +(7818,2615,'action complete via WP Cron','2025-06-18 20:37:30','2025-06-18 22:37:30'), +(7819,2616,'action created','2025-06-18 20:39:06','2025-06-18 22:39:06'), +(7820,2617,'action created','2025-06-18 20:39:06','2025-06-18 22:39:06'), +(7821,2618,'action created','2025-06-18 20:39:06','2025-06-18 22:39:06'), +(7822,2619,'action created','2025-06-18 20:39:06','2025-06-18 22:39:06'), +(7823,2620,'action created','2025-06-18 20:39:06','2025-06-18 22:39:06'), +(7824,2621,'action created','2025-06-18 20:39:06','2025-06-18 22:39:06'), +(7825,2622,'action created','2025-06-18 20:39:06','2025-06-18 22:39:06'), +(7826,2623,'action created','2025-06-18 20:39:08','2025-06-18 22:39:08'), +(7827,2616,'action started via WP Cron','2025-06-18 20:39:25','2025-06-18 22:39:25'), +(7828,2616,'action failed via WP Cron: Scheduled action for wc_delete_related_product_transients_async will not be executed as no callbacks are registered.','2025-06-18 20:39:25','2025-06-18 22:39:25'), +(7829,2617,'action started via WP Cron','2025-06-18 20:39:25','2025-06-18 22:39:25'), +(7830,2617,'action failed via WP Cron: Scheduled action for wc_delete_related_product_transients_async will not be executed as no callbacks are registered.','2025-06-18 20:39:25','2025-06-18 22:39:25'), +(7831,2619,'action started via WP Cron','2025-06-18 20:39:25','2025-06-18 22:39:25'), +(7832,2619,'action failed via WP Cron: Scheduled action for wc_delete_related_product_transients_async will not be executed as no callbacks are registered.','2025-06-18 20:39:25','2025-06-18 22:39:25'), +(7833,2621,'action started via WP Cron','2025-06-18 20:39:25','2025-06-18 22:39:25'), +(7834,2621,'action failed via WP Cron: Scheduled action for wc_delete_related_product_transients_async will not be executed as no callbacks are registered.','2025-06-18 20:39:25','2025-06-18 22:39:25'), +(7835,2618,'action started via WP Cron','2025-06-18 20:39:25','2025-06-18 22:39:25'), +(7836,2618,'action complete via WP Cron','2025-06-18 20:39:25','2025-06-18 22:39:25'), +(7837,2620,'action started via WP Cron','2025-06-18 20:39:25','2025-06-18 22:39:25'), +(7838,2620,'action complete via WP Cron','2025-06-18 20:39:25','2025-06-18 22:39:25'), +(7839,2622,'action started via WP Cron','2025-06-18 20:39:25','2025-06-18 22:39:25'), +(7840,2622,'action complete via WP Cron','2025-06-18 20:39:25','2025-06-18 22:39:25'), +(7841,2623,'action started via WP Cron','2025-06-18 20:39:25','2025-06-18 22:39:25'), +(7842,2623,'action complete via WP Cron','2025-06-18 20:39:25','2025-06-18 22:39:25'), +(7843,2624,'action created','2025-06-18 20:44:51','2025-06-18 22:44:51'), +(7844,2625,'action created','2025-06-18 20:44:51','2025-06-18 22:44:51'), +(7845,2626,'action created','2025-06-18 20:44:51','2025-06-18 22:44:51'), +(7846,2627,'action created','2025-06-18 20:44:51','2025-06-18 22:44:51'), +(7847,2628,'action created','2025-06-18 20:44:51','2025-06-18 22:44:51'), +(7848,2629,'action created','2025-06-18 20:44:51','2025-06-18 22:44:51'), +(7849,2630,'action created','2025-06-18 20:44:51','2025-06-18 22:44:51'), +(7850,2631,'action created','2025-06-18 20:44:51','2025-06-18 22:44:51'), +(7851,2632,'action created','2025-06-18 20:44:51','2025-06-18 22:44:51'), +(7852,2633,'action created','2025-06-18 20:44:51','2025-06-18 22:44:51'), +(7853,2634,'action created','2025-06-18 20:44:51','2025-06-18 22:44:51'), +(7854,2635,'action created','2025-06-18 20:44:51','2025-06-18 22:44:51'), +(7855,2636,'action created','2025-06-18 20:44:51','2025-06-18 22:44:51'), +(7856,2637,'action created','2025-06-18 20:44:51','2025-06-18 22:44:51'), +(7857,2638,'action created','2025-06-18 20:44:51','2025-06-18 22:44:51'), +(7858,2639,'action created','2025-06-18 20:44:51','2025-06-18 22:44:51'), +(7859,2640,'action created','2025-06-18 20:44:51','2025-06-18 22:44:51'), +(7860,2641,'action created','2025-06-18 20:44:58','2025-06-18 22:44:58'), +(7861,2624,'action started via WP Cron','2025-06-18 20:45:32','2025-06-18 22:45:32'), +(7862,2624,'action complete via WP Cron','2025-06-18 20:45:32','2025-06-18 22:45:32'), +(7863,2625,'action started via WP Cron','2025-06-18 20:45:32','2025-06-18 22:45:32'), +(7864,2625,'action complete via WP Cron','2025-06-18 20:45:32','2025-06-18 22:45:32'), +(7865,2627,'action started via WP Cron','2025-06-18 20:45:32','2025-06-18 22:45:32'), +(7866,2627,'action complete via WP Cron','2025-06-18 20:45:32','2025-06-18 22:45:32'), +(7867,2629,'action started via WP Cron','2025-06-18 20:45:32','2025-06-18 22:45:32'), +(7868,2629,'action complete via WP Cron','2025-06-18 20:45:32','2025-06-18 22:45:32'), +(7869,2631,'action started via WP Cron','2025-06-18 20:45:32','2025-06-18 22:45:32'), +(7870,2631,'action complete via WP Cron','2025-06-18 20:45:32','2025-06-18 22:45:32'), +(7871,2633,'action started via WP Cron','2025-06-18 20:45:32','2025-06-18 22:45:32'), +(7872,2633,'action complete via WP Cron','2025-06-18 20:45:32','2025-06-18 22:45:32'), +(7873,2635,'action started via WP Cron','2025-06-18 20:45:32','2025-06-18 22:45:32'), +(7874,2635,'action complete via WP Cron','2025-06-18 20:45:32','2025-06-18 22:45:32'), +(7875,2637,'action started via WP Cron','2025-06-18 20:45:32','2025-06-18 22:45:32'), +(7876,2637,'action complete via WP Cron','2025-06-18 20:45:32','2025-06-18 22:45:32'), +(7877,2639,'action started via WP Cron','2025-06-18 20:45:32','2025-06-18 22:45:32'), +(7878,2639,'action complete via WP Cron','2025-06-18 20:45:32','2025-06-18 22:45:32'), +(7879,2626,'action started via WP Cron','2025-06-18 20:45:32','2025-06-18 22:45:32'), +(7880,2626,'action complete via WP Cron','2025-06-18 20:45:32','2025-06-18 22:45:32'), +(7881,2628,'action started via WP Cron','2025-06-18 20:45:32','2025-06-18 22:45:32'), +(7882,2628,'action complete via WP Cron','2025-06-18 20:45:32','2025-06-18 22:45:32'), +(7883,2630,'action started via WP Cron','2025-06-18 20:45:32','2025-06-18 22:45:32'), +(7884,2630,'action complete via WP Cron','2025-06-18 20:45:32','2025-06-18 22:45:32'), +(7885,2632,'action started via WP Cron','2025-06-18 20:45:32','2025-06-18 22:45:32'), +(7886,2632,'action complete via WP Cron','2025-06-18 20:45:32','2025-06-18 22:45:32'), +(7887,2634,'action started via WP Cron','2025-06-18 20:45:32','2025-06-18 22:45:32'), +(7888,2634,'action complete via WP Cron','2025-06-18 20:45:32','2025-06-18 22:45:32'), +(7889,2636,'action started via WP Cron','2025-06-18 20:45:32','2025-06-18 22:45:32'), +(7890,2636,'action complete via WP Cron','2025-06-18 20:45:32','2025-06-18 22:45:32'), +(7891,2638,'action started via WP Cron','2025-06-18 20:45:32','2025-06-18 22:45:32'), +(7892,2638,'action complete via WP Cron','2025-06-18 20:45:32','2025-06-18 22:45:32'), +(7893,2640,'action started via WP Cron','2025-06-18 20:45:32','2025-06-18 22:45:32'), +(7894,2640,'action complete via WP Cron','2025-06-18 20:45:32','2025-06-18 22:45:32'), +(7895,2641,'action started via WP Cron','2025-06-18 20:45:32','2025-06-18 22:45:32'), +(7896,2641,'action complete via WP Cron','2025-06-18 20:45:32','2025-06-18 22:45:32'), +(7897,2642,'action created','2025-06-18 20:45:56','2025-06-18 22:45:56'), +(7898,2643,'action created','2025-06-18 20:45:56','2025-06-18 22:45:56'), +(7899,2644,'action created','2025-06-18 20:45:56','2025-06-18 22:45:56'), +(7900,2645,'action created','2025-06-18 20:45:56','2025-06-18 22:45:56'), +(7901,2646,'action created','2025-06-18 20:45:56','2025-06-18 22:45:56'), +(7902,2647,'action created','2025-06-18 20:46:03','2025-06-18 22:46:03'), +(7903,2642,'action started via WP Cron','2025-06-18 20:46:29','2025-06-18 22:46:29'), +(7904,2642,'action complete via WP Cron','2025-06-18 20:46:29','2025-06-18 22:46:29'), +(7905,2643,'action started via WP Cron','2025-06-18 20:46:29','2025-06-18 22:46:29'), +(7906,2643,'action complete via WP Cron','2025-06-18 20:46:29','2025-06-18 22:46:29'), +(7907,2645,'action started via WP Cron','2025-06-18 20:46:29','2025-06-18 22:46:29'), +(7908,2645,'action complete via WP Cron','2025-06-18 20:46:29','2025-06-18 22:46:29'), +(7909,2644,'action started via WP Cron','2025-06-18 20:46:29','2025-06-18 22:46:29'), +(7910,2644,'action complete via WP Cron','2025-06-18 20:46:29','2025-06-18 22:46:29'), +(7911,2646,'action started via WP Cron','2025-06-18 20:46:29','2025-06-18 22:46:29'), +(7912,2646,'action complete via WP Cron','2025-06-18 20:46:29','2025-06-18 22:46:29'), +(7913,2647,'action started via WP Cron','2025-06-18 20:46:29','2025-06-18 22:46:29'), +(7914,2647,'action complete via WP Cron','2025-06-18 20:46:29','2025-06-18 22:46:29'), +(7915,2648,'action created','2025-06-18 20:49:37','2025-06-18 22:49:37'), +(7916,2649,'action created','2025-06-18 20:49:37','2025-06-18 22:49:37'), +(7917,2648,'action started via WP Cron','2025-06-18 20:50:34','2025-06-18 22:50:34'), +(7918,2648,'action complete via WP Cron','2025-06-18 20:50:34','2025-06-18 22:50:34'), +(7919,2649,'action started via WP Cron','2025-06-18 20:50:34','2025-06-18 22:50:34'), +(7920,2649,'action complete via WP Cron','2025-06-18 20:50:34','2025-06-18 22:50:34'), +(7921,2556,'action started via WP Cron','2025-06-19 07:00:39','2025-06-19 09:00:39'), +(7922,2556,'action complete via WP Cron','2025-06-19 07:00:39','2025-06-19 09:00:39'), +(7923,2650,'action created','2025-06-19 07:00:39','2025-06-19 09:00:39'), +(7924,2651,'action created','2025-06-19 14:19:33','2025-06-19 16:19:33'), +(7925,2652,'action created','2025-06-19 14:19:33','2025-06-19 16:19:33'), +(7926,2651,'action started via WP Cron','2025-06-19 14:19:38','2025-06-19 16:19:38'), +(7927,2651,'action complete via WP Cron','2025-06-19 14:19:38','2025-06-19 16:19:38'), +(7928,2652,'action started via WP Cron','2025-06-19 14:19:38','2025-06-19 16:19:38'), +(7929,2652,'action complete via WP Cron','2025-06-19 14:19:38','2025-06-19 16:19:38'), +(7930,2653,'action created','2025-06-19 14:20:06','2025-06-19 16:20:06'), +(7931,2654,'action created','2025-06-19 14:20:06','2025-06-19 16:20:06'), +(7932,2655,'action created','2025-06-19 14:20:08','2025-06-19 16:20:08'), +(7933,2656,'action created','2025-06-19 14:20:08','2025-06-19 16:20:08'), +(7934,2653,'action started via WP Cron','2025-06-19 14:20:29','2025-06-19 16:20:29'), +(7935,2653,'action complete via WP Cron','2025-06-19 14:20:29','2025-06-19 16:20:29'), +(7936,2654,'action started via WP Cron','2025-06-19 14:20:29','2025-06-19 16:20:29'), +(7937,2654,'action complete via WP Cron','2025-06-19 14:20:29','2025-06-19 16:20:29'), +(7938,2655,'action started via WP Cron','2025-06-19 14:20:29','2025-06-19 16:20:29'), +(7939,2655,'action complete via WP Cron','2025-06-19 14:20:29','2025-06-19 16:20:29'), +(7940,2656,'action started via WP Cron','2025-06-19 14:20:29','2025-06-19 16:20:29'), +(7941,2656,'action complete via WP Cron','2025-06-19 14:20:29','2025-06-19 16:20:29'), +(7942,2554,'action started via WP Cron','2025-06-19 18:29:11','2025-06-19 20:29:11'), +(7943,2554,'action complete via WP Cron','2025-06-19 18:29:11','2025-06-19 20:29:11'), +(7944,2657,'action created','2025-06-19 18:29:11','2025-06-19 20:29:11'), +(7945,2555,'action started via WP Cron','2025-06-19 18:29:11','2025-06-19 20:29:11'), +(7946,2555,'action complete via WP Cron','2025-06-19 18:29:11','2025-06-19 20:29:11'), +(7947,2658,'action created','2025-06-19 18:29:11','2025-06-19 20:29:11'), +(7948,2650,'action started via WP Cron','2025-06-19 19:01:11','2025-06-19 21:01:11'), +(7949,2650,'action complete via WP Cron','2025-06-19 19:01:11','2025-06-19 21:01:11'), +(7950,2659,'action created','2025-06-19 19:01:11','2025-06-19 21:01:11'), +(7951,2660,'action created','2025-06-19 20:11:11','2025-06-19 22:11:11'), +(7952,2661,'action created','2025-06-19 20:11:11','2025-06-19 22:11:11'), +(7953,2662,'action created','2025-06-19 20:11:11','2025-06-19 22:11:11'), +(7954,2663,'action created','2025-06-19 20:11:11','2025-06-19 22:11:11'), +(7955,2664,'action created','2025-06-19 20:11:11','2025-06-19 22:11:11'), +(7956,2665,'action created','2025-06-19 20:11:11','2025-06-19 22:11:11'), +(7957,2666,'action created','2025-06-19 20:11:11','2025-06-19 22:11:11'), +(7958,2667,'action created','2025-06-19 20:11:11','2025-06-19 22:11:11'), +(7959,2668,'action created','2025-06-19 20:11:11','2025-06-19 22:11:11'), +(7960,2669,'action created','2025-06-19 20:11:11','2025-06-19 22:11:11'), +(7961,2660,'action started via WP Cron','2025-06-19 20:12:11','2025-06-19 22:12:11'), +(7962,2660,'action complete via WP Cron','2025-06-19 20:12:11','2025-06-19 22:12:11'), +(7963,2665,'action started via WP Cron','2025-06-19 20:12:11','2025-06-19 22:12:11'), +(7964,2665,'action complete via WP Cron','2025-06-19 20:12:11','2025-06-19 22:12:11'), +(7965,2661,'action started via WP Cron','2025-06-19 20:12:11','2025-06-19 22:12:11'), +(7966,2661,'action complete via WP Cron','2025-06-19 20:12:11','2025-06-19 22:12:11'), +(7967,2662,'action started via WP Cron','2025-06-19 20:12:11','2025-06-19 22:12:11'), +(7968,2662,'action complete via WP Cron','2025-06-19 20:12:11','2025-06-19 22:12:11'), +(7969,2663,'action started via WP Cron','2025-06-19 20:12:11','2025-06-19 22:12:11'), +(7970,2663,'action complete via WP Cron','2025-06-19 20:12:11','2025-06-19 22:12:11'), +(7971,2664,'action started via WP Cron','2025-06-19 20:12:11','2025-06-19 22:12:11'), +(7972,2664,'action complete via WP Cron','2025-06-19 20:12:11','2025-06-19 22:12:11'), +(7973,2666,'action started via WP Cron','2025-06-19 20:12:11','2025-06-19 22:12:11'), +(7974,2666,'action complete via WP Cron','2025-06-19 20:12:11','2025-06-19 22:12:11'), +(7975,2667,'action started via WP Cron','2025-06-19 20:12:11','2025-06-19 22:12:11'), +(7976,2667,'action complete via WP Cron','2025-06-19 20:12:11','2025-06-19 22:12:11'), +(7977,2668,'action started via WP Cron','2025-06-19 20:12:11','2025-06-19 22:12:11'), +(7978,2668,'action complete via WP Cron','2025-06-19 20:12:11','2025-06-19 22:12:11'), +(7979,2669,'action started via WP Cron','2025-06-19 20:12:11','2025-06-19 22:12:11'), +(7980,2669,'action complete via WP Cron','2025-06-19 20:12:11','2025-06-19 22:12:11'), +(7981,2659,'action started via WP Cron','2025-06-20 07:01:11','2025-06-20 09:01:11'), +(7982,2659,'action complete via WP Cron','2025-06-20 07:01:11','2025-06-20 09:01:11'), +(7983,2670,'action created','2025-06-20 07:01:11','2025-06-20 09:01:11'), +(7984,2671,'action created','2025-06-20 10:09:32','2025-06-20 12:09:32'), +(7985,2672,'action created','2025-06-20 10:09:32','2025-06-20 12:09:32'), +(7986,2673,'action created','2025-06-20 10:09:32','2025-06-20 12:09:32'), +(7987,2674,'action created','2025-06-20 10:09:32','2025-06-20 12:09:32'), +(7988,2675,'action created','2025-06-20 10:09:32','2025-06-20 12:09:32'), +(7989,2676,'action created','2025-06-20 10:09:32','2025-06-20 12:09:32'), +(7990,2677,'action created','2025-06-20 10:09:32','2025-06-20 12:09:32'), +(7991,2678,'action created','2025-06-20 10:09:32','2025-06-20 12:09:32'), +(7992,2679,'action created','2025-06-20 10:09:32','2025-06-20 12:09:32'), +(7993,2680,'action created','2025-06-20 10:09:32','2025-06-20 12:09:32'), +(7994,2681,'action created','2025-06-20 10:09:32','2025-06-20 12:09:32'), +(7995,2682,'action created','2025-06-20 10:09:32','2025-06-20 12:09:32'), +(7996,2683,'action created','2025-06-20 10:09:32','2025-06-20 12:09:32'), +(7997,2671,'action started via Async Request','2025-06-20 10:09:42','2025-06-20 12:09:42'), +(7998,2671,'action complete via Async Request','2025-06-20 10:09:42','2025-06-20 12:09:42'), +(7999,2672,'action started via Async Request','2025-06-20 10:09:42','2025-06-20 12:09:42'), +(8000,2672,'action complete via Async Request','2025-06-20 10:09:42','2025-06-20 12:09:42'), +(8001,2673,'action started via Async Request','2025-06-20 10:09:42','2025-06-20 12:09:42'), +(8002,2673,'action complete via Async Request','2025-06-20 10:09:42','2025-06-20 12:09:42'), +(8003,2674,'action started via Async Request','2025-06-20 10:09:42','2025-06-20 12:09:42'), +(8004,2674,'action complete via Async Request','2025-06-20 10:09:42','2025-06-20 12:09:42'), +(8005,2675,'action started via Async Request','2025-06-20 10:09:42','2025-06-20 12:09:42'), +(8006,2675,'action complete via Async Request','2025-06-20 10:09:42','2025-06-20 12:09:42'), +(8007,2676,'action started via Async Request','2025-06-20 10:09:42','2025-06-20 12:09:42'), +(8008,2676,'action complete via Async Request','2025-06-20 10:09:42','2025-06-20 12:09:42'), +(8009,2677,'action started via Async Request','2025-06-20 10:09:42','2025-06-20 12:09:42'), +(8010,2677,'action complete via Async Request','2025-06-20 10:09:42','2025-06-20 12:09:42'), +(8011,2678,'action started via Async Request','2025-06-20 10:09:42','2025-06-20 12:09:42'), +(8012,2678,'action complete via Async Request','2025-06-20 10:09:42','2025-06-20 12:09:42'), +(8013,2679,'action started via Async Request','2025-06-20 10:09:42','2025-06-20 12:09:42'), +(8014,2679,'action complete via Async Request','2025-06-20 10:09:42','2025-06-20 12:09:42'), +(8015,2680,'action started via Async Request','2025-06-20 10:09:42','2025-06-20 12:09:42'), +(8016,2680,'action complete via Async Request','2025-06-20 10:09:42','2025-06-20 12:09:42'), +(8017,2681,'action started via Async Request','2025-06-20 10:09:42','2025-06-20 12:09:42'), +(8018,2681,'action complete via Async Request','2025-06-20 10:09:42','2025-06-20 12:09:42'), +(8019,2683,'action started via Async Request','2025-06-20 10:09:42','2025-06-20 12:09:42'), +(8020,2683,'action complete via Async Request','2025-06-20 10:09:42','2025-06-20 12:09:42'), +(8021,2682,'action started via Async Request','2025-06-20 10:09:47','2025-06-20 12:09:47'), +(8022,2682,'action complete via Async Request','2025-06-20 10:09:47','2025-06-20 12:09:47'), +(8023,2684,'action created','2025-06-20 10:13:00','2025-06-20 12:13:00'), +(8024,2684,'action started via WP Cron','2025-06-20 10:14:11','2025-06-20 12:14:11'), +(8025,2684,'action complete via WP Cron','2025-06-20 10:14:11','2025-06-20 12:14:11'), +(8026,2685,'action created','2025-06-20 16:59:01','2025-06-20 18:59:01'), +(8027,2686,'action created','2025-06-20 16:59:01','2025-06-20 18:59:01'), +(8028,2687,'action created','2025-06-20 16:59:01','2025-06-20 18:59:01'), +(8029,2688,'action created','2025-06-20 16:59:01','2025-06-20 18:59:01'), +(8030,2689,'action created','2025-06-20 16:59:01','2025-06-20 18:59:01'), +(8031,2690,'action created','2025-06-20 16:59:01','2025-06-20 18:59:01'), +(8032,2691,'action created','2025-06-20 16:59:01','2025-06-20 18:59:01'), +(8033,2692,'action created','2025-06-20 16:59:01','2025-06-20 18:59:01'), +(8034,2693,'action created','2025-06-20 16:59:01','2025-06-20 18:59:01'), +(8035,2694,'action created','2025-06-20 16:59:01','2025-06-20 18:59:01'), +(8036,2695,'action created','2025-06-20 16:59:01','2025-06-20 18:59:01'), +(8037,2696,'action created','2025-06-20 16:59:01','2025-06-20 18:59:01'), +(8038,2697,'action created','2025-06-20 16:59:01','2025-06-20 18:59:01'), +(8039,2698,'action created','2025-06-20 16:59:01','2025-06-20 18:59:01'), +(8040,2699,'action created','2025-06-20 16:59:01','2025-06-20 18:59:01'), +(8041,2700,'action created','2025-06-20 16:59:01','2025-06-20 18:59:01'), +(8042,2701,'action created','2025-06-20 16:59:01','2025-06-20 18:59:01'), +(8043,2702,'action created','2025-06-20 16:59:01','2025-06-20 18:59:01'), +(8044,2703,'action created','2025-06-20 16:59:01','2025-06-20 18:59:01'), +(8045,2685,'action started via WP Cron','2025-06-20 16:59:33','2025-06-20 18:59:33'), +(8046,2685,'action complete via WP Cron','2025-06-20 16:59:33','2025-06-20 18:59:33'), +(8047,2687,'action started via WP Cron','2025-06-20 16:59:33','2025-06-20 18:59:33'), +(8048,2687,'action complete via WP Cron','2025-06-20 16:59:33','2025-06-20 18:59:33'), +(8049,2689,'action started via WP Cron','2025-06-20 16:59:33','2025-06-20 18:59:33'), +(8050,2689,'action complete via WP Cron','2025-06-20 16:59:33','2025-06-20 18:59:33'), +(8051,2691,'action started via WP Cron','2025-06-20 16:59:33','2025-06-20 18:59:33'), +(8052,2691,'action complete via WP Cron','2025-06-20 16:59:33','2025-06-20 18:59:33'), +(8053,2693,'action started via WP Cron','2025-06-20 16:59:33','2025-06-20 18:59:33'), +(8054,2693,'action complete via WP Cron','2025-06-20 16:59:33','2025-06-20 18:59:33'), +(8055,2695,'action started via WP Cron','2025-06-20 16:59:33','2025-06-20 18:59:33'), +(8056,2695,'action complete via WP Cron','2025-06-20 16:59:33','2025-06-20 18:59:33'), +(8057,2697,'action started via WP Cron','2025-06-20 16:59:33','2025-06-20 18:59:33'), +(8058,2697,'action complete via WP Cron','2025-06-20 16:59:33','2025-06-20 18:59:33'), +(8059,2699,'action started via WP Cron','2025-06-20 16:59:33','2025-06-20 18:59:33'), +(8060,2699,'action complete via WP Cron','2025-06-20 16:59:33','2025-06-20 18:59:33'), +(8061,2701,'action started via WP Cron','2025-06-20 16:59:33','2025-06-20 18:59:33'), +(8062,2701,'action complete via WP Cron','2025-06-20 16:59:33','2025-06-20 18:59:33'), +(8063,2686,'action started via WP Cron','2025-06-20 16:59:33','2025-06-20 18:59:33'), +(8064,2686,'action complete via WP Cron','2025-06-20 16:59:33','2025-06-20 18:59:33'), +(8065,2688,'action started via WP Cron','2025-06-20 16:59:33','2025-06-20 18:59:33'), +(8066,2688,'action complete via WP Cron','2025-06-20 16:59:33','2025-06-20 18:59:33'), +(8067,2690,'action started via WP Cron','2025-06-20 16:59:33','2025-06-20 18:59:33'), +(8068,2690,'action complete via WP Cron','2025-06-20 16:59:33','2025-06-20 18:59:33'), +(8069,2692,'action started via WP Cron','2025-06-20 16:59:33','2025-06-20 18:59:33'), +(8070,2692,'action complete via WP Cron','2025-06-20 16:59:33','2025-06-20 18:59:33'), +(8071,2694,'action started via WP Cron','2025-06-20 16:59:33','2025-06-20 18:59:33'), +(8072,2694,'action complete via WP Cron','2025-06-20 16:59:33','2025-06-20 18:59:33'), +(8073,2696,'action started via WP Cron','2025-06-20 16:59:33','2025-06-20 18:59:33'), +(8074,2696,'action complete via WP Cron','2025-06-20 16:59:33','2025-06-20 18:59:33'), +(8075,2698,'action started via WP Cron','2025-06-20 16:59:33','2025-06-20 18:59:33'), +(8076,2698,'action complete via WP Cron','2025-06-20 16:59:33','2025-06-20 18:59:33'), +(8077,2700,'action started via WP Cron','2025-06-20 16:59:33','2025-06-20 18:59:33'), +(8078,2700,'action complete via WP Cron','2025-06-20 16:59:33','2025-06-20 18:59:33'), +(8079,2702,'action started via WP Cron','2025-06-20 16:59:33','2025-06-20 18:59:33'), +(8080,2702,'action complete via WP Cron','2025-06-20 16:59:33','2025-06-20 18:59:33'), +(8081,2703,'action started via WP Cron','2025-06-20 16:59:33','2025-06-20 18:59:33'), +(8082,2703,'action complete via WP Cron','2025-06-20 16:59:33','2025-06-20 18:59:33'), +(8083,2704,'action created','2025-06-20 17:07:36','2025-06-20 19:07:36'), +(8084,2705,'action created','2025-06-20 17:07:36','2025-06-20 19:07:36'), +(8085,2706,'action created','2025-06-20 17:07:36','2025-06-20 19:07:36'), +(8086,2707,'action created','2025-06-20 17:07:36','2025-06-20 19:07:36'), +(8087,2708,'action created','2025-06-20 17:07:36','2025-06-20 19:07:36'), +(8088,2709,'action created','2025-06-20 17:07:36','2025-06-20 19:07:36'), +(8089,2710,'action created','2025-06-20 17:07:36','2025-06-20 19:07:36'), +(8090,2711,'action created','2025-06-20 17:07:36','2025-06-20 19:07:36'), +(8091,2712,'action created','2025-06-20 17:07:36','2025-06-20 19:07:36'), +(8092,2713,'action created','2025-06-20 17:07:36','2025-06-20 19:07:36'), +(8093,2704,'action started via Async Request','2025-06-20 17:07:36','2025-06-20 19:07:36'), +(8094,2704,'action complete via Async Request','2025-06-20 17:07:36','2025-06-20 19:07:36'), +(8095,2705,'action started via Async Request','2025-06-20 17:07:41','2025-06-20 19:07:41'), +(8096,2705,'action complete via Async Request','2025-06-20 17:07:41','2025-06-20 19:07:41'), +(8097,2706,'action started via Async Request','2025-06-20 17:07:41','2025-06-20 19:07:41'), +(8098,2706,'action complete via Async Request','2025-06-20 17:07:41','2025-06-20 19:07:41'), +(8099,2707,'action started via Async Request','2025-06-20 17:07:41','2025-06-20 19:07:41'), +(8100,2707,'action complete via Async Request','2025-06-20 17:07:41','2025-06-20 19:07:41'), +(8101,2708,'action started via Async Request','2025-06-20 17:07:41','2025-06-20 19:07:41'), +(8102,2708,'action complete via Async Request','2025-06-20 17:07:41','2025-06-20 19:07:41'), +(8103,2709,'action started via Async Request','2025-06-20 17:07:41','2025-06-20 19:07:41'), +(8104,2709,'action complete via Async Request','2025-06-20 17:07:41','2025-06-20 19:07:41'), +(8105,2710,'action started via Async Request','2025-06-20 17:07:41','2025-06-20 19:07:41'), +(8106,2710,'action complete via Async Request','2025-06-20 17:07:41','2025-06-20 19:07:41'), +(8107,2711,'action started via Async Request','2025-06-20 17:07:41','2025-06-20 19:07:41'), +(8108,2711,'action complete via Async Request','2025-06-20 17:07:41','2025-06-20 19:07:41'), +(8109,2712,'action started via Async Request','2025-06-20 17:07:41','2025-06-20 19:07:41'), +(8110,2712,'action complete via Async Request','2025-06-20 17:07:41','2025-06-20 19:07:41'), +(8111,2713,'action started via Async Request','2025-06-20 17:07:41','2025-06-20 19:07:41'), +(8112,2713,'action complete via Async Request','2025-06-20 17:07:41','2025-06-20 19:07:41'), +(8113,2714,'action created','2025-06-20 17:07:54','2025-06-20 19:07:54'), +(8114,2715,'action created','2025-06-20 17:07:54','2025-06-20 19:07:54'), +(8115,2714,'action started via WP Cron','2025-06-20 17:08:26','2025-06-20 19:08:26'), +(8116,2714,'action complete via WP Cron','2025-06-20 17:08:26','2025-06-20 19:08:26'), +(8117,2715,'action started via WP Cron','2025-06-20 17:08:26','2025-06-20 19:08:26'), +(8118,2715,'action complete via WP Cron','2025-06-20 17:08:26','2025-06-20 19:08:26'), +(8119,2716,'action created','2025-06-20 17:11:18','2025-06-20 19:11:18'), +(8120,2717,'action created','2025-06-20 17:11:18','2025-06-20 19:11:18'), +(8121,2716,'action started via WP Cron','2025-06-20 17:11:27','2025-06-20 19:11:27'), +(8122,2716,'action complete via WP Cron','2025-06-20 17:11:27','2025-06-20 19:11:27'), +(8123,2717,'action started via WP Cron','2025-06-20 17:11:27','2025-06-20 19:11:27'), +(8124,2717,'action complete via WP Cron','2025-06-20 17:11:27','2025-06-20 19:11:27'), +(8125,2718,'action created','2025-06-20 17:13:24','2025-06-20 19:13:24'), +(8126,2719,'action created','2025-06-20 17:13:24','2025-06-20 19:13:24'), +(8127,2718,'action started via WP Cron','2025-06-20 17:13:27','2025-06-20 19:13:27'), +(8128,2718,'action complete via WP Cron','2025-06-20 17:13:27','2025-06-20 19:13:27'), +(8129,2719,'action started via WP Cron','2025-06-20 17:13:27','2025-06-20 19:13:27'), +(8130,2719,'action complete via WP Cron','2025-06-20 17:13:27','2025-06-20 19:13:27'), +(8131,2720,'action created','2025-06-20 17:14:42','2025-06-20 19:14:42'), +(8132,2721,'action created','2025-06-20 17:14:42','2025-06-20 19:14:42'), +(8133,2720,'action started via Async Request','2025-06-20 17:15:03','2025-06-20 19:15:03'), +(8134,2720,'action complete via Async Request','2025-06-20 17:15:03','2025-06-20 19:15:03'), +(8135,2721,'action started via Async Request','2025-06-20 17:15:03','2025-06-20 19:15:03'), +(8136,2721,'action complete via Async Request','2025-06-20 17:15:03','2025-06-20 19:15:03'), +(8137,2722,'action created','2025-06-20 17:21:04','2025-06-20 19:21:04'), +(8138,2723,'action created','2025-06-20 17:21:04','2025-06-20 19:21:04'), +(8139,2722,'action started via WP Cron','2025-06-20 17:21:27','2025-06-20 19:21:27'), +(8140,2722,'action complete via WP Cron','2025-06-20 17:21:27','2025-06-20 19:21:27'), +(8141,2723,'action started via WP Cron','2025-06-20 17:21:27','2025-06-20 19:21:27'), +(8142,2723,'action complete via WP Cron','2025-06-20 17:21:27','2025-06-20 19:21:27'), +(8143,2724,'action created','2025-06-20 17:22:20','2025-06-20 19:22:20'), +(8144,2725,'action created','2025-06-20 17:22:20','2025-06-20 19:22:20'), +(8145,2724,'action started via WP Cron','2025-06-20 17:23:06','2025-06-20 19:23:06'), +(8146,2724,'action complete via WP Cron','2025-06-20 17:23:06','2025-06-20 19:23:06'), +(8147,2725,'action started via WP Cron','2025-06-20 17:23:06','2025-06-20 19:23:06'), +(8148,2725,'action complete via WP Cron','2025-06-20 17:23:06','2025-06-20 19:23:06'), +(8149,2726,'action created','2025-06-20 17:24:13','2025-06-20 19:24:13'), +(8150,2727,'action created','2025-06-20 17:24:13','2025-06-20 19:24:13'), +(8151,2726,'action started via Async Request','2025-06-20 17:24:13','2025-06-20 19:24:13'), +(8152,2726,'action complete via Async Request','2025-06-20 17:24:13','2025-06-20 19:24:13'), +(8153,2727,'action started via Async Request','2025-06-20 17:24:19','2025-06-20 19:24:19'), +(8154,2727,'action complete via Async Request','2025-06-20 17:24:19','2025-06-20 19:24:19'), +(8155,2728,'action created','2025-06-20 17:25:14','2025-06-20 19:25:14'), +(8156,2729,'action created','2025-06-20 17:25:14','2025-06-20 19:25:14'), +(8157,2728,'action started via Async Request','2025-06-20 17:25:14','2025-06-20 19:25:14'), +(8158,2728,'action complete via Async Request','2025-06-20 17:25:14','2025-06-20 19:25:14'), +(8159,2729,'action started via Async Request','2025-06-20 17:25:19','2025-06-20 19:25:19'), +(8160,2729,'action complete via Async Request','2025-06-20 17:25:19','2025-06-20 19:25:19'), +(8161,2657,'action started via WP Cron','2025-06-20 18:29:11','2025-06-20 20:29:11'), +(8162,2657,'action complete via WP Cron','2025-06-20 18:29:11','2025-06-20 20:29:11'), +(8163,2730,'action created','2025-06-20 18:29:11','2025-06-20 20:29:11'), +(8164,2658,'action started via WP Cron','2025-06-20 18:29:11','2025-06-20 20:29:11'), +(8165,2658,'action complete via WP Cron','2025-06-20 18:29:11','2025-06-20 20:29:11'), +(8166,2731,'action created','2025-06-20 18:29:11','2025-06-20 20:29:11'), +(8167,2670,'action started via WP Cron','2025-06-20 19:01:11','2025-06-20 21:01:11'), +(8168,2670,'action complete via WP Cron','2025-06-20 19:01:11','2025-06-20 21:01:11'), +(8169,2732,'action created','2025-06-20 19:01:11','2025-06-20 21:01:11'), +(8170,2732,'action started via WP Cron','2025-06-21 07:01:11','2025-06-21 09:01:11'), +(8171,2732,'action complete via WP Cron','2025-06-21 07:01:11','2025-06-21 09:01:11'), +(8172,2733,'action created','2025-06-21 07:01:11','2025-06-21 09:01:11'), +(8173,2734,'action created','2025-06-21 09:54:31','2025-06-21 11:54:31'), +(8174,2734,'action started via WP Cron','2025-06-21 09:56:06','2025-06-21 11:56:06'), +(8175,2734,'action complete via WP Cron','2025-06-21 09:56:06','2025-06-21 11:56:06'), +(8176,2735,'action created','2025-06-21 09:56:06','2025-06-21 11:56:06'), +(8177,2735,'action started via WP Cron','2025-06-21 09:57:11','2025-06-21 11:57:11'), +(8178,2735,'action complete via WP Cron','2025-06-21 09:57:11','2025-06-21 11:57:11'), +(8179,2736,'action created','2025-06-21 12:43:51','2025-06-21 14:43:51'), +(8180,2736,'action started via WP Cron','2025-06-21 12:44:29','2025-06-21 14:44:29'), +(8181,2736,'action complete via WP Cron','2025-06-21 12:44:29','2025-06-21 14:44:29'), +(8182,2737,'action created','2025-06-21 12:54:52','2025-06-21 14:54:52'), +(8183,2737,'action started via Async Request','2025-06-21 12:55:11','2025-06-21 14:55:11'), +(8184,2737,'action complete via Async Request','2025-06-21 12:55:11','2025-06-21 14:55:11'), +(8185,2738,'action created','2025-06-21 12:58:23','2025-06-21 14:58:23'), +(8186,2738,'action started via WP Cron','2025-06-21 12:58:29','2025-06-21 14:58:29'), +(8187,2738,'action complete via WP Cron','2025-06-21 12:58:29','2025-06-21 14:58:29'), +(8188,2730,'action started via WP Cron','2025-06-21 18:29:59','2025-06-21 20:29:59'), +(8189,2730,'action complete via WP Cron','2025-06-21 18:29:59','2025-06-21 20:29:59'), +(8190,2739,'action created','2025-06-21 18:29:59','2025-06-21 20:29:59'), +(8191,2731,'action started via WP Cron','2025-06-21 18:29:59','2025-06-21 20:29:59'), +(8192,2731,'action complete via WP Cron','2025-06-21 18:29:59','2025-06-21 20:29:59'), +(8193,2740,'action created','2025-06-21 18:29:59','2025-06-21 20:29:59'), +(8194,2733,'action started via WP Cron','2025-06-21 19:01:59','2025-06-21 21:01:59'), +(8195,2733,'action complete via WP Cron','2025-06-21 19:01:59','2025-06-21 21:01:59'), +(8196,2741,'action created','2025-06-21 19:01:59','2025-06-21 21:01:59'), +(8197,2741,'action started via WP Cron','2025-06-22 07:01:59','2025-06-22 09:01:59'), +(8198,2741,'action complete via WP Cron','2025-06-22 07:01:59','2025-06-22 09:01:59'), +(8199,2742,'action created','2025-06-22 07:01:59','2025-06-22 09:01:59'), +(8200,2739,'action started via WP Cron','2025-06-22 18:29:59','2025-06-22 20:29:59'), +(8201,2739,'action complete via WP Cron','2025-06-22 18:29:59','2025-06-22 20:29:59'), +(8202,2743,'action created','2025-06-22 18:29:59','2025-06-22 20:29:59'), +(8203,2740,'action started via WP Cron','2025-06-22 18:29:59','2025-06-22 20:29:59'), +(8204,2740,'action complete via WP Cron','2025-06-22 18:30:00','2025-06-22 20:30:00'), +(8205,2744,'action created','2025-06-22 18:30:00','2025-06-22 20:30:00'), +(8206,2742,'action started via WP Cron','2025-06-22 19:01:59','2025-06-22 21:01:59'), +(8207,2742,'action complete via WP Cron','2025-06-22 19:01:59','2025-06-22 21:01:59'), +(8208,2745,'action created','2025-06-22 19:01:59','2025-06-22 21:01:59'), +(8209,2745,'action started via WP Cron','2025-06-23 07:02:00','2025-06-23 09:02:00'), +(8210,2745,'action complete via WP Cron','2025-06-23 07:02:00','2025-06-23 09:02:00'), +(8211,2746,'action created','2025-06-23 07:02:00','2025-06-23 09:02:00'); +/*!40000 ALTER TABLE `haikuwp_actionscheduler_logs` ENABLE KEYS */; +UNLOCK TABLES; +commit; + +-- +-- Table structure for table `haikuwp_commentmeta` +-- + +DROP TABLE IF EXISTS `haikuwp_commentmeta`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8mb4 */; +CREATE TABLE `haikuwp_commentmeta` ( + `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, + `comment_id` bigint(20) unsigned NOT NULL DEFAULT 0, + `meta_key` varchar(255) DEFAULT NULL, + `meta_value` longtext DEFAULT NULL, + PRIMARY KEY (`meta_id`), + KEY `comment_id` (`comment_id`), + KEY `meta_key` (`meta_key`(191)) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `haikuwp_commentmeta` +-- + +LOCK TABLES `haikuwp_commentmeta` WRITE; +/*!40000 ALTER TABLE `haikuwp_commentmeta` DISABLE KEYS */; +set autocommit=0; +/*!40000 ALTER TABLE `haikuwp_commentmeta` ENABLE KEYS */; +UNLOCK TABLES; +commit; + +-- +-- Table structure for table `haikuwp_comments` +-- + +DROP TABLE IF EXISTS `haikuwp_comments`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8mb4 */; +CREATE TABLE `haikuwp_comments` ( + `comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, + `comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT 0, + `comment_author` tinytext NOT NULL, + `comment_author_email` varchar(100) NOT NULL DEFAULT '', + `comment_author_url` varchar(200) NOT NULL DEFAULT '', + `comment_author_IP` varchar(100) NOT NULL DEFAULT '', + `comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + `comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + `comment_content` text NOT NULL, + `comment_karma` int(11) NOT NULL DEFAULT 0, + `comment_approved` varchar(20) NOT NULL DEFAULT '1', + `comment_agent` varchar(255) NOT NULL DEFAULT '', + `comment_type` varchar(20) NOT NULL DEFAULT 'comment', + `comment_parent` bigint(20) unsigned NOT NULL DEFAULT 0, + `user_id` bigint(20) unsigned NOT NULL DEFAULT 0, + PRIMARY KEY (`comment_ID`), + KEY `comment_post_ID` (`comment_post_ID`), + KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`), + KEY `comment_date_gmt` (`comment_date_gmt`), + KEY `comment_parent` (`comment_parent`), + KEY `comment_author_email` (`comment_author_email`(10)), + KEY `woo_idx_comment_type` (`comment_type`) +) ENGINE=InnoDB AUTO_INCREMENT=86 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `haikuwp_comments` +-- + +LOCK TABLES `haikuwp_comments` WRITE; +/*!40000 ALTER TABLE `haikuwp_comments` DISABLE KEYS */; +set autocommit=0; +INSERT INTO `haikuwp_comments` VALUES +(1,1,'Un commentateur ou commentatrice WordPress','wapuu@wordpress.example','https://fr.wordpress.org/','','2024-08-04 22:10:39','2024-08-04 20:10:39','Bonjour, ceci est un commentaire.\nPour débuter avec la modération, la modification et la suppression de commentaires, veuillez visiter l’écran des Commentaires dans le Tableau de bord.\nLes avatars des personnes qui commentent arrivent depuis Gravatar.',0,'1','','comment',0,0), +(2,543,'WooCommerce','woocommerce@haiku.gcch.fr','','','2024-11-13 09:48:32','2024-11-13 08:48:32','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), +(3,544,'WooCommerce','woocommerce@haiku.gcch.fr','','','2024-11-13 12:45:12','2024-11-13 11:45:12','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), +(4,609,'WooCommerce','woocommerce@haiku.gcch.fr','','','2024-11-13 18:17:59','2024-11-13 17:17:59','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), +(5,640,'WooCommerce','woocommerce@haiku.gcch.fr','','','2024-11-13 19:43:49','2024-11-13 18:43:49','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), +(6,657,'WooCommerce','woocommerce@haiku.gcch.fr','','','2024-11-14 11:55:59','2024-11-14 10:55:59','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), +(7,678,'WooCommerce','woocommerce@haiku.gcch.fr','','','2024-11-16 19:45:11','2024-11-16 18:45:11','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), +(8,687,'WooCommerce','woocommerce@haiku.gcch.fr','','','2024-11-17 10:44:59','2024-11-17 09:44:59','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), +(9,701,'WooCommerce','woocommerce@haiku.gcch.fr','','','2024-11-17 11:10:45','2024-11-17 10:10:45','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), +(10,706,'WooCommerce','woocommerce@haiku.gcch.fr','','','2024-11-17 11:23:11','2024-11-17 10:23:11','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), +(11,777,'WooCommerce','woocommerce@haiku.gcch.fr','','','2024-11-21 17:12:14','2024-11-21 16:12:14','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), +(12,782,'WooCommerce','woocommerce@haiku.gcch.fr','','','2024-11-21 23:23:47','2024-11-21 22:23:47','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), +(13,784,'WooCommerce','woocommerce@haiku.gcch.fr','','','2024-11-22 15:12:26','2024-11-22 14:12:26','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), +(14,785,'WooCommerce','woocommerce@haiku.gcch.fr','','','2024-11-22 18:37:30','2024-11-22 17:37:30','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), +(15,786,'WooCommerce','woocommerce@haiku.gcch.fr','','','2024-11-22 19:24:28','2024-11-22 18:24:28','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), +(16,838,'WooCommerce','woocommerce@haiku.gcch.fr','','','2024-11-25 08:58:17','2024-11-25 07:58:17','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), +(17,850,'WooCommerce','woocommerce@haiku.gcch.fr','','','2024-11-25 12:20:02','2024-11-25 11:20:02','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), +(18,854,'WooCommerce','woocommerce@haiku.gcch.fr','','','2024-11-25 18:18:15','2024-11-25 17:18:15','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), +(19,862,'WooCommerce','woocommerce@haikuatelier.com','','','2024-11-28 16:42:54','2024-11-28 15:42:54','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), +(20,861,'gcch','contact@gcch.fr','','','2024-11-28 18:00:31','2024-11-28 17:00:31','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), +(21,863,'gcch','contact@gcch.fr','','','2024-11-28 18:14:12','2024-11-28 17:14:12','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), +(22,863,'WooCommerce','woocommerce@haikuatelier.com','','','2024-11-28 20:33:49','2024-11-28 19:33:49','Order status changed from trash to Processing.',0,'1','WooCommerce','order_note',0,0), +(23,861,'gcch','contact@gcch.fr','','','2024-11-28 20:40:25','2024-11-28 19:40:25','Order status changed by bulk edit. Order status changed from Processing to On hold.',0,'1','WooCommerce','order_note',0,0), +(24,863,'gcch','contact@gcch.fr','','','2024-11-28 20:40:25','2024-11-28 19:40:25','Order status changed by bulk edit. Order status changed from Processing to On hold.',0,'1','WooCommerce','order_note',0,0), +(25,861,'gcch','contact@gcch.fr','','','2024-11-28 20:40:39','2024-11-28 19:40:39','Order status changed from On hold to Pending payment.',0,'1','WooCommerce','order_note',0,0), +(26,866,'WooCommerce','woocommerce@haikuatelier.com','','','2024-11-29 10:07:40','2024-11-29 09:07:40','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), +(27,868,'WooCommerce','woocommerce@haikuatelier.com','','','2024-11-29 18:26:38','2024-11-29 17:26:38','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), +(28,869,'WooCommerce','woocommerce@haikuatelier.com','','','2024-12-02 11:06:46','2024-12-02 10:06:46','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), +(29,871,'WooCommerce','woocommerce@haikuatelier.com','','','2024-12-02 17:34:12','2024-12-02 16:34:12','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), +(30,872,'WooCommerce','woocommerce@haikuatelier.com','','','2024-12-03 18:04:43','2024-12-03 17:04:43','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), +(31,873,'WooCommerce','woocommerce@haikuatelier.com','','','2024-12-03 23:55:58','2024-12-03 22:55:58','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), +(32,875,'gcch','contact@gcch.fr','','','2024-12-04 00:15:44','2024-12-03 23:15:44','Coupon applied: "zzzzzz".',0,'1','WooCommerce','order_note',0,0), +(33,878,'WooCommerce','woocommerce@haikuatelier.com','','','2024-12-06 14:10:02','2024-12-06 13:10:02','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), +(34,879,'WooCommerce','woocommerce@haikuatelier.com','','','2024-12-06 15:22:12','2024-12-06 14:22:12','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), +(35,880,'WooCommerce','woocommerce@haikuatelier.com','','','2024-12-12 17:59:06','2024-12-12 16:59:06','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), +(36,879,'gcch','contact@gcch.fr','','','2024-12-12 22:43:43','2024-12-12 21:43:43','Order status changed from Processing to Completed.',0,'1','WooCommerce','order_note',0,0), +(37,878,'gcch','contact@gcch.fr','','','2024-12-12 23:07:34','2024-12-12 22:07:34','Order status changed from Processing to Completed.',0,'1','WooCommerce','order_note',0,0), +(38,881,'WooCommerce','woocommerce@haikuatelier.com','','','2024-12-13 09:39:25','2024-12-13 08:39:25','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), +(39,884,'WooCommerce','woocommerce@haikuatelier.com','','','2024-12-14 11:10:27','2024-12-14 10:10:27','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), +(40,878,'gcch','contact@gcch.fr','','','2024-12-15 10:35:42','2024-12-15 09:35:42','Order details manually sent to customer.',0,'1','WooCommerce','order_note',0,0), +(41,880,'gcch','contact@gcch.fr','','','2024-12-15 10:59:40','2024-12-15 09:59:40','Order status changed from Processing to Completed.',0,'1','WooCommerce','order_note',0,0), +(42,885,'WooCommerce','woocommerce@haikuatelier.com','','','2024-12-16 10:17:25','2024-12-16 09:17:25','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), +(43,884,'gcch','contact@gcch.fr','','','2024-12-16 15:13:02','2024-12-16 14:13:02','Order status changed from Processing to Completed.',0,'1','WooCommerce','order_note',0,0), +(44,881,'gcch','contact@gcch.fr','','','2024-12-16 15:13:35','2024-12-16 14:13:35','Order status changed from Processing to Completed.',0,'1','WooCommerce','order_note',0,0), +(45,886,'WooCommerce','woocommerce@haikuatelier.com','','','2024-12-17 09:40:36','2024-12-17 08:40:36','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), +(46,887,'WooCommerce','woocommerce@haikuatelier.com','','','2024-12-18 16:14:07','2024-12-18 15:14:07','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), +(47,886,'gcch','contact@gcch.fr','','','2024-12-18 18:16:41','2024-12-18 17:16:41','Order status changed from Processing to Completed.',0,'1','WooCommerce','order_note',0,0), +(48,885,'gcch','contact@gcch.fr','','','2024-12-18 18:19:20','2024-12-18 17:19:20','Order status changed from Processing to Completed.',0,'1','WooCommerce','order_note',0,0), +(49,888,'WooCommerce','woocommerce@haikuatelier.com','','','2024-12-19 10:09:28','2024-12-19 09:09:28','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), +(50,888,'gcch','contact@gcch.fr','','','2024-12-20 19:55:35','2024-12-20 18:55:35','Order status changed from Processing to Completed.',0,'1','WooCommerce','order_note',0,0), +(51,889,'WooCommerce','woocommerce@haikuatelier.com','','','2024-12-26 13:41:16','2024-12-26 12:41:16','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), +(52,880,'WooCommerce','woocommerce@haikuatelier.com','','','2024-12-30 11:40:43','2024-12-30 10:40:43','Order status changed from Completed to Refunded.',0,'1','WooCommerce','order_note',0,0), +(53,889,'gcch','contact@gcch.fr','','','2024-12-31 12:59:04','2024-12-31 11:59:04','Order status changed from Processing to Completed.',0,'1','WooCommerce','order_note',0,0), +(54,887,'gcch','contact@gcch.fr','','','2024-12-31 12:59:53','2024-12-31 11:59:53','Order status changed from Processing to Completed.',0,'1','WooCommerce','order_note',0,0), +(55,894,'WooCommerce','woocommerce@haikuatelier.com','','','2025-01-03 10:04:36','2025-01-03 09:04:36','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), +(56,894,'gcch','contact@gcch.fr','','','2025-01-07 15:56:35','2025-01-07 14:56:35','Order status changed from Processing to Completed.',0,'1','WooCommerce','order_note',0,0), +(57,895,'WooCommerce','woocommerce@haikuatelier.com','','','2025-01-09 13:03:17','2025-01-09 12:03:17','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), +(58,895,'gcch','contact@gcch.fr','','','2025-01-14 20:47:46','2025-01-14 19:47:46','Order status changed from Processing to Completed.',0,'1','WooCommerce','order_note',0,0), +(59,884,'WooCommerce','woocommerce@haikuatelier.com','','','2025-01-23 22:51:50','2025-01-23 21:51:50','Order status changed from Completed to Refunded.',0,'1','WooCommerce','order_note',0,0), +(60,897,'WooCommerce','woocommerce@haikuatelier.com','','','2025-01-29 11:33:02','2025-01-29 10:33:02','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), +(61,899,'WooCommerce','woocommerce@haikuatelier.com','','','2025-01-30 09:57:27','2025-01-30 08:57:27','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), +(62,897,'gcch','contact@gcch.fr','','','2025-02-03 18:36:20','2025-02-03 17:36:20','Order status changed from Processing to Completed.',0,'1','WooCommerce','order_note',0,0), +(63,899,'gcch','contact@gcch.fr','','','2025-02-03 18:37:03','2025-02-03 17:37:03','Order status changed from Processing to Completed.',0,'1','WooCommerce','order_note',0,0), +(64,901,'WooCommerce','woocommerce@haikuatelier.com','','','2025-02-23 18:08:48','2025-02-23 17:08:48','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), +(65,903,'WooCommerce','woocommerce@haikuatelier.com','','','2025-02-26 13:53:34','2025-02-26 12:53:34','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), +(66,903,'gcch','contact@gcch.fr','','','2025-03-01 09:14:28','2025-03-01 08:14:28','Order status changed from Processing to Completed.',0,'1','WooCommerce','order_note',0,0), +(67,905,'WooCommerce','woocommerce@haikuatelier.com','','','2025-03-03 11:46:58','2025-03-03 10:46:58','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), +(68,906,'WooCommerce','woocommerce@haikuatelier.com','','','2025-03-03 12:11:31','2025-03-03 11:11:31','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), +(69,907,'WooCommerce','woocommerce@haikuatelier.com','','','2025-03-05 12:05:44','2025-03-05 11:05:44','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), +(70,905,'gcch','contact@gcch.fr','','','2025-03-06 09:24:34','2025-03-06 08:24:34','Order status changed from Processing to Completed.',0,'1','WooCommerce','order_note',0,0), +(71,906,'gcch','contact@gcch.fr','','','2025-03-06 09:25:37','2025-03-06 08:25:37','Order status changed from Processing to Completed.',0,'1','WooCommerce','order_note',0,0), +(72,907,'gcch','contact@gcch.fr','','','2025-03-18 10:40:40','2025-03-18 09:40:40','Order status changed from Processing to Completed.',0,'1','WooCommerce','order_note',0,0), +(73,908,'WooCommerce','woocommerce@haikuatelier.com','','','2025-03-23 22:41:40','2025-03-23 21:41:40','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), +(74,908,'gcch','contact@gcch.fr','','','2025-04-04 08:41:40','2025-04-04 06:41:40','Order status changed from Processing to Completed.',0,'1','WooCommerce','order_note',0,0), +(75,910,'WooCommerce','woocommerce@haikuatelier.com','','','2025-04-08 13:45:10','2025-04-08 11:45:10','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), +(76,912,'WooCommerce','woocommerce@haikuatelier.com','','','2025-05-09 11:50:58','2025-05-09 09:50:58','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), +(77,921,'WooCommerce','woocommerce@haikuatelier.com','','','2025-05-09 21:57:36','2025-05-09 19:57:36','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), +(78,910,'gcch','contact@gcch.fr','','','2025-05-11 15:35:33','2025-05-11 13:35:33','Order status changed from Processing to Completed.',0,'1','WooCommerce','order_note',0,0), +(79,912,'gcch','contact@gcch.fr','','','2025-05-16 07:54:01','2025-05-16 05:54:01','Order status changed from Processing to Completed.',0,'1','WooCommerce','order_note',0,0), +(80,921,'gcch','contact@gcch.fr','','','2025-05-16 07:54:27','2025-05-16 05:54:27','Order status changed from Processing to Completed.',0,'1','WooCommerce','order_note',0,0), +(81,922,'gcch','contact@gcch.fr','','','2025-05-16 07:54:37','2025-05-16 05:54:37','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), +(82,922,'gcch','contact@gcch.fr','','','2025-05-16 07:55:05','2025-05-16 05:55:05','Order status changed from Processing to Completed.',0,'1','WooCommerce','order_note',0,0), +(83,924,'WooCommerce','woocommerce@haikuatelier.com','','','2025-06-05 09:45:48','2025-06-05 07:45:48','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0), +(84,924,'gcch','contact@gcch.fr','','','2025-06-09 12:59:57','2025-06-09 10:59:57','Order status changed from Processing to Completed.',0,'1','WooCommerce','order_note',0,0), +(85,997,'WooCommerce','woocommerce@haikuatelier.com','','','2025-06-21 11:56:06','2025-06-21 09:56:06','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0); +/*!40000 ALTER TABLE `haikuwp_comments` ENABLE KEYS */; +UNLOCK TABLES; +commit; + +-- +-- Table structure for table `haikuwp_links` +-- + +DROP TABLE IF EXISTS `haikuwp_links`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8mb4 */; +CREATE TABLE `haikuwp_links` ( + `link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, + `link_url` varchar(255) NOT NULL DEFAULT '', + `link_name` varchar(255) NOT NULL DEFAULT '', + `link_image` varchar(255) NOT NULL DEFAULT '', + `link_target` varchar(25) NOT NULL DEFAULT '', + `link_description` varchar(255) NOT NULL DEFAULT '', + `link_visible` varchar(20) NOT NULL DEFAULT 'Y', + `link_owner` bigint(20) unsigned NOT NULL DEFAULT 1, + `link_rating` int(11) NOT NULL DEFAULT 0, + `link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + `link_rel` varchar(255) NOT NULL DEFAULT '', + `link_notes` mediumtext NOT NULL, + `link_rss` varchar(255) NOT NULL DEFAULT '', + PRIMARY KEY (`link_id`), + KEY `link_visible` (`link_visible`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `haikuwp_links` +-- + +LOCK TABLES `haikuwp_links` WRITE; +/*!40000 ALTER TABLE `haikuwp_links` DISABLE KEYS */; +set autocommit=0; +/*!40000 ALTER TABLE `haikuwp_links` ENABLE KEYS */; +UNLOCK TABLES; +commit; + +-- +-- Table structure for table `haikuwp_mclean_refs` +-- + +DROP TABLE IF EXISTS `haikuwp_mclean_refs`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8mb4 */; +CREATE TABLE `haikuwp_mclean_refs` ( + `id` bigint(20) NOT NULL AUTO_INCREMENT, + `mediaId` bigint(20) DEFAULT NULL, + `mediaUrl` tinytext DEFAULT NULL, + `originType` tinytext NOT NULL, + `parentId` bigint(20) DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=77 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `haikuwp_mclean_refs` +-- + +LOCK TABLES `haikuwp_mclean_refs` WRITE; +/*!40000 ALTER TABLE `haikuwp_mclean_refs` DISABLE KEYS */; +set autocommit=0; +INSERT INTO `haikuwp_mclean_refs` VALUES +(1,506,NULL,'WOOCOOMMERCE (ID)',NULL), +(2,81,NULL,'META (ID) [72]',NULL), +(3,NULL,'2024/10/HAIKU-sizechart.jpg','CONTENT (URL) [72]',NULL), +(4,420,NULL,'META (ID) [86]',NULL), +(5,110,NULL,'META (ID) [102]',NULL), +(6,121,NULL,'META (ID) [113]',NULL), +(7,NULL,'2024/10/HAIKU-sizechart.jpg','CONTENT (URL) [113]',NULL), +(8,219,NULL,'META (ID) [123]',NULL), +(9,141,NULL,'META (ID) [133]',NULL), +(10,152,NULL,'META (ID) [144]',NULL), +(11,163,NULL,'META (ID) [155]',NULL), +(12,176,NULL,'META (ID) [168]',NULL), +(13,564,NULL,'META (ID) [183]',NULL), +(14,206,NULL,'META (ID) [202]',NULL), +(15,568,NULL,'META (ID) [213]',NULL), +(16,604,NULL,'META (ID) [220]',NULL), +(17,606,NULL,'META (ID) [226]',NULL), +(18,668,NULL,'META (ID) [232]',NULL), +(19,243,NULL,'META (ID) [240]',NULL), +(20,249,NULL,'META (ID) [246]',NULL), +(21,601,NULL,'META (ID) [251]',NULL), +(22,259,NULL,'META (ID) [258]',NULL), +(23,262,NULL,'META (ID) [261]',NULL), +(24,600,NULL,'META (ID) [263]',NULL), +(25,603,NULL,'META (ID) [268]',NULL), +(26,602,NULL,'META (ID) [271]',NULL), +(27,275,NULL,'META (ID) [274]',NULL), +(28,280,NULL,'META (ID) [276]',NULL), +(29,283,NULL,'META (ID) [282]',NULL), +(30,286,NULL,'META (ID) [285]',NULL), +(31,289,NULL,'META (ID) [288]',NULL), +(32,292,NULL,'META (ID) [291]',NULL), +(33,310,NULL,'META (ID) [306]',NULL), +(34,316,NULL,'META (ID) [312]',NULL), +(35,503,NULL,'META (ID) [318]',NULL), +(36,326,NULL,'META (ID) [325]',NULL), +(37,329,NULL,'META (ID) [328]',NULL), +(38,332,NULL,'META (ID) [331]',NULL), +(39,336,NULL,'META (ID) [335]',NULL), +(40,339,NULL,'META (ID) [338]',NULL), +(41,559,NULL,'META (ID) [342]',NULL), +(42,360,NULL,'META (ID) [356]',NULL), +(43,369,NULL,'META (ID) [365]',NULL), +(44,375,NULL,'META (ID) [372]',NULL), +(45,378,NULL,'META (ID) [377]',NULL), +(46,382,NULL,'META (ID) [381]',NULL), +(47,486,NULL,'META (ID) [385]',NULL), +(48,396,NULL,'META (ID) [393]',NULL), +(49,399,NULL,'META (ID) [398]',NULL), +(50,403,NULL,'META (ID) [402]',NULL), +(51,407,NULL,'META (ID) [406]',NULL), +(52,431,NULL,'META (ID) [430]',NULL), +(53,475,NULL,'META (ID) [433]',NULL), +(54,436,NULL,'META (ID) [435]',NULL), +(55,449,NULL,'META (ID) [447]',NULL), +(56,482,NULL,'META (ID) [481]',NULL), +(57,491,NULL,'META (ID) [490]',NULL), +(58,500,NULL,'META (ID) [496]',NULL), +(59,516,NULL,'META (ID) [515]',NULL), +(60,524,NULL,'META (ID) [521]',NULL), +(61,536,NULL,'META (ID) [535]',NULL), +(62,547,NULL,'META (ID) [545]',NULL), +(63,665,NULL,'META (ID) [554]',NULL), +(64,575,NULL,'META (ID) [572]',NULL), +(65,598,NULL,'META (ID) [589]',NULL), +(66,611,NULL,'META (ID) [610]',NULL), +(67,621,NULL,'META (ID) [613]',NULL), +(68,NULL,'2024/10/HAIKU-sizechart.jpg','CONTENT (URL) [613]',NULL), +(69,634,NULL,'META (ID) [625]',NULL), +(70,176,NULL,'META (ID) [200]',NULL), +(71,178,NULL,'META (ID) [201]',NULL), +(72,243,NULL,'META (ID) [241]',NULL), +(73,249,NULL,'META (ID) [247]',NULL), +(74,475,NULL,'META (ID) [478]',NULL), +(75,476,NULL,'META (ID) [479]',NULL), +(76,477,NULL,'META (ID) [480]',NULL); +/*!40000 ALTER TABLE `haikuwp_mclean_refs` ENABLE KEYS */; +UNLOCK TABLES; +commit; + +-- +-- Table structure for table `haikuwp_mclean_scan` +-- + +DROP TABLE IF EXISTS `haikuwp_mclean_scan`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8mb4 */; +CREATE TABLE `haikuwp_mclean_scan` ( + `id` bigint(20) NOT NULL AUTO_INCREMENT, + `time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + `type` tinyint(1) NOT NULL, + `postId` bigint(20) DEFAULT NULL, + `path` tinytext DEFAULT NULL, + `size` int(9) DEFAULT NULL, + `ignored` tinyint(1) NOT NULL DEFAULT 0, + `deleted` tinyint(1) NOT NULL DEFAULT 0, + `issue` tinytext NOT NULL, + `parentId` bigint(20) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `IgnoredIndex` (`ignored`) USING BTREE +) ENGINE=InnoDB AUTO_INCREMENT=136 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `haikuwp_mclean_scan` +-- + +LOCK TABLES `haikuwp_mclean_scan` WRITE; +/*!40000 ALTER TABLE `haikuwp_mclean_scan` DISABLE KEYS */; +set autocommit=0; +INSERT INTO `haikuwp_mclean_scan` VALUES +(1,'2024-11-15 17:19:13',1,100,'2024/09/HADOU-B-mix.jpg (+ 2 files)',633426,0,0,'NO_CONTENT',NULL), +(2,'2024-11-15 17:19:13',1,101,'2024/09/HADOU-BKIGEN-Bo.jpg (+ 2 files)',992102,0,0,'NO_CONTENT',NULL), +(3,'2024-11-15 17:19:13',1,111,'2024/09/IKKAN-B-arg.jpg (+ 2 files)',181582,0,0,'NO_CONTENT',NULL), +(4,'2024-11-15 17:19:13',1,112,'2024/09/IKKAN-BaKIGEN-Ba.jpg (+ 2 files)',474986,0,0,'NO_CONTENT',NULL), +(5,'2024-11-15 17:19:13',1,122,'2024/09/IKKAN-B-g.jpg (+ 1 files)',575848,0,0,'NO_CONTENT',NULL), +(6,'2024-11-15 17:19:13',1,132,'2024/09/DSC9928.jpg (+ 2 files)',659968,0,0,'NO_CONTENT',NULL), +(7,'2024-11-15 17:19:13',1,142,'2024/09/DSC9269.jpg (+ 2 files)',461644,0,0,'NO_CONTENT',NULL), +(8,'2024-11-15 17:19:13',1,143,'2024/09/DSC9148.jpg (+ 2 files)',432058,0,0,'NO_CONTENT',NULL), +(9,'2024-11-15 17:19:13',1,153,'2024/10/KISHOU-B-arg-1.jpg (+ 2 files)',159416,0,0,'NO_CONTENT',NULL), +(10,'2024-11-15 17:19:13',1,154,'2024/10/KIGEN-BaIKKANBa.jpg (+ 2 files)',456438,0,0,'NO_CONTENT',NULL), +(11,'2024-11-15 17:19:13',1,164,'2024/10/KISHOU-B-vrm-1.jpg (+ 2 files)',252118,0,0,'NO_CONTENT',NULL), +(12,'2024-11-15 17:19:13',1,165,'2024/10/HADOU-BOoIKKAN-BKIGEN-BJOKOU-Co.jpg (+ 2 files)',524168,0,0,'NO_CONTENT',NULL), +(13,'2024-11-15 17:19:13',1,166,'2024/09/DSC9760.jpg (+ 2 files)',705900,0,0,'NO_CONTENT',NULL), +(14,'2024-11-15 17:19:13',1,167,'2024/09/DSC9339.jpg (+ 2 files)',515504,0,0,'NO_CONTENT',NULL), +(15,'2024-11-15 17:19:13',1,177,'2024/10/ROKKU-B-malachite-1.jpg (+ 2 files)',171466,0,0,'NO_CONTENT',NULL), +(16,'2024-11-15 17:19:13',1,179,'2024/10/ROKKU-B-tigereye-1.jpg (+ 2 files)',175398,0,0,'NO_CONTENT',NULL), +(17,'2024-11-15 17:19:13',1,180,'2024/10/DSC9710.jpg (+ 2 files)',843748,0,0,'NO_CONTENT',NULL), +(18,'2024-11-15 17:19:13',1,182,'2024/10/DSC9190.jpg (+ 2 files)',459310,0,0,'NO_CONTENT',NULL), +(19,'2024-11-15 17:19:13',1,199,'2024/10/BOROBORO-BOaTANEMAKI-BO1a-opti.jpg (+ 1 files)',236038,0,0,'NO_CONTENT',NULL), +(20,'2024-11-15 17:19:13',1,207,'2024/10/PIASU-BO-1.jpg (+ 2 files)',675740,0,0,'NO_CONTENT',NULL), +(21,'2024-11-15 17:19:13',1,212,'2024/10/PIASU-BO-2.jpg (+ 2 files)',374094,0,0,'NO_CONTENT',NULL), +(22,'2024-11-15 17:19:13',1,225,'2024/10/TAMANORI-BO-s-1.jpg (+ 2 files)',337094,0,0,'NO_CONTENT',NULL), +(23,'2024-11-15 17:19:13',1,231,'2024/10/TAMANORI-BO-g-1.jpg (+ 2 files)',376868,0,0,'NO_CONTENT',NULL), +(24,'2024-11-15 17:19:13',1,237,'2024/10/HADOU-BR.jpg (+ 2 files)',1045562,0,0,'NO_CONTENT',NULL), +(25,'2024-11-15 17:19:13',1,244,'2024/10/IKKAN-BR-s.jpg (+ 2 files)',877486,0,0,'NO_CONTENT',NULL), +(26,'2024-11-15 17:19:13',1,245,'2024/10/IKKAN-BR-s-1.jpg (+ 2 files)',1073188,0,0,'NO_CONTENT',NULL), +(27,'2024-11-15 17:19:13',1,250,'2024/10/IKKAN-BR-g.jpg (+ 2 files)',374178,0,0,'NO_CONTENT',NULL), +(28,'2024-11-15 17:19:13',1,255,'2024/10/TANEMAKI-BR-1.jpg (+ 2 files)',1028916,0,0,'NO_CONTENT',NULL), +(29,'2024-11-15 17:19:13',1,260,'2024/10/DSC9225.jpg (+ 2 files)',696974,0,0,'NO_CONTENT',NULL), +(30,'2024-11-15 17:19:13',1,265,'2024/10/IKKAN-C.jpg (+ 2 files)',1066054,0,0,'NO_CONTENT',NULL), +(31,'2024-11-15 17:19:13',1,266,'2024/10/IKKAN-C-1.jpg (+ 1 files)',554660,0,0,'NO_CONTENT',NULL), +(32,'2024-11-15 17:19:13',1,267,'2024/10/IKKAN-C-2.jpg (+ 2 files)',1012194,0,0,'NO_CONTENT',NULL), +(33,'2024-11-15 17:19:13',1,270,'2024/10/PIASU-C-arg-opti.jpg (+ 2 files)',532206,0,0,'NO_CONTENT',NULL), +(34,'2024-11-15 17:19:13',1,273,'2024/10/TANEMAKI-C.jpg (+ 2 files)',997056,0,0,'NO_CONTENT',NULL), +(35,'2024-11-15 17:19:13',1,281,'2024/10/HADOU-CR-s.jpg (+ 2 files)',965156,0,0,'NO_CONTENT',NULL), +(36,'2024-11-15 17:19:13',1,284,'2024/10/HADOU-CR-g.jpg (+ 1 files)',325294,0,0,'NO_CONTENT',NULL), +(37,'2024-11-15 17:19:13',1,287,'2024/10/HATTARI-CR1-s-1.jpg (+ 2 files)',647238,0,0,'NO_CONTENT',NULL), +(38,'2024-11-15 17:19:13',1,290,'2024/10/DSC9336.jpg (+ 2 files)',561068,0,0,'NO_CONTENT',NULL), +(39,'2024-11-15 17:19:13',1,293,'2024/10/HATTARI-CR2.jpg (+ 2 files)',535282,0,0,'NO_CONTENT',NULL), +(40,'2024-11-15 17:19:13',1,311,'2024/10/DSC9378.jpg (+ 2 files)',541902,0,0,'NO_CONTENT',NULL), +(41,'2024-11-15 17:19:13',1,317,'2024/10/TAMANORI-CR2-vrm-1.jpg (+ 1 files)',408918,0,0,'NO_CONTENT',NULL), +(42,'2024-11-15 17:19:13',1,323,'2024/10/FUYOU-CR.jpg (+ 1 files)',546040,0,0,'NO_CONTENT',NULL), +(43,'2024-11-15 17:19:13',1,324,'2024/10/DSC9542.jpg (+ 2 files)',876338,0,0,'NO_CONTENT',NULL), +(44,'2024-11-15 17:19:13',1,327,'2024/10/HADOU-EC.jpg (+ 2 files)',711176,0,0,'NO_CONTENT',NULL), +(45,'2024-11-15 17:19:13',1,330,'2024/10/HADOU-EC-vrm-1.jpg (+ 2 files)',447956,0,0,'NO_CONTENT',NULL), +(46,'2024-11-15 17:19:13',1,334,'2024/10/HATTARI-EC-arg-1.jpg (+ 2 files)',369024,0,0,'NO_CONTENT',NULL), +(47,'2024-11-15 17:19:13',1,337,'2024/10/DSC9472.jpg (+ 2 files)',713526,0,0,'NO_CONTENT',NULL), +(48,'2024-11-15 17:19:13',1,340,'2024/10/PIASU-BRC-1.jpg (+ 2 files)',474200,0,0,'NO_CONTENT',NULL), +(49,'2024-11-15 17:19:13',1,341,'2024/10/PIASU-BRC-2.jpg (+ 2 files)',652362,0,0,'NO_CONTENT',NULL), +(50,'2024-11-15 17:19:13',1,347,'2024/10/DSC9763.jpg (+ 2 files)',804254,0,0,'NO_CONTENT',NULL), +(51,'2024-11-15 17:19:13',1,348,'2024/10/DSC9781.jpg (+ 1 files)',372455,0,0,'NO_CONTENT',NULL), +(52,'2024-11-15 17:19:13',1,349,'2024/10/DSC9748.jpg (+ 2 files)',842826,0,0,'NO_CONTENT',NULL), +(53,'2024-11-15 17:19:13',1,361,'2024/10/DSC9354.jpg (+ 2 files)',565222,0,0,'NO_CONTENT',NULL), +(54,'2024-11-15 17:19:13',1,376,'2024/10/DSC9300.jpg (+ 2 files)',469948,0,0,'NO_CONTENT',NULL), +(55,'2024-11-15 17:19:13',1,379,'2024/10/DSC9260.jpg (+ 1 files)',232862,0,0,'NO_CONTENT',NULL), +(56,'2024-11-15 17:19:13',1,380,'2024/10/DSC9262.jpg (+ 2 files)',394188,0,0,'NO_CONTENT',NULL), +(57,'2024-11-15 17:19:13',1,383,'2024/10/DSC9772.jpg (+ 1 files)',602490,0,0,'NO_CONTENT',NULL), +(58,'2024-11-15 17:19:13',1,384,'2024/10/DSC9775.jpg (+ 1 files)',559293,0,0,'NO_CONTENT',NULL), +(59,'2024-11-15 17:19:13',1,388,'2024/10/ROKKU-C-arg.jpg (+ 2 files)',656360,0,0,'NO_CONTENT',NULL), +(60,'2024-11-15 17:19:13',1,397,'2024/10/DSC9733.jpg (+ 1 files)',373189,0,0,'NO_CONTENT',NULL), +(61,'2024-11-15 17:19:13',1,400,'2024/10/DSC9723.jpg (+ 2 files)',775076,0,0,'NO_CONTENT',NULL), +(62,'2024-11-15 17:19:13',1,401,'2024/10/DSC9730.jpg (+ 2 files)',776178,0,0,'NO_CONTENT',NULL), +(63,'2024-11-15 17:19:13',1,404,'2024/10/DSC9216.jpg (+ 2 files)',407382,0,0,'NO_CONTENT',NULL), +(64,'2024-11-15 17:19:13',1,405,'2024/10/IMG_9077.jpg (+ 2 files)',493806,0,0,'NO_CONTENT',NULL), +(65,'2024-11-15 17:19:14',1,408,'2024/10/DSC9485.jpg (+ 1 files)',509856,0,0,'NO_CONTENT',NULL), +(66,'2024-11-15 17:19:14',1,409,'2024/10/MUGURA-NAIL-.jpg (+ 2 files)',610030,0,0,'NO_CONTENT',NULL), +(67,'2024-11-15 17:19:14',1,410,'2024/10/MUGURA-FEU-arg.jpg (+ 2 files)',86010,0,0,'NO_CONTENT',NULL), +(68,'2024-11-15 17:19:14',1,411,'2024/09/DSC8400-copie.jpg (+ 2 files)',995626,0,0,'NO_CONTENT',NULL), +(69,'2024-11-15 17:19:14',1,412,'2024/09/HATTARI-B-2-1.jpg (+ 2 files)',1069220,0,0,'NO_CONTENT',NULL), +(70,'2024-11-15 17:19:14',1,419,'2024/09/HATTARI-B-1.jpg (+ 2 files)',1071022,0,0,'NO_CONTENT',NULL), +(71,'2024-11-15 17:19:14',1,424,'2024/10/DSC9376.jpg (+ 2 files)',626712,0,0,'NO_CONTENT',NULL), +(72,'2024-11-15 17:19:14',1,425,'2024/10/DSC9156.jpg (+ 2 files)',821022,0,0,'NO_CONTENT',NULL), +(73,'2024-11-15 17:19:14',1,432,'2024/10/DSC9297.jpg (+ 2 files)',594618,0,0,'NO_CONTENT',NULL), +(74,'2024-11-15 17:19:14',1,437,'2024/10/DSC9781-1.jpg (+ 2 files)',749844,0,0,'NO_CONTENT',NULL), +(75,'2024-11-15 17:19:14',1,440,'2024/09/IMG_1423.jpg (+ 1 files)',539259,0,0,'NO_CONTENT',NULL), +(76,'2024-11-15 17:19:14',1,441,'2024/10/IMG_1428.jpg (+ 1 files)',739647,0,0,'NO_CONTENT',NULL), +(77,'2024-11-15 17:19:14',1,442,'2024/10/IMG_1431.jpg (+ 1 files)',774253,0,0,'NO_CONTENT',NULL), +(78,'2024-11-15 17:19:14',1,443,'2024/10/IMG_1432.jpg (+ 1 files)',886014,0,0,'NO_CONTENT',NULL), +(79,'2024-11-15 17:19:14',1,448,'2024/11/IMG_1473.jpg (+ 1 files)',1448749,0,0,'NO_CONTENT',NULL), +(80,'2024-11-15 17:19:14',1,450,'2024/09/IMG_1478.jpg (+ 1 files)',1770683,0,0,'NO_CONTENT',NULL), +(81,'2024-11-15 17:19:14',1,451,'2024/10/IMG_1493.jpg (+ 1 files)',955698,0,0,'NO_CONTENT',NULL), +(82,'2024-11-15 17:19:14',1,452,'2024/10/IMG_1505.jpg (+ 1 files)',1160791,0,0,'NO_CONTENT',NULL), +(83,'2024-11-15 17:19:14',1,455,'2024/10/IMG_1531.jpg (+ 1 files)',1498668,0,0,'NO_CONTENT',NULL), +(84,'2024-11-15 17:19:14',1,456,'2024/10/IMG_1543.jpg (+ 1 files)',779634,0,0,'NO_CONTENT',NULL), +(85,'2024-11-15 17:19:14',1,457,'2024/10/IMG_1565.jpg (+ 1 files)',569995,0,0,'NO_CONTENT',NULL), +(86,'2024-11-15 17:19:14',1,459,'2024/10/IMG_1586.jpg (+ 1 files)',1749377,0,0,'NO_CONTENT',NULL), +(87,'2024-11-15 17:19:14',1,460,'2024/10/IMG_1588.jpg (+ 1 files)',1183645,0,0,'NO_CONTENT',NULL), +(88,'2024-11-15 17:19:14',1,461,'2024/10/IMG_1600.jpg (+ 1 files)',1339797,0,0,'NO_CONTENT',NULL), +(89,'2024-11-15 17:19:14',1,463,'2024/10/IMG_1638.jpg (+ 1 files)',960703,0,0,'NO_CONTENT',NULL), +(90,'2024-11-15 17:19:14',1,464,'2024/10/IMG_1647.jpg (+ 1 files)',782793,0,0,'NO_CONTENT',NULL), +(91,'2024-11-15 17:19:14',1,465,'2024/10/IMG_1651.jpg (+ 1 files)',1518958,0,0,'NO_CONTENT',NULL), +(92,'2024-11-15 17:19:14',1,468,'2024/10/IMG_1673.jpg (+ 1 files)',1651578,0,0,'NO_CONTENT',NULL), +(93,'2024-11-15 17:19:14',1,469,'2024/10/IMG_1669.jpg (+ 1 files)',1454981,0,0,'NO_CONTENT',NULL), +(94,'2024-11-15 17:19:14',1,470,'2024/10/IMG_1675.jpg (+ 1 files)',228383,0,0,'NO_CONTENT',NULL), +(95,'2024-11-15 17:19:14',1,471,'2024/10/IMG_1680.jpg (+ 1 files)',1422287,0,0,'NO_CONTENT',NULL), +(96,'2024-11-15 17:19:14',1,472,'2024/10/IMG_1746.jpg (+ 1 files)',1224686,0,0,'NO_CONTENT',NULL), +(97,'2024-11-15 17:19:14',1,473,'2024/10/IMG_1747.jpg (+ 1 files)',1254904,0,0,'NO_CONTENT',NULL), +(98,'2024-11-15 17:19:14',1,474,'2024/10/IMG_1748.jpg (+ 1 files)',1443067,0,0,'NO_CONTENT',NULL), +(99,'2024-11-15 17:19:14',1,483,'2024/11/IMG_1619.jpg (+ 1 files)',1626994,0,0,'NO_CONTENT',NULL), +(100,'2024-11-15 17:19:14',1,487,'2024/10/DSC9138.jpg (+ 1 files)',283469,0,0,'NO_CONTENT',NULL), +(101,'2024-11-15 17:19:14',1,488,'2024/10/ROKKU-C-lapis.jpg (+ 1 files)',800553,0,0,'NO_CONTENT',NULL), +(102,'2024-11-15 17:19:14',1,489,'2024/10/ROKKU-C-jaspe.jpg (+ 1 files)',750940,0,0,'NO_CONTENT',NULL), +(103,'2024-11-15 17:19:14',1,492,'2024/11/IMG_1474.jpg (+ 1 files)',1552782,0,0,'NO_CONTENT',NULL), +(104,'2024-11-15 17:19:14',1,501,'2024/11/IMG_1481.jpg (+ 1 files)',1930791,0,0,'NO_CONTENT',NULL), +(105,'2024-11-15 17:19:14',1,502,'2024/11/IMG_1484.jpg (+ 1 files)',547048,0,0,'NO_CONTENT',NULL), +(106,'2024-11-15 17:19:14',1,504,'2024/10/FUYOU-C-1.jpg (+ 1 files)',984668,0,0,'NO_CONTENT',NULL), +(107,'2024-11-15 17:19:14',1,518,'2024/11/BOROBORO-BO1-g-brown.jpg (+ 1 files)',720777,0,0,'NO_CONTENT',NULL), +(108,'2024-11-15 17:19:14',1,526,'2024/11/BOROBORO-BO1-s-green.jpg (+ 1 files)',685626,0,0,'NO_CONTENT',NULL), +(109,'2024-11-15 17:19:14',1,531,'2024/09/DSC9897.jpg (+ 1 files)',1361665,0,0,'NO_CONTENT',NULL), +(110,'2024-11-15 17:19:14',1,537,'2024/11/IMG_1703.jpg (+ 1 files)',1901030,0,0,'NO_CONTENT',NULL), +(111,'2024-11-15 17:19:14',1,538,'2024/11/BOROBORO-BLT-crystal.jpg (+ 1 files)',778439,0,0,'NO_CONTENT',NULL), +(112,'2024-11-15 17:19:14',1,539,'2024/11/IMG_1715.jpg (+ 1 files)',1313772,0,0,'NO_CONTENT',NULL), +(113,'2024-11-15 17:19:14',1,548,'2024/11/IMG_1563.jpg (+ 1 files)',1718895,0,0,'NO_CONTENT',NULL), +(114,'2024-11-15 17:19:14',1,558,'2024/11/DSC9463.jpg (+ 1 files)',1886628,0,0,'NO_CONTENT',NULL), +(115,'2024-11-15 17:19:14',1,576,'2024/11/IMG_1419.jpg (+ 1 files)',566675,0,0,'NO_CONTENT',NULL), +(116,'2024-11-15 17:19:14',1,599,'2024/11/BOROBORO-B-s-1.jpg (+ 1 files)',1671625,0,0,'NO_CONTENT',NULL), +(117,'2024-11-15 17:19:14',1,622,'2024/11/IMG_1504.jpg (+ 1 files)',642992,0,0,'NO_CONTENT',NULL), +(118,'2024-11-15 17:19:14',1,623,'2024/11/IMG_1554.jpg (+ 1 files)',1406586,0,0,'NO_CONTENT',NULL), +(119,'2024-11-15 17:19:14',1,635,'2024/11/IMG_1501.jpg (+ 1 files)',573637,0,0,'NO_CONTENT',NULL), +(120,'2024-11-15 17:19:14',1,636,'2024/11/IMG_1506.jpg (+ 1 files)',1149564,0,0,'NO_CONTENT',NULL), +(121,'2024-11-15 17:19:14',1,644,'2024/10/DSC9341.jpg (+ 1 files)',1492187,0,0,'NO_CONTENT',NULL), +(122,'2024-11-15 17:19:14',1,658,'2024/10/BOROBORO-BOaTANEMAKI-BO1a.jpg (+ 1 files)',1088937,0,0,'NO_CONTENT',NULL), +(123,'2024-11-15 17:19:14',1,659,'2024/09/HADOU-B-opti.jpg (+ 1 files)',0,0,1,'ORPHAN_MEDIA',NULL), +(124,'2024-11-15 17:19:14',1,660,'2024/10/IMG_1442.jpg (+ 1 files)',1029972,0,0,'NO_CONTENT',NULL), +(125,'2024-11-15 17:19:14',1,661,'2024/10/IMG_1454.jpg (+ 1 files)',849459,0,0,'NO_CONTENT',NULL), +(126,'2024-11-15 17:19:14',1,662,'2024/10/IMG_1456.jpg (+ 1 files)',730806,0,0,'NO_CONTENT',NULL), +(127,'2024-11-15 17:19:14',1,663,'2024/11/IMG_1460.jpg (+ 1 files)',98598,0,0,'NO_CONTENT',NULL), +(128,'2024-11-15 17:19:14',1,664,'2024/10/IMG_1512.jpg (+ 1 files)',873482,0,0,'NO_CONTENT',NULL), +(129,'2024-11-15 17:19:14',1,666,'2024/11/IMG_1525.jpg (+ 1 files)',173470,0,0,'NO_CONTENT',NULL), +(130,'2024-11-15 17:19:14',1,667,'2024/11/IMG_1524.jpg (+ 1 files)',172887,0,0,'NO_CONTENT',NULL), +(131,'2024-11-15 17:19:14',1,669,'2024/10/IMG_1528.jpg (+ 1 files)',958548,0,0,'NO_CONTENT',NULL), +(132,'2024-11-15 17:19:14',1,670,'2024/10/IMG_1582.jpg (+ 1 files)',1167334,0,0,'NO_CONTENT',NULL), +(133,'2024-11-15 17:19:14',1,671,'2024/10/IMG_1604.jpg (+ 1 files)',876712,0,0,'NO_CONTENT',NULL), +(134,'2024-11-15 17:19:14',1,672,'2024/10/IMG_1656-1.jpg (+ 1 files)',1095755,0,0,'NO_CONTENT',NULL), +(135,'2024-11-15 17:19:14',1,673,'2024/10/IMG_1657.jpg (+ 1 files)',901473,0,0,'NO_CONTENT',NULL); +/*!40000 ALTER TABLE `haikuwp_mclean_scan` ENABLE KEYS */; +UNLOCK TABLES; +commit; + +-- +-- Table structure for table `haikuwp_options` +-- + +DROP TABLE IF EXISTS `haikuwp_options`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8mb4 */; +CREATE TABLE `haikuwp_options` ( + `option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, + `option_name` varchar(191) NOT NULL DEFAULT '', + `option_value` longtext NOT NULL, + `autoload` varchar(20) NOT NULL DEFAULT 'yes', + PRIMARY KEY (`option_id`), + UNIQUE KEY `option_name` (`option_name`), + KEY `autoload` (`autoload`) +) ENGINE=InnoDB AUTO_INCREMENT=34083 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `haikuwp_options` +-- + +LOCK TABLES `haikuwp_options` WRITE; +/*!40000 ALTER TABLE `haikuwp_options` DISABLE KEYS */; +set autocommit=0; +INSERT INTO `haikuwp_options` VALUES +(1,'cron','a:25:{i:1750685606;a:1:{s:26:\"action_scheduler_run_queue\";a:1:{s:32:\"0d04ed39571b55704c122d726248bbac\";a:3:{s:8:\"schedule\";s:12:\"every_minute\";s:4:\"args\";a:1:{i:0;s:7:\"WP Cron\";}s:8:\"interval\";i:60;}}}i:1750685914;a:2:{s:19:\"update_wms_statuses\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}s:17:\"check_wms_license\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1750686774;a:1:{s:32:\"woocommerce_cancel_unpaid_orders\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1750687839;a:1:{s:34:\"wp_privacy_delete_old_export_files\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1750687956;a:1:{s:20:\"jetpack_clean_nonces\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1750687957;a:1:{s:33:\"wc_admin_process_orders_milestone\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1750687967;a:1:{s:29:\"wc_admin_unsnooze_admin_notes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1750688232;a:1:{s:26:\"rediscache_discard_metrics\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1750693974;a:2:{s:24:\"woocommerce_cleanup_logs\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:31:\"woocommerce_cleanup_rate_limits\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1750704774;a:1:{s:28:\"woocommerce_cleanup_sessions\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1750709439;a:1:{s:30:\"wp_site_health_scheduled_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1750709450;a:3:{s:19:\"wp_scheduled_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:25:\"delete_expired_transients\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:21:\"wp_update_user_counts\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1750709453;a:1:{s:30:\"wp_scheduled_auto_draft_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1750713039;a:1:{s:16:\"wp_version_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1750714839;a:1:{s:17:\"wp_update_plugins\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1750716000;a:1:{s:27:\"woocommerce_scheduled_sales\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1750716639;a:1:{s:16:\"wp_update_themes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1750727832;a:1:{s:45:\"woocommerce_marketplace_cron_fetch_promotions\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1750745326;a:1:{s:32:\"recovery_mode_clean_expired_keys\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1750769584;a:2:{s:33:\"woocommerce_cleanup_personal_data\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:30:\"woocommerce_tracker_send_event\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1750770755;a:1:{s:14:\"wc_admin_daily\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1750770756;a:1:{s:20:\"jetpack_v2_heartbeat\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1751227905;a:1:{s:30:\"wp_delete_temp_updater_backups\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1751979234;a:1:{s:25:\"woocommerce_geoip_updater\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:11:\"fifteendays\";s:4:\"args\";a:0:{}s:8:\"interval\";i:1296000;}}}s:7:\"version\";i:2;}','on'), +(2,'siteurl','https://haikuatelier.fr.ddev.site/wp','on'), +(3,'home','https://haikuatelier.fr.ddev.site/wp','on'), +(4,'blogname','Haiku Atelier','on'), +(5,'blogdescription','Handcrafted, poetic & minimalist silver jewelry.','on'), +(6,'users_can_register','0','on'), +(7,'admin_email','haiku.atelier@gmail.com','on'), +(8,'start_of_week','1','on'), +(9,'use_balanceTags','0','on'), +(10,'use_smilies','1','on'), +(11,'require_name_email','1','on'), +(12,'comments_notify','1','on'), +(13,'posts_per_rss','10','on'), +(14,'rss_use_excerpt','1','on'), +(15,'mailserver_url','mail.example.com','on'), +(16,'mailserver_login','login@example.com','on'), +(17,'mailserver_pass','password','on'), +(18,'mailserver_port','110','on'), +(19,'default_category','1','on'), +(20,'default_comment_status','open','on'), +(21,'default_ping_status','open','on'), +(22,'default_pingback_flag','1','on'), +(23,'posts_per_page','10','on'), +(24,'date_format','Y-m-d','on'), +(25,'time_format','H:i','on'), +(26,'links_updated_date_format','d F Y G\\hi','on'), +(27,'comment_moderation','0','on'), +(28,'moderation_notify','1','on'), +(29,'permalink_structure','/%postname%/','on'), +(31,'hack_file','0','on'), +(32,'blog_charset','UTF-8','on'), +(33,'moderation_keys','','off'), +(34,'active_plugins','a:6:{i:0;s:17:\"falcon/falcon.php\";i:1;s:59:\"force-regenerate-thumbnails/force-regenerate-thumbnails.php\";i:2;s:27:\"redis-cache/redis-cache.php\";i:3;s:37:\"wc-multishipping/wc-multishipping.php\";i:5;s:27:\"woocommerce/woocommerce.php\";i:7;s:29:\"wp-mail-smtp/wp_mail_smtp.php\";}','on'), +(35,'category_base','/category','on'), +(36,'ping_sites','http://rpc.pingomatic.com/','on'), +(37,'comment_max_links','2','on'), +(38,'gmt_offset','','on'), +(39,'default_email_category','1','on'), +(40,'recently_edited','','off'), +(41,'template','haiku-atelier-2024','on'), +(42,'stylesheet','haiku-atelier-2024','on'), +(43,'comment_registration','0','on'), +(44,'html_type','text/html','on'), +(45,'use_trackback','0','on'), +(46,'default_role','customer','on'), +(47,'db_version','58975','on'), +(48,'uploads_use_yearmonth_folders','1','on'), +(49,'upload_path','','on'), +(50,'blog_public','1','on'), +(51,'default_link_category','2','on'), +(52,'show_on_front','page','on'), +(53,'tag_base','/tag','on'), +(54,'show_avatars','1','on'), +(55,'avatar_rating','G','on'), +(56,'upload_url_path','','on'), +(57,'thumbnail_size_w','300','on'), +(58,'thumbnail_size_h','300','on'), +(59,'thumbnail_crop','1','on'), +(60,'medium_size_w','9999','on'), +(61,'medium_size_h','9999','on'), +(62,'avatar_default','mystery','on'), +(63,'large_size_w','9999','on'), +(64,'large_size_h','9999','on'), +(65,'image_default_link_type','','on'), +(66,'image_default_size','','on'), +(67,'image_default_align','','on'), +(68,'close_comments_for_old_posts','0','on'), +(69,'close_comments_days_old','14','on'), +(70,'thread_comments','1','on'), +(71,'thread_comments_depth','5','on'), +(72,'page_comments','0','on'), +(73,'comments_per_page','50','on'), +(74,'default_comments_page','newest','on'), +(75,'comment_order','asc','on'), +(76,'sticky_posts','a:0:{}','on'), +(77,'widget_categories','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','auto'), +(78,'widget_text','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','auto'), +(79,'widget_rss','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','auto'), +(80,'uninstall_plugins','a:0:{}','off'), +(81,'timezone_string','Europe/Brussels','on'), +(82,'page_for_posts','0','on'), +(83,'page_on_front','13','on'), +(84,'default_post_format','0','on'), +(85,'link_manager_enabled','0','on'), +(86,'finished_splitting_shared_terms','1','on'), +(87,'site_icon','0','on'), +(88,'medium_large_size_w','768','on'), +(89,'medium_large_size_h','0','on'), +(90,'wp_page_for_privacy_policy','3','on'), +(91,'show_comments_cookies_opt_in','1','on'), +(92,'admin_email_lifespan','1738354239','on'), +(93,'disallowed_keys','','off'), +(94,'comment_previously_approved','1','on'), +(95,'auto_plugin_theme_update_emails','a:0:{}','off'), +(96,'auto_update_core_dev','enabled','on'), +(97,'auto_update_core_minor','enabled','on'), +(98,'auto_update_core_major','enabled','on'), +(99,'wp_force_deactivated_plugins','a:0:{}','off'), +(100,'wp_attachment_pages_enabled','0','on'), +(101,'initial_db_version','57155','on'), +(102,'haikuwp_user_roles','a:7:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:115:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:13:\"promote_users\";b:1;s:18:\"edit_theme_options\";b:1;s:13:\"delete_themes\";b:1;s:6:\"export\";b:1;s:18:\"manage_woocommerce\";b:1;s:24:\"view_woocommerce_reports\";b:1;s:12:\"edit_product\";b:1;s:12:\"read_product\";b:1;s:14:\"delete_product\";b:1;s:13:\"edit_products\";b:1;s:20:\"edit_others_products\";b:1;s:16:\"publish_products\";b:1;s:21:\"read_private_products\";b:1;s:15:\"delete_products\";b:1;s:23:\"delete_private_products\";b:1;s:25:\"delete_published_products\";b:1;s:22:\"delete_others_products\";b:1;s:21:\"edit_private_products\";b:1;s:23:\"edit_published_products\";b:1;s:20:\"manage_product_terms\";b:1;s:18:\"edit_product_terms\";b:1;s:20:\"delete_product_terms\";b:1;s:20:\"assign_product_terms\";b:1;s:15:\"edit_shop_order\";b:1;s:15:\"read_shop_order\";b:1;s:17:\"delete_shop_order\";b:1;s:16:\"edit_shop_orders\";b:1;s:23:\"edit_others_shop_orders\";b:1;s:19:\"publish_shop_orders\";b:1;s:24:\"read_private_shop_orders\";b:1;s:18:\"delete_shop_orders\";b:1;s:26:\"delete_private_shop_orders\";b:1;s:28:\"delete_published_shop_orders\";b:1;s:25:\"delete_others_shop_orders\";b:1;s:24:\"edit_private_shop_orders\";b:1;s:26:\"edit_published_shop_orders\";b:1;s:23:\"manage_shop_order_terms\";b:1;s:21:\"edit_shop_order_terms\";b:1;s:23:\"delete_shop_order_terms\";b:1;s:23:\"assign_shop_order_terms\";b:1;s:16:\"edit_shop_coupon\";b:1;s:16:\"read_shop_coupon\";b:1;s:18:\"delete_shop_coupon\";b:1;s:17:\"edit_shop_coupons\";b:1;s:24:\"edit_others_shop_coupons\";b:1;s:20:\"publish_shop_coupons\";b:1;s:25:\"read_private_shop_coupons\";b:1;s:19:\"delete_shop_coupons\";b:1;s:27:\"delete_private_shop_coupons\";b:1;s:29:\"delete_published_shop_coupons\";b:1;s:26:\"delete_others_shop_coupons\";b:1;s:25:\"edit_private_shop_coupons\";b:1;s:27:\"edit_published_shop_coupons\";b:1;s:24:\"manage_shop_coupon_terms\";b:1;s:22:\"edit_shop_coupon_terms\";b:1;s:24:\"delete_shop_coupon_terms\";b:1;s:24:\"assign_shop_coupon_terms\";b:1;s:16:\"create_customers\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:34:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:10:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}s:8:\"customer\";a:2:{s:4:\"name\";s:8:\"Customer\";s:12:\"capabilities\";a:1:{s:4:\"read\";b:1;}}s:12:\"shop_manager\";a:2:{s:4:\"name\";s:12:\"Shop manager\";s:12:\"capabilities\";a:93:{s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:4:\"read\";b:1;s:18:\"read_private_pages\";b:1;s:18:\"read_private_posts\";b:1;s:10:\"edit_posts\";b:1;s:10:\"edit_pages\";b:1;s:20:\"edit_published_posts\";b:1;s:20:\"edit_published_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"edit_private_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:17:\"edit_others_pages\";b:1;s:13:\"publish_posts\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_posts\";b:1;s:12:\"delete_pages\";b:1;s:20:\"delete_private_pages\";b:1;s:20:\"delete_private_posts\";b:1;s:22:\"delete_published_pages\";b:1;s:22:\"delete_published_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:19:\"delete_others_pages\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:17:\"moderate_comments\";b:1;s:12:\"upload_files\";b:1;s:6:\"export\";b:1;s:6:\"import\";b:1;s:10:\"list_users\";b:1;s:18:\"edit_theme_options\";b:1;s:18:\"manage_woocommerce\";b:1;s:24:\"view_woocommerce_reports\";b:1;s:12:\"edit_product\";b:1;s:12:\"read_product\";b:1;s:14:\"delete_product\";b:1;s:13:\"edit_products\";b:1;s:20:\"edit_others_products\";b:1;s:16:\"publish_products\";b:1;s:21:\"read_private_products\";b:1;s:15:\"delete_products\";b:1;s:23:\"delete_private_products\";b:1;s:25:\"delete_published_products\";b:1;s:22:\"delete_others_products\";b:1;s:21:\"edit_private_products\";b:1;s:23:\"edit_published_products\";b:1;s:20:\"manage_product_terms\";b:1;s:18:\"edit_product_terms\";b:1;s:20:\"delete_product_terms\";b:1;s:20:\"assign_product_terms\";b:1;s:15:\"edit_shop_order\";b:1;s:15:\"read_shop_order\";b:1;s:17:\"delete_shop_order\";b:1;s:16:\"edit_shop_orders\";b:1;s:23:\"edit_others_shop_orders\";b:1;s:19:\"publish_shop_orders\";b:1;s:24:\"read_private_shop_orders\";b:1;s:18:\"delete_shop_orders\";b:1;s:26:\"delete_private_shop_orders\";b:1;s:28:\"delete_published_shop_orders\";b:1;s:25:\"delete_others_shop_orders\";b:1;s:24:\"edit_private_shop_orders\";b:1;s:26:\"edit_published_shop_orders\";b:1;s:23:\"manage_shop_order_terms\";b:1;s:21:\"edit_shop_order_terms\";b:1;s:23:\"delete_shop_order_terms\";b:1;s:23:\"assign_shop_order_terms\";b:1;s:16:\"edit_shop_coupon\";b:1;s:16:\"read_shop_coupon\";b:1;s:18:\"delete_shop_coupon\";b:1;s:17:\"edit_shop_coupons\";b:1;s:24:\"edit_others_shop_coupons\";b:1;s:20:\"publish_shop_coupons\";b:1;s:25:\"read_private_shop_coupons\";b:1;s:19:\"delete_shop_coupons\";b:1;s:27:\"delete_private_shop_coupons\";b:1;s:29:\"delete_published_shop_coupons\";b:1;s:26:\"delete_others_shop_coupons\";b:1;s:25:\"edit_private_shop_coupons\";b:1;s:27:\"edit_published_shop_coupons\";b:1;s:24:\"manage_shop_coupon_terms\";b:1;s:22:\"edit_shop_coupon_terms\";b:1;s:24:\"delete_shop_coupon_terms\";b:1;s:24:\"assign_shop_coupon_terms\";b:1;s:16:\"create_customers\";b:1;}}}','auto'), +(103,'fresh_site','0','off'), +(104,'WPLANG','en_GB','auto'), +(105,'user_count','2','off'), +(106,'widget_block','a:6:{i:2;a:1:{s:7:\"content\";s:19:\"\";}i:3;a:1:{s:7:\"content\";s:159:\"

Articles récents

\";}i:4;a:1:{s:7:\"content\";s:233:\"

Commentaires récents

\";}i:5;a:1:{s:7:\"content\";s:146:\"

Archives

\";}i:6;a:1:{s:7:\"content\";s:151:\"

Catégories

\";}s:12:\"_multiwidget\";i:1;}','auto'), +(107,'sidebars_widgets','a:2:{s:19:\"wp_inactive_widgets\";a:5:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";i:3;s:7:\"block-5\";i:4;s:7:\"block-6\";}s:13:\"array_version\";i:3;}','auto'), +(108,'bedrock_autoloader','a:2:{s:7:\"plugins\";a:1:{s:55:\"bedrock-disallow-indexing/bedrock-disallow-indexing.php\";a:15:{s:4:\"Name\";s:17:\"Disallow Indexing\";s:9:\"PluginURI\";s:25:\"https://roots.io/bedrock/\";s:7:\"Version\";s:5:\"2.0.0\";s:11:\"Description\";s:62:\"Disallow indexing of your site on non-production environments.\";s:6:\"Author\";s:5:\"Roots\";s:9:\"AuthorURI\";s:17:\"https://roots.io/\";s:10:\"TextDomain\";s:5:\"roots\";s:10:\"DomainPath\";s:0:\"\";s:7:\"Network\";b:0;s:10:\"RequiresWP\";s:0:\"\";s:11:\"RequiresPHP\";s:0:\"\";s:9:\"UpdateURI\";s:0:\"\";s:15:\"RequiresPlugins\";s:0:\"\";s:5:\"Title\";s:17:\"Disallow Indexing\";s:10:\"AuthorName\";s:5:\"Roots\";}}s:5:\"count\";i:1;}','off'), +(109,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','auto'), +(110,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','auto'), +(111,'widget_archives','a:1:{s:12:\"_multiwidget\";i:1;}','auto'), +(112,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','auto'), +(113,'widget_media_image','a:1:{s:12:\"_multiwidget\";i:1;}','auto'), +(114,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','auto'), +(115,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','auto'), +(116,'widget_meta','a:1:{s:12:\"_multiwidget\";i:1;}','auto'), +(117,'widget_search','a:1:{s:12:\"_multiwidget\";i:1;}','auto'), +(118,'widget_recent-posts','a:1:{s:12:\"_multiwidget\";i:1;}','auto'), +(119,'widget_recent-comments','a:1:{s:12:\"_multiwidget\";i:1;}','auto'), +(120,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','auto'), +(121,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','auto'), +(122,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','auto'), +(123,'_transient_wp_core_block_css_files','a:2:{s:7:\"version\";s:5:\"6.6.1\";s:5:\"files\";a:496:{i:0;s:23:\"archives/editor-rtl.css\";i:1;s:27:\"archives/editor-rtl.min.css\";i:2;s:19:\"archives/editor.css\";i:3;s:23:\"archives/editor.min.css\";i:4;s:22:\"archives/style-rtl.css\";i:5;s:26:\"archives/style-rtl.min.css\";i:6;s:18:\"archives/style.css\";i:7;s:22:\"archives/style.min.css\";i:8;s:20:\"audio/editor-rtl.css\";i:9;s:24:\"audio/editor-rtl.min.css\";i:10;s:16:\"audio/editor.css\";i:11;s:20:\"audio/editor.min.css\";i:12;s:19:\"audio/style-rtl.css\";i:13;s:23:\"audio/style-rtl.min.css\";i:14;s:15:\"audio/style.css\";i:15;s:19:\"audio/style.min.css\";i:16;s:19:\"audio/theme-rtl.css\";i:17;s:23:\"audio/theme-rtl.min.css\";i:18;s:15:\"audio/theme.css\";i:19;s:19:\"audio/theme.min.css\";i:20;s:21:\"avatar/editor-rtl.css\";i:21;s:25:\"avatar/editor-rtl.min.css\";i:22;s:17:\"avatar/editor.css\";i:23;s:21:\"avatar/editor.min.css\";i:24;s:20:\"avatar/style-rtl.css\";i:25;s:24:\"avatar/style-rtl.min.css\";i:26;s:16:\"avatar/style.css\";i:27;s:20:\"avatar/style.min.css\";i:28;s:21:\"button/editor-rtl.css\";i:29;s:25:\"button/editor-rtl.min.css\";i:30;s:17:\"button/editor.css\";i:31;s:21:\"button/editor.min.css\";i:32;s:20:\"button/style-rtl.css\";i:33;s:24:\"button/style-rtl.min.css\";i:34;s:16:\"button/style.css\";i:35;s:20:\"button/style.min.css\";i:36;s:22:\"buttons/editor-rtl.css\";i:37;s:26:\"buttons/editor-rtl.min.css\";i:38;s:18:\"buttons/editor.css\";i:39;s:22:\"buttons/editor.min.css\";i:40;s:21:\"buttons/style-rtl.css\";i:41;s:25:\"buttons/style-rtl.min.css\";i:42;s:17:\"buttons/style.css\";i:43;s:21:\"buttons/style.min.css\";i:44;s:22:\"calendar/style-rtl.css\";i:45;s:26:\"calendar/style-rtl.min.css\";i:46;s:18:\"calendar/style.css\";i:47;s:22:\"calendar/style.min.css\";i:48;s:25:\"categories/editor-rtl.css\";i:49;s:29:\"categories/editor-rtl.min.css\";i:50;s:21:\"categories/editor.css\";i:51;s:25:\"categories/editor.min.css\";i:52;s:24:\"categories/style-rtl.css\";i:53;s:28:\"categories/style-rtl.min.css\";i:54;s:20:\"categories/style.css\";i:55;s:24:\"categories/style.min.css\";i:56;s:19:\"code/editor-rtl.css\";i:57;s:23:\"code/editor-rtl.min.css\";i:58;s:15:\"code/editor.css\";i:59;s:19:\"code/editor.min.css\";i:60;s:18:\"code/style-rtl.css\";i:61;s:22:\"code/style-rtl.min.css\";i:62;s:14:\"code/style.css\";i:63;s:18:\"code/style.min.css\";i:64;s:18:\"code/theme-rtl.css\";i:65;s:22:\"code/theme-rtl.min.css\";i:66;s:14:\"code/theme.css\";i:67;s:18:\"code/theme.min.css\";i:68;s:22:\"columns/editor-rtl.css\";i:69;s:26:\"columns/editor-rtl.min.css\";i:70;s:18:\"columns/editor.css\";i:71;s:22:\"columns/editor.min.css\";i:72;s:21:\"columns/style-rtl.css\";i:73;s:25:\"columns/style-rtl.min.css\";i:74;s:17:\"columns/style.css\";i:75;s:21:\"columns/style.min.css\";i:76;s:29:\"comment-content/style-rtl.css\";i:77;s:33:\"comment-content/style-rtl.min.css\";i:78;s:25:\"comment-content/style.css\";i:79;s:29:\"comment-content/style.min.css\";i:80;s:30:\"comment-template/style-rtl.css\";i:81;s:34:\"comment-template/style-rtl.min.css\";i:82;s:26:\"comment-template/style.css\";i:83;s:30:\"comment-template/style.min.css\";i:84;s:42:\"comments-pagination-numbers/editor-rtl.css\";i:85;s:46:\"comments-pagination-numbers/editor-rtl.min.css\";i:86;s:38:\"comments-pagination-numbers/editor.css\";i:87;s:42:\"comments-pagination-numbers/editor.min.css\";i:88;s:34:\"comments-pagination/editor-rtl.css\";i:89;s:38:\"comments-pagination/editor-rtl.min.css\";i:90;s:30:\"comments-pagination/editor.css\";i:91;s:34:\"comments-pagination/editor.min.css\";i:92;s:33:\"comments-pagination/style-rtl.css\";i:93;s:37:\"comments-pagination/style-rtl.min.css\";i:94;s:29:\"comments-pagination/style.css\";i:95;s:33:\"comments-pagination/style.min.css\";i:96;s:29:\"comments-title/editor-rtl.css\";i:97;s:33:\"comments-title/editor-rtl.min.css\";i:98;s:25:\"comments-title/editor.css\";i:99;s:29:\"comments-title/editor.min.css\";i:100;s:23:\"comments/editor-rtl.css\";i:101;s:27:\"comments/editor-rtl.min.css\";i:102;s:19:\"comments/editor.css\";i:103;s:23:\"comments/editor.min.css\";i:104;s:22:\"comments/style-rtl.css\";i:105;s:26:\"comments/style-rtl.min.css\";i:106;s:18:\"comments/style.css\";i:107;s:22:\"comments/style.min.css\";i:108;s:20:\"cover/editor-rtl.css\";i:109;s:24:\"cover/editor-rtl.min.css\";i:110;s:16:\"cover/editor.css\";i:111;s:20:\"cover/editor.min.css\";i:112;s:19:\"cover/style-rtl.css\";i:113;s:23:\"cover/style-rtl.min.css\";i:114;s:15:\"cover/style.css\";i:115;s:19:\"cover/style.min.css\";i:116;s:22:\"details/editor-rtl.css\";i:117;s:26:\"details/editor-rtl.min.css\";i:118;s:18:\"details/editor.css\";i:119;s:22:\"details/editor.min.css\";i:120;s:21:\"details/style-rtl.css\";i:121;s:25:\"details/style-rtl.min.css\";i:122;s:17:\"details/style.css\";i:123;s:21:\"details/style.min.css\";i:124;s:20:\"embed/editor-rtl.css\";i:125;s:24:\"embed/editor-rtl.min.css\";i:126;s:16:\"embed/editor.css\";i:127;s:20:\"embed/editor.min.css\";i:128;s:19:\"embed/style-rtl.css\";i:129;s:23:\"embed/style-rtl.min.css\";i:130;s:15:\"embed/style.css\";i:131;s:19:\"embed/style.min.css\";i:132;s:19:\"embed/theme-rtl.css\";i:133;s:23:\"embed/theme-rtl.min.css\";i:134;s:15:\"embed/theme.css\";i:135;s:19:\"embed/theme.min.css\";i:136;s:19:\"file/editor-rtl.css\";i:137;s:23:\"file/editor-rtl.min.css\";i:138;s:15:\"file/editor.css\";i:139;s:19:\"file/editor.min.css\";i:140;s:18:\"file/style-rtl.css\";i:141;s:22:\"file/style-rtl.min.css\";i:142;s:14:\"file/style.css\";i:143;s:18:\"file/style.min.css\";i:144;s:23:\"footnotes/style-rtl.css\";i:145;s:27:\"footnotes/style-rtl.min.css\";i:146;s:19:\"footnotes/style.css\";i:147;s:23:\"footnotes/style.min.css\";i:148;s:23:\"freeform/editor-rtl.css\";i:149;s:27:\"freeform/editor-rtl.min.css\";i:150;s:19:\"freeform/editor.css\";i:151;s:23:\"freeform/editor.min.css\";i:152;s:22:\"gallery/editor-rtl.css\";i:153;s:26:\"gallery/editor-rtl.min.css\";i:154;s:18:\"gallery/editor.css\";i:155;s:22:\"gallery/editor.min.css\";i:156;s:21:\"gallery/style-rtl.css\";i:157;s:25:\"gallery/style-rtl.min.css\";i:158;s:17:\"gallery/style.css\";i:159;s:21:\"gallery/style.min.css\";i:160;s:21:\"gallery/theme-rtl.css\";i:161;s:25:\"gallery/theme-rtl.min.css\";i:162;s:17:\"gallery/theme.css\";i:163;s:21:\"gallery/theme.min.css\";i:164;s:20:\"group/editor-rtl.css\";i:165;s:24:\"group/editor-rtl.min.css\";i:166;s:16:\"group/editor.css\";i:167;s:20:\"group/editor.min.css\";i:168;s:19:\"group/style-rtl.css\";i:169;s:23:\"group/style-rtl.min.css\";i:170;s:15:\"group/style.css\";i:171;s:19:\"group/style.min.css\";i:172;s:19:\"group/theme-rtl.css\";i:173;s:23:\"group/theme-rtl.min.css\";i:174;s:15:\"group/theme.css\";i:175;s:19:\"group/theme.min.css\";i:176;s:21:\"heading/style-rtl.css\";i:177;s:25:\"heading/style-rtl.min.css\";i:178;s:17:\"heading/style.css\";i:179;s:21:\"heading/style.min.css\";i:180;s:19:\"html/editor-rtl.css\";i:181;s:23:\"html/editor-rtl.min.css\";i:182;s:15:\"html/editor.css\";i:183;s:19:\"html/editor.min.css\";i:184;s:20:\"image/editor-rtl.css\";i:185;s:24:\"image/editor-rtl.min.css\";i:186;s:16:\"image/editor.css\";i:187;s:20:\"image/editor.min.css\";i:188;s:19:\"image/style-rtl.css\";i:189;s:23:\"image/style-rtl.min.css\";i:190;s:15:\"image/style.css\";i:191;s:19:\"image/style.min.css\";i:192;s:19:\"image/theme-rtl.css\";i:193;s:23:\"image/theme-rtl.min.css\";i:194;s:15:\"image/theme.css\";i:195;s:19:\"image/theme.min.css\";i:196;s:29:\"latest-comments/style-rtl.css\";i:197;s:33:\"latest-comments/style-rtl.min.css\";i:198;s:25:\"latest-comments/style.css\";i:199;s:29:\"latest-comments/style.min.css\";i:200;s:27:\"latest-posts/editor-rtl.css\";i:201;s:31:\"latest-posts/editor-rtl.min.css\";i:202;s:23:\"latest-posts/editor.css\";i:203;s:27:\"latest-posts/editor.min.css\";i:204;s:26:\"latest-posts/style-rtl.css\";i:205;s:30:\"latest-posts/style-rtl.min.css\";i:206;s:22:\"latest-posts/style.css\";i:207;s:26:\"latest-posts/style.min.css\";i:208;s:18:\"list/style-rtl.css\";i:209;s:22:\"list/style-rtl.min.css\";i:210;s:14:\"list/style.css\";i:211;s:18:\"list/style.min.css\";i:212;s:25:\"media-text/editor-rtl.css\";i:213;s:29:\"media-text/editor-rtl.min.css\";i:214;s:21:\"media-text/editor.css\";i:215;s:25:\"media-text/editor.min.css\";i:216;s:24:\"media-text/style-rtl.css\";i:217;s:28:\"media-text/style-rtl.min.css\";i:218;s:20:\"media-text/style.css\";i:219;s:24:\"media-text/style.min.css\";i:220;s:19:\"more/editor-rtl.css\";i:221;s:23:\"more/editor-rtl.min.css\";i:222;s:15:\"more/editor.css\";i:223;s:19:\"more/editor.min.css\";i:224;s:30:\"navigation-link/editor-rtl.css\";i:225;s:34:\"navigation-link/editor-rtl.min.css\";i:226;s:26:\"navigation-link/editor.css\";i:227;s:30:\"navigation-link/editor.min.css\";i:228;s:29:\"navigation-link/style-rtl.css\";i:229;s:33:\"navigation-link/style-rtl.min.css\";i:230;s:25:\"navigation-link/style.css\";i:231;s:29:\"navigation-link/style.min.css\";i:232;s:33:\"navigation-submenu/editor-rtl.css\";i:233;s:37:\"navigation-submenu/editor-rtl.min.css\";i:234;s:29:\"navigation-submenu/editor.css\";i:235;s:33:\"navigation-submenu/editor.min.css\";i:236;s:25:\"navigation/editor-rtl.css\";i:237;s:29:\"navigation/editor-rtl.min.css\";i:238;s:21:\"navigation/editor.css\";i:239;s:25:\"navigation/editor.min.css\";i:240;s:24:\"navigation/style-rtl.css\";i:241;s:28:\"navigation/style-rtl.min.css\";i:242;s:20:\"navigation/style.css\";i:243;s:24:\"navigation/style.min.css\";i:244;s:23:\"nextpage/editor-rtl.css\";i:245;s:27:\"nextpage/editor-rtl.min.css\";i:246;s:19:\"nextpage/editor.css\";i:247;s:23:\"nextpage/editor.min.css\";i:248;s:24:\"page-list/editor-rtl.css\";i:249;s:28:\"page-list/editor-rtl.min.css\";i:250;s:20:\"page-list/editor.css\";i:251;s:24:\"page-list/editor.min.css\";i:252;s:23:\"page-list/style-rtl.css\";i:253;s:27:\"page-list/style-rtl.min.css\";i:254;s:19:\"page-list/style.css\";i:255;s:23:\"page-list/style.min.css\";i:256;s:24:\"paragraph/editor-rtl.css\";i:257;s:28:\"paragraph/editor-rtl.min.css\";i:258;s:20:\"paragraph/editor.css\";i:259;s:24:\"paragraph/editor.min.css\";i:260;s:23:\"paragraph/style-rtl.css\";i:261;s:27:\"paragraph/style-rtl.min.css\";i:262;s:19:\"paragraph/style.css\";i:263;s:23:\"paragraph/style.min.css\";i:264;s:25:\"post-author/style-rtl.css\";i:265;s:29:\"post-author/style-rtl.min.css\";i:266;s:21:\"post-author/style.css\";i:267;s:25:\"post-author/style.min.css\";i:268;s:33:\"post-comments-form/editor-rtl.css\";i:269;s:37:\"post-comments-form/editor-rtl.min.css\";i:270;s:29:\"post-comments-form/editor.css\";i:271;s:33:\"post-comments-form/editor.min.css\";i:272;s:32:\"post-comments-form/style-rtl.css\";i:273;s:36:\"post-comments-form/style-rtl.min.css\";i:274;s:28:\"post-comments-form/style.css\";i:275;s:32:\"post-comments-form/style.min.css\";i:276;s:27:\"post-content/editor-rtl.css\";i:277;s:31:\"post-content/editor-rtl.min.css\";i:278;s:23:\"post-content/editor.css\";i:279;s:27:\"post-content/editor.min.css\";i:280;s:23:\"post-date/style-rtl.css\";i:281;s:27:\"post-date/style-rtl.min.css\";i:282;s:19:\"post-date/style.css\";i:283;s:23:\"post-date/style.min.css\";i:284;s:27:\"post-excerpt/editor-rtl.css\";i:285;s:31:\"post-excerpt/editor-rtl.min.css\";i:286;s:23:\"post-excerpt/editor.css\";i:287;s:27:\"post-excerpt/editor.min.css\";i:288;s:26:\"post-excerpt/style-rtl.css\";i:289;s:30:\"post-excerpt/style-rtl.min.css\";i:290;s:22:\"post-excerpt/style.css\";i:291;s:26:\"post-excerpt/style.min.css\";i:292;s:34:\"post-featured-image/editor-rtl.css\";i:293;s:38:\"post-featured-image/editor-rtl.min.css\";i:294;s:30:\"post-featured-image/editor.css\";i:295;s:34:\"post-featured-image/editor.min.css\";i:296;s:33:\"post-featured-image/style-rtl.css\";i:297;s:37:\"post-featured-image/style-rtl.min.css\";i:298;s:29:\"post-featured-image/style.css\";i:299;s:33:\"post-featured-image/style.min.css\";i:300;s:34:\"post-navigation-link/style-rtl.css\";i:301;s:38:\"post-navigation-link/style-rtl.min.css\";i:302;s:30:\"post-navigation-link/style.css\";i:303;s:34:\"post-navigation-link/style.min.css\";i:304;s:28:\"post-template/editor-rtl.css\";i:305;s:32:\"post-template/editor-rtl.min.css\";i:306;s:24:\"post-template/editor.css\";i:307;s:28:\"post-template/editor.min.css\";i:308;s:27:\"post-template/style-rtl.css\";i:309;s:31:\"post-template/style-rtl.min.css\";i:310;s:23:\"post-template/style.css\";i:311;s:27:\"post-template/style.min.css\";i:312;s:24:\"post-terms/style-rtl.css\";i:313;s:28:\"post-terms/style-rtl.min.css\";i:314;s:20:\"post-terms/style.css\";i:315;s:24:\"post-terms/style.min.css\";i:316;s:24:\"post-title/style-rtl.css\";i:317;s:28:\"post-title/style-rtl.min.css\";i:318;s:20:\"post-title/style.css\";i:319;s:24:\"post-title/style.min.css\";i:320;s:26:\"preformatted/style-rtl.css\";i:321;s:30:\"preformatted/style-rtl.min.css\";i:322;s:22:\"preformatted/style.css\";i:323;s:26:\"preformatted/style.min.css\";i:324;s:24:\"pullquote/editor-rtl.css\";i:325;s:28:\"pullquote/editor-rtl.min.css\";i:326;s:20:\"pullquote/editor.css\";i:327;s:24:\"pullquote/editor.min.css\";i:328;s:23:\"pullquote/style-rtl.css\";i:329;s:27:\"pullquote/style-rtl.min.css\";i:330;s:19:\"pullquote/style.css\";i:331;s:23:\"pullquote/style.min.css\";i:332;s:23:\"pullquote/theme-rtl.css\";i:333;s:27:\"pullquote/theme-rtl.min.css\";i:334;s:19:\"pullquote/theme.css\";i:335;s:23:\"pullquote/theme.min.css\";i:336;s:39:\"query-pagination-numbers/editor-rtl.css\";i:337;s:43:\"query-pagination-numbers/editor-rtl.min.css\";i:338;s:35:\"query-pagination-numbers/editor.css\";i:339;s:39:\"query-pagination-numbers/editor.min.css\";i:340;s:31:\"query-pagination/editor-rtl.css\";i:341;s:35:\"query-pagination/editor-rtl.min.css\";i:342;s:27:\"query-pagination/editor.css\";i:343;s:31:\"query-pagination/editor.min.css\";i:344;s:30:\"query-pagination/style-rtl.css\";i:345;s:34:\"query-pagination/style-rtl.min.css\";i:346;s:26:\"query-pagination/style.css\";i:347;s:30:\"query-pagination/style.min.css\";i:348;s:25:\"query-title/style-rtl.css\";i:349;s:29:\"query-title/style-rtl.min.css\";i:350;s:21:\"query-title/style.css\";i:351;s:25:\"query-title/style.min.css\";i:352;s:20:\"query/editor-rtl.css\";i:353;s:24:\"query/editor-rtl.min.css\";i:354;s:16:\"query/editor.css\";i:355;s:20:\"query/editor.min.css\";i:356;s:19:\"quote/style-rtl.css\";i:357;s:23:\"quote/style-rtl.min.css\";i:358;s:15:\"quote/style.css\";i:359;s:19:\"quote/style.min.css\";i:360;s:19:\"quote/theme-rtl.css\";i:361;s:23:\"quote/theme-rtl.min.css\";i:362;s:15:\"quote/theme.css\";i:363;s:19:\"quote/theme.min.css\";i:364;s:23:\"read-more/style-rtl.css\";i:365;s:27:\"read-more/style-rtl.min.css\";i:366;s:19:\"read-more/style.css\";i:367;s:23:\"read-more/style.min.css\";i:368;s:18:\"rss/editor-rtl.css\";i:369;s:22:\"rss/editor-rtl.min.css\";i:370;s:14:\"rss/editor.css\";i:371;s:18:\"rss/editor.min.css\";i:372;s:17:\"rss/style-rtl.css\";i:373;s:21:\"rss/style-rtl.min.css\";i:374;s:13:\"rss/style.css\";i:375;s:17:\"rss/style.min.css\";i:376;s:21:\"search/editor-rtl.css\";i:377;s:25:\"search/editor-rtl.min.css\";i:378;s:17:\"search/editor.css\";i:379;s:21:\"search/editor.min.css\";i:380;s:20:\"search/style-rtl.css\";i:381;s:24:\"search/style-rtl.min.css\";i:382;s:16:\"search/style.css\";i:383;s:20:\"search/style.min.css\";i:384;s:20:\"search/theme-rtl.css\";i:385;s:24:\"search/theme-rtl.min.css\";i:386;s:16:\"search/theme.css\";i:387;s:20:\"search/theme.min.css\";i:388;s:24:\"separator/editor-rtl.css\";i:389;s:28:\"separator/editor-rtl.min.css\";i:390;s:20:\"separator/editor.css\";i:391;s:24:\"separator/editor.min.css\";i:392;s:23:\"separator/style-rtl.css\";i:393;s:27:\"separator/style-rtl.min.css\";i:394;s:19:\"separator/style.css\";i:395;s:23:\"separator/style.min.css\";i:396;s:23:\"separator/theme-rtl.css\";i:397;s:27:\"separator/theme-rtl.min.css\";i:398;s:19:\"separator/theme.css\";i:399;s:23:\"separator/theme.min.css\";i:400;s:24:\"shortcode/editor-rtl.css\";i:401;s:28:\"shortcode/editor-rtl.min.css\";i:402;s:20:\"shortcode/editor.css\";i:403;s:24:\"shortcode/editor.min.css\";i:404;s:24:\"site-logo/editor-rtl.css\";i:405;s:28:\"site-logo/editor-rtl.min.css\";i:406;s:20:\"site-logo/editor.css\";i:407;s:24:\"site-logo/editor.min.css\";i:408;s:23:\"site-logo/style-rtl.css\";i:409;s:27:\"site-logo/style-rtl.min.css\";i:410;s:19:\"site-logo/style.css\";i:411;s:23:\"site-logo/style.min.css\";i:412;s:27:\"site-tagline/editor-rtl.css\";i:413;s:31:\"site-tagline/editor-rtl.min.css\";i:414;s:23:\"site-tagline/editor.css\";i:415;s:27:\"site-tagline/editor.min.css\";i:416;s:25:\"site-title/editor-rtl.css\";i:417;s:29:\"site-title/editor-rtl.min.css\";i:418;s:21:\"site-title/editor.css\";i:419;s:25:\"site-title/editor.min.css\";i:420;s:24:\"site-title/style-rtl.css\";i:421;s:28:\"site-title/style-rtl.min.css\";i:422;s:20:\"site-title/style.css\";i:423;s:24:\"site-title/style.min.css\";i:424;s:26:\"social-link/editor-rtl.css\";i:425;s:30:\"social-link/editor-rtl.min.css\";i:426;s:22:\"social-link/editor.css\";i:427;s:26:\"social-link/editor.min.css\";i:428;s:27:\"social-links/editor-rtl.css\";i:429;s:31:\"social-links/editor-rtl.min.css\";i:430;s:23:\"social-links/editor.css\";i:431;s:27:\"social-links/editor.min.css\";i:432;s:26:\"social-links/style-rtl.css\";i:433;s:30:\"social-links/style-rtl.min.css\";i:434;s:22:\"social-links/style.css\";i:435;s:26:\"social-links/style.min.css\";i:436;s:21:\"spacer/editor-rtl.css\";i:437;s:25:\"spacer/editor-rtl.min.css\";i:438;s:17:\"spacer/editor.css\";i:439;s:21:\"spacer/editor.min.css\";i:440;s:20:\"spacer/style-rtl.css\";i:441;s:24:\"spacer/style-rtl.min.css\";i:442;s:16:\"spacer/style.css\";i:443;s:20:\"spacer/style.min.css\";i:444;s:20:\"table/editor-rtl.css\";i:445;s:24:\"table/editor-rtl.min.css\";i:446;s:16:\"table/editor.css\";i:447;s:20:\"table/editor.min.css\";i:448;s:19:\"table/style-rtl.css\";i:449;s:23:\"table/style-rtl.min.css\";i:450;s:15:\"table/style.css\";i:451;s:19:\"table/style.min.css\";i:452;s:19:\"table/theme-rtl.css\";i:453;s:23:\"table/theme-rtl.min.css\";i:454;s:15:\"table/theme.css\";i:455;s:19:\"table/theme.min.css\";i:456;s:23:\"tag-cloud/style-rtl.css\";i:457;s:27:\"tag-cloud/style-rtl.min.css\";i:458;s:19:\"tag-cloud/style.css\";i:459;s:23:\"tag-cloud/style.min.css\";i:460;s:28:\"template-part/editor-rtl.css\";i:461;s:32:\"template-part/editor-rtl.min.css\";i:462;s:24:\"template-part/editor.css\";i:463;s:28:\"template-part/editor.min.css\";i:464;s:27:\"template-part/theme-rtl.css\";i:465;s:31:\"template-part/theme-rtl.min.css\";i:466;s:23:\"template-part/theme.css\";i:467;s:27:\"template-part/theme.min.css\";i:468;s:30:\"term-description/style-rtl.css\";i:469;s:34:\"term-description/style-rtl.min.css\";i:470;s:26:\"term-description/style.css\";i:471;s:30:\"term-description/style.min.css\";i:472;s:27:\"text-columns/editor-rtl.css\";i:473;s:31:\"text-columns/editor-rtl.min.css\";i:474;s:23:\"text-columns/editor.css\";i:475;s:27:\"text-columns/editor.min.css\";i:476;s:26:\"text-columns/style-rtl.css\";i:477;s:30:\"text-columns/style-rtl.min.css\";i:478;s:22:\"text-columns/style.css\";i:479;s:26:\"text-columns/style.min.css\";i:480;s:19:\"verse/style-rtl.css\";i:481;s:23:\"verse/style-rtl.min.css\";i:482;s:15:\"verse/style.css\";i:483;s:19:\"verse/style.min.css\";i:484;s:20:\"video/editor-rtl.css\";i:485;s:24:\"video/editor-rtl.min.css\";i:486;s:16:\"video/editor.css\";i:487;s:20:\"video/editor.min.css\";i:488;s:19:\"video/style-rtl.css\";i:489;s:23:\"video/style-rtl.min.css\";i:490;s:15:\"video/style.css\";i:491;s:19:\"video/style.min.css\";i:492;s:19:\"video/theme-rtl.css\";i:493;s:23:\"video/theme-rtl.min.css\";i:494;s:15:\"video/theme.css\";i:495;s:19:\"video/theme.min.css\";}}','on'), +(127,'theme_mods_twentytwentyfour','a:2:{s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1722802261;s:4:\"data\";a:3:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:3:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";}s:9:\"sidebar-2\";a:2:{i:0;s:7:\"block-5\";i:1;s:7:\"block-6\";}}}}','off'), +(153,'current_theme','','auto'), +(154,'theme_mods_haiku-atelier-2024','a:9:{i:0;b:0;s:18:\"nav_menu_locations\";a:0:{}s:18:\"custom_css_post_id\";i:-1;s:14:\"lien_instagram\";s:39:\"https://www.instagram.com/haiku.atelier\";s:26:\"texte_conditions_livraison\";s:450:\"Products will be shipped to you within 14 days after the order has been placed, depending on stock and complexity of production. However, we strive to prepare your order for the quickest delivery possible.\n
    \n
  • Belgium and France: free shipping.
  • \n
  • Worldwide: free shipping on orders above 150€.
  • \n
\nFor return inquiries, please contact us within 14 days after the item\'s reception.\";s:23:\"texte_entretien_produit\";s:404:\"Our jewelry are waterproof but it is preferable to avoid contact with perfume, beauty products, cleaning products, especially for your gold plated pieces.\n\nWipe dry with a soft cloth.\n\nPlease contact us for after sale services. Haiku pieces are guaranteed for a year. We can also repair your pieces after the year guarantee, the cost will depend on each case.\";s:21:\"sample_tinymce_editor\";s:8:\"zozozozo\";s:13:\"lien_facebook\";s:38:\"https://www.facebook.com/haiku.atelier\";s:14:\"lien_pinterest\";s:38:\"https://www.pinterest.com/haikuatelier\";}','on'), +(155,'theme_switched','','auto'), +(163,'finished_updating_comment_type','1','auto'), +(211,'_site_transient_wp_plugin_dependencies_plugin_data','a:0:{}','off'), +(212,'recently_activated','a:0:{}','off'), +(215,'polylang','a:14:{s:7:\"browser\";b:1;s:7:\"rewrite\";i:1;s:12:\"hide_default\";i:1;s:10:\"force_lang\";i:1;s:13:\"redirect_lang\";i:0;s:13:\"media_support\";b:1;s:9:\"uninstall\";i:0;s:4:\"sync\";a:0:{}s:10:\"post_types\";a:0:{}s:10:\"taxonomies\";a:0:{}s:7:\"domains\";a:0:{}s:7:\"version\";s:5:\"3.6.4\";s:16:\"first_activation\";i:1722863554;s:12:\"default_lang\";s:2:\"en\";}','auto'), +(216,'polylang_wpml_strings','a:0:{}','auto'), +(217,'action_scheduler_hybrid_store_demarkation','6','auto'), +(218,'schema-ActionScheduler_StoreSchema','7.0.1722863555','auto'), +(219,'schema-ActionScheduler_LoggerSchema','3.0.1722863555','auto'), +(222,'woocommerce_newly_installed','no','auto'), +(223,'woocommerce_schema_version','920','auto'), +(224,'woocommerce_store_address','','on'), +(225,'woocommerce_store_address_2','','on'), +(226,'woocommerce_store_city','','on'), +(227,'woocommerce_default_country','BE','on'), +(228,'woocommerce_store_postcode','','on'), +(229,'woocommerce_allowed_countries','all','on'), +(230,'woocommerce_all_except_countries','a:0:{}','on'), +(231,'woocommerce_specific_allowed_countries','a:0:{}','on'), +(232,'woocommerce_ship_to_countries','','on'), +(233,'woocommerce_specific_ship_to_countries','a:0:{}','on'), +(234,'woocommerce_default_customer_address','base','on'), +(235,'woocommerce_calc_taxes','no','on'), +(236,'woocommerce_enable_coupons','yes','on'), +(237,'woocommerce_calc_discounts_sequentially','no','off'), +(238,'woocommerce_currency','EUR','on'), +(239,'woocommerce_currency_pos','left_space','on'), +(240,'woocommerce_price_thousand_sep','.','on'), +(241,'woocommerce_price_decimal_sep',',','on'), +(242,'woocommerce_price_num_decimals','2','on'), +(243,'woocommerce_shop_page_id','14','on'), +(244,'woocommerce_cart_redirect_after_add','no','on'), +(245,'woocommerce_enable_ajax_add_to_cart','yes','on'), +(246,'woocommerce_placeholder_image','506','on'), +(247,'woocommerce_weight_unit','kg','on'), +(248,'woocommerce_dimension_unit','cm','on'), +(249,'woocommerce_enable_reviews','no','on'), +(250,'woocommerce_review_rating_verification_label','no','off'), +(251,'woocommerce_review_rating_verification_required','no','off'), +(252,'woocommerce_enable_review_rating','no','on'), +(253,'woocommerce_review_rating_required','no','off'), +(254,'woocommerce_manage_stock','yes','on'), +(255,'woocommerce_hold_stock_minutes','60','off'), +(256,'woocommerce_notify_low_stock','yes','off'), +(257,'woocommerce_notify_no_stock','yes','off'), +(258,'woocommerce_stock_email_recipient','contact@gcch.fr','off'), +(259,'woocommerce_notify_low_stock_amount','2','off'), +(260,'woocommerce_notify_no_stock_amount','0','on'), +(261,'woocommerce_hide_out_of_stock_items','no','on'), +(262,'woocommerce_stock_format','','on'), +(263,'woocommerce_file_download_method','force','off'), +(264,'woocommerce_downloads_redirect_fallback_allowed','no','off'), +(265,'woocommerce_downloads_require_login','no','off'), +(266,'woocommerce_downloads_grant_access_after_payment','yes','off'), +(267,'woocommerce_downloads_deliver_inline','','off'), +(268,'woocommerce_downloads_add_hash_to_filename','yes','on'), +(270,'woocommerce_attribute_lookup_direct_updates','no','on'), +(271,'woocommerce_attribute_lookup_optimized_updates','no','on'), +(272,'woocommerce_product_match_featured_image_by_sku','no','on'), +(273,'woocommerce_prices_include_tax','no','on'), +(274,'woocommerce_tax_based_on','shipping','on'), +(275,'woocommerce_shipping_tax_class','inherit','on'), +(276,'woocommerce_tax_round_at_subtotal','no','on'), +(277,'woocommerce_tax_classes','','on'), +(278,'woocommerce_tax_display_shop','excl','on'), +(279,'woocommerce_tax_display_cart','excl','on'), +(280,'woocommerce_price_display_suffix','','on'), +(281,'woocommerce_tax_total_display','itemized','off'), +(282,'woocommerce_enable_shipping_calc','yes','off'), +(283,'woocommerce_shipping_cost_requires_address','no','on'), +(284,'woocommerce_ship_to_destination','shipping','off'), +(285,'woocommerce_shipping_debug_mode','no','on'), +(286,'woocommerce_enable_guest_checkout','yes','off'), +(287,'woocommerce_enable_checkout_login_reminder','yes','off'), +(288,'woocommerce_enable_signup_and_login_from_checkout','no','off'), +(289,'woocommerce_enable_myaccount_registration','no','off'), +(290,'woocommerce_registration_generate_username','no','off'), +(291,'woocommerce_registration_generate_password','no','off'), +(292,'woocommerce_erasure_request_removes_order_data','yes','off'), +(293,'woocommerce_erasure_request_removes_download_data','yes','off'), +(294,'woocommerce_allow_bulk_remove_personal_data','yes','off'), +(295,'woocommerce_registration_privacy_policy_text','Your personal data will be used to support your experience throughout this website, to manage access to your account, and for other purposes described in our [privacy_policy].','on'), +(296,'woocommerce_checkout_privacy_policy_text','Your personal data will be used to process your order, support your experience throughout this website, and for other purposes described in our [privacy_policy].','on'), +(297,'woocommerce_delete_inactive_accounts','a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:6:\"months\";}','off'), +(298,'woocommerce_trash_pending_orders','a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:4:\"days\";}','off'), +(299,'woocommerce_trash_failed_orders','a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:4:\"days\";}','off'), +(300,'woocommerce_trash_cancelled_orders','a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:4:\"days\";}','off'), +(301,'woocommerce_anonymize_completed_orders','a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:6:\"months\";}','off'), +(302,'woocommerce_email_from_name','Haiku Atelier','off'), +(303,'woocommerce_email_from_address','haiku.atelier@gmail.com','off'), +(304,'woocommerce_email_header_image','','off'), +(305,'woocommerce_email_footer_text','{site_title}','off'), +(306,'woocommerce_email_base_color','#720eec','off'), +(307,'woocommerce_email_background_color','#f7f7f7','off'), +(308,'woocommerce_email_body_background_color','#ffffff','off'), +(309,'woocommerce_email_text_color','#3c3c3c','off'), +(310,'woocommerce_merchant_email_notifications','no','off'), +(311,'woocommerce_cart_page_id','16','off'), +(312,'woocommerce_checkout_page_id','17','off'), +(313,'woocommerce_myaccount_page_id','15','off'), +(314,'woocommerce_terms_page_id','19','off'), +(315,'woocommerce_checkout_pay_endpoint','order-pay','on'), +(316,'woocommerce_checkout_order_received_endpoint','order-received','on'), +(317,'woocommerce_myaccount_add_payment_method_endpoint','add-payment-method','on'), +(318,'woocommerce_myaccount_delete_payment_method_endpoint','delete-payment-method','on'), +(319,'woocommerce_myaccount_set_default_payment_method_endpoint','set-default-payment-method','on'), +(320,'woocommerce_myaccount_orders_endpoint','orders','on'), +(321,'woocommerce_myaccount_view_order_endpoint','view-order','on'), +(322,'woocommerce_myaccount_downloads_endpoint','downloads','on'), +(323,'woocommerce_myaccount_edit_account_endpoint','edit-account','on'), +(324,'woocommerce_myaccount_edit_address_endpoint','edit-address','on'), +(325,'woocommerce_myaccount_payment_methods_endpoint','payment-methods','on'), +(326,'woocommerce_myaccount_lost_password_endpoint','lost-password','on'), +(327,'woocommerce_logout_endpoint','customer-logout','on'), +(328,'woocommerce_api_enabled','no','on'), +(329,'woocommerce_allow_tracking','no','on'), +(330,'woocommerce_show_marketplace_suggestions','no','off'), +(331,'woocommerce_custom_orders_table_enabled','yes','on'), +(332,'woocommerce_analytics_enabled','yes','on'), +(333,'woocommerce_feature_order_attribution_enabled','','on'), +(334,'woocommerce_feature_product_block_editor_enabled','no','on'), +(335,'woocommerce_hpos_fts_index_enabled','no','on'), +(336,'woocommerce_single_image_width','600','on'), +(337,'woocommerce_thumbnail_image_width','300','on'), +(338,'woocommerce_checkout_highlight_required_fields','yes','on'), +(339,'woocommerce_demo_store','no','off'), +(340,'wc_downloads_approved_directories_mode','enabled','auto'), +(341,'woocommerce_permalinks','a:5:{s:12:\"product_base\";s:7:\"product\";s:13:\"category_base\";s:16:\"product-category\";s:8:\"tag_base\";s:11:\"product-tag\";s:14:\"attribute_base\";s:0:\"\";s:22:\"use_verbose_page_rules\";b:0;}','auto'), +(342,'current_theme_supports_woocommerce','yes','auto'), +(343,'woocommerce_queue_flush_rewrite_rules','no','auto'), +(347,'default_product_cat','15','auto'), +(349,'woocommerce_refund_returns_page_id','11','auto'), +(352,'woocommerce_paypal_settings','a:23:{s:7:\"enabled\";s:2:\"no\";s:5:\"title\";s:6:\"PayPal\";s:11:\"description\";s:85:\"Pay via PayPal; you can pay with your credit card if you don\'t have a PayPal account.\";s:5:\"email\";s:15:\"contact@gcch.fr\";s:8:\"advanced\";s:0:\"\";s:8:\"testmode\";s:2:\"no\";s:5:\"debug\";s:2:\"no\";s:16:\"ipn_notification\";s:3:\"yes\";s:14:\"receiver_email\";s:15:\"contact@gcch.fr\";s:14:\"identity_token\";s:0:\"\";s:14:\"invoice_prefix\";s:3:\"WC-\";s:13:\"send_shipping\";s:3:\"yes\";s:16:\"address_override\";s:2:\"no\";s:13:\"paymentaction\";s:4:\"sale\";s:9:\"image_url\";s:0:\"\";s:11:\"api_details\";s:0:\"\";s:12:\"api_username\";s:0:\"\";s:12:\"api_password\";s:0:\"\";s:13:\"api_signature\";s:0:\"\";s:20:\"sandbox_api_username\";s:0:\"\";s:20:\"sandbox_api_password\";s:0:\"\";s:21:\"sandbox_api_signature\";s:0:\"\";s:12:\"_should_load\";s:2:\"no\";}','on'), +(353,'woocommerce_version','9.9.5','auto'), +(354,'woocommerce_db_version','9.9.5','auto'), +(355,'woocommerce_store_id','e041283c-a0c6-45fe-8c78-d326f5284551','auto'), +(356,'woocommerce_admin_install_timestamp','1722863556','auto'), +(357,'woocommerce_inbox_variant_assignment','7','auto'), +(358,'woocommerce_remote_variant_assignment','102','auto'), +(363,'_transient_jetpack_autoloader_plugin_paths','a:1:{i:0;s:29:\"{{WP_PLUGIN_DIR}}/woocommerce\";}','on'), +(364,'action_scheduler_lock_async-request-runner','6859577ea6d335.57465112|1750685626','no'), +(365,'woocommerce_admin_notices','a:0:{}','auto'), +(366,'wc_blocks_version','11.8.0-dev','auto'), +(367,'jetpack_connection_active_plugins','a:1:{s:11:\"woocommerce\";a:1:{s:4:\"name\";s:11:\"WooCommerce\";}}','auto'), +(368,'woocommerce_maxmind_geolocation_settings','a:1:{s:15:\"database_prefix\";s:32:\"n9PIFnp4zKp5KnjKvWdyoOort7Umdclh\";}','on'), +(369,'_transient_woocommerce_webhook_ids_status_active','a:0:{}','on'), +(370,'widget_woocommerce_widget_cart','a:1:{s:12:\"_multiwidget\";i:1;}','auto'), +(371,'widget_woocommerce_layered_nav_filters','a:1:{s:12:\"_multiwidget\";i:1;}','auto'), +(372,'widget_woocommerce_layered_nav','a:1:{s:12:\"_multiwidget\";i:1;}','auto'), +(373,'widget_woocommerce_price_filter','a:1:{s:12:\"_multiwidget\";i:1;}','auto'), +(374,'widget_woocommerce_product_categories','a:1:{s:12:\"_multiwidget\";i:1;}','auto'), +(375,'widget_woocommerce_product_search','a:1:{s:12:\"_multiwidget\";i:1;}','auto'), +(376,'widget_woocommerce_product_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','auto'), +(377,'widget_woocommerce_products','a:1:{s:12:\"_multiwidget\";i:1;}','auto'), +(378,'widget_woocommerce_recently_viewed_products','a:1:{s:12:\"_multiwidget\";i:1;}','auto'), +(379,'widget_woocommerce_top_rated_products','a:1:{s:12:\"_multiwidget\";i:1;}','auto'), +(380,'widget_woocommerce_recent_reviews','a:1:{s:12:\"_multiwidget\";i:1;}','auto'), +(381,'widget_woocommerce_rating_filter','a:1:{s:12:\"_multiwidget\";i:1;}','auto'), +(382,'widget_polylang','a:1:{s:12:\"_multiwidget\";i:1;}','auto'), +(391,'wcpay_was_in_use','no','auto'), +(400,'wc_admin_show_legacy_coupon_menu','0','auto'), +(401,'woocommerce_custom_orders_table_created','yes','auto'), +(404,'wc_blocks_db_schema_version','260','auto'), +(405,'wc_remote_inbox_notifications_stored_state','O:8:\"stdClass\":2:{s:22:\"there_were_no_products\";b:1;s:22:\"there_are_now_products\";b:1;}','off'), +(414,'jetpack_options','a:1:{s:14:\"last_heartbeat\";i:1750684380;}','auto'), +(415,'_transient_woocommerce_reports-transient-version','1733494962','on'), +(423,'_transient_product_query-transient-version','1750363871','on'), +(430,'category_children','a:0:{}','auto'), +(433,'pll_dismissed_notices','a:2:{i:0;s:6:\"wizard\";i:1;s:5:\"pllwc\";}','auto'), +(449,'woocommerce_task_list_tracked_completed_tasks','a:5:{i:0;s:17:\"launch-your-store\";i:1;s:8:\"products\";i:2;s:15:\"customize-store\";i:3;s:8:\"shipping\";i:4;s:15:\"review-shipping\";}','auto'), +(450,'woocommerce_onboarding_profile','a:9:{s:15:\"business_choice\";s:18:\"im_already_selling\";s:21:\"selling_online_answer\";s:21:\"yes_im_selling_online\";s:17:\"selling_platforms\";a:1:{i:0;s:3:\"wix\";}s:20:\"is_store_country_set\";b:1;s:8:\"industry\";a:1:{i:0;s:15:\"arts_and_crafts\";}s:18:\"is_agree_marketing\";b:0;s:11:\"store_email\";s:15:\"contact@gcch.fr\";s:9:\"completed\";b:1;s:23:\"is_plugins_page_skipped\";b:1;}','auto'), +(452,'woocommerce_coming_soon','no','auto'), +(453,'woocommerce_store_pages_only','no','auto'), +(454,'woocommerce_private_link','no','auto'), +(455,'woocommerce_share_key','F7pud5vmFEcHk1bhNgS9GiTlfxeNx7K4','auto'), +(479,'falcon','a:3:{s:8:\"features\";a:39:{i:0;s:12:\"no_gutenberg\";i:1;s:9:\"no_embeds\";i:2;s:11:\"no_comments\";i:3;s:14:\"no_comment_url\";i:4;s:12:\"no_revisions\";i:5;s:13:\"no_self_pings\";i:6;s:10:\"no_privacy\";i:7;s:15:\"no_auto_updates\";i:8;s:17:\"search_posts_only\";i:9;s:12:\"no_texturize\";i:10;s:13:\"no_feed_links\";i:11;s:11:\"no_rsd_link\";i:12;s:19:\"no_wlwmanifest_link\";i:13;s:23:\"no_adjacent_posts_links\";i:14;s:15:\"no_wp_generator\";i:15;s:12:\"no_shortlink\";i:16;s:12:\"no_rest_link\";i:17;s:17:\"no_jquery_migrate\";i:18;s:16:\"schema_less_urls\";i:19;s:31:\"no_recent_comments_widget_style\";i:20;s:12:\"cleanup_menu\";i:21;s:9:\"no_emojis\";i:22;s:18:\"no_image_threshold\";i:23;s:14:\"no_exif_rotate\";i:24;s:22:\"no_admin_email_confirm\";i:25;s:16:\"no_update_emails\";i:26;s:18:\"no_new_user_emails\";i:27;s:24:\"no_password_reset_emails\";i:28;s:20:\"change_default_email\";i:29;s:15:\"login_site_icon\";i:30;s:14:\"no_update_nags\";i:31;s:14:\"no_footer_text\";i:32;s:20:\"no_dashboard_widgets\";i:33;s:10:\"no_wp_logo\";i:34;s:24:\"no_application_passwords\";i:35;s:9:\"no_xmlrpc\";i:36;s:15:\"restrict_upload\";i:37;s:15:\"no_login_errors\";i:38;s:13:\"block_ai_bots\";}s:13:\"default_email\";a:2:{s:9:\"from_name\";s:13:\"Haiku Atelier\";s:10:\"from_email\";s:23:\"haiku.atelier@gmail.com\";}s:4:\"smtp\";a:5:{s:4:\"host\";s:15:\"smtp.migadu.com\";s:4:\"port\";s:3:\"465\";s:8:\"username\";s:17:\"admin@minima.haus\";s:8:\"password\";s:32:\"ILDwXJpxhfgc0SfEQIUGhHlGmb7KuGkl\";s:10:\"encryption\";s:3:\"tls\";}}','auto'), +(520,'wcpay_welcome_page_viewed_timestamp','1722865333','auto'), +(521,'wcpay_welcome_page_incentives_dismissed','a:1:{i:0;s:32:\"wcpay-promo-2023-action-discount\";}','auto'), +(565,'_transient_health-check-site-status-result','{\"good\":18,\"recommended\":4,\"critical\":1}','on'), +(604,'_transient_product-transient-version','1750363871','on'), +(701,'woocommerce_maybe_regenerate_images_hash','991b1ca641921cf0f5baf7a2fe85861b','auto'), +(706,'_transient_shipping-transient-version','1733267802','on'), +(809,'_transient_pll_languages_list','a:1:{i:0;a:22:{s:4:\"name\";s:7:\"English\";s:4:\"slug\";s:2:\"en\";s:10:\"term_group\";i:0;s:7:\"term_id\";i:16;s:6:\"locale\";s:5:\"en_GB\";s:6:\"is_rtl\";i:0;s:3:\"w3c\";s:5:\"en-GB\";s:8:\"facebook\";s:5:\"en_GB\";s:8:\"home_url\";s:34:\"https://haikuatelier.fr.ddev.site/\";s:10:\"search_url\";s:34:\"https://haikuatelier.fr.ddev.site/\";s:4:\"host\";N;s:13:\"page_on_front\";i:0;s:14:\"page_for_posts\";i:0;s:9:\"flag_code\";s:2:\"gb\";s:8:\"flag_url\";s:67:\"https://haikuatelier.fr.ddev.site/app/plugins/polylang/flags/gb.png\";s:4:\"flag\";s:636:\"\"English\"\";s:15:\"custom_flag_url\";s:0:\"\";s:11:\"custom_flag\";s:0:\"\";s:6:\"active\";b:1;s:9:\"fallbacks\";a:0:{}s:10:\"is_default\";b:1;s:10:\"term_props\";a:2:{s:8:\"language\";a:3:{s:7:\"term_id\";i:16;s:16:\"term_taxonomy_id\";i:16;s:5:\"count\";i:7;}s:13:\"term_language\";a:3:{s:7:\"term_id\";i:17;s:16:\"term_taxonomy_id\";i:17;s:5:\"count\";i:1;}}}}','on'), +(825,'rewrite_rules','a:192:{s:24:\"^wc-auth/v([1]{1})/(.*)?\";s:63:\"index.php?wc-auth-version=$matches[1]&wc-auth-route=$matches[2]\";s:21:\"^wc/file/transient/?$\";s:33:\"index.php?wc-transient-file-name=\";s:24:\"^wc/file/transient/(.+)$\";s:44:\"index.php?wc-transient-file-name=$matches[1]\";s:22:\"^wc-api/v([1-3]{1})/?$\";s:51:\"index.php?wc-api-version=$matches[1]&wc-api-route=/\";s:24:\"^wc-api/v([1-3]{1})(.*)?\";s:61:\"index.php?wc-api-version=$matches[1]&wc-api-route=$matches[2]\";s:7:\"shop/?$\";s:27:\"index.php?post_type=product\";s:37:\"shop/feed/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=product&feed=$matches[1]\";s:32:\"shop/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=product&feed=$matches[1]\";s:24:\"shop/page/([0-9]{1,})/?$\";s:45:\"index.php?post_type=product&paged=$matches[1]\";s:11:\"^wp-json/?$\";s:22:\"index.php?rest_route=/\";s:14:\"^wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:21:\"^index.php/wp-json/?$\";s:22:\"index.php?rest_route=/\";s:24:\"^index.php/wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:17:\"^wp-sitemap\\.xml$\";s:23:\"index.php?sitemap=index\";s:17:\"^wp-sitemap\\.xsl$\";s:36:\"index.php?sitemap-stylesheet=sitemap\";s:23:\"^wp-sitemap-index\\.xsl$\";s:34:\"index.php?sitemap-stylesheet=index\";s:48:\"^wp-sitemap-([a-z]+?)-([a-z\\d_-]+?)-(\\d+?)\\.xml$\";s:75:\"index.php?sitemap=$matches[1]&sitemap-subtype=$matches[2]&paged=$matches[3]\";s:34:\"^wp-sitemap-([a-z]+?)-(\\d+?)\\.xml$\";s:47:\"index.php?sitemap=$matches[1]&paged=$matches[2]\";s:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:23:\"category/(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:35:\"category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:43:\"category/(.+?)/wc/file/transient(/(.*))?/?$\";s:65:\"index.php?category_name=$matches[1]&wc/file/transient=$matches[3]\";s:32:\"category/(.+?)/wc-api(/(.*))?/?$\";s:54:\"index.php?category_name=$matches[1]&wc-api=$matches[3]\";s:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:44:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:39:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:20:\"tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:40:\"tag/([^/]+)/wc/file/transient(/(.*))?/?$\";s:55:\"index.php?tag=$matches[1]&wc/file/transient=$matches[3]\";s:29:\"tag/([^/]+)/wc-api(/(.*))?/?$\";s:44:\"index.php?tag=$matches[1]&wc-api=$matches[3]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:21:\"type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:44:\"brand/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?product_brand=$matches[1]&feed=$matches[2]\";s:39:\"brand/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?product_brand=$matches[1]&feed=$matches[2]\";s:20:\"brand/(.+?)/embed/?$\";s:46:\"index.php?product_brand=$matches[1]&embed=true\";s:32:\"brand/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?product_brand=$matches[1]&paged=$matches[2]\";s:14:\"brand/(.+?)/?$\";s:35:\"index.php?product_brand=$matches[1]\";s:55:\"product-category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_cat=$matches[1]&feed=$matches[2]\";s:50:\"product-category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_cat=$matches[1]&feed=$matches[2]\";s:31:\"product-category/(.+?)/embed/?$\";s:44:\"index.php?product_cat=$matches[1]&embed=true\";s:43:\"product-category/(.+?)/page/?([0-9]{1,})/?$\";s:51:\"index.php?product_cat=$matches[1]&paged=$matches[2]\";s:25:\"product-category/(.+?)/?$\";s:33:\"index.php?product_cat=$matches[1]\";s:52:\"product-tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_tag=$matches[1]&feed=$matches[2]\";s:47:\"product-tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_tag=$matches[1]&feed=$matches[2]\";s:28:\"product-tag/([^/]+)/embed/?$\";s:44:\"index.php?product_tag=$matches[1]&embed=true\";s:40:\"product-tag/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?product_tag=$matches[1]&paged=$matches[2]\";s:22:\"product-tag/([^/]+)/?$\";s:33:\"index.php?product_tag=$matches[1]\";s:35:\"product/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:45:\"product/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:65:\"product/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"product/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"product/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:41:\"product/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:24:\"product/([^/]+)/embed/?$\";s:40:\"index.php?product=$matches[1]&embed=true\";s:28:\"product/([^/]+)/trackback/?$\";s:34:\"index.php?product=$matches[1]&tb=1\";s:48:\"product/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?product=$matches[1]&feed=$matches[2]\";s:43:\"product/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?product=$matches[1]&feed=$matches[2]\";s:36:\"product/([^/]+)/page/?([0-9]{1,})/?$\";s:47:\"index.php?product=$matches[1]&paged=$matches[2]\";s:43:\"product/([^/]+)/comment-page-([0-9]{1,})/?$\";s:47:\"index.php?product=$matches[1]&cpage=$matches[2]\";s:44:\"product/([^/]+)/wc/file/transient(/(.*))?/?$\";s:59:\"index.php?product=$matches[1]&wc/file/transient=$matches[3]\";s:33:\"product/([^/]+)/wc-api(/(.*))?/?$\";s:48:\"index.php?product=$matches[1]&wc-api=$matches[3]\";s:50:\"product/[^/]+/([^/]+)/wc/file/transient(/(.*))?/?$\";s:62:\"index.php?attachment=$matches[1]&wc/file/transient=$matches[3]\";s:61:\"product/[^/]+/attachment/([^/]+)/wc/file/transient(/(.*))?/?$\";s:62:\"index.php?attachment=$matches[1]&wc/file/transient=$matches[3]\";s:39:\"product/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:50:\"product/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:32:\"product/([^/]+)(?:/([0-9]+))?/?$\";s:46:\"index.php?product=$matches[1]&page=$matches[2]\";s:24:\"product/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:34:\"product/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:54:\"product/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"product/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"product/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:30:\"product/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:51:\"collection/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:63:\"index.php?taxonomy=collection&term=$matches[1]&feed=$matches[2]\";s:46:\"collection/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:63:\"index.php?taxonomy=collection&term=$matches[1]&feed=$matches[2]\";s:27:\"collection/([^/]+)/embed/?$\";s:57:\"index.php?taxonomy=collection&term=$matches[1]&embed=true\";s:39:\"collection/([^/]+)/page/?([0-9]{1,})/?$\";s:64:\"index.php?taxonomy=collection&term=$matches[1]&paged=$matches[2]\";s:21:\"collection/([^/]+)/?$\";s:46:\"index.php?taxonomy=collection&term=$matches[1]\";s:12:\"robots\\.txt$\";s:18:\"index.php?robots=1\";s:13:\"favicon\\.ico$\";s:19:\"index.php?favicon=1\";s:12:\"sitemap\\.xml\";s:24:\"index.php??sitemap=index\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:8:\"embed/?$\";s:21:\"index.php?&embed=true\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:27:\"comment-page-([0-9]{1,})/?$\";s:39:\"index.php?&page_id=13&cpage=$matches[1]\";s:28:\"wc/file/transient(/(.*))?/?$\";s:40:\"index.php?&wc/file/transient=$matches[2]\";s:17:\"wc-api(/(.*))?/?$\";s:29:\"index.php?&wc-api=$matches[2]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:17:\"comments/embed/?$\";s:21:\"index.php?&embed=true\";s:37:\"comments/wc/file/transient(/(.*))?/?$\";s:40:\"index.php?&wc/file/transient=$matches[2]\";s:26:\"comments/wc-api(/(.*))?/?$\";s:29:\"index.php?&wc-api=$matches[2]\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:20:\"search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:40:\"search/(.+)/wc/file/transient(/(.*))?/?$\";s:53:\"index.php?s=$matches[1]&wc/file/transient=$matches[3]\";s:29:\"search/(.+)/wc-api(/(.*))?/?$\";s:42:\"index.php?s=$matches[1]&wc-api=$matches[3]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:23:\"author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:43:\"author/([^/]+)/wc/file/transient(/(.*))?/?$\";s:63:\"index.php?author_name=$matches[1]&wc/file/transient=$matches[3]\";s:32:\"author/([^/]+)/wc-api(/(.*))?/?$\";s:52:\"index.php?author_name=$matches[1]&wc-api=$matches[3]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:45:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:65:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/wc/file/transient(/(.*))?/?$\";s:93:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&wc/file/transient=$matches[5]\";s:54:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/wc-api(/(.*))?/?$\";s:82:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&wc-api=$matches[5]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:32:\"([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:52:\"([0-9]{4})/([0-9]{1,2})/wc/file/transient(/(.*))?/?$\";s:77:\"index.php?year=$matches[1]&monthnum=$matches[2]&wc/file/transient=$matches[4]\";s:41:\"([0-9]{4})/([0-9]{1,2})/wc-api(/(.*))?/?$\";s:66:\"index.php?year=$matches[1]&monthnum=$matches[2]&wc-api=$matches[4]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:19:\"([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:39:\"([0-9]{4})/wc/file/transient(/(.*))?/?$\";s:56:\"index.php?year=$matches[1]&wc/file/transient=$matches[3]\";s:28:\"([0-9]{4})/wc-api(/(.*))?/?$\";s:45:\"index.php?year=$matches[1]&wc-api=$matches[3]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:36:\"(.?.+?)/wc/file/transient(/(.*))?/?$\";s:60:\"index.php?pagename=$matches[1]&wc/file/transient=$matches[3]\";s:25:\"(.?.+?)/wc-api(/(.*))?/?$\";s:49:\"index.php?pagename=$matches[1]&wc-api=$matches[3]\";s:28:\"(.?.+?)/order-pay(/(.*))?/?$\";s:52:\"index.php?pagename=$matches[1]&order-pay=$matches[3]\";s:33:\"(.?.+?)/order-received(/(.*))?/?$\";s:57:\"index.php?pagename=$matches[1]&order-received=$matches[3]\";s:25:\"(.?.+?)/orders(/(.*))?/?$\";s:49:\"index.php?pagename=$matches[1]&orders=$matches[3]\";s:29:\"(.?.+?)/view-order(/(.*))?/?$\";s:53:\"index.php?pagename=$matches[1]&view-order=$matches[3]\";s:28:\"(.?.+?)/downloads(/(.*))?/?$\";s:52:\"index.php?pagename=$matches[1]&downloads=$matches[3]\";s:31:\"(.?.+?)/edit-account(/(.*))?/?$\";s:55:\"index.php?pagename=$matches[1]&edit-account=$matches[3]\";s:31:\"(.?.+?)/edit-address(/(.*))?/?$\";s:55:\"index.php?pagename=$matches[1]&edit-address=$matches[3]\";s:34:\"(.?.+?)/payment-methods(/(.*))?/?$\";s:58:\"index.php?pagename=$matches[1]&payment-methods=$matches[3]\";s:32:\"(.?.+?)/lost-password(/(.*))?/?$\";s:56:\"index.php?pagename=$matches[1]&lost-password=$matches[3]\";s:34:\"(.?.+?)/customer-logout(/(.*))?/?$\";s:58:\"index.php?pagename=$matches[1]&customer-logout=$matches[3]\";s:37:\"(.?.+?)/add-payment-method(/(.*))?/?$\";s:61:\"index.php?pagename=$matches[1]&add-payment-method=$matches[3]\";s:40:\"(.?.+?)/delete-payment-method(/(.*))?/?$\";s:64:\"index.php?pagename=$matches[1]&delete-payment-method=$matches[3]\";s:45:\"(.?.+?)/set-default-payment-method(/(.*))?/?$\";s:69:\"index.php?pagename=$matches[1]&set-default-payment-method=$matches[3]\";s:42:\".?.+?/([^/]+)/wc/file/transient(/(.*))?/?$\";s:62:\"index.php?attachment=$matches[1]&wc/file/transient=$matches[3]\";s:53:\".?.+?/attachment/([^/]+)/wc/file/transient(/(.*))?/?$\";s:62:\"index.php?attachment=$matches[1]&wc/file/transient=$matches[3]\";s:31:\".?.+?/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:42:\".?.+?/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";s:27:\"[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\"[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\"[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\"[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"([^/]+)/embed/?$\";s:37:\"index.php?name=$matches[1]&embed=true\";s:20:\"([^/]+)/trackback/?$\";s:31:\"index.php?name=$matches[1]&tb=1\";s:40:\"([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:35:\"([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:28:\"([^/]+)/page/?([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&paged=$matches[2]\";s:35:\"([^/]+)/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&cpage=$matches[2]\";s:36:\"([^/]+)/wc/file/transient(/(.*))?/?$\";s:56:\"index.php?name=$matches[1]&wc/file/transient=$matches[3]\";s:25:\"([^/]+)/wc-api(/(.*))?/?$\";s:45:\"index.php?name=$matches[1]&wc-api=$matches[3]\";s:42:\"[^/]+/([^/]+)/wc/file/transient(/(.*))?/?$\";s:62:\"index.php?attachment=$matches[1]&wc/file/transient=$matches[3]\";s:53:\"[^/]+/attachment/([^/]+)/wc/file/transient(/(.*))?/?$\";s:62:\"index.php?attachment=$matches[1]&wc/file/transient=$matches[3]\";s:31:\"[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:42:\"[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:24:\"([^/]+)(?:/([0-9]+))?/?$\";s:43:\"index.php?name=$matches[1]&page=$matches[2]\";s:16:\"[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:26:\"[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:46:\"[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:22:\"[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";}','auto'), +(832,'woocommerce_pre_install_woocommerce_payments_promotion_settings','a:1:{s:12:\"is_dismissed\";s:3:\"yes\";}','auto'), +(833,'woocommerce_gateway_order','a:6:{s:19:\"_wc_pes_woopayments\";i:0;s:25:\"_wc_pes_paypal_full_stack\";i:1;s:33:\"_wc_offline_payment_methods_group\";i:2;s:4:\"bacs\";i:3;s:6:\"cheque\";i:4;s:3:\"cod\";i:5;}','auto'), +(840,'_transient_timeout_dirsize_cache','2045680880','off'), +(841,'_transient_dirsize_cache','a:2179:{s:37:\"/var/www/html/web/wp/wp-admin/network\";i:125999;s:40:\"/var/www/html/web/wp/wp-admin/js/widgets\";i:139432;s:32:\"/var/www/html/web/wp/wp-admin/js\";i:1971224;s:34:\"/var/www/html/web/wp/wp-admin/user\";i:3685;s:45:\"/var/www/html/web/wp/wp-admin/css/colors/blue\";i:77778;s:49:\"/var/www/html/web/wp/wp-admin/css/colors/midnight\";i:78486;s:48:\"/var/www/html/web/wp/wp-admin/css/colors/sunrise\";i:78407;s:47:\"/var/www/html/web/wp/wp-admin/css/colors/modern\";i:77989;s:50:\"/var/www/html/web/wp/wp-admin/css/colors/ectoplasm\";i:77742;s:46:\"/var/www/html/web/wp/wp-admin/css/colors/ocean\";i:75229;s:47:\"/var/www/html/web/wp/wp-admin/css/colors/coffee\";i:75892;s:46:\"/var/www/html/web/wp/wp-admin/css/colors/light\";i:78474;s:40:\"/var/www/html/web/wp/wp-admin/css/colors\";i:643556;s:33:\"/var/www/html/web/wp/wp-admin/css\";i:2542173;s:36:\"/var/www/html/web/wp/wp-admin/images\";i:426821;s:35:\"/var/www/html/web/wp/wp-admin/maint\";i:7592;s:38:\"/var/www/html/web/wp/wp-admin/includes\";i:3068919;s:29:\"/var/www/html/web/wp/wp-admin\";i:9070949;s:37:\"/var/www/html/web/wp/wp-includes/l10n\";i:30499;s:42:\"/var/www/html/web/wp/wp-includes/customize\";i:177349;s:47:\"/var/www/html/web/wp/wp-includes/block-patterns\";i:8843;s:36:\"/var/www/html/web/wp/wp-includes/ID3\";i:1160011;s:47:\"/var/www/html/web/wp/wp-includes/js/dist/vendor\";i:2753435;s:52:\"/var/www/html/web/wp/wp-includes/js/dist/development\";i:179848;s:40:\"/var/www/html/web/wp/wp-includes/js/dist\";i:21234878;s:44:\"/var/www/html/web/wp/wp-includes/js/plupload\";i:490468;s:58:\"/var/www/html/web/wp/wp-includes/js/mediaelement/renderers\";i:18880;s:48:\"/var/www/html/web/wp/wp-includes/js/mediaelement\";i:721307;s:45:\"/var/www/html/web/wp/wp-includes/js/swfupload\";i:8715;s:40:\"/var/www/html/web/wp/wp-includes/js/crop\";i:20004;s:49:\"/var/www/html/web/wp/wp-includes/js/tinymce/utils\";i:18826;s:63:\"/var/www/html/web/wp/wp-includes/js/tinymce/plugins/wpeditimage\";i:37711;s:66:\"/var/www/html/web/wp/wp-includes/js/tinymce/plugins/directionality\";i:2749;s:61:\"/var/www/html/web/wp/wp-includes/js/tinymce/plugins/wordpress\";i:50628;s:65:\"/var/www/html/web/wp/wp-includes/js/tinymce/plugins/wptextpattern\";i:11923;s:58:\"/var/www/html/web/wp/wp-includes/js/tinymce/plugins/wpview\";i:8985;s:54:\"/var/www/html/web/wp/wp-includes/js/tinymce/plugins/hr\";i:1347;s:64:\"/var/www/html/web/wp/wp-includes/js/tinymce/plugins/compat3x/css\";i:8179;s:60:\"/var/www/html/web/wp/wp-includes/js/tinymce/plugins/compat3x\";i:21758;s:61:\"/var/www/html/web/wp/wp-includes/js/tinymce/plugins/wpgallery\";i:4806;s:59:\"/var/www/html/web/wp/wp-includes/js/tinymce/plugins/charmap\";i:31811;s:62:\"/var/www/html/web/wp/wp-includes/js/tinymce/plugins/fullscreen\";i:7779;s:56:\"/var/www/html/web/wp/wp-includes/js/tinymce/plugins/link\";i:32949;s:57:\"/var/www/html/web/wp/wp-includes/js/tinymce/plugins/lists\";i:97383;s:57:\"/var/www/html/web/wp/wp-includes/js/tinymce/plugins/paste\";i:113193;s:58:\"/var/www/html/web/wp/wp-includes/js/tinymce/plugins/wplink\";i:26816;s:59:\"/var/www/html/web/wp/wp-includes/js/tinymce/plugins/wpemoji\";i:5099;s:64:\"/var/www/html/web/wp/wp-includes/js/tinymce/plugins/wpautoresize\";i:8332;s:60:\"/var/www/html/web/wp/wp-includes/js/tinymce/plugins/tabfocus\";i:5336;s:57:\"/var/www/html/web/wp/wp-includes/js/tinymce/plugins/media\";i:57914;s:61:\"/var/www/html/web/wp/wp-includes/js/tinymce/plugins/textcolor\";i:16237;s:57:\"/var/www/html/web/wp/wp-includes/js/tinymce/plugins/image\";i:55874;s:63:\"/var/www/html/web/wp/wp-includes/js/tinymce/plugins/colorpicker\";i:4910;s:61:\"/var/www/html/web/wp/wp-includes/js/tinymce/plugins/wpdialogs\";i:3761;s:51:\"/var/www/html/web/wp/wp-includes/js/tinymce/plugins\";i:607301;s:66:\"/var/www/html/web/wp/wp-includes/js/tinymce/skins/wordpress/images\";i:14207;s:59:\"/var/www/html/web/wp/wp-includes/js/tinymce/skins/wordpress\";i:22831;s:63:\"/var/www/html/web/wp/wp-includes/js/tinymce/skins/lightgray/img\";i:2856;s:65:\"/var/www/html/web/wp/wp-includes/js/tinymce/skins/lightgray/fonts\";i:155760;s:59:\"/var/www/html/web/wp/wp-includes/js/tinymce/skins/lightgray\";i:210254;s:49:\"/var/www/html/web/wp/wp-includes/js/tinymce/skins\";i:233085;s:49:\"/var/www/html/web/wp/wp-includes/js/tinymce/langs\";i:15529;s:57:\"/var/www/html/web/wp/wp-includes/js/tinymce/themes/modern\";i:446221;s:57:\"/var/www/html/web/wp/wp-includes/js/tinymce/themes/inlite\";i:452642;s:50:\"/var/www/html/web/wp/wp-includes/js/tinymce/themes\";i:898863;s:43:\"/var/www/html/web/wp/wp-includes/js/tinymce\";i:2854127;s:46:\"/var/www/html/web/wp/wp-includes/js/codemirror\";i:1287141;s:45:\"/var/www/html/web/wp/wp-includes/js/jquery/ui\";i:787634;s:42:\"/var/www/html/web/wp/wp-includes/js/jquery\";i:1305370;s:49:\"/var/www/html/web/wp/wp-includes/js/imgareaselect\";i:49553;s:41:\"/var/www/html/web/wp/wp-includes/js/jcrop\";i:24976;s:44:\"/var/www/html/web/wp/wp-includes/js/thickbox\";i:31323;s:35:\"/var/www/html/web/wp/wp-includes/js\";i:30443441;s:50:\"/var/www/html/web/wp/wp-includes/interactivity-api\";i:55221;s:47:\"/var/www/html/web/wp/wp-includes/block-supports\";i:130165;s:51:\"/var/www/html/web/wp/wp-includes/sitemaps/providers\";i:17593;s:41:\"/var/www/html/web/wp/wp-includes/sitemaps\";i:47491;s:50:\"/var/www/html/web/wp/wp-includes/blocks/post-title\";i:1823;s:49:\"/var/www/html/web/wp/wp-includes/blocks/footnotes\";i:2642;s:47:\"/var/www/html/web/wp/wp-includes/blocks/buttons\";i:11183;s:45:\"/var/www/html/web/wp/wp-includes/blocks/group\";i:9055;s:45:\"/var/www/html/web/wp/wp-includes/blocks/query\";i:14007;s:46:\"/var/www/html/web/wp/wp-includes/blocks/search\";i:19592;s:55:\"/var/www/html/web/wp/wp-includes/blocks/comment-content\";i:1369;s:54:\"/var/www/html/web/wp/wp-includes/blocks/comments-title\";i:1701;s:48:\"/var/www/html/web/wp/wp-includes/blocks/archives\";i:1725;s:46:\"/var/www/html/web/wp/wp-includes/blocks/avatar\";i:2296;s:52:\"/var/www/html/web/wp/wp-includes/blocks/text-columns\";i:3034;s:52:\"/var/www/html/web/wp/wp-includes/blocks/latest-posts\";i:11776;s:54:\"/var/www/html/web/wp/wp-includes/blocks/page-list-item\";i:1109;s:58:\"/var/www/html/web/wp/wp-includes/blocks/navigation-submenu\";i:5842;s:44:\"/var/www/html/web/wp/wp-includes/blocks/file\";i:11514;s:50:\"/var/www/html/web/wp/wp-includes/blocks/categories\";i:2825;s:48:\"/var/www/html/web/wp/wp-includes/blocks/nextpage\";i:3039;s:64:\"/var/www/html/web/wp/wp-includes/blocks/query-pagination-numbers\";i:1942;s:45:\"/var/www/html/web/wp/wp-includes/blocks/video\";i:11619;s:51:\"/var/www/html/web/wp/wp-includes/blocks/social-link\";i:3474;s:49:\"/var/www/html/web/wp/wp-includes/blocks/post-date\";i:1377;s:49:\"/var/www/html/web/wp/wp-includes/blocks/page-list\";i:7663;s:56:\"/var/www/html/web/wp/wp-includes/blocks/post-author-name\";i:1118;s:51:\"/var/www/html/web/wp/wp-includes/blocks/post-author\";i:2895;s:44:\"/var/www/html/web/wp/wp-includes/blocks/more\";i:3770;s:56:\"/var/www/html/web/wp/wp-includes/blocks/query-no-results\";i:899;s:49:\"/var/www/html/web/wp/wp-includes/blocks/home-link\";i:1130;s:50:\"/var/www/html/web/wp/wp-includes/blocks/site-title\";i:2289;s:45:\"/var/www/html/web/wp/wp-includes/blocks/block\";i:587;s:45:\"/var/www/html/web/wp/wp-includes/blocks/embed\";i:11232;s:45:\"/var/www/html/web/wp/wp-includes/blocks/audio\";i:3660;s:47:\"/var/www/html/web/wp/wp-includes/blocks/details\";i:2030;s:47:\"/var/www/html/web/wp/wp-includes/blocks/gallery\";i:80571;s:67:\"/var/www/html/web/wp/wp-includes/blocks/comments-pagination-numbers\";i:1833;s:49:\"/var/www/html/web/wp/wp-includes/blocks/pullquote\";i:8267;s:49:\"/var/www/html/web/wp/wp-includes/blocks/paragraph\";i:6904;s:49:\"/var/www/html/web/wp/wp-includes/blocks/list-item\";i:1137;s:45:\"/var/www/html/web/wp/wp-includes/blocks/cover\";i:83346;s:50:\"/var/www/html/web/wp/wp-includes/blocks/media-text\";i:14445;s:52:\"/var/www/html/web/wp/wp-includes/blocks/post-content\";i:1389;s:58:\"/var/www/html/web/wp/wp-includes/blocks/comment-reply-link\";i:1001;s:59:\"/var/www/html/web/wp/wp-includes/blocks/comment-author-name\";i:1192;s:49:\"/var/www/html/web/wp/wp-includes/blocks/shortcode\";i:2918;s:45:\"/var/www/html/web/wp/wp-includes/blocks/table\";i:27351;s:56:\"/var/www/html/web/wp/wp-includes/blocks/query-pagination\";i:9403;s:46:\"/var/www/html/web/wp/wp-includes/blocks/button\";i:14416;s:53:\"/var/www/html/web/wp/wp-includes/blocks/legacy-widget\";i:556;s:50:\"/var/www/html/web/wp/wp-includes/blocks/post-terms\";i:1715;s:52:\"/var/www/html/web/wp/wp-includes/blocks/post-excerpt\";i:2925;s:44:\"/var/www/html/web/wp/wp-includes/blocks/list\";i:2173;s:49:\"/var/www/html/web/wp/wp-includes/blocks/read-more\";i:2526;s:56:\"/var/www/html/web/wp/wp-includes/blocks/term-description\";i:1751;s:46:\"/var/www/html/web/wp/wp-includes/blocks/spacer\";i:4737;s:56:\"/var/www/html/web/wp/wp-includes/blocks/comment-template\";i:2910;s:51:\"/var/www/html/web/wp/wp-includes/blocks/query-title\";i:1392;s:48:\"/var/www/html/web/wp/wp-includes/blocks/loginout\";i:1026;s:43:\"/var/www/html/web/wp/wp-includes/blocks/rss\";i:4491;s:52:\"/var/www/html/web/wp/wp-includes/blocks/widget-group\";i:400;s:52:\"/var/www/html/web/wp/wp-includes/blocks/site-tagline\";i:1625;s:48:\"/var/www/html/web/wp/wp-includes/blocks/comments\";i:28882;s:47:\"/var/www/html/web/wp/wp-includes/blocks/heading\";i:5731;s:47:\"/var/www/html/web/wp/wp-includes/blocks/columns\";i:9193;s:59:\"/var/www/html/web/wp/wp-includes/blocks/comments-pagination\";i:8628;s:45:\"/var/www/html/web/wp/wp-includes/blocks/quote\";i:6526;s:58:\"/var/www/html/web/wp/wp-includes/blocks/post-comments-form\";i:9737;s:44:\"/var/www/html/web/wp/wp-includes/blocks/html\";i:3770;s:57:\"/var/www/html/web/wp/wp-includes/blocks/comment-edit-link\";i:1213;s:59:\"/var/www/html/web/wp/wp-includes/blocks/post-featured-image\";i:29684;s:49:\"/var/www/html/web/wp/wp-includes/blocks/tag-cloud\";i:3616;s:53:\"/var/www/html/web/wp/wp-includes/blocks/template-part\";i:7986;s:53:\"/var/www/html/web/wp/wp-includes/blocks/post-template\";i:8072;s:52:\"/var/www/html/web/wp/wp-includes/blocks/social-links\";i:58808;s:46:\"/var/www/html/web/wp/wp-includes/blocks/column\";i:1597;s:61:\"/var/www/html/web/wp/wp-includes/blocks/post-author-biography\";i:971;s:45:\"/var/www/html/web/wp/wp-includes/blocks/image\";i:64157;s:49:\"/var/www/html/web/wp/wp-includes/blocks/site-logo\";i:17033;s:65:\"/var/www/html/web/wp/wp-includes/blocks/query-pagination-previous\";i:1051;s:50:\"/var/www/html/web/wp/wp-includes/blocks/navigation\";i:132149;s:68:\"/var/www/html/web/wp/wp-includes/blocks/comments-pagination-previous\";i:1023;s:55:\"/var/www/html/web/wp/wp-includes/blocks/latest-comments\";i:6657;s:47:\"/var/www/html/web/wp/wp-includes/blocks/pattern\";i:411;s:48:\"/var/www/html/web/wp/wp-includes/blocks/calendar\";i:3804;s:49:\"/var/www/html/web/wp/wp-includes/blocks/separator\";i:5038;s:45:\"/var/www/html/web/wp/wp-includes/blocks/verse\";i:1860;s:64:\"/var/www/html/web/wp/wp-includes/blocks/comments-pagination-next\";i:1011;s:55:\"/var/www/html/web/wp/wp-includes/blocks/navigation-link\";i:11752;s:52:\"/var/www/html/web/wp/wp-includes/blocks/comment-date\";i:1112;s:47:\"/var/www/html/web/wp/wp-includes/blocks/missing\";i:617;s:52:\"/var/www/html/web/wp/wp-includes/blocks/preformatted\";i:1696;s:61:\"/var/www/html/web/wp/wp-includes/blocks/query-pagination-next\";i:1039;s:48:\"/var/www/html/web/wp/wp-includes/blocks/freeform\";i:41824;s:60:\"/var/www/html/web/wp/wp-includes/blocks/post-navigation-link\";i:4010;s:44:\"/var/www/html/web/wp/wp-includes/blocks/code\";i:2638;s:39:\"/var/www/html/web/wp/wp-includes/blocks\";i:1503913;s:39:\"/var/www/html/web/wp/wp-includes/assets\";i:24990;s:51:\"/var/www/html/web/wp/wp-includes/css/dist/edit-site\";i:337302;s:57:\"/var/www/html/web/wp/wp-includes/css/dist/reusable-blocks\";i:2290;s:57:\"/var/www/html/web/wp/wp-includes/css/dist/block-directory\";i:15116;s:54:\"/var/www/html/web/wp/wp-includes/css/dist/block-editor\";i:617115;s:49:\"/var/www/html/web/wp/wp-includes/css/dist/widgets\";i:23740;s:56:\"/var/www/html/web/wp/wp-includes/css/dist/format-library\";i:5556;s:48:\"/var/www/html/web/wp/wp-includes/css/dist/editor\";i:249100;s:59:\"/var/www/html/web/wp/wp-includes/css/dist/customize-widgets\";i:23886;s:52:\"/var/www/html/web/wp/wp-includes/css/dist/components\";i:357993;s:62:\"/var/www/html/web/wp/wp-includes/css/dist/list-reusable-blocks\";i:17928;s:54:\"/var/www/html/web/wp/wp-includes/css/dist/edit-widgets\";i:95440;s:50:\"/var/www/html/web/wp/wp-includes/css/dist/patterns\";i:7442;s:45:\"/var/www/html/web/wp/wp-includes/css/dist/nux\";i:11624;s:50:\"/var/www/html/web/wp/wp-includes/css/dist/commands\";i:13442;s:53:\"/var/www/html/web/wp/wp-includes/css/dist/preferences\";i:8474;s:55:\"/var/www/html/web/wp/wp-includes/css/dist/block-library\";i:805380;s:51:\"/var/www/html/web/wp/wp-includes/css/dist/edit-post\";i:52240;s:41:\"/var/www/html/web/wp/wp-includes/css/dist\";i:2644068;s:36:\"/var/www/html/web/wp/wp-includes/css\";i:3289825;s:40:\"/var/www/html/web/wp/wp-includes/widgets\";i:158524;s:43:\"/var/www/html/web/wp/wp-includes/php-compat\";i:1253;s:58:\"/var/www/html/web/wp/wp-includes/SimplePie/XML/Declaration\";i:7098;s:46:\"/var/www/html/web/wp/wp-includes/SimplePie/XML\";i:7098;s:48:\"/var/www/html/web/wp/wp-includes/SimplePie/Cache\";i:39607;s:46:\"/var/www/html/web/wp/wp-includes/SimplePie/Net\";i:7493;s:48:\"/var/www/html/web/wp/wp-includes/SimplePie/Parse\";i:20551;s:55:\"/var/www/html/web/wp/wp-includes/SimplePie/Content/Type\";i:8015;s:50:\"/var/www/html/web/wp/wp-includes/SimplePie/Content\";i:8015;s:54:\"/var/www/html/web/wp/wp-includes/SimplePie/Decode/HTML\";i:17241;s:49:\"/var/www/html/web/wp/wp-includes/SimplePie/Decode\";i:17241;s:47:\"/var/www/html/web/wp/wp-includes/SimplePie/HTTP\";i:11487;s:42:\"/var/www/html/web/wp/wp-includes/SimplePie\";i:458625;s:38:\"/var/www/html/web/wp/wp-includes/fonts\";i:326266;s:45:\"/var/www/html/web/wp/wp-includes/images/media\";i:5263;s:47:\"/var/www/html/web/wp/wp-includes/images/crystal\";i:15541;s:47:\"/var/www/html/web/wp/wp-includes/images/smilies\";i:10082;s:39:\"/var/www/html/web/wp/wp-includes/images\";i:102178;s:49:\"/var/www/html/web/wp/wp-includes/Text/Diff/Engine\";i:31802;s:51:\"/var/www/html/web/wp/wp-includes/Text/Diff/Renderer\";i:5528;s:42:\"/var/www/html/web/wp/wp-includes/Text/Diff\";i:44136;s:37:\"/var/www/html/web/wp/wp-includes/Text\";i:57049;s:37:\"/var/www/html/web/wp/wp-includes/pomo\";i:57146;s:45:\"/var/www/html/web/wp/wp-includes/style-engine\";i:47528;s:45:\"/var/www/html/web/wp/wp-includes/theme-compat\";i:15656;s:48:\"/var/www/html/web/wp/wp-includes/rest-api/search\";i:16749;s:48:\"/var/www/html/web/wp/wp-includes/rest-api/fields\";i:22510;s:51:\"/var/www/html/web/wp/wp-includes/rest-api/endpoints\";i:848388;s:41:\"/var/www/html/web/wp/wp-includes/rest-api\";i:977234;s:36:\"/var/www/html/web/wp/wp-includes/IXR\";i:33915;s:45:\"/var/www/html/web/wp/wp-includes/certificates\";i:233231;s:42:\"/var/www/html/web/wp/wp-includes/PHPMailer\";i:233227;s:62:\"/var/www/html/web/wp/wp-includes/sodium_compat/src/Core/Base64\";i:22135;s:64:\"/var/www/html/web/wp/wp-includes/sodium_compat/src/Core/Poly1305\";i:12912;s:64:\"/var/www/html/web/wp/wp-includes/sodium_compat/src/Core/ChaCha20\";i:5264;s:69:\"/var/www/html/web/wp/wp-includes/sodium_compat/src/Core/Curve25519/Ge\";i:7881;s:66:\"/var/www/html/web/wp/wp-includes/sodium_compat/src/Core/Curve25519\";i:121645;s:68:\"/var/www/html/web/wp/wp-includes/sodium_compat/src/Core/SecretStream\";i:3624;s:55:\"/var/www/html/web/wp/wp-includes/sodium_compat/src/Core\";i:452743;s:66:\"/var/www/html/web/wp/wp-includes/sodium_compat/src/Core32/Poly1305\";i:15965;s:66:\"/var/www/html/web/wp/wp-includes/sodium_compat/src/Core32/ChaCha20\";i:6407;s:71:\"/var/www/html/web/wp/wp-includes/sodium_compat/src/Core32/Curve25519/Ge\";i:8177;s:68:\"/var/www/html/web/wp/wp-includes/sodium_compat/src/Core32/Curve25519\";i:122690;s:70:\"/var/www/html/web/wp/wp-includes/sodium_compat/src/Core32/SecretStream\";i:3656;s:57:\"/var/www/html/web/wp/wp-includes/sodium_compat/src/Core32\";i:437041;s:56:\"/var/www/html/web/wp/wp-includes/sodium_compat/src/PHP52\";i:4116;s:50:\"/var/www/html/web/wp/wp-includes/sodium_compat/src\";i:1207254;s:50:\"/var/www/html/web/wp/wp-includes/sodium_compat/lib\";i:87360;s:71:\"/var/www/html/web/wp/wp-includes/sodium_compat/namespaced/Core/Poly1305\";i:112;s:71:\"/var/www/html/web/wp/wp-includes/sodium_compat/namespaced/Core/ChaCha20\";i:224;s:76:\"/var/www/html/web/wp/wp-includes/sodium_compat/namespaced/Core/Curve25519/Ge\";i:602;s:73:\"/var/www/html/web/wp/wp-includes/sodium_compat/namespaced/Core/Curve25519\";i:820;s:62:\"/var/www/html/web/wp/wp-includes/sodium_compat/namespaced/Core\";i:2444;s:57:\"/var/www/html/web/wp/wp-includes/sodium_compat/namespaced\";i:2698;s:46:\"/var/www/html/web/wp/wp-includes/sodium_compat\";i:1303525;s:41:\"/var/www/html/web/wp/wp-includes/html-api\";i:330488;s:47:\"/var/www/html/web/wp/wp-includes/block-bindings\";i:3610;s:60:\"/var/www/html/web/wp/wp-includes/Requests/src/Exception/Http\";i:16715;s:65:\"/var/www/html/web/wp/wp-includes/Requests/src/Exception/Transport\";i:1397;s:55:\"/var/www/html/web/wp/wp-includes/Requests/src/Exception\";i:22464;s:54:\"/var/www/html/web/wp/wp-includes/Requests/src/Response\";i:3101;s:51:\"/var/www/html/web/wp/wp-includes/Requests/src/Proxy\";i:4217;s:53:\"/var/www/html/web/wp/wp-includes/Requests/src/Utility\";i:7176;s:55:\"/var/www/html/web/wp/wp-includes/Requests/src/Transport\";i:35470;s:52:\"/var/www/html/web/wp/wp-includes/Requests/src/Cookie\";i:4363;s:50:\"/var/www/html/web/wp/wp-includes/Requests/src/Auth\";i:2541;s:45:\"/var/www/html/web/wp/wp-includes/Requests/src\";i:214849;s:49:\"/var/www/html/web/wp/wp-includes/Requests/library\";i:261;s:41:\"/var/www/html/web/wp/wp-includes/Requests\";i:215110;s:32:\"/var/www/html/web/wp/wp-includes\";i:48794197;s:20:\"/var/www/html/web/wp\";i:58049099;s:55:\"/var/www/html/web/app/themes/haiku-atelier-2024/src/inc\";i:1242;s:69:\"/var/www/html/web/app/themes/haiku-atelier-2024/src/sass/base/polices\";i:3890;s:70:\"/var/www/html/web/app/themes/haiku-atelier-2024/src/sass/base/elements\";i:3094;s:61:\"/var/www/html/web/app/themes/haiku-atelier-2024/src/sass/base\";i:8317;s:64:\"/var/www/html/web/app/themes/haiku-atelier-2024/src/sass/layouts\";i:5543;s:66:\"/var/www/html/web/app/themes/haiku-atelier-2024/src/sass/abstracts\";i:261;s:56:\"/var/www/html/web/app/themes/haiku-atelier-2024/src/sass\";i:14611;s:51:\"/var/www/html/web/app/themes/haiku-atelier-2024/src\";i:18883;s:64:\"/var/www/html/web/app/themes/haiku-atelier-2024/assets/img/logos\";i:27943;s:64:\"/var/www/html/web/app/themes/haiku-atelier-2024/assets/img/icons\";i:643;s:58:\"/var/www/html/web/app/themes/haiku-atelier-2024/assets/img\";i:28586;s:58:\"/var/www/html/web/app/themes/haiku-atelier-2024/assets/css\";i:34494;s:67:\"/var/www/html/web/app/themes/haiku-atelier-2024/assets/fonts/myriad\";i:223544;s:65:\"/var/www/html/web/app/themes/haiku-atelier-2024/assets/fonts/lato\";i:775316;s:60:\"/var/www/html/web/app/themes/haiku-atelier-2024/assets/fonts\";i:998860;s:54:\"/var/www/html/web/app/themes/haiku-atelier-2024/assets\";i:1061940;s:59:\"/var/www/html/web/app/themes/haiku-atelier-2024/views/parts\";i:2562;s:53:\"/var/www/html/web/app/themes/haiku-atelier-2024/views\";i:3229;s:47:\"/var/www/html/web/app/themes/haiku-atelier-2024\";i:1087153;s:51:\"/var/www/html/web/app/themes/twentytwentyfour/parts\";i:1473;s:56:\"/var/www/html/web/app/themes/twentytwentyfour/assets/css\";i:357;s:63:\"/var/www/html/web/app/themes/twentytwentyfour/assets/fonts/jost\";i:116852;s:64:\"/var/www/html/web/app/themes/twentytwentyfour/assets/fonts/cardo\";i:388180;s:74:\"/var/www/html/web/app/themes/twentytwentyfour/assets/fonts/instrument-sans\";i:187522;s:64:\"/var/www/html/web/app/themes/twentytwentyfour/assets/fonts/inter\";i:331004;s:58:\"/var/www/html/web/app/themes/twentytwentyfour/assets/fonts\";i:1023558;s:59:\"/var/www/html/web/app/themes/twentytwentyfour/assets/images\";i:1152100;s:52:\"/var/www/html/web/app/themes/twentytwentyfour/assets\";i:2176015;s:52:\"/var/www/html/web/app/themes/twentytwentyfour/styles\";i:33892;s:54:\"/var/www/html/web/app/themes/twentytwentyfour/patterns\";i:158957;s:55:\"/var/www/html/web/app/themes/twentytwentyfour/templates\";i:12953;s:45:\"/var/www/html/web/app/themes/twentytwentyfour\";i:3137090;s:28:\"/var/www/html/web/app/themes\";i:4224243;s:51:\"/var/www/html/web/app/plugins/falcon/src/Components\";i:3084;s:40:\"/var/www/html/web/app/plugins/falcon/src\";i:31297;s:52:\"/var/www/html/web/app/plugins/falcon/vendor/composer\";i:37088;s:43:\"/var/www/html/web/app/plugins/falcon/vendor\";i:37859;s:43:\"/var/www/html/web/app/plugins/falcon/assets\";i:6377;s:56:\"/var/www/html/web/app/plugins/falcon/views/settings/tabs\";i:13902;s:51:\"/var/www/html/web/app/plugins/falcon/views/settings\";i:13902;s:42:\"/var/www/html/web/app/plugins/falcon/views\";i:13902;s:36:\"/var/www/html/web/app/plugins/falcon\";i:97092;s:87:\"/var/www/html/web/app/plugins/woocommerce/packages/action-scheduler/lib/cron-expression\";i:29942;s:71:\"/var/www/html/web/app/plugins/woocommerce/packages/action-scheduler/lib\";i:33750;s:78:\"/var/www/html/web/app/plugins/woocommerce/packages/action-scheduler/deprecated\";i:13295;s:85:\"/var/www/html/web/app/plugins/woocommerce/packages/action-scheduler/classes/schedules\";i:10785;s:82:\"/var/www/html/web/app/plugins/woocommerce/packages/action-scheduler/classes/schema\";i:7801;s:87:\"/var/www/html/web/app/plugins/woocommerce/packages/action-scheduler/classes/data-stores\";i:100907;s:82:\"/var/www/html/web/app/plugins/woocommerce/packages/action-scheduler/classes/WP_CLI\";i:24146;s:85:\"/var/www/html/web/app/plugins/woocommerce/packages/action-scheduler/classes/abstracts\";i:83933;s:83:\"/var/www/html/web/app/plugins/woocommerce/packages/action-scheduler/classes/actions\";i:4310;s:85:\"/var/www/html/web/app/plugins/woocommerce/packages/action-scheduler/classes/migration\";i:25699;s:75:\"/var/www/html/web/app/plugins/woocommerce/packages/action-scheduler/classes\";i:354350;s:67:\"/var/www/html/web/app/plugins/woocommerce/packages/action-scheduler\";i:475782;s:68:\"/var/www/html/web/app/plugins/woocommerce/packages/woocommerce-admin\";i:203;s:50:\"/var/www/html/web/app/plugins/woocommerce/packages\";i:475985;s:61:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/Marketing\";i:28244;s:67:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/PluginsProvider\";i:2800;s:68:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/DateTimeProvider\";i:885;s:57:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/Notes\";i:73813;s:61:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/Overrides\";i:11224;s:91:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/RemoteSpecs/RuleProcessors/Transformers\";i:13683;s:78:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/RemoteSpecs/RuleProcessors\";i:62957;s:63:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/RemoteSpecs\";i:70693;s:66:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/BlockTemplates\";i:6035;s:89:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/RemoteInboxNotifications/Transformers\";i:5640;s:76:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/RemoteInboxNotifications\";i:47816;s:62:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/Schedulers\";i:9968;s:60:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/Composer\";i:2431;s:75:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/API/Reports/Stock/Stats\";i:8866;s:69:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/API/Reports/Stock\";i:25560;s:77:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/API/Reports/Coupons/Stats\";i:31578;s:71:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/API/Reports/Coupons\";i:57385;s:76:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/API/Reports/Orders/Stats\";i:69829;s:70:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/API/Reports/Orders\";i:113247;s:70:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/API/Reports/Export\";i:6937;s:75:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/API/Reports/Taxes/Stats\";i:24158;s:69:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/API/Reports/Taxes\";i:44181;s:85:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/API/Reports/PerformanceIndicators\";i:18932;s:79:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/API/Reports/Customers/Stats\";i:22026;s:73:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/API/Reports/Customers\";i:77212;s:77:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/API/Reports/Revenue/Stats\";i:9963;s:71:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/API/Reports/Revenue\";i:11562;s:70:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/API/Reports/Import\";i:8776;s:79:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/API/Reports/Downloads/Files\";i:594;s:79:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/API/Reports/Downloads/Stats\";i:18406;s:73:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/API/Reports/Downloads\";i:47160;s:74:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/API/Reports/Categories\";i:23874;s:78:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/API/Reports/Products/Stats\";i:29657;s:72:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/API/Reports/Products\";i:60372;s:80:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/API/Reports/Variations/Stats\";i:31208;s:74:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/API/Reports/Variations\";i:65298;s:63:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/API/Reports\";i:690145;s:65:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/API/Templates\";i:181;s:55:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/API\";i:1009815;s:87:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/Features/ShippingPartnerSuggestions\";i:13900;s:92:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/Features/AsyncProductEditorCategoryField\";i:2465;s:86:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/Features/PaymentGatewaySuggestions\";i:48662;s:96:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/Features/ProductBlockEditor/ProductTemplates\";i:3606;s:79:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/Features/ProductBlockEditor\";i:43908;s:85:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/Features/MarketingRecommendations\";i:21180;s:71:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/Features/Navigation\";i:47117;s:82:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/Features/OnboardingTasks/Tasks\";i:57661;s:76:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/Features/OnboardingTasks\";i:101089;s:60:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/Features\";i:303951;s:73:\"/var/www/html/web/app/plugins/woocommerce/src/Admin/PluginsInstallLoggers\";i:7021;s:51:\"/var/www/html/web/app/plugins/woocommerce/src/Admin\";i:1668946;s:67:\"/var/www/html/web/app/plugins/woocommerce/src/StoreApi/Routes/V1/AI\";i:21817;s:64:\"/var/www/html/web/app/plugins/woocommerce/src/StoreApi/Routes/V1\";i:176197;s:61:\"/var/www/html/web/app/plugins/woocommerce/src/StoreApi/Routes\";i:176533;s:64:\"/var/www/html/web/app/plugins/woocommerce/src/StoreApi/Utilities\";i:144845;s:65:\"/var/www/html/web/app/plugins/woocommerce/src/StoreApi/Exceptions\";i:7013;s:63:\"/var/www/html/web/app/plugins/woocommerce/src/StoreApi/Payments\";i:3857;s:65:\"/var/www/html/web/app/plugins/woocommerce/src/StoreApi/Formatters\";i:3796;s:68:\"/var/www/html/web/app/plugins/woocommerce/src/StoreApi/Schemas/V1/AI\";i:5159;s:65:\"/var/www/html/web/app/plugins/woocommerce/src/StoreApi/Schemas/V1\";i:178544;s:62:\"/var/www/html/web/app/plugins/woocommerce/src/StoreApi/Schemas\";i:189515;s:54:\"/var/www/html/web/app/plugins/woocommerce/src/StoreApi\";i:566738;s:62:\"/var/www/html/web/app/plugins/woocommerce/src/Checkout/Helpers\";i:10471;s:54:\"/var/www/html/web/app/plugins/woocommerce/src/Checkout\";i:10471;s:55:\"/var/www/html/web/app/plugins/woocommerce/src/Utilities\";i:50817;s:53:\"/var/www/html/web/app/plugins/woocommerce/src/Proxies\";i:5575;s:61:\"/var/www/html/web/app/plugins/woocommerce/src/LayoutTemplates\";i:6004;s:82:\"/var/www/html/web/app/plugins/woocommerce/src/Database/Migrations/CustomOrderTable\";i:64889;s:65:\"/var/www/html/web/app/plugins/woocommerce/src/Database/Migrations\";i:130927;s:54:\"/var/www/html/web/app/plugins/woocommerce/src/Database\";i:130927;s:63:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/Settings\";i:1834;s:60:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/WCCom\";i:685;s:65:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/ComingSoon\";i:8936;s:70:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/Admin/Marketing\";i:2591;s:72:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/Admin/ProductForm\";i:15057;s:75:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/Admin/Logging/FileV2\";i:50559;s:68:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/Admin/Logging\";i:97298;s:66:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/Admin/Notes\";i:105527;s:77:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/Admin/Orders/MetaBoxes\";i:24772;s:67:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/Admin/Orders\";i:126187;s:75:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/Admin/ProductReviews\";i:72648;s:81:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/Admin/RemoteFreeExtensions\";i:38047;s:75:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/Admin/BlockTemplates\";i:40707;s:71:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/Admin/Schedulers\";i:22212;s:71:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/Admin/Onboarding\";i:47641;s:75:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/Admin/WCPayPromotion\";i:8879;s:60:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/Admin\";i:764610;s:61:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/Orders\";i:32575;s:64:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/Utilities\";i:74076;s:97:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/ProductDownloads/ApprovedDirectories/Admin\";i:29372;s:91:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/ProductDownloads/ApprovedDirectories\";i:53710;s:71:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/ProductDownloads\";i:53710;s:92:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/DependencyManagement/ServiceProviders\";i:30612;s:75:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/DependencyManagement\";i:49112;s:61:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/Traits\";i:18786;s:81:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/ReceiptRendering/CardIcons\";i:44660;s:81:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/ReceiptRendering/Templates\";i:3661;s:71:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/ReceiptRendering\";i:72833;s:78:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/ProductAttributesLookup\";i:95073;s:69:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/TransientFiles\";i:22612;s:99:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/Features/ProductBlockEditor/ProductTemplates\";i:63353;s:82:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/Features/ProductBlockEditor\";i:63353;s:63:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/Features\";i:115099;s:70:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/BatchProcessing\";i:25054;s:67:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/ProductImage\";i:1973;s:72:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/DataStores/Orders\";i:284749;s:65:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/DataStores\";i:291991;s:59:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/Font\";i:11233;s:67:\"/var/www/html/web/app/plugins/woocommerce/src/Internal/Integrations\";i:2480;s:54:\"/var/www/html/web/app/plugins/woocommerce/src/Internal\";i:1676491;s:53:\"/var/www/html/web/app/plugins/woocommerce/src/Caching\";i:20668;s:52:\"/var/www/html/web/app/plugins/woocommerce/src/Caches\";i:3406;s:58:\"/var/www/html/web/app/plugins/woocommerce/src/Blocks/Utils\";i:78378;s:59:\"/var/www/html/web/app/plugins/woocommerce/src/Blocks/Assets\";i:25738;s:66:\"/var/www/html/web/app/plugins/woocommerce/src/Blocks/Interactivity\";i:4382;s:61:\"/var/www/html/web/app/plugins/woocommerce/src/Blocks/Patterns\";i:19338;s:81:\"/var/www/html/web/app/plugins/woocommerce/src/Blocks/BlockTypes/OrderConfirmation\";i:52098;s:63:\"/var/www/html/web/app/plugins/woocommerce/src/Blocks/BlockTypes\";i:502024;s:55:\"/var/www/html/web/app/plugins/woocommerce/src/Blocks/AI\";i:7106;s:74:\"/var/www/html/web/app/plugins/woocommerce/src/Blocks/Payments/Integrations\";i:11314;s:61:\"/var/www/html/web/app/plugins/woocommerce/src/Blocks/Payments\";i:21564;s:62:\"/var/www/html/web/app/plugins/woocommerce/src/Blocks/AIContent\";i:61720;s:62:\"/var/www/html/web/app/plugins/woocommerce/src/Blocks/Templates\";i:68111;s:76:\"/var/www/html/web/app/plugins/woocommerce/src/Blocks/InteractivityComponents\";i:8901;s:61:\"/var/www/html/web/app/plugins/woocommerce/src/Blocks/Shipping\";i:21953;s:59:\"/var/www/html/web/app/plugins/woocommerce/src/Blocks/Images\";i:8071;s:74:\"/var/www/html/web/app/plugins/woocommerce/src/Blocks/Domain/Services/Email\";i:4642;s:84:\"/var/www/html/web/app/plugins/woocommerce/src/Blocks/Domain/Services/OnboardingTasks\";i:3094;s:68:\"/var/www/html/web/app/plugins/woocommerce/src/Blocks/Domain/Services\";i:101360;s:59:\"/var/www/html/web/app/plugins/woocommerce/src/Blocks/Domain\";i:122574;s:65:\"/var/www/html/web/app/plugins/woocommerce/src/Blocks/Integrations\";i:6333;s:61:\"/var/www/html/web/app/plugins/woocommerce/src/Blocks/Registry\";i:5604;s:52:\"/var/www/html/web/app/plugins/woocommerce/src/Blocks\";i:1051533;s:45:\"/var/www/html/web/app/plugins/woocommerce/src\";i:5207127;s:64:\"/var/www/html/web/app/plugins/woocommerce/lib/packages/Detection\";i:79248;s:68:\"/var/www/html/web/app/plugins/woocommerce/lib/packages/Psr/Container\";i:1472;s:58:\"/var/www/html/web/app/plugins/woocommerce/lib/packages/Psr\";i:1472;s:81:\"/var/www/html/web/app/plugins/woocommerce/lib/packages/League/Container/Exception\";i:551;s:82:\"/var/www/html/web/app/plugins/woocommerce/lib/packages/League/Container/Definition\";i:12789;s:81:\"/var/www/html/web/app/plugins/woocommerce/lib/packages/League/Container/Inflector\";i:6143;s:80:\"/var/www/html/web/app/plugins/woocommerce/lib/packages/League/Container/Argument\";i:6726;s:87:\"/var/www/html/web/app/plugins/woocommerce/lib/packages/League/Container/ServiceProvider\";i:6476;s:71:\"/var/www/html/web/app/plugins/woocommerce/lib/packages/League/Container\";i:45593;s:61:\"/var/www/html/web/app/plugins/woocommerce/lib/packages/League\";i:45593;s:54:\"/var/www/html/web/app/plugins/woocommerce/lib/packages\";i:126313;s:45:\"/var/www/html/web/app/plugins/woocommerce/lib\";i:126313;s:53:\"/var/www/html/web/app/plugins/woocommerce/sample-data\";i:220042;s:87:\"/var/www/html/web/app/plugins/woocommerce/vendor/symfony/polyfill-php80/Resources/stubs\";i:2168;s:81:\"/var/www/html/web/app/plugins/woocommerce/vendor/symfony/polyfill-php80/Resources\";i:2168;s:71:\"/var/www/html/web/app/plugins/woocommerce/vendor/symfony/polyfill-php80\";i:10530;s:79:\"/var/www/html/web/app/plugins/woocommerce/vendor/symfony/css-selector/Exception\";i:4181;s:84:\"/var/www/html/web/app/plugins/woocommerce/vendor/symfony/css-selector/Parser/Handler\";i:10164;s:86:\"/var/www/html/web/app/plugins/woocommerce/vendor/symfony/css-selector/Parser/Tokenizer\";i:6588;s:85:\"/var/www/html/web/app/plugins/woocommerce/vendor/symfony/css-selector/Parser/Shortcut\";i:5802;s:76:\"/var/www/html/web/app/plugins/woocommerce/vendor/symfony/css-selector/Parser\";i:42755;s:85:\"/var/www/html/web/app/plugins/woocommerce/vendor/symfony/css-selector/XPath/Extension\";i:29007;s:75:\"/var/www/html/web/app/plugins/woocommerce/vendor/symfony/css-selector/XPath\";i:39841;s:74:\"/var/www/html/web/app/plugins/woocommerce/vendor/symfony/css-selector/Node\";i:17182;s:69:\"/var/www/html/web/app/plugins/woocommerce/vendor/symfony/css-selector\";i:107180;s:56:\"/var/www/html/web/app/plugins/woocommerce/vendor/symfony\";i:117710;s:80:\"/var/www/html/web/app/plugins/woocommerce/vendor/pelago/emogrifier/src/Utilities\";i:8638;s:74:\"/var/www/html/web/app/plugins/woocommerce/vendor/pelago/emogrifier/src/Css\";i:8803;s:78:\"/var/www/html/web/app/plugins/woocommerce/vendor/pelago/emogrifier/src/Caching\";i:2073;s:84:\"/var/www/html/web/app/plugins/woocommerce/vendor/pelago/emogrifier/src/HtmlProcessor\";i:30875;s:70:\"/var/www/html/web/app/plugins/woocommerce/vendor/pelago/emogrifier/src\";i:93292;s:66:\"/var/www/html/web/app/plugins/woocommerce/vendor/pelago/emogrifier\";i:94360;s:55:\"/var/www/html/web/app/plugins/woocommerce/vendor/pelago\";i:94360;s:86:\"/var/www/html/web/app/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/CSSList\";i:29203;s:84:\"/var/www/html/web/app/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/Value\";i:33050;s:87:\"/var/www/html/web/app/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/Property\";i:12540;s:83:\"/var/www/html/web/app/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/Rule\";i:10160;s:86:\"/var/www/html/web/app/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/Parsing\";i:16119;s:86:\"/var/www/html/web/app/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/Comment\";i:1617;s:86:\"/var/www/html/web/app/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/RuleSet\";i:41962;s:78:\"/var/www/html/web/app/plugins/woocommerce/vendor/sabberworm/php-css-parser/src\";i:161410;s:74:\"/var/www/html/web/app/plugins/woocommerce/vendor/sabberworm/php-css-parser\";i:162514;s:59:\"/var/www/html/web/app/plugins/woocommerce/vendor/sabberworm\";i:162514;s:84:\"/var/www/html/web/app/plugins/woocommerce/vendor/automattic/jetpack-a8c-mc-stats/src\";i:4364;s:80:\"/var/www/html/web/app/plugins/woocommerce/vendor/automattic/jetpack-a8c-mc-stats\";i:22780;s:80:\"/var/www/html/web/app/plugins/woocommerce/vendor/automattic/jetpack-admin-ui/src\";i:6664;s:76:\"/var/www/html/web/app/plugins/woocommerce/vendor/automattic/jetpack-admin-ui\";i:25080;s:78:\"/var/www/html/web/app/plugins/woocommerce/vendor/automattic/jetpack-status/src\";i:43599;s:74:\"/var/www/html/web/app/plugins/woocommerce/vendor/automattic/jetpack-status\";i:62015;s:80:\"/var/www/html/web/app/plugins/woocommerce/vendor/automattic/jetpack-redirect/src\";i:2602;s:76:\"/var/www/html/web/app/plugins/woocommerce/vendor/automattic/jetpack-redirect\";i:21018;s:81:\"/var/www/html/web/app/plugins/woocommerce/vendor/automattic/jetpack-constants/src\";i:3414;s:77:\"/var/www/html/web/app/plugins/woocommerce/vendor/automattic/jetpack-constants\";i:21830;s:78:\"/var/www/html/web/app/plugins/woocommerce/vendor/automattic/jetpack-config/src\";i:11782;s:74:\"/var/www/html/web/app/plugins/woocommerce/vendor/automattic/jetpack-config\";i:30198;s:82:\"/var/www/html/web/app/plugins/woocommerce/vendor/automattic/jetpack-autoloader/src\";i:81481;s:78:\"/var/www/html/web/app/plugins/woocommerce/vendor/automattic/jetpack-autoloader\";i:99897;s:77:\"/var/www/html/web/app/plugins/woocommerce/vendor/automattic/jetpack-roles/src\";i:1863;s:73:\"/var/www/html/web/app/plugins/woocommerce/vendor/automattic/jetpack-roles\";i:20279;s:83:\"/var/www/html/web/app/plugins/woocommerce/vendor/automattic/jetpack-connection/dist\";i:2191;s:91:\"/var/www/html/web/app/plugins/woocommerce/vendor/automattic/jetpack-connection/src/webhooks\";i:6218;s:82:\"/var/www/html/web/app/plugins/woocommerce/vendor/automattic/jetpack-connection/src\";i:262401;s:85:\"/var/www/html/web/app/plugins/woocommerce/vendor/automattic/jetpack-connection/legacy\";i:85946;s:78:\"/var/www/html/web/app/plugins/woocommerce/vendor/automattic/jetpack-connection\";i:368954;s:59:\"/var/www/html/web/app/plugins/woocommerce/vendor/automattic\";i:672051;s:52:\"/var/www/html/web/app/plugins/woocommerce/vendor/bin\";i:19348;s:92:\"/var/www/html/web/app/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers\";i:77612;s:81:\"/var/www/html/web/app/plugins/woocommerce/vendor/composer/installers/src/Composer\";i:77612;s:72:\"/var/www/html/web/app/plugins/woocommerce/vendor/composer/installers/src\";i:78080;s:68:\"/var/www/html/web/app/plugins/woocommerce/vendor/composer/installers\";i:79355;s:57:\"/var/www/html/web/app/plugins/woocommerce/vendor/composer\";i:834582;s:67:\"/var/www/html/web/app/plugins/woocommerce/vendor/jetpack-autoloader\";i:51562;s:88:\"/var/www/html/web/app/plugins/woocommerce/vendor/maxmind-db/reader/src/MaxMind/Db/Reader\";i:16839;s:81:\"/var/www/html/web/app/plugins/woocommerce/vendor/maxmind-db/reader/src/MaxMind/Db\";i:29467;s:78:\"/var/www/html/web/app/plugins/woocommerce/vendor/maxmind-db/reader/src/MaxMind\";i:29467;s:70:\"/var/www/html/web/app/plugins/woocommerce/vendor/maxmind-db/reader/src\";i:29467;s:76:\"/var/www/html/web/app/plugins/woocommerce/vendor/maxmind-db/reader/ext/tests\";i:709;s:70:\"/var/www/html/web/app/plugins/woocommerce/vendor/maxmind-db/reader/ext\";i:31944;s:66:\"/var/www/html/web/app/plugins/woocommerce/vendor/maxmind-db/reader\";i:76583;s:59:\"/var/www/html/web/app/plugins/woocommerce/vendor/maxmind-db\";i:76583;s:48:\"/var/www/html/web/app/plugins/woocommerce/vendor\";i:2029798;s:62:\"/var/www/html/web/app/plugins/woocommerce/assets/js/flexslider\";i:74711;s:61:\"/var/www/html/web/app/plugins/woocommerce/assets/js/selectWoo\";i:463933;s:62:\"/var/www/html/web/app/plugins/woocommerce/assets/js/photoswipe\";i:156989;s:65:\"/var/www/html/web/app/plugins/woocommerce/assets/js/jquery-tiptip\";i:10303;s:59:\"/var/www/html/web/app/plugins/woocommerce/assets/js/select2\";i:444591;s:66:\"/var/www/html/web/app/plugins/woocommerce/assets/js/jquery-payment\";i:26193;s:73:\"/var/www/html/web/app/plugins/woocommerce/assets/js/jquery-ui-touch-punch\";i:6358;s:63:\"/var/www/html/web/app/plugins/woocommerce/assets/js/prettyPhoto\";i:56955;s:63:\"/var/www/html/web/app/plugins/woocommerce/assets/js/stupidtable\";i:5713;s:65:\"/var/www/html/web/app/plugins/woocommerce/assets/js/jquery-cookie\";i:4550;s:62:\"/var/www/html/web/app/plugins/woocommerce/assets/js/accounting\";i:16783;s:63:\"/var/www/html/web/app/plugins/woocommerce/assets/js/jquery-flot\";i:214183;s:57:\"/var/www/html/web/app/plugins/woocommerce/assets/js/admin\";i:483578;s:57:\"/var/www/html/web/app/plugins/woocommerce/assets/js/round\";i:2271;s:65:\"/var/www/html/web/app/plugins/woocommerce/assets/js/jquery-qrcode\";i:45224;s:60:\"/var/www/html/web/app/plugins/woocommerce/assets/js/frontend\";i:203314;s:56:\"/var/www/html/web/app/plugins/woocommerce/assets/js/zoom\";i:8732;s:64:\"/var/www/html/web/app/plugins/woocommerce/assets/js/sourcebuster\";i:46700;s:66:\"/var/www/html/web/app/plugins/woocommerce/assets/js/jquery-blockui\";i:29694;s:72:\"/var/www/html/web/app/plugins/woocommerce/assets/js/jquery-serializejson\";i:22579;s:61:\"/var/www/html/web/app/plugins/woocommerce/assets/js/js-cookie\";i:5532;s:51:\"/var/www/html/web/app/plugins/woocommerce/assets/js\";i:2328886;s:76:\"/var/www/html/web/app/plugins/woocommerce/assets/css/photoswipe/default-skin\";i:22461;s:63:\"/var/www/html/web/app/plugins/woocommerce/assets/css/photoswipe\";i:31039;s:69:\"/var/www/html/web/app/plugins/woocommerce/assets/css/jquery-ui/images\";i:19610;s:62:\"/var/www/html/web/app/plugins/woocommerce/assets/css/jquery-ui\";i:109637;s:52:\"/var/www/html/web/app/plugins/woocommerce/assets/css\";i:2093041;s:54:\"/var/www/html/web/app/plugins/woocommerce/assets/fonts\";i:552889;s:77:\"/var/www/html/web/app/plugins/woocommerce/assets/images/template-placeholders\";i:2886;s:76:\"/var/www/html/web/app/plugins/woocommerce/assets/images/pattern-placeholders\";i:9410678;s:77:\"/var/www/html/web/app/plugins/woocommerce/assets/images/payment_methods/72x72\";i:35180;s:71:\"/var/www/html/web/app/plugins/woocommerce/assets/images/payment_methods\";i:35180;s:69:\"/var/www/html/web/app/plugins/woocommerce/assets/images/core-profiler\";i:307207;s:64:\"/var/www/html/web/app/plugins/woocommerce/assets/images/previews\";i:522602;s:72:\"/var/www/html/web/app/plugins/woocommerce/assets/images/blocks/mini-cart\";i:8753;s:86:\"/var/www/html/web/app/plugins/woocommerce/assets/images/blocks/product-filters-overlay\";i:6825;s:62:\"/var/www/html/web/app/plugins/woocommerce/assets/images/blocks\";i:15578;s:68:\"/var/www/html/web/app/plugins/woocommerce/assets/images/product_data\";i:1441;s:74:\"/var/www/html/web/app/plugins/woocommerce/assets/images/block-placeholders\";i:6496;s:73:\"/var/www/html/web/app/plugins/woocommerce/assets/images/shipping_partners\";i:205509;s:74:\"/var/www/html/web/app/plugins/woocommerce/assets/images/icons/credit-cards\";i:36070;s:61:\"/var/www/html/web/app/plugins/woocommerce/assets/images/icons\";i:41143;s:66:\"/var/www/html/web/app/plugins/woocommerce/assets/images/onboarding\";i:178839;s:67:\"/var/www/html/web/app/plugins/woocommerce/assets/images/admin_notes\";i:30986;s:71:\"/var/www/html/web/app/plugins/woocommerce/assets/images/payment-methods\";i:61832;s:65:\"/var/www/html/web/app/plugins/woocommerce/assets/images/marketing\";i:82806;s:65:\"/var/www/html/web/app/plugins/woocommerce/assets/images/task_list\";i:99632;s:55:\"/var/www/html/web/app/plugins/woocommerce/assets/images\";i:11811898;s:90:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/product-filter-stock-status\";i:993;s:81:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/product-collection\";i:1334;s:99:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/order-confirmation-additional-fields\";i:927;s:96:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/order-confirmation-totals-wrapper\";i:624;s:77:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/product-rating\";i:782;s:74:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/coming-soon\";i:290;s:81:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/product-categories\";i:1141;s:79:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/product-template\";i:1195;s:77:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/single-product\";i:616;s:98:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/order-confirmation-shipping-wrapper\";i:670;s:92:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/product-collection-no-results\";i:947;s:78:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/checkout-blocks\";i:300374;s:90:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/product-gallery-large-image\";i:544;s:78:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/product-reviews\";i:431;s:80:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/featured-category\";i:1843;s:83:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/product-filter-price\";i:684;s:107:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/order-confirmation-additional-fields-wrapper\";i:684;s:77:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/active-filters\";i:621;s:84:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/products-by-attribute\";i:1564;s:83:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/page-content-wrapper\";i:541;s:89:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/order-confirmation-summary\";i:1407;s:88:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/order-confirmation-status\";i:1262;s:79:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/attribute-filter\";i:1117;s:99:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/order-confirmation-downloads-wrapper\";i:632;s:84:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/product-filter-active\";i:636;s:76:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/store-notices\";i:498;s:90:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/product-filter-clear-button\";i:457;s:83:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/product-rating-stars\";i:879;s:97:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/order-confirmation-billing-address\";i:1364;s:75:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/price-filter\";i:852;s:75:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/stock-filter\";i:931;s:79:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/product-category\";i:1595;s:82:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/handpicked-products\";i:1422;s:71:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/checkout\";i:1155;s:72:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/mini-cart\";i:1212;s:78:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/product-gallery\";i:1590;s:85:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/product-rating-counter\";i:870;s:91:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/order-confirmation-downloads\";i:1511;s:80:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/classic-shortcode\";i:612;s:75:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/all-products\";i:727;s:80:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/product-top-rated\";i:1581;s:104:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/order-confirmation-additional-information\";i:955;s:74:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/product-new\";i:1567;s:74:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/breadcrumbs\";i:761;s:79:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/related-products\";i:432;s:77:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/product-filter\";i:766;s:76:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/rating-filter\";i:865;s:77:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/product-button\";i:1345;s:88:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/order-confirmation-totals\";i:1513;s:78:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/product-details\";i:440;s:77:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/filter-wrapper\";i:355;s:85:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/product-average-rating\";i:462;s:84:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/product-filter-rating\";i:918;s:74:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/cart-blocks\";i:193714;s:87:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/mini-cart-contents-block\";i:66484;s:79:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/customer-account\";i:811;s:87:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/product-filter-attribute\";i:1022;s:83:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/product-best-sellers\";i:1603;s:78:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/catalog-sorting\";i:540;s:79:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/featured-product\";i:1878;s:84:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/product-image-gallery\";i:461;s:78:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/product-filters\";i:785;s:74:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/product-tag\";i:1378;s:75:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/product-meta\";i:470;s:86:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/product-filters-overlay\";i:813;s:84:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/product-results-count\";i:530;s:84:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/product-gallery-pager\";i:478;s:79:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/add-to-cart-form\";i:589;s:104:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/product-gallery-large-image-next-previous\";i:750;s:111:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/cart-accepted-payment-methods-block\";i:469;s:112:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/cart-order-summary-coupon-form-block\";i:617;s:107:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/cart-order-summary-totals-block\";i:651;s:113:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-additional-information-block\";i:663;s:97:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-totals-block\";i:662;s:106:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/empty-mini-cart-contents-block\";i:616;s:97:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/cart-line-items-block\";i:590;s:101:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-order-note-block\";i:618;s:107:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/filled-mini-cart-contents-block\";i:622;s:110:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-contact-information-block\";i:612;s:115:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-order-summary-cart-items-block\";i:628;s:107:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-shipping-address-block\";i:603;s:104:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/cart-order-summary-fee-block\";i:619;s:103:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/mini-cart-title-label-block\";i:714;s:105:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-pickup-options-block\";i:586;s:113:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-order-summary-shipping-block\";i:581;s:98:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/mini-cart-footer-block\";i:617;s:104:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-order-summary-block\";i:578;s:110:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-order-summary-taxes-block\";i:632;s:106:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/cart-order-summary-taxes-block\";i:624;s:92:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/cart-items-block\";i:566;s:113:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-order-summary-subtotal-block\";i:641;s:116:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-order-summary-coupon-form-block\";i:625;s:101:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/proceed-to-checkout-block\";i:570;s:107:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/cart-cross-sells-products-block\";i:660;s:98:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-payment-block\";i:583;s:106:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-express-payment-block\";i:682;s:107:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/mini-cart-checkout-button-block\";i:837;s:111:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/mini-cart-title-items-counter-block\";i:674;s:97:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/mini-cart-items-block\";i:633;s:92:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/empty-cart-block\";i:587;s:107:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/mini-cart-shopping-button-block\";i:827;s:109:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/cart-order-summary-subtotal-block\";i:633;s:93:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/filled-cart-block\";i:598;s:100:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/cart-order-summary-block\";i:588;s:103:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/mini-cart-cart-button-block\";i:816;s:106:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/mini-cart-products-table-block\";i:632;s:106:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-shipping-method-block\";i:593;s:97:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/mini-cart-title-block\";i:715;s:106:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-billing-address-block\";i:600;s:107:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-shipping-methods-block\";i:612;s:109:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/cart-order-summary-shipping-block\";i:573;s:97:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-fields-block\";i:640;s:109:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/cart-order-summary-discount-block\";i:633;s:108:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/cart-order-summary-heading-block\";i:672;s:113:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-order-summary-discount-block\";i:641;s:108:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-order-summary-fee-block\";i:627;s:96:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-terms-block\";i:744;s:102:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/cart-express-payment-block\";i:614;s:111:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-order-summary-totals-block\";i:659;s:98:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-actions-block\";i:581;s:98:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/cart-cross-sells-block\";i:442;s:93:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/cart-totals-block\";i:677;s:75:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks\";i:33477;s:98:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/order-confirmation-shipping-address\";i:1367;s:97:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/order-confirmation-billing-wrapper\";i:641;s:89:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks/product-gallery-thumbnails\";i:641;s:62:\"/var/www/html/web/app/plugins/woocommerce/assets/client/blocks\";i:5183022;s:66:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/date\";i:44452;s:80:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/navigation-opt-out\";i:1123;s:66:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/data\";i:148336;s:74:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/experimental\";i:86621;s:68:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/tracks\";i:8027;s:86:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-category-metabox\";i:4209;s:77:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/block-templates\";i:127309;s:70:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/currency\";i:4673;s:79:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/marketing-coupons\";i:21280;s:65:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/app\";i:784133;s:69:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/notices\";i:1796;s:68:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/explat\";i:47344;s:72:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/components\";i:1088012;s:74:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/admin-layout\";i:3499;s:72:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/onboarding\";i:383066;s:78:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/wp-admin-scripts\";i:161259;s:87:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/payment-method-promotions\";i:2901;s:72:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/navigation\";i:44202;s:128:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-has-variations-notice\";i:1733;s:133:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-shipping-dimensions-fields\";i:2640;s:123:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-sale-price-field\";i:2158;s:120:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-custom-fields\";i:572;s:109:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/attributes\";i:3422;s:119:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/custom-fields-toggle\";i:2980;s:117:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/inventory-quantity\";i:3007;s:103:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/name\";i:5594;s:117:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-list-field\";i:5554;s:119:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-images-field\";i:3205;s:127:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/notice-edit-single-variation\";i:3197;s:123:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/downloads/downloads-menu\";i:2153;s:122:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/downloads/media-library\";i:1612;s:131:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/downloads/upload-files-menu-item\";i:1800;s:129:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/downloads/insert-url-menu-item\";i:2438;s:136:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/downloads/edit-downloads-modal/images\";i:2332;s:129:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/downloads/edit-downloads-modal\";i:6944;s:108:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/downloads\";i:22908;s:122:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-downloads-field\";i:8741;s:131:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-variations-options-field\";i:3830;s:128:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-variation-items-field\";i:2295;s:102:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/tag\";i:2467;s:127:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-shipping-class-field\";i:702;s:131:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-catalog-visibility-field\";i:727;s:128:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/summary/paragraph-rtl-control\";i:1391;s:106:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/summary\";i:6632;s:118:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/shipping-dimensions\";i:6717;s:133:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-custom-fields-toggle-field\";i:2058;s:117:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/catalog-visibility\";i:2233;s:120:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-summary-field\";i:3397;s:116:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-sku-field\";i:2093;s:114:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/inventory-email\";i:3469;s:120:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/notice-has-variations\";i:2395;s:117:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-name-field\";i:3197;s:112:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/custom-fields\";i:1978;s:134:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-details-section-description\";i:13811;s:131:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-inventory-quantity-field\";i:633;s:113:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/shipping-class\";i:5244;s:121:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-password-field\";i:622;s:121:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/description/components\";i:2931;s:110:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/description\";i:7250;s:114:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/variation-items\";i:7549;s:112:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/regular-price\";i:4007;s:111:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-list\";i:7662;s:123:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-attributes-field\";i:1995;s:123:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/images/place-holder/imgs\";i:13383;s:118:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/images/place-holder\";i:14896;s:105:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/images\";i:21670;s:123:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/variation-options/images\";i:2235;s:116:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/variation-options\";i:8858;s:112:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/inventory-sku\";i:2471;s:116:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-tag-field\";i:2864;s:127:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-schedule-sale-fields\";i:1652;s:124:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-description-field\";i:572;s:112:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/schedule-sale\";i:4850;s:126:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-regular-price-field\";i:2241;s:109:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/sale-price\";i:3595;s:130:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-single-variation-notice\";i:1698;s:107:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/password\";i:2037;s:128:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-inventory-email-field\";i:627;s:98:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields\";i:211809;s:122:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/product-subsection-description\";i:604;s:102:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/subsection\";i:2701;s:103:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/product-tab\";i:1762;s:119:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/product-section-description\";i:592;s:117:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/product-linked-list-field\";i:2123;s:114:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/product-checkbox-field\";i:868;s:128:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/text-area/toolbar/toolbar-button-rtl\";i:674;s:134:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/text-area/toolbar/toolbar-button-alignment\";i:907;s:109:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/text-area/toolbar\";i:1581;s:101:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/text-area\";i:7133;s:98:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/select\";i:3523;s:114:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/subsection-description\";i:2080;s:98:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/toggle\";i:4088;s:95:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/tab\";i:3912;s:112:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/product-toggle-field\";i:992;s:113:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/product-pricing-field\";i:1942;s:111:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/section-description\";i:2050;s:97:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/radio\";i:2621;s:107:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/product-section\";i:1822;s:110:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/product-text-field\";i:2244;s:112:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/product-number-field\";i:1858;s:111:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/linked-product-list\";i:8184;s:99:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/section\";i:2674;s:111:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/product-radio-field\";i:832;s:103:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/conditional\";i:2531;s:99:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/pricing\";i:3354;s:96:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/text\";i:5482;s:111:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/product-collapsible\";i:617;s:100:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/taxonomy\";i:8852;s:114:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/product-taxonomy-field\";i:3495;s:100:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/checkbox\";i:2685;s:103:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/collapsible\";i:2072;s:98:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/number\";i:3645;s:110:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/product-subsection\";i:755;s:112:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/product-select-field\";i:1165;s:115:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/product-text-area-field\";i:1370;s:91:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic\";i:90628;s:83:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks\";i:310482;s:76:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/product-editor\";i:1142135;s:72:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/csv-export\";i:4990;s:90:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/beta-features-tracking-modal\";i:1273;s:68:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/number\";i:2243;s:68:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/chunks\";i:1904551;s:83:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/customer-effort-score\";i:30784;s:89:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin/print-shipping-label-banner\";i:6773;s:61:\"/var/www/html/web/app/plugins/woocommerce/assets/client/admin\";i:6622059;s:55:\"/var/www/html/web/app/plugins/woocommerce/assets/client\";i:11805081;s:48:\"/var/www/html/web/app/plugins/woocommerce/assets\";i:28591795;s:61:\"/var/www/html/web/app/plugins/woocommerce/client/admin/config\";i:2299;s:54:\"/var/www/html/web/app/plugins/woocommerce/client/admin\";i:2299;s:48:\"/var/www/html/web/app/plugins/woocommerce/client\";i:2299;s:56:\"/var/www/html/web/app/plugins/woocommerce/i18n/languages\";i:1747540;s:46:\"/var/www/html/web/app/plugins/woocommerce/i18n\";i:2013376;s:50:\"/var/www/html/web/app/plugins/woocommerce/patterns\";i:208652;s:56:\"/var/www/html/web/app/plugins/woocommerce/includes/queue\";i:8898;s:61:\"/var/www/html/web/app/plugins/woocommerce/includes/shortcodes\";i:54308;s:54:\"/var/www/html/web/app/plugins/woocommerce/includes/cli\";i:38423;s:64:\"/var/www/html/web/app/plugins/woocommerce/includes/tracks/events\";i:51376;s:57:\"/var/www/html/web/app/plugins/woocommerce/includes/tracks\";i:75507;s:60:\"/var/www/html/web/app/plugins/woocommerce/includes/libraries\";i:26600;s:58:\"/var/www/html/web/app/plugins/woocommerce/includes/walkers\";i:8177;s:57:\"/var/www/html/web/app/plugins/woocommerce/includes/legacy\";i:77989;s:62:\"/var/www/html/web/app/plugins/woocommerce/includes/data-stores\";i:346017;s:80:\"/var/www/html/web/app/plugins/woocommerce/includes/wccom-site/rest-api/endpoints\";i:11577;s:70:\"/var/www/html/web/app/plugins/woocommerce/includes/wccom-site/rest-api\";i:17839;s:93:\"/var/www/html/web/app/plugins/woocommerce/includes/wccom-site/installation/installation-steps\";i:11303;s:74:\"/var/www/html/web/app/plugins/woocommerce/includes/wccom-site/installation\";i:27945;s:61:\"/var/www/html/web/app/plugins/woocommerce/includes/wccom-site\";i:57477;s:57:\"/var/www/html/web/app/plugins/woocommerce/includes/blocks\";i:2122;s:61:\"/var/www/html/web/app/plugins/woocommerce/includes/interfaces\";i:35472;s:61:\"/var/www/html/web/app/plugins/woocommerce/includes/customizer\";i:33397;s:64:\"/var/www/html/web/app/plugins/woocommerce/includes/admin/reports\";i:167441;s:73:\"/var/www/html/web/app/plugins/woocommerce/includes/admin/meta-boxes/views\";i:128486;s:67:\"/var/www/html/web/app/plugins/woocommerce/includes/admin/meta-boxes\";i:219869;s:71:\"/var/www/html/web/app/plugins/woocommerce/includes/admin/settings/views\";i:54972;s:65:\"/var/www/html/web/app/plugins/woocommerce/includes/admin/settings\";i:172360;s:68:\"/var/www/html/web/app/plugins/woocommerce/includes/admin/list-tables\";i:59028;s:75:\"/var/www/html/web/app/plugins/woocommerce/includes/admin/importers/mappings\";i:9193;s:72:\"/var/www/html/web/app/plugins/woocommerce/includes/admin/importers/views\";i:13062;s:66:\"/var/www/html/web/app/plugins/woocommerce/includes/admin/importers\";i:58181;s:86:\"/var/www/html/web/app/plugins/woocommerce/includes/admin/marketplace-suggestions/views\";i:287;s:90:\"/var/www/html/web/app/plugins/woocommerce/includes/admin/marketplace-suggestions/templates\";i:1574;s:80:\"/var/www/html/web/app/plugins/woocommerce/includes/admin/marketplace-suggestions\";i:10184;s:69:\"/var/www/html/web/app/plugins/woocommerce/includes/admin/helper/views\";i:17661;s:63:\"/var/www/html/web/app/plugins/woocommerce/includes/admin/helper\";i:148126;s:62:\"/var/www/html/web/app/plugins/woocommerce/includes/admin/views\";i:121333;s:77:\"/var/www/html/web/app/plugins/woocommerce/includes/admin/plugin-updates/views\";i:2685;s:71:\"/var/www/html/web/app/plugins/woocommerce/includes/admin/plugin-updates\";i:18386;s:62:\"/var/www/html/web/app/plugins/woocommerce/includes/admin/notes\";i:13659;s:56:\"/var/www/html/web/app/plugins/woocommerce/includes/admin\";i:1508682;s:58:\"/var/www/html/web/app/plugins/woocommerce/includes/widgets\";i:61034;s:65:\"/var/www/html/web/app/plugins/woocommerce/includes/payment-tokens\";i:6598;s:89:\"/var/www/html/web/app/plugins/woocommerce/includes/integrations/maxmind-geolocation/views\";i:839;s:83:\"/var/www/html/web/app/plugins/woocommerce/includes/integrations/maxmind-geolocation\";i:15058;s:63:\"/var/www/html/web/app/plugins/woocommerce/includes/integrations\";i:15058;s:66:\"/var/www/html/web/app/plugins/woocommerce/includes/gateways/cheque\";i:4736;s:76:\"/var/www/html/web/app/plugins/woocommerce/includes/gateways/paypal/assets/js\";i:2162;s:80:\"/var/www/html/web/app/plugins/woocommerce/includes/gateways/paypal/assets/images\";i:2454;s:73:\"/var/www/html/web/app/plugins/woocommerce/includes/gateways/paypal/assets\";i:4616;s:75:\"/var/www/html/web/app/plugins/woocommerce/includes/gateways/paypal/includes\";i:54515;s:66:\"/var/www/html/web/app/plugins/woocommerce/includes/gateways/paypal\";i:77527;s:64:\"/var/www/html/web/app/plugins/woocommerce/includes/gateways/bacs\";i:14991;s:63:\"/var/www/html/web/app/plugins/woocommerce/includes/gateways/cod\";i:13290;s:59:\"/var/www/html/web/app/plugins/woocommerce/includes/gateways\";i:116815;s:69:\"/var/www/html/web/app/plugins/woocommerce/includes/react-admin/emails\";i:3687;s:62:\"/var/www/html/web/app/plugins/woocommerce/includes/react-admin\";i:34566;s:63:\"/var/www/html/web/app/plugins/woocommerce/includes/log-handlers\";i:23124;s:69:\"/var/www/html/web/app/plugins/woocommerce/includes/rest-api/Utilities\";i:2852;s:80:\"/var/www/html/web/app/plugins/woocommerce/includes/rest-api/Controllers/Version3\";i:365908;s:81:\"/var/www/html/web/app/plugins/woocommerce/includes/rest-api/Controllers/Telemetry\";i:4679;s:80:\"/var/www/html/web/app/plugins/woocommerce/includes/rest-api/Controllers/Version1\";i:396739;s:80:\"/var/www/html/web/app/plugins/woocommerce/includes/rest-api/Controllers/Version2\";i:453924;s:71:\"/var/www/html/web/app/plugins/woocommerce/includes/rest-api/Controllers\";i:1221250;s:59:\"/var/www/html/web/app/plugins/woocommerce/includes/rest-api\";i:1234915;s:57:\"/var/www/html/web/app/plugins/woocommerce/includes/export\";i:40330;s:57:\"/var/www/html/web/app/plugins/woocommerce/includes/emails\";i:100280;s:64:\"/var/www/html/web/app/plugins/woocommerce/includes/theme-support\";i:26018;s:57:\"/var/www/html/web/app/plugins/woocommerce/includes/import\";i:56176;s:60:\"/var/www/html/web/app/plugins/woocommerce/includes/abstracts\";i:267717;s:57:\"/var/www/html/web/app/plugins/woocommerce/includes/traits\";i:2124;s:81:\"/var/www/html/web/app/plugins/woocommerce/includes/shipping/legacy-local-delivery\";i:6046;s:89:\"/var/www/html/web/app/plugins/woocommerce/includes/shipping/legacy-international-delivery\";i:2643;s:72:\"/var/www/html/web/app/plugins/woocommerce/includes/shipping/local-pickup\";i:4004;s:79:\"/var/www/html/web/app/plugins/woocommerce/includes/shipping/legacy-local-pickup\";i:6991;s:73:\"/var/www/html/web/app/plugins/woocommerce/includes/shipping/free-shipping\";i:8365;s:78:\"/var/www/html/web/app/plugins/woocommerce/includes/shipping/flat-rate/includes\";i:4220;s:69:\"/var/www/html/web/app/plugins/woocommerce/includes/shipping/flat-rate\";i:12294;s:80:\"/var/www/html/web/app/plugins/woocommerce/includes/shipping/legacy-free-shipping\";i:7209;s:85:\"/var/www/html/web/app/plugins/woocommerce/includes/shipping/legacy-flat-rate/includes\";i:5093;s:76:\"/var/www/html/web/app/plugins/woocommerce/includes/shipping/legacy-flat-rate\";i:17337;s:59:\"/var/www/html/web/app/plugins/woocommerce/includes/shipping\";i:64889;s:50:\"/var/www/html/web/app/plugins/woocommerce/includes\";i:6512655;s:56:\"/var/www/html/web/app/plugins/woocommerce/templates/loop\";i:12067;s:71:\"/var/www/html/web/app/plugins/woocommerce/templates/single-product/tabs\";i:3971;s:78:\"/var/www/html/web/app/plugins/woocommerce/templates/single-product/add-to-cart\";i:15543;s:66:\"/var/www/html/web/app/plugins/woocommerce/templates/single-product\";i:42783;s:56:\"/var/www/html/web/app/plugins/woocommerce/templates/auth\";i:7033;s:57:\"/var/www/html/web/app/plugins/woocommerce/templates/parts\";i:10431;s:64:\"/var/www/html/web/app/plugins/woocommerce/templates/product-form\";i:1260;s:59:\"/var/www/html/web/app/plugins/woocommerce/templates/notices\";i:2933;s:60:\"/var/www/html/web/app/plugins/woocommerce/templates/checkout\";i:36481;s:61:\"/var/www/html/web/app/plugins/woocommerce/templates/myaccount\";i:48888;s:56:\"/var/www/html/web/app/plugins/woocommerce/templates/cart\";i:32420;s:65:\"/var/www/html/web/app/plugins/woocommerce/templates/block-notices\";i:4629;s:57:\"/var/www/html/web/app/plugins/woocommerce/templates/order\";i:24189;s:64:\"/var/www/html/web/app/plugins/woocommerce/templates/emails/plain\";i:38216;s:58:\"/var/www/html/web/app/plugins/woocommerce/templates/emails\";i:91533;s:72:\"/var/www/html/web/app/plugins/woocommerce/templates/templates/blockified\";i:18180;s:61:\"/var/www/html/web/app/plugins/woocommerce/templates/templates\";i:23448;s:58:\"/var/www/html/web/app/plugins/woocommerce/templates/global\";i:10121;s:51:\"/var/www/html/web/app/plugins/woocommerce/templates\";i:373790;s:41:\"/var/www/html/web/app/plugins/woocommerce\";i:45825103;s:66:\"/var/www/html/web/app/plugins/polylang/modules/machine-translation\";i:1351;s:55:\"/var/www/html/web/app/plugins/polylang/modules/sitemaps\";i:11332;s:51:\"/var/www/html/web/app/plugins/polylang/modules/sync\";i:44536;s:56:\"/var/www/html/web/app/plugins/polylang/modules/wizard/js\";i:10763;s:57:\"/var/www/html/web/app/plugins/polylang/modules/wizard/css\";i:20078;s:60:\"/var/www/html/web/app/plugins/polylang/modules/wizard/images\";i:50176;s:53:\"/var/www/html/web/app/plugins/polylang/modules/wizard\";i:130236;s:51:\"/var/www/html/web/app/plugins/polylang/modules/wpml\";i:66958;s:57:\"/var/www/html/web/app/plugins/polylang/modules/share-slug\";i:1565;s:58:\"/var/www/html/web/app/plugins/polylang/modules/site-health\";i:14557;s:62:\"/var/www/html/web/app/plugins/polylang/modules/translate-slugs\";i:1590;s:46:\"/var/www/html/web/app/plugins/polylang/modules\";i:272125;s:47:\"/var/www/html/web/app/plugins/polylang/settings\";i:119552;s:46:\"/var/www/html/web/app/plugins/polylang/install\";i:39475;s:47:\"/var/www/html/web/app/plugins/polylang/js/build\";i:103657;s:41:\"/var/www/html/web/app/plugins/polylang/js\";i:103657;s:44:\"/var/www/html/web/app/plugins/polylang/flags\";i:74931;s:54:\"/var/www/html/web/app/plugins/polylang/vendor/composer\";i:58432;s:45:\"/var/www/html/web/app/plugins/polylang/vendor\";i:59203;s:48:\"/var/www/html/web/app/plugins/polylang/css/build\";i:65766;s:42:\"/var/www/html/web/app/plugins/polylang/css\";i:65766;s:44:\"/var/www/html/web/app/plugins/polylang/admin\";i:161850;s:47:\"/var/www/html/web/app/plugins/polylang/frontend\";i:110448;s:73:\"/var/www/html/web/app/plugins/polylang/integrations/custom-field-template\";i:1158;s:66:\"/var/www/html/web/app/plugins/polylang/integrations/duplicate-post\";i:1144;s:60:\"/var/www/html/web/app/plugins/polylang/integrations/wp-sweep\";i:2126;s:57:\"/var/www/html/web/app/plugins/polylang/integrations/wpseo\";i:18480;s:63:\"/var/www/html/web/app/plugins/polylang/integrations/wp-importer\";i:8892;s:59:\"/var/www/html/web/app/plugins/polylang/integrations/jetpack\";i:7768;s:68:\"/var/www/html/web/app/plugins/polylang/integrations/wp-offload-media\";i:2392;s:57:\"/var/www/html/web/app/plugins/polylang/integrations/yarpp\";i:719;s:68:\"/var/www/html/web/app/plugins/polylang/integrations/twenty-seventeen\";i:1120;s:66:\"/var/www/html/web/app/plugins/polylang/integrations/domain-mapping\";i:2590;s:68:\"/var/www/html/web/app/plugins/polylang/integrations/no-category-base\";i:1002;s:57:\"/var/www/html/web/app/plugins/polylang/integrations/cache\";i:3629;s:64:\"/var/www/html/web/app/plugins/polylang/integrations/aqua-resizer\";i:877;s:51:\"/var/www/html/web/app/plugins/polylang/integrations\";i:53022;s:46:\"/var/www/html/web/app/plugins/polylang/include\";i:356041;s:38:\"/var/www/html/web/app/plugins/polylang\";i:1566178;s:29:\"/var/www/html/web/app/plugins\";i:47488373;s:37:\"/var/www/html/web/app/uploads/2024/08\";i:0;s:34:\"/var/www/html/web/app/uploads/2024\";i:0;s:49:\"/var/www/html/web/app/uploads/woocommerce_uploads\";i:13;s:37:\"/var/www/html/web/app/uploads/wc-logs\";i:5283;s:29:\"/var/www/html/web/app/uploads\";i:285118;s:51:\"/var/www/haiku-atelier/web/wp/wp-includes/customize\";i:177349;s:45:\"/var/www/haiku-atelier/web/wp/wp-includes/IXR\";i:33915;s:56:\"/var/www/haiku-atelier/web/wp/wp-includes/block-supports\";i:130165;s:60:\"/var/www/haiku-atelier/web/wp/wp-includes/sitemaps/providers\";i:17593;s:50:\"/var/www/haiku-atelier/web/wp/wp-includes/sitemaps\";i:47491;s:54:\"/var/www/haiku-atelier/web/wp/wp-includes/theme-compat\";i:15656;s:52:\"/var/www/haiku-atelier/web/wp/wp-includes/php-compat\";i:1253;s:59:\"/var/www/haiku-atelier/web/wp/wp-includes/interactivity-api\";i:55295;s:60:\"/var/www/haiku-atelier/web/wp/wp-includes/Requests/src/Proxy\";i:4217;s:63:\"/var/www/haiku-atelier/web/wp/wp-includes/Requests/src/Response\";i:3101;s:69:\"/var/www/haiku-atelier/web/wp/wp-includes/Requests/src/Exception/Http\";i:16715;s:74:\"/var/www/haiku-atelier/web/wp/wp-includes/Requests/src/Exception/Transport\";i:1397;s:64:\"/var/www/haiku-atelier/web/wp/wp-includes/Requests/src/Exception\";i:22464;s:62:\"/var/www/haiku-atelier/web/wp/wp-includes/Requests/src/Utility\";i:7176;s:59:\"/var/www/haiku-atelier/web/wp/wp-includes/Requests/src/Auth\";i:2541;s:64:\"/var/www/haiku-atelier/web/wp/wp-includes/Requests/src/Transport\";i:35470;s:61:\"/var/www/haiku-atelier/web/wp/wp-includes/Requests/src/Cookie\";i:4363;s:54:\"/var/www/haiku-atelier/web/wp/wp-includes/Requests/src\";i:214849;s:58:\"/var/www/haiku-atelier/web/wp/wp-includes/Requests/library\";i:261;s:50:\"/var/www/haiku-atelier/web/wp/wp-includes/Requests\";i:215110;s:50:\"/var/www/haiku-atelier/web/wp/wp-includes/html-api\";i:330662;s:55:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/button\";i:14416;s:70:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/post-author-biography\";i:971;s:67:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/navigation-submenu\";i:5842;s:54:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/query\";i:14007;s:57:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/comments\";i:28882;s:61:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/post-content\";i:1389;s:56:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/buttons\";i:11183;s:57:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/nextpage\";i:3039;s:61:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/latest-posts\";i:11776;s:52:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/rss\";i:4491;s:54:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/table\";i:27351;s:64:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/latest-comments\";i:6657;s:63:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/page-list-item\";i:1109;s:58:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/post-date\";i:1377;s:53:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/html\";i:3770;s:61:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/comment-date\";i:1112;s:55:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/search\";i:19592;s:59:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/post-terms\";i:1715;s:58:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/tag-cloud\";i:3616;s:73:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/query-pagination-numbers\";i:1942;s:58:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/footnotes\";i:2642;s:56:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/pattern\";i:411;s:59:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/categories\";i:2825;s:58:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/list-item\";i:1137;s:53:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/file\";i:11514;s:61:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/widget-group\";i:400;s:53:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/more\";i:3770;s:68:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/comment-author-name\";i:1192;s:68:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/comments-pagination\";i:8628;s:54:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/cover\";i:83346;s:54:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/quote\";i:6526;s:61:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/site-tagline\";i:1625;s:68:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/post-featured-image\";i:29716;s:61:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/post-excerpt\";i:2925;s:60:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/social-link\";i:3474;s:56:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/heading\";i:5731;s:58:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/paragraph\";i:6904;s:53:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/list\";i:2173;s:56:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/columns\";i:9193;s:58:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/read-more\";i:2526;s:54:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/block\";i:587;s:54:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/image\";i:64157;s:77:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/comments-pagination-previous\";i:1023;s:66:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/comment-edit-link\";i:1213;s:59:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/post-title\";i:1823;s:64:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/comment-content\";i:1369;s:67:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/comment-reply-link\";i:1001;s:58:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/site-logo\";i:17033;s:62:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/template-part\";i:7986;s:55:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/spacer\";i:4737;s:58:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/page-list\";i:7663;s:57:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/loginout\";i:1026;s:67:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/post-comments-form\";i:9737;s:61:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/preformatted\";i:1696;s:58:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/home-link\";i:1130;s:62:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/post-template\";i:8072;s:65:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/post-author-name\";i:1118;s:54:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/embed\";i:11232;s:59:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/navigation\";i:132149;s:55:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/avatar\";i:2296;s:63:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/comments-title\";i:1701;s:65:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/query-no-results\";i:899;s:58:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/separator\";i:5038;s:62:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/legacy-widget\";i:556;s:53:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/code\";i:2638;s:65:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/query-pagination\";i:9403;s:59:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/site-title\";i:2289;s:56:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/gallery\";i:80571;s:56:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/missing\";i:617;s:74:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/query-pagination-previous\";i:1051;s:76:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/comments-pagination-numbers\";i:1833;s:70:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/query-pagination-next\";i:1039;s:59:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/media-text\";i:14445;s:54:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/verse\";i:1860;s:58:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/shortcode\";i:2918;s:58:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/pullquote\";i:8267;s:57:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/freeform\";i:41824;s:73:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/comments-pagination-next\";i:1011;s:64:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/navigation-link\";i:11752;s:65:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/term-description\";i:1751;s:60:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/query-title\";i:1392;s:65:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/comment-template\";i:2910;s:56:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/details\";i:2030;s:54:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/video\";i:11619;s:57:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/calendar\";i:3804;s:61:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/social-links\";i:58808;s:60:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/post-author\";i:2895;s:54:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/audio\";i:3660;s:61:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/text-columns\";i:3034;s:57:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/archives\";i:1725;s:55:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/column\";i:1597;s:69:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/post-navigation-link\";i:4010;s:54:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks/group\";i:9055;s:48:\"/var/www/haiku-atelier/web/wp/wp-includes/blocks\";i:1503945;s:54:\"/var/www/haiku-atelier/web/wp/wp-includes/style-engine\";i:47528;s:46:\"/var/www/haiku-atelier/web/wp/wp-includes/pomo\";i:57146;s:48:\"/var/www/haiku-atelier/web/wp/wp-includes/assets\";i:24990;s:49:\"/var/www/haiku-atelier/web/wp/wp-includes/widgets\";i:158524;s:67:\"/var/www/haiku-atelier/web/wp/wp-includes/SimplePie/XML/Declaration\";i:7098;s:55:\"/var/www/haiku-atelier/web/wp/wp-includes/SimplePie/XML\";i:7098;s:63:\"/var/www/haiku-atelier/web/wp/wp-includes/SimplePie/Decode/HTML\";i:17241;s:58:\"/var/www/haiku-atelier/web/wp/wp-includes/SimplePie/Decode\";i:17241;s:57:\"/var/www/haiku-atelier/web/wp/wp-includes/SimplePie/Parse\";i:20551;s:55:\"/var/www/haiku-atelier/web/wp/wp-includes/SimplePie/Net\";i:7493;s:57:\"/var/www/haiku-atelier/web/wp/wp-includes/SimplePie/Cache\";i:39607;s:64:\"/var/www/haiku-atelier/web/wp/wp-includes/SimplePie/Content/Type\";i:8015;s:59:\"/var/www/haiku-atelier/web/wp/wp-includes/SimplePie/Content\";i:8015;s:56:\"/var/www/haiku-atelier/web/wp/wp-includes/SimplePie/HTTP\";i:11487;s:51:\"/var/www/haiku-atelier/web/wp/wp-includes/SimplePie\";i:458625;s:56:\"/var/www/haiku-atelier/web/wp/wp-includes/block-bindings\";i:3610;s:47:\"/var/www/haiku-atelier/web/wp/wp-includes/fonts\";i:326266;s:45:\"/var/www/haiku-atelier/web/wp/wp-includes/ID3\";i:1160011;s:51:\"/var/www/haiku-atelier/web/wp/wp-includes/PHPMailer\";i:233227;s:57:\"/var/www/haiku-atelier/web/wp/wp-includes/rest-api/search\";i:16749;s:60:\"/var/www/haiku-atelier/web/wp/wp-includes/rest-api/endpoints\";i:848388;s:57:\"/var/www/haiku-atelier/web/wp/wp-includes/rest-api/fields\";i:22510;s:50:\"/var/www/haiku-atelier/web/wp/wp-includes/rest-api\";i:977234;s:54:\"/var/www/haiku-atelier/web/wp/wp-includes/certificates\";i:233231;s:54:\"/var/www/haiku-atelier/web/wp/wp-includes/js/jquery/ui\";i:787634;s:51:\"/var/www/haiku-atelier/web/wp/wp-includes/js/jquery\";i:1305370;s:53:\"/var/www/haiku-atelier/web/wp/wp-includes/js/thickbox\";i:31323;s:58:\"/var/www/haiku-atelier/web/wp/wp-includes/js/tinymce/utils\";i:18826;s:66:\"/var/www/haiku-atelier/web/wp/wp-includes/js/tinymce/themes/inlite\";i:452642;s:66:\"/var/www/haiku-atelier/web/wp/wp-includes/js/tinymce/themes/modern\";i:446221;s:59:\"/var/www/haiku-atelier/web/wp/wp-includes/js/tinymce/themes\";i:898863;s:70:\"/var/www/haiku-atelier/web/wp/wp-includes/js/tinymce/plugins/textcolor\";i:16237;s:69:\"/var/www/haiku-atelier/web/wp/wp-includes/js/tinymce/plugins/tabfocus\";i:5336;s:71:\"/var/www/haiku-atelier/web/wp/wp-includes/js/tinymce/plugins/fullscreen\";i:7779;s:66:\"/var/www/haiku-atelier/web/wp/wp-includes/js/tinymce/plugins/media\";i:57914;s:75:\"/var/www/haiku-atelier/web/wp/wp-includes/js/tinymce/plugins/directionality\";i:2749;s:67:\"/var/www/haiku-atelier/web/wp/wp-includes/js/tinymce/plugins/wplink\";i:26816;s:65:\"/var/www/haiku-atelier/web/wp/wp-includes/js/tinymce/plugins/link\";i:32949;s:68:\"/var/www/haiku-atelier/web/wp/wp-includes/js/tinymce/plugins/wpemoji\";i:5099;s:66:\"/var/www/haiku-atelier/web/wp/wp-includes/js/tinymce/plugins/image\";i:55874;s:74:\"/var/www/haiku-atelier/web/wp/wp-includes/js/tinymce/plugins/wptextpattern\";i:11923;s:66:\"/var/www/haiku-atelier/web/wp/wp-includes/js/tinymce/plugins/lists\";i:97383;s:70:\"/var/www/haiku-atelier/web/wp/wp-includes/js/tinymce/plugins/wordpress\";i:50628;s:72:\"/var/www/haiku-atelier/web/wp/wp-includes/js/tinymce/plugins/colorpicker\";i:4910;s:73:\"/var/www/haiku-atelier/web/wp/wp-includes/js/tinymce/plugins/wpautoresize\";i:8332;s:67:\"/var/www/haiku-atelier/web/wp/wp-includes/js/tinymce/plugins/wpview\";i:8985;s:72:\"/var/www/haiku-atelier/web/wp/wp-includes/js/tinymce/plugins/wpeditimage\";i:37711;s:68:\"/var/www/haiku-atelier/web/wp/wp-includes/js/tinymce/plugins/charmap\";i:31811;s:70:\"/var/www/haiku-atelier/web/wp/wp-includes/js/tinymce/plugins/wpdialogs\";i:3761;s:63:\"/var/www/haiku-atelier/web/wp/wp-includes/js/tinymce/plugins/hr\";i:1347;s:73:\"/var/www/haiku-atelier/web/wp/wp-includes/js/tinymce/plugins/compat3x/css\";i:8179;s:69:\"/var/www/haiku-atelier/web/wp/wp-includes/js/tinymce/plugins/compat3x\";i:21758;s:70:\"/var/www/haiku-atelier/web/wp/wp-includes/js/tinymce/plugins/wpgallery\";i:4806;s:66:\"/var/www/haiku-atelier/web/wp/wp-includes/js/tinymce/plugins/paste\";i:113193;s:60:\"/var/www/haiku-atelier/web/wp/wp-includes/js/tinymce/plugins\";i:607301;s:58:\"/var/www/haiku-atelier/web/wp/wp-includes/js/tinymce/langs\";i:15529;s:74:\"/var/www/haiku-atelier/web/wp/wp-includes/js/tinymce/skins/lightgray/fonts\";i:155760;s:72:\"/var/www/haiku-atelier/web/wp/wp-includes/js/tinymce/skins/lightgray/img\";i:2856;s:68:\"/var/www/haiku-atelier/web/wp/wp-includes/js/tinymce/skins/lightgray\";i:210254;s:75:\"/var/www/haiku-atelier/web/wp/wp-includes/js/tinymce/skins/wordpress/images\";i:14207;s:68:\"/var/www/haiku-atelier/web/wp/wp-includes/js/tinymce/skins/wordpress\";i:22831;s:58:\"/var/www/haiku-atelier/web/wp/wp-includes/js/tinymce/skins\";i:233085;s:52:\"/var/www/haiku-atelier/web/wp/wp-includes/js/tinymce\";i:2854127;s:50:\"/var/www/haiku-atelier/web/wp/wp-includes/js/jcrop\";i:24976;s:54:\"/var/www/haiku-atelier/web/wp/wp-includes/js/swfupload\";i:8715;s:53:\"/var/www/haiku-atelier/web/wp/wp-includes/js/plupload\";i:490468;s:58:\"/var/www/haiku-atelier/web/wp/wp-includes/js/imgareaselect\";i:49553;s:67:\"/var/www/haiku-atelier/web/wp/wp-includes/js/mediaelement/renderers\";i:18880;s:57:\"/var/www/haiku-atelier/web/wp/wp-includes/js/mediaelement\";i:721307;s:61:\"/var/www/haiku-atelier/web/wp/wp-includes/js/dist/development\";i:179848;s:56:\"/var/www/haiku-atelier/web/wp/wp-includes/js/dist/vendor\";i:2753435;s:49:\"/var/www/haiku-atelier/web/wp/wp-includes/js/dist\";i:21236724;s:49:\"/var/www/haiku-atelier/web/wp/wp-includes/js/crop\";i:20004;s:55:\"/var/www/haiku-atelier/web/wp/wp-includes/js/codemirror\";i:1287141;s:44:\"/var/www/haiku-atelier/web/wp/wp-includes/js\";i:30445287;s:60:\"/var/www/haiku-atelier/web/wp/wp-includes/css/dist/edit-post\";i:51948;s:59:\"/var/www/haiku-atelier/web/wp/wp-includes/css/dist/patterns\";i:7442;s:57:\"/var/www/haiku-atelier/web/wp/wp-includes/css/dist/editor\";i:249468;s:63:\"/var/www/haiku-atelier/web/wp/wp-includes/css/dist/edit-widgets\";i:95440;s:59:\"/var/www/haiku-atelier/web/wp/wp-includes/css/dist/commands\";i:13442;s:66:\"/var/www/haiku-atelier/web/wp/wp-includes/css/dist/block-directory\";i:15116;s:64:\"/var/www/haiku-atelier/web/wp/wp-includes/css/dist/block-library\";i:805412;s:58:\"/var/www/haiku-atelier/web/wp/wp-includes/css/dist/widgets\";i:23740;s:63:\"/var/www/haiku-atelier/web/wp/wp-includes/css/dist/block-editor\";i:617115;s:68:\"/var/www/haiku-atelier/web/wp/wp-includes/css/dist/customize-widgets\";i:23886;s:65:\"/var/www/haiku-atelier/web/wp/wp-includes/css/dist/format-library\";i:5556;s:62:\"/var/www/haiku-atelier/web/wp/wp-includes/css/dist/preferences\";i:8474;s:60:\"/var/www/haiku-atelier/web/wp/wp-includes/css/dist/edit-site\";i:337302;s:71:\"/var/www/haiku-atelier/web/wp/wp-includes/css/dist/list-reusable-blocks\";i:17928;s:61:\"/var/www/haiku-atelier/web/wp/wp-includes/css/dist/components\";i:357993;s:54:\"/var/www/haiku-atelier/web/wp/wp-includes/css/dist/nux\";i:11624;s:66:\"/var/www/haiku-atelier/web/wp/wp-includes/css/dist/reusable-blocks\";i:2290;s:50:\"/var/www/haiku-atelier/web/wp/wp-includes/css/dist\";i:2644176;s:45:\"/var/www/haiku-atelier/web/wp/wp-includes/css\";i:3289933;s:60:\"/var/www/haiku-atelier/web/wp/wp-includes/Text/Diff/Renderer\";i:5528;s:58:\"/var/www/haiku-atelier/web/wp/wp-includes/Text/Diff/Engine\";i:31802;s:51:\"/var/www/haiku-atelier/web/wp/wp-includes/Text/Diff\";i:44136;s:46:\"/var/www/haiku-atelier/web/wp/wp-includes/Text\";i:57049;s:56:\"/var/www/haiku-atelier/web/wp/wp-includes/images/crystal\";i:15541;s:54:\"/var/www/haiku-atelier/web/wp/wp-includes/images/media\";i:5263;s:56:\"/var/www/haiku-atelier/web/wp/wp-includes/images/smilies\";i:10082;s:48:\"/var/www/haiku-atelier/web/wp/wp-includes/images\";i:102178;s:56:\"/var/www/haiku-atelier/web/wp/wp-includes/block-patterns\";i:8843;s:59:\"/var/www/haiku-atelier/web/wp/wp-includes/sodium_compat/lib\";i:87360;s:79:\"/var/www/haiku-atelier/web/wp/wp-includes/sodium_compat/src/Core32/SecretStream\";i:3656;s:75:\"/var/www/haiku-atelier/web/wp/wp-includes/sodium_compat/src/Core32/ChaCha20\";i:6407;s:75:\"/var/www/haiku-atelier/web/wp/wp-includes/sodium_compat/src/Core32/Poly1305\";i:15965;s:80:\"/var/www/haiku-atelier/web/wp/wp-includes/sodium_compat/src/Core32/Curve25519/Ge\";i:8177;s:77:\"/var/www/haiku-atelier/web/wp/wp-includes/sodium_compat/src/Core32/Curve25519\";i:122690;s:66:\"/var/www/haiku-atelier/web/wp/wp-includes/sodium_compat/src/Core32\";i:437041;s:77:\"/var/www/haiku-atelier/web/wp/wp-includes/sodium_compat/src/Core/SecretStream\";i:3624;s:71:\"/var/www/haiku-atelier/web/wp/wp-includes/sodium_compat/src/Core/Base64\";i:22135;s:73:\"/var/www/haiku-atelier/web/wp/wp-includes/sodium_compat/src/Core/ChaCha20\";i:5264;s:73:\"/var/www/haiku-atelier/web/wp/wp-includes/sodium_compat/src/Core/Poly1305\";i:12912;s:78:\"/var/www/haiku-atelier/web/wp/wp-includes/sodium_compat/src/Core/Curve25519/Ge\";i:7881;s:75:\"/var/www/haiku-atelier/web/wp/wp-includes/sodium_compat/src/Core/Curve25519\";i:121645;s:64:\"/var/www/haiku-atelier/web/wp/wp-includes/sodium_compat/src/Core\";i:452743;s:65:\"/var/www/haiku-atelier/web/wp/wp-includes/sodium_compat/src/PHP52\";i:4116;s:59:\"/var/www/haiku-atelier/web/wp/wp-includes/sodium_compat/src\";i:1207254;s:80:\"/var/www/haiku-atelier/web/wp/wp-includes/sodium_compat/namespaced/Core/ChaCha20\";i:224;s:80:\"/var/www/haiku-atelier/web/wp/wp-includes/sodium_compat/namespaced/Core/Poly1305\";i:112;s:85:\"/var/www/haiku-atelier/web/wp/wp-includes/sodium_compat/namespaced/Core/Curve25519/Ge\";i:602;s:82:\"/var/www/haiku-atelier/web/wp/wp-includes/sodium_compat/namespaced/Core/Curve25519\";i:820;s:71:\"/var/www/haiku-atelier/web/wp/wp-includes/sodium_compat/namespaced/Core\";i:2444;s:66:\"/var/www/haiku-atelier/web/wp/wp-includes/sodium_compat/namespaced\";i:2698;s:55:\"/var/www/haiku-atelier/web/wp/wp-includes/sodium_compat\";i:1303525;s:46:\"/var/www/haiku-atelier/web/wp/wp-includes/l10n\";i:30499;s:41:\"/var/www/haiku-atelier/web/wp/wp-includes\";i:48797833;s:43:\"/var/www/haiku-atelier/web/wp/wp-admin/user\";i:3685;s:46:\"/var/www/haiku-atelier/web/wp/wp-admin/network\";i:125999;s:47:\"/var/www/haiku-atelier/web/wp/wp-admin/includes\";i:3069241;s:44:\"/var/www/haiku-atelier/web/wp/wp-admin/maint\";i:7592;s:49:\"/var/www/haiku-atelier/web/wp/wp-admin/js/widgets\";i:139432;s:41:\"/var/www/haiku-atelier/web/wp/wp-admin/js\";i:1971286;s:55:\"/var/www/haiku-atelier/web/wp/wp-admin/css/colors/ocean\";i:75229;s:56:\"/var/www/haiku-atelier/web/wp/wp-admin/css/colors/coffee\";i:75892;s:58:\"/var/www/haiku-atelier/web/wp/wp-admin/css/colors/midnight\";i:78486;s:55:\"/var/www/haiku-atelier/web/wp/wp-admin/css/colors/light\";i:78474;s:59:\"/var/www/haiku-atelier/web/wp/wp-admin/css/colors/ectoplasm\";i:77742;s:57:\"/var/www/haiku-atelier/web/wp/wp-admin/css/colors/sunrise\";i:78407;s:54:\"/var/www/haiku-atelier/web/wp/wp-admin/css/colors/blue\";i:77778;s:56:\"/var/www/haiku-atelier/web/wp/wp-admin/css/colors/modern\";i:77989;s:49:\"/var/www/haiku-atelier/web/wp/wp-admin/css/colors\";i:643556;s:42:\"/var/www/haiku-atelier/web/wp/wp-admin/css\";i:2542439;s:45:\"/var/www/haiku-atelier/web/wp/wp-admin/images\";i:426821;s:38:\"/var/www/haiku-atelier/web/wp/wp-admin\";i:9072296;s:29:\"/var/www/haiku-atelier/web/wp\";i:58054082;s:64:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/src/inc\";i:16246;s:87:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/src/scripts/lib/schemas/api/v3\";i:6589;s:84:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/src/scripts/lib/schemas/api\";i:16970;s:80:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/src/scripts/lib/schemas\";i:17870;s:85:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/src/scripts/lib/types/api/v3\";i:383;s:82:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/src/scripts/lib/types/api\";i:2909;s:78:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/src/scripts/lib/types\";i:4106;s:72:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/src/scripts/lib\";i:42733;s:79:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/src/scripts/constantes\";i:6552;s:68:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/src/scripts\";i:99856;s:71:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/src/sass/pages\";i:9304;s:75:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/src/sass/abstracts\";i:1400;s:73:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/src/sass/layouts\";i:32926;s:78:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/src/sass/base/polices\";i:7819;s:79:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/src/sass/base/elements\";i:6185;s:70:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/src/sass/base\";i:16318;s:65:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/src/sass\";i:60709;s:60:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/src\";i:182905;s:70:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/assets/vendor\";i:1155;s:74:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/assets/fonts/lato\";i:2681684;s:76:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/assets/fonts/myriad\";i:223544;s:69:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/assets/fonts\";i:2905228;s:73:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/assets/img/logos\";i:27641;s:80:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/assets/img/storytelling\";i:17708051;s:74:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/assets/img/paypal\";i:3161;s:73:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/assets/img/about\";i:41602782;s:73:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/assets/img/icons\";i:2965;s:94:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/assets/img/products/PRODUCTS/TAMANORI\";i:28185358;s:94:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/assets/img/products/PRODUCTS/BOROBORO\";i:12198378;s:94:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/assets/img/products/PRODUCTS/TANEMAKI\";i:51708624;s:90:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/assets/img/products/PRODUCTS/KARA\";i:20206872;s:92:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/assets/img/products/PRODUCTS/KISHOU\";i:1117321;s:91:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/assets/img/products/PRODUCTS/IKKAN\";i:7522617;s:92:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/assets/img/products/PRODUCTS/MUGURA\";i:48966844;s:91:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/assets/img/products/PRODUCTS/ROKKU\";i:30061913;s:91:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/assets/img/products/PRODUCTS/KAGUN\";i:39437895;s:91:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/assets/img/products/PRODUCTS/PIASU\";i:41429239;s:93:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/assets/img/products/PRODUCTS/HATTARI\";i:11237555;s:91:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/assets/img/products/PRODUCTS/HADOU\";i:14508333;s:85:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/assets/img/products/PRODUCTS\";i:306580949;s:82:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/assets/img/products/HADOU\";i:927234;s:86:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/assets/img/products/SIZECHART\";i:60067;s:76:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/assets/img/products\";i:308169029;s:67:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/assets/img\";i:367546884;s:72:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/assets/js/.vite\";i:23402;s:66:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/assets/js\";i:187659;s:73:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/assets/css/pages\";i:60815;s:67:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/assets/css\";i:168929;s:63:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/assets\";i:370810363;s:69:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/views/macros\";i:696;s:81:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/views/parts/pages/panier\";i:13142;s:82:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/views/parts/pages/produit\";i:5012;s:79:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/views/parts/pages/shop\";i:1199;s:74:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/views/parts/pages\";i:19353;s:68:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/views/parts\";i:26003;s:62:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024/views\";i:45157;s:56:\"/var/www/haiku-atelier/web/app/themes/haiku-atelier-2024\";i:371054731;s:64:\"/var/www/haiku-atelier/web/app/themes/twentytwentyfour/templates\";i:12953;s:63:\"/var/www/haiku-atelier/web/app/themes/twentytwentyfour/patterns\";i:158957;s:73:\"/var/www/haiku-atelier/web/app/themes/twentytwentyfour/assets/fonts/cardo\";i:388180;s:73:\"/var/www/haiku-atelier/web/app/themes/twentytwentyfour/assets/fonts/inter\";i:331004;s:72:\"/var/www/haiku-atelier/web/app/themes/twentytwentyfour/assets/fonts/jost\";i:116852;s:83:\"/var/www/haiku-atelier/web/app/themes/twentytwentyfour/assets/fonts/instrument-sans\";i:187522;s:67:\"/var/www/haiku-atelier/web/app/themes/twentytwentyfour/assets/fonts\";i:1023558;s:65:\"/var/www/haiku-atelier/web/app/themes/twentytwentyfour/assets/css\";i:357;s:68:\"/var/www/haiku-atelier/web/app/themes/twentytwentyfour/assets/images\";i:1152100;s:61:\"/var/www/haiku-atelier/web/app/themes/twentytwentyfour/assets\";i:2176015;s:61:\"/var/www/haiku-atelier/web/app/themes/twentytwentyfour/styles\";i:33892;s:60:\"/var/www/haiku-atelier/web/app/themes/twentytwentyfour/parts\";i:1473;s:54:\"/var/www/haiku-atelier/web/app/themes/twentytwentyfour\";i:3137090;s:37:\"/var/www/haiku-atelier/web/app/themes\";i:374191821;s:60:\"/var/www/haiku-atelier/web/app/plugins/falcon/src/Components\";i:3084;s:49:\"/var/www/haiku-atelier/web/app/plugins/falcon/src\";i:31297;s:52:\"/var/www/haiku-atelier/web/app/plugins/falcon/assets\";i:6377;s:61:\"/var/www/haiku-atelier/web/app/plugins/falcon/vendor/composer\";i:37088;s:52:\"/var/www/haiku-atelier/web/app/plugins/falcon/vendor\";i:37859;s:65:\"/var/www/haiku-atelier/web/app/plugins/falcon/views/settings/tabs\";i:13902;s:60:\"/var/www/haiku-atelier/web/app/plugins/falcon/views/settings\";i:13902;s:51:\"/var/www/haiku-atelier/web/app/plugins/falcon/views\";i:13902;s:45:\"/var/www/haiku-atelier/web/app/plugins/falcon\";i:97092;s:63:\"/var/www/haiku-atelier/web/app/plugins/query-monitor/collectors\";i:146052;s:60:\"/var/www/haiku-atelier/web/app/plugins/query-monitor/classes\";i:98467;s:57:\"/var/www/haiku-atelier/web/app/plugins/query-monitor/data\";i:15807;s:63:\"/var/www/haiku-atelier/web/app/plugins/query-monitor/wp-content\";i:2403;s:64:\"/var/www/haiku-atelier/web/app/plugins/query-monitor/output/html\";i:165089;s:63:\"/var/www/haiku-atelier/web/app/plugins/query-monitor/output/raw\";i:9533;s:67:\"/var/www/haiku-atelier/web/app/plugins/query-monitor/output/headers\";i:4820;s:59:\"/var/www/haiku-atelier/web/app/plugins/query-monitor/output\";i:197727;s:65:\"/var/www/haiku-atelier/web/app/plugins/query-monitor/assets/icons\";i:2156;s:59:\"/var/www/haiku-atelier/web/app/plugins/query-monitor/assets\";i:73257;s:68:\"/var/www/haiku-atelier/web/app/plugins/query-monitor/vendor/composer\";i:26857;s:59:\"/var/www/haiku-atelier/web/app/plugins/query-monitor/vendor\";i:27628;s:64:\"/var/www/haiku-atelier/web/app/plugins/query-monitor/dispatchers\";i:37910;s:52:\"/var/www/haiku-atelier/web/app/plugins/query-monitor\";i:636645;s:55:\"/var/www/haiku-atelier/web/app/plugins/polylang/include\";i:356041;s:65:\"/var/www/haiku-atelier/web/app/plugins/polylang/modules/wizard/js\";i:10763;s:66:\"/var/www/haiku-atelier/web/app/plugins/polylang/modules/wizard/css\";i:20078;s:69:\"/var/www/haiku-atelier/web/app/plugins/polylang/modules/wizard/images\";i:50176;s:62:\"/var/www/haiku-atelier/web/app/plugins/polylang/modules/wizard\";i:130236;s:64:\"/var/www/haiku-atelier/web/app/plugins/polylang/modules/sitemaps\";i:11332;s:67:\"/var/www/haiku-atelier/web/app/plugins/polylang/modules/site-health\";i:14557;s:71:\"/var/www/haiku-atelier/web/app/plugins/polylang/modules/translate-slugs\";i:1590;s:75:\"/var/www/haiku-atelier/web/app/plugins/polylang/modules/machine-translation\";i:1351;s:60:\"/var/www/haiku-atelier/web/app/plugins/polylang/modules/sync\";i:44536;s:66:\"/var/www/haiku-atelier/web/app/plugins/polylang/modules/share-slug\";i:1565;s:60:\"/var/www/haiku-atelier/web/app/plugins/polylang/modules/wpml\";i:66958;s:55:\"/var/www/haiku-atelier/web/app/plugins/polylang/modules\";i:272125;s:53:\"/var/www/haiku-atelier/web/app/plugins/polylang/admin\";i:161850;s:56:\"/var/www/haiku-atelier/web/app/plugins/polylang/frontend\";i:110448;s:63:\"/var/www/haiku-atelier/web/app/plugins/polylang/vendor/composer\";i:58432;s:54:\"/var/www/haiku-atelier/web/app/plugins/polylang/vendor\";i:59203;s:73:\"/var/www/haiku-atelier/web/app/plugins/polylang/integrations/aqua-resizer\";i:877;s:77:\"/var/www/haiku-atelier/web/app/plugins/polylang/integrations/no-category-base\";i:1002;s:66:\"/var/www/haiku-atelier/web/app/plugins/polylang/integrations/yarpp\";i:719;s:77:\"/var/www/haiku-atelier/web/app/plugins/polylang/integrations/wp-offload-media\";i:2392;s:68:\"/var/www/haiku-atelier/web/app/plugins/polylang/integrations/jetpack\";i:7768;s:72:\"/var/www/haiku-atelier/web/app/plugins/polylang/integrations/wp-importer\";i:8892;s:66:\"/var/www/haiku-atelier/web/app/plugins/polylang/integrations/wpseo\";i:18480;s:82:\"/var/www/haiku-atelier/web/app/plugins/polylang/integrations/custom-field-template\";i:1158;s:77:\"/var/www/haiku-atelier/web/app/plugins/polylang/integrations/twenty-seventeen\";i:1120;s:75:\"/var/www/haiku-atelier/web/app/plugins/polylang/integrations/domain-mapping\";i:2590;s:75:\"/var/www/haiku-atelier/web/app/plugins/polylang/integrations/duplicate-post\";i:1144;s:69:\"/var/www/haiku-atelier/web/app/plugins/polylang/integrations/wp-sweep\";i:2126;s:66:\"/var/www/haiku-atelier/web/app/plugins/polylang/integrations/cache\";i:3629;s:60:\"/var/www/haiku-atelier/web/app/plugins/polylang/integrations\";i:53022;s:55:\"/var/www/haiku-atelier/web/app/plugins/polylang/install\";i:39475;s:56:\"/var/www/haiku-atelier/web/app/plugins/polylang/js/build\";i:103657;s:50:\"/var/www/haiku-atelier/web/app/plugins/polylang/js\";i:103657;s:57:\"/var/www/haiku-atelier/web/app/plugins/polylang/css/build\";i:65766;s:51:\"/var/www/haiku-atelier/web/app/plugins/polylang/css\";i:65766;s:53:\"/var/www/haiku-atelier/web/app/plugins/polylang/flags\";i:74931;s:56:\"/var/www/haiku-atelier/web/app/plugins/polylang/settings\";i:119552;s:47:\"/var/www/haiku-atelier/web/app/plugins/polylang\";i:1566178;s:73:\"/var/www/haiku-atelier/web/app/plugins/force-regenerate-thumbnails/assets\";i:10275;s:66:\"/var/www/haiku-atelier/web/app/plugins/force-regenerate-thumbnails\";i:55299;s:87:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/templates/single-product/add-to-cart\";i:15556;s:80:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/templates/single-product/tabs\";i:3971;s:75:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/templates/single-product\";i:42878;s:69:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/templates/checkout\";i:36451;s:81:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/templates/templates/blockified\";i:18180;s:70:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/templates/templates\";i:23448;s:73:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/templates/emails/plain\";i:38319;s:67:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/templates/emails\";i:91920;s:65:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/templates/cart\";i:32634;s:70:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/templates/myaccount\";i:50782;s:67:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/templates/global\";i:10397;s:74:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/templates/block-notices\";i:4629;s:66:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/templates/order\";i:24189;s:73:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/templates/product-form\";i:1260;s:68:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/templates/notices\";i:2933;s:65:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/templates/auth\";i:7309;s:66:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/templates/parts\";i:10043;s:65:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/templates/loop\";i:12321;s:60:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/templates\";i:376768;s:73:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/lib/packages/Detection\";i:79248;s:77:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/lib/packages/Psr/Container\";i:1472;s:67:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/lib/packages/Psr\";i:1472;s:90:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/lib/packages/League/Container/Exception\";i:551;s:96:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/lib/packages/League/Container/ServiceProvider\";i:6476;s:91:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/lib/packages/League/Container/Definition\";i:12789;s:90:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/lib/packages/League/Container/Inflector\";i:6143;s:89:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/lib/packages/League/Container/Argument\";i:6726;s:80:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/lib/packages/League/Container\";i:45593;s:70:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/lib/packages/League\";i:45593;s:63:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/lib/packages\";i:126313;s:54:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/lib\";i:126313;s:62:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/sample-data\";i:220042;s:59:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/patterns\";i:124277;s:74:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/StoreApi/Formatters\";i:4658;s:73:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/StoreApi/Utilities\";i:145254;s:77:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/StoreApi/Schemas/V1/AI\";i:828;s:74:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/StoreApi/Schemas/V1\";i:174869;s:71:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/StoreApi/Schemas\";i:185840;s:76:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/StoreApi/Routes/V1/AI\";i:5335;s:73:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/StoreApi/Routes/V1\";i:163674;s:70:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/StoreApi/Routes\";i:164010;s:74:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/StoreApi/Exceptions\";i:7013;s:72:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/StoreApi/Payments\";i:3857;s:63:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/StoreApi\";i:551266;s:82:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/PluginsInstallLoggers\";i:7021;s:98:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/RemoteInboxNotifications/Transformers\";i:5640;s:85:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/RemoteInboxNotifications\";i:51416;s:75:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/BlockTemplates\";i:6035;s:70:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/Overrides\";i:11224;s:77:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/DateTimeProvider\";i:885;s:69:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/Composer\";i:2431;s:66:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/Notes\";i:73841;s:70:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/Marketing\";i:28244;s:88:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/API/Reports/Customers/Stats\";i:22904;s:82:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/API/Reports/Customers\";i:77739;s:86:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/API/Reports/Revenue/Stats\";i:9309;s:80:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/API/Reports/Revenue\";i:11036;s:87:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/API/Reports/Products/Stats\";i:29290;s:81:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/API/Reports/Products\";i:61183;s:79:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/API/Reports/Export\";i:6937;s:83:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/API/Reports/Categories\";i:21403;s:85:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/API/Reports/Orders/Stats\";i:62498;s:79:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/API/Reports/Orders\";i:103155;s:84:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/API/Reports/Stock/Stats\";i:8958;s:78:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/API/Reports/Stock\";i:25687;s:89:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/API/Reports/Variations/Stats\";i:30273;s:83:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/API/Reports/Variations\";i:62825;s:88:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/API/Reports/Downloads/Stats\";i:17498;s:88:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/API/Reports/Downloads/Files\";i:594;s:82:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/API/Reports/Downloads\";i:44458;s:86:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/API/Reports/Coupons/Stats\";i:30490;s:80:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/API/Reports/Coupons\";i:56521;s:84:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/API/Reports/Taxes/Stats\";i:23175;s:78:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/API/Reports/Taxes\";i:43714;s:79:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/API/Reports/Import\";i:8776;s:94:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/API/Reports/PerformanceIndicators\";i:19096;s:72:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/API/Reports\";i:694872;s:74:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/API/Templates\";i:181;s:67:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/API/AI\";i:16436;s:64:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/API\";i:1031204;s:71:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/Schedulers\";i:9819;s:76:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/PluginsProvider\";i:2800;s:89:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/Features/Blueprint/Importers\";i:9932;s:89:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/Features/Blueprint/Exporters\";i:16010;s:85:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/Features/Blueprint/Steps\";i:12826;s:79:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/Features/Blueprint\";i:47719;s:96:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/Features/ShippingPartnerSuggestions\";i:14445;s:91:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/Features/OnboardingTasks/Tasks\";i:58486;s:85:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/Features/OnboardingTasks\";i:102236;s:94:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/Features/MarketingRecommendations\";i:21179;s:95:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/Features/PaymentGatewaySuggestions\";i:57851;s:105:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/Features/ProductBlockEditor/ProductTemplates\";i:3606;s:88:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/Features/ProductBlockEditor\";i:43946;s:101:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/Features/AsyncProductEditorCategoryField\";i:2465;s:80:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/Features/Navigation\";i:37775;s:69:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/Features\";i:354011;s:100:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/RemoteSpecs/RuleProcessors/Transformers\";i:13683;s:87:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/RemoteSpecs/RuleProcessors\";i:63415;s:72:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin/RemoteSpecs\";i:71728;s:60:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Admin\";i:1747611;s:64:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Utilities\";i:53577;s:78:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/TransientFiles\";i:22612;s:82:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/Admin/ImportExport\";i:6146;s:84:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/Admin/WCPayPromotion\";i:12470;s:84:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/Admin/BlockTemplates\";i:40707;s:84:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/Admin/Logging/FileV2\";i:50566;s:77:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/Admin/Logging\";i:97520;s:80:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/Admin/Onboarding\";i:47801;s:75:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/Admin/Notes\";i:104650;s:86:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/Admin/Orders/MetaBoxes\";i:24772;s:76:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/Admin/Orders\";i:128350;s:79:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/Admin/Marketing\";i:2591;s:81:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/Admin/ProductForm\";i:15057;s:80:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/Admin/Schedulers\";i:22212;s:90:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/Admin/RemoteFreeExtensions\";i:41004;s:84:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/Admin/ProductReviews\";i:72648;s:69:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/Admin\";i:778158;s:73:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/Utilities\";i:78473;s:74:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/ComingSoon\";i:12349;s:71:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/Logging\";i:15828;s:90:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/ReceiptRendering/CardIcons\";i:44660;s:90:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/ReceiptRendering/Templates\";i:3661;s:80:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/ReceiptRendering\";i:73593;s:68:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/Font\";i:11233;s:76:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/ProductImage\";i:1973;s:81:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/DataStores/Orders\";i:285676;s:74:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/DataStores\";i:292918;s:79:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/BatchProcessing\";i:25545;s:70:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/Traits\";i:18786;s:106:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/ProductDownloads/ApprovedDirectories/Admin\";i:29372;s:100:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/ProductDownloads/ApprovedDirectories\";i:53710;s:80:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/ProductDownloads\";i:53710;s:87:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/ProductAttributesLookup\";i:95406;s:70:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/Orders\";i:32870;s:69:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/WCCom\";i:685;s:101:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/DependencyManagement/ServiceProviders\";i:32478;s:84:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/DependencyManagement\";i:50978;s:72:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/Settings\";i:1834;s:108:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/Features/ProductBlockEditor/ProductTemplates\";i:66833;s:91:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/Features/ProductBlockEditor\";i:66833;s:72:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/Features\";i:120939;s:76:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal/Integrations\";i:2474;s:63:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Internal\";i:1726157;s:91:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Database/Migrations/CustomOrderTable\";i:69217;s:74:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Database/Migrations\";i:135204;s:63:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Database\";i:135204;s:93:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Blocks/Domain/Services/OnboardingTasks\";i:3094;s:83:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Blocks/Domain/Services/Email\";i:4642;s:77:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Blocks/Domain/Services\";i:101382;s:68:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Blocks/Domain\";i:123033;s:68:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Blocks/Images\";i:8071;s:70:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Blocks/Patterns\";i:22111;s:90:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Blocks/BlockTypes/OrderConfirmation\";i:53330;s:72:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Blocks/BlockTypes\";i:521539;s:71:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Blocks/AIContent\";i:68267;s:68:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Blocks/Assets\";i:25904;s:75:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Blocks/Interactivity\";i:4382;s:70:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Blocks/Registry\";i:5604;s:70:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Blocks/Shipping\";i:21953;s:67:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Blocks/Utils\";i:80715;s:71:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Blocks/Templates\";i:69877;s:83:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Blocks/Payments/Integrations\";i:11314;s:70:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Blocks/Payments\";i:21564;s:64:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Blocks/AI\";i:7106;s:85:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Blocks/InteractivityComponents\";i:10100;s:74:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Blocks/Integrations\";i:6333;s:61:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Blocks\";i:1091452;s:61:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Caches\";i:3406;s:62:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Caching\";i:20668;s:71:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Checkout/Helpers\";i:10472;s:63:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Checkout\";i:10472;s:70:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/LayoutTemplates\";i:6004;s:62:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src/Proxies\";i:5575;s:54:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/src\";i:5367285;s:96:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/packages/action-scheduler/lib/cron-expression\";i:29942;s:80:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/packages/action-scheduler/lib\";i:33750;s:96:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/packages/action-scheduler/classes/data-stores\";i:101713;s:94:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/packages/action-scheduler/classes/migration\";i:25700;s:91:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/packages/action-scheduler/classes/WP_CLI\";i:24146;s:92:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/packages/action-scheduler/classes/actions\";i:4310;s:91:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/packages/action-scheduler/classes/schema\";i:7801;s:94:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/packages/action-scheduler/classes/schedules\";i:10785;s:94:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/packages/action-scheduler/classes/abstracts\";i:83943;s:84:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/packages/action-scheduler/classes\";i:355164;s:87:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/packages/action-scheduler/deprecated\";i:13295;s:76:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/packages/action-scheduler\";i:477051;s:77:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/packages/woocommerce-admin\";i:203;s:59:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/packages\";i:477254;s:98:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/print-shipping-label-banner\";i:7131;s:77:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/explat\";i:47344;s:83:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/admin-layout\";i:3499;s:79:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/currency\";i:4746;s:81:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/csv-export\";i:4990;s:74:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/app\";i:722758;s:99:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/beta-features-tracking-modal\";i:1273;s:75:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/data\";i:148210;s:140:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-catalog-visibility-field\";i:750;s:138:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/downloads/insert-url-menu-item\";i:2438;s:132:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/downloads/downloads-menu\";i:2153;s:145:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/downloads/edit-downloads-modal/images\";i:2332;s:138:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/downloads/edit-downloads-modal\";i:6944;s:140:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/downloads/upload-files-menu-item\";i:1800;s:131:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/downloads/media-library\";i:1612;s:117:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/downloads\";i:22944;s:126:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-name-field\";i:3203;s:125:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-sku-field\";i:2100;s:122:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/shipping-class\";i:5296;s:116:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/password\";i:2059;s:131:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-downloads-field\";i:8748;s:126:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/inventory-quantity\";i:3061;s:140:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-variations-options-field\";i:3839;s:121:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/inventory-sku\";i:2764;s:133:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-description-field\";i:576;s:132:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-sale-price-field\";i:2165;s:137:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-inventory-email-field\";i:635;s:121:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/custom-fields\";i:2008;s:123:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/inventory-email\";i:3517;s:129:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-summary-field\";i:3417;s:121:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/schedule-sale\";i:4934;s:123:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/variation-items\";i:7590;s:128:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/custom-fields-toggle\";i:3010;s:143:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-details-section-description\";i:13768;s:129:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/notice-has-variations\";i:2496;s:127:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/shipping-dimensions\";i:5766;s:136:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/notice-edit-single-variation\";i:3219;s:136:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-shipping-class-field\";i:713;s:129:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-custom-fields\";i:578;s:137:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/summary/paragraph-rtl-control\";i:1391;s:115:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/summary\";i:6722;s:121:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/regular-price\";i:4093;s:120:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-list\";i:7690;s:125:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-tag-field\";i:2873;s:126:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/catalog-visibility\";i:2333;s:137:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-variation-items-field\";i:2302;s:132:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-attributes-field\";i:2002;s:142:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-shipping-dimensions-fields\";i:2649;s:118:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/attributes\";i:3458;s:135:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-regular-price-field\";i:2248;s:111:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/tag\";i:2511;s:130:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/description/components\";i:2931;s:119:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/description\";i:7272;s:137:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-has-variations-notice\";i:1737;s:128:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-images-field\";i:3216;s:112:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/name\";i:5644;s:140:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-inventory-quantity-field\";i:642;s:132:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/variation-options/images\";i:2235;s:125:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/variation-options\";i:8902;s:118:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/sale-price\";i:3671;s:126:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-list-field\";i:5559;s:132:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/images/place-holder/imgs\";i:13383;s:127:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/images/place-holder\";i:14896;s:114:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/images\";i:21738;s:130:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-password-field\";i:626;s:139:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-single-variation-notice\";i:1702;s:142:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-custom-fields-toggle-field\";i:2064;s:136:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields/product-schedule-sale-fields\";i:1661;s:107:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/product-fields\";i:212471;s:121:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/product-number-field\";i:1864;s:108:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/section\";i:2766;s:123:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/product-checkbox-field\";i:877;s:107:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/select\";i:3559;s:124:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/product-text-area-field\";i:1415;s:116:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/product-section\";i:1843;s:105:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/text\";i:5590;s:122:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/product-pricing-field\";i:1949;s:120:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/product-collapsible\";i:616;s:119:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/product-text-field\";i:2251;s:137:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/text-area/toolbar/toolbar-button-rtl\";i:674;s:143:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/text-area/toolbar/toolbar-button-alignment\";i:907;s:118:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/text-area/toolbar\";i:1581;s:110:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/text-area\";i:7325;s:119:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/product-subsection\";i:776;s:104:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/tab\";i:4363;s:120:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/linked-product-list\";i:8443;s:112:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/collapsible\";i:2072;s:112:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/product-tab\";i:1945;s:126:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/product-linked-list-field\";i:2134;s:121:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/product-select-field\";i:1172;s:131:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/product-subsection-description\";i:610;s:108:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/pricing\";i:3390;s:123:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/subsection-description\";i:2110;s:109:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/taxonomy\";i:9171;s:120:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/section-description\";i:2080;s:111:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/subsection\";i:2793;s:106:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/radio\";i:2665;s:123:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/product-taxonomy-field\";i:3809;s:112:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/conditional\";i:2531;s:121:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/product-toggle-field\";i:1001;s:128:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/product-section-description\";i:598;s:107:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/toggle\";i:4132;s:120:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/product-radio-field\";i:841;s:107:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/number\";i:3705;s:109:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic/checkbox\";i:2729;s:100:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks/generic\";i:93125;s:92:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor/blocks\";i:313641;s:85:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-editor\";i:1155516;s:75:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/date\";i:44452;s:92:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/customer-effort-score\";i:30784;s:83:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/experimental\";i:86614;s:81:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/navigation\";i:43966;s:81:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/onboarding\";i:263375;s:95:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/woo-product-usage-notice\";i:6028;s:88:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/marketing-coupons\";i:21280;s:77:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/tracks\";i:8655;s:77:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/chunks\";i:1908969;s:78:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/notices\";i:1796;s:96:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/payment-method-promotions\";i:2901;s:85:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/remote-logging\";i:21615;s:86:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/block-templates\";i:127314;s:87:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/wp-admin-scripts\";i:333496;s:81:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/components\";i:1108294;s:95:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/product-category-metabox\";i:4209;s:77:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin/number\";i:2243;s:70:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/admin\";i:6638361;s:88:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/add-to-cart-form\";i:594;s:113:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/product-gallery-large-image-next-previous\";i:739;s:86:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/single-product\";i:618;s:94:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/product-rating-counter\";i:882;s:95:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/product-filters-overlay\";i:1012;s:113:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/order-confirmation-additional-information\";i:965;s:91:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/handpicked-products\";i:1434;s:98:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/product-gallery-thumbnails\";i:635;s:99:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/product-gallery-large-image\";i:633;s:96:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/mini-cart-contents-block\";i:31358;s:80:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/checkout\";i:1162;s:106:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/order-confirmation-billing-wrapper\";i:651;s:88:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/product-template\";i:1147;s:83:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/cart-blocks\";i:28151;s:89:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/classic-shortcode\";i:625;s:93:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/product-filter-rating\";i:905;s:85:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/rating-filter\";i:867;s:84:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/product-meta\";i:479;s:105:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/order-confirmation-totals-wrapper\";i:634;s:83:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/breadcrumbs\";i:771;s:84:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/stock-filter\";i:933;s:93:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/product-filter-active\";i:613;s:89:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/featured-category\";i:1842;s:94:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/product-average-rating\";i:446;s:93:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/products-by-attribute\";i:1585;s:86:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/filter-wrapper\";i:357;s:97:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/order-confirmation-totals\";i:1523;s:88:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/related-products\";i:441;s:93:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/product-results-count\";i:535;s:88:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/product-category\";i:1605;s:92:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/product-rating-stars\";i:870;s:86:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/product-rating\";i:791;s:87:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/product-filters\";i:1467;s:87:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/product-gallery\";i:1596;s:114:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-pickup-options-block\";i:588;s:122:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-order-summary-discount-block\";i:643;s:122:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-order-summary-shipping-block\";i:583;s:125:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-order-summary-coupon-form-block\";i:627;s:112:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/mini-cart-cart-button-block\";i:818;s:107:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/cart-cross-sells-block\";i:444;s:118:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/cart-order-summary-shipping-block\";i:575;s:116:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/filled-mini-cart-contents-block\";i:624;s:118:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/cart-order-summary-subtotal-block\";i:635;s:105:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-terms-block\";i:746;s:116:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-shipping-methods-block\";i:614;s:116:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/mini-cart-checkout-button-block\";i:836;s:122:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-additional-information-block\";i:665;s:106:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-fields-block\";i:642;s:110:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/proceed-to-checkout-block\";i:572;s:122:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-order-summary-subtotal-block\";i:643;s:119:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-contact-information-block\";i:614;s:115:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-billing-address-block\";i:602;s:116:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-shipping-address-block\";i:605;s:115:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/empty-mini-cart-contents-block\";i:618;s:115:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/cart-order-summary-taxes-block\";i:626;s:106:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/mini-cart-title-block\";i:717;s:107:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-actions-block\";i:583;s:106:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-totals-block\";i:664;s:118:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/cart-order-summary-discount-block\";i:635;s:107:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/mini-cart-footer-block\";i:619;s:109:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/cart-order-summary-block\";i:590;s:106:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/mini-cart-items-block\";i:635;s:116:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/mini-cart-shopping-button-block\";i:829;s:121:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/cart-order-summary-coupon-form-block\";i:619;s:113:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-order-summary-block\";i:580;s:117:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-order-summary-fee-block\";i:629;s:116:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/cart-cross-sells-products-block\";i:662;s:115:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-shipping-method-block\";i:595;s:120:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-order-summary-totals-block\";i:661;s:102:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/cart-totals-block\";i:679;s:124:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-order-summary-cart-items-block\";i:630;s:120:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/mini-cart-title-items-counter-block\";i:676;s:101:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/empty-cart-block\";i:594;s:120:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/cart-accepted-payment-methods-block\";i:471;s:119:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-order-summary-taxes-block\";i:634;s:113:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/cart-order-summary-fee-block\";i:621;s:111:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/cart-express-payment-block\";i:616;s:102:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/filled-cart-block\";i:605;s:117:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/cart-order-summary-heading-block\";i:674;s:110:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-order-note-block\";i:620;s:112:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/mini-cart-title-label-block\";i:716;s:106:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/cart-line-items-block\";i:592;s:101:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/cart-items-block\";i:568;s:115:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-express-payment-block\";i:684;s:116:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/cart-order-summary-totals-block\";i:653;s:107:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/checkout-payment-block\";i:585;s:115:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks/mini-cart-products-table-block\";i:634;s:84:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/inner-blocks\";i:33590;s:96:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/product-filter-attribute\";i:2045;s:88:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/attribute-filter\";i:1119;s:116:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/order-confirmation-additional-fields-wrapper\";i:684;s:92:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/product-best-sellers\";i:1613;s:90:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/product-categories\";i:1174;s:99:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/product-filter-stock-status\";i:978;s:108:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/order-confirmation-downloads-wrapper\";i:642;s:83:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/product-new\";i:1577;s:93:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/product-gallery-pager\";i:546;s:84:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/all-products\";i:737;s:90:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/product-collection\";i:1358;s:87:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/product-reviews\";i:436;s:93:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/product-image-gallery\";i:470;s:84:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/price-filter\";i:854;s:87:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/checkout-blocks\";i:62928;s:86:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/product-button\";i:1365;s:106:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/order-confirmation-billing-address\";i:1374;s:92:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/product-filter-price\";i:672;s:98:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/order-confirmation-summary\";i:1417;s:83:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/coming-soon\";i:311;s:87:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/product-details\";i:442;s:88:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/featured-product\";i:1888;s:108:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/order-confirmation-additional-fields\";i:937;s:87:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/catalog-sorting\";i:542;s:97:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/order-confirmation-status\";i:1272;s:88:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/customer-account\";i:815;s:92:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/page-content-wrapper\";i:543;s:85:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/store-notices\";i:508;s:101:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/product-collection-no-results\";i:947;s:100:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/order-confirmation-downloads\";i:1521;s:107:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/order-confirmation-shipping-address\";i:1377;s:81:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/mini-cart\";i:1304;s:99:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/product-filter-clear-button\";i:464;s:83:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/product-tag\";i:1388;s:107:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/order-confirmation-shipping-wrapper\";i:680;s:86:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/active-filters\";i:623;s:106:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/product-filters-overlay-navigation\";i:2137;s:89:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/product-top-rated\";i:1591;s:86:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks/product-filter\";i:826;s:71:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client/blocks\";i:4700944;s:64:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/client\";i:11339305;s:63:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/fonts\";i:552889;s:74:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/js/jquery-qrcode\";i:45224;s:75:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/js/jquery-payment\";i:26193;s:71:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/js/accounting\";i:16783;s:72:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/js/jquery-flot\";i:214183;s:81:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/js/jquery-serializejson\";i:22579;s:66:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/js/admin\";i:488725;s:82:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/js/jquery-ui-touch-punch\";i:6358;s:65:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/js/zoom\";i:8732;s:69:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/js/frontend\";i:209838;s:73:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/js/sourcebuster\";i:46700;s:66:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/js/round\";i:2271;s:72:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/js/stupidtable\";i:5713;s:71:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/js/flexslider\";i:74805;s:75:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/js/jquery-blockui\";i:29694;s:68:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/js/select2\";i:444591;s:71:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/js/photoswipe\";i:156989;s:70:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/js/js-cookie\";i:5532;s:74:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/js/jquery-tiptip\";i:10303;s:72:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/js/prettyPhoto\";i:56955;s:70:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/js/selectWoo\";i:464613;s:74:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/js/jquery-cookie\";i:4550;s:60:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/js\";i:2341331;s:78:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/css/jquery-ui/images\";i:19610;s:71:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/css/jquery-ui\";i:109637;s:85:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/css/photoswipe/default-skin\";i:22461;s:72:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/css/photoswipe\";i:31039;s:61:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/css\";i:2096198;s:78:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/images/core-profiler\";i:33862;s:86:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/images/template-placeholders\";i:2886;s:86:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/images/payment_methods/72x72\";i:35180;s:80:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/images/payment_methods\";i:35180;s:74:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/images/task_list\";i:83458;s:77:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/images/product_data\";i:1441;s:73:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/images/previews\";i:413623;s:95:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/images/blocks/product-filters-overlay\";i:6825;s:81:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/images/blocks/mini-cart\";i:8753;s:71:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/images/blocks\";i:15578;s:82:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/images/shipping_partners\";i:205509;s:75:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/images/onboarding\";i:240417;s:80:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/images/payment-methods\";i:67316;s:83:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/images/icons/credit-cards\";i:27486;s:70:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/images/icons\";i:31521;s:85:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/images/pattern-placeholders\";i:4053200;s:74:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/images/marketing\";i:82806;s:83:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/images/block-placeholders\";i:6496;s:76:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/images/admin_notes\";i:22969;s:64:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets/images\";i:5767572;s:57:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/assets\";i:22097295;s:70:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/client/admin/config\";i:2432;s:63:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/client/admin\";i:2432;s:57:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/client\";i:2432;s:61:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/bin\";i:19348;s:94:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/symfony/css-selector/XPath/Extension\";i:29007;s:84:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/symfony/css-selector/XPath\";i:39842;s:93:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/symfony/css-selector/Parser/Handler\";i:10164;s:94:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/symfony/css-selector/Parser/Shortcut\";i:5802;s:95:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/symfony/css-selector/Parser/Tokenizer\";i:6588;s:85:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/symfony/css-selector/Parser\";i:42756;s:83:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/symfony/css-selector/Node\";i:17185;s:88:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/symfony/css-selector/Exception\";i:4181;s:78:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/symfony/css-selector\";i:107185;s:96:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/symfony/polyfill-php80/Resources/stubs\";i:2168;s:90:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/symfony/polyfill-php80/Resources\";i:2168;s:80:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/symfony/polyfill-php80\";i:10530;s:65:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/symfony\";i:117715;s:96:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/Property\";i:13039;s:92:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/Rule\";i:10209;s:95:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/Parsing\";i:17616;s:95:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/CSSList\";i:30074;s:95:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/Comment\";i:1617;s:93:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/Value\";i:37869;s:95:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/RuleSet\";i:42613;s:87:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/sabberworm/php-css-parser/src\";i:171568;s:83:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/sabberworm/php-css-parser\";i:172672;s:68:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/sabberworm\";i:172672;s:101:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers\";i:77612;s:90:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/composer/installers/src/Composer\";i:77612;s:81:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/composer/installers/src\";i:78080;s:77:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/composer/installers\";i:79355;s:66:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/composer\";i:986889;s:83:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/opis/json-schema/src/Info\";i:5464;s:86:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/opis/json-schema/src/Formats\";i:9455;s:88:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/opis/json-schema/src/Resolvers\";i:26657;s:86:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/opis/json-schema/src/Schemas\";i:11417;s:86:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/opis/json-schema/src/Filters\";i:14233;s:94:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/opis/json-schema/src/Parsers/Pragmas\";i:6839;s:95:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/opis/json-schema/src/Parsers/Keywords\";i:104211;s:93:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/opis/json-schema/src/Parsers/Drafts\";i:16672;s:104:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/opis/json-schema/src/Parsers/KeywordValidators\";i:2046;s:86:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/opis/json-schema/src/Parsers\";i:168548;s:86:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/opis/json-schema/src/Pragmas\";i:9060;s:87:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/opis/json-schema/src/Keywords\";i:149538;s:89:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/opis/json-schema/src/Exceptions\";i:14049;s:85:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/opis/json-schema/src/Errors\";i:19102;s:88:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/opis/json-schema/src/Variables\";i:6949;s:96:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/opis/json-schema/src/KeywordValidators\";i:4676;s:78:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/opis/json-schema/src\";i:512100;s:74:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/opis/json-schema\";i:523262;s:83:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/opis/string/src/Exception\";i:3792;s:73:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/opis/string/src\";i:45510;s:73:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/opis/string/res\";i:85488;s:69:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/opis/string\";i:141477;s:70:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/opis/uri/src\";i:50158;s:66:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/opis/uri\";i:61761;s:62:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/opis\";i:726500;s:76:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/jetpack-autoloader\";i:51562;s:87:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/woocommerce/blueprint/src/Cli\";i:2787;s:102:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/woocommerce/blueprint/src/docs/json-examples\";i:578;s:88:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/woocommerce/blueprint/src/docs\";i:578;s:91:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/woocommerce/blueprint/src/Schemas\";i:3561;s:93:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/woocommerce/blueprint/src/Importers\";i:13706;s:93:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/woocommerce/blueprint/src/Exporters\";i:5124;s:100:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/woocommerce/blueprint/src/ResultFormatters\";i:2804;s:100:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/woocommerce/blueprint/src/ResourceStorages\";i:5077;s:89:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/woocommerce/blueprint/src/Steps\";i:14199;s:83:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/woocommerce/blueprint/src\";i:87257;s:94:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/woocommerce/blueprint/tests/fixtures\";i:595;s:98:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/woocommerce/blueprint/tests/Unit/Schemas\";i:2144;s:90:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/woocommerce/blueprint/tests/Unit\";i:6049;s:101:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/woocommerce/blueprint/tests/stubs/Exporters\";i:643;s:91:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/woocommerce/blueprint/tests/stubs\";i:643;s:85:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/woocommerce/blueprint/tests\";i:8499;s:79:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/woocommerce/blueprint\";i:96039;s:69:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/woocommerce\";i:96039;s:83:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/pelago/emogrifier/src/Css\";i:8803;s:93:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/pelago/emogrifier/src/HtmlProcessor\";i:30875;s:89:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/pelago/emogrifier/src/Utilities\";i:8638;s:87:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/pelago/emogrifier/src/Caching\";i:2073;s:79:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/pelago/emogrifier/src\";i:93292;s:75:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/pelago/emogrifier\";i:94360;s:64:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/pelago\";i:94360;s:97:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/maxmind-db/reader/src/MaxMind/Db/Reader\";i:16839;s:90:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/maxmind-db/reader/src/MaxMind/Db\";i:29467;s:87:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/maxmind-db/reader/src/MaxMind\";i:29467;s:79:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/maxmind-db/reader/src\";i:29467;s:85:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/maxmind-db/reader/ext/tests\";i:709;s:79:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/maxmind-db/reader/ext\";i:31944;s:75:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/maxmind-db/reader\";i:76583;s:68:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/maxmind-db\";i:76583;s:112:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/automattic/jetpack-connection/src/identity-crisis/_inc\";i:2116;s:107:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/automattic/jetpack-connection/src/identity-crisis\";i:45720;s:100:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/automattic/jetpack-connection/src/webhooks\";i:6554;s:95:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/automattic/jetpack-connection/src/sso\";i:113495;s:91:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/automattic/jetpack-connection/src\";i:462283;s:92:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/automattic/jetpack-connection/dist\";i:82512;s:94:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/automattic/jetpack-connection/legacy\";i:86764;s:87:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/automattic/jetpack-connection\";i:649975;s:86:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/automattic/jetpack-roles/src\";i:1863;s:82:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/automattic/jetpack-roles\";i:20279;s:90:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/automattic/jetpack-constants/src\";i:3465;s:86:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/automattic/jetpack-constants\";i:21881;s:93:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/automattic/jetpack-a8c-mc-stats/src\";i:4364;s:89:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/automattic/jetpack-a8c-mc-stats\";i:22780;s:89:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/automattic/jetpack-admin-ui/src\";i:6809;s:85:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/automattic/jetpack-admin-ui\";i:25225;s:89:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/automattic/jetpack-assets/build\";i:8948;s:90:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/automattic/jetpack-assets/src/js\";i:2330;s:87:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/automattic/jetpack-assets/src\";i:40444;s:83:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/automattic/jetpack-assets\";i:68778;s:91:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/automattic/jetpack-autoloader/src\";i:81481;s:87:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/automattic/jetpack-autoloader\";i:99897;s:87:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/automattic/jetpack-config/src\";i:11782;s:83:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/automattic/jetpack-config\";i:30198;s:89:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/automattic/jetpack-redirect/src\";i:2606;s:85:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/automattic/jetpack-redirect\";i:21022;s:87:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/automattic/jetpack-status/src\";i:50948;s:83:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/automattic/jetpack-status\";i:69364;s:68:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor/automattic\";i:1029399;s:57:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/vendor\";i:3372155;s:71:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/data-stores\";i:354754;s:78:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/react-admin/emails\";i:3687;s:71:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/react-admin\";i:34639;s:69:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/libraries\";i:26600;s:70:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/customizer\";i:33397;s:72:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/log-handlers\";i:23124;s:67:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/walkers\";i:8177;s:73:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/product-usage\";i:3082;s:66:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/import\";i:56176;s:77:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/admin/list-tables\";i:59028;s:73:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/admin/reports\";i:167441;s:71:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/admin/notes\";i:13659;s:86:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/admin/plugin-updates/views\";i:2685;s:80:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/admin/plugin-updates\";i:18386;s:99:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/admin/marketplace-suggestions/templates\";i:1574;s:95:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/admin/marketplace-suggestions/views\";i:287;s:89:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/admin/marketplace-suggestions\";i:10184;s:71:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/admin/views\";i:121662;s:84:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/admin/importers/mappings\";i:9193;s:81:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/admin/importers/views\";i:13062;s:75:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/admin/importers\";i:62849;s:82:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/admin/meta-boxes/views\";i:131617;s:76:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/admin/meta-boxes\";i:223285;s:80:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/admin/settings/views\";i:55620;s:74:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/admin/settings\";i:181942;s:78:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/admin/helper/views\";i:17661;s:72:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/admin/helper\";i:165129;s:65:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/admin\";i:1542031;s:70:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/interfaces\";i:35473;s:66:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/emails\";i:100280;s:73:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/theme-support\";i:26018;s:66:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/traits\";i:2124;s:63:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/cli\";i:38423;s:66:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/blocks\";i:2122;s:67:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/widgets\";i:61034;s:65:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/queue\";i:8898;s:90:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/shipping/legacy-local-delivery\";i:6046;s:87:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/shipping/flat-rate/includes\";i:4220;s:78:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/shipping/flat-rate\";i:12294;s:88:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/shipping/legacy-local-pickup\";i:6991;s:81:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/shipping/local-pickup\";i:4004;s:98:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/shipping/legacy-international-delivery\";i:2643;s:82:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/shipping/free-shipping\";i:8365;s:89:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/shipping/legacy-free-shipping\";i:7209;s:94:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/shipping/legacy-flat-rate/includes\";i:5093;s:85:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/shipping/legacy-flat-rate\";i:17337;s:68:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/shipping\";i:64889;s:74:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/payment-tokens\";i:6598;s:69:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/abstracts\";i:268729;s:98:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/integrations/maxmind-geolocation/views\";i:839;s:92:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/integrations/maxmind-geolocation\";i:15058;s:72:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/integrations\";i:15058;s:73:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/tracks/events\";i:62168;s:66:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/tracks\";i:87347;s:66:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/export\";i:40330;s:89:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/rest-api/Controllers/Version3\";i:373774;s:89:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/rest-api/Controllers/Version2\";i:456837;s:89:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/rest-api/Controllers/Version1\";i:397047;s:90:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/rest-api/Controllers/Telemetry\";i:4679;s:80:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/rest-api/Controllers\";i:1232337;s:78:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/rest-api/Utilities\";i:2852;s:68:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/rest-api\";i:1246552;s:102:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/wccom-site/installation/installation-steps\";i:11303;s:83:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/wccom-site/installation\";i:27945;s:89:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/wccom-site/rest-api/endpoints\";i:11576;s:79:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/wccom-site/rest-api\";i:17838;s:70:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/wccom-site\";i:57476;s:72:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/gateways/cod\";i:13290;s:85:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/gateways/paypal/assets/js\";i:2162;s:89:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/gateways/paypal/assets/images\";i:2454;s:82:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/gateways/paypal/assets\";i:4616;s:84:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/gateways/paypal/includes\";i:54634;s:75:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/gateways/paypal\";i:77646;s:75:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/gateways/cheque\";i:4736;s:73:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/gateways/bacs\";i:14991;s:68:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/gateways\";i:116934;s:70:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/shortcodes\";i:53973;s:66:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes/legacy\";i:77989;s:59:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/includes\";i:6609222;s:65:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/i18n/languages\";i:1753660;s:55:\"/var/www/haiku-atelier/web/app/plugins/woocommerce/i18n\";i:2019496;s:50:\"/var/www/haiku-atelier/web/app/plugins/woocommerce\";i:40855736;s:73:\"/var/www/haiku-atelier/web/app/plugins/wp-openapi/build/resources/scripts\";i:2058766;s:69:\"/var/www/haiku-atelier/web/app/plugins/wp-openapi/build/resources/css\";i:1445;s:65:\"/var/www/haiku-atelier/web/app/plugins/wp-openapi/build/resources\";i:2060211;s:55:\"/var/www/haiku-atelier/web/app/plugins/wp-openapi/build\";i:2060211;s:61:\"/var/www/haiku-atelier/web/app/plugins/wp-openapi/src/Filters\";i:1300;s:58:\"/var/www/haiku-atelier/web/app/plugins/wp-openapi/src/Spec\";i:16940;s:57:\"/var/www/haiku-atelier/web/app/plugins/wp-openapi/src/CLI\";i:2060;s:53:\"/var/www/haiku-atelier/web/app/plugins/wp-openapi/src\";i:32330;s:56:\"/var/www/haiku-atelier/web/app/plugins/wp-openapi/assets\";i:417779;s:65:\"/var/www/haiku-atelier/web/app/plugins/wp-openapi/vendor/composer\";i:36281;s:56:\"/var/www/haiku-atelier/web/app/plugins/wp-openapi/vendor\";i:37052;s:67:\"/var/www/haiku-atelier/web/app/plugins/wp-openapi/resources/scripts\";i:1193;s:68:\"/var/www/haiku-atelier/web/app/plugins/wp-openapi/resources/elements\";i:2149767;s:64:\"/var/www/haiku-atelier/web/app/plugins/wp-openapi/resources/sass\";i:401;s:65:\"/var/www/haiku-atelier/web/app/plugins/wp-openapi/resources/views\";i:1979;s:59:\"/var/www/haiku-atelier/web/app/plugins/wp-openapi/resources\";i:2153340;s:49:\"/var/www/haiku-atelier/web/app/plugins/wp-openapi\";i:4718989;s:87:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/shipping_methods/chronopost\";i:21790;s:90:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/shipping_methods/mondial_relay\";i:14027;s:80:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/shipping_methods/ups\";i:14871;s:76:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/shipping_methods\";i:55876;s:76:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/lib/FPDI/filters\";i:5896;s:68:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/lib/FPDI\";i:100646;s:77:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/lib/tcpdf/include\";i:952612;s:76:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/lib/tcpdf/config\";i:1194;s:75:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/lib/tcpdf/fonts\";i:2529;s:75:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/lib/tcpdf/tools\";i:7413;s:69:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/lib/tcpdf\";i:2322586;s:63:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/lib\";i:2426416;s:84:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/admin/classes/chronopost\";i:80783;s:90:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/admin/classes/abstract_classes\";i:69630;s:80:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/admin/classes/config\";i:350;s:87:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/admin/classes/mondial_relay\";i:76867;s:77:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/admin/classes/ups\";i:70178;s:73:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/admin/classes\";i:299338;s:96:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/admin/partials/pickups/openstreetmap\";i:2964;s:96:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/admin/partials/pickups/mondial_relay\";i:3251;s:94:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/admin/partials/pickups/google_maps\";i:2540;s:82:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/admin/partials/pickups\";i:9732;s:83:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/admin/partials/shipping\";i:6384;s:81:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/admin/partials/config\";i:2233;s:92:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/admin/partials/orders/chronopost\";i:6964;s:98:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/admin/partials/orders/abstract_classes\";i:16698;s:95:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/admin/partials/orders/mondial_relay\";i:5948;s:85:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/admin/partials/orders/ups\";i:5812;s:81:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/admin/partials/orders\";i:35422;s:83:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/admin/partials/settings\";i:799;s:74:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/admin/partials\";i:54570;s:86:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/admin/assets/js/chronopost\";i:12119;s:97:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/admin/assets/js/pickups/openstreetmap\";i:15136;s:97:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/admin/assets/js/pickups/mondial_relay\";i:5469;s:95:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/admin/assets/js/pickups/google_maps\";i:14868;s:83:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/admin/assets/js/pickups\";i:37647;s:89:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/admin/assets/js/mondial_relay\";i:3080;s:79:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/admin/assets/js/dhl\";i:1381;s:79:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/admin/assets/js/ups\";i:3109;s:75:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/admin/assets/js\";i:61179;s:87:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/admin/assets/css/chronopost\";i:55;s:84:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/admin/assets/css/pickups\";i:4890;s:90:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/admin/assets/css/mondial_relay\";i:55;s:80:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/admin/assets/css/ups\";i:55;s:76:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/admin/assets/css\";i:5055;s:72:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/admin/assets\";i:66234;s:71:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/admin/views\";i:254;s:65:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/admin\";i:421863;s:77:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/woocommerce_block\";i:42885;s:85:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/resources/email/templates\";i:1248;s:75:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/resources/email\";i:1248;s:69:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/resources\";i:108037;s:83:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/front/pickup/chronopost\";i:4973;s:89:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/front/pickup/abstract_classes\";i:12853;s:86:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/front/pickup/mondial_relay\";i:4668;s:76:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/front/pickup/ups\";i:6516;s:72:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/front/pickup\";i:29010;s:96:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/front/partials/pickups/openstreetmap\";i:3603;s:96:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/front/partials/pickups/mondial_relay\";i:3812;s:94:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/front/partials/pickups/google_maps\";i:3461;s:82:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/front/partials/pickups\";i:10876;s:74:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/front/partials\";i:10876;s:97:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/front/assets/js/pickups/openstreetmap\";i:11083;s:97:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/front/assets/js/pickups/mondial_relay\";i:4894;s:102:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/front/assets/js/pickups/woocommerce_blocks\";i:2911;s:95:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/front/assets/js/pickups/google_maps\";i:11001;s:83:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/front/assets/js/pickups\";i:29889;s:75:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/front/assets/js\";i:29889;s:84:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/front/assets/css/pickups\";i:3911;s:76:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/front/assets/css\";i:3911;s:72:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/front/assets\";i:33800;s:65:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/front\";i:75274;s:75:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/helpers/classes\";i:374;s:74:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/helpers/helper\";i:7996;s:67:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc/helpers\";i:10238;s:59:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/inc\";i:3140589;s:71:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/vendor/composer\";i:35612;s:62:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping/vendor\";i:35751;s:55:\"/var/www/haiku-atelier/web/app/plugins/wc-multishipping\";i:3194686;s:38:\"/var/www/haiku-atelier/web/app/plugins\";i:51124625;s:58:\"/var/www/haiku-atelier/web/app/uploads/woocommerce_uploads\";i:14;s:46:\"/var/www/haiku-atelier/web/app/uploads/wc-logs\";i:4441;s:46:\"/var/www/haiku-atelier/web/app/uploads/2024/10\";i:122283131;s:46:\"/var/www/haiku-atelier/web/app/uploads/2024/09\";i:30092056;s:43:\"/var/www/haiku-atelier/web/app/uploads/2024\";i:152375187;s:38:\"/var/www/haiku-atelier/web/app/uploads\";i:152379642;}','off'), +(992,'woocommerce_marketplace_suggestions','a:2:{s:11:\"suggestions\";a:28:{i:0;a:4:{s:4:\"slug\";s:28:\"product-edit-meta-tab-header\";s:7:\"context\";s:28:\"product-edit-meta-tab-header\";s:5:\"title\";s:22:\"Recommended extensions\";s:13:\"allow-dismiss\";b:0;}i:1;a:6:{s:4:\"slug\";s:39:\"product-edit-meta-tab-footer-browse-all\";s:7:\"context\";s:28:\"product-edit-meta-tab-footer\";s:9:\"link-text\";s:21:\"Browse all extensions\";s:3:\"url\";s:64:\"https://woocommerce.com/product-category/woocommerce-extensions/\";s:8:\"promoted\";s:31:\"category-woocommerce-extensions\";s:13:\"allow-dismiss\";b:0;}i:2;a:9:{s:4:\"slug\";s:46:\"product-edit-mailchimp-woocommerce-memberships\";s:7:\"product\";s:33:\"woocommerce-memberships-mailchimp\";s:14:\"show-if-active\";a:1:{i:0;s:23:\"woocommerce-memberships\";}s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:116:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/mailchimp-for-memberships.svg\";s:5:\"title\";s:25:\"Mailchimp for Memberships\";s:4:\"copy\";s:79:\"Completely automate your email lists by syncing membership changes to Mailchimp\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:67:\"https://woocommerce.com/products/mailchimp-woocommerce-memberships/\";}i:3;a:9:{s:4:\"slug\";s:19:\"product-edit-addons\";s:7:\"product\";s:26:\"woocommerce-product-addons\";s:14:\"show-if-active\";a:2:{i:0;s:25:\"woocommerce-subscriptions\";i:1;s:20:\"woocommerce-bookings\";}s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:106:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/product-add-ons.svg\";s:5:\"title\";s:15:\"Product Add-Ons\";s:4:\"copy\";s:93:\"Offer add-ons like gift wrapping, special messages or other special options for your products\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:49:\"https://woocommerce.com/products/product-add-ons/\";}i:4;a:9:{s:4:\"slug\";s:46:\"product-edit-woocommerce-subscriptions-gifting\";s:7:\"product\";s:33:\"woocommerce-subscriptions-gifting\";s:14:\"show-if-active\";a:1:{i:0;s:25:\"woocommerce-subscriptions\";}s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:116:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/gifting-for-subscriptions.svg\";s:5:\"title\";s:25:\"Gifting for Subscriptions\";s:4:\"copy\";s:70:\"Let customers buy subscriptions for others - they\'re the ultimate gift\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:67:\"https://woocommerce.com/products/woocommerce-subscriptions-gifting/\";}i:5;a:9:{s:4:\"slug\";s:42:\"product-edit-teams-woocommerce-memberships\";s:7:\"product\";s:33:\"woocommerce-memberships-for-teams\";s:14:\"show-if-active\";a:1:{i:0;s:23:\"woocommerce-memberships\";}s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:112:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/teams-for-memberships.svg\";s:5:\"title\";s:21:\"Teams for Memberships\";s:4:\"copy\";s:123:\"Adds B2B functionality to WooCommerce Memberships, allowing sites to sell team, group, corporate, or family member accounts\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:63:\"https://woocommerce.com/products/teams-woocommerce-memberships/\";}i:6;a:8:{s:4:\"slug\";s:29:\"product-edit-variation-images\";s:7:\"product\";s:39:\"woocommerce-additional-variation-images\";s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:118:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/additional-variation-images.svg\";s:5:\"title\";s:27:\"Additional Variation Images\";s:4:\"copy\";s:72:\"Showcase your products in the best light with a image for each variation\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:73:\"https://woocommerce.com/products/woocommerce-additional-variation-images/\";}i:7;a:9:{s:4:\"slug\";s:47:\"product-edit-woocommerce-subscription-downloads\";s:7:\"product\";s:34:\"woocommerce-subscription-downloads\";s:14:\"show-if-active\";a:1:{i:0;s:25:\"woocommerce-subscriptions\";}s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:113:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/subscription-downloads.svg\";s:5:\"title\";s:22:\"Subscription Downloads\";s:4:\"copy\";s:57:\"Give customers special downloads with their subscriptions\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:68:\"https://woocommerce.com/products/woocommerce-subscription-downloads/\";}i:8;a:8:{s:4:\"slug\";s:31:\"product-edit-min-max-quantities\";s:7:\"product\";s:30:\"woocommerce-min-max-quantities\";s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:109:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/min-max-quantities.svg\";s:5:\"title\";s:18:\"Min/Max Quantities\";s:4:\"copy\";s:81:\"Specify minimum and maximum allowed product quantities for orders to be completed\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:52:\"https://woocommerce.com/products/min-max-quantities/\";}i:9;a:8:{s:4:\"slug\";s:28:\"product-edit-name-your-price\";s:7:\"product\";s:27:\"woocommerce-name-your-price\";s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:106:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/name-your-price.svg\";s:5:\"title\";s:15:\"Name Your Price\";s:4:\"copy\";s:70:\"Let customers pay what they want - useful for donations, tips and more\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:49:\"https://woocommerce.com/products/name-your-price/\";}i:10;a:8:{s:4:\"slug\";s:42:\"product-edit-woocommerce-one-page-checkout\";s:7:\"product\";s:29:\"woocommerce-one-page-checkout\";s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:108:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/one-page-checkout.svg\";s:5:\"title\";s:17:\"One Page Checkout\";s:4:\"copy\";s:92:\"Don\'t make customers click around - let them choose products, checkout & pay all on one page\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:63:\"https://woocommerce.com/products/woocommerce-one-page-checkout/\";}i:11;a:9:{s:4:\"slug\";s:24:\"product-edit-automatewoo\";s:7:\"product\";s:11:\"automatewoo\";s:14:\"show-if-active\";a:1:{i:0;s:25:\"woocommerce-subscriptions\";}s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:104:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/subscriptions.svg\";s:5:\"title\";s:23:\"Automate your marketing\";s:4:\"copy\";s:89:\"Win customers and keep them coming back with a nearly endless range of powerful workflows\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:45:\"https://woocommerce.com/products/automatewoo/\";}i:12;a:4:{s:4:\"slug\";s:19:\"orders-empty-header\";s:7:\"context\";s:24:\"orders-list-empty-header\";s:5:\"title\";s:20:\"Tools for your store\";s:13:\"allow-dismiss\";b:0;}i:13;a:6:{s:4:\"slug\";s:30:\"orders-empty-footer-browse-all\";s:7:\"context\";s:24:\"orders-list-empty-footer\";s:9:\"link-text\";s:21:\"Browse all extensions\";s:3:\"url\";s:64:\"https://woocommerce.com/product-category/woocommerce-extensions/\";s:8:\"promoted\";s:31:\"category-woocommerce-extensions\";s:13:\"allow-dismiss\";b:0;}i:14;a:8:{s:4:\"slug\";s:19:\"orders-empty-wc-pay\";s:7:\"context\";s:22:\"orders-list-empty-body\";s:7:\"product\";s:20:\"woocommerce-payments\";s:4:\"icon\";s:111:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/woocommerce-payments.svg\";s:5:\"title\";s:11:\"WooPayments\";s:4:\"copy\";s:125:\"Securely accept payments and manage transactions directly from your WooCommerce dashboard – no setup costs or monthly fees.\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:45:\"https://woocommerce.com/products/woopayments/\";}i:15;a:8:{s:4:\"slug\";s:19:\"orders-empty-zapier\";s:7:\"context\";s:22:\"orders-list-empty-body\";s:7:\"product\";s:18:\"woocommerce-zapier\";s:4:\"icon\";s:97:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/zapier.svg\";s:5:\"title\";s:6:\"Zapier\";s:4:\"copy\";s:88:\"Save time and increase productivity by connecting your store to more than 1000+ services\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:52:\"https://woocommerce.com/products/woocommerce-zapier/\";}i:16;a:8:{s:4:\"slug\";s:30:\"orders-empty-shipment-tracking\";s:7:\"context\";s:22:\"orders-list-empty-body\";s:7:\"product\";s:29:\"woocommerce-shipment-tracking\";s:4:\"icon\";s:108:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/shipment-tracking.svg\";s:5:\"title\";s:17:\"Shipment Tracking\";s:4:\"copy\";s:86:\"Let customers know when their orders will arrive by adding shipment tracking to emails\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:51:\"https://woocommerce.com/products/shipment-tracking/\";}i:17;a:8:{s:4:\"slug\";s:32:\"orders-empty-table-rate-shipping\";s:7:\"context\";s:22:\"orders-list-empty-body\";s:7:\"product\";s:31:\"woocommerce-table-rate-shipping\";s:4:\"icon\";s:110:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/table-rate-shipping.svg\";s:5:\"title\";s:19:\"Table Rate Shipping\";s:4:\"copy\";s:122:\"Advanced, flexible shipping. Define multiple shipping rates based on location, price, weight, shipping class or item count\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:53:\"https://woocommerce.com/products/table-rate-shipping/\";}i:18;a:8:{s:4:\"slug\";s:40:\"orders-empty-shipping-carrier-extensions\";s:7:\"context\";s:22:\"orders-list-empty-body\";s:4:\"icon\";s:118:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/shipping-carrier-extensions.svg\";s:5:\"title\";s:27:\"Shipping Carrier Extensions\";s:4:\"copy\";s:116:\"Show live rates from FedEx, UPS, USPS and more directly on your store - never under or overcharge for shipping again\";s:11:\"button-text\";s:13:\"Find Carriers\";s:8:\"promoted\";s:26:\"category-shipping-carriers\";s:3:\"url\";s:99:\"https://woocommerce.com/product-category/woocommerce-extensions/shipping-methods/shipping-carriers/\";}i:19;a:8:{s:4:\"slug\";s:32:\"orders-empty-google-product-feed\";s:7:\"context\";s:22:\"orders-list-empty-body\";s:7:\"product\";s:25:\"woocommerce-product-feeds\";s:4:\"icon\";s:110:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/google-product-feed.svg\";s:5:\"title\";s:19:\"Google Product Feed\";s:4:\"copy\";s:76:\"Increase sales by letting customers find you when they\'re shopping on Google\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:53:\"https://woocommerce.com/products/google-product-feed/\";}i:20;a:4:{s:4:\"slug\";s:35:\"products-empty-header-product-types\";s:7:\"context\";s:26:\"products-list-empty-header\";s:5:\"title\";s:23:\"Other types of products\";s:13:\"allow-dismiss\";b:0;}i:21;a:6:{s:4:\"slug\";s:32:\"products-empty-footer-browse-all\";s:7:\"context\";s:26:\"products-list-empty-footer\";s:9:\"link-text\";s:21:\"Browse all extensions\";s:3:\"url\";s:64:\"https://woocommerce.com/product-category/woocommerce-extensions/\";s:8:\"promoted\";s:31:\"category-woocommerce-extensions\";s:13:\"allow-dismiss\";b:0;}i:22;a:8:{s:4:\"slug\";s:30:\"products-empty-product-vendors\";s:7:\"context\";s:24:\"products-list-empty-body\";s:7:\"product\";s:27:\"woocommerce-product-vendors\";s:4:\"icon\";s:106:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/product-vendors.svg\";s:5:\"title\";s:15:\"Product Vendors\";s:4:\"copy\";s:47:\"Turn your store into a multi-vendor marketplace\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:49:\"https://woocommerce.com/products/product-vendors/\";}i:23;a:8:{s:4:\"slug\";s:26:\"products-empty-memberships\";s:7:\"context\";s:24:\"products-list-empty-body\";s:7:\"product\";s:23:\"woocommerce-memberships\";s:4:\"icon\";s:102:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/memberships.svg\";s:5:\"title\";s:11:\"Memberships\";s:4:\"copy\";s:76:\"Give members access to restricted content or products, for a fee or for free\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:57:\"https://woocommerce.com/products/woocommerce-memberships/\";}i:24;a:9:{s:4:\"slug\";s:35:\"products-empty-woocommerce-deposits\";s:7:\"context\";s:24:\"products-list-empty-body\";s:7:\"product\";s:20:\"woocommerce-deposits\";s:14:\"show-if-active\";a:1:{i:0;s:20:\"woocommerce-bookings\";}s:4:\"icon\";s:99:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/deposits.svg\";s:5:\"title\";s:8:\"Deposits\";s:4:\"copy\";s:75:\"Make it easier for customers to pay by offering a deposit or a payment plan\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:54:\"https://woocommerce.com/products/woocommerce-deposits/\";}i:25;a:8:{s:4:\"slug\";s:40:\"products-empty-woocommerce-subscriptions\";s:7:\"context\";s:24:\"products-list-empty-body\";s:7:\"product\";s:25:\"woocommerce-subscriptions\";s:4:\"icon\";s:104:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/subscriptions.svg\";s:5:\"title\";s:13:\"Subscriptions\";s:4:\"copy\";s:97:\"Let customers subscribe to your products or services and pay on a weekly, monthly or annual basis\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:59:\"https://woocommerce.com/products/woocommerce-subscriptions/\";}i:26;a:8:{s:4:\"slug\";s:35:\"products-empty-woocommerce-bookings\";s:7:\"context\";s:24:\"products-list-empty-body\";s:7:\"product\";s:20:\"woocommerce-bookings\";s:4:\"icon\";s:99:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/bookings.svg\";s:5:\"title\";s:8:\"Bookings\";s:4:\"copy\";s:99:\"Allow customers to book appointments, make reservations or rent equipment without leaving your site\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:54:\"https://woocommerce.com/products/woocommerce-bookings/\";}i:27;a:8:{s:4:\"slug\";s:30:\"products-empty-product-bundles\";s:7:\"context\";s:24:\"products-list-empty-body\";s:7:\"product\";s:27:\"woocommerce-product-bundles\";s:4:\"icon\";s:106:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/product-bundles.svg\";s:5:\"title\";s:15:\"Product Bundles\";s:4:\"copy\";s:49:\"Offer customizable bundles and assembled products\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:49:\"https://woocommerce.com/products/product-bundles/\";}}s:7:\"updated\";i:1723037545;}','off'), +(1266,'woocommerce_task_list_reminder_bar_hidden','yes','auto'), +(1844,'nonce_key','Qe9)bK=%I]xCh./VgqP J~76af%z[ GJpRMI$H9^BE!rApKAVk}7rw._BQRV:.}4','off'), +(1845,'nonce_salt',' 3%/;I6>tVBcX^+ei0X(f07Fy}xZy9-W4;4Hp]+9c|7Lu9OyH*vDy<$[ ZFupt-K','off'), +(1855,'auth_key','+_xd+>H[lp.sF$h(0~tRw(*Mc3fU~j;oy5**DrV8N`:&oeE`[aW31h{1+sbj%m/9','off'), +(1856,'auth_salt','*g5A.#_L{&a+3G-HjFNXK!,lkIl{fp%Yk!b9LatvPCB_-oCx^?R~k^3X-*wzC T^','off'), +(1865,'secure_auth_key','_OJ{C5_dNeer{F8)-EMc@BG;IG#6FB*f!A=pxe@1kq:jG','off'), +(1866,'secure_auth_salt','0zE{&JkB]rz&F(6gC,sYm42s?Y~I(@wIuB%wVd$!r0IUEf2X|wWAAu,+t?NC[jQ','off'), +(1868,'logged_in_salt','%;$7@^LKY|%V>x95!VT;|+ 6qCn}f2Nxf9~0@ucl:o_B1@mP_KR XTC=lW~sDsX.','off'), +(2018,'woocommerce_downloads_count_partial','yes','on'), +(2230,'wp-openapi-rewrite-flushed','1','auto'), +(2232,'wp-openapi-options','','auto'), +(2594,'woocommerce_email_footer_text_color','#3c3c3c','off'), +(3107,'recovery_keys','a:0:{}','off'), +(5596,'woocommerce_admin_customize_store_completed','yes','auto'), +(6061,'site_logo','','auto'), +(8528,'woocommerce_feature_site_visibility_badge_enabled','yes','on'), +(8589,'woocommerce_admin_created_default_shipping_zones','yes','auto'), +(8590,'woocommerce_admin_reviewed_default_shipping_zones','yes','auto'), +(8603,'_transient_orders-transient-version','1733494933','on'), +(8610,'woocommerce_admin_last_orders_milestone','10','auto'), +(8759,'wc_shop_order_list_table_months_filter_cache_date','1749466779','auto'), +(8760,'wc_shop_order_list_table_months_filter_cache_value','a:8:{i:0;O:8:\"stdClass\":2:{s:4:\"year\";s:4:\"2025\";s:5:\"month\";s:1:\"6\";}i:1;O:8:\"stdClass\":2:{s:4:\"year\";s:4:\"2025\";s:5:\"month\";s:1:\"5\";}i:2;O:8:\"stdClass\":2:{s:4:\"year\";s:4:\"2025\";s:5:\"month\";s:1:\"4\";}i:3;O:8:\"stdClass\":2:{s:4:\"year\";s:4:\"2025\";s:5:\"month\";s:1:\"3\";}i:4;O:8:\"stdClass\":2:{s:4:\"year\";s:4:\"2025\";s:5:\"month\";s:1:\"2\";}i:5;O:8:\"stdClass\":2:{s:4:\"year\";s:4:\"2025\";s:5:\"month\";s:1:\"1\";}i:6;O:8:\"stdClass\":2:{s:4:\"year\";s:4:\"2024\";s:5:\"month\";s:2:\"12\";}i:7;O:8:\"stdClass\":2:{s:4:\"year\";s:4:\"2024\";s:5:\"month\";s:2:\"11\";}}','auto'), +(9197,'_transient_wp_styles_for_blocks','a:2:{s:4:\"hash\";s:32:\"dd429dffcb518f90fe1f9ce99f485c58\";s:6:\"blocks\";a:5:{s:11:\"core/button\";s:0:\"\";s:14:\"core/site-logo\";s:0:\"\";s:18:\"core/post-template\";s:120:\":where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}\";s:12:\"core/columns\";s:102:\":where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}\";s:14:\"core/pullquote\";s:69:\":root :where(.wp-block-pullquote){font-size: 1.5em;line-height: 1.6;}\";}}','on'), +(9202,'db_upgraded','','on'), +(9217,'woocommerce_task_list_hidden_lists','a:2:{i:0;s:8:\"extended\";i:1;s:5:\"setup\";}','auto'), +(9218,'woocommerce_default_homepage_layout','two_columns','auto'), +(10169,'can_compress_scripts','0','on'), +(10216,'woocommerce_sales_record_date','2024-11-26','auto'), +(10217,'woocommerce_sales_record_amount','1525','auto'), +(10790,'wpmc_options','a:27:{s:6:\"method\";s:5:\"media\";s:7:\"content\";b:1;s:18:\"filesystem_content\";b:0;s:13:\"media_library\";b:1;s:12:\"live_content\";b:0;s:9:\"debuglogs\";b:0;s:11:\"images_only\";b:0;s:13:\"attach_is_use\";b:0;s:15:\"thumbnails_only\";b:0;s:11:\"dirs_filter\";s:0:\"\";s:12:\"files_filter\";s:0:\"\";s:15:\"hide_thumbnails\";b:0;s:12:\"hide_warning\";b:0;s:10:\"skip_trash\";b:0;s:13:\"medias_buffer\";i:100;s:12:\"posts_buffer\";i:5;s:15:\"analysis_buffer\";i:100;s:14:\"file_op_buffer\";i:20;s:5:\"delay\";i:100;s:19:\"shortcodes_disabled\";b:0;s:31:\"output_buffer_cleaning_disabled\";b:0;s:14:\"php_error_logs\";b:0;s:14:\"posts_per_page\";i:1000;s:15:\"clean_uninstall\";b:0;s:11:\"repair_mode\";b:0;s:11:\"expert_mode\";b:0;s:9:\"logs_path\";N;}','off'), +(10791,'wpmc_rating_date','1732931640','off'), +(10793,'product_cat_children','a:0:{}','auto'), +(10807,'wms_mondial_relay_enable','yes','on'), +(10808,'wms_mondial_relay_customer_code','','on'), +(10809,'wms_mondial_relay_private_key','','on'), +(10810,'wms_mondial_relay_brand_code','','on'), +(10811,'wms_mondial_relay_section_pickup_points_map_type','openstreetmap','on'), +(10812,'wms_mondial_relay_section_pickup_points_google_maps_api_key','','on'), +(10813,'wms_mondial_relay_section_label_generation_status','a:0:{}','on'), +(10814,'wms_mondial_relay_section_label_status_post_generation','','on'), +(10815,'wms_mondial_relay_section_label_send_email','no','on'), +(10816,'wms_mondial_relay_price_before_discount','no','on'), +(10817,'wms_mondial_relay_shipper_civility','MLLE','on'), +(10818,'wms_mondial_relay_shipper_name','','on'), +(10819,'wms_mondial_relay_shipper_name_2','','on'), +(10820,'wms_mondial_relay_shipper_address_1','','on'), +(10821,'wms_mondial_relay_shipper_address_2','','on'), +(10822,'wms_mondial_relay_shipper_zip_code','','on'), +(10823,'wms_mondial_relay_shipper_city','','on'), +(10824,'wms_mondial_relay_shipper_country','AF','on'), +(10825,'wms_mondial_relay_shipper_email','','on'), +(10826,'wms_mondial_relay_shipper_phone','','on'), +(10827,'wms_mondial_relay_shipper_mobile_phone','','on'), +(10828,'wms_mondial_relay_section_parcel_insurance','0','on'), +(10829,'wms_mondial_relay_section_parcel_installation_duration','','on'), +(10830,'wms_mondial_relay_section_parcel_shipping_value','','on'), +(10831,'wms_mondial_relay_debug_mode','1','on'), +(10832,'wms_chronopost_enable','no','on'), +(10833,'wms_chronopost_account_number','','on'), +(10834,'wms_chronopost_account_name','','on'), +(10835,'wms_chronopost_account_password','','on'), +(10836,'wms_chronopost_section_pickup_points_map_type','openstreetmap','on'), +(10837,'wms_chronopost_section_pickup_points_google_maps_api_key','','on'), +(10838,'wms_chronopost_label_format','PDF','on'), +(10839,'wms_chronopost_section_label_generation_status','a:0:{}','on'), +(10840,'wms_chronopost_section_label_status_post_generation','','on'), +(10841,'wms_chronopost_section_label_send_email','no','on'), +(10842,'wms_chronopost_price_before_discount','yes','on'), +(10843,'wms_chronopost_shipper_civility','E','on'), +(10844,'wms_chronopost_shipper_name','','on'), +(10845,'wms_chronopost_shipper_name_2','','on'), +(10846,'wms_chronopost_shipper_address_1','','on'), +(10847,'wms_chronopost_shipper_address_2','','on'), +(10848,'wms_chronopost_shipper_zip_code','','on'), +(10849,'wms_chronopost_shipper_city','','on'), +(10850,'wms_chronopost_shipper_country','AF','on'), +(10851,'wms_chronopost_shipper_contact_name','','on'), +(10852,'wms_chronopost_shipper_email','','on'), +(10853,'wms_chronopost_shipper_phone','','on'), +(10854,'wms_chronopost_shipper_mobile_phone','','on'), +(10855,'wms_chronopost_customer_civility','E','on'), +(10856,'wms_chronopost_customer_name','','on'), +(10857,'wms_chronopost_customer_name_2','','on'), +(10858,'wms_chronopost_customer_address_1','','on'), +(10859,'wms_chronopost_customer_address_2','','on'), +(10860,'wms_chronopost_customer_zip_code','','on'), +(10861,'wms_chronopost_customer_city','','on'), +(10862,'wms_chronopost_customer_country','AF','on'), +(10863,'wms_chronopost_customer_contact_name','','on'), +(10864,'wms_chronopost_customer_email','','on'), +(10865,'wms_chronopost_customer_phone','','on'), +(10866,'wms_chronopost_customer_mobile_phone','','on'), +(10867,'wms_chronopost_section_insurance_ad_valorem_enabled','1','on'), +(10868,'wms_chronopost_section_insurance_ad_valorem_min_amount','0','on'), +(10869,'wms_chronopost_saturday_shipping_start_day','monday','on'), +(10870,'wms_chronopost_saturday_shipping_start_time','0','on'), +(10871,'wms_chronopost_saturday_shipping_end_day','monday','on'), +(10872,'wms_chronopost_saturday_shipping_end_time','0','on'), +(10873,'wms_chronopost_debug_mode','0','on'), +(10874,'wms_ups_enable','yes','on'), +(10875,'wms_ups_account_username','','on'), +(10876,'wms_ups_password','','on'), +(10877,'wms_ups_account_number','','on'), +(10878,'wms_ups_api_access_key','','on'), +(10879,'wms_ups_section_pickup_points_map_type','openstreetmap','on'), +(10880,'wms_ups_section_pickup_points_google_maps_api_key','','on'), +(10881,'wms_ups_section_label_generation_status','a:0:{}','on'), +(10882,'wms_ups_section_label_status_post_generation','','on'), +(10883,'wms_ups_section_label_send_email','no','on'), +(10884,'wms_ups_shipper_civility','MLLE','on'), +(10885,'wms_ups_shipper_name','','on'), +(10886,'wms_ups_shipper_name_2','','on'), +(10887,'wms_ups_shipper_company_name','','on'), +(10888,'wms_ups_shipper_vat_number','','on'), +(10889,'wms_ups_shipper_address_1','','on'), +(10890,'wms_ups_shipper_address_2','','on'), +(10891,'wms_ups_shipper_zip_code','','on'), +(10892,'wms_ups_shipper_city','','on'), +(10893,'wms_ups_shipper_country','AF','on'), +(10894,'wms_ups_shipper_email','','on'), +(10895,'wms_ups_shipper_phone','','on'), +(10896,'wms_ups_shipper_mobile_phone','','on'), +(10897,'wms_ups_debug_mode','1','on'), +(10899,'woocommerce_ups_standard_4_settings','a:8:{s:5:\"title\";s:14:\"UPS - Standard\";s:13:\"title_if_free\";s:13:\"Free Shipping\";s:17:\"pricing_condition\";s:6:\"weight\";s:13:\"free_shipping\";s:2:\"no\";s:23:\"free_shipping_condition\";d:100;s:15:\"management_fees\";s:1:\"0\";s:16:\"packaging_weight\";s:1:\"0\";s:14:\"shipping_rates\";a:1:{i:0;a:4:{s:3:\"min\";d:0;s:3:\"max\";d:100;s:14:\"shipping_class\";a:1:{i:0;s:3:\"all\";}s:5:\"price\";d:12;}}}','on'), +(10900,'woocommerce_mondial_relay_point_relais_5_settings','a:8:{s:5:\"title\";s:26:\"Mondial Relay Point Relais\";s:13:\"title_if_free\";s:33:\"Mondial Relay Point Relais (Free)\";s:17:\"pricing_condition\";s:6:\"weight\";s:13:\"free_shipping\";s:2:\"no\";s:23:\"free_shipping_condition\";d:100;s:15:\"management_fees\";s:1:\"0\";s:16:\"packaging_weight\";s:1:\"0\";s:14:\"shipping_rates\";a:1:{i:0;a:4:{s:3:\"min\";d:0;s:3:\"max\";d:100;s:14:\"shipping_class\";a:1:{i:0;s:3:\"all\";}s:5:\"price\";d:6;}}}','on'), +(10901,'woocommerce_mondial_relay_point_relais_6_settings','a:8:{s:5:\"title\";s:28:\"Mondial Relay - Point Relais\";s:13:\"title_if_free\";s:35:\"Mondial Relay - Point Relais (Free)\";s:17:\"pricing_condition\";s:6:\"weight\";s:13:\"free_shipping\";s:2:\"no\";s:23:\"free_shipping_condition\";d:50;s:15:\"management_fees\";s:1:\"0\";s:16:\"packaging_weight\";s:1:\"0\";s:14:\"shipping_rates\";a:1:{i:0;a:4:{s:3:\"min\";d:0;s:3:\"max\";d:100;s:14:\"shipping_class\";a:1:{i:0;s:3:\"all\";}s:5:\"price\";d:3;}}}','on'), +(12053,'wp_mail_logging_activated_time','1732552283','auto'), +(12054,'wp_mail_logging_db_version','2','off'), +(12055,'WPML_Plugin__version','1.13.1','auto'), +(12059,'wp_mail_logging_user_feedback_notice','a:2:{s:4:\"time\";i:1732552283;s:9:\"dismissed\";b:0;}','auto'), +(12077,'wp_mail_smtp_initial_version','4.2.0','off'), +(12078,'wp_mail_smtp_version','4.2.0','off'), +(12079,'wp_mail_smtp','a:19:{s:4:\"mail\";a:6:{s:10:\"from_email\";s:23:\"haiku.atelier@gmail.com\";s:9:\"from_name\";s:13:\"Haiku Atelier\";s:6:\"mailer\";s:5:\"gmail\";s:11:\"return_path\";b:0;s:16:\"from_email_force\";b:0;s:15:\"from_name_force\";b:1;}s:4:\"smtp\";a:7:{s:7:\"autotls\";b:1;s:4:\"auth\";b:1;s:4:\"host\";s:15:\"smtp.google.com\";s:4:\"port\";i:587;s:10:\"encryption\";s:3:\"tls\";s:4:\"user\";s:23:\"haiku.atelier@gmail.com\";s:4:\"pass\";s:8:\"jD091299\";}s:7:\"general\";a:1:{s:29:\"summary_report_email_disabled\";b:1;}s:9:\"sendlayer\";a:1:{s:7:\"api_key\";s:0:\"\";}s:7:\"smtpcom\";a:2:{s:7:\"api_key\";s:0:\"\";s:7:\"channel\";s:0:\"\";}s:10:\"sendinblue\";a:2:{s:7:\"api_key\";s:0:\"\";s:6:\"domain\";s:0:\"\";}s:7:\"mailgun\";a:3:{s:7:\"api_key\";s:0:\"\";s:6:\"domain\";s:0:\"\";s:6:\"region\";s:2:\"US\";}s:7:\"mailjet\";a:2:{s:7:\"api_key\";s:0:\"\";s:10:\"secret_key\";s:0:\"\";}s:8:\"sendgrid\";a:2:{s:7:\"api_key\";s:0:\"\";s:6:\"domain\";s:0:\"\";}s:7:\"smtp2go\";a:1:{s:7:\"api_key\";s:0:\"\";}s:9:\"sparkpost\";a:2:{s:7:\"api_key\";s:0:\"\";s:6:\"region\";s:2:\"US\";}s:8:\"postmark\";a:2:{s:16:\"server_api_token\";s:0:\"\";s:14:\"message_stream\";s:0:\"\";}s:9:\"amazonses\";a:3:{s:9:\"client_id\";s:0:\"\";s:13:\"client_secret\";s:0:\"\";s:6:\"region\";s:9:\"us-east-1\";}s:5:\"gmail\";a:10:{s:9:\"client_id\";s:72:\"402628219773-hl8niqniiiklf15f9biou8g06pbm9sac.apps.googleusercontent.com\";s:13:\"client_secret\";s:35:\"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\";s:12:\"access_token\";a:6:{s:12:\"access_token\";s:225:\"ya29.a0AW4XtxhX1ItT6KVp8_1Nqz13xpR0yRQnF6k6MQKLxh5qA-x7QpYKTcxLk8zuwIoK_Ad8PciWxnSvbXrPaqJeb8mnUKQ4BZq7sWolXAjw6HWSrLKugi5ksdoQefPLAcNGkrrQOU_3IHeO4B3E7SF1aE8Azrt9Tkl_D1fVYbLm1XAaCgYKAaUSARASFQHGX2MiBUTjXIVm8kWUnZnSfeGWNA0178\";s:10:\"expires_in\";i:3599;s:5:\"scope\";s:24:\"https://mail.google.com/\";s:10:\"token_type\";s:6:\"Bearer\";s:7:\"created\";i:1750499766;s:13:\"refresh_token\";s:103:\"1//03C5NUFaT7UPOCgYIARAAGAMSNwF-L9IrDxhy86bbC5yXLNTnGa5nUHn4qh61Ril_yzrAjpDlxZ0kAkBhkdMAknk9nXhh3luN-GA\";}s:13:\"refresh_token\";s:103:\"1//03C5NUFaT7UPOCgYIARAAGAMSNwF-L9IrDxhy86bbC5yXLNTnGa5nUHn4qh61Ril_yzrAjpDlxZ0kAkBhkdMAknk9nXhh3luN-GA\";s:12:\"user_details\";a:1:{s:5:\"email\";s:23:\"haiku.atelier@gmail.com\";}s:23:\"one_click_setup_enabled\";b:0;s:27:\"one_click_setup_credentials\";a:2:{s:3:\"key\";s:0:\"\";s:5:\"token\";s:0:\"\";}s:28:\"one_click_setup_user_details\";a:1:{s:5:\"email\";s:0:\"\";}s:20:\"is_setup_wizard_auth\";b:0;s:9:\"auth_code\";s:73:\"4/0AeanS0ZUssWZn8hNjBZJEuEFDL9SMb5c1tjzffcTAVb5e2L-B_PRnuKLBa88D022Uumzmw\";}s:7:\"outlook\";a:5:{s:9:\"client_id\";s:0:\"\";s:13:\"client_secret\";s:0:\"\";s:12:\"access_token\";a:0:{}s:13:\"refresh_token\";s:0:\"\";s:12:\"user_details\";a:1:{s:5:\"email\";s:0:\"\";}}s:4:\"zoho\";a:6:{s:9:\"client_id\";s:0:\"\";s:13:\"client_secret\";s:0:\"\";s:6:\"domain\";s:3:\"com\";s:12:\"access_token\";a:0:{}s:13:\"refresh_token\";s:0:\"\";s:12:\"user_details\";a:1:{s:5:\"email\";s:0:\"\";}}s:4:\"logs\";a:5:{s:7:\"enabled\";b:0;s:17:\"log_email_content\";b:0;s:16:\"save_attachments\";b:0;s:19:\"open_email_tracking\";b:0;s:19:\"click_link_tracking\";b:0;}s:11:\"alert_email\";a:2:{s:7:\"enabled\";b:0;s:11:\"connections\";a:0:{}}s:7:\"license\";a:4:{s:3:\"key\";s:0:\"\";s:10:\"is_expired\";b:0;s:11:\"is_disabled\";b:0;s:10:\"is_invalid\";b:0;}}','off'), +(12080,'wp_mail_smtp_activated_time','1732553202','off'), +(12081,'wp_mail_smtp_activated','a:1:{s:4:\"lite\";i:1732553202;}','auto'), +(12087,'wp_mail_smtp_migration_version','5','on'), +(12088,'wp_mail_smtp_debug_events_db_version','1','on'), +(12089,'wp_mail_smtp_activation_prevent_redirect','1','auto'), +(12090,'wp_mail_smtp_setup_wizard_stats','a:3:{s:13:\"launched_time\";i:1732821999;s:14:\"completed_time\";i:1732822044;s:14:\"was_successful\";b:1;}','off'), +(12092,'wp_mail_smtp_mail_key','b4X/o2Jlr+B6fYssiy4aNvSjL0y5sT0DeDNxw9gANsE=','auto'), +(12094,'wp_mail_smtp_debug','a:0:{}','off'), +(12097,'wp_mail_smtp_review_notice','a:2:{s:4:\"time\";i:1733769473;s:9:\"dismissed\";b:1;}','auto'), +(12100,'wp_mail_smtp_notifications','a:4:{s:6:\"update\";i:1750617000;s:4:\"feed\";a:0:{}s:6:\"events\";a:0:{}s:9:\"dismissed\";a:0:{}}','auto'), +(12490,'woocommerce_flat_rate_7_settings','a:3:{s:5:\"title\";s:12:\"UPS Standard\";s:10:\"tax_status\";s:4:\"none\";s:4:\"cost\";s:5:\"12,00\";}','on'), +(12492,'woocommerce_free_shipping_8_settings','a:4:{s:5:\"title\";s:19:\"UPS Standard (Free)\";s:8:\"requires\";s:10:\"min_amount\";s:10:\"min_amount\";s:3:\"100\";s:16:\"ignore_discounts\";s:2:\"no\";}','on'), +(12503,'wp_mail_logging_product_education','a:1:{s:9:\"dismissed\";a:1:{s:17:\"email-logs-bottom\";b:1;}}','off'), +(12504,'woocommerce_new_order_settings','a:6:{s:7:\"enabled\";s:3:\"yes\";s:9:\"recipient\";s:39:\"haiku.atelier@gmail.com,contact@gcch.fr\";s:7:\"subject\";s:0:\"\";s:7:\"heading\";s:0:\"\";s:18:\"additional_content\";s:28:\"Congratulations on the sale.\";s:10:\"email_type\";s:4:\"html\";}','on'), +(13305,'woocommerce_revenue_report_date_tour_shown','yes','auto'), +(13521,'wp_mail_smtp_lite_sent_email_counter','92','on'), +(13522,'wp_mail_smtp_lite_weekly_sent_email_counter','a:12:{s:2:\"06\";i:2;s:2:\"08\";i:2;s:2:\"09\";i:3;i:10;i:8;i:12;i:3;i:14;i:1;i:15;i:2;i:19;i:5;i:20;i:5;i:23;i:2;i:24;i:1;i:25;i:1;}','on'), +(20569,'woocommerce_clear_ces_tracks_queue_for_page','a:2:{s:7:\"pagenow\";s:25:\"woocommerce_page_wc-admin\";s:9:\"adminpage\";s:25:\"woocommerce_page_wc-admin\";}','auto'), +(20640,'_transient_woocommerce_product_task_product_count_transient','66','on'), +(21366,'woocommerce_customer_on_hold_order_settings','a:5:{s:7:\"enabled\";s:2:\"no\";s:7:\"subject\";s:0:\"\";s:7:\"heading\";s:0:\"\";s:18:\"additional_content\";s:46:\"We look forward to fulfilling your order soon.\";s:10:\"email_type\";s:4:\"html\";}','on'), +(21367,'woocommerce_customer_processing_order_settings','a:5:{s:7:\"enabled\";s:3:\"yes\";s:7:\"subject\";s:0:\"\";s:7:\"heading\";s:0:\"\";s:18:\"additional_content\";s:28:\"Thanks for using {site_url}!\";s:10:\"email_type\";s:4:\"html\";}','on'), +(21368,'woocommerce_customer_completed_order_settings','a:5:{s:7:\"enabled\";s:3:\"yes\";s:7:\"subject\";s:0:\"\";s:7:\"heading\";s:0:\"\";s:18:\"additional_content\";s:28:\"Thanks for shopping with us.\";s:10:\"email_type\";s:4:\"html\";}','on'), +(21369,'woocommerce_customer_refunded_order_settings','a:7:{s:7:\"enabled\";s:2:\"no\";s:12:\"subject_full\";s:0:\"\";s:15:\"subject_partial\";s:0:\"\";s:12:\"heading_full\";s:0:\"\";s:15:\"heading_partial\";s:0:\"\";s:18:\"additional_content\";s:30:\"We hope to see you again soon.\";s:10:\"email_type\";s:4:\"html\";}','on'), +(21370,'woocommerce_mondial_relay_settings','a:5:{s:7:\"enabled\";s:2:\"no\";s:7:\"subject\";s:0:\"\";s:7:\"heading\";s:0:\"\";s:18:\"additional_content\";s:0:\"\";s:10:\"email_type\";s:4:\"html\";}','on'), +(21371,'woocommerce_ups_settings','a:5:{s:7:\"enabled\";s:2:\"no\";s:7:\"subject\";s:0:\"\";s:7:\"heading\";s:0:\"\";s:18:\"additional_content\";s:0:\"\";s:10:\"email_type\";s:4:\"html\";}','on'), +(25278,'_transient_wc_count_comments','O:8:\"stdClass\":7:{s:14:\"total_comments\";i:1;s:3:\"all\";i:1;s:8:\"approved\";s:1:\"1\";s:9:\"moderated\";i:0;s:4:\"spam\";i:0;s:5:\"trash\";i:0;s:12:\"post-trashed\";i:0;}','on'), +(28660,'woocommerce_customer_note_settings','a:5:{s:7:\"enabled\";s:2:\"no\";s:7:\"subject\";s:0:\"\";s:7:\"heading\";s:0:\"\";s:18:\"additional_content\";s:19:\"Thanks for reading.\";s:10:\"email_type\";s:4:\"html\";}','on'), +(30279,'action_scheduler_migration_status','complete','auto'), +(30281,'woocommerce_hpos_address_fts_index_created','yes','off'), +(30418,'widget_wc_brands_brand_description','a:1:{s:12:\"_multiwidget\";i:1;}','auto'), +(30419,'widget_woocommerce_brand_nav','a:1:{s:12:\"_multiwidget\";i:1;}','auto'), +(30420,'widget_wc_brands_brand_thumbnails','a:1:{s:12:\"_multiwidget\";i:1;}','auto'), +(30421,'woocommerce_anonymize_refunded_orders','a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:6:\"months\";}','off'), +(30422,'woocommerce_email_auto_sync_with_theme','no','off'), +(30423,'woocommerce_feature_rate_limit_checkout_enabled','no','on'), +(30424,'woocommerce_feature_remote_logging_enabled','yes','on'), +(30425,'woocommerce_feature_email_improvements_enabled','no','on'), +(30426,'woocommerce_feature_reactify-classic-payments-settings_enabled','yes','on'), +(30427,'woocommerce_feature_cost_of_goods_sold_enabled','no','on'), +(30437,'new_admin_email','haiku.atelier@gmail.com','auto'), +(30451,'woocommerce_admin_pes_incentive_woopayments_store_had_woopayments','no','auto'), +(30480,'woocommerce_shipping_hide_rates_when_free','no','off'), +(30481,'woocommerce_email_header_image_width','120','on'), +(30482,'woocommerce_email_header_alignment','left','on'), +(30483,'woocommerce_email_font_family','Helvetica','on'), +(30484,'woocommerce_feature_blueprint_enabled','yes','on'), +(30485,'woocommerce_hpos_datastore_caching_enabled','no','on'), +(30486,'woocommerce_feature_block_email_editor_enabled','no','on'), +(30493,'_site_transient_timeout_woocommerce_blocks_patterns','1752934566','off'), +(30494,'_site_transient_woocommerce_blocks_patterns','a:2:{s:7:\"version\";s:5:\"9.9.4\";s:8:\"patterns\";a:41:{i:0;a:11:{s:5:\"title\";s:6:\"Banner\";s:4:\"slug\";s:25:\"woocommerce-blocks/banner\";s:11:\"description\";s:0:\"\";s:13:\"viewportWidth\";s:0:\"\";s:10:\"categories\";s:29:\"WooCommerce, featured-selling\";s:8:\"keywords\";s:0:\"\";s:10:\"blockTypes\";s:0:\"\";s:8:\"inserter\";s:0:\"\";s:11:\"featureFlag\";s:0:\"\";s:13:\"templateTypes\";s:0:\"\";s:6:\"source\";s:10:\"banner.php\";}i:1;a:11:{s:5:\"title\";s:23:\"Coming Soon Entire Site\";s:4:\"slug\";s:35:\"woocommerce/coming-soon-entire-site\";s:11:\"description\";s:0:\"\";s:13:\"viewportWidth\";s:0:\"\";s:10:\"categories\";s:11:\"WooCommerce\";s:8:\"keywords\";s:0:\"\";s:10:\"blockTypes\";s:0:\"\";s:8:\"inserter\";s:5:\"false\";s:11:\"featureFlag\";s:17:\"launch-your-store\";s:13:\"templateTypes\";s:0:\"\";s:6:\"source\";s:27:\"coming-soon-entire-site.php\";}i:2;a:11:{s:5:\"title\";s:22:\"Coming Soon Store Only\";s:4:\"slug\";s:34:\"woocommerce/coming-soon-store-only\";s:11:\"description\";s:0:\"\";s:13:\"viewportWidth\";s:0:\"\";s:10:\"categories\";s:11:\"WooCommerce\";s:8:\"keywords\";s:0:\"\";s:10:\"blockTypes\";s:0:\"\";s:8:\"inserter\";s:5:\"false\";s:11:\"featureFlag\";s:17:\"launch-your-store\";s:13:\"templateTypes\";s:0:\"\";s:6:\"source\";s:26:\"coming-soon-store-only.php\";}i:3;a:11:{s:5:\"title\";s:11:\"Coming Soon\";s:4:\"slug\";s:23:\"woocommerce/coming-soon\";s:11:\"description\";s:0:\"\";s:13:\"viewportWidth\";s:0:\"\";s:10:\"categories\";s:11:\"WooCommerce\";s:8:\"keywords\";s:0:\"\";s:10:\"blockTypes\";s:0:\"\";s:8:\"inserter\";s:5:\"false\";s:11:\"featureFlag\";s:17:\"launch-your-store\";s:13:\"templateTypes\";s:0:\"\";s:6:\"source\";s:15:\"coming-soon.php\";}i:4;a:11:{s:5:\"title\";s:29:\"Content right with image left\";s:4:\"slug\";s:48:\"woocommerce-blocks/content-right-with-image-left\";s:11:\"description\";s:0:\"\";s:13:\"viewportWidth\";s:0:\"\";s:10:\"categories\";s:18:\"WooCommerce, About\";s:8:\"keywords\";s:0:\"\";s:10:\"blockTypes\";s:0:\"\";s:8:\"inserter\";s:0:\"\";s:11:\"featureFlag\";s:0:\"\";s:13:\"templateTypes\";s:0:\"\";s:6:\"source\";s:28:\"content-right-image-left.php\";}i:5;a:11:{s:5:\"title\";s:29:\"Featured Category Cover Image\";s:4:\"slug\";s:48:\"woocommerce-blocks/featured-category-cover-image\";s:11:\"description\";s:0:\"\";s:13:\"viewportWidth\";s:0:\"\";s:10:\"categories\";s:18:\"WooCommerce, Intro\";s:8:\"keywords\";s:0:\"\";s:10:\"blockTypes\";s:0:\"\";s:8:\"inserter\";s:0:\"\";s:11:\"featureFlag\";s:0:\"\";s:13:\"templateTypes\";s:0:\"\";s:6:\"source\";s:33:\"featured-category-cover-image.php\";}i:6;a:11:{s:5:\"title\";s:24:\"Featured Category Triple\";s:4:\"slug\";s:43:\"woocommerce-blocks/featured-category-triple\";s:11:\"description\";s:0:\"\";s:13:\"viewportWidth\";s:0:\"\";s:10:\"categories\";s:29:\"WooCommerce, featured-selling\";s:8:\"keywords\";s:0:\"\";s:10:\"blockTypes\";s:0:\"\";s:8:\"inserter\";s:0:\"\";s:11:\"featureFlag\";s:0:\"\";s:13:\"templateTypes\";s:0:\"\";s:6:\"source\";s:28:\"featured-category-triple.php\";}i:7;a:11:{s:5:\"title\";s:12:\"Large Footer\";s:4:\"slug\";s:31:\"woocommerce-blocks/footer-large\";s:11:\"description\";s:0:\"\";s:13:\"viewportWidth\";s:0:\"\";s:10:\"categories\";s:11:\"WooCommerce\";s:8:\"keywords\";s:0:\"\";s:10:\"blockTypes\";s:25:\"core/template-part/footer\";s:8:\"inserter\";s:0:\"\";s:11:\"featureFlag\";s:0:\"\";s:13:\"templateTypes\";s:0:\"\";s:6:\"source\";s:16:\"footer-large.php\";}i:8;a:11:{s:5:\"title\";s:23:\"Footer with Simple Menu\";s:4:\"slug\";s:37:\"woocommerce-blocks/footer-simple-menu\";s:11:\"description\";s:0:\"\";s:13:\"viewportWidth\";s:0:\"\";s:10:\"categories\";s:11:\"WooCommerce\";s:8:\"keywords\";s:0:\"\";s:10:\"blockTypes\";s:25:\"core/template-part/footer\";s:8:\"inserter\";s:0:\"\";s:11:\"featureFlag\";s:0:\"\";s:13:\"templateTypes\";s:0:\"\";s:6:\"source\";s:22:\"footer-simple-menu.php\";}i:9;a:11:{s:5:\"title\";s:17:\"Footer with menus\";s:4:\"slug\";s:38:\"woocommerce-blocks/footer-with-3-menus\";s:11:\"description\";s:0:\"\";s:13:\"viewportWidth\";s:0:\"\";s:10:\"categories\";s:11:\"WooCommerce\";s:8:\"keywords\";s:0:\"\";s:10:\"blockTypes\";s:25:\"core/template-part/footer\";s:8:\"inserter\";s:0:\"\";s:11:\"featureFlag\";s:0:\"\";s:13:\"templateTypes\";s:0:\"\";s:6:\"source\";s:23:\"footer-with-3-menus.php\";}i:10;a:11:{s:5:\"title\";s:28:\"Four Image Grid Content Left\";s:4:\"slug\";s:47:\"woocommerce-blocks/form-image-grid-content-left\";s:11:\"description\";s:0:\"\";s:13:\"viewportWidth\";s:0:\"\";s:10:\"categories\";s:18:\"WooCommerce, About\";s:8:\"keywords\";s:0:\"\";s:10:\"blockTypes\";s:0:\"\";s:8:\"inserter\";s:0:\"\";s:11:\"featureFlag\";s:0:\"\";s:13:\"templateTypes\";s:0:\"\";s:6:\"source\";s:32:\"four-image-grid-content-left.php\";}i:11;a:11:{s:5:\"title\";s:20:\"Centered Header Menu\";s:4:\"slug\";s:39:\"woocommerce-blocks/header-centered-menu\";s:11:\"description\";s:0:\"\";s:13:\"viewportWidth\";s:0:\"\";s:10:\"categories\";s:11:\"WooCommerce\";s:8:\"keywords\";s:0:\"\";s:10:\"blockTypes\";s:25:\"core/template-part/header\";s:8:\"inserter\";s:0:\"\";s:11:\"featureFlag\";s:0:\"\";s:13:\"templateTypes\";s:0:\"\";s:6:\"source\";s:27:\"header-centered-pattern.php\";}i:12;a:11:{s:5:\"title\";s:23:\"Distraction Free Header\";s:4:\"slug\";s:42:\"woocommerce-blocks/header-distraction-free\";s:11:\"description\";s:0:\"\";s:13:\"viewportWidth\";s:0:\"\";s:10:\"categories\";s:11:\"WooCommerce\";s:8:\"keywords\";s:0:\"\";s:10:\"blockTypes\";s:25:\"core/template-part/header\";s:8:\"inserter\";s:0:\"\";s:11:\"featureFlag\";s:0:\"\";s:13:\"templateTypes\";s:0:\"\";s:6:\"source\";s:27:\"header-distraction-free.php\";}i:13;a:11:{s:5:\"title\";s:16:\"Essential Header\";s:4:\"slug\";s:35:\"woocommerce-blocks/header-essential\";s:11:\"description\";s:0:\"\";s:13:\"viewportWidth\";s:0:\"\";s:10:\"categories\";s:11:\"WooCommerce\";s:8:\"keywords\";s:0:\"\";s:10:\"blockTypes\";s:25:\"core/template-part/header\";s:8:\"inserter\";s:0:\"\";s:11:\"featureFlag\";s:0:\"\";s:13:\"templateTypes\";s:0:\"\";s:6:\"source\";s:20:\"header-essential.php\";}i:14;a:11:{s:5:\"title\";s:12:\"Large Header\";s:4:\"slug\";s:31:\"woocommerce-blocks/header-large\";s:11:\"description\";s:0:\"\";s:13:\"viewportWidth\";s:0:\"\";s:10:\"categories\";s:11:\"WooCommerce\";s:8:\"keywords\";s:0:\"\";s:10:\"blockTypes\";s:25:\"core/template-part/header\";s:8:\"inserter\";s:0:\"\";s:11:\"featureFlag\";s:0:\"\";s:13:\"templateTypes\";s:0:\"\";s:6:\"source\";s:16:\"header-large.php\";}i:15;a:11:{s:5:\"title\";s:14:\"Minimal Header\";s:4:\"slug\";s:33:\"woocommerce-blocks/header-minimal\";s:11:\"description\";s:0:\"\";s:13:\"viewportWidth\";s:0:\"\";s:10:\"categories\";s:11:\"WooCommerce\";s:8:\"keywords\";s:0:\"\";s:10:\"blockTypes\";s:25:\"core/template-part/header\";s:8:\"inserter\";s:0:\"\";s:11:\"featureFlag\";s:0:\"\";s:13:\"templateTypes\";s:0:\"\";s:6:\"source\";s:18:\"header-minimal.php\";}i:16;a:11:{s:5:\"title\";s:47:\"Heading with three columns of content with link\";s:4:\"slug\";s:66:\"woocommerce-blocks/heading-with-three-columns-of-content-with-link\";s:11:\"description\";s:0:\"\";s:13:\"viewportWidth\";s:0:\"\";s:10:\"categories\";s:21:\"WooCommerce, Services\";s:8:\"keywords\";s:0:\"\";s:10:\"blockTypes\";s:0:\"\";s:8:\"inserter\";s:0:\"\";s:11:\"featureFlag\";s:0:\"\";s:13:\"templateTypes\";s:0:\"\";s:6:\"source\";s:51:\"heading-with-three-columns-of-content-with-link.php\";}i:17;a:11:{s:5:\"title\";s:20:\"Hero Product 3 Split\";s:4:\"slug\";s:39:\"woocommerce-blocks/hero-product-3-split\";s:11:\"description\";s:0:\"\";s:13:\"viewportWidth\";s:0:\"\";s:10:\"categories\";s:29:\"WooCommerce, featured-selling\";s:8:\"keywords\";s:0:\"\";s:10:\"blockTypes\";s:0:\"\";s:8:\"inserter\";s:0:\"\";s:11:\"featureFlag\";s:0:\"\";s:13:\"templateTypes\";s:0:\"\";s:6:\"source\";s:24:\"hero-product-3-split.php\";}i:18;a:11:{s:5:\"title\";s:23:\"Hero Product Chessboard\";s:4:\"slug\";s:42:\"woocommerce-blocks/hero-product-chessboard\";s:11:\"description\";s:0:\"\";s:13:\"viewportWidth\";s:0:\"\";s:10:\"categories\";s:29:\"WooCommerce, featured-selling\";s:8:\"keywords\";s:0:\"\";s:10:\"blockTypes\";s:0:\"\";s:8:\"inserter\";s:0:\"\";s:11:\"featureFlag\";s:0:\"\";s:13:\"templateTypes\";s:0:\"\";s:6:\"source\";s:27:\"hero-product-chessboard.php\";}i:19;a:11:{s:5:\"title\";s:18:\"Hero Product Split\";s:4:\"slug\";s:37:\"woocommerce-blocks/hero-product-split\";s:11:\"description\";s:0:\"\";s:13:\"viewportWidth\";s:0:\"\";s:10:\"categories\";s:18:\"WooCommerce, Intro\";s:8:\"keywords\";s:0:\"\";s:10:\"blockTypes\";s:0:\"\";s:8:\"inserter\";s:0:\"\";s:11:\"featureFlag\";s:0:\"\";s:13:\"templateTypes\";s:0:\"\";s:6:\"source\";s:22:\"hero-product-split.php\";}i:20;a:11:{s:5:\"title\";s:33:\"Centered content with image below\";s:4:\"slug\";s:52:\"woocommerce-blocks/centered-content-with-image-below\";s:11:\"description\";s:0:\"\";s:13:\"viewportWidth\";s:0:\"\";s:10:\"categories\";s:18:\"WooCommerce, Intro\";s:8:\"keywords\";s:0:\"\";s:10:\"blockTypes\";s:0:\"\";s:8:\"inserter\";s:0:\"\";s:11:\"featureFlag\";s:0:\"\";s:13:\"templateTypes\";s:0:\"\";s:6:\"source\";s:43:\"intro-centered-content-with-image-below.php\";}i:21;a:11:{s:5:\"title\";s:22:\"Just Arrived Full Hero\";s:4:\"slug\";s:41:\"woocommerce-blocks/just-arrived-full-hero\";s:11:\"description\";s:0:\"\";s:13:\"viewportWidth\";s:0:\"\";s:10:\"categories\";s:18:\"WooCommerce, Intro\";s:8:\"keywords\";s:0:\"\";s:10:\"blockTypes\";s:0:\"\";s:8:\"inserter\";s:0:\"\";s:11:\"featureFlag\";s:0:\"\";s:13:\"templateTypes\";s:0:\"\";s:6:\"source\";s:26:\"just-arrived-full-hero.php\";}i:22;a:11:{s:5:\"title\";s:33:\"No Products Found - Clear Filters\";s:4:\"slug\";s:43:\"woocommerce/no-products-found-clear-filters\";s:11:\"description\";s:0:\"\";s:13:\"viewportWidth\";s:0:\"\";s:10:\"categories\";s:11:\"WooCommerce\";s:8:\"keywords\";s:0:\"\";s:10:\"blockTypes\";s:0:\"\";s:8:\"inserter\";s:2:\"no\";s:11:\"featureFlag\";s:0:\"\";s:13:\"templateTypes\";s:0:\"\";s:6:\"source\";s:29:\"no-products-found-filters.php\";}i:23;a:11:{s:5:\"title\";s:17:\"No Products Found\";s:4:\"slug\";s:29:\"woocommerce/no-products-found\";s:11:\"description\";s:0:\"\";s:13:\"viewportWidth\";s:0:\"\";s:10:\"categories\";s:11:\"WooCommerce\";s:8:\"keywords\";s:0:\"\";s:10:\"blockTypes\";s:0:\"\";s:8:\"inserter\";s:2:\"no\";s:11:\"featureFlag\";s:0:\"\";s:13:\"templateTypes\";s:0:\"\";s:6:\"source\";s:21:\"no-products-found.php\";}i:24;a:11:{s:5:\"title\";s:19:\"Default Coming Soon\";s:4:\"slug\";s:36:\"woocommerce/page-coming-soon-default\";s:11:\"description\";s:0:\"\";s:13:\"viewportWidth\";s:0:\"\";s:10:\"categories\";s:11:\"WooCommerce\";s:8:\"keywords\";s:0:\"\";s:10:\"blockTypes\";s:0:\"\";s:8:\"inserter\";s:5:\"false\";s:11:\"featureFlag\";s:0:\"\";s:13:\"templateTypes\";s:11:\"coming-soon\";s:6:\"source\";s:28:\"page-coming-soon-default.php\";}i:25;a:11:{s:5:\"title\";s:25:\"Coming Soon Image Gallery\";s:4:\"slug\";s:42:\"woocommerce/page-coming-soon-image-gallery\";s:11:\"description\";s:0:\"\";s:13:\"viewportWidth\";s:0:\"\";s:10:\"categories\";s:11:\"WooCommerce\";s:8:\"keywords\";s:0:\"\";s:10:\"blockTypes\";s:0:\"\";s:8:\"inserter\";s:5:\"false\";s:11:\"featureFlag\";s:0:\"\";s:13:\"templateTypes\";s:11:\"coming-soon\";s:6:\"source\";s:34:\"page-coming-soon-image-gallery.php\";}i:26;a:11:{s:5:\"title\";s:30:\"Coming Soon Minimal Left Image\";s:4:\"slug\";s:47:\"woocommerce/page-coming-soon-minimal-left-image\";s:11:\"description\";s:0:\"\";s:13:\"viewportWidth\";s:0:\"\";s:10:\"categories\";s:11:\"WooCommerce\";s:8:\"keywords\";s:0:\"\";s:10:\"blockTypes\";s:0:\"\";s:8:\"inserter\";s:5:\"false\";s:11:\"featureFlag\";s:0:\"\";s:13:\"templateTypes\";s:11:\"coming-soon\";s:6:\"source\";s:39:\"page-coming-soon-minimal-left-image.php\";}i:27;a:11:{s:5:\"title\";s:24:\"Coming Soon Modern Black\";s:4:\"slug\";s:41:\"woocommerce/page-coming-soon-modern-black\";s:11:\"description\";s:0:\"\";s:13:\"viewportWidth\";s:0:\"\";s:10:\"categories\";s:11:\"WooCommerce\";s:8:\"keywords\";s:0:\"\";s:10:\"blockTypes\";s:0:\"\";s:8:\"inserter\";s:5:\"false\";s:11:\"featureFlag\";s:0:\"\";s:13:\"templateTypes\";s:11:\"coming-soon\";s:6:\"source\";s:33:\"page-coming-soon-modern-black.php\";}i:28;a:11:{s:5:\"title\";s:29:\"Coming Soon Split Right Image\";s:4:\"slug\";s:46:\"woocommerce/page-coming-soon-split-right-image\";s:11:\"description\";s:0:\"\";s:13:\"viewportWidth\";s:0:\"\";s:10:\"categories\";s:11:\"WooCommerce\";s:8:\"keywords\";s:0:\"\";s:10:\"blockTypes\";s:0:\"\";s:8:\"inserter\";s:5:\"false\";s:11:\"featureFlag\";s:0:\"\";s:13:\"templateTypes\";s:11:\"coming-soon\";s:6:\"source\";s:38:\"page-coming-soon-split-right-image.php\";}i:29;a:11:{s:5:\"title\";s:34:\"Coming Soon With Header and Footer\";s:4:\"slug\";s:47:\"woocommerce/page-coming-soon-with-header-footer\";s:11:\"description\";s:0:\"\";s:13:\"viewportWidth\";s:0:\"\";s:10:\"categories\";s:11:\"WooCommerce\";s:8:\"keywords\";s:0:\"\";s:10:\"blockTypes\";s:0:\"\";s:8:\"inserter\";s:5:\"false\";s:11:\"featureFlag\";s:0:\"\";s:13:\"templateTypes\";s:11:\"coming-soon\";s:6:\"source\";s:39:\"page-coming-soon-with-header-footer.php\";}i:30;a:11:{s:5:\"title\";s:28:\"Product Collection 3 Columns\";s:4:\"slug\";s:47:\"woocommerce-blocks/product-collection-3-columns\";s:11:\"description\";s:0:\"\";s:13:\"viewportWidth\";s:0:\"\";s:10:\"categories\";s:11:\"WooCommerce\";s:8:\"keywords\";s:0:\"\";s:10:\"blockTypes\";s:0:\"\";s:8:\"inserter\";s:0:\"\";s:11:\"featureFlag\";s:0:\"\";s:13:\"templateTypes\";s:0:\"\";s:6:\"source\";s:32:\"product-collection-3-columns.php\";}i:31;a:11:{s:5:\"title\";s:28:\"Product Collection 4 Columns\";s:4:\"slug\";s:47:\"woocommerce-blocks/product-collection-4-columns\";s:11:\"description\";s:0:\"\";s:13:\"viewportWidth\";s:0:\"\";s:10:\"categories\";s:29:\"WooCommerce, featured-selling\";s:8:\"keywords\";s:0:\"\";s:10:\"blockTypes\";s:0:\"\";s:8:\"inserter\";s:0:\"\";s:11:\"featureFlag\";s:0:\"\";s:13:\"templateTypes\";s:0:\"\";s:6:\"source\";s:32:\"product-collection-4-columns.php\";}i:32;a:11:{s:5:\"title\";s:28:\"Product Collection 5 Columns\";s:4:\"slug\";s:47:\"woocommerce-blocks/product-collection-5-columns\";s:11:\"description\";s:0:\"\";s:13:\"viewportWidth\";s:0:\"\";s:10:\"categories\";s:29:\"WooCommerce, featured-selling\";s:8:\"keywords\";s:0:\"\";s:10:\"blockTypes\";s:0:\"\";s:8:\"inserter\";s:0:\"\";s:11:\"featureFlag\";s:0:\"\";s:13:\"templateTypes\";s:0:\"\";s:6:\"source\";s:32:\"product-collection-5-columns.php\";}i:33;a:11:{s:5:\"title\";s:47:\"Product Collection: Featured Products 5 Columns\";s:4:\"slug\";s:65:\"woocommerce-blocks/product-collection-featured-products-5-columns\";s:11:\"description\";s:0:\"\";s:13:\"viewportWidth\";s:0:\"\";s:10:\"categories\";s:29:\"WooCommerce, featured-selling\";s:8:\"keywords\";s:0:\"\";s:10:\"blockTypes\";s:0:\"\";s:8:\"inserter\";s:0:\"\";s:11:\"featureFlag\";s:0:\"\";s:13:\"templateTypes\";s:0:\"\";s:6:\"source\";s:50:\"product-collection-featured-products-5-columns.php\";}i:34;a:11:{s:5:\"title\";s:15:\"Product Gallery\";s:4:\"slug\";s:48:\"woocommerce-blocks/product-query-product-gallery\";s:11:\"description\";s:0:\"\";s:13:\"viewportWidth\";s:0:\"\";s:10:\"categories\";s:29:\"WooCommerce, featured-selling\";s:8:\"keywords\";s:0:\"\";s:10:\"blockTypes\";s:36:\"core/query/woocommerce/product-query\";s:8:\"inserter\";s:0:\"\";s:11:\"featureFlag\";s:0:\"\";s:13:\"templateTypes\";s:0:\"\";s:6:\"source\";s:33:\"product-query-product-gallery.php\";}i:35;a:11:{s:5:\"title\";s:14:\"Product Search\";s:4:\"slug\";s:31:\"woocommerce/product-search-form\";s:11:\"description\";s:0:\"\";s:13:\"viewportWidth\";s:0:\"\";s:10:\"categories\";s:11:\"WooCommerce\";s:8:\"keywords\";s:0:\"\";s:10:\"blockTypes\";s:0:\"\";s:8:\"inserter\";s:2:\"no\";s:11:\"featureFlag\";s:0:\"\";s:13:\"templateTypes\";s:0:\"\";s:6:\"source\";s:23:\"product-search-form.php\";}i:36;a:11:{s:5:\"title\";s:16:\"Related Products\";s:4:\"slug\";s:35:\"woocommerce-blocks/related-products\";s:11:\"description\";s:0:\"\";s:13:\"viewportWidth\";s:0:\"\";s:10:\"categories\";s:11:\"WooCommerce\";s:8:\"keywords\";s:0:\"\";s:10:\"blockTypes\";s:0:\"\";s:8:\"inserter\";s:5:\"false\";s:11:\"featureFlag\";s:0:\"\";s:13:\"templateTypes\";s:0:\"\";s:6:\"source\";s:20:\"related-products.php\";}i:37;a:11:{s:5:\"title\";s:33:\"Social: Follow us on social media\";s:4:\"slug\";s:51:\"woocommerce-blocks/social-follow-us-in-social-media\";s:11:\"description\";s:0:\"\";s:13:\"viewportWidth\";s:0:\"\";s:10:\"categories\";s:25:\"WooCommerce, social-media\";s:8:\"keywords\";s:0:\"\";s:10:\"blockTypes\";s:0:\"\";s:8:\"inserter\";s:0:\"\";s:11:\"featureFlag\";s:0:\"\";s:13:\"templateTypes\";s:0:\"\";s:6:\"source\";s:36:\"social-follow-us-in-social-media.php\";}i:38;a:11:{s:5:\"title\";s:22:\"Testimonials 3 Columns\";s:4:\"slug\";s:41:\"woocommerce-blocks/testimonials-3-columns\";s:11:\"description\";s:0:\"\";s:13:\"viewportWidth\";s:0:\"\";s:10:\"categories\";s:20:\"WooCommerce, Reviews\";s:8:\"keywords\";s:0:\"\";s:10:\"blockTypes\";s:0:\"\";s:8:\"inserter\";s:0:\"\";s:11:\"featureFlag\";s:0:\"\";s:13:\"templateTypes\";s:0:\"\";s:6:\"source\";s:26:\"testimonials-3-columns.php\";}i:39;a:11:{s:5:\"title\";s:19:\"Testimonials Single\";s:4:\"slug\";s:38:\"woocommerce-blocks/testimonials-single\";s:11:\"description\";s:0:\"\";s:13:\"viewportWidth\";s:0:\"\";s:10:\"categories\";s:20:\"WooCommerce, Reviews\";s:8:\"keywords\";s:0:\"\";s:10:\"blockTypes\";s:0:\"\";s:8:\"inserter\";s:0:\"\";s:11:\"featureFlag\";s:0:\"\";s:13:\"templateTypes\";s:0:\"\";s:6:\"source\";s:23:\"testimonials-single.php\";}i:40;a:11:{s:5:\"title\";s:37:\"Three columns with images and content\";s:4:\"slug\";s:56:\"woocommerce-blocks/three-columns-with-images-and-content\";s:11:\"description\";s:0:\"\";s:13:\"viewportWidth\";s:0:\"\";s:10:\"categories\";s:21:\"WooCommerce, Services\";s:8:\"keywords\";s:0:\"\";s:10:\"blockTypes\";s:0:\"\";s:8:\"inserter\";s:0:\"\";s:11:\"featureFlag\";s:0:\"\";s:13:\"templateTypes\";s:0:\"\";s:6:\"source\";s:41:\"three-columns-with-images-and-content.php\";}}}','off'), +(30500,'_transient_timeout_woocommerce_blocks_asset_api_script_data_ssl','1752934729','off'), +(30501,'_transient_woocommerce_blocks_asset_api_script_data_ssl','{\"script_data\":{\"assets\\/client\\/blocks\\/wc-settings.js\":{\"src\":\"https:\\/\\/haikuatelier.com\\/app\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/wc-settings.js\",\"version\":\"4f2e7067bd1c84cca43f\",\"dependencies\":[\"wc-types\",\"wp-hooks\",\"wp-polyfill\"]},\"assets\\/client\\/blocks\\/wc-types.js\":{\"src\":\"https:\\/\\/haikuatelier.com\\/app\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/wc-types.js\",\"version\":\"35dee88875b85ff65531\",\"dependencies\":[\"wp-polyfill\"]},\"assets\\/client\\/blocks\\/wc-blocks-middleware.js\":{\"src\":\"https:\\/\\/haikuatelier.com\\/app\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/wc-blocks-middleware.js\",\"version\":\"d79dedade2f2e4dc9df4\",\"dependencies\":[\"wp-api-fetch\",\"wp-polyfill\",\"wp-url\"]},\"assets\\/client\\/blocks\\/wc-blocks-data.js\":{\"src\":\"https:\\/\\/haikuatelier.com\\/app\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/wc-blocks-data.js\",\"version\":\"6a989f68440048d30473\",\"dependencies\":[\"wc-blocks-checkout-events\",\"wc-blocks-registry\",\"wc-settings\",\"wc-types\",\"wp-api-fetch\",\"wp-data\",\"wp-data-controls\",\"wp-deprecated\",\"wp-dom\",\"wp-element\",\"wp-hooks\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-notices\",\"wp-polyfill\",\"wp-url\"]},\"assets\\/client\\/blocks\\/wc-blocks-vendors.js\":{\"src\":\"https:\\/\\/haikuatelier.com\\/app\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/wc-blocks-vendors.js\",\"version\":\"75d3533c33b46049ee88\",\"dependencies\":[\"wp-polyfill\"]},\"assets\\/client\\/blocks\\/wc-blocks-registry.js\":{\"src\":\"https:\\/\\/haikuatelier.com\\/app\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/wc-blocks-registry.js\",\"version\":\"96479001b0fbd0c70f36\",\"dependencies\":[\"react-jsx-runtime\",\"wc-settings\",\"wp-data\",\"wp-deprecated\",\"wp-element\",\"wp-hooks\",\"wp-polyfill\"]},\"assets\\/client\\/blocks\\/wc-blocks.js\":{\"src\":\"https:\\/\\/haikuatelier.com\\/app\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/wc-blocks.js\",\"version\":\"0db759a8a6e010732c50\",\"dependencies\":[\"react-jsx-runtime\",\"wp-blocks\",\"wp-compose\",\"wp-element\",\"wp-hooks\",\"wp-polyfill\"]},\"assets\\/client\\/blocks\\/wc-blocks-shared-context.js\":{\"src\":\"https:\\/\\/haikuatelier.com\\/app\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/wc-blocks-shared-context.js\",\"version\":\"1d9ff4f03584490ad390\",\"dependencies\":[\"react-jsx-runtime\",\"wp-element\",\"wp-polyfill\"]},\"assets\\/client\\/blocks\\/wc-blocks-shared-hocs.js\":{\"src\":\"https:\\/\\/haikuatelier.com\\/app\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/wc-blocks-shared-hocs.js\",\"version\":\"99a2a0de38bfa707fc7b\",\"dependencies\":[\"react-jsx-runtime\",\"wc-blocks-data-store\",\"wc-blocks-shared-context\",\"wc-types\",\"wp-data\",\"wp-element\",\"wp-is-shallow-equal\",\"wp-polyfill\"]},\"assets\\/client\\/blocks\\/price-format.js\":{\"src\":\"https:\\/\\/haikuatelier.com\\/app\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/price-format.js\",\"version\":\"5f0dedeb373c5bb189ff\",\"dependencies\":[\"wc-settings\",\"wp-html-entities\",\"wp-polyfill\"]},\"assets\\/client\\/blocks\\/wc-blocks-frontend-vendors-frontend.js\":{\"src\":\"https:\\/\\/haikuatelier.com\\/app\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/wc-blocks-frontend-vendors-frontend.js\",\"version\":\"2a67f05c7f92833d4e15\",\"dependencies\":[\"wp-polyfill\"]},\"assets\\/client\\/blocks\\/wc-cart-checkout-vendors-frontend.js\":{\"src\":\"https:\\/\\/haikuatelier.com\\/app\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/wc-cart-checkout-vendors-frontend.js\",\"version\":\"d8b1ce115c3935c88bec\",\"dependencies\":[\"wp-polyfill\"]},\"assets\\/client\\/blocks\\/wc-cart-checkout-base-frontend.js\":{\"src\":\"https:\\/\\/haikuatelier.com\\/app\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/wc-cart-checkout-base-frontend.js\",\"version\":\"7d01b022a3ccdebeef08\",\"dependencies\":[\"wp-polyfill\"]},\"assets\\/client\\/blocks\\/blocks-checkout.js\":{\"src\":\"https:\\/\\/haikuatelier.com\\/app\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/blocks-checkout.js\",\"version\":\"831c209cc1dd2f820fc4\",\"dependencies\":[\"wc-cart-checkout-base\",\"wc-cart-checkout-vendors\",\"react\",\"react-dom\",\"react-jsx-runtime\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-blocks-registry\",\"wc-settings\",\"wc-types\",\"wp-a11y\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-element\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-notices\",\"wp-polyfill\",\"wp-primitives\",\"wp-warning\"]},\"assets\\/client\\/blocks\\/blocks-checkout-events.js\":{\"src\":\"https:\\/\\/haikuatelier.com\\/app\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/blocks-checkout-events.js\",\"version\":\"2d0fd4590f6cc663947c\",\"dependencies\":[\"wc-types\",\"wp-polyfill\"]},\"assets\\/client\\/blocks\\/blocks-components.js\":{\"src\":\"https:\\/\\/haikuatelier.com\\/app\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/blocks-components.js\",\"version\":\"150bd47634d08fcc2dfc\",\"dependencies\":[\"wc-cart-checkout-base\",\"wc-cart-checkout-vendors\",\"react\",\"react-dom\",\"react-jsx-runtime\",\"wc-blocks-data-store\",\"wc-settings\",\"wc-types\",\"wp-a11y\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-element\",\"wp-html-entities\",\"wp-i18n\",\"wp-notices\",\"wp-polyfill\",\"wp-primitives\"]},\"assets\\/client\\/blocks\\/wc-schema-parser.js\":{\"src\":\"https:\\/\\/haikuatelier.com\\/app\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/wc-schema-parser.js\",\"version\":\"f762078aeb4207fe9c3d\",\"dependencies\":[\"wp-polyfill\"]},\"assets\\/client\\/admin\\/customer-effort-score\\/index.js\":{\"src\":\"https:\\/\\/haikuatelier.com\\/app\\/plugins\\/woocommerce\\/assets\\/client\\/admin\\/customer-effort-score\\/index.js\",\"version\":\"02f7a2e1496459cb9229\",\"dependencies\":[\"react\",\"wc-experimental\",\"wc-navigation\",\"wc-store-data\",\"wc-tracks\",\"wp-api-fetch\",\"wp-components\",\"wp-compose\",\"wp-data\",\"wp-data-controls\",\"wp-element\",\"wp-i18n\"]},\"assets\\/client\\/blocks\\/mini-cart-component-frontend.js\":{\"src\":\"https:\\/\\/haikuatelier.com\\/app\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-component-frontend.js\",\"version\":\"2578b29b4939339ab9a4\",\"dependencies\":[\"wc-cart-checkout-base\",\"wc-cart-checkout-vendors\",\"react\",\"react-jsx-runtime\",\"wc-blocks-checkout\",\"wc-blocks-components\",\"wc-blocks-data-store\",\"wc-blocks-registry\",\"wc-price-format\",\"wc-settings\",\"wc-types\",\"wp-a11y\",\"wp-autop\",\"wp-compose\",\"wp-data\",\"wp-deprecated\",\"wp-element\",\"wp-hooks\",\"wp-html-entities\",\"wp-i18n\",\"wp-is-shallow-equal\",\"wp-keycodes\",\"wp-polyfill\",\"wp-primitives\",\"wp-style-engine\",\"wp-url\",\"wp-wordcount\"]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/shopping-button-frontend.js\":{\"src\":\"https:\\/\\/haikuatelier.com\\/app\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/shopping-button-frontend.js\",\"version\":\"wc-9.9.4\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/title-frontend.js\":{\"src\":\"https:\\/\\/haikuatelier.com\\/app\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/title-frontend.js\",\"version\":\"wc-9.9.4\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/footer-frontend.js\":{\"src\":\"https:\\/\\/haikuatelier.com\\/app\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/footer-frontend.js\",\"version\":\"wc-9.9.4\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/items-frontend.js\":{\"src\":\"https:\\/\\/haikuatelier.com\\/app\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/items-frontend.js\",\"version\":\"wc-9.9.4\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/title-style.js\":{\"src\":\"https:\\/\\/haikuatelier.com\\/app\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/title-style.js\",\"version\":\"wc-9.9.4\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/cart-button-frontend.js\":{\"src\":\"https:\\/\\/haikuatelier.com\\/app\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/cart-button-frontend.js\",\"version\":\"wc-9.9.4\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/checkout-button-frontend.js\":{\"src\":\"https:\\/\\/haikuatelier.com\\/app\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/checkout-button-frontend.js\",\"version\":\"wc-9.9.4\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/items-style.js\":{\"src\":\"https:\\/\\/haikuatelier.com\\/app\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/items-style.js\",\"version\":\"wc-9.9.4\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/title-label-style.js\":{\"src\":\"https:\\/\\/haikuatelier.com\\/app\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/title-label-style.js\",\"version\":\"wc-9.9.4\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/empty-cart-frontend.js\":{\"src\":\"https:\\/\\/haikuatelier.com\\/app\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/empty-cart-frontend.js\",\"version\":\"wc-9.9.4\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/checkout-button-style.js\":{\"src\":\"https:\\/\\/haikuatelier.com\\/app\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/checkout-button-style.js\",\"version\":\"wc-9.9.4\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/filled-cart-frontend.js\":{\"src\":\"https:\\/\\/haikuatelier.com\\/app\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/filled-cart-frontend.js\",\"version\":\"wc-9.9.4\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/empty-cart-style.js\":{\"src\":\"https:\\/\\/haikuatelier.com\\/app\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/empty-cart-style.js\",\"version\":\"wc-9.9.4\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/title-items-counter-style.js\":{\"src\":\"https:\\/\\/haikuatelier.com\\/app\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/title-items-counter-style.js\",\"version\":\"wc-9.9.4\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/footer-style.js\":{\"src\":\"https:\\/\\/haikuatelier.com\\/app\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/footer-style.js\",\"version\":\"wc-9.9.4\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/title-items-counter-frontend.js\":{\"src\":\"https:\\/\\/haikuatelier.com\\/app\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/title-items-counter-frontend.js\",\"version\":\"wc-9.9.4\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/filled-cart-style.js\":{\"src\":\"https:\\/\\/haikuatelier.com\\/app\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/filled-cart-style.js\",\"version\":\"wc-9.9.4\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/cart-button-style.js\":{\"src\":\"https:\\/\\/haikuatelier.com\\/app\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/cart-button-style.js\",\"version\":\"wc-9.9.4\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/title-label-frontend.js\":{\"src\":\"https:\\/\\/haikuatelier.com\\/app\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/title-label-frontend.js\",\"version\":\"wc-9.9.4\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/shopping-button-style.js\":{\"src\":\"https:\\/\\/haikuatelier.com\\/app\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/shopping-button-style.js\",\"version\":\"wc-9.9.4\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/mini-cart-contents-block\\/products-table-frontend.js\":{\"src\":\"https:\\/\\/haikuatelier.com\\/app\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/mini-cart-contents-block\\/products-table-frontend.js\",\"version\":\"wc-9.9.4\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/cart-blocks\\/cart-line-items--mini-cart-contents-block\\/products-table-frontend.js\":{\"src\":\"https:\\/\\/haikuatelier.com\\/app\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/cart-blocks\\/cart-line-items--mini-cart-contents-block\\/products-table-frontend.js\",\"version\":\"wc-9.9.4\",\"dependencies\":[]},\"assets\\/client\\/blocks\\/wc-shipping-method-pickup-location.js\":{\"src\":\"https:\\/\\/haikuatelier.com\\/app\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/wc-shipping-method-pickup-location.js\",\"version\":\"0446a66f2604add5f739\",\"dependencies\":[\"react\",\"react-dom\",\"react-jsx-runtime\",\"wc-settings\",\"wc-types\",\"wp-api-fetch\",\"wp-components\",\"wp-data\",\"wp-element\",\"wp-i18n\",\"wp-notices\",\"wp-polyfill\",\"wp-primitives\",\"wp-url\"]}},\"version\":\"wc-9.9.4\",\"hash\":\"313147516499b56ba02dbd7a799ff16a\"}','off'), +(30507,'_transient_timeout_wc_product_children_240','1753006121','off'), +(30508,'_transient_wc_product_children_240','a:3:{s:3:\"all\";a:2:{i:0;i:241;i:1;i:242;}s:7:\"visible\";a:2:{i:0;i:241;i:1;i:242;}s:7:\"version\";s:10:\"1750363871\";}','off'), +(30509,'_transient_timeout_wc_product_children_113','1752979705','off'), +(30510,'_transient_wc_product_children_113','a:3:{s:3:\"all\";a:8:{i:0;i:114;i:1;i:115;i:2;i:116;i:3;i:117;i:4;i:118;i:5;i:119;i:6;i:120;i:7;i:529;}s:7:\"visible\";a:8:{i:0;i:114;i:1;i:115;i:2;i:116;i:3;i:117;i:4;i:118;i:5;i:119;i:6;i:120;i:7;i:529;}s:7:\"version\";s:10:\"1750363871\";}','off'), +(30511,'_transient_timeout_wc_product_children_102','1752979706','off'), +(30512,'_transient_wc_product_children_102','a:3:{s:3:\"all\";a:8:{i:0;i:103;i:1;i:104;i:2;i:105;i:3;i:106;i:4;i:107;i:5;i:108;i:6;i:109;i:7;i:528;}s:7:\"visible\";a:8:{i:0;i:103;i:1;i:104;i:2;i:105;i:3;i:106;i:4;i:107;i:5;i:108;i:6;i:109;i:7;i:528;}s:7:\"version\";s:10:\"1750363871\";}','off'), +(30522,'_transient_timeout_wc_product_children_133','1752959997','off'), +(30523,'_transient_wc_product_children_133','a:3:{s:3:\"all\";a:8:{i:0;i:134;i:1;i:135;i:2;i:136;i:3;i:137;i:4;i:138;i:5;i:139;i:6;i:140;i:7;i:532;}s:7:\"visible\";a:8:{i:0;i:134;i:1;i:135;i:2;i:136;i:3;i:137;i:4;i:138;i:5;i:139;i:6;i:140;i:7;i:532;}s:7:\"version\";s:10:\"1750363871\";}','off'), +(30528,'_transient_timeout_wc_product_children_385','1752978934','off'), +(30529,'_transient_wc_product_children_385','a:3:{s:3:\"all\";a:3:{i:0;i:389;i:1;i:391;i:2;i:392;}s:7:\"visible\";a:3:{i:0;i:389;i:1;i:391;i:2;i:392;}s:7:\"version\";s:10:\"1750363871\";}','off'), +(30540,'_transient_timeout_wc_product_children_766','1752959977','off'), +(30541,'_transient_wc_product_children_766','a:3:{s:3:\"all\";a:3:{i:0;i:767;i:1;i:768;i:2;i:775;}s:7:\"visible\";a:3:{i:0;i:767;i:1;i:768;i:2;i:775;}s:7:\"version\";s:10:\"1750363871\";}','off'), +(30542,'_transient_timeout_wc_product_children_625','1752959977','off'), +(30543,'_transient_wc_product_children_625','a:3:{s:3:\"all\";a:8:{i:0;i:626;i:1;i:627;i:2;i:628;i:3;i:629;i:4;i:630;i:5;i:631;i:6;i:632;i:7;i:633;}s:7:\"visible\";a:8:{i:0;i:626;i:1;i:627;i:2;i:628;i:3;i:629;i:4;i:630;i:5;i:631;i:6;i:632;i:7;i:633;}s:7:\"version\";s:10:\"1750363871\";}','off'), +(30544,'_transient_timeout_wc_product_children_613','1752959978','off'), +(30545,'_transient_wc_product_children_613','a:3:{s:3:\"all\";a:8:{i:0;i:614;i:1;i:615;i:2;i:616;i:3;i:617;i:4;i:618;i:5;i:619;i:6;i:620;i:7;i:624;}s:7:\"visible\";a:8:{i:0;i:614;i:1;i:615;i:2;i:616;i:3;i:617;i:4;i:618;i:5;i:619;i:6;i:620;i:7;i:624;}s:7:\"version\";s:10:\"1750363871\";}','off'), +(30563,'_transient_timeout_wc_product_children_72','1752979706','off'), +(30564,'_transient_wc_product_children_72','a:3:{s:3:\"all\";a:7:{i:0;i:73;i:1;i:74;i:2;i:75;i:3;i:76;i:4;i:77;i:5;i:78;i:6;i:79;}s:7:\"visible\";a:7:{i:0;i:73;i:1;i:74;i:2;i:75;i:3;i:76;i:4;i:77;i:5;i:78;i:6;i:79;}s:7:\"version\";s:10:\"1750363871\";}','off'), +(30574,'_transient_timeout_wc_shipping_method_count','1752354498','off'), +(30575,'_transient_wc_shipping_method_count','a:4:{s:7:\"version\";s:10:\"1733267802\";s:6:\"legacy\";i:0;s:7:\"enabled\";i:5;s:8:\"disabled\";i:0;}','off'), +(30592,'_transient_timeout_wc_var_prices_433','1752733513','off'), +(30593,'_transient_wc_var_prices_433','{\"version\":\"1750141509\",\"f9e544f77b7eac7add281ef28ca5559f\":{\"price\":{\"478\":\"48.00\",\"479\":\"48.00\",\"480\":\"48.00\"},\"regular_price\":{\"478\":\"48.00\",\"479\":\"48.00\",\"480\":\"48.00\"},\"sale_price\":{\"478\":\"48.00\",\"479\":\"48.00\",\"480\":\"48.00\"}}}','off'), +(30598,'_transient_timeout_wc_var_prices_430','1752733513','off'), +(30599,'_transient_wc_var_prices_430','{\"version\":\"1750141509\",\"f9e544f77b7eac7add281ef28ca5559f\":{\"price\":{\"847\":\"45.00\",\"845\":\"45.00\",\"846\":\"45.00\"},\"regular_price\":{\"847\":\"45.00\",\"845\":\"45.00\",\"846\":\"45.00\"},\"sale_price\":{\"847\":\"45.00\",\"845\":\"45.00\",\"846\":\"45.00\"}}}','off'), +(30606,'_transient_timeout_wc_var_prices_385','1752934784','off'), +(30607,'_transient_wc_var_prices_385','{\"version\":\"1750342773\",\"f9e544f77b7eac7add281ef28ca5559f\":{\"price\":{\"389\":\"120.00\",\"391\":\"120.00\",\"392\":\"120.00\"},\"regular_price\":{\"389\":\"120.00\",\"391\":\"120.00\",\"392\":\"120.00\"},\"sale_price\":{\"389\":\"120.00\",\"391\":\"120.00\",\"392\":\"120.00\"}}}','off'), +(30624,'_transient_timeout_wc_product_children_312','1752978672','off'), +(30625,'_transient_wc_product_children_312','a:3:{s:3:\"all\";a:3:{i:0;i:655;i:1;i:654;i:2;i:656;}s:7:\"visible\";a:3:{i:0;i:655;i:1;i:654;i:2;i:656;}s:7:\"version\";s:10:\"1750363871\";}','off'), +(30626,'_transient_timeout_wc_var_prices_312','1752934784','off'), +(30627,'_transient_wc_var_prices_312','{\"version\":\"1750342773\",\"f9e544f77b7eac7add281ef28ca5559f\":{\"price\":{\"655\":\"75.00\",\"654\":\"52.00\",\"656\":\"50.00\"},\"regular_price\":{\"655\":\"75.00\",\"654\":\"52.00\",\"656\":\"50.00\"},\"sale_price\":{\"655\":\"75.00\",\"654\":\"52.00\",\"656\":\"50.00\"}}}','off'), +(30631,'_transient_timeout_wc_product_children_306','1752978672','off'), +(30632,'_transient_wc_product_children_306','a:3:{s:3:\"all\";a:3:{i:0;i:652;i:1;i:651;i:2;i:653;}s:7:\"visible\";a:3:{i:0;i:652;i:1;i:651;i:2;i:653;}s:7:\"version\";s:10:\"1750363871\";}','off'), +(30633,'_transient_timeout_wc_var_prices_306','1752934784','off'), +(30634,'_transient_wc_var_prices_306','{\"version\":\"1750342773\",\"f9e544f77b7eac7add281ef28ca5559f\":{\"price\":{\"652\":\"70.00\",\"651\":\"50.00\",\"653\":\"48.00\"},\"regular_price\":{\"652\":\"70.00\",\"651\":\"50.00\",\"653\":\"48.00\"},\"sale_price\":{\"652\":\"70.00\",\"651\":\"50.00\",\"653\":\"48.00\"}}}','off'), +(30659,'_transient_timeout_wc_var_prices_246','1752870677','off'), +(30660,'_transient_wc_var_prices_246','{\"version\":\"1750278673\",\"f9e544f77b7eac7add281ef28ca5559f\":{\"price\":{\"247\":\"85.00\",\"248\":\"85.00\"},\"regular_price\":{\"247\":\"85.00\",\"248\":\"85.00\"},\"sale_price\":{\"247\":\"85.00\",\"248\":\"85.00\"}}}','off'), +(30663,'_transient_timeout_wc_var_prices_240','1752934784','off'), +(30664,'_transient_wc_var_prices_240','{\"version\":\"1750342773\",\"f9e544f77b7eac7add281ef28ca5559f\":{\"price\":{\"241\":\"80.00\",\"242\":\"80.00\"},\"regular_price\":{\"241\":\"80.00\",\"242\":\"80.00\"},\"sale_price\":{\"241\":\"80.00\",\"242\":\"80.00\"}}}','off'), +(30673,'_transient_timeout_wc_product_children_202','1752986692','off'), +(30674,'_transient_wc_product_children_202','a:3:{s:3:\"all\";a:3:{i:0;i:638;i:1;i:637;i:2;i:639;}s:7:\"visible\";a:3:{i:0;i:638;i:1;i:637;i:2;i:639;}s:7:\"version\";s:10:\"1750363871\";}','off'), +(30675,'_transient_timeout_wc_var_prices_202','1752934784','off'), +(30676,'_transient_wc_var_prices_202','{\"version\":\"1750342773\",\"f9e544f77b7eac7add281ef28ca5559f\":{\"price\":{\"638\":\"85.00\",\"637\":\"50.00\",\"639\":\"50.00\"},\"regular_price\":{\"638\":\"85.00\",\"637\":\"50.00\",\"639\":\"50.00\"},\"sale_price\":{\"638\":\"85.00\",\"637\":\"50.00\",\"639\":\"50.00\"}}}','off'), +(30689,'_transient_timeout_wc_var_prices_155','1752355297','off'), +(30690,'_transient_wc_var_prices_155','{\"version\":\"1733267802\",\"f9e544f77b7eac7add281ef28ca5559f\":{\"price\":{\"156\":\"80.00\",\"157\":\"80.00\",\"158\":\"80.00\",\"159\":\"80.00\",\"160\":\"80.00\",\"161\":\"80.00\",\"162\":\"80.00\"},\"regular_price\":{\"156\":\"80.00\",\"157\":\"80.00\",\"158\":\"80.00\",\"159\":\"80.00\",\"160\":\"80.00\",\"161\":\"80.00\",\"162\":\"80.00\"},\"sale_price\":{\"156\":\"80.00\",\"157\":\"80.00\",\"158\":\"80.00\",\"159\":\"80.00\",\"160\":\"80.00\",\"161\":\"80.00\",\"162\":\"80.00\"}}}','off'), +(30693,'_transient_timeout_wc_var_prices_144','1752355297','off'), +(30694,'_transient_wc_var_prices_144','{\"version\":\"1733267802\",\"f9e544f77b7eac7add281ef28ca5559f\":{\"price\":{\"145\":\"75.00\",\"146\":\"75.00\",\"147\":\"75.00\",\"148\":\"75.00\",\"149\":\"75.00\",\"150\":\"75.00\",\"151\":\"75.00\"},\"regular_price\":{\"145\":\"75.00\",\"146\":\"75.00\",\"147\":\"75.00\",\"148\":\"75.00\",\"149\":\"75.00\",\"150\":\"75.00\",\"151\":\"75.00\"},\"sale_price\":{\"145\":\"75.00\",\"146\":\"75.00\",\"147\":\"75.00\",\"148\":\"75.00\",\"149\":\"75.00\",\"150\":\"75.00\",\"151\":\"75.00\"}}}','off'), +(30697,'_transient_timeout_wc_var_prices_133','1752934784','off'), +(30698,'_transient_wc_var_prices_133','{\"version\":\"1750342773\",\"f9e544f77b7eac7add281ef28ca5559f\":{\"price\":{\"134\":\"95.00\",\"135\":\"95.00\",\"136\":\"95.00\",\"137\":\"95.00\",\"138\":\"95.00\",\"139\":\"95.00\",\"140\":\"95.00\",\"532\":\"95.00\"},\"regular_price\":{\"134\":\"95.00\",\"135\":\"95.00\",\"136\":\"95.00\",\"137\":\"95.00\",\"138\":\"95.00\",\"139\":\"95.00\",\"140\":\"95.00\",\"532\":\"95.00\"},\"sale_price\":{\"134\":\"95.00\",\"135\":\"95.00\",\"136\":\"95.00\",\"137\":\"95.00\",\"138\":\"95.00\",\"139\":\"95.00\",\"140\":\"95.00\",\"532\":\"95.00\"}}}','off'), +(30705,'_transient_timeout_wc_var_prices_113','1752934784','off'), +(30706,'_transient_wc_var_prices_113','{\"version\":\"1750342773\",\"f9e544f77b7eac7add281ef28ca5559f\":{\"price\":{\"114\":\"90.00\",\"115\":\"90.00\",\"116\":\"90.00\",\"117\":\"90.00\",\"118\":\"90.00\",\"119\":\"90.00\",\"120\":\"90.00\"},\"regular_price\":{\"114\":\"90.00\",\"115\":\"90.00\",\"116\":\"90.00\",\"117\":\"90.00\",\"118\":\"90.00\",\"119\":\"90.00\",\"120\":\"90.00\"},\"sale_price\":{\"114\":\"90.00\",\"115\":\"90.00\",\"116\":\"90.00\",\"117\":\"90.00\",\"118\":\"90.00\",\"119\":\"90.00\",\"120\":\"90.00\"}}}','off'), +(30709,'_transient_timeout_wc_var_prices_102','1752934784','off'), +(30710,'_transient_wc_var_prices_102','{\"version\":\"1750342773\",\"f9e544f77b7eac7add281ef28ca5559f\":{\"price\":{\"103\":\"85.00\",\"104\":\"85.00\",\"105\":\"85.00\",\"106\":\"85.00\",\"107\":\"85.00\",\"108\":\"85.00\",\"109\":\"85.00\"},\"regular_price\":{\"103\":\"85.00\",\"104\":\"85.00\",\"105\":\"85.00\",\"106\":\"85.00\",\"107\":\"85.00\",\"108\":\"85.00\",\"109\":\"85.00\"},\"sale_price\":{\"103\":\"85.00\",\"104\":\"85.00\",\"105\":\"85.00\",\"106\":\"85.00\",\"107\":\"85.00\",\"108\":\"85.00\",\"109\":\"85.00\"}}}','off'), +(30713,'_transient_timeout_wc_var_prices_72','1752934784','off'), +(30714,'_transient_wc_var_prices_72','{\"version\":\"1750342773\",\"f9e544f77b7eac7add281ef28ca5559f\":{\"price\":{\"73\":\"85.00\",\"74\":\"85.00\",\"75\":\"85.00\",\"76\":\"85.00\",\"77\":\"85.00\",\"78\":\"85.00\",\"79\":\"85.00\"},\"regular_price\":{\"73\":\"85.00\",\"74\":\"85.00\",\"75\":\"85.00\",\"76\":\"85.00\",\"77\":\"85.00\",\"78\":\"85.00\",\"79\":\"85.00\"},\"sale_price\":{\"73\":\"85.00\",\"74\":\"85.00\",\"75\":\"85.00\",\"76\":\"85.00\",\"77\":\"85.00\",\"78\":\"85.00\",\"79\":\"85.00\"}}}','off'), +(30803,'_transient_timeout_woocommerce_admin_pes_incentive_woopayments_store_has_orders','1756885485','off'), +(30804,'_transient_woocommerce_admin_pes_incentive_woopayments_store_has_orders','yes','off'), +(30835,'_transient_timeout_wc_var_prices_766','1752934784','off'), +(30836,'_transient_wc_var_prices_766','{\"version\":\"1750342773\",\"f9e544f77b7eac7add281ef28ca5559f\":{\"price\":{\"767\":\"85.00\",\"768\":\"55.00\",\"775\":\"55.00\"},\"regular_price\":{\"767\":\"85.00\",\"768\":\"55.00\",\"775\":\"55.00\"},\"sale_price\":{\"767\":\"85.00\",\"768\":\"55.00\",\"775\":\"55.00\"}}}','off'), +(30837,'_transient_timeout_wc_var_prices_625','1752934784','off'), +(30838,'_transient_wc_var_prices_625','{\"version\":\"1750342773\",\"f9e544f77b7eac7add281ef28ca5559f\":{\"price\":{\"626\":\"65.00\",\"627\":\"65.00\",\"628\":\"65.00\",\"629\":\"65.00\",\"630\":\"65.00\",\"631\":\"65.00\",\"632\":\"65.00\",\"633\":\"65.00\"},\"regular_price\":{\"626\":\"65.00\",\"627\":\"65.00\",\"628\":\"65.00\",\"629\":\"65.00\",\"630\":\"65.00\",\"631\":\"65.00\",\"632\":\"65.00\",\"633\":\"65.00\"},\"sale_price\":{\"626\":\"65.00\",\"627\":\"65.00\",\"628\":\"65.00\",\"629\":\"65.00\",\"630\":\"65.00\",\"631\":\"65.00\",\"632\":\"65.00\",\"633\":\"65.00\"}}}','off'), +(30839,'_transient_timeout_wc_var_prices_613','1752934784','off'), +(30840,'_transient_wc_var_prices_613','{\"version\":\"1750342773\",\"f9e544f77b7eac7add281ef28ca5559f\":{\"price\":{\"614\":\"70.00\",\"615\":\"70.00\",\"616\":\"70.00\",\"617\":\"70.00\",\"618\":\"70.00\",\"619\":\"70.00\",\"620\":\"70.00\",\"624\":\"70.00\"},\"regular_price\":{\"614\":\"70.00\",\"615\":\"70.00\",\"616\":\"70.00\",\"617\":\"70.00\",\"618\":\"70.00\",\"619\":\"70.00\",\"620\":\"70.00\",\"624\":\"70.00\"},\"sale_price\":{\"614\":\"70.00\",\"615\":\"70.00\",\"616\":\"70.00\",\"617\":\"70.00\",\"618\":\"70.00\",\"619\":\"70.00\",\"620\":\"70.00\",\"624\":\"70.00\"}}}','off'), +(30845,'_transient_timeout_wc_var_prices_535','1752395871','off'), +(30846,'_transient_wc_var_prices_535','{\"version\":\"1733267802\",\"f9e544f77b7eac7add281ef28ca5559f\":{\"price\":{\"540\":\"65.00\",\"541\":\"65.00\"},\"regular_price\":{\"540\":\"65.00\",\"541\":\"65.00\"},\"sale_price\":{\"540\":\"65.00\",\"541\":\"65.00\"}}}','off'), +(30853,'_transient_timeout_woocommerce_analytics_orders_statuses_all','1781339871','off'), +(30854,'_transient_woocommerce_analytics_orders_statuses_all','a:4:{i:0;s:10:\"wc-pending\";i:1;s:13:\"wc-processing\";i:2;s:12:\"wc-completed\";i:3;s:11:\"wc-refunded\";}','off'), +(31241,'_transient_timeout_woocommerce_admin_payment_gateway_suggestions_specs','1750943652','off'), +(31242,'_transient_woocommerce_admin_payment_gateway_suggestions_specs','a:1:{s:5:\"en_GB\";a:24:{s:6:\"affirm\";O:8:\"stdClass\":11:{s:2:\"id\";s:6:\"affirm\";s:5:\"title\";s:6:\"Affirm\";s:7:\"content\";s:169:\"Affirm’s tailored Buy Now Pay Later programs remove price as a barrier, turning browsers into buyers, increasing average order value, and expanding your customer base.\";s:5:\"image\";s:108:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/affirm.png\";s:11:\"image_72x72\";s:108:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/affirm.png\";s:7:\"plugins\";a:0:{}s:13:\"external_link\";s:59:\"https://woocommerce.com/products/woocommerce-gateway-affirm\";s:10:\"is_visible\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:2:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"US\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CA\";s:9:\"operation\";s:1:\"=\";}}}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:7:\"version\";s:9:\"6.5.0-dev\";s:8:\"operator\";s:2:\">=\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:3:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:7:\"version\";s:9:\"9.2.0-dev\";s:8:\"operator\";s:1:\"<\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-payments\";}}}}i:2;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:2:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:4:\"data\";}}i:1;O:8:\"stdClass\":1:{s:3:\"use\";s:10:\"array_keys\";}}s:11:\"option_name\";s:18:\"wcpay_account_data\";s:9:\"operation\";s:9:\"!contains\";s:5:\"value\";s:10:\"account_id\";s:7:\"default\";a:0:{}}}}}s:14:\"category_other\";a:0:{}s:19:\"category_additional\";a:2:{i:0;s:2:\"US\";i:1;s:2:\"CA\";}s:23:\"recommendation_priority\";i:9;}s:8:\"afterpay\";O:8:\"stdClass\":10:{s:2:\"id\";s:8:\"afterpay\";s:5:\"title\";s:8:\"Afterpay\";s:7:\"content\";s:125:\"Afterpay allows customers to receive products immediately and pay for purchases over four installments, always interest-free.\";s:5:\"image\";s:110:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/afterpay.png\";s:11:\"image_72x72\";s:110:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/afterpay.png\";s:7:\"plugins\";a:1:{i:0;s:32:\"afterpay-gateway-for-woocommerce\";}s:10:\"is_visible\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:3:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"US\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CA\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AU\";s:9:\"operation\";s:1:\"=\";}}}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:7:\"version\";s:9:\"6.5.0-dev\";s:8:\"operator\";s:2:\">=\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:3:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:7:\"version\";s:9:\"9.2.0-dev\";s:8:\"operator\";s:1:\"<\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-payments\";}}}}i:2;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:2:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:4:\"data\";}}i:1;O:8:\"stdClass\":1:{s:3:\"use\";s:10:\"array_keys\";}}s:11:\"option_name\";s:18:\"wcpay_account_data\";s:9:\"operation\";s:9:\"!contains\";s:5:\"value\";s:10:\"account_id\";s:7:\"default\";a:0:{}}}}}s:14:\"category_other\";a:0:{}s:19:\"category_additional\";a:3:{i:0;s:2:\"US\";i:1;s:2:\"CA\";i:2;s:2:\"AU\";}s:23:\"recommendation_priority\";i:9;}s:14:\"airwallex_main\";O:8:\"stdClass\":11:{s:2:\"id\";s:14:\"airwallex_main\";s:5:\"title\";s:18:\"Airwallex Payments\";s:7:\"content\";s:115:\"Boost international sales and save on FX fees. Accept 60+ local payment methods including Apple Pay and Google Pay.\";s:5:\"image\";s:105:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/airwallex.png\";s:11:\"image_72x72\";s:111:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/airwallex.png\";s:12:\"square_image\";s:112:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/airwallex-square.png\";s:7:\"plugins\";a:1:{i:0;s:33:\"airwallex-online-payments-gateway\";}s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:17:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GB\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AT\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BE\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"EE\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FR\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DE\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GR\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IE\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IT\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NL\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PL\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PT\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AU\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NZ\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HK\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SG\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CN\";s:9:\"operation\";s:1:\"=\";}}}}s:14:\"category_other\";a:17:{i:0;s:2:\"GB\";i:1;s:2:\"AT\";i:2;s:2:\"BE\";i:3;s:2:\"EE\";i:4;s:2:\"FR\";i:5;s:2:\"DE\";i:6;s:2:\"GR\";i:7;s:2:\"IE\";i:8;s:2:\"IT\";i:9;s:2:\"NL\";i:10;s:2:\"PL\";i:11;s:2:\"PT\";i:12;s:2:\"AU\";i:13;s:2:\"NZ\";i:14;s:2:\"HK\";i:15;s:2:\"SG\";i:16;s:2:\"CN\";}s:19:\"category_additional\";a:0:{}s:23:\"recommendation_priority\";i:5;}s:24:\"amazon_payments_advanced\";O:8:\"stdClass\":10:{s:2:\"id\";s:24:\"amazon_payments_advanced\";s:5:\"title\";s:10:\"Amazon Pay\";s:7:\"content\";s:94:\"Enable a familiar, fast checkout for hundreds of millions of active Amazon customers globally.\";s:5:\"image\";s:111:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/amazonpay.png\";s:11:\"image_72x72\";s:111:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/amazonpay.png\";s:7:\"plugins\";a:1:{i:0;s:44:\"woocommerce-gateway-amazon-payments-advanced\";}s:10:\"is_visible\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:18:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"US\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AT\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BE\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CY\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DK\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"ES\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FR\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DE\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GB\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HU\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IE\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IT\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LU\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NL\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PT\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SL\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SE\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"JP\";s:9:\"operation\";s:1:\"=\";}}}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:7:\"version\";s:9:\"6.5.0-dev\";s:8:\"operator\";s:2:\">=\";}}s:14:\"category_other\";a:0:{}s:19:\"category_additional\";a:18:{i:0;s:2:\"US\";i:1;s:2:\"AT\";i:2;s:2:\"BE\";i:3;s:2:\"CY\";i:4;s:2:\"DK\";i:5;s:2:\"ES\";i:6;s:2:\"FR\";i:7;s:2:\"DE\";i:8;s:2:\"GB\";i:9;s:2:\"HU\";i:10;s:2:\"IE\";i:11;s:2:\"IT\";i:12;s:2:\"LU\";i:13;s:2:\"NL\";i:14;s:2:\"PT\";i:15;s:2:\"SL\";i:16;s:2:\"SE\";i:17;s:2:\"JP\";}s:23:\"recommendation_priority\";i:8;}s:4:\"bacs\";O:8:\"stdClass\":8:{s:2:\"id\";s:4:\"bacs\";s:5:\"title\";s:20:\"Direct bank transfer\";s:7:\"content\";s:32:\"Take payments via bank transfer.\";s:5:\"image\";s:100:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/bacs.svg\";s:11:\"image_72x72\";s:106:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/bacs.png\";s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":1:{s:4:\"type\";s:4:\"pass\";}}s:10:\"is_offline\";b:1;s:23:\"recommendation_priority\";i:9;}s:3:\"cod\";O:8:\"stdClass\":8:{s:2:\"id\";s:3:\"cod\";s:5:\"title\";s:16:\"Cash on delivery\";s:7:\"content\";s:36:\"Take payments in cash upon delivery.\";s:5:\"image\";s:99:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/cod.svg\";s:11:\"image_72x72\";s:105:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/cod.png\";s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":1:{s:4:\"type\";s:4:\"pass\";}}s:10:\"is_offline\";b:1;s:23:\"recommendation_priority\";i:9;}s:4:\"eway\";O:8:\"stdClass\":11:{s:2:\"id\";s:4:\"eway\";s:5:\"title\";s:4:\"Eway\";s:7:\"content\";s:171:\"The Eway extension for WooCommerce allows you to take credit card payments directly on your store without redirecting your customers to a third party site to make payment.\";s:5:\"image\";s:100:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/eway.png\";s:11:\"image_72x72\";s:106:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/eway.png\";s:12:\"square_image\";s:107:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/eway-square.png\";s:7:\"plugins\";a:1:{i:0;s:24:\"woocommerce-gateway-eway\";}s:10:\"is_visible\";b:0;s:14:\"category_other\";a:0:{}s:19:\"category_additional\";a:0:{}s:23:\"recommendation_priority\";i:9;}s:3:\"kco\";O:8:\"stdClass\":10:{s:2:\"id\";s:3:\"kco\";s:5:\"title\";s:15:\"Klarna Checkout\";s:7:\"content\";s:115:\"Choose the payment that you want, pay now, pay later or slice it. No credit card numbers, no passwords, no worries.\";s:5:\"image\";s:85:\"https://woocommerce.com/wp-content/plugins/woocommerce/assets/images/klarna-black.png\";s:11:\"image_72x72\";s:108:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/klarna.png\";s:7:\"plugins\";a:1:{i:0;s:31:\"klarna-checkout-for-woocommerce\";}s:10:\"is_visible\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:3:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NO\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SE\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FI\";s:9:\"operation\";s:1:\"=\";}}}i:1;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:2:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:8:\"industry\";}}i:1;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"array_column\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:3:\"key\";s:4:\"slug\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:9:\"!contains\";s:5:\"value\";s:31:\"cbd-other-hemp-derived-products\";s:7:\"default\";a:0:{}}}s:14:\"category_other\";a:3:{i:0;s:2:\"NO\";i:1;s:2:\"SE\";i:2;s:2:\"FI\";}s:19:\"category_additional\";a:0:{}s:23:\"recommendation_priority\";i:9;}s:15:\"klarna_payments\";O:8:\"stdClass\":10:{s:2:\"id\";s:15:\"klarna_payments\";s:5:\"title\";s:15:\"Klarna Payments\";s:7:\"content\";s:115:\"Choose the payment that you want, pay now, pay later or slice it. No credit card numbers, no passwords, no worries.\";s:5:\"image\";s:85:\"https://woocommerce.com/wp-content/plugins/woocommerce/assets/images/klarna-black.png\";s:11:\"image_72x72\";s:108:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/klarna.png\";s:7:\"plugins\";a:1:{i:0;s:31:\"klarna-payments-for-woocommerce\";}s:10:\"is_visible\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:19:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"MX\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"US\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CA\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AT\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BE\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CH\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DK\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"ES\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FI\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FR\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DE\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GB\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IT\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NL\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NO\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PL\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SE\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NZ\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AU\";s:9:\"operation\";s:1:\"=\";}}}i:1;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:2:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:8:\"industry\";}}i:1;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"array_column\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:3:\"key\";s:4:\"slug\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:9:\"!contains\";s:5:\"value\";s:31:\"cbd-other-hemp-derived-products\";s:7:\"default\";a:0:{}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:4:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:7:\"version\";s:9:\"9.2.0-dev\";s:8:\"operator\";s:1:\"<\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:39:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"US\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PR\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AU\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CA\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DE\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"ES\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FR\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GB\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IE\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IT\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NZ\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AT\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BE\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NL\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PL\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PT\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CH\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HK\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SG\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CY\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DK\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"EE\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FI\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GR\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LU\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LT\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LV\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NO\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"MT\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SI\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SK\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BG\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CZ\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HR\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HU\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"RO\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SE\";s:9:\"operation\";s:1:\"=\";}i:37;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"JP\";s:9:\"operation\";s:1:\"=\";}i:38;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AE\";s:9:\"operation\";s:1:\"=\";}}}}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-payments\";}}}}i:3;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:2:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:4:\"data\";}}i:1;O:8:\"stdClass\":1:{s:3:\"use\";s:10:\"array_keys\";}}s:11:\"option_name\";s:18:\"wcpay_account_data\";s:9:\"operation\";s:9:\"!contains\";s:5:\"value\";s:10:\"account_id\";s:7:\"default\";a:0:{}}}}}s:14:\"category_other\";a:0:{}s:19:\"category_additional\";a:19:{i:0;s:2:\"MX\";i:1;s:2:\"US\";i:2;s:2:\"CA\";i:3;s:2:\"AT\";i:4;s:2:\"BE\";i:5;s:2:\"CH\";i:6;s:2:\"DK\";i:7;s:2:\"ES\";i:8;s:2:\"FI\";i:9;s:2:\"FR\";i:10;s:2:\"DE\";i:11;s:2:\"GB\";i:12;s:2:\"IT\";i:13;s:2:\"NL\";i:14;s:2:\"NO\";i:15;s:2:\"PL\";i:16;s:2:\"SE\";i:17;s:2:\"NZ\";i:18;s:2:\"AU\";}s:23:\"recommendation_priority\";i:7;}s:30:\"mollie_wc_gateway_banktransfer\";O:8:\"stdClass\":11:{s:2:\"id\";s:30:\"mollie_wc_gateway_banktransfer\";s:5:\"title\";s:6:\"Mollie\";s:7:\"content\";s:128:\"Effortless payments by Mollie: Offer global and local payment methods, get onboarded in minutes, and supported in your language.\";s:5:\"image\";s:102:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/mollie.svg\";s:11:\"image_72x72\";s:108:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/mollie.png\";s:12:\"square_image\";s:109:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/mollie-square.png\";s:7:\"plugins\";a:1:{i:0;s:31:\"mollie-payments-for-woocommerce\";}s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:11:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AT\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BE\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CH\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"ES\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FI\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FR\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DE\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GB\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IT\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NL\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PL\";s:9:\"operation\";s:1:\"=\";}}}}s:14:\"category_other\";a:11:{i:0;s:2:\"AT\";i:1;s:2:\"BE\";i:2;s:2:\"CH\";i:3;s:2:\"ES\";i:4;s:2:\"FI\";i:5;s:2:\"FR\";i:6;s:2:\"DE\";i:7;s:2:\"GB\";i:8;s:2:\"IT\";i:9;s:2:\"NL\";i:10;s:2:\"PL\";}s:19:\"category_additional\";a:0:{}s:23:\"recommendation_priority\";i:6;}s:7:\"payfast\";O:8:\"stdClass\":10:{s:2:\"id\";s:7:\"payfast\";s:5:\"title\";s:7:\"Payfast\";s:7:\"content\";s:299:\"The Payfast extension for WooCommerce enables you to accept payments by Credit Card and EFT via one of South Africa’s most popular payment gateways. No setup fees or monthly subscription costs. Selecting this extension will configure your store to use South African rands as the selected currency.\";s:5:\"image\";s:80:\"https://woocommerce.com/wp-content/plugins/woocommerce/assets/images/payfast.png\";s:11:\"image_72x72\";s:109:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/payfast.png\";s:7:\"plugins\";a:1:{i:0;s:27:\"woocommerce-payfast-gateway\";}s:10:\"is_visible\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:1:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"ZA\";s:9:\"operation\";s:1:\"=\";}}}i:1;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:2:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:8:\"industry\";}}i:1;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"array_column\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:3:\"key\";s:4:\"slug\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:9:\"!contains\";s:5:\"value\";s:31:\"cbd-other-hemp-derived-products\";s:7:\"default\";a:0:{}}}s:14:\"category_other\";a:1:{i:0;s:2:\"ZA\";}s:19:\"category_additional\";a:0:{}s:23:\"recommendation_priority\";i:9;}s:17:\"payoneer-checkout\";O:8:\"stdClass\":10:{s:2:\"id\";s:17:\"payoneer-checkout\";s:5:\"title\";s:17:\"Payoneer Checkout\";s:7:\"content\";s:202:\"Payoneer Checkout is the next generation of payment processing platforms, giving merchants around the world the solutions and direction they need to succeed in today’s hyper-competitive global market.\";s:5:\"image\";s:104:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/payoneer.png\";s:11:\"image_72x72\";s:110:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/payoneer.png\";s:7:\"plugins\";a:1:{i:0;s:17:\"payoneer-checkout\";}s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:2:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HK\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CN\";s:9:\"operation\";s:1:\"=\";}}}}s:14:\"category_other\";a:0:{}s:19:\"category_additional\";a:2:{i:0;s:2:\"HK\";i:1;s:2:\"CN\";}s:23:\"recommendation_priority\";i:9;}s:8:\"paystack\";O:8:\"stdClass\":11:{s:2:\"id\";s:8:\"paystack\";s:5:\"title\";s:8:\"Paystack\";s:7:\"content\";s:127:\"Paystack helps African merchants accept one-time and recurring payments online with a modern, safe, and secure payment gateway.\";s:5:\"image\";s:104:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/paystack.png\";s:12:\"square_image\";s:111:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/paystack-square.png\";s:11:\"image_72x72\";s:110:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/paystack.png\";s:7:\"plugins\";a:1:{i:0;s:12:\"woo-paystack\";}s:10:\"is_visible\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:3:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"ZA\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GH\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NG\";s:9:\"operation\";s:1:\"=\";}}}i:1;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:2:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:8:\"industry\";}}i:1;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"array_column\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:3:\"key\";s:4:\"slug\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:9:\"!contains\";s:5:\"value\";s:31:\"cbd-other-hemp-derived-products\";s:7:\"default\";a:0:{}}}s:14:\"category_other\";a:3:{i:0;s:2:\"ZA\";i:1;s:2:\"GH\";i:2;s:2:\"NG\";}s:19:\"category_additional\";a:0:{}s:23:\"recommendation_priority\";i:9;}s:7:\"payubiz\";O:8:\"stdClass\":10:{s:2:\"id\";s:7:\"payubiz\";s:5:\"title\";s:20:\"PayU for WooCommerce\";s:7:\"content\";s:169:\"Enable PayU’s exclusive plugin for WooCommerce to start accepting payments in 100+ payment methods available in India including credit cards, debit cards, UPI, & more!\";s:5:\"image\";s:100:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/payu.svg\";s:11:\"image_72x72\";s:106:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/payu.png\";s:7:\"plugins\";a:1:{i:0;s:10:\"payu-india\";}s:10:\"is_visible\";a:2:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IN\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:2:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:8:\"industry\";}}i:1;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"array_column\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:3:\"key\";s:4:\"slug\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:9:\"!contains\";s:5:\"value\";s:31:\"cbd-other-hemp-derived-products\";s:7:\"default\";a:0:{}}}s:14:\"category_other\";a:1:{i:0;s:2:\"IN\";}s:19:\"category_additional\";a:0:{}s:23:\"recommendation_priority\";i:9;}s:12:\"ppcp-gateway\";O:8:\"stdClass\":11:{s:2:\"id\";s:12:\"ppcp-gateway\";s:5:\"title\";s:15:\"PayPal Payments\";s:7:\"content\";s:78:\"Safe and secure payments using credit cards or your customer\'s PayPal account.\";s:5:\"image\";s:79:\"https://woocommerce.com/wp-content/plugins/woocommerce/assets/images/paypal.png\";s:11:\"image_72x72\";s:108:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/paypal.png\";s:12:\"square_image\";s:102:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/paypal.svg\";s:7:\"plugins\";a:1:{i:0;s:27:\"woocommerce-paypal-payments\";}s:10:\"is_visible\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:49:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"US\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CA\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"MX\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BR\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AR\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CL\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CO\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"EC\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PE\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"UY\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"VE\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AT\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BE\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BG\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HR\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CH\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CY\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CZ\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DK\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"EE\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"ES\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FI\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FR\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DE\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GB\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GR\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HU\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IE\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IT\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LV\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LT\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LU\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"MT\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NL\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NO\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PL\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PT\";s:9:\"operation\";s:1:\"=\";}i:37;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"RO\";s:9:\"operation\";s:1:\"=\";}i:38;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SK\";s:9:\"operation\";s:1:\"=\";}i:39;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SL\";s:9:\"operation\";s:1:\"=\";}i:40;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SE\";s:9:\"operation\";s:1:\"=\";}i:41;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AU\";s:9:\"operation\";s:1:\"=\";}i:42;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NZ\";s:9:\"operation\";s:1:\"=\";}i:43;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HK\";s:9:\"operation\";s:1:\"=\";}i:44;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"JP\";s:9:\"operation\";s:1:\"=\";}i:45;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SG\";s:9:\"operation\";s:1:\"=\";}i:46;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CN\";s:9:\"operation\";s:1:\"=\";}i:47;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"ID\";s:9:\"operation\";s:1:\"=\";}i:48;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IN\";s:9:\"operation\";s:1:\"=\";}}}i:1;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:2:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:8:\"industry\";}}i:1;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"array_column\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:3:\"key\";s:4:\"slug\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:9:\"!contains\";s:5:\"value\";s:31:\"cbd-other-hemp-derived-products\";s:7:\"default\";a:0:{}}}s:14:\"category_other\";a:48:{i:0;s:2:\"US\";i:1;s:2:\"CA\";i:2;s:2:\"MX\";i:3;s:2:\"BR\";i:4;s:2:\"AR\";i:5;s:2:\"CL\";i:6;s:2:\"CO\";i:7;s:2:\"EC\";i:8;s:2:\"PE\";i:9;s:2:\"UY\";i:10;s:2:\"VE\";i:11;s:2:\"AT\";i:12;s:2:\"BE\";i:13;s:2:\"BG\";i:14;s:2:\"HR\";i:15;s:2:\"CH\";i:16;s:2:\"CY\";i:17;s:2:\"CZ\";i:18;s:2:\"DK\";i:19;s:2:\"EE\";i:20;s:2:\"ES\";i:21;s:2:\"FI\";i:22;s:2:\"FR\";i:23;s:2:\"DE\";i:24;s:2:\"GB\";i:25;s:2:\"GR\";i:26;s:2:\"HU\";i:27;s:2:\"IE\";i:28;s:2:\"IT\";i:29;s:2:\"LV\";i:30;s:2:\"LT\";i:31;s:2:\"LU\";i:32;s:2:\"MT\";i:33;s:2:\"NL\";i:34;s:2:\"NO\";i:35;s:2:\"PL\";i:36;s:2:\"PT\";i:37;s:2:\"RO\";i:38;s:2:\"SK\";i:39;s:2:\"SL\";i:40;s:2:\"SE\";i:41;s:2:\"AU\";i:42;s:2:\"NZ\";i:43;s:2:\"HK\";i:44;s:2:\"JP\";i:45;s:2:\"SG\";i:46;s:2:\"CN\";i:47;s:2:\"ID\";}s:19:\"category_additional\";a:49:{i:0;s:2:\"US\";i:1;s:2:\"CA\";i:2;s:2:\"MX\";i:3;s:2:\"BR\";i:4;s:2:\"AR\";i:5;s:2:\"CL\";i:6;s:2:\"CO\";i:7;s:2:\"EC\";i:8;s:2:\"PE\";i:9;s:2:\"UY\";i:10;s:2:\"VE\";i:11;s:2:\"AT\";i:12;s:2:\"BE\";i:13;s:2:\"BG\";i:14;s:2:\"HR\";i:15;s:2:\"CH\";i:16;s:2:\"CY\";i:17;s:2:\"CZ\";i:18;s:2:\"DK\";i:19;s:2:\"EE\";i:20;s:2:\"ES\";i:21;s:2:\"FI\";i:22;s:2:\"FR\";i:23;s:2:\"DE\";i:24;s:2:\"GB\";i:25;s:2:\"GR\";i:26;s:2:\"HU\";i:27;s:2:\"IE\";i:28;s:2:\"IT\";i:29;s:2:\"LV\";i:30;s:2:\"LT\";i:31;s:2:\"LU\";i:32;s:2:\"MT\";i:33;s:2:\"NL\";i:34;s:2:\"NO\";i:35;s:2:\"PL\";i:36;s:2:\"PT\";i:37;s:2:\"RO\";i:38;s:2:\"SK\";i:39;s:2:\"SL\";i:40;s:2:\"SE\";i:41;s:2:\"AU\";i:42;s:2:\"NZ\";i:43;s:2:\"HK\";i:44;s:2:\"JP\";i:45;s:2:\"SG\";i:46;s:2:\"CN\";i:47;s:2:\"ID\";i:48;s:2:\"IN\";}s:23:\"recommendation_priority\";i:4;}s:8:\"razorpay\";O:8:\"stdClass\":10:{s:2:\"id\";s:8:\"razorpay\";s:5:\"title\";s:8:\"Razorpay\";s:7:\"content\";s:133:\"The official Razorpay extension for WooCommerce allows you to accept credit cards, debit cards, netbanking, wallet, and UPI payments.\";s:5:\"image\";s:104:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/razorpay.svg\";s:11:\"image_72x72\";s:110:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/razorpay.png\";s:7:\"plugins\";a:1:{i:0;s:12:\"woo-razorpay\";}s:10:\"is_visible\";a:2:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IN\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:2:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:8:\"industry\";}}i:1;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"array_column\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:3:\"key\";s:4:\"slug\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:9:\"!contains\";s:5:\"value\";s:31:\"cbd-other-hemp-derived-products\";s:7:\"default\";a:0:{}}}s:14:\"category_other\";a:1:{i:0;s:2:\"IN\";}s:19:\"category_additional\";a:0:{}s:23:\"recommendation_priority\";i:9;}s:18:\"square_credit_card\";O:8:\"stdClass\":10:{s:2:\"id\";s:18:\"square_credit_card\";s:5:\"title\";s:6:\"Square\";s:7:\"content\";s:169:\"Securely accept credit and debit cards with one low rate, no surprise fees (custom rates available). Sell online and in store and track sales and inventory in one place.\";s:5:\"image\";s:85:\"https://woocommerce.com/wp-content/plugins/woocommerce/assets/images/square-black.png\";s:11:\"image_72x72\";s:108:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/square.png\";s:7:\"plugins\";a:1:{i:0;s:18:\"woocommerce-square\";}s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:2:{i:0;a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:1:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"US\";s:9:\"operation\";s:1:\"=\";}}}i:1;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:2:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:8:\"industry\";}}i:1;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"array_column\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:3:\"key\";s:4:\"slug\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:8:\"contains\";s:5:\"value\";s:31:\"cbd-other-hemp-derived-products\";s:7:\"default\";a:0:{}}}i:1;a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:8:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"US\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CA\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IE\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"ES\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FR\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GB\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AU\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"JP\";s:9:\"operation\";s:1:\"=\";}}}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:2:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:14:\"selling_venues\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:12:\"brick-mortar\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:14:\"selling_venues\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:18:\"brick-mortar-other\";}}}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:21:\"selling_online_answer\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:21:\"no_im_selling_offline\";s:7:\"default\";s:0:\"\";}i:1;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:21:\"selling_online_answer\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:34:\"im_selling_both_online_and_offline\";s:7:\"default\";s:0:\"\";}}}}}}}}}s:14:\"category_other\";a:8:{i:0;s:2:\"US\";i:1;s:2:\"CA\";i:2;s:2:\"IE\";i:3;s:2:\"ES\";i:4;s:2:\"FR\";i:5;s:2:\"GB\";i:6;s:2:\"AU\";i:7;s:2:\"JP\";}s:19:\"category_additional\";a:0:{}s:23:\"recommendation_priority\";i:9;}s:6:\"stripe\";O:8:\"stdClass\":11:{s:2:\"id\";s:6:\"stripe\";s:5:\"title\";s:6:\"Stripe\";s:7:\"content\";s:112:\"Accept debit and credit cards in 135+ currencies, methods such as Alipay, and one-touch checkout with Apple Pay.\";s:5:\"image\";s:79:\"https://woocommerce.com/wp-content/plugins/woocommerce/assets/images/stripe.png\";s:11:\"image_72x72\";s:108:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/stripe.png\";s:12:\"square_image\";s:102:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/stripe.svg\";s:7:\"plugins\";a:1:{i:0;s:26:\"woocommerce-gateway-stripe\";}s:10:\"is_visible\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:40:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"US\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CA\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"MX\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BR\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AT\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BE\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BG\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CH\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CY\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CZ\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DK\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"EE\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"ES\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FI\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FR\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DE\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GB\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GR\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HU\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IE\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IT\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LV\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LT\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LU\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"MT\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NL\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NO\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PL\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PT\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"RO\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SK\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SL\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SE\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AU\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NZ\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HK\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"JP\";s:9:\"operation\";s:1:\"=\";}i:37;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SG\";s:9:\"operation\";s:1:\"=\";}i:38;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"ID\";s:9:\"operation\";s:1:\"=\";}i:39;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IN\";s:9:\"operation\";s:1:\"=\";}}}i:1;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:2:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:8:\"industry\";}}i:1;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"array_column\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:3:\"key\";s:4:\"slug\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:9:\"!contains\";s:5:\"value\";s:31:\"cbd-other-hemp-derived-products\";s:7:\"default\";a:0:{}}}s:14:\"category_other\";a:40:{i:0;s:2:\"US\";i:1;s:2:\"CA\";i:2;s:2:\"MX\";i:3;s:2:\"BR\";i:4;s:2:\"AT\";i:5;s:2:\"BE\";i:6;s:2:\"BG\";i:7;s:2:\"CH\";i:8;s:2:\"CY\";i:9;s:2:\"CZ\";i:10;s:2:\"DK\";i:11;s:2:\"EE\";i:12;s:2:\"ES\";i:13;s:2:\"FI\";i:14;s:2:\"FR\";i:15;s:2:\"DE\";i:16;s:2:\"GB\";i:17;s:2:\"GR\";i:18;s:2:\"HU\";i:19;s:2:\"IE\";i:20;s:2:\"IT\";i:21;s:2:\"LV\";i:22;s:2:\"LT\";i:23;s:2:\"LU\";i:24;s:2:\"MT\";i:25;s:2:\"NL\";i:26;s:2:\"NO\";i:27;s:2:\"PL\";i:28;s:2:\"PT\";i:29;s:2:\"RO\";i:30;s:2:\"SK\";i:31;s:2:\"SL\";i:32;s:2:\"SE\";i:33;s:2:\"AU\";i:34;s:2:\"NZ\";i:35;s:2:\"HK\";i:36;s:2:\"JP\";i:37;s:2:\"SG\";i:38;s:2:\"ID\";i:39;s:2:\"IN\";}s:19:\"category_additional\";a:0:{}s:23:\"recommendation_priority\";i:3;}s:23:\"woo-mercado-pago-custom\";O:8:\"stdClass\":11:{s:2:\"id\";s:23:\"woo-mercado-pago-custom\";s:5:\"title\";s:12:\"Mercado Pago\";s:7:\"content\";s:198:\"Set up your payment methods and accept credit and debit cards, cash, bank transfers and money from your Mercado Pago account. Offer safe and secure payments with Latin America’s leading processor.\";s:5:\"image\";s:107:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/mercadopago.png\";s:11:\"image_72x72\";s:113:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/mercadopago.png\";s:7:\"plugins\";a:1:{i:0;s:23:\"woocommerce-mercadopago\";}s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:8:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AR\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CL\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CO\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"EC\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PE\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"UY\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"MX\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BR\";s:9:\"operation\";s:1:\"=\";}}}}s:16:\"is_local_partner\";b:1;s:14:\"category_other\";a:8:{i:0;s:2:\"AR\";i:1;s:2:\"CL\";i:2;s:2:\"CO\";i:3;s:2:\"EC\";i:4;s:2:\"PE\";i:5;s:2:\"UY\";i:6;s:2:\"MX\";i:7;s:2:\"BR\";}s:19:\"category_additional\";a:0:{}s:23:\"recommendation_priority\";i:9;}s:20:\"woocommerce_payments\";O:8:\"stdClass\":10:{s:2:\"id\";s:20:\"woocommerce_payments\";s:5:\"title\";s:11:\"WooPayments\";s:7:\"content\";s:84:\"Manage transactions without leaving your WordPress Dashboard. Only with WooPayments.\";s:5:\"image\";s:101:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/wcpay.svg\";s:12:\"square_image\";s:107:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/woocommerce.svg\";s:11:\"image_72x72\";s:101:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/wcpay.svg\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-payments\";}s:11:\"description\";s:225:\"With WooPayments, you can securely accept major cards, Apple Pay, and payments in over 100 currencies. Track cash flow and manage recurring revenue directly from your store’s dashboard - with no setup costs or monthly fees.\";s:10:\"is_visible\";a:4:{i:0;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:2:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:8:\"industry\";}}i:1;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"array_column\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:3:\"key\";s:4:\"slug\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:9:\"!contains\";s:5:\"value\";s:31:\"cbd-other-hemp-derived-products\";s:7:\"default\";a:0:{}}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:39:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"US\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PR\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AU\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CA\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DE\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"ES\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FR\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GB\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IE\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IT\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NZ\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AT\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BE\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NL\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PL\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PT\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CH\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HK\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SG\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CY\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DK\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"EE\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FI\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GR\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LU\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LT\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LV\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NO\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"MT\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SI\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SK\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BG\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CZ\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HR\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HU\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"RO\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SE\";s:9:\"operation\";s:1:\"=\";}i:37;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"JP\";s:9:\"operation\";s:1:\"=\";}i:38;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AE\";s:9:\"operation\";s:1:\"=\";}}}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:7:\"version\";s:10:\"5.10.0-dev\";s:8:\"operator\";s:1:\"<\";}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:17:\"woocommerce-admin\";}}}}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:17:\"woocommerce-admin\";s:7:\"version\";s:9:\"2.9.0-dev\";s:8:\"operator\";s:1:\"<\";}}}}s:23:\"recommendation_priority\";i:2;}s:47:\"woocommerce_payments:without-in-person-payments\";O:8:\"stdClass\":10:{s:2:\"id\";s:47:\"woocommerce_payments:without-in-person-payments\";s:5:\"title\";s:11:\"WooPayments\";s:7:\"content\";s:84:\"Manage transactions without leaving your WordPress Dashboard. Only with WooPayments.\";s:5:\"image\";s:101:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/wcpay.svg\";s:11:\"image_72x72\";s:101:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/wcpay.svg\";s:12:\"square_image\";s:107:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/woocommerce.svg\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-payments\";}s:11:\"description\";s:225:\"With WooPayments, you can securely accept major cards, Apple Pay, and payments in over 100 currencies. Track cash flow and manage recurring revenue directly from your store’s dashboard - with no setup costs or monthly fees.\";s:10:\"is_visible\";a:3:{i:0;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:2:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:8:\"industry\";}}i:1;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"array_column\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:3:\"key\";s:4:\"slug\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:9:\"!contains\";s:5:\"value\";s:31:\"cbd-other-hemp-derived-products\";s:7:\"default\";a:0:{}}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:37:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PR\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AU\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DE\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"ES\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FR\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GB\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IE\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IT\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NZ\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AT\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BE\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NL\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PL\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PT\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CH\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HK\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SG\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CY\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DK\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"EE\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FI\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GR\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LU\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LT\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LV\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NO\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"MT\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SI\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SK\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BG\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CZ\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HR\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HU\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"RO\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SE\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"JP\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AE\";s:9:\"operation\";s:1:\"=\";}}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:2:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:17:\"woocommerce-admin\";s:7:\"version\";s:9:\"2.9.0-dev\";s:8:\"operator\";s:2:\">=\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:7:\"version\";s:10:\"5.10.0-dev\";s:8:\"operator\";s:2:\">=\";}}}}s:23:\"recommendation_priority\";i:1;}s:44:\"woocommerce_payments:with-in-person-payments\";O:8:\"stdClass\":10:{s:2:\"id\";s:44:\"woocommerce_payments:with-in-person-payments\";s:5:\"title\";s:11:\"WooPayments\";s:7:\"content\";s:84:\"Manage transactions without leaving your WordPress Dashboard. Only with WooPayments.\";s:5:\"image\";s:101:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/wcpay.svg\";s:11:\"image_72x72\";s:101:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/wcpay.svg\";s:12:\"square_image\";s:107:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/woocommerce.svg\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-payments\";}s:11:\"description\";s:212:\"With WooPayments, you can securely accept major cards, Apple Pay, and payments in over 100 currencies – with no setup costs or monthly fees – and you can now accept in-person payments with the Woo mobile app.\";s:10:\"is_visible\";a:3:{i:0;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:2:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:8:\"industry\";}}i:1;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"array_column\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:3:\"key\";s:4:\"slug\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:9:\"!contains\";s:5:\"value\";s:31:\"cbd-other-hemp-derived-products\";s:7:\"default\";a:0:{}}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:2:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"US\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CA\";s:9:\"operation\";s:1:\"=\";}}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:2:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:17:\"woocommerce-admin\";s:7:\"version\";s:9:\"2.9.0-dev\";s:8:\"operator\";s:2:\">=\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:7:\"version\";s:10:\"5.10.0-dev\";s:8:\"operator\";s:2:\">=\";}}}}s:23:\"recommendation_priority\";i:0;}s:25:\"woocommerce_payments:bnpl\";O:8:\"stdClass\":9:{s:2:\"id\";s:25:\"woocommerce_payments:bnpl\";s:5:\"title\";s:38:\"Activate BNPL instantly on WooPayments\";s:7:\"content\";s:185:\"The world’s favorite buy now, pay later options and many more are right at your fingertips with WooPayments — all from one dashboard, without needing multiple extensions and logins.\";s:5:\"image\";s:106:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/wcpay-bnpl.svg\";s:11:\"image_72x72\";s:106:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/wcpay-bnpl.svg\";s:12:\"square_image\";s:107:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/woocommerce.svg\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-payments\";}s:10:\"is_visible\";a:5:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:18:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"US\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CA\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AU\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AT\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BE\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CH\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DK\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"ES\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FI\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FR\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DE\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GB\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IT\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NL\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NO\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PL\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SE\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NZ\";s:9:\"operation\";s:1:\"=\";}}}i:1;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:2:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:8:\"industry\";}}i:1;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"array_column\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:3:\"key\";s:4:\"slug\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:9:\"!contains\";s:5:\"value\";s:31:\"cbd-other-hemp-derived-products\";s:7:\"default\";a:0:{}}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:7:\"version\";s:9:\"9.2.0-dev\";s:8:\"operator\";s:2:\">=\";}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-payments\";}}i:4;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:2:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:4:\"data\";}}i:1;O:8:\"stdClass\":1:{s:3:\"use\";s:10:\"array_keys\";}}s:11:\"option_name\";s:18:\"wcpay_account_data\";s:9:\"operation\";s:8:\"contains\";s:5:\"value\";s:10:\"account_id\";s:7:\"default\";a:0:{}}}s:23:\"recommendation_priority\";i:9;}s:8:\"zipmoney\";O:8:\"stdClass\":10:{s:2:\"id\";s:8:\"zipmoney\";s:5:\"title\";s:27:\"Zip Co - Buy Now, Pay Later\";s:7:\"content\";s:84:\"Give your customers the power to pay later, interest free and watch your sales grow.\";s:5:\"image\";s:104:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/zipmoney.png\";s:11:\"image_72x72\";s:110:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/zipmoney.png\";s:7:\"plugins\";a:1:{i:0;s:29:\"zipmoney-payments-woocommerce\";}s:10:\"is_visible\";b:0;s:14:\"category_other\";a:0:{}s:19:\"category_additional\";a:0:{}s:23:\"recommendation_priority\";i:9;}}}','off'), +(31243,'_transient_timeout_woocommerce_admin_remote_free_extensions_specs','1750943652','off'), +(31244,'_transient_woocommerce_admin_remote_free_extensions_specs','a:1:{s:5:\"en_GB\";a:5:{s:10:\"obw/basics\";O:8:\"stdClass\":3:{s:3:\"key\";s:10:\"obw/basics\";s:5:\"title\";s:14:\"Get the basics\";s:7:\"plugins\";a:4:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"WooPayments\";s:11:\"description\";s:154:\"Accept credit cards and other popular payment methods with WooPayments\";s:10:\"is_visible\";a:2:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";a:39:{i:0;s:2:\"US\";i:1;s:2:\"PR\";i:2;s:2:\"AU\";i:3;s:2:\"CA\";i:4;s:2:\"DE\";i:5;s:2:\"ES\";i:6;s:2:\"FR\";i:7;s:2:\"GB\";i:8;s:2:\"IE\";i:9;s:2:\"IT\";i:10;s:2:\"NZ\";i:11;s:2:\"AT\";i:12;s:2:\"BE\";i:13;s:2:\"NL\";i:14;s:2:\"PL\";i:15;s:2:\"PT\";i:16;s:2:\"CH\";i:17;s:2:\"HK\";i:18;s:2:\"SG\";i:19;s:2:\"CY\";i:20;s:2:\"DK\";i:21;s:2:\"EE\";i:22;s:2:\"FI\";i:23;s:2:\"GR\";i:24;s:2:\"LU\";i:25;s:2:\"LT\";i:26;s:2:\"LV\";i:27;s:2:\"NO\";i:28;s:2:\"MT\";i:29;s:2:\"SI\";i:30;s:2:\"SK\";i:31;s:2:\"BG\";i:32;s:2:\"CZ\";i:33;s:2:\"HR\";i:34;s:2:\"HU\";i:35;s:2:\"RO\";i:36;s:2:\"SE\";i:37;s:2:\"JP\";i:38;s:2:\"AE\";}s:9:\"operation\";s:2:\"in\";}i:1;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:2:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:8:\"industry\";}}i:1;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"array_column\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:3:\"key\";s:4:\"slug\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:9:\"!contains\";s:5:\"value\";s:31:\"cbd-other-hemp-derived-products\";s:7:\"default\";a:0:{}}}s:14:\"is_built_by_wc\";b:1;s:14:\"min_wp_version\";s:3:\"5.9\";s:3:\"key\";s:20:\"woocommerce-payments\";}i:1;O:8:\"stdClass\":5:{s:4:\"name\";s:20:\"WooCommerce Shipping\";s:11:\"description\";s:119:\"Print shipping labels with WooCommerce Shipping\";s:10:\"is_visible\";a:3:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";a:1:{i:0;s:2:\"US\";}s:9:\"operation\";s:2:\"in\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-shipping\";}}}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:2:{i:0;a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:2:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:13:\"product_types\";}}i:1;O:8:\"stdClass\":1:{s:3:\"use\";s:5:\"count\";}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:5:\"value\";i:1;s:7:\"default\";a:0:{}s:9:\"operation\";s:2:\"!=\";}}i:1;a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:15:\"product_types.0\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:5:\"value\";s:9:\"downloads\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:2:\"!=\";}}}}}s:14:\"is_built_by_wc\";b:1;s:3:\"key\";s:20:\"woocommerce-shipping\";}i:2;O:8:\"stdClass\":5:{s:4:\"name\";s:15:\"WooCommerce Tax\";s:11:\"description\";s:111:\"Get automated sales tax with WooCommerce Tax\";s:10:\"is_visible\";a:2:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";a:11:{i:0;s:2:\"US\";i:1;s:2:\"FR\";i:2;s:2:\"GB\";i:3;s:2:\"DE\";i:4;s:2:\"CA\";i:5;s:2:\"AU\";i:6;s:2:\"GR\";i:7;s:2:\"BE\";i:8;s:2:\"PT\";i:9;s:2:\"DK\";i:10;s:2:\"SE\";}s:9:\"operation\";s:2:\"in\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-services\";}}}}}s:14:\"is_built_by_wc\";b:1;s:3:\"key\";s:24:\"woocommerce-services:tax\";}i:3;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"Jetpack\";s:11:\"description\";s:110:\"Enhance speed and security with Jetpack\";s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:7:\"jetpack\";}}}}}s:14:\"is_built_by_wc\";b:0;s:14:\"min_wp_version\";s:3:\"6.0\";s:3:\"key\";s:7:\"jetpack\";}}}s:8:\"obw/grow\";O:8:\"stdClass\":3:{s:3:\"key\";s:8:\"obw/grow\";s:5:\"title\";s:15:\"Grow your store\";s:7:\"plugins\";a:4:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:8:\"MailPoet\";s:11:\"description\";s:115:\"Level up your email marketing with MailPoet\";s:10:\"manage_url\";s:35:\"admin.php?page=mailpoet-newsletters\";s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:37:\"woocommerce_remote_variant_assignment\";s:5:\"value\";a:2:{i:0;i:1;i:1;i:60;}s:7:\"default\";b:0;s:9:\"operation\";s:5:\"range\";}}s:14:\"is_built_by_wc\";b:1;s:3:\"key\";s:8:\"mailpoet\";}i:1;O:8:\"stdClass\":8:{s:4:\"name\";s:22:\"Google for WooCommerce\";s:11:\"description\";s:126:\"Drive sales with Google for WooCommerce\";s:9:\"image_url\";s:94:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/google.svg\";s:10:\"manage_url\";s:46:\"admin.php?page=wc-admin&path=%2Fgoogle%2Fstart\";s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:23:\"google-listings-and-ads\";}}}}}s:14:\"is_built_by_wc\";b:1;s:15:\"min_php_version\";s:3:\"7.4\";s:3:\"key\";s:23:\"google-listings-and-ads\";}i:2;O:8:\"stdClass\":8:{s:4:\"name\";s:25:\"Pinterest for WooCommerce\";s:11:\"description\";s:76:\"Get your products in front of Pinners searching for ideas and things to buy.\";s:9:\"image_url\";s:97:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/pinterest.png\";s:10:\"manage_url\";s:51:\"admin.php?page=wc-admin&path=%2Fpinterest%2Flanding\";s:10:\"is_visible\";b:1;s:14:\"is_built_by_wc\";b:1;s:15:\"min_php_version\";s:3:\"7.3\";s:3:\"key\";s:25:\"pinterest-for-woocommerce\";}i:3;O:8:\"stdClass\":7:{s:4:\"name\";s:24:\"Facebook for WooCommerce\";s:11:\"description\";s:141:\"List products and create ads on Facebook and Instagram with Facebook for WooCommerce\";s:9:\"image_url\";s:96:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/facebook.png\";s:10:\"manage_url\";s:26:\"admin.php?page=wc-facebook\";s:10:\"is_visible\";b:0;s:14:\"is_built_by_wc\";b:0;s:3:\"key\";s:24:\"facebook-for-woocommerce\";}}}s:15:\"task-list/reach\";O:8:\"stdClass\":3:{s:3:\"key\";s:15:\"task-list/reach\";s:5:\"title\";s:22:\"Reach out to customers\";s:7:\"plugins\";a:3:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:8:\"MailPoet\";s:11:\"description\";s:111:\"Create and send purchase follow-up emails, newsletters, and promotional campaigns straight from your dashboard.\";s:9:\"image_url\";s:96:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/mailpoet.svg\";s:10:\"manage_url\";s:35:\"admin.php?page=mailpoet-newsletters\";s:14:\"is_built_by_wc\";b:1;s:3:\"key\";s:12:\"mailpoet:alt\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"Klaviyo\";s:11:\"description\";s:138:\"Grow and retain customers with intelligent, impactful email and SMS marketing automation and a consolidated view of customer interactions.\";s:9:\"image_url\";s:95:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/klaviyo.png\";s:10:\"manage_url\";s:31:\"admin.php?page=klaviyo_settings\";s:14:\"is_built_by_wc\";b:0;s:3:\"key\";s:11:\"klaviyo:alt\";}i:2;O:8:\"stdClass\":6:{s:4:\"name\";s:9:\"MailChimp\";s:11:\"description\";s:80:\"Send targeted campaigns, recover abandoned baskets and much more with Mailchimp.\";s:9:\"image_url\";s:97:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/mailchimp.svg\";s:10:\"manage_url\";s:36:\"admin.php?page=mailchimp-woocommerce\";s:14:\"is_built_by_wc\";b:0;s:3:\"key\";s:29:\"mailchimp-for-woocommerce:alt\";}}}s:14:\"task-list/grow\";O:8:\"stdClass\":3:{s:3:\"key\";s:14:\"task-list/grow\";s:5:\"title\";s:15:\"Grow your store\";s:7:\"plugins\";a:6:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:22:\"Google for WooCommerce\";s:11:\"description\";s:134:\"Reach more shoppers and drive sales for your store. Integrate with Google to list your products for free and launch paid ad campaigns.\";s:9:\"image_url\";s:94:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/google.svg\";s:10:\"manage_url\";s:46:\"admin.php?page=wc-admin&path=%2Fgoogle%2Fstart\";s:14:\"is_built_by_wc\";b:1;s:3:\"key\";s:27:\"google-listings-and-ads:alt\";}i:1;O:8:\"stdClass\":7:{s:4:\"name\";s:22:\"TikTok for WooCommerce\";s:9:\"image_url\";s:94:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/tiktok.svg\";s:11:\"description\";s:118:\"Grow your online sales by promoting your products on TikTok to over one billion monthly active users around the world.\";s:10:\"manage_url\";s:21:\"admin.php?page=tiktok\";s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";a:40:{i:0;s:2:\"US\";i:1;s:2:\"CA\";i:2;s:2:\"MX\";i:3;s:2:\"AT\";i:4;s:2:\"BE\";i:5;s:2:\"CZ\";i:6;s:2:\"DK\";i:7;s:2:\"FI\";i:8;s:2:\"FR\";i:9;s:2:\"DE\";i:10;s:2:\"GR\";i:11;s:2:\"HU\";i:12;s:2:\"IE\";i:13;s:2:\"IT\";i:14;s:2:\"NL\";i:15;s:2:\"PL\";i:16;s:2:\"PT\";i:17;s:2:\"RO\";i:18;s:2:\"ES\";i:19;s:2:\"SE\";i:20;s:2:\"GB\";i:21;s:2:\"CH\";i:22;s:2:\"NO\";i:23;s:2:\"AU\";i:24;s:2:\"NZ\";i:25;s:2:\"SG\";i:26;s:2:\"MY\";i:27;s:2:\"PH\";i:28;s:2:\"ID\";i:29;s:2:\"VN\";i:30;s:2:\"TH\";i:31;s:2:\"KR\";i:32;s:2:\"IL\";i:33;s:2:\"AE\";i:34;s:2:\"RU\";i:35;s:2:\"UA\";i:36;s:2:\"TR\";i:37;s:2:\"SA\";i:38;s:2:\"BR\";i:39;s:2:\"JP\";}s:9:\"operation\";s:2:\"in\";}}s:14:\"is_built_by_wc\";b:0;s:3:\"key\";s:19:\"tiktok-for-business\";}i:2;O:8:\"stdClass\":6:{s:4:\"name\";s:25:\"Pinterest for WooCommerce\";s:11:\"description\";s:161:\"Get your products in front of Pinterest users searching for ideas and things to buy. Get started with Pinterest and make your entire product catalogue browsable.\";s:9:\"image_url\";s:97:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/pinterest.png\";s:10:\"manage_url\";s:51:\"admin.php?page=wc-admin&path=%2Fpinterest%2Flanding\";s:14:\"is_built_by_wc\";b:1;s:3:\"key\";s:29:\"pinterest-for-woocommerce:alt\";}i:3;O:8:\"stdClass\":8:{s:4:\"name\";s:26:\"Meta Ads & Pixel by Kliken\";s:11:\"description\";s:150:\"Automate Facebook & Instagram marketing with Kliken. Launch ads and schedule a month of posts in 5 minutes—first 5 free! Plans start at just $20/mo.\";s:9:\"image_url\";s:94:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/kliken.svg\";s:10:\"manage_url\";s:40:\"admin.php?page=kliken-ads-pixel-for-meta\";s:14:\"is_built_by_wc\";b:0;s:16:\"install_external\";b:0;s:10:\"is_visible\";b:1;s:3:\"key\";s:29:\"kliken-ads-pixel-for-meta:alt\";}i:4;O:8:\"stdClass\":7:{s:4:\"name\";s:24:\"Facebook for WooCommerce\";s:11:\"description\";s:55:\"List products and create ads on Facebook and Instagram.\";s:9:\"image_url\";s:96:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/facebook.png\";s:10:\"manage_url\";s:26:\"admin.php?page=wc-facebook\";s:10:\"is_visible\";b:1;s:14:\"is_built_by_wc\";b:0;s:3:\"key\";s:28:\"facebook-for-woocommerce:alt\";}i:5;O:8:\"stdClass\":10:{s:4:\"name\";s:28:\"Multichannel for WooCommerce\";s:11:\"description\";s:85:\"Sync your sales data across platforms and manage everything from a unified dashboard.\";s:9:\"image_url\";s:101:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/multichannel.webp\";s:10:\"manage_url\";s:28:\"admin.php?page=sales_channel\";s:14:\"is_built_by_wc\";b:0;s:16:\"install_external\";b:1;s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:7:\"version\";s:9:\"9.8.0-dev\";s:8:\"operator\";s:2:\">=\";}}s:15:\"learn_more_link\";s:143:\"https://woocommerce.com/products/multichannel-by-cedcommerce-ebay-amazon-walmart-etsy-integration/?utm_source=marketing_task&utm_medium=product\";s:4:\"tags\";a:1:{i:0;s:11:\"marketplace\";}s:3:\"key\";s:27:\"multichannel-by-cedcommerce\";}}}s:17:\"obw/core-profiler\";O:8:\"stdClass\":3:{s:3:\"key\";s:17:\"obw/core-profiler\";s:5:\"title\";s:15:\"Grow your store\";s:7:\"plugins\";a:12:{i:0;O:8:\"stdClass\":11:{s:4:\"name\";s:11:\"WooPayments\";s:11:\"description\";s:54:\"Offer safe and convenient ways to pay with WooPayments\";s:10:\"is_visible\";a:2:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";a:39:{i:0;s:2:\"US\";i:1;s:2:\"PR\";i:2;s:2:\"AU\";i:3;s:2:\"CA\";i:4;s:2:\"DE\";i:5;s:2:\"ES\";i:6;s:2:\"FR\";i:7;s:2:\"GB\";i:8;s:2:\"IE\";i:9;s:2:\"IT\";i:10;s:2:\"NZ\";i:11;s:2:\"AT\";i:12;s:2:\"BE\";i:13;s:2:\"NL\";i:14;s:2:\"PL\";i:15;s:2:\"PT\";i:16;s:2:\"CH\";i:17;s:2:\"HK\";i:18;s:2:\"SG\";i:19;s:2:\"CY\";i:20;s:2:\"DK\";i:21;s:2:\"EE\";i:22;s:2:\"FI\";i:23;s:2:\"GR\";i:24;s:2:\"LU\";i:25;s:2:\"LT\";i:26;s:2:\"LV\";i:27;s:2:\"NO\";i:28;s:2:\"MT\";i:29;s:2:\"SI\";i:30;s:2:\"SK\";i:31;s:2:\"BG\";i:32;s:2:\"CZ\";i:33;s:2:\"HR\";i:34;s:2:\"HU\";i:35;s:2:\"RO\";i:36;s:2:\"SE\";i:37;s:2:\"JP\";i:38;s:2:\"AE\";}s:9:\"operation\";s:2:\"in\";}i:1;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:2:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:8:\"industry\";}}i:1;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"array_column\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:3:\"key\";s:4:\"slug\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:9:\"!contains\";s:5:\"value\";s:31:\"cbd-other-hemp-derived-products\";s:7:\"default\";a:0:{}}}s:14:\"is_built_by_wc\";b:1;s:14:\"min_wp_version\";s:3:\"5.9\";s:3:\"key\";s:20:\"woocommerce-payments\";s:5:\"label\";s:25:\"Get paid with WooPayments\";s:9:\"image_url\";s:120:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/core-profiler/logo-woo-rebrand-2.svg\";s:15:\"learn_more_link\";s:123:\"https://woocommerce.com/products/woocommerce-payments?utm_source=storeprofiler&utm_medium=product&utm_campaign=freefeatures\";s:16:\"install_priority\";i:5;s:12:\"requires_jpc\";b:1;}i:1;O:8:\"stdClass\":9:{s:4:\"name\";s:20:\"WooCommerce Shipping\";s:11:\"description\";s:41:\"Print discounted USPS, UPS and DHL labels\";s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"US\";s:9:\"operation\";s:1:\"=\";}}s:14:\"is_built_by_wc\";b:1;s:3:\"key\";s:20:\"woocommerce-shipping\";s:5:\"label\";s:42:\"Save on shipping with WooCommerce Shipping\";s:9:\"image_url\";s:120:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/core-profiler/logo-woo-rebrand-2.svg\";s:15:\"learn_more_link\";s:114:\"https://woocommerce.com/woocommerce-shipping?utm_source=storeprofiler&utm_medium=product&utm_campaign=freefeatures\";s:16:\"install_priority\";i:3;}i:2;O:8:\"stdClass\":10:{s:4:\"name\";s:31:\"PayPal Payments for WooCommerce\";s:11:\"description\";s:61:\"Offer more ways to pay with this all-in-one checkout solution\";s:14:\"is_built_by_wc\";b:0;s:15:\"install_options\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"name\";s:26:\"woocommerce_paypal_branded\";s:5:\"value\";s:8:\"profiler\";}}s:10:\"is_visible\";a:2:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";a:39:{i:0;s:2:\"US\";i:1;s:2:\"PR\";i:2;s:2:\"AU\";i:3;s:2:\"CA\";i:4;s:2:\"DE\";i:5;s:2:\"ES\";i:6;s:2:\"FR\";i:7;s:2:\"GB\";i:8;s:2:\"IE\";i:9;s:2:\"IT\";i:10;s:2:\"NZ\";i:11;s:2:\"AT\";i:12;s:2:\"BE\";i:13;s:2:\"NL\";i:14;s:2:\"PL\";i:15;s:2:\"PT\";i:16;s:2:\"CH\";i:17;s:2:\"HK\";i:18;s:2:\"SG\";i:19;s:2:\"CY\";i:20;s:2:\"DK\";i:21;s:2:\"EE\";i:22;s:2:\"FI\";i:23;s:2:\"GR\";i:24;s:2:\"LU\";i:25;s:2:\"LT\";i:26;s:2:\"LV\";i:27;s:2:\"NO\";i:28;s:2:\"MT\";i:29;s:2:\"SI\";i:30;s:2:\"SK\";i:31;s:2:\"BG\";i:32;s:2:\"CZ\";i:33;s:2:\"HR\";i:34;s:2:\"HU\";i:35;s:2:\"RO\";i:36;s:2:\"SE\";i:37;s:2:\"JP\";i:38;s:2:\"AE\";}s:9:\"operation\";s:3:\"!in\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:7:\"version\";s:10:\"9.8.0-rc.1\";s:8:\"operator\";s:2:\">=\";}}s:3:\"key\";s:27:\"woocommerce-paypal-payments\";s:5:\"label\";s:41:\"Maximize conversions with PayPal Payments\";s:9:\"image_url\";s:113:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/core-profiler/logo-paypal.svg\";s:15:\"learn_more_link\";s:130:\"https://woocommerce.com/products/woocommerce-paypal-payments?utm_source=storeprofiler&utm_medium=product&utm_campaign=freefeatures\";s:16:\"install_priority\";i:5;}i:3;O:8:\"stdClass\":9:{s:4:\"name\";s:31:\"PayPal Payments for WooCommerce\";s:11:\"description\";s:60:\"Offer additional flexible payment options with PayPal Wallet\";s:14:\"is_built_by_wc\";b:0;s:10:\"is_visible\";a:2:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";a:39:{i:0;s:2:\"US\";i:1;s:2:\"PR\";i:2;s:2:\"AU\";i:3;s:2:\"CA\";i:4;s:2:\"DE\";i:5;s:2:\"ES\";i:6;s:2:\"FR\";i:7;s:2:\"GB\";i:8;s:2:\"IE\";i:9;s:2:\"IT\";i:10;s:2:\"NZ\";i:11;s:2:\"AT\";i:12;s:2:\"BE\";i:13;s:2:\"NL\";i:14;s:2:\"PL\";i:15;s:2:\"PT\";i:16;s:2:\"CH\";i:17;s:2:\"HK\";i:18;s:2:\"SG\";i:19;s:2:\"CY\";i:20;s:2:\"DK\";i:21;s:2:\"EE\";i:22;s:2:\"FI\";i:23;s:2:\"GR\";i:24;s:2:\"LU\";i:25;s:2:\"LT\";i:26;s:2:\"LV\";i:27;s:2:\"NO\";i:28;s:2:\"MT\";i:29;s:2:\"SI\";i:30;s:2:\"SK\";i:31;s:2:\"BG\";i:32;s:2:\"CZ\";i:33;s:2:\"HR\";i:34;s:2:\"HU\";i:35;s:2:\"RO\";i:36;s:2:\"SE\";i:37;s:2:\"JP\";i:38;s:2:\"AE\";}s:9:\"operation\";s:2:\"in\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:7:\"version\";s:10:\"9.8.0-rc.1\";s:8:\"operator\";s:2:\">=\";}}s:3:\"key\";s:39:\"woocommerce-paypal-payments:wallet-only\";s:5:\"label\";s:38:\"Give shoppers a variety of ways to pay\";s:9:\"image_url\";s:113:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/core-profiler/logo-paypal.svg\";s:15:\"learn_more_link\";s:130:\"https://woocommerce.com/products/woocommerce-paypal-payments?utm_source=storeprofiler&utm_medium=product&utm_campaign=freefeatures\";s:16:\"install_priority\";i:5;}i:4;O:8:\"stdClass\":11:{s:4:\"name\";s:7:\"Jetpack\";s:11:\"description\";s:53:\"Keep your store online with full security and backups\";s:10:\"is_visible\";b:1;s:14:\"is_built_by_wc\";b:0;s:14:\"min_wp_version\";s:3:\"6.0\";s:3:\"key\";s:7:\"jetpack\";s:5:\"label\";s:49:\"Protect your store and your shoppers with Jetpack\";s:9:\"image_url\";s:114:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/core-profiler/logo-jetpack.svg\";s:15:\"learn_more_link\";s:110:\"https://woocommerce.com/products/jetpack?utm_source=storeprofiler&utm_medium=product&utm_campaign=freefeatures\";s:16:\"install_priority\";i:8;s:12:\"requires_jpc\";b:1;}i:5;O:8:\"stdClass\":11:{s:4:\"name\";s:25:\"Pinterest for WooCommerce\";s:11:\"description\";s:55:\"Get your products in front of a highly engaged audience\";s:9:\"image_url\";s:116:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/core-profiler/logo-pinterest.svg\";s:10:\"manage_url\";s:51:\"admin.php?page=wc-admin&path=%2Fpinterest%2Flanding\";s:10:\"is_visible\";b:1;s:14:\"is_built_by_wc\";b:1;s:15:\"min_php_version\";s:3:\"7.3\";s:3:\"key\";s:25:\"pinterest-for-woocommerce\";s:5:\"label\";s:37:\"Showcase your products with Pinterest\";s:15:\"learn_more_link\";s:128:\"https://woocommerce.com/products/pinterest-for-woocommerce?utm_source=storeprofiler&utm_medium=product&utm_campaign=freefeatures\";s:16:\"install_priority\";i:2;}i:6;O:8:\"stdClass\":10:{s:4:\"name\";s:8:\"MailPoet\";s:11:\"description\";s:58:\"Attract and retain shoppers with email marketing campaigns\";s:10:\"manage_url\";s:35:\"admin.php?page=mailpoet-newsletters\";s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:37:\"woocommerce_remote_variant_assignment\";s:5:\"value\";a:2:{i:0;i:1;i:1;i:60;}s:7:\"default\";b:0;s:9:\"operation\";s:5:\"range\";}}s:14:\"is_built_by_wc\";b:1;s:3:\"key\";s:8:\"mailpoet\";s:5:\"label\";s:34:\"Reach your customers with MailPoet\";s:9:\"image_url\";s:115:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/core-profiler/logo-mailpoet.svg\";s:15:\"learn_more_link\";s:111:\"https://woocommerce.com/products/mailpoet?utm_source=storeprofiler&utm_medium=product&utm_campaign=freefeatures\";s:16:\"install_priority\";i:7;}i:7;O:8:\"stdClass\":10:{s:4:\"name\";s:7:\"Klaviyo\";s:11:\"description\";s:56:\"Build personalized email and SMS campaigns using Klaviyo\";s:9:\"image_url\";s:95:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/klaviyo.png\";s:10:\"manage_url\";s:31:\"admin.php?page=klaviyo_settings\";s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:37:\"woocommerce_remote_variant_assignment\";s:5:\"value\";a:2:{i:0;i:61;i:1;i:120;}s:7:\"default\";b:0;s:9:\"operation\";s:5:\"range\";}}s:14:\"is_built_by_wc\";b:0;s:3:\"key\";s:7:\"klaviyo\";s:5:\"label\";s:7:\"Klaviyo\";s:15:\"learn_more_link\";s:126:\"https://woocommerce.com/products/klaviyo-for-woocommerce?utm_source=storeprofiler&utm_medium=product&utm_campaign=freefeatures\";s:16:\"install_priority\";i:7;}i:8;O:8:\"stdClass\":11:{s:4:\"name\";s:22:\"Google for WooCommerce\";s:11:\"description\";s:57:\"Create ads for your products straight from your dashboard\";s:9:\"image_url\";s:113:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/core-profiler/logo-google.svg\";s:10:\"manage_url\";s:46:\"admin.php?page=wc-admin&path=%2Fgoogle%2Fstart\";s:10:\"is_visible\";b:1;s:14:\"is_built_by_wc\";b:1;s:15:\"min_php_version\";s:3:\"7.4\";s:3:\"key\";s:23:\"google-listings-and-ads\";s:5:\"label\";s:39:\"Drive sales with Google for WooCommerce\";s:15:\"learn_more_link\";s:126:\"https://woocommerce.com/products/google-listings-and-ads?utm_source=storeprofiler&utm_medium=product&utm_campaign=freefeatures\";s:16:\"install_priority\";i:6;}i:9;O:8:\"stdClass\":9:{s:4:\"name\";s:15:\"WooCommerce Tax\";s:11:\"description\";s:62:\"Automatically calculate how much sales tax should be collected\";s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";a:11:{i:0;s:2:\"US\";i:1;s:2:\"FR\";i:2;s:2:\"GB\";i:3;s:2:\"DE\";i:4;s:2:\"CA\";i:5;s:2:\"AU\";i:6;s:2:\"GR\";i:7;s:2:\"BE\";i:8;s:2:\"PT\";i:9;s:2:\"DK\";i:10;s:2:\"SE\";}s:9:\"operation\";s:2:\"in\";}}s:14:\"is_built_by_wc\";b:1;s:3:\"key\";s:24:\"woocommerce-services:tax\";s:5:\"label\";s:44:\"Get automated tax rates with WooCommerce Tax\";s:9:\"image_url\";s:120:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/core-profiler/logo-woo-rebrand-2.svg\";s:15:\"learn_more_link\";s:106:\"https://woocommerce.com/products/tax?utm_source=storeprofiler&utm_medium=product&utm_campaign=freefeatures\";s:16:\"install_priority\";i:4;}i:10;O:8:\"stdClass\":10:{s:4:\"name\";s:22:\"TikTok for WooCommerce\";s:9:\"image_url\";s:113:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/core-profiler/logo-tiktok.svg\";s:11:\"description\";s:59:\"Sync your store with TikTok to create engaging ad campaigns\";s:10:\"manage_url\";s:21:\"admin.php?page=tiktok\";s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";a:40:{i:0;s:2:\"US\";i:1;s:2:\"CA\";i:2;s:2:\"MX\";i:3;s:2:\"AT\";i:4;s:2:\"BE\";i:5;s:2:\"CZ\";i:6;s:2:\"DK\";i:7;s:2:\"FI\";i:8;s:2:\"FR\";i:9;s:2:\"DE\";i:10;s:2:\"GR\";i:11;s:2:\"HU\";i:12;s:2:\"IE\";i:13;s:2:\"IT\";i:14;s:2:\"NL\";i:15;s:2:\"PL\";i:16;s:2:\"PT\";i:17;s:2:\"RO\";i:18;s:2:\"ES\";i:19;s:2:\"SE\";i:20;s:2:\"GB\";i:21;s:2:\"CH\";i:22;s:2:\"NO\";i:23;s:2:\"AU\";i:24;s:2:\"NZ\";i:25;s:2:\"SG\";i:26;s:2:\"MY\";i:27;s:2:\"PH\";i:28;s:2:\"ID\";i:29;s:2:\"VN\";i:30;s:2:\"TH\";i:31;s:2:\"KR\";i:32;s:2:\"IL\";i:33;s:2:\"AE\";i:34;s:2:\"RU\";i:35;s:2:\"UA\";i:36;s:2:\"TR\";i:37;s:2:\"SA\";i:38;s:2:\"BR\";i:39;s:2:\"JP\";}s:9:\"operation\";s:2:\"in\";}}s:14:\"is_built_by_wc\";b:0;s:3:\"key\";s:19:\"tiktok-for-business\";s:5:\"label\";s:31:\"Create ad campaigns with TikTok\";s:15:\"learn_more_link\";s:125:\"https://woocommerce.com/products/tiktok-for-woocommerce?utm_source=storeprofiler&utm_medium=product&utm_campaign=freefeatures\";s:16:\"install_priority\";i:1;}i:11;O:8:\"stdClass\":10:{s:4:\"name\";s:29:\"Print on Demand with Printful\";s:9:\"image_url\";s:115:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/core-profiler/logo-printful.png\";s:11:\"description\";s:65:\"Design and easily sell custom print products online with Printful\";s:10:\"manage_url\";s:0:\"\";s:10:\"is_visible\";a:2:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";a:9:{i:0;s:2:\"AU\";i:1;s:2:\"GB\";i:2;s:2:\"CA\";i:3;s:2:\"ES\";i:4;s:2:\"DE\";i:5;s:2:\"FR\";i:6;s:2:\"NL\";i:7;s:2:\"BE\";i:8;s:2:\"LU\";}s:9:\"operation\";s:2:\"in\";}i:1;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:10:\"industry.0\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:5:\"value\";s:24:\"clothing_and_accessories\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}s:14:\"is_built_by_wc\";b:0;s:3:\"key\";s:33:\"printful-shipping-for-woocommerce\";s:5:\"label\";s:29:\"Print on Demand with Printful\";s:15:\"learn_more_link\";s:111:\"https://woocommerce.com/products/printful?utm_source=storeprofiler&utm_medium=product&utm_campaign=freefeatures\";s:16:\"install_priority\";i:9;}}}}}','off'), +(31702,'_site_transient_timeout_browser_6a23775729fd6c068d20d383cbe27f9b','1750744793','off'), +(31703,'_site_transient_browser_6a23775729fd6c068d20d383cbe27f9b','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:9:\"127.0.0.0\";s:8:\"platform\";s:9:\"Macintosh\";s:10:\"update_url\";s:29:\"https://www.google.com/chrome\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/chrome.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/chrome.png?1\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','off'), +(31710,'_transient_timeout_wc_report_orders_stats_1636ca5e2da7da9e3e6a76b9186b5a1a','1750744795','off'), +(31711,'_transient_wc_report_orders_stats_1636ca5e2da7da9e3e6a76b9186b5a1a','a:2:{s:7:\"version\";s:10:\"1733494962\";s:5:\"value\";O:8:\"stdClass\":5:{s:6:\"totals\";O:8:\"stdClass\":15:{s:12:\"orders_count\";i:1;s:14:\"num_items_sold\";i:3;s:11:\"gross_sales\";d:130;s:11:\"total_sales\";d:130;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:130;s:19:\"avg_items_per_order\";d:3;s:15:\"avg_order_value\";d:130;s:15:\"total_customers\";i:1;s:8:\"products\";i:3;s:8:\"segments\";a:0:{}}s:9:\"intervals\";a:4:{i:0;a:6:{s:8:\"interval\";s:7:\"2025-25\";s:10:\"date_start\";s:19:\"2025-06-16 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-15 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-17 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-17 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":14:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:0;s:8:\"segments\";a:0:{}}}i:1;a:6:{s:8:\"interval\";s:7:\"2025-24\";s:10:\"date_start\";s:19:\"2025-06-09 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-08 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-15 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-15 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":14:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:0;s:8:\"segments\";a:0:{}}}i:2;a:6:{s:8:\"interval\";s:7:\"2025-23\";s:10:\"date_start\";s:19:\"2025-06-02 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-01 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-08 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-08 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":14:{s:12:\"orders_count\";i:1;s:14:\"num_items_sold\";i:3;s:11:\"gross_sales\";d:130;s:11:\"total_sales\";d:130;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:130;s:19:\"avg_items_per_order\";d:3;s:15:\"avg_order_value\";d:130;s:15:\"total_customers\";i:1;s:8:\"segments\";a:0:{}}}i:3;a:6:{s:8:\"interval\";s:7:\"2025-22\";s:10:\"date_start\";s:19:\"2025-06-01 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-05-31 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-01 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-01 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":14:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:0;s:8:\"segments\";a:0:{}}}}s:5:\"total\";i:4;s:5:\"pages\";i:1;s:7:\"page_no\";i:1;}}','off'), +(31712,'_transient_timeout_wc_report_orders_stats_0fcae2e0f6d5937bc8304793f56d6df1','1750744795','off'), +(31713,'_transient_wc_report_orders_stats_0fcae2e0f6d5937bc8304793f56d6df1','a:2:{s:7:\"version\";s:10:\"1733494962\";s:5:\"value\";O:8:\"stdClass\":5:{s:6:\"totals\";O:8:\"stdClass\":15:{s:12:\"orders_count\";i:1;s:14:\"num_items_sold\";i:3;s:11:\"gross_sales\";d:130;s:11:\"total_sales\";d:130;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:130;s:19:\"avg_items_per_order\";d:3;s:15:\"avg_order_value\";d:130;s:15:\"total_customers\";i:1;s:8:\"products\";i:3;s:8:\"segments\";a:0:{}}s:9:\"intervals\";a:4:{i:0;a:6:{s:8:\"interval\";s:7:\"2025-25\";s:10:\"date_start\";s:19:\"2025-06-16 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-15 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-17 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-17 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":14:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:0;s:8:\"segments\";a:0:{}}}i:1;a:6:{s:8:\"interval\";s:7:\"2025-24\";s:10:\"date_start\";s:19:\"2025-06-09 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-08 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-15 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-15 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":14:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:0;s:8:\"segments\";a:0:{}}}i:2;a:6:{s:8:\"interval\";s:7:\"2025-23\";s:10:\"date_start\";s:19:\"2025-06-02 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-01 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-08 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-08 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":14:{s:12:\"orders_count\";i:1;s:14:\"num_items_sold\";i:3;s:11:\"gross_sales\";d:130;s:11:\"total_sales\";d:130;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:130;s:19:\"avg_items_per_order\";d:3;s:15:\"avg_order_value\";d:130;s:15:\"total_customers\";i:1;s:8:\"segments\";a:0:{}}}i:3;a:6:{s:8:\"interval\";s:7:\"2025-22\";s:10:\"date_start\";s:19:\"2025-06-01 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-05-31 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-01 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-01 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":14:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:0;s:8:\"segments\";a:0:{}}}}s:5:\"total\";i:4;s:5:\"pages\";i:1;s:7:\"page_no\";i:1;}}','off'), +(31714,'_transient_timeout_wc_report_products_stats_dd2add8c102c36bb161877fd4d3379b3','1750744795','off'), +(31715,'_transient_wc_report_products_stats_dd2add8c102c36bb161877fd4d3379b3','a:2:{s:7:\"version\";s:10:\"1733494962\";s:5:\"value\";O:8:\"stdClass\":5:{s:6:\"totals\";O:8:\"stdClass\":6:{s:10:\"items_sold\";i:3;s:11:\"net_revenue\";d:130;s:12:\"orders_count\";i:1;s:14:\"products_count\";i:3;s:16:\"variations_count\";i:1;s:8:\"segments\";a:0:{}}s:9:\"intervals\";a:4:{i:0;a:6:{s:8:\"interval\";s:7:\"2025-25\";s:10:\"date_start\";s:19:\"2025-06-16 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-15 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-17 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-17 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":6:{s:10:\"items_sold\";i:0;s:11:\"net_revenue\";d:0;s:12:\"orders_count\";i:0;s:14:\"products_count\";i:0;s:16:\"variations_count\";i:0;s:8:\"segments\";a:0:{}}}i:1;a:6:{s:8:\"interval\";s:7:\"2025-24\";s:10:\"date_start\";s:19:\"2025-06-09 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-08 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-15 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-15 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":6:{s:10:\"items_sold\";i:0;s:11:\"net_revenue\";d:0;s:12:\"orders_count\";i:0;s:14:\"products_count\";i:0;s:16:\"variations_count\";i:0;s:8:\"segments\";a:0:{}}}i:2;a:6:{s:8:\"interval\";s:7:\"2025-23\";s:10:\"date_start\";s:19:\"2025-06-02 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-01 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-08 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-08 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":6:{s:10:\"items_sold\";i:3;s:11:\"net_revenue\";d:130;s:12:\"orders_count\";i:1;s:14:\"products_count\";i:3;s:16:\"variations_count\";i:1;s:8:\"segments\";a:0:{}}}i:3;a:6:{s:8:\"interval\";s:7:\"2025-22\";s:10:\"date_start\";s:19:\"2025-06-01 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-05-31 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-01 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-01 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":6:{s:10:\"items_sold\";i:0;s:11:\"net_revenue\";d:0;s:12:\"orders_count\";i:0;s:14:\"products_count\";i:0;s:16:\"variations_count\";i:0;s:8:\"segments\";a:0:{}}}}s:5:\"total\";i:4;s:5:\"pages\";i:1;s:7:\"page_no\";i:1;}}','off'), +(31716,'_transient_timeout_wc_report_variations_stats_9d7d2d257a94616503014644403ef512','1750744795','off'), +(31717,'_transient_wc_report_variations_stats_9d7d2d257a94616503014644403ef512','a:2:{s:7:\"version\";s:10:\"1733494962\";s:5:\"value\";O:8:\"stdClass\":5:{s:6:\"totals\";O:8:\"stdClass\":5:{s:10:\"items_sold\";i:0;s:11:\"net_revenue\";d:0;s:12:\"orders_count\";i:0;s:16:\"variations_count\";i:0;s:8:\"segments\";a:0:{}}s:9:\"intervals\";a:4:{i:0;a:6:{s:8:\"interval\";s:7:\"2025-25\";s:10:\"date_start\";s:19:\"2025-06-16 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-15 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-17 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-17 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":5:{s:10:\"items_sold\";i:0;s:11:\"net_revenue\";d:0;s:12:\"orders_count\";i:0;s:16:\"variations_count\";i:0;s:8:\"segments\";a:0:{}}}i:1;a:6:{s:8:\"interval\";s:7:\"2025-24\";s:10:\"date_start\";s:19:\"2025-06-09 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-08 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-15 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-15 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":5:{s:10:\"items_sold\";i:0;s:11:\"net_revenue\";d:0;s:12:\"orders_count\";i:0;s:16:\"variations_count\";i:0;s:8:\"segments\";a:0:{}}}i:2;a:6:{s:8:\"interval\";s:7:\"2025-23\";s:10:\"date_start\";s:19:\"2025-06-02 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-01 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-08 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-08 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":5:{s:10:\"items_sold\";i:0;s:11:\"net_revenue\";d:0;s:12:\"orders_count\";i:0;s:16:\"variations_count\";i:0;s:8:\"segments\";a:0:{}}}i:3;a:6:{s:8:\"interval\";s:7:\"2025-22\";s:10:\"date_start\";s:19:\"2025-06-01 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-05-31 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-01 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-01 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":5:{s:10:\"items_sold\";i:0;s:11:\"net_revenue\";d:0;s:12:\"orders_count\";i:0;s:16:\"variations_count\";i:0;s:8:\"segments\";a:0:{}}}}s:5:\"total\";i:4;s:5:\"pages\";i:1;s:7:\"page_no\";i:1;}}','off'), +(31718,'_transient_timeout_wc_report_orders_stats_c966a2470e117302cb0ff812c75b12a7','1750744795','off'), +(31719,'_transient_wc_report_orders_stats_c966a2470e117302cb0ff812c75b12a7','a:2:{s:7:\"version\";s:10:\"1733494962\";s:5:\"value\";O:8:\"stdClass\":5:{s:6:\"totals\";O:8:\"stdClass\":4:{s:11:\"net_revenue\";d:130;s:8:\"products\";i:3;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}s:9:\"intervals\";a:17:{i:0;a:6:{s:8:\"interval\";s:10:\"2025-06-01\";s:10:\"date_start\";s:19:\"2025-06-01 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-05-31 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-01 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-01 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:1;a:6:{s:8:\"interval\";s:10:\"2025-06-02\";s:10:\"date_start\";s:19:\"2025-06-02 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-01 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-02 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-02 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:2;a:6:{s:8:\"interval\";s:10:\"2025-06-03\";s:10:\"date_start\";s:19:\"2025-06-03 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-02 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-03 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-03 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:3;a:6:{s:8:\"interval\";s:10:\"2025-06-04\";s:10:\"date_start\";s:19:\"2025-06-04 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-03 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-04 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-04 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:4;a:6:{s:8:\"interval\";s:10:\"2025-06-05\";s:10:\"date_start\";s:19:\"2025-06-05 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-04 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-05 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-05 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:130;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:5;a:6:{s:8:\"interval\";s:10:\"2025-06-06\";s:10:\"date_start\";s:19:\"2025-06-06 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-05 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-06 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-06 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:6;a:6:{s:8:\"interval\";s:10:\"2025-06-07\";s:10:\"date_start\";s:19:\"2025-06-07 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-06 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-07 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-07 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:7;a:6:{s:8:\"interval\";s:10:\"2025-06-08\";s:10:\"date_start\";s:19:\"2025-06-08 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-07 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-08 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-08 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:8;a:6:{s:8:\"interval\";s:10:\"2025-06-09\";s:10:\"date_start\";s:19:\"2025-06-09 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-08 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-09 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-09 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:9;a:6:{s:8:\"interval\";s:10:\"2025-06-10\";s:10:\"date_start\";s:19:\"2025-06-10 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-09 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-10 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-10 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:10;a:6:{s:8:\"interval\";s:10:\"2025-06-11\";s:10:\"date_start\";s:19:\"2025-06-11 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-10 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-11 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-11 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:11;a:6:{s:8:\"interval\";s:10:\"2025-06-12\";s:10:\"date_start\";s:19:\"2025-06-12 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-11 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-12 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-12 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:12;a:6:{s:8:\"interval\";s:10:\"2025-06-13\";s:10:\"date_start\";s:19:\"2025-06-13 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-12 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-13 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-13 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:13;a:6:{s:8:\"interval\";s:10:\"2025-06-14\";s:10:\"date_start\";s:19:\"2025-06-14 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-13 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-14 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-14 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:14;a:6:{s:8:\"interval\";s:10:\"2025-06-15\";s:10:\"date_start\";s:19:\"2025-06-15 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-14 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-15 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-15 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:15;a:6:{s:8:\"interval\";s:10:\"2025-06-16\";s:10:\"date_start\";s:19:\"2025-06-16 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-15 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-16 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-16 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:16;a:6:{s:8:\"interval\";s:10:\"2025-06-17\";s:10:\"date_start\";s:19:\"2025-06-17 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-16 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-17 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-17 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}}s:5:\"total\";i:17;s:5:\"pages\";i:1;s:7:\"page_no\";i:1;}}','off'), +(31720,'_transient_timeout_wc_report_products_stats_f3bdfa82e7ac0d42ecbab6a6c74b91da','1750744795','off'), +(31721,'_transient_wc_report_products_stats_f3bdfa82e7ac0d42ecbab6a6c74b91da','a:2:{s:7:\"version\";s:10:\"1733494962\";s:5:\"value\";O:8:\"stdClass\":5:{s:6:\"totals\";O:8:\"stdClass\":2:{s:10:\"items_sold\";i:1;s:8:\"segments\";a:0:{}}s:9:\"intervals\";a:17:{i:0;a:6:{s:8:\"interval\";s:10:\"2025-06-01\";s:10:\"date_start\";s:19:\"2025-06-01 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-05-31 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-01 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-01 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":2:{s:10:\"items_sold\";i:0;s:8:\"segments\";a:0:{}}}i:1;a:6:{s:8:\"interval\";s:10:\"2025-06-02\";s:10:\"date_start\";s:19:\"2025-06-02 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-01 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-02 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-02 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":2:{s:10:\"items_sold\";i:0;s:8:\"segments\";a:0:{}}}i:2;a:6:{s:8:\"interval\";s:10:\"2025-06-03\";s:10:\"date_start\";s:19:\"2025-06-03 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-02 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-03 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-03 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":2:{s:10:\"items_sold\";i:0;s:8:\"segments\";a:0:{}}}i:3;a:6:{s:8:\"interval\";s:10:\"2025-06-04\";s:10:\"date_start\";s:19:\"2025-06-04 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-03 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-04 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-04 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":2:{s:10:\"items_sold\";i:0;s:8:\"segments\";a:0:{}}}i:4;a:6:{s:8:\"interval\";s:10:\"2025-06-05\";s:10:\"date_start\";s:19:\"2025-06-05 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-04 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-05 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-05 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":2:{s:10:\"items_sold\";i:1;s:8:\"segments\";a:0:{}}}i:5;a:6:{s:8:\"interval\";s:10:\"2025-06-06\";s:10:\"date_start\";s:19:\"2025-06-06 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-05 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-06 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-06 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":2:{s:10:\"items_sold\";i:0;s:8:\"segments\";a:0:{}}}i:6;a:6:{s:8:\"interval\";s:10:\"2025-06-07\";s:10:\"date_start\";s:19:\"2025-06-07 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-06 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-07 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-07 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":2:{s:10:\"items_sold\";i:0;s:8:\"segments\";a:0:{}}}i:7;a:6:{s:8:\"interval\";s:10:\"2025-06-08\";s:10:\"date_start\";s:19:\"2025-06-08 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-07 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-08 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-08 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":2:{s:10:\"items_sold\";i:0;s:8:\"segments\";a:0:{}}}i:8;a:6:{s:8:\"interval\";s:10:\"2025-06-09\";s:10:\"date_start\";s:19:\"2025-06-09 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-08 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-09 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-09 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":2:{s:10:\"items_sold\";i:0;s:8:\"segments\";a:0:{}}}i:9;a:6:{s:8:\"interval\";s:10:\"2025-06-10\";s:10:\"date_start\";s:19:\"2025-06-10 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-09 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-10 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-10 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":2:{s:10:\"items_sold\";i:0;s:8:\"segments\";a:0:{}}}i:10;a:6:{s:8:\"interval\";s:10:\"2025-06-11\";s:10:\"date_start\";s:19:\"2025-06-11 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-10 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-11 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-11 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":2:{s:10:\"items_sold\";i:0;s:8:\"segments\";a:0:{}}}i:11;a:6:{s:8:\"interval\";s:10:\"2025-06-12\";s:10:\"date_start\";s:19:\"2025-06-12 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-11 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-12 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-12 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":2:{s:10:\"items_sold\";i:0;s:8:\"segments\";a:0:{}}}i:12;a:6:{s:8:\"interval\";s:10:\"2025-06-13\";s:10:\"date_start\";s:19:\"2025-06-13 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-12 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-13 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-13 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":2:{s:10:\"items_sold\";i:0;s:8:\"segments\";a:0:{}}}i:13;a:6:{s:8:\"interval\";s:10:\"2025-06-14\";s:10:\"date_start\";s:19:\"2025-06-14 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-13 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-14 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-14 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":2:{s:10:\"items_sold\";i:0;s:8:\"segments\";a:0:{}}}i:14;a:6:{s:8:\"interval\";s:10:\"2025-06-15\";s:10:\"date_start\";s:19:\"2025-06-15 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-14 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-15 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-15 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":2:{s:10:\"items_sold\";i:0;s:8:\"segments\";a:0:{}}}i:15;a:6:{s:8:\"interval\";s:10:\"2025-06-16\";s:10:\"date_start\";s:19:\"2025-06-16 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-15 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-16 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-16 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":2:{s:10:\"items_sold\";i:0;s:8:\"segments\";a:0:{}}}i:16;a:6:{s:8:\"interval\";s:10:\"2025-06-17\";s:10:\"date_start\";s:19:\"2025-06-17 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-16 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-17 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-17 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":2:{s:10:\"items_sold\";i:0;s:8:\"segments\";a:0:{}}}}s:5:\"total\";i:17;s:5:\"pages\";i:1;s:7:\"page_no\";i:1;}}','off'), +(31724,'_transient_filter_data-transient-version','1750363871','on'), +(31819,'_transient_timeout_wc_product_children_342','1752971793','off'), +(31820,'_transient_wc_product_children_342','a:3:{s:3:\"all\";a:4:{i:0;i:560;i:1;i:561;i:2;i:562;i:3;i:563;}s:7:\"visible\";a:4:{i:0;i:560;i:1;i:561;i:2;i:562;i:3;i:563;}s:7:\"version\";s:10:\"1750363871\";}','off'), +(31825,'_transient_timeout_wc_var_prices_342','1752934784','off'), +(31826,'_transient_wc_var_prices_342','{\"version\":\"1750342773\",\"f9e544f77b7eac7add281ef28ca5559f\":{\"price\":{\"560\":\"55.00\",\"561\":\"38.00\",\"562\":\"35.00\",\"563\":\"30.00\"},\"regular_price\":{\"560\":\"55.00\",\"561\":\"38.00\",\"562\":\"35.00\",\"563\":\"30.00\"},\"sale_price\":{\"560\":\"55.00\",\"561\":\"38.00\",\"562\":\"35.00\",\"563\":\"30.00\"}}}','off'), +(31912,'_transient_timeout_wc_product_children_490','1752959978','off'), +(31913,'_transient_wc_product_children_490','a:3:{s:3:\"all\";a:3:{i:0;i:494;i:1;i:493;i:2;i:495;}s:7:\"visible\";a:3:{i:0;i:494;i:1;i:493;i:2;i:495;}s:7:\"version\";s:10:\"1750363871\";}','off'), +(31914,'_transient_timeout_wc_var_prices_490','1752934784','off'), +(31915,'_transient_wc_var_prices_490','{\"version\":\"1750342773\",\"f9e544f77b7eac7add281ef28ca5559f\":{\"price\":{\"494\":\"50.00\",\"493\":\"35.00\",\"495\":\"35.00\"},\"regular_price\":{\"494\":\"50.00\",\"493\":\"35.00\",\"495\":\"35.00\"},\"sale_price\":{\"494\":\"50.00\",\"493\":\"35.00\",\"495\":\"35.00\"}}}','off'), +(31944,'_transient_timeout_wc_product_children_554','1752959978','off'), +(31945,'_transient_wc_product_children_554','a:3:{s:3:\"all\";a:2:{i:0;i:555;i:1;i:556;}s:7:\"visible\";a:2:{i:0;i:555;i:1;i:556;}s:7:\"version\";s:10:\"1750363871\";}','off'), +(31946,'_transient_timeout_wc_var_prices_554','1752934784','off'), +(31947,'_transient_wc_var_prices_554','{\"version\":\"1750342773\",\"f9e544f77b7eac7add281ef28ca5559f\":{\"price\":{\"555\":\"65.00\",\"556\":\"40.00\"},\"regular_price\":{\"555\":\"65.00\",\"556\":\"40.00\"},\"sale_price\":{\"555\":\"65.00\",\"556\":\"40.00\"}}}','off'), +(31956,'_transient_timeout_wc_product_children_545','1752959978','off'), +(31957,'_transient_wc_product_children_545','a:3:{s:3:\"all\";a:2:{i:0;i:553;i:1;i:552;}s:7:\"visible\";a:2:{i:0;i:553;i:1;i:552;}s:7:\"version\";s:10:\"1750363871\";}','off'), +(31958,'_transient_timeout_wc_var_prices_545','1752934784','off'), +(31959,'_transient_wc_var_prices_545','{\"version\":\"1750342773\",\"f9e544f77b7eac7add281ef28ca5559f\":{\"price\":{\"553\":\"70.00\",\"552\":\"45.00\"},\"regular_price\":{\"553\":\"70.00\",\"552\":\"45.00\"},\"sale_price\":{\"553\":\"70.00\",\"552\":\"45.00\"}}}','off'), +(32386,'_transient_timeout_wc_product_children_953','1752934784','off'), +(32387,'_transient_wc_product_children_953','a:3:{s:3:\"all\";a:8:{i:0;i:954;i:1;i:955;i:2;i:956;i:3;i:957;i:4;i:958;i:5;i:959;i:6;i:960;i:7;i:961;}s:7:\"visible\";a:8:{i:0;i:954;i:1;i:955;i:2;i:956;i:3;i:957;i:4;i:958;i:5;i:959;i:6;i:960;i:7;i:961;}s:7:\"version\";s:10:\"1750342773\";}','off'), +(32388,'_transient_timeout_wc_var_prices_953','1752934784','off'), +(32389,'_transient_wc_var_prices_953','{\"version\":\"1750342773\",\"f9e544f77b7eac7add281ef28ca5559f\":{\"price\":{\"954\":\"115.00\",\"955\":\"115.00\",\"956\":\"115.00\",\"957\":\"115.00\",\"958\":\"115.00\",\"959\":\"115.00\",\"960\":\"115.00\",\"961\":\"115.00\"},\"regular_price\":{\"954\":\"115.00\",\"955\":\"115.00\",\"956\":\"115.00\",\"957\":\"115.00\",\"958\":\"115.00\",\"959\":\"115.00\",\"960\":\"115.00\",\"961\":\"115.00\"},\"sale_price\":{\"954\":\"115.00\",\"955\":\"115.00\",\"956\":\"115.00\",\"957\":\"115.00\",\"958\":\"115.00\",\"959\":\"115.00\",\"960\":\"115.00\",\"961\":\"115.00\"}}}','off'), +(32434,'_transient_timeout_wc_product_children_288','1752983787','off'), +(32435,'_transient_wc_product_children_288','a:3:{s:3:\"all\";a:3:{i:0;i:646;i:1;i:645;i:2;i:647;}s:7:\"visible\";a:3:{i:0;i:646;i:1;i:645;i:2;i:647;}s:7:\"version\";s:10:\"1750363871\";}','off'), +(32436,'_transient_timeout_wc_var_prices_288','1752934784','off'), +(32437,'_transient_wc_var_prices_288','{\"version\":\"1750342773\",\"f9e544f77b7eac7add281ef28ca5559f\":{\"price\":{\"646\":\"90.00\",\"645\":\"60.00\",\"647\":\"60.00\"},\"regular_price\":{\"646\":\"90.00\",\"645\":\"60.00\",\"647\":\"60.00\"},\"sale_price\":{\"646\":\"90.00\",\"645\":\"60.00\",\"647\":\"60.00\"}}}','off'), +(32448,'_transient_timeout_wc_product_children_285','1752983787','off'), +(32449,'_transient_wc_product_children_285','a:3:{s:3:\"all\";a:3:{i:0;i:642;i:1;i:641;i:2;i:643;}s:7:\"visible\";a:3:{i:0;i:642;i:1;i:641;i:2;i:643;}s:7:\"version\";s:10:\"1750363871\";}','off'), +(32450,'_transient_timeout_wc_var_prices_285','1752934784','off'), +(32451,'_transient_wc_var_prices_285','{\"version\":\"1750342773\",\"f9e544f77b7eac7add281ef28ca5559f\":{\"price\":{\"642\":\"85.00\",\"641\":\"55.00\",\"643\":\"55.00\"},\"regular_price\":{\"642\":\"85.00\",\"641\":\"55.00\",\"643\":\"55.00\"},\"sale_price\":{\"642\":\"85.00\",\"641\":\"55.00\",\"643\":\"55.00\"}}}','off'), +(32468,'_transient_timeout_wc_product_children_213','1752963415','off'), +(32469,'_transient_wc_product_children_213','a:3:{s:3:\"all\";a:3:{i:0;i:570;i:1;i:569;i:2;i:571;}s:7:\"visible\";a:3:{i:0;i:570;i:1;i:569;i:2;i:571;}s:7:\"version\";s:10:\"1750363871\";}','off'), +(32470,'_transient_timeout_wc_var_prices_213','1752934784','off'), +(32471,'_transient_wc_var_prices_213','{\"version\":\"1750342773\",\"f9e544f77b7eac7add281ef28ca5559f\":{\"price\":{\"570\":\"75.00\",\"569\":\"50.00\",\"571\":\"50.00\"},\"regular_price\":{\"570\":\"75.00\",\"569\":\"50.00\",\"571\":\"50.00\"},\"sale_price\":{\"570\":\"75.00\",\"569\":\"50.00\",\"571\":\"50.00\"}}}','off'), +(32487,'_transient_timeout_wc_product_children_183','1752934784','off'), +(32488,'_transient_wc_product_children_183','a:3:{s:3:\"all\";a:3:{i:0;i:566;i:1;i:565;i:2;i:567;}s:7:\"visible\";a:3:{i:0;i:566;i:1;i:565;i:2;i:567;}s:7:\"version\";s:10:\"1750342773\";}','off'), +(32489,'_transient_timeout_wc_var_prices_183','1752934784','off'), +(32490,'_transient_wc_var_prices_183','{\"version\":\"1750342773\",\"f9e544f77b7eac7add281ef28ca5559f\":{\"price\":{\"566\":\"70.00\",\"565\":\"45.00\",\"567\":\"45.00\"},\"regular_price\":{\"566\":\"70.00\",\"565\":\"45.00\",\"567\":\"45.00\"},\"sale_price\":{\"566\":\"70.00\",\"565\":\"45.00\",\"567\":\"45.00\"}}}','off'), +(32506,'_transient_timeout_wc_product_children_123','1752979705','off'), +(32507,'_transient_wc_product_children_123','a:3:{s:3:\"all\";a:8:{i:0;i:124;i:1;i:125;i:2;i:126;i:3;i:127;i:4;i:128;i:5;i:129;i:6;i:130;i:7;i:530;}s:7:\"visible\";a:8:{i:0;i:124;i:1;i:125;i:2;i:126;i:3;i:127;i:4;i:128;i:5;i:129;i:6;i:130;i:7;i:530;}s:7:\"version\";s:10:\"1750363871\";}','off'), +(32508,'_transient_timeout_wc_var_prices_123','1752934784','off'), +(32509,'_transient_wc_var_prices_123','{\"version\":\"1750342773\",\"f9e544f77b7eac7add281ef28ca5559f\":{\"price\":{\"124\":\"100.00\",\"125\":\"100.00\",\"126\":\"100.00\",\"127\":\"100.00\",\"128\":\"100.00\",\"129\":\"100.00\",\"130\":\"100.00\",\"530\":\"100.00\"},\"regular_price\":{\"124\":\"100.00\",\"125\":\"100.00\",\"126\":\"100.00\",\"127\":\"100.00\",\"128\":\"100.00\",\"129\":\"100.00\",\"130\":\"100.00\",\"530\":\"100.00\"},\"sale_price\":{\"124\":\"100.00\",\"125\":\"100.00\",\"126\":\"100.00\",\"127\":\"100.00\",\"128\":\"100.00\",\"129\":\"100.00\",\"130\":\"100.00\",\"530\":\"100.00\"}}}','off'), +(32537,'_transient_timeout_wc_product_children_168','1752979705','off'), +(32538,'_transient_wc_product_children_168','a:3:{s:3:\"all\";a:2:{i:0;i:200;i:1;i:201;}s:7:\"visible\";a:2:{i:0;i:200;i:1;i:201;}s:7:\"version\";s:10:\"1750363871\";}','off'), +(32539,'_transient_timeout_wc_var_prices_168','1752934784','off'), +(32540,'_transient_wc_var_prices_168','{\"version\":\"1750342773\",\"f9e544f77b7eac7add281ef28ca5559f\":{\"price\":{\"200\":\"100.00\",\"201\":\"110.00\"},\"regular_price\":{\"200\":\"100.00\",\"201\":\"110.00\"},\"sale_price\":{\"200\":\"100.00\",\"201\":\"110.00\"}}}','off'), +(32731,'_transient_wc_attribute_taxonomies','a:3:{i:0;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:1:\"2\";s:14:\"attribute_name\";s:4:\"side\";s:15:\"attribute_label\";s:4:\"Side\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:10:\"menu_order\";s:16:\"attribute_public\";s:1:\"0\";}i:1;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:1:\"1\";s:14:\"attribute_name\";s:4:\"size\";s:15:\"attribute_label\";s:4:\"Size\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:10:\"menu_order\";s:16:\"attribute_public\";s:1:\"0\";}i:2;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:1:\"3\";s:14:\"attribute_name\";s:5:\"stone\";s:15:\"attribute_label\";s:5:\"Stone\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"0\";}}','on'), +(32745,'_transient_timeout_wc_report_orders_stats_83f4b111ee4df55f5279ee6c94287e6c','1750947530','off'), +(32746,'_transient_wc_report_orders_stats_83f4b111ee4df55f5279ee6c94287e6c','a:2:{s:7:\"version\";s:10:\"1733494962\";s:5:\"value\";O:8:\"stdClass\":5:{s:6:\"totals\";O:8:\"stdClass\":15:{s:12:\"orders_count\";i:1;s:14:\"num_items_sold\";i:3;s:11:\"gross_sales\";d:130;s:11:\"total_sales\";d:130;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:130;s:19:\"avg_items_per_order\";d:3;s:15:\"avg_order_value\";d:130;s:15:\"total_customers\";i:1;s:8:\"products\";i:3;s:8:\"segments\";a:0:{}}s:9:\"intervals\";a:4:{i:0;a:6:{s:8:\"interval\";s:7:\"2025-25\";s:10:\"date_start\";s:19:\"2025-06-16 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-15 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-19 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-19 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":14:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:0;s:8:\"segments\";a:0:{}}}i:1;a:6:{s:8:\"interval\";s:7:\"2025-24\";s:10:\"date_start\";s:19:\"2025-06-09 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-08 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-15 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-15 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":14:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:0;s:8:\"segments\";a:0:{}}}i:2;a:6:{s:8:\"interval\";s:7:\"2025-23\";s:10:\"date_start\";s:19:\"2025-06-02 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-01 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-08 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-08 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":14:{s:12:\"orders_count\";i:1;s:14:\"num_items_sold\";i:3;s:11:\"gross_sales\";d:130;s:11:\"total_sales\";d:130;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:130;s:19:\"avg_items_per_order\";d:3;s:15:\"avg_order_value\";d:130;s:15:\"total_customers\";i:1;s:8:\"segments\";a:0:{}}}i:3;a:6:{s:8:\"interval\";s:7:\"2025-22\";s:10:\"date_start\";s:19:\"2025-06-01 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-05-31 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-01 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-01 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":14:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:0;s:8:\"segments\";a:0:{}}}}s:5:\"total\";i:4;s:5:\"pages\";i:1;s:7:\"page_no\";i:1;}}','off'), +(32747,'_transient_timeout_wc_report_orders_stats_79d00df3b2e1f5542e612556aedaa2b9','1750947530','off'), +(32748,'_transient_wc_report_orders_stats_79d00df3b2e1f5542e612556aedaa2b9','a:2:{s:7:\"version\";s:10:\"1733494962\";s:5:\"value\";O:8:\"stdClass\":5:{s:6:\"totals\";O:8:\"stdClass\":15:{s:12:\"orders_count\";i:1;s:14:\"num_items_sold\";i:3;s:11:\"gross_sales\";d:130;s:11:\"total_sales\";d:130;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:130;s:19:\"avg_items_per_order\";d:3;s:15:\"avg_order_value\";d:130;s:15:\"total_customers\";i:1;s:8:\"products\";i:3;s:8:\"segments\";a:0:{}}s:9:\"intervals\";a:4:{i:0;a:6:{s:8:\"interval\";s:7:\"2025-25\";s:10:\"date_start\";s:19:\"2025-06-16 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-15 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-19 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-19 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":14:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:0;s:8:\"segments\";a:0:{}}}i:1;a:6:{s:8:\"interval\";s:7:\"2025-24\";s:10:\"date_start\";s:19:\"2025-06-09 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-08 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-15 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-15 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":14:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:0;s:8:\"segments\";a:0:{}}}i:2;a:6:{s:8:\"interval\";s:7:\"2025-23\";s:10:\"date_start\";s:19:\"2025-06-02 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-01 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-08 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-08 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":14:{s:12:\"orders_count\";i:1;s:14:\"num_items_sold\";i:3;s:11:\"gross_sales\";d:130;s:11:\"total_sales\";d:130;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:130;s:19:\"avg_items_per_order\";d:3;s:15:\"avg_order_value\";d:130;s:15:\"total_customers\";i:1;s:8:\"segments\";a:0:{}}}i:3;a:6:{s:8:\"interval\";s:7:\"2025-22\";s:10:\"date_start\";s:19:\"2025-06-01 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-05-31 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-01 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-01 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":14:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:0;s:8:\"segments\";a:0:{}}}}s:5:\"total\";i:4;s:5:\"pages\";i:1;s:7:\"page_no\";i:1;}}','off'), +(32749,'_transient_timeout_wc_report_products_stats_481183ccf1f2f17d26690996e83b9a6d','1750947530','off'), +(32750,'_transient_wc_report_products_stats_481183ccf1f2f17d26690996e83b9a6d','a:2:{s:7:\"version\";s:10:\"1733494962\";s:5:\"value\";O:8:\"stdClass\":5:{s:6:\"totals\";O:8:\"stdClass\":6:{s:10:\"items_sold\";i:3;s:11:\"net_revenue\";d:130;s:12:\"orders_count\";i:1;s:14:\"products_count\";i:3;s:16:\"variations_count\";i:1;s:8:\"segments\";a:0:{}}s:9:\"intervals\";a:4:{i:0;a:6:{s:8:\"interval\";s:7:\"2025-25\";s:10:\"date_start\";s:19:\"2025-06-16 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-15 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-19 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-19 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":6:{s:10:\"items_sold\";i:0;s:11:\"net_revenue\";d:0;s:12:\"orders_count\";i:0;s:14:\"products_count\";i:0;s:16:\"variations_count\";i:0;s:8:\"segments\";a:0:{}}}i:1;a:6:{s:8:\"interval\";s:7:\"2025-24\";s:10:\"date_start\";s:19:\"2025-06-09 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-08 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-15 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-15 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":6:{s:10:\"items_sold\";i:0;s:11:\"net_revenue\";d:0;s:12:\"orders_count\";i:0;s:14:\"products_count\";i:0;s:16:\"variations_count\";i:0;s:8:\"segments\";a:0:{}}}i:2;a:6:{s:8:\"interval\";s:7:\"2025-23\";s:10:\"date_start\";s:19:\"2025-06-02 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-01 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-08 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-08 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":6:{s:10:\"items_sold\";i:3;s:11:\"net_revenue\";d:130;s:12:\"orders_count\";i:1;s:14:\"products_count\";i:3;s:16:\"variations_count\";i:1;s:8:\"segments\";a:0:{}}}i:3;a:6:{s:8:\"interval\";s:7:\"2025-22\";s:10:\"date_start\";s:19:\"2025-06-01 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-05-31 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-01 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-01 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":6:{s:10:\"items_sold\";i:0;s:11:\"net_revenue\";d:0;s:12:\"orders_count\";i:0;s:14:\"products_count\";i:0;s:16:\"variations_count\";i:0;s:8:\"segments\";a:0:{}}}}s:5:\"total\";i:4;s:5:\"pages\";i:1;s:7:\"page_no\";i:1;}}','off'), +(32751,'_transient_timeout_wc_report_variations_stats_c0c0915417128f05ed409fd9709e454b','1750947530','off'), +(32752,'_transient_wc_report_variations_stats_c0c0915417128f05ed409fd9709e454b','a:2:{s:7:\"version\";s:10:\"1733494962\";s:5:\"value\";O:8:\"stdClass\":5:{s:6:\"totals\";O:8:\"stdClass\":5:{s:10:\"items_sold\";i:0;s:11:\"net_revenue\";d:0;s:12:\"orders_count\";i:0;s:16:\"variations_count\";i:0;s:8:\"segments\";a:0:{}}s:9:\"intervals\";a:4:{i:0;a:6:{s:8:\"interval\";s:7:\"2025-25\";s:10:\"date_start\";s:19:\"2025-06-16 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-15 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-19 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-19 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":5:{s:10:\"items_sold\";i:0;s:11:\"net_revenue\";d:0;s:12:\"orders_count\";i:0;s:16:\"variations_count\";i:0;s:8:\"segments\";a:0:{}}}i:1;a:6:{s:8:\"interval\";s:7:\"2025-24\";s:10:\"date_start\";s:19:\"2025-06-09 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-08 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-15 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-15 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":5:{s:10:\"items_sold\";i:0;s:11:\"net_revenue\";d:0;s:12:\"orders_count\";i:0;s:16:\"variations_count\";i:0;s:8:\"segments\";a:0:{}}}i:2;a:6:{s:8:\"interval\";s:7:\"2025-23\";s:10:\"date_start\";s:19:\"2025-06-02 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-01 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-08 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-08 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":5:{s:10:\"items_sold\";i:0;s:11:\"net_revenue\";d:0;s:12:\"orders_count\";i:0;s:16:\"variations_count\";i:0;s:8:\"segments\";a:0:{}}}i:3;a:6:{s:8:\"interval\";s:7:\"2025-22\";s:10:\"date_start\";s:19:\"2025-06-01 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-05-31 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-01 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-01 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":5:{s:10:\"items_sold\";i:0;s:11:\"net_revenue\";d:0;s:12:\"orders_count\";i:0;s:16:\"variations_count\";i:0;s:8:\"segments\";a:0:{}}}}s:5:\"total\";i:4;s:5:\"pages\";i:1;s:7:\"page_no\";i:1;}}','off'), +(32753,'_transient_timeout_wc_report_orders_stats_3f4690951ec3a38c568d32118d1c8bc5','1750947530','off'), +(32754,'_transient_wc_report_orders_stats_3f4690951ec3a38c568d32118d1c8bc5','a:2:{s:7:\"version\";s:10:\"1733494962\";s:5:\"value\";O:8:\"stdClass\":5:{s:6:\"totals\";O:8:\"stdClass\":4:{s:11:\"net_revenue\";d:130;s:8:\"products\";i:3;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}s:9:\"intervals\";a:19:{i:0;a:6:{s:8:\"interval\";s:10:\"2025-06-01\";s:10:\"date_start\";s:19:\"2025-06-01 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-05-31 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-01 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-01 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:1;a:6:{s:8:\"interval\";s:10:\"2025-06-02\";s:10:\"date_start\";s:19:\"2025-06-02 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-01 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-02 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-02 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:2;a:6:{s:8:\"interval\";s:10:\"2025-06-03\";s:10:\"date_start\";s:19:\"2025-06-03 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-02 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-03 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-03 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:3;a:6:{s:8:\"interval\";s:10:\"2025-06-04\";s:10:\"date_start\";s:19:\"2025-06-04 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-03 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-04 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-04 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:4;a:6:{s:8:\"interval\";s:10:\"2025-06-05\";s:10:\"date_start\";s:19:\"2025-06-05 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-04 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-05 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-05 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:130;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:5;a:6:{s:8:\"interval\";s:10:\"2025-06-06\";s:10:\"date_start\";s:19:\"2025-06-06 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-05 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-06 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-06 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:6;a:6:{s:8:\"interval\";s:10:\"2025-06-07\";s:10:\"date_start\";s:19:\"2025-06-07 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-06 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-07 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-07 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:7;a:6:{s:8:\"interval\";s:10:\"2025-06-08\";s:10:\"date_start\";s:19:\"2025-06-08 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-07 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-08 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-08 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:8;a:6:{s:8:\"interval\";s:10:\"2025-06-09\";s:10:\"date_start\";s:19:\"2025-06-09 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-08 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-09 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-09 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:9;a:6:{s:8:\"interval\";s:10:\"2025-06-10\";s:10:\"date_start\";s:19:\"2025-06-10 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-09 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-10 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-10 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:10;a:6:{s:8:\"interval\";s:10:\"2025-06-11\";s:10:\"date_start\";s:19:\"2025-06-11 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-10 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-11 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-11 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:11;a:6:{s:8:\"interval\";s:10:\"2025-06-12\";s:10:\"date_start\";s:19:\"2025-06-12 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-11 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-12 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-12 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:12;a:6:{s:8:\"interval\";s:10:\"2025-06-13\";s:10:\"date_start\";s:19:\"2025-06-13 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-12 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-13 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-13 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:13;a:6:{s:8:\"interval\";s:10:\"2025-06-14\";s:10:\"date_start\";s:19:\"2025-06-14 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-13 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-14 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-14 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:14;a:6:{s:8:\"interval\";s:10:\"2025-06-15\";s:10:\"date_start\";s:19:\"2025-06-15 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-14 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-15 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-15 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:15;a:6:{s:8:\"interval\";s:10:\"2025-06-16\";s:10:\"date_start\";s:19:\"2025-06-16 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-15 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-16 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-16 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:16;a:6:{s:8:\"interval\";s:10:\"2025-06-17\";s:10:\"date_start\";s:19:\"2025-06-17 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-16 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-17 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-17 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:17;a:6:{s:8:\"interval\";s:10:\"2025-06-18\";s:10:\"date_start\";s:19:\"2025-06-18 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-17 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-18 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-18 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:18;a:6:{s:8:\"interval\";s:10:\"2025-06-19\";s:10:\"date_start\";s:19:\"2025-06-19 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-18 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-19 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-19 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}}s:5:\"total\";i:19;s:5:\"pages\";i:1;s:7:\"page_no\";i:1;}}','off'), +(32755,'_transient_timeout_wc_report_products_stats_6e12e57e31f3b13745e2d95d01318d7d','1750947530','off'), +(32756,'_transient_wc_report_products_stats_6e12e57e31f3b13745e2d95d01318d7d','a:2:{s:7:\"version\";s:10:\"1733494962\";s:5:\"value\";O:8:\"stdClass\":5:{s:6:\"totals\";O:8:\"stdClass\":2:{s:10:\"items_sold\";i:1;s:8:\"segments\";a:0:{}}s:9:\"intervals\";a:19:{i:0;a:6:{s:8:\"interval\";s:10:\"2025-06-01\";s:10:\"date_start\";s:19:\"2025-06-01 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-05-31 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-01 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-01 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":2:{s:10:\"items_sold\";i:0;s:8:\"segments\";a:0:{}}}i:1;a:6:{s:8:\"interval\";s:10:\"2025-06-02\";s:10:\"date_start\";s:19:\"2025-06-02 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-01 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-02 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-02 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":2:{s:10:\"items_sold\";i:0;s:8:\"segments\";a:0:{}}}i:2;a:6:{s:8:\"interval\";s:10:\"2025-06-03\";s:10:\"date_start\";s:19:\"2025-06-03 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-02 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-03 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-03 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":2:{s:10:\"items_sold\";i:0;s:8:\"segments\";a:0:{}}}i:3;a:6:{s:8:\"interval\";s:10:\"2025-06-04\";s:10:\"date_start\";s:19:\"2025-06-04 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-03 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-04 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-04 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":2:{s:10:\"items_sold\";i:0;s:8:\"segments\";a:0:{}}}i:4;a:6:{s:8:\"interval\";s:10:\"2025-06-05\";s:10:\"date_start\";s:19:\"2025-06-05 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-04 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-05 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-05 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":2:{s:10:\"items_sold\";i:1;s:8:\"segments\";a:0:{}}}i:5;a:6:{s:8:\"interval\";s:10:\"2025-06-06\";s:10:\"date_start\";s:19:\"2025-06-06 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-05 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-06 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-06 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":2:{s:10:\"items_sold\";i:0;s:8:\"segments\";a:0:{}}}i:6;a:6:{s:8:\"interval\";s:10:\"2025-06-07\";s:10:\"date_start\";s:19:\"2025-06-07 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-06 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-07 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-07 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":2:{s:10:\"items_sold\";i:0;s:8:\"segments\";a:0:{}}}i:7;a:6:{s:8:\"interval\";s:10:\"2025-06-08\";s:10:\"date_start\";s:19:\"2025-06-08 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-07 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-08 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-08 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":2:{s:10:\"items_sold\";i:0;s:8:\"segments\";a:0:{}}}i:8;a:6:{s:8:\"interval\";s:10:\"2025-06-09\";s:10:\"date_start\";s:19:\"2025-06-09 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-08 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-09 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-09 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":2:{s:10:\"items_sold\";i:0;s:8:\"segments\";a:0:{}}}i:9;a:6:{s:8:\"interval\";s:10:\"2025-06-10\";s:10:\"date_start\";s:19:\"2025-06-10 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-09 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-10 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-10 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":2:{s:10:\"items_sold\";i:0;s:8:\"segments\";a:0:{}}}i:10;a:6:{s:8:\"interval\";s:10:\"2025-06-11\";s:10:\"date_start\";s:19:\"2025-06-11 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-10 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-11 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-11 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":2:{s:10:\"items_sold\";i:0;s:8:\"segments\";a:0:{}}}i:11;a:6:{s:8:\"interval\";s:10:\"2025-06-12\";s:10:\"date_start\";s:19:\"2025-06-12 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-11 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-12 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-12 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":2:{s:10:\"items_sold\";i:0;s:8:\"segments\";a:0:{}}}i:12;a:6:{s:8:\"interval\";s:10:\"2025-06-13\";s:10:\"date_start\";s:19:\"2025-06-13 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-12 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-13 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-13 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":2:{s:10:\"items_sold\";i:0;s:8:\"segments\";a:0:{}}}i:13;a:6:{s:8:\"interval\";s:10:\"2025-06-14\";s:10:\"date_start\";s:19:\"2025-06-14 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-13 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-14 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-14 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":2:{s:10:\"items_sold\";i:0;s:8:\"segments\";a:0:{}}}i:14;a:6:{s:8:\"interval\";s:10:\"2025-06-15\";s:10:\"date_start\";s:19:\"2025-06-15 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-14 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-15 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-15 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":2:{s:10:\"items_sold\";i:0;s:8:\"segments\";a:0:{}}}i:15;a:6:{s:8:\"interval\";s:10:\"2025-06-16\";s:10:\"date_start\";s:19:\"2025-06-16 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-15 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-16 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-16 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":2:{s:10:\"items_sold\";i:0;s:8:\"segments\";a:0:{}}}i:16;a:6:{s:8:\"interval\";s:10:\"2025-06-17\";s:10:\"date_start\";s:19:\"2025-06-17 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-16 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-17 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-17 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":2:{s:10:\"items_sold\";i:0;s:8:\"segments\";a:0:{}}}i:17;a:6:{s:8:\"interval\";s:10:\"2025-06-18\";s:10:\"date_start\";s:19:\"2025-06-18 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-17 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-18 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-18 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":2:{s:10:\"items_sold\";i:0;s:8:\"segments\";a:0:{}}}i:18;a:6:{s:8:\"interval\";s:10:\"2025-06-19\";s:10:\"date_start\";s:19:\"2025-06-19 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-18 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-19 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-19 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":2:{s:10:\"items_sold\";i:0;s:8:\"segments\";a:0:{}}}}s:5:\"total\";i:19;s:5:\"pages\";i:1;s:7:\"page_no\";i:1;}}','off'), +(32767,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:1:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:6:\"latest\";s:8:\"download\";s:65:\"https://downloads.wordpress.org/release/en_GB/wordpress-6.8.1.zip\";s:6:\"locale\";s:5:\"en_GB\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:65:\"https://downloads.wordpress.org/release/en_GB/wordpress-6.8.1.zip\";s:10:\"no_content\";s:0:\"\";s:11:\"new_bundled\";s:0:\"\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.8.1\";s:7:\"version\";s:5:\"6.8.1\";s:11:\"php_version\";s:6:\"7.2.24\";s:13:\"mysql_version\";s:5:\"5.5.5\";s:11:\"new_bundled\";s:3:\"6.7\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1750410671;s:15:\"version_checked\";s:5:\"6.8.1\";s:12:\"translations\";a:0:{}}','off'), +(32768,'_site_transient_update_plugins','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1750412472;s:8:\"response\";a:0:{}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:10:{s:37:\"wc-multishipping/wc-multishipping.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:30:\"w.org/plugins/wc-multishipping\";s:4:\"slug\";s:16:\"wc-multishipping\";s:6:\"plugin\";s:37:\"wc-multishipping/wc-multishipping.php\";s:11:\"new_version\";s:5:\"2.5.7\";s:3:\"url\";s:47:\"https://wordpress.org/plugins/wc-multishipping/\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/plugin/wc-multishipping.2.5.7.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:69:\"https://ps.w.org/wc-multishipping/assets/icon-128x128.png?rev=2477036\";}s:7:\"banners\";a:0:{}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.7\";}s:17:\"falcon/falcon.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:20:\"w.org/plugins/falcon\";s:4:\"slug\";s:6:\"falcon\";s:6:\"plugin\";s:17:\"falcon/falcon.php\";s:11:\"new_version\";s:5:\"2.8.5\";s:3:\"url\";s:37:\"https://wordpress.org/plugins/falcon/\";s:7:\"package\";s:55:\"https://downloads.wordpress.org/plugin/falcon.2.8.5.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:51:\"https://ps.w.org/falcon/assets/icon.svg?rev=3052547\";s:3:\"svg\";s:51:\"https://ps.w.org/falcon/assets/icon.svg?rev=3052547\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:62:\"https://ps.w.org/falcon/assets/banner-1544x500.png?rev=3052567\";s:2:\"1x\";s:61:\"https://ps.w.org/falcon/assets/banner-772x250.png?rev=3052567\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.9\";}s:59:\"force-regenerate-thumbnails/force-regenerate-thumbnails.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:41:\"w.org/plugins/force-regenerate-thumbnails\";s:4:\"slug\";s:27:\"force-regenerate-thumbnails\";s:6:\"plugin\";s:59:\"force-regenerate-thumbnails/force-regenerate-thumbnails.php\";s:11:\"new_version\";s:5:\"2.2.2\";s:3:\"url\";s:58:\"https://wordpress.org/plugins/force-regenerate-thumbnails/\";s:7:\"package\";s:76:\"https://downloads.wordpress.org/plugin/force-regenerate-thumbnails.2.2.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:80:\"https://ps.w.org/force-regenerate-thumbnails/assets/icon-256x256.jpg?rev=2816275\";s:2:\"1x\";s:80:\"https://ps.w.org/force-regenerate-thumbnails/assets/icon-128x128.jpg?rev=2816275\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:83:\"https://ps.w.org/force-regenerate-thumbnails/assets/banner-1544x500.jpg?rev=2816275\";s:2:\"1x\";s:82:\"https://ps.w.org/force-regenerate-thumbnails/assets/banner-772x250.jpg?rev=2816275\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.5\";}s:49:\"woo-preview-emails/woocommerce-preview-emails.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:32:\"w.org/plugins/woo-preview-emails\";s:4:\"slug\";s:18:\"woo-preview-emails\";s:6:\"plugin\";s:49:\"woo-preview-emails/woocommerce-preview-emails.php\";s:11:\"new_version\";s:6:\"2.2.14\";s:3:\"url\";s:49:\"https://wordpress.org/plugins/woo-preview-emails/\";s:7:\"package\";s:68:\"https://downloads.wordpress.org/plugin/woo-preview-emails.2.2.14.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:71:\"https://ps.w.org/woo-preview-emails/assets/icon-256x256.png?rev=3019089\";s:2:\"1x\";s:71:\"https://ps.w.org/woo-preview-emails/assets/icon-256x256.png?rev=3019089\";}s:7:\"banners\";a:0:{}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:5:\"6.1.0\";}s:31:\"query-monitor/query-monitor.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:27:\"w.org/plugins/query-monitor\";s:4:\"slug\";s:13:\"query-monitor\";s:6:\"plugin\";s:31:\"query-monitor/query-monitor.php\";s:11:\"new_version\";s:6:\"3.18.0\";s:3:\"url\";s:44:\"https://wordpress.org/plugins/query-monitor/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/query-monitor.3.18.0.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:58:\"https://ps.w.org/query-monitor/assets/icon.svg?rev=2994095\";s:3:\"svg\";s:58:\"https://ps.w.org/query-monitor/assets/icon.svg?rev=2994095\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/query-monitor/assets/banner-1544x500.png?rev=2870124\";s:2:\"1x\";s:68:\"https://ps.w.org/query-monitor/assets/banner-772x250.png?rev=2457098\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.0\";}s:27:\"redis-cache/redis-cache.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:25:\"w.org/plugins/redis-cache\";s:4:\"slug\";s:11:\"redis-cache\";s:6:\"plugin\";s:27:\"redis-cache/redis-cache.php\";s:11:\"new_version\";s:5:\"2.5.4\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/redis-cache/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/redis-cache.2.5.4.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/redis-cache/assets/icon-256x256.gif?rev=2568513\";s:2:\"1x\";s:64:\"https://ps.w.org/redis-cache/assets/icon-128x128.gif?rev=2568513\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/redis-cache/assets/banner-1544x500.png?rev=2315420\";s:2:\"1x\";s:66:\"https://ps.w.org/redis-cache/assets/banner-772x250.png?rev=2315420\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.6\";}s:27:\"woocommerce/woocommerce.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:25:\"w.org/plugins/woocommerce\";s:4:\"slug\";s:11:\"woocommerce\";s:6:\"plugin\";s:27:\"woocommerce/woocommerce.php\";s:11:\"new_version\";s:5:\"9.9.4\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/woocommerce/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.9.9.4.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:56:\"https://ps.w.org/woocommerce/assets/icon.svg?rev=3234504\";s:3:\"svg\";s:56:\"https://ps.w.org/woocommerce/assets/icon.svg?rev=3234504\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/woocommerce/assets/banner-1544x500.png?rev=3234504\";s:2:\"1x\";s:66:\"https://ps.w.org/woocommerce/assets/banner-772x250.png?rev=3234504\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.7\";}s:35:\"wp-mail-logging/wp-mail-logging.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:29:\"w.org/plugins/wp-mail-logging\";s:4:\"slug\";s:15:\"wp-mail-logging\";s:6:\"plugin\";s:35:\"wp-mail-logging/wp-mail-logging.php\";s:11:\"new_version\";s:6:\"1.14.0\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/wp-mail-logging/\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/plugin/wp-mail-logging.1.14.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/wp-mail-logging/assets/icon-256x256.jpg?rev=2562296\";s:2:\"1x\";s:68:\"https://ps.w.org/wp-mail-logging/assets/icon-128x128.jpg?rev=2562296\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:70:\"https://ps.w.org/wp-mail-logging/assets/banner-772x250.jpg?rev=2562296\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";}s:29:\"wp-mail-smtp/wp_mail_smtp.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:26:\"w.org/plugins/wp-mail-smtp\";s:4:\"slug\";s:12:\"wp-mail-smtp\";s:6:\"plugin\";s:29:\"wp-mail-smtp/wp_mail_smtp.php\";s:11:\"new_version\";s:5:\"4.5.0\";s:3:\"url\";s:43:\"https://wordpress.org/plugins/wp-mail-smtp/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/wp-mail-smtp.4.5.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/wp-mail-smtp/assets/icon-256x256.png?rev=1755440\";s:2:\"1x\";s:65:\"https://ps.w.org/wp-mail-smtp/assets/icon-128x128.png?rev=1755440\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/wp-mail-smtp/assets/banner-1544x500.png?rev=3206423\";s:2:\"1x\";s:67:\"https://ps.w.org/wp-mail-smtp/assets/banner-772x250.png?rev=3206423\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.5\";}s:25:\"wp-openapi/wp-openapi.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:24:\"w.org/plugins/wp-openapi\";s:4:\"slug\";s:10:\"wp-openapi\";s:6:\"plugin\";s:25:\"wp-openapi/wp-openapi.php\";s:11:\"new_version\";s:6:\"1.0.20\";s:3:\"url\";s:41:\"https://wordpress.org/plugins/wp-openapi/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/wp-openapi.1.0.20.zip\";s:5:\"icons\";a:1:{s:7:\"default\";s:54:\"https://s.w.org/plugins/geopattern-icon/wp-openapi.svg\";}s:7:\"banners\";a:0:{}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.8\";}}s:7:\"checked\";a:10:{s:37:\"wc-multishipping/wc-multishipping.php\";s:5:\"2.5.7\";s:17:\"falcon/falcon.php\";s:5:\"2.8.5\";s:59:\"force-regenerate-thumbnails/force-regenerate-thumbnails.php\";s:5:\"2.2.2\";s:49:\"woo-preview-emails/woocommerce-preview-emails.php\";s:6:\"2.2.14\";s:31:\"query-monitor/query-monitor.php\";s:6:\"3.18.0\";s:27:\"redis-cache/redis-cache.php\";s:5:\"2.5.4\";s:27:\"woocommerce/woocommerce.php\";s:5:\"9.9.4\";s:35:\"wp-mail-logging/wp-mail-logging.php\";s:6:\"1.14.0\";s:29:\"wp-mail-smtp/wp_mail_smtp.php\";s:5:\"4.5.0\";s:25:\"wp-openapi/wp-openapi.php\";s:6:\"1.0.20\";}}','off'), +(32769,'_site_transient_update_themes','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1750371071;s:7:\"checked\";a:2:{s:18:\"haiku-atelier-2024\";s:3:\"1.0\";s:16:\"twentytwentyfour\";s:3:\"1.3\";}s:8:\"response\";a:0:{}s:9:\"no_update\";a:1:{s:16:\"twentytwentyfour\";a:6:{s:5:\"theme\";s:16:\"twentytwentyfour\";s:11:\"new_version\";s:3:\"1.3\";s:3:\"url\";s:46:\"https://wordpress.org/themes/twentytwentyfour/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/theme/twentytwentyfour.1.3.zip\";s:8:\"requires\";s:3:\"6.4\";s:12:\"requires_php\";s:3:\"7.0\";}}s:12:\"translations\";a:0:{}}','off'), +(32776,'_transient_timeout_wc_product_children_941','1752934778','off'), +(32777,'_transient_wc_product_children_941','a:3:{s:3:\"all\";a:8:{i:0;i:944;i:1;i:945;i:2;i:946;i:3;i:947;i:4;i:948;i:5;i:949;i:6;i:950;i:7;i:951;}s:7:\"visible\";a:8:{i:0;i:944;i:1;i:945;i:2;i:946;i:3;i:947;i:4;i:948;i:5;i:949;i:6;i:950;i:7;i:951;}s:7:\"version\";s:10:\"1750342773\";}','off'), +(32778,'_transient_timeout_wc_var_prices_941','1752934784','off'), +(32779,'_transient_wc_var_prices_941','{\"version\":\"1750342773\",\"f9e544f77b7eac7add281ef28ca5559f\":{\"price\":{\"944\":\"110.00\",\"945\":\"110.00\",\"946\":\"110.00\",\"947\":\"110.00\",\"948\":\"110.00\",\"949\":\"110.00\",\"950\":\"110.00\",\"951\":\"110.00\"},\"regular_price\":{\"944\":\"110.00\",\"945\":\"110.00\",\"946\":\"110.00\",\"947\":\"110.00\",\"948\":\"110.00\",\"949\":\"110.00\",\"950\":\"110.00\",\"951\":\"110.00\"},\"sale_price\":{\"944\":\"110.00\",\"945\":\"110.00\",\"946\":\"110.00\",\"947\":\"110.00\",\"948\":\"110.00\",\"949\":\"110.00\",\"950\":\"110.00\",\"951\":\"110.00\"}}}','off'), +(32787,'_transient_timeout_wc_product_children_521','1752959978','off'), +(32788,'_transient_wc_product_children_521','a:3:{s:3:\"all\";a:2:{i:0;i:926;i:1;i:523;}s:7:\"visible\";a:2:{i:0;i:926;i:1;i:523;}s:7:\"version\";s:10:\"1750363871\";}','off'), +(33135,'_transient_timeout_wc_term_counts','1752957881','off'), +(33136,'_transient_wc_term_counts','a:5:{s:14:\"30_product_cat\";i:22;s:14:\"31_product_cat\";i:8;s:14:\"32_product_cat\";i:5;s:14:\"33_product_cat\";i:5;s:14:\"15_product_cat\";i:1;}','off'), +(34049,'_site_transient_timeout_browser_6730ba9290070c6a10f3150d0424bb3b','1751018934','off'), +(34050,'_site_transient_browser_6730ba9290070c6a10f3150d0424bb3b','a:10:{s:4:\"name\";s:7:\"Firefox\";s:7:\"version\";s:5:\"139.0\";s:8:\"platform\";s:5:\"Linux\";s:10:\"update_url\";s:32:\"https://www.mozilla.org/firefox/\";s:7:\"img_src\";s:44:\"http://s.w.org/images/browsers/firefox.png?1\";s:11:\"img_src_ssl\";s:45:\"https://s.w.org/images/browsers/firefox.png?1\";s:15:\"current_version\";s:2:\"56\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','off'), +(34051,'_site_transient_timeout_php_check_928de2ffe6de60794a9b6aa48df2b0c8','1751018934','off'), +(34052,'_site_transient_php_check_928de2ffe6de60794a9b6aa48df2b0c8','a:5:{s:19:\"recommended_version\";s:3:\"7.4\";s:15:\"minimum_version\";s:6:\"7.2.24\";s:12:\"is_supported\";b:1;s:9:\"is_secure\";b:1;s:13:\"is_acceptable\";b:1;}','off'), +(34059,'_transient_timeout_wc_report_orders_stats_cf7765c494e34de18135f6e4cbf05115','1751018935','off'), +(34060,'_transient_wc_report_orders_stats_cf7765c494e34de18135f6e4cbf05115','a:2:{s:7:\"version\";s:10:\"1733494962\";s:5:\"value\";O:8:\"stdClass\":5:{s:6:\"totals\";O:8:\"stdClass\":15:{s:12:\"orders_count\";i:1;s:14:\"num_items_sold\";i:3;s:11:\"gross_sales\";d:130;s:11:\"total_sales\";d:130;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:130;s:19:\"avg_items_per_order\";d:3;s:15:\"avg_order_value\";d:130;s:15:\"total_customers\";i:1;s:8:\"products\";i:3;s:8:\"segments\";a:0:{}}s:9:\"intervals\";a:4:{i:0;a:6:{s:8:\"interval\";s:7:\"2025-25\";s:10:\"date_start\";s:19:\"2025-06-16 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-15 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-20 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-20 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":14:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:0;s:8:\"segments\";a:0:{}}}i:1;a:6:{s:8:\"interval\";s:7:\"2025-24\";s:10:\"date_start\";s:19:\"2025-06-09 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-08 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-15 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-15 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":14:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:0;s:8:\"segments\";a:0:{}}}i:2;a:6:{s:8:\"interval\";s:7:\"2025-23\";s:10:\"date_start\";s:19:\"2025-06-02 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-01 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-08 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-08 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":14:{s:12:\"orders_count\";i:1;s:14:\"num_items_sold\";i:3;s:11:\"gross_sales\";d:130;s:11:\"total_sales\";d:130;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:130;s:19:\"avg_items_per_order\";d:3;s:15:\"avg_order_value\";d:130;s:15:\"total_customers\";i:1;s:8:\"segments\";a:0:{}}}i:3;a:6:{s:8:\"interval\";s:7:\"2025-22\";s:10:\"date_start\";s:19:\"2025-06-01 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-05-31 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-01 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-01 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":14:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:0;s:8:\"segments\";a:0:{}}}}s:5:\"total\";i:4;s:5:\"pages\";i:1;s:7:\"page_no\";i:1;}}','off'), +(34061,'_transient_timeout_wc_report_orders_stats_50f6925f1c955c89b8a3edcc95509250','1751018935','off'), +(34062,'_transient_wc_report_orders_stats_50f6925f1c955c89b8a3edcc95509250','a:2:{s:7:\"version\";s:10:\"1733494962\";s:5:\"value\";O:8:\"stdClass\":5:{s:6:\"totals\";O:8:\"stdClass\":15:{s:12:\"orders_count\";i:1;s:14:\"num_items_sold\";i:3;s:11:\"gross_sales\";d:130;s:11:\"total_sales\";d:130;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:130;s:19:\"avg_items_per_order\";d:3;s:15:\"avg_order_value\";d:130;s:15:\"total_customers\";i:1;s:8:\"products\";i:3;s:8:\"segments\";a:0:{}}s:9:\"intervals\";a:4:{i:0;a:6:{s:8:\"interval\";s:7:\"2025-25\";s:10:\"date_start\";s:19:\"2025-06-16 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-15 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-20 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-20 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":14:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:0;s:8:\"segments\";a:0:{}}}i:1;a:6:{s:8:\"interval\";s:7:\"2025-24\";s:10:\"date_start\";s:19:\"2025-06-09 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-08 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-15 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-15 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":14:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:0;s:8:\"segments\";a:0:{}}}i:2;a:6:{s:8:\"interval\";s:7:\"2025-23\";s:10:\"date_start\";s:19:\"2025-06-02 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-01 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-08 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-08 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":14:{s:12:\"orders_count\";i:1;s:14:\"num_items_sold\";i:3;s:11:\"gross_sales\";d:130;s:11:\"total_sales\";d:130;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:130;s:19:\"avg_items_per_order\";d:3;s:15:\"avg_order_value\";d:130;s:15:\"total_customers\";i:1;s:8:\"segments\";a:0:{}}}i:3;a:6:{s:8:\"interval\";s:7:\"2025-22\";s:10:\"date_start\";s:19:\"2025-06-01 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-05-31 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-01 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-01 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":14:{s:12:\"orders_count\";i:0;s:14:\"num_items_sold\";i:0;s:11:\"gross_sales\";d:0;s:11:\"total_sales\";d:0;s:7:\"coupons\";d:0;s:13:\"coupons_count\";i:0;s:7:\"refunds\";d:0;s:5:\"taxes\";d:0;s:8:\"shipping\";d:0;s:11:\"net_revenue\";d:0;s:19:\"avg_items_per_order\";d:0;s:15:\"avg_order_value\";d:0;s:15:\"total_customers\";i:0;s:8:\"segments\";a:0:{}}}}s:5:\"total\";i:4;s:5:\"pages\";i:1;s:7:\"page_no\";i:1;}}','off'), +(34063,'_transient_timeout_wc_report_products_stats_6026c4dd24ebfc1eff41ea21e575b418','1751018935','off'), +(34064,'_transient_wc_report_products_stats_6026c4dd24ebfc1eff41ea21e575b418','a:2:{s:7:\"version\";s:10:\"1733494962\";s:5:\"value\";O:8:\"stdClass\":5:{s:6:\"totals\";O:8:\"stdClass\":6:{s:10:\"items_sold\";i:3;s:11:\"net_revenue\";d:130;s:12:\"orders_count\";i:1;s:14:\"products_count\";i:3;s:16:\"variations_count\";i:1;s:8:\"segments\";a:0:{}}s:9:\"intervals\";a:4:{i:0;a:6:{s:8:\"interval\";s:7:\"2025-25\";s:10:\"date_start\";s:19:\"2025-06-16 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-15 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-20 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-20 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":6:{s:10:\"items_sold\";i:0;s:11:\"net_revenue\";d:0;s:12:\"orders_count\";i:0;s:14:\"products_count\";i:0;s:16:\"variations_count\";i:0;s:8:\"segments\";a:0:{}}}i:1;a:6:{s:8:\"interval\";s:7:\"2025-24\";s:10:\"date_start\";s:19:\"2025-06-09 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-08 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-15 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-15 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":6:{s:10:\"items_sold\";i:0;s:11:\"net_revenue\";d:0;s:12:\"orders_count\";i:0;s:14:\"products_count\";i:0;s:16:\"variations_count\";i:0;s:8:\"segments\";a:0:{}}}i:2;a:6:{s:8:\"interval\";s:7:\"2025-23\";s:10:\"date_start\";s:19:\"2025-06-02 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-01 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-08 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-08 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":6:{s:10:\"items_sold\";i:3;s:11:\"net_revenue\";d:130;s:12:\"orders_count\";i:1;s:14:\"products_count\";i:3;s:16:\"variations_count\";i:1;s:8:\"segments\";a:0:{}}}i:3;a:6:{s:8:\"interval\";s:7:\"2025-22\";s:10:\"date_start\";s:19:\"2025-06-01 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-05-31 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-01 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-01 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":6:{s:10:\"items_sold\";i:0;s:11:\"net_revenue\";d:0;s:12:\"orders_count\";i:0;s:14:\"products_count\";i:0;s:16:\"variations_count\";i:0;s:8:\"segments\";a:0:{}}}}s:5:\"total\";i:4;s:5:\"pages\";i:1;s:7:\"page_no\";i:1;}}','off'), +(34065,'_transient_timeout_wc_report_variations_stats_19f6143541798f5f8ac7045d1bbca67b','1751018935','off'), +(34066,'_transient_wc_report_variations_stats_19f6143541798f5f8ac7045d1bbca67b','a:2:{s:7:\"version\";s:10:\"1733494962\";s:5:\"value\";O:8:\"stdClass\":5:{s:6:\"totals\";O:8:\"stdClass\":5:{s:10:\"items_sold\";i:0;s:11:\"net_revenue\";d:0;s:12:\"orders_count\";i:0;s:16:\"variations_count\";i:0;s:8:\"segments\";a:0:{}}s:9:\"intervals\";a:4:{i:0;a:6:{s:8:\"interval\";s:7:\"2025-25\";s:10:\"date_start\";s:19:\"2025-06-16 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-15 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-20 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-20 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":5:{s:10:\"items_sold\";i:0;s:11:\"net_revenue\";d:0;s:12:\"orders_count\";i:0;s:16:\"variations_count\";i:0;s:8:\"segments\";a:0:{}}}i:1;a:6:{s:8:\"interval\";s:7:\"2025-24\";s:10:\"date_start\";s:19:\"2025-06-09 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-08 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-15 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-15 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":5:{s:10:\"items_sold\";i:0;s:11:\"net_revenue\";d:0;s:12:\"orders_count\";i:0;s:16:\"variations_count\";i:0;s:8:\"segments\";a:0:{}}}i:2;a:6:{s:8:\"interval\";s:7:\"2025-23\";s:10:\"date_start\";s:19:\"2025-06-02 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-01 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-08 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-08 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":5:{s:10:\"items_sold\";i:0;s:11:\"net_revenue\";d:0;s:12:\"orders_count\";i:0;s:16:\"variations_count\";i:0;s:8:\"segments\";a:0:{}}}i:3;a:6:{s:8:\"interval\";s:7:\"2025-22\";s:10:\"date_start\";s:19:\"2025-06-01 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-05-31 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-01 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-01 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":5:{s:10:\"items_sold\";i:0;s:11:\"net_revenue\";d:0;s:12:\"orders_count\";i:0;s:16:\"variations_count\";i:0;s:8:\"segments\";a:0:{}}}}s:5:\"total\";i:4;s:5:\"pages\";i:1;s:7:\"page_no\";i:1;}}','off'), +(34067,'_transient_timeout_wc_report_orders_stats_c69bc0c26bdfb816b49ef03f20548062','1751018935','off'), +(34068,'_transient_wc_report_orders_stats_c69bc0c26bdfb816b49ef03f20548062','a:2:{s:7:\"version\";s:10:\"1733494962\";s:5:\"value\";O:8:\"stdClass\":5:{s:6:\"totals\";O:8:\"stdClass\":4:{s:11:\"net_revenue\";d:130;s:8:\"products\";i:3;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}s:9:\"intervals\";a:20:{i:0;a:6:{s:8:\"interval\";s:10:\"2025-06-01\";s:10:\"date_start\";s:19:\"2025-06-01 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-05-31 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-01 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-01 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:1;a:6:{s:8:\"interval\";s:10:\"2025-06-02\";s:10:\"date_start\";s:19:\"2025-06-02 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-01 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-02 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-02 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:2;a:6:{s:8:\"interval\";s:10:\"2025-06-03\";s:10:\"date_start\";s:19:\"2025-06-03 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-02 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-03 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-03 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:3;a:6:{s:8:\"interval\";s:10:\"2025-06-04\";s:10:\"date_start\";s:19:\"2025-06-04 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-03 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-04 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-04 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:4;a:6:{s:8:\"interval\";s:10:\"2025-06-05\";s:10:\"date_start\";s:19:\"2025-06-05 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-04 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-05 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-05 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:130;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:5;a:6:{s:8:\"interval\";s:10:\"2025-06-06\";s:10:\"date_start\";s:19:\"2025-06-06 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-05 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-06 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-06 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:6;a:6:{s:8:\"interval\";s:10:\"2025-06-07\";s:10:\"date_start\";s:19:\"2025-06-07 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-06 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-07 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-07 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:7;a:6:{s:8:\"interval\";s:10:\"2025-06-08\";s:10:\"date_start\";s:19:\"2025-06-08 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-07 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-08 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-08 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:8;a:6:{s:8:\"interval\";s:10:\"2025-06-09\";s:10:\"date_start\";s:19:\"2025-06-09 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-08 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-09 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-09 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:9;a:6:{s:8:\"interval\";s:10:\"2025-06-10\";s:10:\"date_start\";s:19:\"2025-06-10 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-09 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-10 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-10 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:10;a:6:{s:8:\"interval\";s:10:\"2025-06-11\";s:10:\"date_start\";s:19:\"2025-06-11 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-10 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-11 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-11 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:11;a:6:{s:8:\"interval\";s:10:\"2025-06-12\";s:10:\"date_start\";s:19:\"2025-06-12 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-11 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-12 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-12 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:12;a:6:{s:8:\"interval\";s:10:\"2025-06-13\";s:10:\"date_start\";s:19:\"2025-06-13 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-12 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-13 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-13 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:13;a:6:{s:8:\"interval\";s:10:\"2025-06-14\";s:10:\"date_start\";s:19:\"2025-06-14 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-13 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-14 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-14 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:14;a:6:{s:8:\"interval\";s:10:\"2025-06-15\";s:10:\"date_start\";s:19:\"2025-06-15 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-14 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-15 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-15 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:15;a:6:{s:8:\"interval\";s:10:\"2025-06-16\";s:10:\"date_start\";s:19:\"2025-06-16 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-15 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-16 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-16 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:16;a:6:{s:8:\"interval\";s:10:\"2025-06-17\";s:10:\"date_start\";s:19:\"2025-06-17 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-16 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-17 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-17 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:17;a:6:{s:8:\"interval\";s:10:\"2025-06-18\";s:10:\"date_start\";s:19:\"2025-06-18 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-17 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-18 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-18 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:18;a:6:{s:8:\"interval\";s:10:\"2025-06-19\";s:10:\"date_start\";s:19:\"2025-06-19 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-18 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-19 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-19 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}i:19;a:6:{s:8:\"interval\";s:10:\"2025-06-20\";s:10:\"date_start\";s:19:\"2025-06-20 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-19 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-20 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-20 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:11:\"net_revenue\";d:0;s:13:\"coupons_count\";i:0;s:8:\"segments\";a:0:{}}}}s:5:\"total\";i:20;s:5:\"pages\";i:1;s:7:\"page_no\";i:1;}}','off'), +(34069,'_transient_timeout_wc_report_products_stats_c4c7ff7ea597c86261b3b8641d847cb1','1751018935','off'), +(34070,'_transient_wc_report_products_stats_c4c7ff7ea597c86261b3b8641d847cb1','a:2:{s:7:\"version\";s:10:\"1733494962\";s:5:\"value\";O:8:\"stdClass\":5:{s:6:\"totals\";O:8:\"stdClass\":2:{s:10:\"items_sold\";i:1;s:8:\"segments\";a:0:{}}s:9:\"intervals\";a:20:{i:0;a:6:{s:8:\"interval\";s:10:\"2025-06-01\";s:10:\"date_start\";s:19:\"2025-06-01 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-05-31 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-01 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-01 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":2:{s:10:\"items_sold\";i:0;s:8:\"segments\";a:0:{}}}i:1;a:6:{s:8:\"interval\";s:10:\"2025-06-02\";s:10:\"date_start\";s:19:\"2025-06-02 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-01 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-02 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-02 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":2:{s:10:\"items_sold\";i:0;s:8:\"segments\";a:0:{}}}i:2;a:6:{s:8:\"interval\";s:10:\"2025-06-03\";s:10:\"date_start\";s:19:\"2025-06-03 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-02 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-03 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-03 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":2:{s:10:\"items_sold\";i:0;s:8:\"segments\";a:0:{}}}i:3;a:6:{s:8:\"interval\";s:10:\"2025-06-04\";s:10:\"date_start\";s:19:\"2025-06-04 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-03 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-04 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-04 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":2:{s:10:\"items_sold\";i:0;s:8:\"segments\";a:0:{}}}i:4;a:6:{s:8:\"interval\";s:10:\"2025-06-05\";s:10:\"date_start\";s:19:\"2025-06-05 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-04 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-05 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-05 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":2:{s:10:\"items_sold\";i:1;s:8:\"segments\";a:0:{}}}i:5;a:6:{s:8:\"interval\";s:10:\"2025-06-06\";s:10:\"date_start\";s:19:\"2025-06-06 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-05 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-06 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-06 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":2:{s:10:\"items_sold\";i:0;s:8:\"segments\";a:0:{}}}i:6;a:6:{s:8:\"interval\";s:10:\"2025-06-07\";s:10:\"date_start\";s:19:\"2025-06-07 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-06 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-07 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-07 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":2:{s:10:\"items_sold\";i:0;s:8:\"segments\";a:0:{}}}i:7;a:6:{s:8:\"interval\";s:10:\"2025-06-08\";s:10:\"date_start\";s:19:\"2025-06-08 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-07 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-08 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-08 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":2:{s:10:\"items_sold\";i:0;s:8:\"segments\";a:0:{}}}i:8;a:6:{s:8:\"interval\";s:10:\"2025-06-09\";s:10:\"date_start\";s:19:\"2025-06-09 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-08 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-09 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-09 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":2:{s:10:\"items_sold\";i:0;s:8:\"segments\";a:0:{}}}i:9;a:6:{s:8:\"interval\";s:10:\"2025-06-10\";s:10:\"date_start\";s:19:\"2025-06-10 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-09 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-10 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-10 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":2:{s:10:\"items_sold\";i:0;s:8:\"segments\";a:0:{}}}i:10;a:6:{s:8:\"interval\";s:10:\"2025-06-11\";s:10:\"date_start\";s:19:\"2025-06-11 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-10 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-11 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-11 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":2:{s:10:\"items_sold\";i:0;s:8:\"segments\";a:0:{}}}i:11;a:6:{s:8:\"interval\";s:10:\"2025-06-12\";s:10:\"date_start\";s:19:\"2025-06-12 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-11 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-12 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-12 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":2:{s:10:\"items_sold\";i:0;s:8:\"segments\";a:0:{}}}i:12;a:6:{s:8:\"interval\";s:10:\"2025-06-13\";s:10:\"date_start\";s:19:\"2025-06-13 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-12 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-13 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-13 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":2:{s:10:\"items_sold\";i:0;s:8:\"segments\";a:0:{}}}i:13;a:6:{s:8:\"interval\";s:10:\"2025-06-14\";s:10:\"date_start\";s:19:\"2025-06-14 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-13 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-14 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-14 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":2:{s:10:\"items_sold\";i:0;s:8:\"segments\";a:0:{}}}i:14;a:6:{s:8:\"interval\";s:10:\"2025-06-15\";s:10:\"date_start\";s:19:\"2025-06-15 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-14 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-15 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-15 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":2:{s:10:\"items_sold\";i:0;s:8:\"segments\";a:0:{}}}i:15;a:6:{s:8:\"interval\";s:10:\"2025-06-16\";s:10:\"date_start\";s:19:\"2025-06-16 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-15 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-16 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-16 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":2:{s:10:\"items_sold\";i:0;s:8:\"segments\";a:0:{}}}i:16;a:6:{s:8:\"interval\";s:10:\"2025-06-17\";s:10:\"date_start\";s:19:\"2025-06-17 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-16 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-17 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-17 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":2:{s:10:\"items_sold\";i:0;s:8:\"segments\";a:0:{}}}i:17;a:6:{s:8:\"interval\";s:10:\"2025-06-18\";s:10:\"date_start\";s:19:\"2025-06-18 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-17 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-18 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-18 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":2:{s:10:\"items_sold\";i:0;s:8:\"segments\";a:0:{}}}i:18;a:6:{s:8:\"interval\";s:10:\"2025-06-19\";s:10:\"date_start\";s:19:\"2025-06-19 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-18 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-19 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-19 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":2:{s:10:\"items_sold\";i:0;s:8:\"segments\";a:0:{}}}i:19;a:6:{s:8:\"interval\";s:10:\"2025-06-20\";s:10:\"date_start\";s:19:\"2025-06-20 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2025-06-19 22:00:00\";s:8:\"date_end\";s:19:\"2025-06-20 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2025-06-20 21:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":2:{s:10:\"items_sold\";i:0;s:8:\"segments\";a:0:{}}}}s:5:\"total\";i:20;s:5:\"pages\";i:1;s:7:\"page_no\";i:1;}}','off'), +(34071,'_transient_timeout_wc_low_stock_count','1753006135','off'), +(34072,'_transient_wc_low_stock_count','0','off'), +(34073,'_transient_timeout_wc_outofstock_count','1753006135','off'), +(34074,'_transient_wc_outofstock_count','0','off'), +(34081,'woocommerce_attribute_lookup_enabled','yes','auto'); +/*!40000 ALTER TABLE `haikuwp_options` ENABLE KEYS */; +UNLOCK TABLES; +commit; + +-- +-- Table structure for table `haikuwp_postmeta` +-- + +DROP TABLE IF EXISTS `haikuwp_postmeta`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8mb4 */; +CREATE TABLE `haikuwp_postmeta` ( + `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, + `post_id` bigint(20) unsigned NOT NULL DEFAULT 0, + `meta_key` varchar(255) DEFAULT NULL, + `meta_value` longtext DEFAULT NULL, + PRIMARY KEY (`meta_id`), + KEY `post_id` (`post_id`), + KEY `meta_key` (`meta_key`(191)) +) ENGINE=InnoDB AUTO_INCREMENT=13100 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `haikuwp_postmeta` +-- + +LOCK TABLES `haikuwp_postmeta` WRITE; +/*!40000 ALTER TABLE `haikuwp_postmeta` DISABLE KEYS */; +set autocommit=0; +INSERT INTO `haikuwp_postmeta` VALUES +(22,13,'_edit_last','1'), +(23,13,'_edit_lock','1746463848:1'), +(24,14,'_edit_last','1'), +(25,14,'_edit_lock','1722975574:1'), +(28,16,'_edit_last','1'), +(29,16,'_edit_lock','1722958355:1'), +(30,17,'_edit_last','1'), +(31,17,'_edit_lock','1731277749:1'), +(32,18,'_wp_page_template','default'), +(33,18,'_edit_last','1'), +(34,18,'_edit_lock','1722864017:1'), +(35,19,'_edit_last','1'), +(36,19,'_edit_lock','1732548394:1'), +(71,22,'_variation_description',''), +(72,22,'total_sales','0'), +(73,22,'_tax_status','taxable'), +(74,22,'_tax_class','parent'), +(75,22,'_manage_stock','no'), +(76,22,'_backorders','no'), +(77,22,'_sold_individually','no'), +(78,22,'_virtual','no'), +(79,22,'_downloadable','no'), +(80,22,'_download_limit','-1'), +(81,22,'_download_expiry','-1'), +(82,22,'_stock',NULL), +(83,22,'_stock_status','instock'), +(84,22,'_wc_average_rating','0'), +(85,22,'_wc_review_count','0'), +(86,22,'attribute_matiere','Or'), +(87,22,'_product_version','9.1.4'), +(88,23,'_variation_description',''), +(89,23,'total_sales','0'), +(90,23,'_tax_status','taxable'), +(91,23,'_tax_class','parent'), +(92,23,'_manage_stock','no'), +(93,23,'_backorders','no'), +(94,23,'_sold_individually','no'), +(95,23,'_virtual','no'), +(96,23,'_downloadable','no'), +(97,23,'_download_limit','-1'), +(98,23,'_download_expiry','-1'), +(99,23,'_stock',NULL), +(100,23,'_stock_status','instock'), +(101,23,'_wc_average_rating','0'), +(102,23,'_wc_review_count','0'), +(103,23,'attribute_matiere','Argent'), +(104,23,'_product_version','9.1.4'), +(147,26,'_edit_last','1'), +(148,26,'_edit_lock','1722975540:1'), +(149,27,'_edit_last','1'), +(150,27,'_edit_lock','1722975561:1'), +(732,72,'_sku','HADOU-B'), +(733,72,'total_sales','0'), +(734,72,'_tax_status','taxable'), +(735,72,'_tax_class',''), +(736,72,'_manage_stock','no'), +(737,72,'_backorders','no'), +(738,72,'_sold_individually','no'), +(739,72,'_virtual','no'), +(740,72,'_downloadable','no'), +(741,72,'_download_limit','-1'), +(742,72,'_download_expiry','-1'), +(743,72,'_thumbnail_id','81'), +(744,72,'_stock',NULL), +(745,72,'_stock_status','instock'), +(746,72,'_wc_average_rating','0'), +(747,72,'_wc_review_count','0'), +(748,72,'_product_attributes','a:1:{s:7:\"pa_size\";a:6:{s:4:\"name\";s:7:\"pa_size\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'), +(749,72,'_product_version','9.4.2'), +(753,73,'_variation_description',''), +(754,73,'_regular_price','85'), +(755,73,'total_sales','0'), +(756,73,'_tax_status','taxable'), +(757,73,'_tax_class','parent'), +(758,73,'_manage_stock','no'), +(759,73,'_backorders','no'), +(760,73,'_sold_individually','no'), +(761,73,'_virtual','no'), +(762,73,'_downloadable','no'), +(763,73,'_download_limit','-1'), +(764,73,'_download_expiry','-1'), +(765,73,'_thumbnail_id','0'), +(766,73,'_stock',NULL), +(767,73,'_stock_status','instock'), +(768,73,'_wc_average_rating','0'), +(769,73,'_wc_review_count','0'), +(770,73,'attribute_pa_size','50'), +(771,73,'_price','85'), +(772,73,'_product_version','9.3.2'), +(773,74,'_variation_description',''), +(774,74,'_regular_price','85'), +(775,74,'total_sales','0'), +(776,74,'_tax_status','taxable'), +(777,74,'_tax_class','parent'), +(778,74,'_manage_stock','no'), +(779,74,'_backorders','no'), +(780,74,'_sold_individually','no'), +(781,74,'_virtual','no'), +(782,74,'_downloadable','no'), +(783,74,'_download_limit','-1'), +(784,74,'_download_expiry','-1'), +(785,74,'_thumbnail_id','0'), +(786,74,'_stock',NULL), +(787,74,'_stock_status','instock'), +(788,74,'_wc_average_rating','0'), +(789,74,'_wc_review_count','0'), +(790,74,'attribute_pa_size','52'), +(791,74,'_price','85'), +(792,74,'_product_version','9.3.2'), +(793,75,'_variation_description',''), +(794,75,'_regular_price','85'), +(795,75,'total_sales','0'), +(796,75,'_tax_status','taxable'), +(797,75,'_tax_class','parent'), +(798,75,'_manage_stock','no'), +(799,75,'_backorders','no'), +(800,75,'_sold_individually','no'), +(801,75,'_virtual','no'), +(802,75,'_downloadable','no'), +(803,75,'_download_limit','-1'), +(804,75,'_download_expiry','-1'), +(805,75,'_thumbnail_id','0'), +(806,75,'_stock',NULL), +(807,75,'_stock_status','instock'), +(808,75,'_wc_average_rating','0'), +(809,75,'_wc_review_count','0'), +(810,75,'attribute_pa_size','54'), +(811,75,'_price','85'), +(812,75,'_product_version','9.3.2'), +(813,76,'_variation_description',''), +(814,76,'_regular_price','85'), +(815,76,'total_sales','0'), +(816,76,'_tax_status','taxable'), +(817,76,'_tax_class','parent'), +(818,76,'_manage_stock','no'), +(819,76,'_backorders','no'), +(820,76,'_sold_individually','no'), +(821,76,'_virtual','no'), +(822,76,'_downloadable','no'), +(823,76,'_download_limit','-1'), +(824,76,'_download_expiry','-1'), +(825,76,'_thumbnail_id','0'), +(826,76,'_stock',NULL), +(827,76,'_stock_status','instock'), +(828,76,'_wc_average_rating','0'), +(829,76,'_wc_review_count','0'), +(830,76,'attribute_pa_size','56'), +(831,76,'_price','85'), +(832,76,'_product_version','9.3.2'), +(833,77,'_variation_description',''), +(834,77,'_regular_price','85'), +(835,77,'total_sales','0'), +(836,77,'_tax_status','taxable'), +(837,77,'_tax_class','parent'), +(838,77,'_manage_stock','no'), +(839,77,'_backorders','no'), +(840,77,'_sold_individually','no'), +(841,77,'_virtual','no'), +(842,77,'_downloadable','no'), +(843,77,'_download_limit','-1'), +(844,77,'_download_expiry','-1'), +(845,77,'_thumbnail_id','0'), +(846,77,'_stock',NULL), +(847,77,'_stock_status','instock'), +(848,77,'_wc_average_rating','0'), +(849,77,'_wc_review_count','0'), +(850,77,'attribute_pa_size','58'), +(851,77,'_price','85'), +(852,77,'_product_version','9.3.2'), +(853,78,'_variation_description',''), +(854,78,'_regular_price','85'), +(855,78,'total_sales','0'), +(856,78,'_tax_status','taxable'), +(857,78,'_tax_class','parent'), +(858,78,'_manage_stock','no'), +(859,78,'_backorders','no'), +(860,78,'_sold_individually','no'), +(861,78,'_virtual','no'), +(862,78,'_downloadable','no'), +(863,78,'_download_limit','-1'), +(864,78,'_download_expiry','-1'), +(865,78,'_thumbnail_id','0'), +(866,78,'_stock',NULL), +(867,78,'_stock_status','instock'), +(868,78,'_wc_average_rating','0'), +(869,78,'_wc_review_count','0'), +(870,78,'attribute_pa_size','60'), +(871,78,'_price','85'), +(872,78,'_product_version','9.3.2'), +(873,79,'_variation_description',''), +(874,79,'_regular_price','85'), +(875,79,'total_sales','0'), +(876,79,'_tax_status','taxable'), +(877,79,'_tax_class','parent'), +(878,79,'_manage_stock','no'), +(879,79,'_backorders','no'), +(880,79,'_sold_individually','no'), +(881,79,'_virtual','no'), +(882,79,'_downloadable','no'), +(883,79,'_download_limit','-1'), +(884,79,'_download_expiry','-1'), +(885,79,'_thumbnail_id','0'), +(886,79,'_stock',NULL), +(887,79,'_stock_status','instock'), +(888,79,'_wc_average_rating','0'), +(889,79,'_wc_review_count','0'), +(890,79,'attribute_pa_size','62'), +(891,79,'_price','85'), +(892,79,'_product_version','9.3.2'), +(894,72,'_edit_lock','1732521768:1'), +(915,81,'_wp_attached_file','2024/09/HADOU-B.jpg'), +(916,81,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:19:\"2024/09/HADOU-B.jpg\";s:8:\"filesize\";i:40136;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"HADOU-B-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4705;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:19:\"HADOU-B-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4705;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:11:\"HADOU-B.jpg\";}'), +(917,81,'_wp_attachment_image_alt','Hadou wavy ring in silver and gold plated silver'), +(927,72,'_edit_last','1'), +(954,72,'_price','85'), +(1183,100,'_wp_attached_file','2024/09/HADOU-B-mix.jpg'), +(1184,100,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:23:\"2024/09/HADOU-B-mix.jpg\";s:8:\"filesize\";i:316713;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"HADOU-B-mix-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19362;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:15:\"HADOU-B-mix.jpg\";}'), +(1185,100,'_wp_attachment_image_alt','Hadou wavy silver ring and Kishou signet ring'), +(1194,102,'_sku','HADOU-B-s'), +(1195,102,'total_sales','0'), +(1196,102,'_tax_status','taxable'), +(1197,102,'_tax_class',''), +(1198,102,'_manage_stock','no'), +(1199,102,'_backorders','no'), +(1200,102,'_sold_individually','no'), +(1201,102,'_virtual','no'), +(1202,102,'_downloadable','no'), +(1203,102,'_download_limit','-1'), +(1204,102,'_download_expiry','-1'), +(1205,102,'_thumbnail_id','110'), +(1206,102,'_stock',NULL), +(1207,102,'_stock_status','instock'), +(1208,102,'_wc_average_rating','0'), +(1209,102,'_wc_review_count','0'), +(1210,102,'_product_attributes','a:1:{s:7:\"pa_size\";a:6:{s:4:\"name\";s:7:\"pa_size\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'), +(1211,102,'_product_version','9.4.2'), +(1216,103,'_variation_description',''), +(1217,103,'_regular_price','85'), +(1218,103,'total_sales','0'), +(1219,103,'_tax_status','taxable'), +(1220,103,'_tax_class','parent'), +(1221,103,'_manage_stock','no'), +(1222,103,'_backorders','no'), +(1223,103,'_sold_individually','no'), +(1224,103,'_virtual','no'), +(1225,103,'_downloadable','no'), +(1226,103,'_download_limit','-1'), +(1227,103,'_download_expiry','-1'), +(1228,103,'_thumbnail_id','0'), +(1229,103,'_stock',NULL), +(1230,103,'_stock_status','instock'), +(1231,103,'_wc_average_rating','0'), +(1232,103,'_wc_review_count','0'), +(1233,103,'attribute_pa_size','50'), +(1234,103,'_price','85'), +(1235,103,'_product_version','9.3.3'), +(1236,104,'_variation_description',''), +(1237,104,'_regular_price','85'), +(1238,104,'total_sales','0'), +(1239,104,'_tax_status','taxable'), +(1240,104,'_tax_class','parent'), +(1241,104,'_manage_stock','no'), +(1242,104,'_backorders','no'), +(1243,104,'_sold_individually','no'), +(1244,104,'_virtual','no'), +(1245,104,'_downloadable','no'), +(1246,104,'_download_limit','-1'), +(1247,104,'_download_expiry','-1'), +(1248,104,'_thumbnail_id','0'), +(1249,104,'_stock',NULL), +(1250,104,'_stock_status','instock'), +(1251,104,'_wc_average_rating','0'), +(1252,104,'_wc_review_count','0'), +(1253,104,'attribute_pa_size','52'), +(1254,104,'_price','85'), +(1255,104,'_product_version','9.3.3'), +(1256,105,'_variation_description',''), +(1257,105,'_regular_price','85'), +(1258,105,'total_sales','0'), +(1259,105,'_tax_status','taxable'), +(1260,105,'_tax_class','parent'), +(1261,105,'_manage_stock','no'), +(1262,105,'_backorders','no'), +(1263,105,'_sold_individually','no'), +(1264,105,'_virtual','no'), +(1265,105,'_downloadable','no'), +(1266,105,'_download_limit','-1'), +(1267,105,'_download_expiry','-1'), +(1268,105,'_thumbnail_id','0'), +(1269,105,'_stock',NULL), +(1270,105,'_stock_status','instock'), +(1271,105,'_wc_average_rating','0'), +(1272,105,'_wc_review_count','0'), +(1273,105,'attribute_pa_size','54'), +(1274,105,'_price','85'), +(1275,105,'_product_version','9.3.3'), +(1276,106,'_variation_description',''), +(1277,106,'_regular_price','85'), +(1278,106,'total_sales','0'), +(1279,106,'_tax_status','taxable'), +(1280,106,'_tax_class','parent'), +(1281,106,'_manage_stock','no'), +(1282,106,'_backorders','no'), +(1283,106,'_sold_individually','no'), +(1284,106,'_virtual','no'), +(1285,106,'_downloadable','no'), +(1286,106,'_download_limit','-1'), +(1287,106,'_download_expiry','-1'), +(1288,106,'_thumbnail_id','0'), +(1289,106,'_stock',NULL), +(1290,106,'_stock_status','instock'), +(1291,106,'_wc_average_rating','0'), +(1292,106,'_wc_review_count','0'), +(1293,106,'attribute_pa_size','56'), +(1294,106,'_price','85'), +(1295,106,'_product_version','9.3.3'), +(1296,107,'_variation_description',''), +(1297,107,'_regular_price','85'), +(1298,107,'total_sales','0'), +(1299,107,'_tax_status','taxable'), +(1300,107,'_tax_class','parent'), +(1301,107,'_manage_stock','no'), +(1302,107,'_backorders','no'), +(1303,107,'_sold_individually','no'), +(1304,107,'_virtual','no'), +(1305,107,'_downloadable','no'), +(1306,107,'_download_limit','-1'), +(1307,107,'_download_expiry','-1'), +(1308,107,'_thumbnail_id','0'), +(1309,107,'_stock',NULL), +(1310,107,'_stock_status','instock'), +(1311,107,'_wc_average_rating','0'), +(1312,107,'_wc_review_count','0'), +(1313,107,'attribute_pa_size','58'), +(1314,107,'_price','85'), +(1315,107,'_product_version','9.3.3'), +(1316,108,'_variation_description',''), +(1317,108,'_regular_price','85'), +(1318,108,'total_sales','0'), +(1319,108,'_tax_status','taxable'), +(1320,108,'_tax_class','parent'), +(1321,108,'_manage_stock','no'), +(1322,108,'_backorders','no'), +(1323,108,'_sold_individually','no'), +(1324,108,'_virtual','no'), +(1325,108,'_downloadable','no'), +(1326,108,'_download_limit','-1'), +(1327,108,'_download_expiry','-1'), +(1328,108,'_thumbnail_id','0'), +(1329,108,'_stock',NULL), +(1330,108,'_stock_status','instock'), +(1331,108,'_wc_average_rating','0'), +(1332,108,'_wc_review_count','0'), +(1333,108,'attribute_pa_size','60'), +(1334,108,'_price','85'), +(1335,108,'_product_version','9.3.3'), +(1336,109,'_variation_description',''), +(1337,109,'_regular_price','85'), +(1338,109,'total_sales','0'), +(1339,109,'_tax_status','taxable'), +(1340,109,'_tax_class','parent'), +(1341,109,'_manage_stock','no'), +(1342,109,'_backorders','no'), +(1343,109,'_sold_individually','no'), +(1344,109,'_virtual','no'), +(1345,109,'_downloadable','no'), +(1346,109,'_download_limit','-1'), +(1347,109,'_download_expiry','-1'), +(1348,109,'_thumbnail_id','0'), +(1349,109,'_stock',NULL), +(1350,109,'_stock_status','instock'), +(1351,109,'_wc_average_rating','0'), +(1352,109,'_wc_review_count','0'), +(1353,109,'attribute_pa_size','62'), +(1354,109,'_price','85'), +(1355,109,'_product_version','9.3.3'), +(1357,102,'_edit_lock','1750279209:1'), +(1358,110,'_wp_attached_file','2024/09/IKKAN-B2-arg.jpg'), +(1359,110,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:24:\"2024/09/IKKAN-B2-arg.jpg\";s:8:\"filesize\";i:39627;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"IKKAN-B2-arg-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4442;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:24:\"IKKAN-B2-arg-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4442;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:16:\"IKKAN-B2-arg.jpg\";}'), +(1360,110,'_wp_attachment_image_alt','Ikkan silver ring with oversized link on top'), +(1361,111,'_wp_attached_file','2024/09/IKKAN-B-arg.jpg'), +(1362,111,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:23:\"2024/09/IKKAN-B-arg.jpg\";s:8:\"filesize\";i:90791;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"IKKAN-B-arg-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8034;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:15:\"IKKAN-B-arg.jpg\";}'), +(1363,111,'_wp_attachment_image_alt','Ikkan'), +(1364,112,'_wp_attached_file','2024/09/IKKAN-BaKIGEN-Ba.jpg'), +(1365,112,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:28:\"2024/09/IKKAN-BaKIGEN-Ba.jpg\";s:8:\"filesize\";i:237493;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"IKKAN-BaKIGEN-Ba-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13979;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:20:\"IKKAN-BaKIGEN-Ba.jpg\";}'), +(1366,112,'_wp_attachment_image_alt','Ikkan silver ring with oversized link on top'), +(1369,102,'_edit_last','1'), +(1382,113,'_sku','HADOU-B-g'), +(1383,113,'total_sales','0'), +(1384,113,'_tax_status','taxable'), +(1385,113,'_tax_class',''), +(1386,113,'_manage_stock','no'), +(1387,113,'_backorders','no'), +(1388,113,'_sold_individually','no'), +(1389,113,'_virtual','no'), +(1390,113,'_downloadable','no'), +(1391,113,'_download_limit','-1'), +(1392,113,'_download_expiry','-1'), +(1394,113,'_stock',NULL), +(1395,113,'_stock_status','instock'), +(1396,113,'_wc_average_rating','0'), +(1397,113,'_wc_review_count','0'), +(1398,113,'_product_attributes','a:1:{s:7:\"pa_size\";a:6:{s:4:\"name\";s:7:\"pa_size\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'), +(1399,113,'_product_version','9.4.2'), +(1404,114,'_variation_description',''), +(1405,114,'_regular_price','90'), +(1406,114,'total_sales','0'), +(1407,114,'_tax_status','taxable'), +(1408,114,'_tax_class','parent'), +(1409,114,'_manage_stock','no'), +(1410,114,'_backorders','no'), +(1411,114,'_sold_individually','no'), +(1412,114,'_virtual','no'), +(1413,114,'_downloadable','no'), +(1414,114,'_download_limit','-1'), +(1415,114,'_download_expiry','-1'), +(1416,114,'_thumbnail_id','0'), +(1417,114,'_stock',NULL), +(1418,114,'_stock_status','instock'), +(1419,114,'_wc_average_rating','0'), +(1420,114,'_wc_review_count','0'), +(1421,114,'attribute_pa_size','50'), +(1422,114,'_price','90'), +(1423,114,'_product_version','9.3.3'), +(1424,115,'_variation_description',''), +(1425,115,'_regular_price','90'), +(1426,115,'total_sales','0'), +(1427,115,'_tax_status','taxable'), +(1428,115,'_tax_class','parent'), +(1429,115,'_manage_stock','no'), +(1430,115,'_backorders','no'), +(1431,115,'_sold_individually','no'), +(1432,115,'_virtual','no'), +(1433,115,'_downloadable','no'), +(1434,115,'_download_limit','-1'), +(1435,115,'_download_expiry','-1'), +(1436,115,'_thumbnail_id','0'), +(1437,115,'_stock',NULL), +(1438,115,'_stock_status','instock'), +(1439,115,'_wc_average_rating','0'), +(1440,115,'_wc_review_count','0'), +(1441,115,'attribute_pa_size','52'), +(1442,115,'_price','90'), +(1443,115,'_product_version','9.3.3'), +(1444,116,'_variation_description',''), +(1445,116,'_regular_price','90'), +(1446,116,'total_sales','0'), +(1447,116,'_tax_status','taxable'), +(1448,116,'_tax_class','parent'), +(1449,116,'_manage_stock','no'), +(1450,116,'_backorders','no'), +(1451,116,'_sold_individually','no'), +(1452,116,'_virtual','no'), +(1453,116,'_downloadable','no'), +(1454,116,'_download_limit','-1'), +(1455,116,'_download_expiry','-1'), +(1456,116,'_thumbnail_id','0'), +(1457,116,'_stock',NULL), +(1458,116,'_stock_status','instock'), +(1459,116,'_wc_average_rating','0'), +(1460,116,'_wc_review_count','0'), +(1461,116,'attribute_pa_size','54'), +(1462,116,'_price','90'), +(1463,116,'_product_version','9.3.3'), +(1464,117,'_variation_description',''), +(1465,117,'_regular_price','90'), +(1466,117,'total_sales','0'), +(1467,117,'_tax_status','taxable'), +(1468,117,'_tax_class','parent'), +(1469,117,'_manage_stock','no'), +(1470,117,'_backorders','no'), +(1471,117,'_sold_individually','no'), +(1472,117,'_virtual','no'), +(1473,117,'_downloadable','no'), +(1474,117,'_download_limit','-1'), +(1475,117,'_download_expiry','-1'), +(1476,117,'_thumbnail_id','0'), +(1477,117,'_stock',NULL), +(1478,117,'_stock_status','instock'), +(1479,117,'_wc_average_rating','0'), +(1480,117,'_wc_review_count','0'), +(1481,117,'attribute_pa_size','56'), +(1482,117,'_price','90'), +(1483,117,'_product_version','9.3.3'), +(1484,118,'_variation_description',''), +(1485,118,'_regular_price','90'), +(1486,118,'total_sales','0'), +(1487,118,'_tax_status','taxable'), +(1488,118,'_tax_class','parent'), +(1489,118,'_manage_stock','no'), +(1490,118,'_backorders','no'), +(1491,118,'_sold_individually','no'), +(1492,118,'_virtual','no'), +(1493,118,'_downloadable','no'), +(1494,118,'_download_limit','-1'), +(1495,118,'_download_expiry','-1'), +(1496,118,'_thumbnail_id','0'), +(1497,118,'_stock',NULL), +(1498,118,'_stock_status','instock'), +(1499,118,'_wc_average_rating','0'), +(1500,118,'_wc_review_count','0'), +(1501,118,'attribute_pa_size','58'), +(1502,118,'_price','90'), +(1503,118,'_product_version','9.3.3'), +(1504,119,'_variation_description',''), +(1505,119,'_regular_price','90'), +(1506,119,'total_sales','0'), +(1507,119,'_tax_status','taxable'), +(1508,119,'_tax_class','parent'), +(1509,119,'_manage_stock','no'), +(1510,119,'_backorders','no'), +(1511,119,'_sold_individually','no'), +(1512,119,'_virtual','no'), +(1513,119,'_downloadable','no'), +(1514,119,'_download_limit','-1'), +(1515,119,'_download_expiry','-1'), +(1516,119,'_thumbnail_id','0'), +(1517,119,'_stock',NULL), +(1518,119,'_stock_status','instock'), +(1519,119,'_wc_average_rating','0'), +(1520,119,'_wc_review_count','0'), +(1521,119,'attribute_pa_size','60'), +(1522,119,'_price','90'), +(1523,119,'_product_version','9.3.3'), +(1524,120,'_variation_description',''), +(1525,120,'_regular_price','90'), +(1526,120,'total_sales','0'), +(1527,120,'_tax_status','taxable'), +(1528,120,'_tax_class','parent'), +(1529,120,'_manage_stock','no'), +(1530,120,'_backorders','no'), +(1531,120,'_sold_individually','no'), +(1532,120,'_virtual','no'), +(1533,120,'_downloadable','no'), +(1534,120,'_download_limit','-1'), +(1535,120,'_download_expiry','-1'), +(1536,120,'_thumbnail_id','0'), +(1537,120,'_stock',NULL), +(1538,120,'_stock_status','instock'), +(1539,120,'_wc_average_rating','0'), +(1540,120,'_wc_review_count','0'), +(1541,120,'attribute_pa_size','62'), +(1542,120,'_price','90'), +(1543,120,'_product_version','9.3.3'), +(1545,113,'_edit_lock','1732521826:1'), +(1549,122,'_wp_attached_file','2024/09/IKKAN-B-g.jpg'), +(1550,122,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:21:\"2024/09/IKKAN-B-g.jpg\";s:8:\"filesize\";i:575848;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"IKKAN-B-g-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15605;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), +(1551,122,'_wp_attachment_image_alt','Ikkan gold plated silver ring with oversized link on top'), +(1554,113,'_edit_last','1'), +(1558,123,'_sku','PIASU-B'), +(1559,123,'total_sales','0'), +(1560,123,'_tax_status','taxable'), +(1561,123,'_tax_class',''), +(1562,123,'_manage_stock','no'), +(1563,123,'_backorders','no'), +(1564,123,'_sold_individually','no'), +(1565,123,'_virtual','no'), +(1566,123,'_downloadable','no'), +(1567,123,'_download_limit','-1'), +(1568,123,'_download_expiry','-1'), +(1570,123,'_stock',NULL), +(1571,123,'_stock_status','instock'), +(1572,123,'_wc_average_rating','0'), +(1573,123,'_wc_review_count','0'), +(1574,123,'_product_attributes','a:1:{s:7:\"pa_size\";a:6:{s:4:\"name\";s:7:\"pa_size\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'), +(1575,123,'_product_version','9.9.3'), +(1579,124,'_variation_description',''), +(1580,124,'_regular_price','100'), +(1581,124,'total_sales','0'), +(1582,124,'_tax_status','taxable'), +(1583,124,'_tax_class','parent'), +(1584,124,'_manage_stock','no'), +(1585,124,'_backorders','no'), +(1586,124,'_sold_individually','no'), +(1587,124,'_virtual','no'), +(1588,124,'_downloadable','no'), +(1589,124,'_download_limit','-1'), +(1590,124,'_download_expiry','-1'), +(1591,124,'_thumbnail_id','0'), +(1592,124,'_stock',NULL), +(1593,124,'_stock_status','instock'), +(1594,124,'_wc_average_rating','0'), +(1595,124,'_wc_review_count','0'), +(1596,124,'attribute_pa_size','50'), +(1597,124,'_price','100'), +(1598,124,'_product_version','9.9.3'), +(1599,125,'_variation_description',''), +(1600,125,'_regular_price','100'), +(1601,125,'total_sales','0'), +(1602,125,'_tax_status','taxable'), +(1603,125,'_tax_class','parent'), +(1604,125,'_manage_stock','no'), +(1605,125,'_backorders','no'), +(1606,125,'_sold_individually','no'), +(1607,125,'_virtual','no'), +(1608,125,'_downloadable','no'), +(1609,125,'_download_limit','-1'), +(1610,125,'_download_expiry','-1'), +(1611,125,'_thumbnail_id','0'), +(1612,125,'_stock',NULL), +(1613,125,'_stock_status','instock'), +(1614,125,'_wc_average_rating','0'), +(1615,125,'_wc_review_count','0'), +(1616,125,'attribute_pa_size','52'), +(1617,125,'_price','100'), +(1618,125,'_product_version','9.9.3'), +(1619,126,'_variation_description',''), +(1620,126,'_regular_price','100'), +(1621,126,'total_sales','0'), +(1622,126,'_tax_status','taxable'), +(1623,126,'_tax_class','parent'), +(1624,126,'_manage_stock','no'), +(1625,126,'_backorders','no'), +(1626,126,'_sold_individually','no'), +(1627,126,'_virtual','no'), +(1628,126,'_downloadable','no'), +(1629,126,'_download_limit','-1'), +(1630,126,'_download_expiry','-1'), +(1631,126,'_thumbnail_id','0'), +(1632,126,'_stock',NULL), +(1633,126,'_stock_status','instock'), +(1634,126,'_wc_average_rating','0'), +(1635,126,'_wc_review_count','0'), +(1636,126,'attribute_pa_size','54'), +(1637,126,'_price','100'), +(1638,126,'_product_version','9.9.3'), +(1639,127,'_variation_description',''), +(1640,127,'_regular_price','100'), +(1641,127,'total_sales','0'), +(1642,127,'_tax_status','taxable'), +(1643,127,'_tax_class','parent'), +(1644,127,'_manage_stock','no'), +(1645,127,'_backorders','no'), +(1646,127,'_sold_individually','no'), +(1647,127,'_virtual','no'), +(1648,127,'_downloadable','no'), +(1649,127,'_download_limit','-1'), +(1650,127,'_download_expiry','-1'), +(1651,127,'_thumbnail_id','0'), +(1652,127,'_stock',NULL), +(1653,127,'_stock_status','instock'), +(1654,127,'_wc_average_rating','0'), +(1655,127,'_wc_review_count','0'), +(1656,127,'attribute_pa_size','56'), +(1657,127,'_price','100'), +(1658,127,'_product_version','9.9.3'), +(1659,128,'_variation_description',''), +(1660,128,'_regular_price','100'), +(1661,128,'total_sales','0'), +(1662,128,'_tax_status','taxable'), +(1663,128,'_tax_class','parent'), +(1664,128,'_manage_stock','no'), +(1665,128,'_backorders','no'), +(1666,128,'_sold_individually','no'), +(1667,128,'_virtual','no'), +(1668,128,'_downloadable','no'), +(1669,128,'_download_limit','-1'), +(1670,128,'_download_expiry','-1'), +(1671,128,'_thumbnail_id','0'), +(1672,128,'_stock',NULL), +(1673,128,'_stock_status','instock'), +(1674,128,'_wc_average_rating','0'), +(1675,128,'_wc_review_count','0'), +(1676,128,'attribute_pa_size','58'), +(1677,128,'_price','100'), +(1678,128,'_product_version','9.9.3'), +(1679,129,'_variation_description',''), +(1680,129,'_regular_price','100'), +(1681,129,'total_sales','0'), +(1682,129,'_tax_status','taxable'), +(1683,129,'_tax_class','parent'), +(1684,129,'_manage_stock','no'), +(1685,129,'_backorders','no'), +(1686,129,'_sold_individually','no'), +(1687,129,'_virtual','no'), +(1688,129,'_downloadable','no'), +(1689,129,'_download_limit','-1'), +(1690,129,'_download_expiry','-1'), +(1691,129,'_thumbnail_id','0'), +(1692,129,'_stock',NULL), +(1693,129,'_stock_status','instock'), +(1694,129,'_wc_average_rating','0'), +(1695,129,'_wc_review_count','0'), +(1696,129,'attribute_pa_size','60'), +(1697,129,'_price','100'), +(1698,129,'_product_version','9.9.3'), +(1699,130,'_variation_description',''), +(1700,130,'_regular_price','100'), +(1701,130,'total_sales','0'), +(1702,130,'_tax_status','taxable'), +(1703,130,'_tax_class','parent'), +(1704,130,'_manage_stock','no'), +(1705,130,'_backorders','no'), +(1706,130,'_sold_individually','no'), +(1707,130,'_virtual','no'), +(1708,130,'_downloadable','no'), +(1709,130,'_download_limit','-1'), +(1710,130,'_download_expiry','-1'), +(1711,130,'_thumbnail_id','0'), +(1712,130,'_stock',NULL), +(1713,130,'_stock_status','instock'), +(1714,130,'_wc_average_rating','0'), +(1715,130,'_wc_review_count','0'), +(1716,130,'attribute_pa_size','62'), +(1717,130,'_price','100'), +(1718,130,'_product_version','9.9.3'), +(1720,123,'_edit_lock','1750279357:1'), +(1724,132,'_wp_attached_file','2024/09/DSC9928.jpg'), +(1725,132,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:19:\"2024/09/DSC9928.jpg\";s:8:\"filesize\";i:329984;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"DSC9928-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13925;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:11:\"DSC9928.jpg\";}'), +(1726,132,'_wp_attachment_image_alt','Piasu wide ring in sterling silver with three small rings on top, one in 18k gold'), +(1729,123,'_edit_last','1'), +(1736,133,'_sku','KARA-B'), +(1737,133,'total_sales','0'), +(1738,133,'_tax_status','taxable'), +(1739,133,'_tax_class',''), +(1740,133,'_manage_stock','no'), +(1741,133,'_backorders','no'), +(1742,133,'_sold_individually','no'), +(1743,133,'_virtual','no'), +(1744,133,'_downloadable','no'), +(1745,133,'_download_limit','-1'), +(1746,133,'_download_expiry','-1'), +(1748,133,'_stock',NULL), +(1749,133,'_stock_status','instock'), +(1750,133,'_wc_average_rating','0'), +(1751,133,'_wc_review_count','0'), +(1752,133,'_product_attributes','a:1:{s:7:\"pa_size\";a:6:{s:4:\"name\";s:7:\"pa_size\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'), +(1753,133,'_product_version','9.8.4'), +(1757,134,'_variation_description',''), +(1758,134,'_regular_price','95'), +(1759,134,'total_sales','0'), +(1760,134,'_tax_status','taxable'), +(1761,134,'_tax_class','parent'), +(1762,134,'_manage_stock','no'), +(1763,134,'_backorders','no'), +(1764,134,'_sold_individually','no'), +(1765,134,'_virtual','no'), +(1766,134,'_downloadable','no'), +(1767,134,'_download_limit','-1'), +(1768,134,'_download_expiry','-1'), +(1769,134,'_thumbnail_id','0'), +(1770,134,'_stock',NULL), +(1771,134,'_stock_status','instock'), +(1772,134,'_wc_average_rating','0'), +(1773,134,'_wc_review_count','0'), +(1774,134,'attribute_pa_size','50'), +(1775,134,'_price','95'), +(1776,134,'_product_version','9.8.4'), +(1777,135,'_variation_description',''), +(1778,135,'_regular_price','95'), +(1779,135,'total_sales','0'), +(1780,135,'_tax_status','taxable'), +(1781,135,'_tax_class','parent'), +(1782,135,'_manage_stock','no'), +(1783,135,'_backorders','no'), +(1784,135,'_sold_individually','no'), +(1785,135,'_virtual','no'), +(1786,135,'_downloadable','no'), +(1787,135,'_download_limit','-1'), +(1788,135,'_download_expiry','-1'), +(1789,135,'_thumbnail_id','0'), +(1790,135,'_stock',NULL), +(1791,135,'_stock_status','instock'), +(1792,135,'_wc_average_rating','0'), +(1793,135,'_wc_review_count','0'), +(1794,135,'attribute_pa_size','52'), +(1795,135,'_price','95'), +(1796,135,'_product_version','9.8.4'), +(1797,136,'_variation_description',''), +(1798,136,'_regular_price','95'), +(1799,136,'total_sales','0'), +(1800,136,'_tax_status','taxable'), +(1801,136,'_tax_class','parent'), +(1802,136,'_manage_stock','no'), +(1803,136,'_backorders','no'), +(1804,136,'_sold_individually','no'), +(1805,136,'_virtual','no'), +(1806,136,'_downloadable','no'), +(1807,136,'_download_limit','-1'), +(1808,136,'_download_expiry','-1'), +(1809,136,'_thumbnail_id','0'), +(1810,136,'_stock',NULL), +(1811,136,'_stock_status','instock'), +(1812,136,'_wc_average_rating','0'), +(1813,136,'_wc_review_count','0'), +(1814,136,'attribute_pa_size','54'), +(1815,136,'_price','95'), +(1816,136,'_product_version','9.8.4'), +(1817,137,'_variation_description',''), +(1818,137,'_regular_price','95'), +(1819,137,'total_sales','0'), +(1820,137,'_tax_status','taxable'), +(1821,137,'_tax_class','parent'), +(1822,137,'_manage_stock','no'), +(1823,137,'_backorders','no'), +(1824,137,'_sold_individually','no'), +(1825,137,'_virtual','no'), +(1826,137,'_downloadable','no'), +(1827,137,'_download_limit','-1'), +(1828,137,'_download_expiry','-1'), +(1829,137,'_thumbnail_id','0'), +(1830,137,'_stock',NULL), +(1831,137,'_stock_status','instock'), +(1832,137,'_wc_average_rating','0'), +(1833,137,'_wc_review_count','0'), +(1834,137,'attribute_pa_size','56'), +(1835,137,'_price','95'), +(1836,137,'_product_version','9.8.4'), +(1837,138,'_variation_description',''), +(1838,138,'_regular_price','95'), +(1839,138,'total_sales','0'), +(1840,138,'_tax_status','taxable'), +(1841,138,'_tax_class','parent'), +(1842,138,'_manage_stock','no'), +(1843,138,'_backorders','no'), +(1844,138,'_sold_individually','no'), +(1845,138,'_virtual','no'), +(1846,138,'_downloadable','no'), +(1847,138,'_download_limit','-1'), +(1848,138,'_download_expiry','-1'), +(1849,138,'_thumbnail_id','0'), +(1850,138,'_stock',NULL), +(1851,138,'_stock_status','instock'), +(1852,138,'_wc_average_rating','0'), +(1853,138,'_wc_review_count','0'), +(1854,138,'attribute_pa_size','58'), +(1855,138,'_price','95'), +(1856,138,'_product_version','9.8.4'), +(1857,139,'_variation_description',''), +(1858,139,'_regular_price','95'), +(1859,139,'total_sales','0'), +(1860,139,'_tax_status','taxable'), +(1861,139,'_tax_class','parent'), +(1862,139,'_manage_stock','no'), +(1863,139,'_backorders','no'), +(1864,139,'_sold_individually','no'), +(1865,139,'_virtual','no'), +(1866,139,'_downloadable','no'), +(1867,139,'_download_limit','-1'), +(1868,139,'_download_expiry','-1'), +(1869,139,'_thumbnail_id','0'), +(1870,139,'_stock',NULL), +(1871,139,'_stock_status','instock'), +(1872,139,'_wc_average_rating','0'), +(1873,139,'_wc_review_count','0'), +(1874,139,'attribute_pa_size','60'), +(1875,139,'_price','95'), +(1876,139,'_product_version','9.8.4'), +(1877,140,'_variation_description',''), +(1878,140,'_regular_price','95'), +(1879,140,'total_sales','0'), +(1880,140,'_tax_status','taxable'), +(1881,140,'_tax_class','parent'), +(1882,140,'_manage_stock','no'), +(1883,140,'_backorders','no'), +(1884,140,'_sold_individually','no'), +(1885,140,'_virtual','no'), +(1886,140,'_downloadable','no'), +(1887,140,'_download_limit','-1'), +(1888,140,'_download_expiry','-1'), +(1889,140,'_thumbnail_id','0'), +(1890,140,'_stock',NULL), +(1891,140,'_stock_status','instock'), +(1892,140,'_wc_average_rating','0'), +(1893,140,'_wc_review_count','0'), +(1894,140,'attribute_pa_size','62'), +(1895,140,'_price','95'), +(1896,140,'_product_version','9.8.4'), +(1898,133,'_edit_lock','1746805101:1'), +(1902,142,'_wp_attached_file','2024/09/DSC9269.jpg'), +(1903,142,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:19:\"2024/09/DSC9269.jpg\";s:8:\"filesize\";i:230822;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"DSC9269-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13771;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:11:\"DSC9269.jpg\";}'), +(1904,142,'_wp_attachment_image_alt','Kara ring composed of two sterling silver bands linked by a 18k gold thin curb chain'), +(1905,143,'_wp_attached_file','2024/09/DSC9148.jpg'), +(1906,143,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:19:\"2024/09/DSC9148.jpg\";s:8:\"filesize\";i:216029;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"DSC9148-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13743;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:11:\"DSC9148.jpg\";}'), +(1907,143,'_wp_attachment_image_alt','Kara ring composed of two sterling silver bands linked by a 18k gold thin curb chain'), +(1910,133,'_edit_last','1'), +(1918,144,'_sku','Kishou-B-s'), +(1919,144,'total_sales','0'), +(1920,144,'_tax_status','taxable'), +(1921,144,'_tax_class',''), +(1922,144,'_manage_stock','no'), +(1923,144,'_backorders','no'), +(1924,144,'_sold_individually','no'), +(1925,144,'_virtual','no'), +(1926,144,'_downloadable','no'), +(1927,144,'_download_limit','-1'), +(1928,144,'_download_expiry','-1'), +(1930,144,'_stock',NULL), +(1931,144,'_stock_status','instock'), +(1932,144,'_wc_average_rating','0'), +(1933,144,'_wc_review_count','0'), +(1934,144,'_product_attributes','a:1:{s:7:\"pa_size\";a:6:{s:4:\"name\";s:7:\"pa_size\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'), +(1935,144,'_product_version','9.4.2'), +(1940,145,'_variation_description',''), +(1941,145,'_regular_price','75'), +(1942,145,'total_sales','0'), +(1943,145,'_tax_status','taxable'), +(1944,145,'_tax_class','parent'), +(1945,145,'_manage_stock','no'), +(1946,145,'_backorders','no'), +(1947,145,'_sold_individually','no'), +(1948,145,'_virtual','no'), +(1949,145,'_downloadable','no'), +(1950,145,'_download_limit','-1'), +(1951,145,'_download_expiry','-1'), +(1952,145,'_thumbnail_id','0'), +(1953,145,'_stock',NULL), +(1954,145,'_stock_status','instock'), +(1955,145,'_wc_average_rating','0'), +(1956,145,'_wc_review_count','0'), +(1957,145,'attribute_pa_size','50'), +(1958,145,'_price','75'), +(1959,145,'_product_version','9.3.3'), +(1960,146,'_variation_description',''), +(1961,146,'_regular_price','75'), +(1962,146,'total_sales','0'), +(1963,146,'_tax_status','taxable'), +(1964,146,'_tax_class','parent'), +(1965,146,'_manage_stock','no'), +(1966,146,'_backorders','no'), +(1967,146,'_sold_individually','no'), +(1968,146,'_virtual','no'), +(1969,146,'_downloadable','no'), +(1970,146,'_download_limit','-1'), +(1971,146,'_download_expiry','-1'), +(1972,146,'_thumbnail_id','0'), +(1973,146,'_stock',NULL), +(1974,146,'_stock_status','instock'), +(1975,146,'_wc_average_rating','0'), +(1976,146,'_wc_review_count','0'), +(1977,146,'attribute_pa_size','52'), +(1978,146,'_price','75'), +(1979,146,'_product_version','9.3.3'), +(1980,147,'_variation_description',''), +(1981,147,'_regular_price','75'), +(1982,147,'total_sales','0'), +(1983,147,'_tax_status','taxable'), +(1984,147,'_tax_class','parent'), +(1985,147,'_manage_stock','no'), +(1986,147,'_backorders','no'), +(1987,147,'_sold_individually','no'), +(1988,147,'_virtual','no'), +(1989,147,'_downloadable','no'), +(1990,147,'_download_limit','-1'), +(1991,147,'_download_expiry','-1'), +(1992,147,'_thumbnail_id','0'), +(1993,147,'_stock',NULL), +(1994,147,'_stock_status','instock'), +(1995,147,'_wc_average_rating','0'), +(1996,147,'_wc_review_count','0'), +(1997,147,'attribute_pa_size','54'), +(1998,147,'_price','75'), +(1999,147,'_product_version','9.3.3'), +(2000,148,'_variation_description',''), +(2001,148,'_regular_price','75'), +(2002,148,'total_sales','0'), +(2003,148,'_tax_status','taxable'), +(2004,148,'_tax_class','parent'), +(2005,148,'_manage_stock','no'), +(2006,148,'_backorders','no'), +(2007,148,'_sold_individually','no'), +(2008,148,'_virtual','no'), +(2009,148,'_downloadable','no'), +(2010,148,'_download_limit','-1'), +(2011,148,'_download_expiry','-1'), +(2012,148,'_thumbnail_id','0'), +(2013,148,'_stock',NULL), +(2014,148,'_stock_status','instock'), +(2015,148,'_wc_average_rating','0'), +(2016,148,'_wc_review_count','0'), +(2017,148,'attribute_pa_size','56'), +(2018,148,'_price','75'), +(2019,148,'_product_version','9.3.3'), +(2020,149,'_variation_description',''), +(2021,149,'_regular_price','75'), +(2022,149,'total_sales','0'), +(2023,149,'_tax_status','taxable'), +(2024,149,'_tax_class','parent'), +(2025,149,'_manage_stock','no'), +(2026,149,'_backorders','no'), +(2027,149,'_sold_individually','no'), +(2028,149,'_virtual','no'), +(2029,149,'_downloadable','no'), +(2030,149,'_download_limit','-1'), +(2031,149,'_download_expiry','-1'), +(2032,149,'_thumbnail_id','0'), +(2033,149,'_stock',NULL), +(2034,149,'_stock_status','instock'), +(2035,149,'_wc_average_rating','0'), +(2036,149,'_wc_review_count','0'), +(2037,149,'attribute_pa_size','58'), +(2038,149,'_price','75'), +(2039,149,'_product_version','9.3.3'), +(2040,150,'_variation_description',''), +(2041,150,'_regular_price','75'), +(2042,150,'total_sales','0'), +(2043,150,'_tax_status','taxable'), +(2044,150,'_tax_class','parent'), +(2045,150,'_manage_stock','no'), +(2046,150,'_backorders','no'), +(2047,150,'_sold_individually','no'), +(2048,150,'_virtual','no'), +(2049,150,'_downloadable','no'), +(2050,150,'_download_limit','-1'), +(2051,150,'_download_expiry','-1'), +(2052,150,'_thumbnail_id','0'), +(2053,150,'_stock',NULL), +(2054,150,'_stock_status','instock'), +(2055,150,'_wc_average_rating','0'), +(2056,150,'_wc_review_count','0'), +(2057,150,'attribute_pa_size','60'), +(2058,150,'_price','75'), +(2059,150,'_product_version','9.3.3'), +(2060,151,'_variation_description',''), +(2061,151,'_regular_price','75'), +(2062,151,'total_sales','0'), +(2063,151,'_tax_status','taxable'), +(2064,151,'_tax_class','parent'), +(2065,151,'_manage_stock','no'), +(2066,151,'_backorders','no'), +(2067,151,'_sold_individually','no'), +(2068,151,'_virtual','no'), +(2069,151,'_downloadable','no'), +(2070,151,'_download_limit','-1'), +(2071,151,'_download_expiry','-1'), +(2072,151,'_thumbnail_id','0'), +(2073,151,'_stock',NULL), +(2074,151,'_stock_status','instock'), +(2075,151,'_wc_average_rating','0'), +(2076,151,'_wc_review_count','0'), +(2077,151,'attribute_pa_size','62'), +(2078,151,'_price','75'), +(2079,151,'_product_version','9.3.3'), +(2081,144,'_edit_lock','1749803782:1'), +(2087,154,'_wp_attached_file','2024/10/KIGEN-BaIKKANBa.jpg'), +(2088,154,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:27:\"2024/10/KIGEN-BaIKKANBa.jpg\";s:8:\"filesize\";i:228219;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"KIGEN-BaIKKANBa-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12630;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:19:\"KIGEN-BaIKKANBa.jpg\";}'), +(2090,154,'_wp_attachment_image_alt','Kishou signet ring in silver, with three engrave lines'), +(2093,144,'_edit_last','1'), +(2102,155,'_sku','Kishou-B-g'), +(2103,155,'total_sales','0'), +(2104,155,'_tax_status','taxable'), +(2105,155,'_tax_class',''), +(2106,155,'_manage_stock','no'), +(2107,155,'_backorders','no'), +(2108,155,'_sold_individually','no'), +(2109,155,'_virtual','no'), +(2110,155,'_downloadable','no'), +(2111,155,'_download_limit','-1'), +(2112,155,'_download_expiry','-1'), +(2114,155,'_stock',NULL), +(2115,155,'_stock_status','instock'), +(2116,155,'_wc_average_rating','0'), +(2117,155,'_wc_review_count','0'), +(2118,155,'_product_attributes','a:1:{s:7:\"pa_size\";a:6:{s:4:\"name\";s:7:\"pa_size\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'), +(2119,155,'_product_version','9.4.2'), +(2124,156,'_variation_description',''), +(2125,156,'_regular_price','80'), +(2126,156,'total_sales','0'), +(2127,156,'_tax_status','taxable'), +(2128,156,'_tax_class','parent'), +(2129,156,'_manage_stock','no'), +(2130,156,'_backorders','no'), +(2131,156,'_sold_individually','no'), +(2132,156,'_virtual','no'), +(2133,156,'_downloadable','no'), +(2134,156,'_download_limit','-1'), +(2135,156,'_download_expiry','-1'), +(2136,156,'_thumbnail_id','0'), +(2137,156,'_stock',NULL), +(2138,156,'_stock_status','instock'), +(2139,156,'_wc_average_rating','0'), +(2140,156,'_wc_review_count','0'), +(2141,156,'attribute_pa_size','50'), +(2142,156,'_price','80'), +(2143,156,'_product_version','9.3.3'), +(2144,157,'_variation_description',''), +(2145,157,'_regular_price','80'), +(2146,157,'total_sales','0'), +(2147,157,'_tax_status','taxable'), +(2148,157,'_tax_class','parent'), +(2149,157,'_manage_stock','no'), +(2150,157,'_backorders','no'), +(2151,157,'_sold_individually','no'), +(2152,157,'_virtual','no'), +(2153,157,'_downloadable','no'), +(2154,157,'_download_limit','-1'), +(2155,157,'_download_expiry','-1'), +(2156,157,'_thumbnail_id','0'), +(2157,157,'_stock',NULL), +(2158,157,'_stock_status','instock'), +(2159,157,'_wc_average_rating','0'), +(2160,157,'_wc_review_count','0'), +(2161,157,'attribute_pa_size','52'), +(2162,157,'_price','80'), +(2163,157,'_product_version','9.3.3'), +(2164,158,'_variation_description',''), +(2165,158,'_regular_price','80'), +(2166,158,'total_sales','0'), +(2167,158,'_tax_status','taxable'), +(2168,158,'_tax_class','parent'), +(2169,158,'_manage_stock','no'), +(2170,158,'_backorders','no'), +(2171,158,'_sold_individually','no'), +(2172,158,'_virtual','no'), +(2173,158,'_downloadable','no'), +(2174,158,'_download_limit','-1'), +(2175,158,'_download_expiry','-1'), +(2176,158,'_thumbnail_id','0'), +(2177,158,'_stock',NULL), +(2178,158,'_stock_status','instock'), +(2179,158,'_wc_average_rating','0'), +(2180,158,'_wc_review_count','0'), +(2181,158,'attribute_pa_size','54'), +(2182,158,'_price','80'), +(2183,158,'_product_version','9.3.3'), +(2184,159,'_variation_description',''), +(2185,159,'_regular_price','80'), +(2186,159,'total_sales','0'), +(2187,159,'_tax_status','taxable'), +(2188,159,'_tax_class','parent'), +(2189,159,'_manage_stock','no'), +(2190,159,'_backorders','no'), +(2191,159,'_sold_individually','no'), +(2192,159,'_virtual','no'), +(2193,159,'_downloadable','no'), +(2194,159,'_download_limit','-1'), +(2195,159,'_download_expiry','-1'), +(2196,159,'_thumbnail_id','0'), +(2197,159,'_stock',NULL), +(2198,159,'_stock_status','instock'), +(2199,159,'_wc_average_rating','0'), +(2200,159,'_wc_review_count','0'), +(2201,159,'attribute_pa_size','56'), +(2202,159,'_price','80'), +(2203,159,'_product_version','9.3.3'), +(2204,160,'_variation_description',''), +(2205,160,'_regular_price','80'), +(2206,160,'total_sales','0'), +(2207,160,'_tax_status','taxable'), +(2208,160,'_tax_class','parent'), +(2209,160,'_manage_stock','no'), +(2210,160,'_backorders','no'), +(2211,160,'_sold_individually','no'), +(2212,160,'_virtual','no'), +(2213,160,'_downloadable','no'), +(2214,160,'_download_limit','-1'), +(2215,160,'_download_expiry','-1'), +(2216,160,'_thumbnail_id','0'), +(2217,160,'_stock',NULL), +(2218,160,'_stock_status','instock'), +(2219,160,'_wc_average_rating','0'), +(2220,160,'_wc_review_count','0'), +(2221,160,'attribute_pa_size','58'), +(2222,160,'_price','80'), +(2223,160,'_product_version','9.3.3'), +(2224,161,'_variation_description',''), +(2225,161,'_regular_price','80'), +(2226,161,'total_sales','0'), +(2227,161,'_tax_status','taxable'), +(2228,161,'_tax_class','parent'), +(2229,161,'_manage_stock','no'), +(2230,161,'_backorders','no'), +(2231,161,'_sold_individually','no'), +(2232,161,'_virtual','no'), +(2233,161,'_downloadable','no'), +(2234,161,'_download_limit','-1'), +(2235,161,'_download_expiry','-1'), +(2236,161,'_thumbnail_id','0'), +(2237,161,'_stock',NULL), +(2238,161,'_stock_status','instock'), +(2239,161,'_wc_average_rating','0'), +(2240,161,'_wc_review_count','0'), +(2241,161,'attribute_pa_size','60'), +(2242,161,'_price','80'), +(2243,161,'_product_version','9.3.3'), +(2244,162,'_variation_description',''), +(2245,162,'_regular_price','80'), +(2246,162,'total_sales','0'), +(2247,162,'_tax_status','taxable'), +(2248,162,'_tax_class','parent'), +(2249,162,'_manage_stock','no'), +(2250,162,'_backorders','no'), +(2251,162,'_sold_individually','no'), +(2252,162,'_virtual','no'), +(2253,162,'_downloadable','no'), +(2254,162,'_download_limit','-1'), +(2255,162,'_download_expiry','-1'), +(2256,162,'_thumbnail_id','0'), +(2257,162,'_stock',NULL), +(2258,162,'_stock_status','instock'), +(2259,162,'_wc_average_rating','0'), +(2260,162,'_wc_review_count','0'), +(2261,162,'attribute_pa_size','62'), +(2262,162,'_price','80'), +(2263,162,'_product_version','9.3.3'), +(2265,155,'_edit_lock','1749803780:1'), +(2272,165,'_wp_attached_file','2024/10/HADOU-BOoIKKAN-BKIGEN-BJOKOU-Co.jpg'), +(2273,165,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:43:\"2024/10/HADOU-BOoIKKAN-BKIGEN-BJOKOU-Co.jpg\";s:8:\"filesize\";i:262084;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:43:\"HADOU-BOoIKKAN-BKIGEN-BJOKOU-Co-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15436;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:35:\"HADOU-BOoIKKAN-BKIGEN-BJOKOU-Co.jpg\";}'), +(2274,165,'_wp_attachment_image_alt','Kishou signet ring in gold plated silver, with three engrave lines'), +(2277,155,'_edit_last','1'), +(2282,166,'_wp_attached_file','2024/09/DSC9760.jpg'), +(2283,166,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:19:\"2024/09/DSC9760.jpg\";s:8:\"filesize\";i:352950;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"DSC9760-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18417;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:11:\"DSC9760.jpg\";}'), +(2284,166,'_wp_attachment_image_alt','Kara ring composed of two sterling silver bands linked by a 18k gold thin curb chain'), +(2285,167,'_wp_attached_file','2024/09/DSC9339.jpg'), +(2286,167,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:19:\"2024/09/DSC9339.jpg\";s:8:\"filesize\";i:257752;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"DSC9339-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13819;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:11:\"DSC9339.jpg\";}'), +(2287,167,'_wp_attachment_image_alt','Kara ring composed of two sterling silver bands linked by a 18k gold thin curb chain'), +(2294,168,'_sku','Rokku-B'), +(2295,168,'total_sales','2'), +(2296,168,'_tax_status','taxable'), +(2297,168,'_tax_class',''), +(2298,168,'_manage_stock','no'), +(2299,168,'_backorders','no'), +(2300,168,'_sold_individually','no'), +(2301,168,'_virtual','no'), +(2302,168,'_downloadable','no'), +(2303,168,'_download_limit','-1'), +(2304,168,'_download_expiry','-1'), +(2306,168,'_stock',NULL), +(2307,168,'_stock_status','instock'), +(2308,168,'_wc_average_rating','0'), +(2309,168,'_wc_review_count','0'), +(2310,168,'_product_attributes','a:1:{s:8:\"pa_stone\";a:6:{s:4:\"name\";s:8:\"pa_stone\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'), +(2311,168,'_product_version','9.9.3'), +(2457,168,'_edit_lock','1750279422:1'), +(2461,177,'_wp_attached_file','2024/10/ROKKU-B-malachite-1.jpg'), +(2462,177,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:31:\"2024/10/ROKKU-B-malachite-1.jpg\";s:8:\"filesize\";i:85733;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"ROKKU-B-malachite-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10523;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:23:\"ROKKU-B-malachite-1.jpg\";}'), +(2463,177,'_wp_attachment_image_alt',''), +(2464,178,'_wp_attached_file','2024/10/ROKKU-B-tigereye.jpg'), +(2465,178,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:28:\"2024/10/ROKKU-B-tigereye.jpg\";s:8:\"filesize\";i:51905;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"ROKKU-B-tigereye-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5348;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:28:\"ROKKU-B-tigereye-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5348;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:20:\"ROKKU-B-tigereye.jpg\";}'), +(2466,178,'_wp_attachment_image_alt','Rokku wide silver ring with tiger eye set in 18k gold'), +(2467,179,'_wp_attached_file','2024/10/ROKKU-B-tigereye-1.jpg'), +(2468,179,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:30:\"2024/10/ROKKU-B-tigereye-1.jpg\";s:8:\"filesize\";i:87699;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"ROKKU-B-tigereye-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10598;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:22:\"ROKKU-B-tigereye-1.jpg\";}'), +(2469,179,'_wp_attachment_image_alt','Rokku wide silver ring with tiger eye set in 18k gold'), +(2470,180,'_wp_attached_file','2024/10/DSC9710.jpg'), +(2471,180,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:19:\"2024/10/DSC9710.jpg\";s:8:\"filesize\";i:421874;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"DSC9710-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20847;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:11:\"DSC9710.jpg\";}'), +(2472,180,'_wp_attachment_image_alt','Rokku wide silver ring with malachite set in 18k gold'), +(2475,182,'_wp_attached_file','2024/10/DSC9190.jpg'), +(2476,182,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:19:\"2024/10/DSC9190.jpg\";s:8:\"filesize\";i:229655;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"DSC9190-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12202;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:11:\"DSC9190.jpg\";}'), +(2477,182,'_wp_attachment_image_alt','Rokku wide silver ring with tiger eye set in 18k gold'), +(2480,168,'_edit_last','1'), +(2488,183,'_sku','BOROBORO-BO2-s'), +(2489,183,'total_sales','1'), +(2490,183,'_tax_status','taxable'), +(2491,183,'_tax_class',''), +(2492,183,'_manage_stock','no'), +(2493,183,'_backorders','no'), +(2494,183,'_sold_individually','no'), +(2495,183,'_virtual','no'), +(2496,183,'_downloadable','no'), +(2497,183,'_download_limit','-1'), +(2498,183,'_download_expiry','-1'), +(2500,183,'_stock',NULL), +(2501,183,'_stock_status','instock'), +(2502,183,'_wc_average_rating','0'), +(2503,183,'_wc_review_count','0'), +(2504,183,'_product_attributes','a:1:{s:7:\"pa_side\";a:6:{s:4:\"name\";s:7:\"pa_side\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:1;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'), +(2505,183,'_product_version','9.9.3'), +(2654,183,'_edit_lock','1750279007:1'), +(2772,199,'_wp_attached_file','2024/10/BOROBORO-BOaTANEMAKI-BO1a-opti.jpg'), +(2773,199,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1500;s:6:\"height\";i:997;s:4:\"file\";s:42:\"2024/10/BOROBORO-BOaTANEMAKI-BO1a-opti.jpg\";s:8:\"filesize\";i:236038;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:42:\"BOROBORO-BOaTANEMAKI-BO1a-opti-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19871;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), +(2775,199,'_wp_attachment_image_alt','Boroboro long silver earrings. right side'), +(2790,183,'_edit_last','1'), +(2805,200,'_variation_description',''), +(2806,200,'total_sales','0'), +(2807,200,'_tax_status','taxable'), +(2808,200,'_tax_class','parent'), +(2809,200,'_manage_stock','no'), +(2810,200,'_backorders','no'), +(2811,200,'_sold_individually','no'), +(2812,200,'_virtual','no'), +(2813,200,'_downloadable','no'), +(2814,200,'_download_limit','-1'), +(2815,200,'_download_expiry','-1'), +(2816,200,'_stock',NULL), +(2817,200,'_stock_status','instock'), +(2818,200,'_wc_average_rating','0'), +(2819,200,'_wc_review_count','0'), +(2820,200,'attribute_pa_stone','malachite'), +(2821,200,'_product_version','9.9.3'), +(2822,201,'_variation_description',''), +(2823,201,'total_sales','0'), +(2824,201,'_tax_status','taxable'), +(2825,201,'_tax_class','parent'), +(2826,201,'_manage_stock','no'), +(2827,201,'_backorders','no'), +(2828,201,'_sold_individually','no'), +(2829,201,'_virtual','no'), +(2830,201,'_downloadable','no'), +(2831,201,'_download_limit','-1'), +(2832,201,'_download_expiry','-1'), +(2833,201,'_stock',NULL), +(2834,201,'_stock_status','instock'), +(2835,201,'_wc_average_rating','0'), +(2836,201,'_wc_review_count','0'), +(2837,201,'attribute_pa_stone','tiger-eye'), +(2838,201,'_product_version','9.9.3'), +(2839,200,'_regular_price','100'), +(2841,200,'_price','100'), +(2842,201,'_regular_price','110'), +(2843,201,'_thumbnail_id','178'), +(2844,201,'_price','110'), +(2854,202,'_sku','PIASU-BO'), +(2855,202,'total_sales','3'), +(2856,202,'_tax_status','taxable'), +(2857,202,'_tax_class',''), +(2858,202,'_manage_stock','no'), +(2859,202,'_backorders','no'), +(2860,202,'_sold_individually','no'), +(2861,202,'_virtual','no'), +(2862,202,'_downloadable','no'), +(2863,202,'_download_limit','-1'), +(2864,202,'_download_expiry','-1'), +(2865,202,'_thumbnail_id','206'), +(2866,202,'_stock',NULL), +(2867,202,'_stock_status','instock'), +(2868,202,'_wc_average_rating','0'), +(2869,202,'_wc_review_count','0'), +(2870,202,'_product_attributes','a:1:{s:7:\"pa_side\";a:6:{s:4:\"name\";s:7:\"pa_side\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:1;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'), +(2871,202,'_product_version','9.4.1'), +(2941,202,'_edit_lock','1732521920:1'), +(2942,206,'_wp_attached_file','2024/10/PIASU-BO.jpg'), +(2943,206,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:20:\"2024/10/PIASU-BO.jpg\";s:8:\"filesize\";i:56620;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"PIASU-BO-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7143;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:20:\"PIASU-BO-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7143;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:12:\"PIASU-BO.jpg\";}'), +(2944,206,'_wp_attachment_image_alt','Piasu earrings in silver covering ear lobe with three hoops hanging on it'), +(2945,207,'_wp_attached_file','2024/10/PIASU-BO-1.jpg'), +(2946,207,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:22:\"2024/10/PIASU-BO-1.jpg\";s:8:\"filesize\";i:337870;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"PIASU-BO-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13327;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:14:\"PIASU-BO-1.jpg\";}'), +(2949,207,'_wp_attachment_image_alt','Piasu earrings in silver covering ear lobe with three hoops hanging on it'), +(2956,202,'_edit_last','1'), +(2967,212,'_wp_attached_file','2024/10/PIASU-BO-2.jpg'), +(2968,212,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:22:\"2024/10/PIASU-BO-2.jpg\";s:8:\"filesize\";i:187047;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"PIASU-BO-2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14061;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:14:\"PIASU-BO-2.jpg\";}'), +(2969,212,'_wp_attachment_image_alt','Piasu earrings in silver covering ear lobe with three hoops hanging on it'), +(2977,213,'_sku','BOROBORO-BO2-g'), +(2978,213,'total_sales','0'), +(2979,213,'_tax_status','taxable'), +(2980,213,'_tax_class',''), +(2981,213,'_manage_stock','no'), +(2982,213,'_backorders','no'), +(2983,213,'_sold_individually','no'), +(2984,213,'_virtual','no'), +(2985,213,'_downloadable','no'), +(2986,213,'_download_limit','-1'), +(2987,213,'_download_expiry','-1'), +(2989,213,'_stock',NULL), +(2990,213,'_stock_status','instock'), +(2991,213,'_wc_average_rating','0'), +(2992,213,'_wc_review_count','0'), +(2993,213,'_product_attributes','a:1:{s:7:\"pa_side\";a:6:{s:4:\"name\";s:7:\"pa_side\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:1;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'), +(2994,213,'_product_version','9.9.3'), +(3064,213,'_edit_lock','1750279453:1'), +(3070,213,'_edit_last','1'), +(3440,240,'_sku','IKKAN-BR-s'), +(3441,240,'total_sales','0'), +(3442,240,'_tax_status','taxable'), +(3443,240,'_tax_class',''), +(3444,240,'_manage_stock','no'), +(3445,240,'_backorders','no'), +(3446,240,'_sold_individually','no'), +(3447,240,'_virtual','no'), +(3448,240,'_downloadable','no'), +(3449,240,'_download_limit','-1'), +(3450,240,'_download_expiry','-1'), +(3451,240,'_thumbnail_id','243'), +(3452,240,'_stock',NULL), +(3453,240,'_stock_status','instock'), +(3454,240,'_wc_average_rating','0'), +(3455,240,'_wc_review_count','0'), +(3456,240,'_product_attributes','a:1:{s:7:\"pa_size\";a:6:{s:4:\"name\";s:7:\"pa_size\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'), +(3457,240,'_product_version','9.8.4'), +(3461,241,'_variation_description',''), +(3462,241,'_sku','IKKAN-BR-s-1'), +(3463,241,'_regular_price','80'), +(3464,241,'total_sales','0'), +(3465,241,'_tax_status','taxable'), +(3466,241,'_tax_class','parent'), +(3467,241,'_manage_stock','no'), +(3468,241,'_backorders','no'), +(3469,241,'_sold_individually','no'), +(3470,241,'_virtual','no'), +(3471,241,'_downloadable','no'), +(3472,241,'_download_limit','-1'), +(3473,241,'_download_expiry','-1'), +(3474,241,'_thumbnail_id','243'), +(3475,241,'_stock',NULL), +(3476,241,'_stock_status','instock'), +(3477,241,'_wc_average_rating','0'), +(3478,241,'_wc_review_count','0'), +(3479,241,'attribute_pa_size','size-1'), +(3480,241,'_price','80'), +(3481,241,'_product_version','9.8.4'), +(3482,242,'_variation_description',''), +(3483,242,'_sku','IKKAN-BR-s-2'), +(3484,242,'_regular_price','80'), +(3485,242,'total_sales','0'), +(3486,242,'_tax_status','taxable'), +(3487,242,'_tax_class','parent'), +(3488,242,'_manage_stock','no'), +(3489,242,'_backorders','no'), +(3490,242,'_sold_individually','no'), +(3491,242,'_virtual','no'), +(3492,242,'_downloadable','no'), +(3493,242,'_download_limit','-1'), +(3494,242,'_download_expiry','-1'), +(3495,242,'_thumbnail_id','243'), +(3496,242,'_stock',NULL), +(3497,242,'_stock_status','instock'), +(3498,242,'_wc_average_rating','0'), +(3499,242,'_wc_review_count','0'), +(3500,242,'attribute_pa_size','size-2'), +(3501,242,'_price','80'), +(3502,242,'_product_version','9.8.4'), +(3504,240,'_edit_lock','1746805937:1'), +(3505,243,'_wp_attached_file','2024/10/IKKAN-BR-arg.jpg'), +(3506,243,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:24:\"2024/10/IKKAN-BR-arg.jpg\";s:8:\"filesize\";i:51107;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"IKKAN-BR-arg-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6101;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:16:\"IKKAN-BR-arg.jpg\";}'), +(3507,243,'_wp_attachment_image_alt','Ikkan silver bracelet, half chain half wire'), +(3508,244,'_wp_attached_file','2024/10/IKKAN-BR-s.jpg'), +(3509,244,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:22:\"2024/10/IKKAN-BR-s.jpg\";s:8:\"filesize\";i:438743;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"IKKAN-BR-s-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13687;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:14:\"IKKAN-BR-s.jpg\";}'), +(3510,244,'_wp_attachment_image_alt','Ikkan silver bracelet, half chain half wire'), +(3511,244,'_wp_attachment_image_alt','Ikkan silver bracelet, half chain half wire'), +(3512,245,'_wp_attached_file','2024/10/IKKAN-BR-s-1.jpg'), +(3513,245,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:24:\"2024/10/IKKAN-BR-s-1.jpg\";s:8:\"filesize\";i:536594;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"IKKAN-BR-s-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16394;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:16:\"IKKAN-BR-s-1.jpg\";}'), +(3514,245,'_wp_attachment_image_alt','Ikkan silver bracelet, half chain half wire'), +(3516,240,'_edit_last','1'), +(3521,246,'_sku','IKKAN-BR-g'), +(3522,246,'total_sales','0'), +(3523,246,'_tax_status','taxable'), +(3524,246,'_tax_class',''), +(3525,246,'_manage_stock','no'), +(3526,246,'_backorders','no'), +(3527,246,'_sold_individually','no'), +(3528,246,'_virtual','no'), +(3529,246,'_downloadable','no'), +(3530,246,'_download_limit','-1'), +(3531,246,'_download_expiry','-1'), +(3532,246,'_thumbnail_id','249'), +(3533,246,'_stock',NULL), +(3534,246,'_stock_status','instock'), +(3535,246,'_wc_average_rating','0'), +(3536,246,'_wc_review_count','0'), +(3537,246,'_product_attributes','a:1:{s:7:\"pa_size\";a:6:{s:4:\"name\";s:7:\"pa_size\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'), +(3538,246,'_product_version','9.8.4'), +(3543,247,'_variation_description',''), +(3544,247,'_sku','IKKAN-BR-g-1'), +(3545,247,'_regular_price','85'), +(3546,247,'total_sales','0'), +(3547,247,'_tax_status','taxable'), +(3548,247,'_tax_class','parent'), +(3549,247,'_manage_stock','no'), +(3550,247,'_backorders','no'), +(3551,247,'_sold_individually','no'), +(3552,247,'_virtual','no'), +(3553,247,'_downloadable','no'), +(3554,247,'_download_limit','-1'), +(3555,247,'_download_expiry','-1'), +(3556,247,'_thumbnail_id','249'), +(3557,247,'_stock',NULL), +(3558,247,'_stock_status','instock'), +(3559,247,'_wc_average_rating','0'), +(3560,247,'_wc_review_count','0'), +(3561,247,'attribute_pa_size','size-1'), +(3562,247,'_price','85'), +(3563,247,'_product_version','9.8.4'), +(3564,248,'_variation_description',''), +(3565,248,'_sku','IKKAN-BR-g-2'), +(3566,248,'_regular_price','85'), +(3567,248,'total_sales','0'), +(3568,248,'_tax_status','taxable'), +(3569,248,'_tax_class','parent'), +(3570,248,'_manage_stock','no'), +(3571,248,'_backorders','no'), +(3572,248,'_sold_individually','no'), +(3573,248,'_virtual','no'), +(3574,248,'_downloadable','no'), +(3575,248,'_download_limit','-1'), +(3576,248,'_download_expiry','-1'), +(3577,248,'_thumbnail_id','249'), +(3578,248,'_stock',NULL), +(3579,248,'_stock_status','instock'), +(3580,248,'_wc_average_rating','0'), +(3581,248,'_wc_review_count','0'), +(3582,248,'attribute_pa_size','size-2'), +(3583,248,'_price','85'), +(3584,248,'_product_version','9.8.4'), +(3586,246,'_edit_lock','1746805795:1'), +(3587,249,'_wp_attached_file','2024/10/IKKAN-BR-vrm.jpg'), +(3588,249,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:24:\"2024/10/IKKAN-BR-vrm.jpg\";s:8:\"filesize\";i:52984;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"IKKAN-BR-vrm-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6804;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:16:\"IKKAN-BR-vrm.jpg\";}'), +(3589,249,'_wp_attachment_image_alt','Ikkan gold plated silver bracelet, half chain half wire'), +(3590,250,'_wp_attached_file','2024/10/IKKAN-BR-g.jpg'), +(3591,250,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:22:\"2024/10/IKKAN-BR-g.jpg\";s:8:\"filesize\";i:187089;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"IKKAN-BR-g-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12542;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:14:\"IKKAN-BR-g.jpg\";}'), +(3592,250,'_wp_attachment_image_alt','Ikkan gold plated silver bracelet, half chain half wire'), +(3594,246,'_edit_last','1'), +(3601,251,'_sku','TANEMAKI-BR'), +(3602,251,'total_sales','3'), +(3603,251,'_tax_status','taxable'), +(3604,251,'_tax_class',''), +(3605,251,'_manage_stock','no'), +(3606,251,'_backorders','no'), +(3607,251,'_sold_individually','no'), +(3608,251,'_virtual','no'), +(3609,251,'_downloadable','no'), +(3610,251,'_download_limit','-1'), +(3611,251,'_download_expiry','-1'), +(3613,251,'_stock',NULL), +(3614,251,'_stock_status','instock'), +(3615,251,'_wc_average_rating','0'), +(3616,251,'_wc_review_count','0'), +(3618,251,'_product_version','9.8.5'), +(3665,251,'_edit_lock','1749450379:1'), +(3669,255,'_wp_attached_file','2024/10/TANEMAKI-BR-1.jpg'), +(3670,255,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2835;s:6:\"height\";i:2835;s:4:\"file\";s:25:\"2024/10/TANEMAKI-BR-1.jpg\";s:8:\"filesize\";i:514458;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"TANEMAKI-BR-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11325;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:17:\"TANEMAKI-BR-1.jpg\";}'), +(3671,255,'_wp_attachment_image_alt',''), +(3707,251,'_edit_last','1'), +(3708,251,'_regular_price','75'), +(3709,251,'_price','75'), +(3713,258,'_sku','FUYOU-BR-s'), +(3714,258,'_regular_price','75'), +(3715,258,'total_sales','0'), +(3716,258,'_tax_status','taxable'), +(3717,258,'_tax_class',''), +(3718,258,'_manage_stock','no'), +(3719,258,'_backorders','no'), +(3720,258,'_sold_individually','no'), +(3721,258,'_virtual','no'), +(3722,258,'_downloadable','no'), +(3723,258,'_download_limit','-1'), +(3724,258,'_download_expiry','-1'), +(3725,258,'_thumbnail_id','259'), +(3726,258,'_stock',NULL), +(3727,258,'_stock_status','instock'), +(3728,258,'_wc_average_rating','0'), +(3729,258,'_wc_review_count','0'), +(3730,258,'_product_version','9.4.2'), +(3731,258,'_price','75'), +(3735,258,'_edit_lock','1732522678:1'), +(3736,259,'_wp_attached_file','2024/10/FUYOU-BR-s.jpg'), +(3737,259,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:22:\"2024/10/FUYOU-BR-s.jpg\";s:8:\"filesize\";i:49290;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"FUYOU-BR-s-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5390;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:22:\"FUYOU-BR-s-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5390;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:14:\"FUYOU-BR-s.jpg\";}'), +(3738,259,'_wp_attachment_image_alt','Fuyou silver chain bracelet with fluid element'), +(3739,260,'_wp_attached_file','2024/10/DSC9225.jpg'), +(3740,260,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:19:\"2024/10/DSC9225.jpg\";s:8:\"filesize\";i:348487;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"DSC9225-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16775;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:11:\"DSC9225.jpg\";}'), +(3741,260,'_wp_attachment_image_alt','Fuyou silver chain bracelet with fluid element'), +(3742,258,'_edit_last','1'), +(3752,261,'_sku','FUYOU-BR-g'), +(3753,261,'_regular_price','80'), +(3754,261,'total_sales','0'), +(3755,261,'_tax_status','taxable'), +(3756,261,'_tax_class',''), +(3757,261,'_manage_stock','no'), +(3758,261,'_backorders','no'), +(3759,261,'_sold_individually','no'), +(3760,261,'_virtual','no'), +(3761,261,'_downloadable','no'), +(3762,261,'_download_limit','-1'), +(3763,261,'_download_expiry','-1'), +(3765,261,'_stock',NULL), +(3766,261,'_stock_status','instock'), +(3767,261,'_wc_average_rating','0'), +(3768,261,'_wc_review_count','0'), +(3769,261,'_product_version','9.4.2'), +(3770,261,'_price','80'), +(3774,261,'_edit_lock','1732556185:1'), +(3778,261,'_edit_last','1'), +(3782,263,'_sku','IKKAN-C'), +(3783,263,'_regular_price','100'), +(3784,263,'total_sales','1'), +(3785,263,'_tax_status','taxable'), +(3786,263,'_tax_class',''), +(3787,263,'_manage_stock','no'), +(3788,263,'_backorders','no'), +(3789,263,'_sold_individually','no'), +(3790,263,'_virtual','no'), +(3791,263,'_downloadable','no'), +(3792,263,'_download_limit','-1'), +(3793,263,'_download_expiry','-1'), +(3795,263,'_stock',NULL), +(3796,263,'_stock_status','instock'), +(3797,263,'_wc_average_rating','0'), +(3798,263,'_wc_review_count','0'), +(3799,263,'_product_version','9.9.3'), +(3800,263,'_price','100'), +(3804,263,'_edit_lock','1750278386:1'), +(3808,265,'_wp_attached_file','2024/10/IKKAN-C.jpg'), +(3809,265,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:19:\"2024/10/IKKAN-C.jpg\";s:8:\"filesize\";i:533027;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"IKKAN-C-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16621;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:11:\"IKKAN-C.jpg\";}'), +(3810,265,'_wp_attachment_image_alt','Ikkan necklace in sterling silver with some gold plated links'), +(3811,266,'_wp_attached_file','2024/10/IKKAN-C-1.jpg'), +(3812,266,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:21:\"2024/10/IKKAN-C-1.jpg\";s:8:\"filesize\";i:554660;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"IKKAN-C-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14277;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), +(3813,266,'_wp_attachment_image_alt','Ikkan necklace in sterling silver with some gold plated links'), +(3814,267,'_wp_attached_file','2024/10/IKKAN-C-2.jpg'), +(3815,267,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:21:\"2024/10/IKKAN-C-2.jpg\";s:8:\"filesize\";i:506097;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"IKKAN-C-2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15987;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:13:\"IKKAN-C-2.jpg\";}'), +(3816,267,'_wp_attachment_image_alt','Ikkan necklace in sterling silver with some gold plated links'), +(3817,263,'_edit_last','1'), +(3828,268,'_sku','PIASU-C'), +(3829,268,'_regular_price','100'), +(3830,268,'total_sales','0'), +(3831,268,'_tax_status','taxable'), +(3832,268,'_tax_class',''), +(3833,268,'_manage_stock','no'), +(3834,268,'_backorders','no'), +(3835,268,'_sold_individually','no'), +(3836,268,'_virtual','no'), +(3837,268,'_downloadable','no'), +(3838,268,'_download_limit','-1'), +(3839,268,'_download_expiry','-1'), +(3841,268,'_stock',NULL), +(3842,268,'_stock_status','instock'), +(3843,268,'_wc_average_rating','0'), +(3844,268,'_wc_review_count','0'), +(3845,268,'_product_version','9.9.3'), +(3846,268,'_price','100'), +(3852,268,'_edit_lock','1750278425:1'), +(3856,270,'_wp_attached_file','2024/10/PIASU-C-arg-opti.jpg'), +(3857,270,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:28:\"2024/10/PIASU-C-arg-opti.jpg\";s:8:\"filesize\";i:266103;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"PIASU-C-arg-opti-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15925;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:20:\"PIASU-C-arg-opti.jpg\";}'), +(3858,270,'_wp_attachment_image_alt','Piasu necklace mixing gold plated and silver chains'), +(3859,268,'_edit_last','1'), +(3863,271,'_sku','TANEMAKI-C'), +(3864,271,'_regular_price','120'), +(3865,271,'total_sales','3'), +(3866,271,'_tax_status','taxable'), +(3867,271,'_tax_class',''), +(3868,271,'_manage_stock','no'), +(3869,271,'_backorders','no'), +(3870,271,'_sold_individually','no'), +(3871,271,'_virtual','no'), +(3872,271,'_downloadable','no'), +(3873,271,'_download_limit','-1'), +(3874,271,'_download_expiry','-1'), +(3876,271,'_stock',NULL), +(3877,271,'_stock_status','instock'), +(3878,271,'_wc_average_rating','0'), +(3879,271,'_wc_review_count','0'), +(3880,271,'_product_version','9.9.3'), +(3881,271,'_price','120'), +(3885,271,'_edit_lock','1750279636:1'), +(3889,273,'_wp_attached_file','2024/10/TANEMAKI-C.jpg'), +(3890,273,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:22:\"2024/10/TANEMAKI-C.jpg\";s:8:\"filesize\";i:498528;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"TANEMAKI-C-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12991;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:14:\"TANEMAKI-C.jpg\";}'), +(3891,273,'_wp_attachment_image_alt','Tanemaki silver necklace with fresh water grey pearls and gold plated details'), +(3892,271,'_edit_last','1'), +(3899,274,'_sku','FUYOU-C'), +(3900,274,'_regular_price','120'), +(3901,274,'total_sales','2'), +(3902,274,'_tax_status','taxable'), +(3903,274,'_tax_class',''), +(3904,274,'_manage_stock','no'), +(3905,274,'_backorders','no'), +(3906,274,'_sold_individually','no'), +(3907,274,'_virtual','no'), +(3908,274,'_downloadable','no'), +(3909,274,'_download_limit','-1'), +(3910,274,'_download_expiry','-1'), +(3911,274,'_thumbnail_id','275'), +(3912,274,'_stock',NULL), +(3913,274,'_stock_status','instock'), +(3914,274,'_wc_average_rating','0'), +(3915,274,'_wc_review_count','0'), +(3916,274,'_product_version','9.8.4'), +(3917,274,'_price','120'), +(3921,274,'_edit_lock','1746806135:1'), +(3922,275,'_wp_attached_file','2024/10/FUYOU-C.jpg'), +(3923,275,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:19:\"2024/10/FUYOU-C.jpg\";s:8:\"filesize\";i:66984;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"FUYOU-C-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7799;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:19:\"FUYOU-C-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7799;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:11:\"FUYOU-C.jpg\";}'), +(3924,275,'_wp_attachment_image_alt','Fuyou sterling silver necklace with rectangle trace chain and fluid elements, gold plated dangling detail'), +(3925,274,'_edit_last','1'), +(4071,285,'_sku','HATTARI-CR1-s'), +(4073,285,'total_sales','1'), +(4074,285,'_tax_status','taxable'), +(4075,285,'_tax_class',''), +(4076,285,'_manage_stock','no'), +(4077,285,'_backorders','no'), +(4078,285,'_sold_individually','no'), +(4079,285,'_virtual','no'), +(4080,285,'_downloadable','no'), +(4081,285,'_download_limit','-1'), +(4082,285,'_download_expiry','-1'), +(4083,285,'_thumbnail_id','286'), +(4084,285,'_stock',NULL), +(4085,285,'_stock_status','instock'), +(4086,285,'_wc_average_rating','0'), +(4087,285,'_wc_review_count','0'), +(4088,285,'_product_attributes','a:1:{s:7:\"pa_side\";a:6:{s:4:\"name\";s:7:\"pa_side\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:1;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'), +(4089,285,'_product_version','9.9.3'), +(4094,285,'_edit_lock','1750278532:1'), +(4095,286,'_wp_attached_file','2024/10/HATTARI-CR1-s.jpg'), +(4096,286,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:25:\"2024/10/HATTARI-CR1-s.jpg\";s:8:\"filesize\";i:38518;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"HATTARI-CR1-s-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4755;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:25:\"HATTARI-CR1-s-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4755;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:17:\"HATTARI-CR1-s.jpg\";}'), +(4097,286,'_wp_attachment_image_alt','Hattari stacked hoops in sterling silver'), +(4098,287,'_wp_attached_file','2024/10/HATTARI-CR1-s-1.jpg'), +(4099,287,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:27:\"2024/10/HATTARI-CR1-s-1.jpg\";s:8:\"filesize\";i:323619;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"HATTARI-CR1-s-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15492;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:19:\"HATTARI-CR1-s-1.jpg\";}'), +(4100,287,'_wp_attachment_image_alt','Hattari stacked hoops in sterling silver'), +(4101,285,'_edit_last','1'), +(4105,288,'_sku','HATTARI-CR1-g'), +(4107,288,'total_sales','3'), +(4108,288,'_tax_status','taxable'), +(4109,288,'_tax_class',''), +(4110,288,'_manage_stock','no'), +(4111,288,'_backorders','no'), +(4112,288,'_sold_individually','no'), +(4113,288,'_virtual','no'), +(4114,288,'_downloadable','no'), +(4115,288,'_download_limit','-1'), +(4116,288,'_download_expiry','-1'), +(4117,288,'_thumbnail_id','289'), +(4118,288,'_stock',NULL), +(4119,288,'_stock_status','instock'), +(4120,288,'_wc_average_rating','0'), +(4121,288,'_wc_review_count','0'), +(4122,288,'_product_attributes','a:1:{s:7:\"pa_side\";a:6:{s:4:\"name\";s:7:\"pa_side\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:1;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'), +(4123,288,'_product_version','9.9.3'), +(4128,288,'_edit_lock','1750278482:1'), +(4129,289,'_wp_attached_file','2024/10/HATTARI-CR1-g.jpg'), +(4130,289,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:25:\"2024/10/HATTARI-CR1-g.jpg\";s:8:\"filesize\";i:44097;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"HATTARI-CR1-g-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5894;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:25:\"HATTARI-CR1-g-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5894;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:17:\"HATTARI-CR1-g.jpg\";}'), +(4131,289,'_wp_attachment_image_alt','Hattari stacked hoops in gold plated silver'), +(4132,290,'_wp_attached_file','2024/10/DSC9336.jpg'), +(4133,290,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:19:\"2024/10/DSC9336.jpg\";s:8:\"filesize\";i:280534;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"DSC9336-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13254;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:11:\"DSC9336.jpg\";}'), +(4134,290,'_wp_attachment_image_alt','Hattari stacked hoops in gold plated silver.'), +(4135,288,'_edit_last','1'), +(4381,306,'_sku','TAMANORI-CR-s'), +(4382,306,'total_sales','4'), +(4383,306,'_tax_status','taxable'), +(4384,306,'_tax_class',''), +(4385,306,'_manage_stock','no'), +(4386,306,'_backorders','no'), +(4387,306,'_sold_individually','no'), +(4388,306,'_virtual','no'), +(4389,306,'_downloadable','no'), +(4390,306,'_download_limit','-1'), +(4391,306,'_download_expiry','-1'), +(4392,306,'_thumbnail_id','310'), +(4393,306,'_stock',NULL), +(4394,306,'_stock_status','instock'), +(4395,306,'_wc_average_rating','0'), +(4396,306,'_wc_review_count','0'), +(4397,306,'_product_attributes','a:1:{s:7:\"pa_side\";a:6:{s:4:\"name\";s:7:\"pa_side\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:1;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'), +(4398,306,'_product_version','9.4.1'), +(4467,306,'_edit_lock','1732523141:1'), +(4468,310,'_wp_attached_file','2024/10/TAMANORI-CR2-arg.jpg'), +(4469,310,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:28:\"2024/10/TAMANORI-CR2-arg.jpg\";s:8:\"filesize\";i:33849;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"TAMANORI-CR2-arg-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4012;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:28:\"TAMANORI-CR2-arg-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4012;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:20:\"TAMANORI-CR2-arg.jpg\";}'), +(4470,310,'_wp_attachment_image_alt','Tamanori oval silver hoops with dangling chains.'), +(4471,311,'_wp_attached_file','2024/10/DSC9378.jpg'), +(4472,311,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:19:\"2024/10/DSC9378.jpg\";s:8:\"filesize\";i:270951;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"DSC9378-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13325;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:11:\"DSC9378.jpg\";}'), +(4473,311,'_wp_attachment_image_alt','Tamanori oval silver hoops with dangling chains.'), +(4477,306,'_edit_last','1'), +(4481,312,'_sku','TAMANORI-CR-g'), +(4482,312,'total_sales','1'), +(4483,312,'_tax_status','taxable'), +(4484,312,'_tax_class',''), +(4485,312,'_manage_stock','no'), +(4486,312,'_backorders','no'), +(4487,312,'_sold_individually','no'), +(4488,312,'_virtual','no'), +(4489,312,'_downloadable','no'), +(4490,312,'_download_limit','-1'), +(4491,312,'_download_expiry','-1'), +(4493,312,'_stock',NULL), +(4494,312,'_stock_status','instock'), +(4495,312,'_wc_average_rating','0'), +(4496,312,'_wc_review_count','0'), +(4497,312,'_product_attributes','a:1:{s:7:\"pa_side\";a:6:{s:4:\"name\";s:7:\"pa_side\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:1;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'), +(4498,312,'_product_version','9.4.2'), +(4568,312,'_edit_lock','1732523154:1'), +(4572,317,'_wp_attached_file','2024/10/TAMANORI-CR2-vrm-1.jpg'), +(4573,317,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2440;s:6:\"height\";i:2440;s:4:\"file\";s:30:\"2024/10/TAMANORI-CR2-vrm-1.jpg\";s:8:\"filesize\";i:408918;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"TAMANORI-CR2-vrm-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9979;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), +(4574,317,'_wp_attachment_image_alt','Tamanori oval gold plated hoops with dangling chains.'), +(4578,312,'_edit_last','1'), +(4585,318,'_sku','FUYOU-CR'), +(4586,318,'total_sales','1'), +(4587,318,'_tax_status','taxable'), +(4588,318,'_tax_class',''), +(4589,318,'_manage_stock','no'), +(4590,318,'_backorders','no'), +(4591,318,'_sold_individually','no'), +(4592,318,'_virtual','no'), +(4593,318,'_downloadable','no'), +(4594,318,'_download_limit','-1'), +(4595,318,'_download_expiry','-1'), +(4597,318,'_stock',NULL), +(4598,318,'_stock_status','instock'), +(4599,318,'_wc_average_rating','0'), +(4600,318,'_wc_review_count','0'), +(4602,318,'_product_version','9.8.4'), +(4669,318,'_price','45'), +(4670,318,'_price','45'), +(4671,318,'_price','45'), +(4672,318,'_edit_lock','1746806227:1'), +(4676,323,'_wp_attached_file','2024/10/FUYOU-CR.jpg'), +(4677,323,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:20:\"2024/10/FUYOU-CR.jpg\";s:8:\"filesize\";i:546040;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"FUYOU-CR-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17679;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), +(4678,323,'_wp_attachment_image_alt','Fuyou solo hoop in sterling silver with 18k gold rings hanging.'), +(4679,324,'_wp_attached_file','2024/10/DSC9542.jpg'), +(4680,324,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:19:\"2024/10/DSC9542.jpg\";s:8:\"filesize\";i:438169;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"DSC9542-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18806;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:11:\"DSC9542.jpg\";}'), +(4681,324,'_wp_attachment_image_alt','Fuyou solo hoop in sterling silver with 18k gold rings hanging.'), +(4682,318,'_edit_last','1'), +(4683,318,'_regular_price','45'), +(4712,325,'_sku','HADOU-EC-s'), +(4713,325,'_regular_price','40'), +(4714,325,'total_sales','1'), +(4715,325,'_tax_status','taxable'), +(4716,325,'_tax_class',''), +(4717,325,'_manage_stock','no'), +(4718,325,'_backorders','no'), +(4719,325,'_sold_individually','no'), +(4720,325,'_virtual','no'), +(4721,325,'_downloadable','no'), +(4722,325,'_download_limit','-1'), +(4723,325,'_download_expiry','-1'), +(4724,325,'_thumbnail_id','326'), +(4725,325,'_stock',NULL), +(4726,325,'_stock_status','instock'), +(4727,325,'_wc_average_rating','0'), +(4728,325,'_wc_review_count','0'), +(4729,325,'_product_version','9.8.4'), +(4730,325,'_price','40'), +(4735,325,'_edit_lock','1746806441:1'), +(4736,326,'_wp_attached_file','2024/10/HADOU-EC-arg.jpg'), +(4737,326,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:24:\"2024/10/HADOU-EC-arg.jpg\";s:8:\"filesize\";i:27956;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"HADOU-EC-arg-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3149;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:24:\"HADOU-EC-arg-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3149;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:16:\"HADOU-EC-arg.jpg\";}'), +(4738,326,'_wp_attachment_image_alt','Hadou earcuff in sterling silver.'), +(4739,327,'_wp_attached_file','2024/10/HADOU-EC.jpg'), +(4740,327,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:20:\"2024/10/HADOU-EC.jpg\";s:8:\"filesize\";i:355588;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"HADOU-EC-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14542;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:12:\"HADOU-EC.jpg\";}'), +(4741,327,'_wp_attachment_image_alt','Hadou earcuff in sterling silver'), +(4742,325,'_edit_last','1'), +(4746,328,'_sku','HADOU-EC-g'), +(4747,328,'_regular_price','45'), +(4748,328,'total_sales','2'), +(4749,328,'_tax_status','taxable'), +(4750,328,'_tax_class',''), +(4751,328,'_manage_stock','no'), +(4752,328,'_backorders','no'), +(4753,328,'_sold_individually','no'), +(4754,328,'_virtual','no'), +(4755,328,'_downloadable','no'), +(4756,328,'_download_limit','-1'), +(4757,328,'_download_expiry','-1'), +(4758,328,'_thumbnail_id','329'), +(4759,328,'_stock',NULL), +(4760,328,'_stock_status','instock'), +(4761,328,'_wc_average_rating','0'), +(4762,328,'_wc_review_count','0'), +(4763,328,'_product_version','9.8.4'), +(4764,328,'_price','45'), +(4768,328,'_edit_lock','1746806573:1'), +(4769,329,'_wp_attached_file','2024/10/HADOU-EC-vrm.jpg'), +(4770,329,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:24:\"2024/10/HADOU-EC-vrm.jpg\";s:8:\"filesize\";i:28932;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"HADOU-EC-vrm-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3446;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:24:\"HADOU-EC-vrm-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3446;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:16:\"HADOU-EC-vrm.jpg\";}'), +(4771,329,'_wp_attachment_image_alt','Hadou earcuff in gold plated silver.'), +(4772,330,'_wp_attached_file','2024/10/HADOU-EC-vrm-1.jpg'), +(4773,330,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:26:\"2024/10/HADOU-EC-vrm-1.jpg\";s:8:\"filesize\";i:223978;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"HADOU-EC-vrm-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14768;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:18:\"HADOU-EC-vrm-1.jpg\";}'), +(4774,330,'_wp_attachment_image_alt','Hadou earcuff in gold plated silver.'), +(4775,328,'_edit_last','1'), +(4843,337,'_wp_attached_file','2024/10/DSC9472.jpg'), +(4844,337,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:19:\"2024/10/DSC9472.jpg\";s:8:\"filesize\";i:356763;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"DSC9472-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17888;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:11:\"DSC9472.jpg\";}'), +(4845,337,'_wp_attachment_image_alt','Hattari earcuff in gold plated silver.'), +(4853,338,'_sku','PIASU-BRC'), +(4854,338,'_regular_price','50'), +(4855,338,'total_sales','0'), +(4856,338,'_tax_status','taxable'), +(4857,338,'_tax_class',''), +(4858,338,'_manage_stock','no'), +(4859,338,'_backorders','no'), +(4860,338,'_sold_individually','no'), +(4861,338,'_virtual','no'), +(4862,338,'_downloadable','no'), +(4863,338,'_download_limit','-1'), +(4864,338,'_download_expiry','-1'), +(4865,338,'_thumbnail_id','339'), +(4866,338,'_stock',NULL), +(4867,338,'_stock_status','instock'), +(4868,338,'_wc_average_rating','0'), +(4869,338,'_wc_review_count','0'), +(4870,338,'_product_version','9.3.3'), +(4871,338,'_price','50'), +(4875,338,'_edit_lock','1732523359:1'), +(4876,339,'_wp_attached_file','2024/10/PIASU-BRC.jpg'), +(4877,339,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:21:\"2024/10/PIASU-BRC.jpg\";s:8:\"filesize\";i:38982;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"PIASU-BRC-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4641;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:21:\"PIASU-BRC-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4641;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:13:\"PIASU-BRC.jpg\";}'), +(4878,339,'_wp_attachment_image_alt','Piasu sterling silver brooch looking like a nipple piercing.'), +(4879,340,'_wp_attached_file','2024/10/PIASU-BRC-1.jpg'), +(4880,340,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:23:\"2024/10/PIASU-BRC-1.jpg\";s:8:\"filesize\";i:237100;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"PIASU-BRC-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11880;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:15:\"PIASU-BRC-1.jpg\";}'), +(4881,340,'_wp_attachment_image_alt','Piasu sterling silver brooch looking like a nipple piercing.'), +(4882,341,'_wp_attached_file','2024/10/PIASU-BRC-2.jpg'), +(4883,341,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:23:\"2024/10/PIASU-BRC-2.jpg\";s:8:\"filesize\";i:326181;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"PIASU-BRC-2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10210;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:15:\"PIASU-BRC-2.jpg\";}'), +(4884,341,'_wp_attachment_image_alt','Piasu sterling silver brooch looking like a nipple piercing.'), +(4885,338,'_edit_last','2'), +(4886,338,'_photos_colonne_gauche|||0|value','339'), +(4887,338,'_photos_colonne_droite|||0|value','340'), +(4888,338,'_photos_colonne_droite|||1|value','341'), +(4889,338,'_haiku_details_produit',''), +(4890,342,'_sku','KAGUN-BOP'), +(4891,342,'total_sales','7'), +(4892,342,'_tax_status','taxable'), +(4893,342,'_tax_class',''), +(4894,342,'_manage_stock','no'), +(4895,342,'_backorders','no'), +(4896,342,'_sold_individually','no'), +(4897,342,'_virtual','no'), +(4898,342,'_downloadable','no'), +(4899,342,'_download_limit','-1'), +(4900,342,'_download_expiry','-1'), +(4902,342,'_stock',NULL), +(4903,342,'_stock_status','instock'), +(4904,342,'_wc_average_rating','0'), +(4905,342,'_wc_review_count','0'), +(4906,342,'_product_attributes','a:1:{s:7:\"pa_side\";a:6:{s:4:\"name\";s:7:\"pa_side\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:1;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'), +(4907,342,'_product_version','9.9.3'), +(4977,342,'_edit_lock','1750141019:1'), +(4981,347,'_wp_attached_file','2024/10/DSC9763.jpg'), +(4982,347,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:19:\"2024/10/DSC9763.jpg\";s:8:\"filesize\";i:402127;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"DSC9763-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19294;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:11:\"DSC9763.jpg\";}'), +(4983,347,'_wp_attachment_image_alt','Kagun trio of earrings in mix of silver and gold plated silver, with minimalist shapes and fresh water pearls'), +(4984,348,'_wp_attached_file','2024/10/DSC9781.jpg'), +(4985,348,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1919;s:4:\"file\";s:19:\"2024/10/DSC9781.jpg\";s:8:\"filesize\";i:372455;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"DSC9781-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16843;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), +(4986,348,'_wp_attachment_image_alt','Kagun trio of earrings in mix of silver and gold plated silver, with minimalist shapes and fresh water pearls'), +(4987,349,'_wp_attached_file','2024/10/DSC9748.jpg'), +(4988,349,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:19:\"2024/10/DSC9748.jpg\";s:8:\"filesize\";i:421413;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"DSC9748-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18736;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:11:\"DSC9748.jpg\";}'), +(4989,349,'_wp_attachment_image_alt','Kagun trio of earrings in mix of silver and gold plated silver, with minimalist shapes and fresh water pearls'), +(5113,342,'_edit_last','1'), +(5595,384,'_wp_attached_file','2024/10/DSC9775.jpg'), +(5596,384,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1919;s:6:\"height\";i:1920;s:4:\"file\";s:19:\"2024/10/DSC9775.jpg\";s:8:\"filesize\";i:559293;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"DSC9775-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23689;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), +(5598,384,'_wp_attachment_image_alt','Kagun bracelet mixing chains in gold plated silver.'), +(5608,385,'_sku','ROKKU-C'), +(5610,385,'total_sales','0'), +(5611,385,'_tax_status','taxable'), +(5612,385,'_tax_class',''), +(5613,385,'_manage_stock','no'), +(5614,385,'_backorders','no'), +(5615,385,'_sold_individually','no'), +(5616,385,'_virtual','no'), +(5617,385,'_downloadable','no'), +(5618,385,'_download_limit','-1'), +(5619,385,'_download_expiry','-1'), +(5621,385,'_stock',NULL), +(5622,385,'_stock_status','instock'), +(5623,385,'_wc_average_rating','0'), +(5624,385,'_wc_review_count','0'), +(5625,385,'_product_version','9.8.4'), +(5630,385,'_edit_lock','1750342713:1'), +(5637,388,'_wp_attached_file','2024/10/ROKKU-C-arg.jpg'), +(5638,388,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:23:\"2024/10/ROKKU-C-arg.jpg\";s:8:\"filesize\";i:328180;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"ROKKU-C-arg-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16682;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:15:\"ROKKU-C-arg.jpg\";}'), +(5639,388,'_wp_attachment_image_alt','Rokku statement necklace in sterling silver with semi precious stone pendant.'), +(5640,385,'_product_attributes','a:1:{s:8:\"pa_stone\";a:6:{s:4:\"name\";s:8:\"pa_stone\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:1;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'), +(5641,389,'_variation_description',''), +(5642,389,'total_sales','0'), +(5643,389,'_tax_status','taxable'), +(5644,389,'_tax_class','parent'), +(5645,389,'_manage_stock','no'), +(5646,389,'_backorders','no'), +(5647,389,'_sold_individually','no'), +(5648,389,'_virtual','no'), +(5649,389,'_downloadable','no'), +(5650,389,'_download_limit','-1'), +(5651,389,'_download_expiry','-1'), +(5652,389,'_stock',NULL), +(5653,389,'_stock_status','instock'), +(5654,389,'_wc_average_rating','0'), +(5655,389,'_wc_review_count','0'), +(5656,389,'attribute_pa_stone','green-jaspe'), +(5657,389,'_product_version','9.8.4'), +(5675,391,'_variation_description',''), +(5676,391,'total_sales','0'), +(5677,391,'_tax_status','taxable'), +(5678,391,'_tax_class','parent'), +(5679,391,'_manage_stock','no'), +(5680,391,'_backorders','no'), +(5681,391,'_sold_individually','no'), +(5682,391,'_virtual','no'), +(5683,391,'_downloadable','no'), +(5684,391,'_download_limit','-1'), +(5685,391,'_download_expiry','-1'), +(5686,391,'_stock',NULL), +(5687,391,'_stock_status','instock'), +(5688,391,'_wc_average_rating','0'), +(5689,391,'_wc_review_count','0'), +(5690,391,'attribute_pa_stone','lapis-lazuli'), +(5691,391,'_product_version','9.8.4'), +(5692,392,'_variation_description',''), +(5693,392,'total_sales','0'), +(5694,392,'_tax_status','taxable'), +(5695,392,'_tax_class','parent'), +(5696,392,'_manage_stock','no'), +(5697,392,'_backorders','no'), +(5698,392,'_sold_individually','no'), +(5699,392,'_virtual','no'), +(5700,392,'_downloadable','no'), +(5701,392,'_download_limit','-1'), +(5702,392,'_download_expiry','-1'), +(5703,392,'_stock',NULL), +(5704,392,'_stock_status','instock'), +(5705,392,'_wc_average_rating','0'), +(5706,392,'_wc_review_count','0'), +(5707,392,'attribute_pa_stone','tiger-eye'), +(5708,392,'_product_version','9.8.4'), +(5709,389,'_sku','ROKKU-C-jaspe'), +(5710,389,'_regular_price','120'), +(5711,389,'_thumbnail_id','0'), +(5712,389,'_price','120'), +(5717,391,'_sku','ROKKU-C-lapis'), +(5718,391,'_regular_price','120'), +(5719,391,'_thumbnail_id','0'), +(5720,391,'_price','120'), +(5721,392,'_sku','ROKKU-C-tiger'), +(5722,392,'_regular_price','120'), +(5723,392,'_thumbnail_id','0'), +(5724,392,'_price','120'), +(5726,385,'_edit_last','1'), +(5736,393,'_sku','MUGURA-CR-s'), +(5737,393,'total_sales','0'), +(5738,393,'_tax_status','taxable'), +(5739,393,'_tax_class',''), +(5740,393,'_manage_stock','no'), +(5741,393,'_backorders','no'), +(5742,393,'_sold_individually','no'), +(5743,393,'_virtual','no'), +(5744,393,'_downloadable','no'), +(5745,393,'_download_limit','-1'), +(5746,393,'_download_expiry','-1'), +(5747,393,'_thumbnail_id','932'), +(5748,393,'_stock',NULL), +(5749,393,'_stock_status','instock'), +(5750,393,'_wc_average_rating','0'), +(5751,393,'_wc_review_count','0'), +(5752,393,'_product_attributes','a:1:{s:7:\"pa_side\";a:6:{s:4:\"name\";s:7:\"pa_side\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:1;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'), +(5753,393,'_product_version','9.9.3'), +(5801,393,'_edit_lock','1750342713:1'), +(5802,396,'_wp_attached_file','2024/10/MUGURA-CR2-arg.jpg'), +(5803,396,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:26:\"2024/10/MUGURA-CR2-arg.jpg\";s:8:\"filesize\";i:33386;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"MUGURA-CR2-arg-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4084;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:18:\"MUGURA-CR2-arg.jpg\";}'), +(5804,396,'_wp_attachment_image_alt','Mugura minimalist silver hoops.'), +(5805,397,'_wp_attached_file','2024/10/DSC9733.jpg'), +(5806,397,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:19:\"2024/10/DSC9733.jpg\";s:8:\"filesize\";i:373189;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"DSC9733-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14866;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), +(5807,397,'_wp_attachment_image_alt','Mugura minimalist silver hoops.'), +(5808,393,'_edit_last','1'), +(5816,398,'_sku','MUGURA-CR-g'), +(5818,398,'total_sales','0'), +(5819,398,'_tax_status','taxable'), +(5820,398,'_tax_class',''), +(5821,398,'_manage_stock','no'), +(5822,398,'_backorders','no'), +(5823,398,'_sold_individually','no'), +(5824,398,'_virtual','no'), +(5825,398,'_downloadable','no'), +(5826,398,'_download_limit','-1'), +(5827,398,'_download_expiry','-1'), +(5829,398,'_stock',NULL), +(5830,398,'_stock_status','instock'), +(5831,398,'_wc_average_rating','0'), +(5832,398,'_wc_review_count','0'), +(5833,398,'_product_attributes','a:1:{s:7:\"pa_side\";a:6:{s:4:\"name\";s:7:\"pa_side\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:1;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'), +(5834,398,'_product_version','9.9.3'), +(5839,398,'_edit_lock','1750342713:1'), +(5843,400,'_wp_attached_file','2024/10/DSC9723.jpg'), +(5844,400,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:19:\"2024/10/DSC9723.jpg\";s:8:\"filesize\";i:387538;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"DSC9723-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18377;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:11:\"DSC9723.jpg\";}'), +(5845,400,'_wp_attachment_image_alt','Mugura minimalist silver hoops.'), +(5846,401,'_wp_attached_file','2024/10/DSC9730.jpg'), +(5847,401,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:19:\"2024/10/DSC9730.jpg\";s:8:\"filesize\";i:388089;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"DSC9730-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17794;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:11:\"DSC9730.jpg\";}'), +(5848,401,'_wp_attachment_image_alt','Mugura minimalist silver hoops.'), +(5849,398,'_edit_last','1'), +(5885,404,'_wp_attached_file','2024/10/DSC9216.jpg'), +(5886,404,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:19:\"2024/10/DSC9216.jpg\";s:8:\"filesize\";i:203691;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"DSC9216-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15326;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:11:\"DSC9216.jpg\";}'), +(5887,404,'_wp_attachment_image_alt','Mugura nail jewel in silver to slip on your finger.'), +(5928,408,'_wp_attached_file','2024/10/DSC9485.jpg'), +(5929,408,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:19:\"2024/10/DSC9485.jpg\";s:8:\"filesize\";i:509856;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"DSC9485-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17109;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), +(5930,408,'_wp_attachment_image_alt','Mugura nail jewel in gold plated silver to slip on your finger.'), +(5946,411,'_wp_attached_file','2024/09/DSC8400-copie.jpg'), +(5947,411,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:25:\"2024/09/DSC8400-copie.jpg\";s:8:\"filesize\";i:497813;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"DSC8400-copie-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17434;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:17:\"DSC8400-copie.jpg\";}'), +(5948,411,'_wp_attachment_image_alt','Hadou wavy ring in silver and gold plated silver'), +(5955,412,'_wp_attached_file','2024/09/HATTARI-B-2-1.jpg'), +(5956,412,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:25:\"2024/09/HATTARI-B-2-1.jpg\";s:8:\"filesize\";i:534610;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"HATTARI-B-2-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17021;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:17:\"HATTARI-B-2-1.jpg\";}'), +(5957,412,'_wp_attachment_image_alt','Hattari double finger ring with a mix of bands in sterling silver and gold plated silver'), +(5990,419,'_wp_attached_file','2024/09/HATTARI-B-1.jpg'), +(5991,419,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:23:\"2024/09/HATTARI-B-1.jpg\";s:8:\"filesize\";i:535511;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"HATTARI-B-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17617;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:15:\"HATTARI-B-1.jpg\";}'), +(5992,419,'_wp_attachment_image_alt','Hattari double finger ring with a mix of bands in sterling silver and gold plated silver'), +(5997,420,'_wp_attached_file','2024/09/HATTARI-B.jpg'), +(5998,420,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:21:\"2024/09/HATTARI-B.jpg\";s:8:\"filesize\";i:37003;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"HATTARI-B-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4366;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:13:\"HATTARI-B.jpg\";}'), +(5999,420,'_wp_attachment_image_alt','Hattari double finger ring with a mix of bands in sterling silver and gold plated silver'), +(6121,424,'_wp_attached_file','2024/10/DSC9376.jpg'), +(6122,424,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:19:\"2024/10/DSC9376.jpg\";s:8:\"filesize\";i:313356;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"DSC9376-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13739;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:11:\"DSC9376.jpg\";}'), +(6123,424,'_wp_attachment_image_alt','Tamanori oval silver hoops with dangling chains.'), +(6150,425,'_wp_attached_file','2024/10/DSC9156.jpg'), +(6151,425,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:19:\"2024/10/DSC9156.jpg\";s:8:\"filesize\";i:410511;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"DSC9156-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17287;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:11:\"DSC9156.jpg\";}'), +(6152,425,'_wp_attachment_image_alt','Mugura minimalist opened earrings to slip into the earlobe, in sterling silver.'), +(6201,393,'_price','70'), +(6202,393,'_price','70'), +(6252,430,'_sku','ROKKU-CR-s'), +(6254,430,'total_sales','1'), +(6255,430,'_tax_status','taxable'), +(6256,430,'_tax_class',''), +(6257,430,'_manage_stock','no'), +(6258,430,'_backorders','no'), +(6259,430,'_sold_individually','no'), +(6260,430,'_virtual','no'), +(6261,430,'_downloadable','no'), +(6262,430,'_download_limit','-1'), +(6263,430,'_download_expiry','-1'), +(6265,430,'_stock',NULL), +(6266,430,'_stock_status','instock'), +(6267,430,'_wc_average_rating','0'), +(6268,430,'_wc_review_count','0'), +(6269,430,'_product_version','9.4.2'), +(6275,430,'_edit_lock','1732556276:1'), +(6282,430,'_edit_last','1'), +(6292,433,'_sku','ROKKU-CR-g'), +(6294,433,'total_sales','1'), +(6295,433,'_tax_status','taxable'), +(6296,433,'_tax_class',''), +(6297,433,'_manage_stock','no'), +(6298,433,'_backorders','no'), +(6299,433,'_sold_individually','no'), +(6300,433,'_virtual','no'), +(6301,433,'_downloadable','no'), +(6302,433,'_download_limit','-1'), +(6303,433,'_download_expiry','-1'), +(6305,433,'_stock',NULL), +(6306,433,'_stock_status','instock'), +(6307,433,'_wc_average_rating','0'), +(6308,433,'_wc_review_count','0'), +(6309,433,'_product_version','9.4.2'), +(6314,433,'_edit_lock','1732557031:1'), +(6318,433,'_edit_last','1'), +(6322,435,'_sku','KARA-EC-s'), +(6323,435,'_regular_price','40'), +(6324,435,'total_sales','3'), +(6325,435,'_tax_status','taxable'), +(6326,435,'_tax_class',''), +(6327,435,'_manage_stock','no'), +(6328,435,'_backorders','no'), +(6329,435,'_sold_individually','no'), +(6330,435,'_virtual','no'), +(6331,435,'_downloadable','no'), +(6332,435,'_download_limit','-1'), +(6333,435,'_download_expiry','-1'), +(6334,435,'_thumbnail_id','940'), +(6335,435,'_stock',NULL), +(6336,435,'_stock_status','instock'), +(6337,435,'_wc_average_rating','0'), +(6338,435,'_wc_review_count','0'), +(6339,435,'_product_version','9.9.3'), +(6340,435,'_price','40'), +(6344,435,'_edit_lock','1750342713:1'), +(6345,436,'_wp_attached_file','2024/10/KARA-EC-arg.jpg'), +(6346,436,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:23:\"2024/10/KARA-EC-arg.jpg\";s:8:\"filesize\";i:27162;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"KARA-EC-arg-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2920;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:23:\"KARA-EC-arg-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2920;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:15:\"KARA-EC-arg.jpg\";}'), +(6347,436,'_wp_attachment_image_alt','Kara textured ear cuff in silver'), +(6348,437,'_wp_attached_file','2024/10/DSC9781-1.jpg'), +(6349,437,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:21:\"2024/10/DSC9781-1.jpg\";s:8:\"filesize\";i:374922;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"DSC9781-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17705;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:13:\"DSC9781-1.jpg\";}'), +(6350,437,'_wp_attachment_image_alt','Kara textured ear cuff in silver'), +(6351,435,'_edit_last','1'), +(6364,398,'_price','75'), +(6365,398,'_regular_price','75'), +(6370,393,'_regular_price','70'), +(6501,447,'_sku','KARA-EC-s-1'), +(6502,447,'_regular_price','45'), +(6503,447,'total_sales','3'), +(6504,447,'_tax_status','taxable'), +(6505,447,'_tax_class',''), +(6506,447,'_manage_stock','no'), +(6507,447,'_backorders','no'), +(6508,447,'_sold_individually','no'), +(6509,447,'_virtual','no'), +(6510,447,'_downloadable','no'), +(6511,447,'_download_limit','-1'), +(6512,447,'_download_expiry','-1'), +(6514,447,'_stock',NULL), +(6515,447,'_stock_status','instock'), +(6516,447,'_wc_average_rating','0'), +(6517,447,'_wc_review_count','0'), +(6518,447,'_product_version','9.9.3'), +(6519,447,'_price','45'), +(6523,447,'_edit_lock','1750342713:1'), +(6530,447,'_edit_last','1'), +(6733,433,'_product_attributes','a:1:{s:8:\"pa_stone\";a:6:{s:4:\"name\";s:8:\"pa_stone\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'), +(6734,478,'_variation_description',''), +(6735,478,'total_sales','0'), +(6736,478,'_tax_status','taxable'), +(6737,478,'_tax_class','parent'), +(6738,478,'_manage_stock','no'), +(6739,478,'_backorders','no'), +(6740,478,'_sold_individually','no'), +(6741,478,'_virtual','no'), +(6742,478,'_downloadable','no'), +(6743,478,'_download_limit','-1'), +(6744,478,'_download_expiry','-1'), +(6745,478,'_stock',NULL), +(6746,478,'_stock_status','instock'), +(6747,478,'_wc_average_rating','0'), +(6748,478,'_wc_review_count','0'), +(6749,478,'attribute_pa_stone','lapis-lazuli'), +(6750,478,'_product_version','9.4.1'), +(6751,479,'_variation_description',''), +(6752,479,'total_sales','0'), +(6753,479,'_tax_status','taxable'), +(6754,479,'_tax_class','parent'), +(6755,479,'_manage_stock','no'), +(6756,479,'_backorders','no'), +(6757,479,'_sold_individually','no'), +(6758,479,'_virtual','no'), +(6759,479,'_downloadable','no'), +(6760,479,'_download_limit','-1'), +(6761,479,'_download_expiry','-1'), +(6762,479,'_stock',NULL), +(6763,479,'_stock_status','instock'), +(6764,479,'_wc_average_rating','0'), +(6765,479,'_wc_review_count','0'), +(6766,479,'attribute_pa_stone','malachite'), +(6767,479,'_product_version','9.4.1'), +(6768,480,'_variation_description',''), +(6769,480,'total_sales','0'), +(6770,480,'_tax_status','taxable'), +(6771,480,'_tax_class','parent'), +(6772,480,'_manage_stock','no'), +(6773,480,'_backorders','no'), +(6774,480,'_sold_individually','no'), +(6775,480,'_virtual','no'), +(6776,480,'_downloadable','no'), +(6777,480,'_download_limit','-1'), +(6778,480,'_download_expiry','-1'), +(6779,480,'_stock',NULL), +(6780,480,'_stock_status','instock'), +(6781,480,'_wc_average_rating','0'), +(6782,480,'_wc_review_count','0'), +(6783,480,'attribute_pa_stone','tiger-eye'), +(6784,480,'_product_version','9.4.1'), +(6785,478,'_sku','ROKKU-CR-g-lapis'), +(6787,479,'_sku','ROKKU-CR-g-malachite'), +(6789,480,'_sku','ROKKU-CR-g-tiger'), +(6868,487,'_wp_attached_file','2024/10/DSC9138.jpg'), +(6869,487,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:19:\"2024/10/DSC9138.jpg\";s:8:\"filesize\";i:283469;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"DSC9138-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16095;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), +(6870,487,'_wp_attachment_image_alt','Rokku statement necklace in silver with semi tiger\'s eye stone pendant and gold plated clasp.'), +(6887,490,'_sku','HADOU-BOP'), +(6889,490,'total_sales','1'), +(6890,490,'_tax_status','taxable'), +(6891,490,'_tax_class',''), +(6892,490,'_manage_stock','no'), +(6893,490,'_backorders','no'), +(6894,490,'_sold_individually','no'), +(6895,490,'_virtual','no'), +(6896,490,'_downloadable','no'), +(6897,490,'_download_limit','-1'), +(6898,490,'_download_expiry','-1'), +(6900,490,'_stock',NULL), +(6901,490,'_stock_status','instock'), +(6902,490,'_wc_average_rating','0'), +(6903,490,'_wc_review_count','0'), +(6904,490,'_product_attributes','a:1:{s:7:\"pa_side\";a:6:{s:4:\"name\";s:7:\"pa_side\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:1;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'), +(6905,490,'_product_version','9.9.3'), +(6912,490,'_edit_lock','1750342713:1'), +(6919,493,'_variation_description',''), +(6920,493,'total_sales','0'), +(6921,493,'_tax_status','taxable'), +(6922,493,'_tax_class','parent'), +(6923,493,'_manage_stock','no'), +(6924,493,'_backorders','no'), +(6925,493,'_sold_individually','no'), +(6926,493,'_virtual','no'), +(6927,493,'_downloadable','no'), +(6928,493,'_download_limit','-1'), +(6929,493,'_download_expiry','-1'), +(6930,493,'_stock',NULL), +(6931,493,'_stock_status','instock'), +(6932,493,'_wc_average_rating','0'), +(6933,493,'_wc_review_count','0'), +(6934,493,'attribute_pa_side','left-side'), +(6935,493,'_product_version','9.8.4'), +(6936,494,'_variation_description',''), +(6937,494,'total_sales','0'), +(6938,494,'_tax_status','taxable'), +(6939,494,'_tax_class','parent'), +(6940,494,'_manage_stock','no'), +(6941,494,'_backorders','no'), +(6942,494,'_sold_individually','no'), +(6943,494,'_virtual','no'), +(6944,494,'_downloadable','no'), +(6945,494,'_download_limit','-1'), +(6946,494,'_download_expiry','-1'), +(6947,494,'_stock',NULL), +(6948,494,'_stock_status','instock'), +(6949,494,'_wc_average_rating','0'), +(6950,494,'_wc_review_count','0'), +(6951,494,'attribute_pa_side','pair'), +(6952,494,'_product_version','9.8.4'), +(6953,495,'_variation_description',''), +(6954,495,'total_sales','0'), +(6955,495,'_tax_status','taxable'), +(6956,495,'_tax_class','parent'), +(6957,495,'_manage_stock','no'), +(6958,495,'_backorders','no'), +(6959,495,'_sold_individually','no'), +(6960,495,'_virtual','no'), +(6961,495,'_downloadable','no'), +(6962,495,'_download_limit','-1'), +(6963,495,'_download_expiry','-1'), +(6964,495,'_stock',NULL), +(6965,495,'_stock_status','instock'), +(6966,495,'_wc_average_rating','0'), +(6967,495,'_wc_review_count','0'), +(6968,495,'attribute_pa_side','right-side'), +(6969,495,'_product_version','9.8.4'), +(6970,493,'_sku','HADOU-BOP-left'), +(6971,493,'_regular_price','35'), +(6972,493,'_thumbnail_id','0'), +(6973,493,'_price','35'), +(6974,494,'_sku','HADOU-BOP-pair'), +(6975,494,'_regular_price','50'), +(6976,494,'_thumbnail_id','0'), +(6977,494,'_price','50'), +(6978,495,'_sku','HADOU-BOP-right'), +(6979,495,'_regular_price','35'), +(6980,495,'_thumbnail_id','0'), +(6981,495,'_price','35'), +(6984,490,'_edit_last','1'), +(6989,496,'_sku','MUGURA-CR1'), +(6990,496,'total_sales','0'), +(6991,496,'_tax_status','taxable'), +(6992,496,'_tax_class',''), +(6993,496,'_manage_stock','no'), +(6994,496,'_backorders','no'), +(6995,496,'_sold_individually','no'), +(6996,496,'_virtual','no'), +(6997,496,'_downloadable','no'), +(6998,496,'_download_limit','-1'), +(6999,496,'_download_expiry','-1'), +(7001,496,'_stock',NULL), +(7002,496,'_stock_status','instock'), +(7003,496,'_wc_average_rating','0'), +(7004,496,'_wc_review_count','0'), +(7006,496,'_product_version','9.9.3'), +(7069,496,'_edit_lock','1750342713:1'), +(7079,496,'_edit_last','1'), +(7080,496,'_regular_price','45'), +(7081,496,'_price','45'), +(7109,506,'_wp_attached_file','woocommerce-placeholder.png'), +(7110,506,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:4:\"file\";s:27:\"woocommerce-placeholder.png\";s:8:\"filesize\";i:48149;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"woocommerce-placeholder-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10479;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), +(7111,510,'_edit_last','1'), +(7112,510,'_edit_lock','1731429269:1'), +(7113,511,'_edit_last','1'), +(7114,511,'_edit_lock','1731429286:1'), +(7120,515,'_sku','BOROBORO-BO1-g'), +(7122,515,'total_sales','0'), +(7123,515,'_tax_status','taxable'), +(7124,515,'_tax_class',''), +(7125,515,'_manage_stock','no'), +(7126,515,'_backorders','no'), +(7127,515,'_sold_individually','no'), +(7128,515,'_virtual','no'), +(7129,515,'_downloadable','no'), +(7130,515,'_download_limit','-1'), +(7131,515,'_download_expiry','-1'), +(7133,515,'_stock',NULL), +(7134,515,'_stock_status','instock'), +(7135,515,'_wc_average_rating','0'), +(7136,515,'_wc_review_count','0'), +(7137,515,'_product_attributes','a:1:{s:8:\"pa_stone\";a:6:{s:4:\"name\";s:8:\"pa_stone\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'), +(7138,515,'_product_version','9.9.4'), +(7145,515,'_edit_lock','1750342713:1'), +(7197,515,'_price','65'), +(7198,515,'_edit_last','1'), +(7199,515,'_regular_price','65'), +(7204,521,'_sku','BOROBORO-BO1-s'), +(7205,521,'total_sales','2'), +(7206,521,'_tax_status','taxable'), +(7207,521,'_tax_class',''), +(7208,521,'_manage_stock','no'), +(7209,521,'_backorders','no'), +(7210,521,'_sold_individually','no'), +(7211,521,'_virtual','no'), +(7212,521,'_downloadable','no'), +(7213,521,'_download_limit','-1'), +(7214,521,'_download_expiry','-1'), +(7216,521,'_stock',NULL), +(7217,521,'_stock_status','instock'), +(7218,521,'_wc_average_rating','0'), +(7219,521,'_wc_review_count','0'), +(7220,521,'_product_attributes','a:1:{s:8:\"pa_stone\";a:6:{s:4:\"name\";s:8:\"pa_stone\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'), +(7221,521,'_product_version','9.9.4'), +(7247,523,'_variation_description',''), +(7248,523,'_sku','BOROBORO-BO1-s-brown'), +(7249,523,'_regular_price','60'), +(7250,523,'total_sales','0'), +(7251,523,'_tax_status','taxable'), +(7252,523,'_tax_class','parent'), +(7253,523,'_manage_stock','no'), +(7254,523,'_backorders','no'), +(7255,523,'_sold_individually','no'), +(7256,523,'_virtual','no'), +(7257,523,'_downloadable','no'), +(7258,523,'_download_limit','-1'), +(7259,523,'_download_expiry','-1'), +(7260,523,'_thumbnail_id','0'), +(7261,523,'_stock',NULL), +(7262,523,'_stock_status','instock'), +(7263,523,'_wc_average_rating','0'), +(7264,523,'_wc_review_count','0'), +(7265,523,'attribute_pa_stone','tiger-eye'), +(7266,523,'_price','60'), +(7267,523,'_product_version','9.3.3'), +(7269,521,'_edit_lock','1750342713:1'), +(7280,521,'_edit_last','1'), +(7320,528,'_variation_description',''), +(7321,528,'total_sales','0'), +(7322,528,'_tax_status','taxable'), +(7323,528,'_tax_class','parent'), +(7324,528,'_manage_stock','no'), +(7325,528,'_backorders','no'), +(7326,528,'_sold_individually','no'), +(7327,528,'_virtual','no'), +(7328,528,'_downloadable','no'), +(7329,528,'_download_limit','-1'), +(7330,528,'_download_expiry','-1'), +(7331,528,'_stock',NULL), +(7332,528,'_stock_status','instock'), +(7333,528,'_wc_average_rating','0'), +(7334,528,'_wc_review_count','0'), +(7335,528,'attribute_pa_size','64'), +(7336,528,'_product_version','9.3.3'), +(7338,528,'_thumbnail_id','0'), +(7339,102,'_price','85'), +(7344,529,'_variation_description',''), +(7345,529,'total_sales','0'), +(7346,529,'_tax_status','taxable'), +(7347,529,'_tax_class','parent'), +(7348,529,'_manage_stock','no'), +(7349,529,'_backorders','no'), +(7350,529,'_sold_individually','no'), +(7351,529,'_virtual','no'), +(7352,529,'_downloadable','no'), +(7353,529,'_download_limit','-1'), +(7354,529,'_download_expiry','-1'), +(7355,529,'_stock',NULL), +(7356,529,'_stock_status','instock'), +(7357,529,'_wc_average_rating','0'), +(7358,529,'_wc_review_count','0'), +(7359,529,'attribute_pa_size','64'), +(7360,529,'_product_version','9.3.3'), +(7362,529,'_thumbnail_id','0'), +(7363,113,'_price','90'), +(7368,530,'_variation_description',''), +(7369,530,'total_sales','0'), +(7370,530,'_tax_status','taxable'), +(7371,530,'_tax_class','parent'), +(7372,530,'_manage_stock','no'), +(7373,530,'_backorders','no'), +(7374,530,'_sold_individually','no'), +(7375,530,'_virtual','no'), +(7376,530,'_downloadable','no'), +(7377,530,'_download_limit','-1'), +(7378,530,'_download_expiry','-1'), +(7379,530,'_stock',NULL), +(7380,530,'_stock_status','instock'), +(7381,530,'_wc_average_rating','0'), +(7382,530,'_wc_review_count','0'), +(7383,530,'attribute_pa_size','64'), +(7384,530,'_product_version','9.9.3'), +(7386,530,'_thumbnail_id','0'), +(7395,532,'_variation_description',''), +(7396,532,'total_sales','0'), +(7397,532,'_tax_status','taxable'), +(7398,532,'_tax_class','parent'), +(7399,532,'_manage_stock','no'), +(7400,532,'_backorders','no'), +(7401,532,'_sold_individually','no'), +(7402,532,'_virtual','no'), +(7403,532,'_downloadable','no'), +(7404,532,'_download_limit','-1'), +(7405,532,'_download_expiry','-1'), +(7406,532,'_stock',NULL), +(7407,532,'_stock_status','instock'), +(7408,532,'_wc_average_rating','0'), +(7409,532,'_wc_review_count','0'), +(7410,532,'attribute_pa_size','64'), +(7411,532,'_product_version','9.8.4'), +(7413,532,'_thumbnail_id','0'), +(7421,533,'_variation_description',''), +(7422,533,'total_sales','0'), +(7423,533,'_tax_status','taxable'), +(7424,533,'_tax_class','parent'), +(7425,533,'_manage_stock','no'), +(7426,533,'_backorders','no'), +(7427,533,'_sold_individually','no'), +(7428,533,'_virtual','no'), +(7429,533,'_downloadable','no'), +(7430,533,'_download_limit','-1'), +(7431,533,'_download_expiry','-1'), +(7432,533,'_stock',NULL), +(7433,533,'_stock_status','instock'), +(7434,533,'_wc_average_rating','0'), +(7435,533,'_wc_review_count','0'), +(7436,533,'attribute_pa_size','64'), +(7437,533,'_product_version','9.3.3'), +(7439,533,'_thumbnail_id','0'), +(7440,144,'_price','75'), +(7445,534,'_variation_description',''), +(7446,534,'total_sales','0'), +(7447,534,'_tax_status','taxable'), +(7448,534,'_tax_class','parent'), +(7449,534,'_manage_stock','no'), +(7450,534,'_backorders','no'), +(7451,534,'_sold_individually','no'), +(7452,534,'_virtual','no'), +(7453,534,'_downloadable','no'), +(7454,534,'_download_limit','-1'), +(7455,534,'_download_expiry','-1'), +(7456,534,'_stock',NULL), +(7457,534,'_stock_status','instock'), +(7458,534,'_wc_average_rating','0'), +(7459,534,'_wc_review_count','0'), +(7460,534,'attribute_pa_size','64'), +(7461,534,'_product_version','9.3.3'), +(7463,534,'_thumbnail_id','0'), +(7464,155,'_price','80'), +(7478,535,'_sku','BOROBORO-BELT'), +(7480,535,'total_sales','0'), +(7481,535,'_tax_status','taxable'), +(7482,535,'_tax_class',''), +(7483,535,'_manage_stock','no'), +(7484,535,'_backorders','no'), +(7485,535,'_sold_individually','no'), +(7486,535,'_virtual','no'), +(7487,535,'_downloadable','no'), +(7488,535,'_download_limit','-1'), +(7489,535,'_download_expiry','-1'), +(7491,535,'_stock',NULL), +(7492,535,'_stock_status','instock'), +(7493,535,'_wc_average_rating','0'), +(7494,535,'_wc_review_count','0'), +(7495,535,'_product_attributes','a:1:{s:8:\"pa_stone\";a:6:{s:4:\"name\";s:8:\"pa_stone\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'), +(7496,535,'_product_version','9.4.1'), +(7502,535,'_edit_lock','1732524303:1'), +(7515,540,'_variation_description',''), +(7516,540,'total_sales','0'), +(7517,540,'_tax_status','taxable'), +(7518,540,'_tax_class','parent'), +(7519,540,'_manage_stock','no'), +(7520,540,'_backorders','no'), +(7521,540,'_sold_individually','no'), +(7522,540,'_virtual','no'), +(7523,540,'_downloadable','no'), +(7524,540,'_download_limit','-1'), +(7525,540,'_download_expiry','-1'), +(7526,540,'_stock',NULL), +(7527,540,'_stock_status','instock'), +(7528,540,'_wc_average_rating','0'), +(7529,540,'_wc_review_count','0'), +(7530,540,'attribute_pa_stone','crystal'), +(7531,540,'_product_version','9.3.3'), +(7532,541,'_variation_description',''), +(7533,541,'total_sales','0'), +(7534,541,'_tax_status','taxable'), +(7535,541,'_tax_class','parent'), +(7536,541,'_manage_stock','no'), +(7537,541,'_backorders','no'), +(7538,541,'_sold_individually','no'), +(7539,541,'_virtual','no'), +(7540,541,'_downloadable','no'), +(7541,541,'_download_limit','-1'), +(7542,541,'_download_expiry','-1'), +(7543,541,'_stock',NULL), +(7544,541,'_stock_status','instock'), +(7545,541,'_wc_average_rating','0'), +(7546,541,'_wc_review_count','0'), +(7547,541,'attribute_pa_stone','jade'), +(7548,541,'_product_version','9.3.3'), +(7549,540,'_sku','BOROBORO-BLT-crystal'), +(7550,540,'_regular_price','65'), +(7551,540,'_thumbnail_id','0'), +(7552,540,'_price','65'), +(7553,541,'_sku','BOROBORO-BLT-jade'), +(7554,541,'_regular_price','65'), +(7555,541,'_thumbnail_id','0'), +(7556,541,'_price','65'), +(7557,535,'_price','65'), +(7558,535,'_edit_last','1'), +(7559,535,'_regular_price','65'), +(7568,545,'_sku','KARA-CR1-g'), +(7570,545,'total_sales','2'), +(7571,545,'_tax_status','taxable'), +(7572,545,'_tax_class',''), +(7573,545,'_manage_stock','no'), +(7574,545,'_backorders','no'), +(7575,545,'_sold_individually','no'), +(7576,545,'_virtual','no'), +(7577,545,'_downloadable','no'), +(7578,545,'_download_limit','-1'), +(7579,545,'_download_expiry','-1'), +(7581,545,'_stock',NULL), +(7582,545,'_stock_status','instock'), +(7583,545,'_wc_average_rating','0'), +(7584,545,'_wc_review_count','0'), +(7585,545,'_product_attributes','a:1:{s:7:\"pa_side\";a:6:{s:4:\"name\";s:7:\"pa_side\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'), +(7586,545,'_product_version','9.9.3'), +(7592,545,'_edit_lock','1750342713:1'), +(7602,545,'_edit_last','1'), +(7681,552,'_variation_description',''), +(7682,552,'total_sales','0'), +(7683,552,'_tax_status','taxable'), +(7684,552,'_tax_class','parent'), +(7685,552,'_manage_stock','no'), +(7686,552,'_backorders','no'), +(7687,552,'_sold_individually','no'), +(7688,552,'_virtual','no'), +(7689,552,'_downloadable','no'), +(7690,552,'_download_limit','-1'), +(7691,552,'_download_expiry','-1'), +(7692,552,'_stock',NULL), +(7693,552,'_stock_status','instock'), +(7694,552,'_wc_average_rating','0'), +(7695,552,'_wc_review_count','0'), +(7696,552,'attribute_pa_side','one'), +(7697,552,'_product_version','9.8.4'), +(7698,553,'_variation_description',''), +(7699,553,'total_sales','0'), +(7700,553,'_tax_status','taxable'), +(7701,553,'_tax_class','parent'), +(7702,553,'_manage_stock','no'), +(7703,553,'_backorders','no'), +(7704,553,'_sold_individually','no'), +(7705,553,'_virtual','no'), +(7706,553,'_downloadable','no'), +(7707,553,'_download_limit','-1'), +(7708,553,'_download_expiry','-1'), +(7709,553,'_stock',NULL), +(7710,553,'_stock_status','instock'), +(7711,553,'_wc_average_rating','0'), +(7712,553,'_wc_review_count','0'), +(7713,553,'attribute_pa_side','pair'), +(7714,553,'_product_version','9.8.4'), +(7715,552,'_sku','KARA-CR-g-one'), +(7716,552,'_regular_price','45'), +(7717,552,'_thumbnail_id','0'), +(7718,552,'_price','45'), +(7719,553,'_sku','KARA-CR-g-pair'), +(7720,553,'_regular_price','70'), +(7721,553,'_thumbnail_id','0'), +(7722,553,'_price','70'), +(7729,554,'_sku','KARA-CR1-s'), +(7730,554,'total_sales','1'), +(7731,554,'_tax_status','taxable'), +(7732,554,'_tax_class',''), +(7733,554,'_manage_stock','no'), +(7734,554,'_backorders','no'), +(7735,554,'_sold_individually','no'), +(7736,554,'_virtual','no'), +(7737,554,'_downloadable','no'), +(7738,554,'_download_limit','-1'), +(7739,554,'_download_expiry','-1'), +(7741,554,'_stock',NULL), +(7742,554,'_stock_status','instock'), +(7743,554,'_wc_average_rating','0'), +(7744,554,'_wc_review_count','0'), +(7745,554,'_product_attributes','a:1:{s:7:\"pa_side\";a:6:{s:4:\"name\";s:7:\"pa_side\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'), +(7746,554,'_product_version','9.9.3'), +(7750,555,'_variation_description',''), +(7751,555,'_sku','KARA-CR-s-pair'), +(7752,555,'_regular_price','65'), +(7753,555,'total_sales','0'), +(7754,555,'_tax_status','taxable'), +(7755,555,'_tax_class','parent'), +(7756,555,'_manage_stock','no'), +(7757,555,'_backorders','no'), +(7758,555,'_sold_individually','no'), +(7759,555,'_virtual','no'), +(7760,555,'_downloadable','no'), +(7761,555,'_download_limit','-1'), +(7762,555,'_download_expiry','-1'), +(7763,555,'_thumbnail_id','0'), +(7764,555,'_stock',NULL), +(7765,555,'_stock_status','instock'), +(7766,555,'_wc_average_rating','0'), +(7767,555,'_wc_review_count','0'), +(7768,555,'attribute_pa_side','pair'), +(7769,555,'_price','65'), +(7770,555,'_product_version','9.8.4'), +(7771,556,'_variation_description',''), +(7772,556,'_sku','KARA-CR-s-one'), +(7773,556,'_regular_price','40'), +(7774,556,'total_sales','0'), +(7775,556,'_tax_status','taxable'), +(7776,556,'_tax_class','parent'), +(7777,556,'_manage_stock','no'), +(7778,556,'_backorders','no'), +(7779,556,'_sold_individually','no'), +(7780,556,'_virtual','no'), +(7781,556,'_downloadable','no'), +(7782,556,'_download_limit','-1'), +(7783,556,'_download_expiry','-1'), +(7784,556,'_thumbnail_id','0'), +(7785,556,'_stock',NULL), +(7786,556,'_stock_status','instock'), +(7787,556,'_wc_average_rating','0'), +(7788,556,'_wc_review_count','0'), +(7789,556,'attribute_pa_side','one'), +(7790,556,'_price','40'), +(7791,556,'_product_version','9.8.4'), +(7794,554,'_edit_lock','1750342713:1'), +(7803,554,'_edit_last','1'), +(7810,560,'_variation_description',''), +(7811,560,'total_sales','0'), +(7812,560,'_tax_status','taxable'), +(7813,560,'_tax_class','parent'), +(7814,560,'_manage_stock','no'), +(7815,560,'_backorders','no'), +(7816,560,'_sold_individually','no'), +(7817,560,'_virtual','no'), +(7818,560,'_downloadable','no'), +(7819,560,'_download_limit','-1'), +(7820,560,'_download_expiry','-1'), +(7821,560,'_stock',NULL), +(7822,560,'_stock_status','instock'), +(7823,560,'_wc_average_rating','0'), +(7824,560,'_wc_review_count','0'), +(7825,560,'attribute_pa_side','all'), +(7826,560,'_product_version','9.9.3'), +(7827,561,'_variation_description',''), +(7828,561,'total_sales','0'), +(7829,561,'_tax_status','taxable'), +(7830,561,'_tax_class','parent'), +(7831,561,'_manage_stock','no'), +(7832,561,'_backorders','no'), +(7833,561,'_sold_individually','no'), +(7834,561,'_virtual','no'), +(7835,561,'_downloadable','no'), +(7836,561,'_download_limit','-1'), +(7837,561,'_download_expiry','-1'), +(7838,561,'_stock',NULL), +(7839,561,'_stock_status','instock'), +(7840,561,'_wc_average_rating','0'), +(7841,561,'_wc_review_count','0'), +(7842,561,'attribute_pa_side','long'), +(7843,561,'_product_version','9.9.3'), +(7844,562,'_variation_description',''), +(7845,562,'total_sales','0'), +(7846,562,'_tax_status','taxable'), +(7847,562,'_tax_class','parent'), +(7848,562,'_manage_stock','no'), +(7849,562,'_backorders','no'), +(7850,562,'_sold_individually','no'), +(7851,562,'_virtual','no'), +(7852,562,'_downloadable','no'), +(7853,562,'_download_limit','-1'), +(7854,562,'_download_expiry','-1'), +(7855,562,'_stock',NULL), +(7856,562,'_stock_status','instock'), +(7857,562,'_wc_average_rating','0'), +(7858,562,'_wc_review_count','0'), +(7859,562,'attribute_pa_side','medium'), +(7860,562,'_product_version','9.9.3'), +(7861,563,'_variation_description',''), +(7862,563,'total_sales','0'), +(7863,563,'_tax_status','taxable'), +(7864,563,'_tax_class','parent'), +(7865,563,'_manage_stock','no'), +(7866,563,'_backorders','no'), +(7867,563,'_sold_individually','no'), +(7868,563,'_virtual','no'), +(7869,563,'_downloadable','no'), +(7870,563,'_download_limit','-1'), +(7871,563,'_download_expiry','-1'), +(7872,563,'_stock',NULL), +(7873,563,'_stock_status','instock'), +(7874,563,'_wc_average_rating','0'), +(7875,563,'_wc_review_count','0'), +(7876,563,'attribute_pa_side','short'), +(7877,563,'_product_version','9.9.3'), +(7878,560,'_sku','MUGURA-BOP-all'), +(7879,560,'_regular_price','55'), +(7880,560,'_thumbnail_id','0'), +(7881,560,'_price','55'), +(7882,561,'_sku','MUGURA-BOP-long'), +(7883,561,'_regular_price','38'), +(7884,561,'_thumbnail_id','0'), +(7885,561,'_price','38'), +(7886,562,'_sku','MUGURA-BOP-medium'), +(7887,562,'_regular_price','35'), +(7888,562,'_thumbnail_id','0'), +(7889,562,'_price','35'), +(7890,563,'_sku','MUGURA-BOP-short'), +(7891,563,'_regular_price','30'), +(7892,563,'_thumbnail_id','0'), +(7893,563,'_price','30'), +(7909,565,'_variation_description',''), +(7910,565,'total_sales','0'), +(7911,565,'_tax_status','taxable'), +(7912,565,'_tax_class','parent'), +(7913,565,'_manage_stock','no'), +(7914,565,'_backorders','no'), +(7915,565,'_sold_individually','no'), +(7916,565,'_virtual','no'), +(7917,565,'_downloadable','no'), +(7918,565,'_download_limit','-1'), +(7919,565,'_download_expiry','-1'), +(7920,565,'_stock',NULL), +(7921,565,'_stock_status','instock'), +(7922,565,'_wc_average_rating','0'), +(7923,565,'_wc_review_count','0'), +(7924,565,'attribute_pa_side','one-element-side'), +(7925,565,'_product_version','9.9.3'), +(7926,566,'_variation_description',''), +(7927,566,'total_sales','0'), +(7928,566,'_tax_status','taxable'), +(7929,566,'_tax_class','parent'), +(7930,566,'_manage_stock','no'), +(7931,566,'_backorders','no'), +(7932,566,'_sold_individually','no'), +(7933,566,'_virtual','no'), +(7934,566,'_downloadable','no'), +(7935,566,'_download_limit','-1'), +(7936,566,'_download_expiry','-1'), +(7937,566,'_stock',NULL), +(7938,566,'_stock_status','instock'), +(7939,566,'_wc_average_rating','0'), +(7940,566,'_wc_review_count','0'), +(7941,566,'attribute_pa_side','pair'), +(7942,566,'_product_version','9.9.3'), +(7943,567,'_variation_description',''), +(7944,567,'total_sales','0'), +(7945,567,'_tax_status','taxable'), +(7946,567,'_tax_class','parent'), +(7947,567,'_manage_stock','no'), +(7948,567,'_backorders','no'), +(7949,567,'_sold_individually','no'), +(7950,567,'_virtual','no'), +(7951,567,'_downloadable','no'), +(7952,567,'_download_limit','-1'), +(7953,567,'_download_expiry','-1'), +(7954,567,'_stock',NULL), +(7955,567,'_stock_status','instock'), +(7956,567,'_wc_average_rating','0'), +(7957,567,'_wc_review_count','0'), +(7958,567,'attribute_pa_side','two-elements-side'), +(7959,567,'_product_version','9.9.3'), +(7960,565,'_regular_price','45'), +(7961,565,'_thumbnail_id','0'), +(7962,565,'_price','45'), +(7963,566,'_regular_price','70'), +(7964,566,'_thumbnail_id','0'), +(7965,566,'_price','70'), +(7966,567,'_regular_price','45'), +(7967,567,'_thumbnail_id','0'), +(7968,567,'_price','45'), +(7980,569,'_variation_description',''), +(7981,569,'total_sales','0'), +(7982,569,'_tax_status','taxable'), +(7983,569,'_tax_class','parent'), +(7984,569,'_manage_stock','no'), +(7985,569,'_backorders','no'), +(7986,569,'_sold_individually','no'), +(7987,569,'_virtual','no'), +(7988,569,'_downloadable','no'), +(7989,569,'_download_limit','-1'), +(7990,569,'_download_expiry','-1'), +(7991,569,'_stock',NULL), +(7992,569,'_stock_status','instock'), +(7993,569,'_wc_average_rating','0'), +(7994,569,'_wc_review_count','0'), +(7995,569,'attribute_pa_side','one-element-side'), +(7996,569,'_product_version','9.8.4'), +(7997,570,'_variation_description',''), +(7998,570,'total_sales','0'), +(7999,570,'_tax_status','taxable'), +(8000,570,'_tax_class','parent'), +(8001,570,'_manage_stock','no'), +(8002,570,'_backorders','no'), +(8003,570,'_sold_individually','no'), +(8004,570,'_virtual','no'), +(8005,570,'_downloadable','no'), +(8006,570,'_download_limit','-1'), +(8007,570,'_download_expiry','-1'), +(8008,570,'_stock',NULL), +(8009,570,'_stock_status','instock'), +(8010,570,'_wc_average_rating','0'), +(8011,570,'_wc_review_count','0'), +(8012,570,'attribute_pa_side','pair'), +(8013,570,'_product_version','9.9.3'), +(8014,571,'_variation_description',''), +(8015,571,'total_sales','0'), +(8016,571,'_tax_status','taxable'), +(8017,571,'_tax_class','parent'), +(8018,571,'_manage_stock','no'), +(8019,571,'_backorders','no'), +(8020,571,'_sold_individually','no'), +(8021,571,'_virtual','no'), +(8022,571,'_downloadable','no'), +(8023,571,'_download_limit','-1'), +(8024,571,'_download_expiry','-1'), +(8025,571,'_stock',NULL), +(8026,571,'_stock_status','instock'), +(8027,571,'_wc_average_rating','0'), +(8028,571,'_wc_review_count','0'), +(8029,571,'attribute_pa_side','two-elements-side'), +(8030,571,'_product_version','9.8.4'), +(8031,569,'_sku','BOROBORO-BO2-g-one'), +(8032,569,'_regular_price','50'), +(8033,569,'_thumbnail_id','0'), +(8034,569,'_price','50'), +(8035,570,'_sku','BOROBORO-BO2-g-pair'), +(8036,570,'_regular_price','75'), +(8037,570,'_thumbnail_id','0'), +(8038,570,'_price','75'), +(8039,571,'_sku','BOROBORO-BO2-g-two'), +(8040,571,'_regular_price','50'), +(8041,571,'_thumbnail_id','0'), +(8042,571,'_price','50'), +(8052,566,'_sku','BOROBORO-BO2-s-pair'), +(8053,565,'_sku','BOROBORO-BO2-s-one'), +(8054,567,'_sku','BOROBORO-BO2-s-two'), +(8652,610,'_sku','HATTARI-BR'), +(8653,610,'_regular_price','120'), +(8654,610,'total_sales','0'), +(8655,610,'_tax_status','taxable'), +(8656,610,'_tax_class',''), +(8657,610,'_manage_stock','no'), +(8658,610,'_backorders','no'), +(8659,610,'_sold_individually','no'), +(8660,610,'_virtual','no'), +(8661,610,'_downloadable','no'), +(8662,610,'_download_limit','-1'), +(8663,610,'_download_expiry','-1'), +(8665,610,'_stock',NULL), +(8666,610,'_stock_status','instock'), +(8667,610,'_wc_average_rating','0'), +(8668,610,'_wc_review_count','0'), +(8669,610,'_product_version','9.8.4'), +(8670,610,'_price','120'), +(8674,610,'_edit_lock','1750342713:1'), +(8682,610,'_edit_last','1'), +(8686,613,'_sku','BOROBORO-B2-g'), +(8687,613,'total_sales','0'), +(8688,613,'_tax_status','taxable'), +(8689,613,'_tax_class',''), +(8690,613,'_manage_stock','no'), +(8691,613,'_backorders','no'), +(8692,613,'_sold_individually','no'), +(8693,613,'_virtual','no'), +(8694,613,'_downloadable','no'), +(8695,613,'_download_limit','-1'), +(8696,613,'_download_expiry','-1'), +(8698,613,'_stock',NULL), +(8699,613,'_stock_status','instock'), +(8700,613,'_wc_average_rating','0'), +(8701,613,'_wc_review_count','0'), +(8702,613,'_product_attributes','a:1:{s:7:\"pa_size\";a:6:{s:4:\"name\";s:7:\"pa_size\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'), +(8703,613,'_product_version','9.4.2'), +(8710,614,'_variation_description',''), +(8711,614,'_regular_price','70'), +(8712,614,'total_sales','0'), +(8713,614,'_tax_status','taxable'), +(8714,614,'_tax_class','parent'), +(8715,614,'_manage_stock','no'), +(8716,614,'_backorders','no'), +(8717,614,'_sold_individually','no'), +(8718,614,'_virtual','no'), +(8719,614,'_downloadable','no'), +(8720,614,'_download_limit','-1'), +(8721,614,'_download_expiry','-1'), +(8722,614,'_thumbnail_id','0'), +(8723,614,'_stock',NULL), +(8724,614,'_stock_status','instock'), +(8725,614,'_wc_average_rating','0'), +(8726,614,'_wc_review_count','0'), +(8727,614,'attribute_pa_size','50'), +(8728,614,'_price','70'), +(8729,614,'_product_version','9.3.3'), +(8730,615,'_variation_description',''), +(8731,615,'_regular_price','70'), +(8732,615,'total_sales','0'), +(8733,615,'_tax_status','taxable'), +(8734,615,'_tax_class','parent'), +(8735,615,'_manage_stock','no'), +(8736,615,'_backorders','no'), +(8737,615,'_sold_individually','no'), +(8738,615,'_virtual','no'), +(8739,615,'_downloadable','no'), +(8740,615,'_download_limit','-1'), +(8741,615,'_download_expiry','-1'), +(8742,615,'_thumbnail_id','0'), +(8743,615,'_stock',NULL), +(8744,615,'_stock_status','instock'), +(8745,615,'_wc_average_rating','0'), +(8746,615,'_wc_review_count','0'), +(8747,615,'attribute_pa_size','52'), +(8748,615,'_price','70'), +(8749,615,'_product_version','9.3.3'), +(8750,616,'_variation_description',''), +(8751,616,'_regular_price','70'), +(8752,616,'total_sales','0'), +(8753,616,'_tax_status','taxable'), +(8754,616,'_tax_class','parent'), +(8755,616,'_manage_stock','no'), +(8756,616,'_backorders','no'), +(8757,616,'_sold_individually','no'), +(8758,616,'_virtual','no'), +(8759,616,'_downloadable','no'), +(8760,616,'_download_limit','-1'), +(8761,616,'_download_expiry','-1'), +(8762,616,'_thumbnail_id','0'), +(8763,616,'_stock',NULL), +(8764,616,'_stock_status','instock'), +(8765,616,'_wc_average_rating','0'), +(8766,616,'_wc_review_count','0'), +(8767,616,'attribute_pa_size','54'), +(8768,616,'_price','70'), +(8769,616,'_product_version','9.3.3'), +(8770,617,'_variation_description',''), +(8771,617,'_regular_price','70'), +(8772,617,'total_sales','0'), +(8773,617,'_tax_status','taxable'), +(8774,617,'_tax_class','parent'), +(8775,617,'_manage_stock','no'), +(8776,617,'_backorders','no'), +(8777,617,'_sold_individually','no'), +(8778,617,'_virtual','no'), +(8779,617,'_downloadable','no'), +(8780,617,'_download_limit','-1'), +(8781,617,'_download_expiry','-1'), +(8782,617,'_thumbnail_id','0'), +(8783,617,'_stock',NULL), +(8784,617,'_stock_status','instock'), +(8785,617,'_wc_average_rating','0'), +(8786,617,'_wc_review_count','0'), +(8787,617,'attribute_pa_size','56'), +(8788,617,'_price','70'), +(8789,617,'_product_version','9.3.3'), +(8790,618,'_variation_description',''), +(8791,618,'_regular_price','70'), +(8792,618,'total_sales','0'), +(8793,618,'_tax_status','taxable'), +(8794,618,'_tax_class','parent'), +(8795,618,'_manage_stock','no'), +(8796,618,'_backorders','no'), +(8797,618,'_sold_individually','no'), +(8798,618,'_virtual','no'), +(8799,618,'_downloadable','no'), +(8800,618,'_download_limit','-1'), +(8801,618,'_download_expiry','-1'), +(8802,618,'_thumbnail_id','0'), +(8803,618,'_stock',NULL), +(8804,618,'_stock_status','instock'), +(8805,618,'_wc_average_rating','0'), +(8806,618,'_wc_review_count','0'), +(8807,618,'attribute_pa_size','58'), +(8808,618,'_price','70'), +(8809,618,'_product_version','9.3.3'), +(8810,619,'_variation_description',''), +(8811,619,'_regular_price','70'), +(8812,619,'total_sales','0'), +(8813,619,'_tax_status','taxable'), +(8814,619,'_tax_class','parent'), +(8815,619,'_manage_stock','no'), +(8816,619,'_backorders','no'), +(8817,619,'_sold_individually','no'), +(8818,619,'_virtual','no'), +(8819,619,'_downloadable','no'), +(8820,619,'_download_limit','-1'), +(8821,619,'_download_expiry','-1'), +(8822,619,'_thumbnail_id','0'), +(8823,619,'_stock',NULL), +(8824,619,'_stock_status','instock'), +(8825,619,'_wc_average_rating','0'), +(8826,619,'_wc_review_count','0'), +(8827,619,'attribute_pa_size','60'), +(8828,619,'_price','70'), +(8829,619,'_product_version','9.3.3'), +(8830,620,'_variation_description',''), +(8831,620,'_regular_price','70'), +(8832,620,'total_sales','0'), +(8833,620,'_tax_status','taxable'), +(8834,620,'_tax_class','parent'), +(8835,620,'_manage_stock','no'), +(8836,620,'_backorders','no'), +(8837,620,'_sold_individually','no'), +(8838,620,'_virtual','no'), +(8839,620,'_downloadable','no'), +(8840,620,'_download_limit','-1'), +(8841,620,'_download_expiry','-1'), +(8842,620,'_thumbnail_id','0'), +(8843,620,'_stock',NULL), +(8844,620,'_stock_status','instock'), +(8845,620,'_wc_average_rating','0'), +(8846,620,'_wc_review_count','0'), +(8847,620,'attribute_pa_size','62'), +(8848,620,'_price','70'), +(8849,620,'_product_version','9.4.1'), +(8851,613,'_edit_lock','1750342643:1'), +(8861,624,'_variation_description',''), +(8862,624,'total_sales','0'), +(8863,624,'_tax_status','taxable'), +(8864,624,'_tax_class','parent'), +(8865,624,'_manage_stock','no'), +(8866,624,'_backorders','no'), +(8867,624,'_sold_individually','no'), +(8868,624,'_virtual','no'), +(8869,624,'_downloadable','no'), +(8870,624,'_download_limit','-1'), +(8871,624,'_download_expiry','-1'), +(8872,624,'_stock',NULL), +(8873,624,'_stock_status','instock'), +(8874,624,'_wc_average_rating','0'), +(8875,624,'_wc_review_count','0'), +(8876,624,'attribute_pa_size','64'), +(8877,624,'_product_version','9.3.3'), +(8879,624,'_sku','BOROBORO-B2-g-60'), +(8880,624,'_regular_price','70'), +(8881,624,'_thumbnail_id','0'), +(8882,624,'_price','70'), +(8883,614,'_sku','BOROBORO-B2-g-50'), +(8884,615,'_sku','BOROBORO-B2-g-52'), +(8885,616,'_sku','BOROBORO-B2-g-54'), +(8886,617,'_sku','BOROBORO-B2-g-56'), +(8887,618,'_sku','BOROBORO-B2-g-58'), +(8890,613,'_edit_last','1'), +(8895,625,'_sku','BOROBORO-B2-s'), +(8896,625,'total_sales','0'), +(8897,625,'_tax_status','taxable'), +(8898,625,'_tax_class',''), +(8899,625,'_manage_stock','no'), +(8900,625,'_backorders','no'), +(8901,625,'_sold_individually','no'), +(8902,625,'_virtual','no'), +(8903,625,'_downloadable','no'), +(8904,625,'_download_limit','-1'), +(8905,625,'_download_expiry','-1'), +(8907,625,'_stock',NULL), +(8908,625,'_stock_status','instock'), +(8909,625,'_wc_average_rating','0'), +(8910,625,'_wc_review_count','0'), +(8911,625,'_product_attributes','a:1:{s:7:\"pa_size\";a:6:{s:4:\"name\";s:7:\"pa_size\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'), +(8912,625,'_product_version','9.4.2'), +(8917,626,'_variation_description',''), +(8918,626,'_sku','BOROBORO-B2-s-50'), +(8919,626,'_regular_price','65'), +(8920,626,'total_sales','0'), +(8921,626,'_tax_status','taxable'), +(8922,626,'_tax_class','parent'), +(8923,626,'_manage_stock','no'), +(8924,626,'_backorders','no'), +(8925,626,'_sold_individually','no'), +(8926,626,'_virtual','no'), +(8927,626,'_downloadable','no'), +(8928,626,'_download_limit','-1'), +(8929,626,'_download_expiry','-1'), +(8930,626,'_thumbnail_id','0'), +(8931,626,'_stock',NULL), +(8932,626,'_stock_status','instock'), +(8933,626,'_wc_average_rating','0'), +(8934,626,'_wc_review_count','0'), +(8935,626,'attribute_pa_size','50'), +(8936,626,'_price','65'), +(8937,626,'_product_version','9.3.3'), +(8938,627,'_variation_description',''), +(8939,627,'_sku','BOROBORO-B2-s-52'), +(8940,627,'_regular_price','65'), +(8941,627,'total_sales','0'), +(8942,627,'_tax_status','taxable'), +(8943,627,'_tax_class','parent'), +(8944,627,'_manage_stock','no'), +(8945,627,'_backorders','no'), +(8946,627,'_sold_individually','no'), +(8947,627,'_virtual','no'), +(8948,627,'_downloadable','no'), +(8949,627,'_download_limit','-1'), +(8950,627,'_download_expiry','-1'), +(8951,627,'_thumbnail_id','0'), +(8952,627,'_stock',NULL), +(8953,627,'_stock_status','instock'), +(8954,627,'_wc_average_rating','0'), +(8955,627,'_wc_review_count','0'), +(8956,627,'attribute_pa_size','52'), +(8957,627,'_price','65'), +(8958,627,'_product_version','9.3.3'), +(8959,628,'_variation_description',''), +(8960,628,'_sku','BOROBORO-B2-s-54'), +(8961,628,'_regular_price','65'), +(8962,628,'total_sales','0'), +(8963,628,'_tax_status','taxable'), +(8964,628,'_tax_class','parent'), +(8965,628,'_manage_stock','no'), +(8966,628,'_backorders','no'), +(8967,628,'_sold_individually','no'), +(8968,628,'_virtual','no'), +(8969,628,'_downloadable','no'), +(8970,628,'_download_limit','-1'), +(8971,628,'_download_expiry','-1'), +(8972,628,'_thumbnail_id','0'), +(8973,628,'_stock',NULL), +(8974,628,'_stock_status','instock'), +(8975,628,'_wc_average_rating','0'), +(8976,628,'_wc_review_count','0'), +(8977,628,'attribute_pa_size','54'), +(8978,628,'_price','65'), +(8979,628,'_product_version','9.3.3'), +(8980,629,'_variation_description',''), +(8981,629,'_sku','BOROBORO-B2-s-56'), +(8982,629,'_regular_price','65'), +(8983,629,'total_sales','0'), +(8984,629,'_tax_status','taxable'), +(8985,629,'_tax_class','parent'), +(8986,629,'_manage_stock','no'), +(8987,629,'_backorders','no'), +(8988,629,'_sold_individually','no'), +(8989,629,'_virtual','no'), +(8990,629,'_downloadable','no'), +(8991,629,'_download_limit','-1'), +(8992,629,'_download_expiry','-1'), +(8993,629,'_thumbnail_id','0'), +(8994,629,'_stock',NULL), +(8995,629,'_stock_status','instock'), +(8996,629,'_wc_average_rating','0'), +(8997,629,'_wc_review_count','0'), +(8998,629,'attribute_pa_size','56'), +(8999,629,'_price','65'), +(9000,629,'_product_version','9.3.3'), +(9001,630,'_variation_description',''), +(9002,630,'_sku','BOROBORO-B2-s-58'), +(9003,630,'_regular_price','65'), +(9004,630,'total_sales','0'), +(9005,630,'_tax_status','taxable'), +(9006,630,'_tax_class','parent'), +(9007,630,'_manage_stock','no'), +(9008,630,'_backorders','no'), +(9009,630,'_sold_individually','no'), +(9010,630,'_virtual','no'), +(9011,630,'_downloadable','no'), +(9012,630,'_download_limit','-1'), +(9013,630,'_download_expiry','-1'), +(9014,630,'_thumbnail_id','0'), +(9015,630,'_stock',NULL), +(9016,630,'_stock_status','instock'), +(9017,630,'_wc_average_rating','0'), +(9018,630,'_wc_review_count','0'), +(9019,630,'attribute_pa_size','58'), +(9020,630,'_price','65'), +(9021,630,'_product_version','9.3.3'), +(9022,631,'_variation_description',''), +(9023,631,'_regular_price','65'), +(9024,631,'total_sales','0'), +(9025,631,'_tax_status','taxable'), +(9026,631,'_tax_class','parent'), +(9027,631,'_manage_stock','no'), +(9028,631,'_backorders','no'), +(9029,631,'_sold_individually','no'), +(9030,631,'_virtual','no'), +(9031,631,'_downloadable','no'), +(9032,631,'_download_limit','-1'), +(9033,631,'_download_expiry','-1'), +(9034,631,'_thumbnail_id','0'), +(9035,631,'_stock',NULL), +(9036,631,'_stock_status','instock'), +(9037,631,'_wc_average_rating','0'), +(9038,631,'_wc_review_count','0'), +(9039,631,'attribute_pa_size','60'), +(9040,631,'_price','65'), +(9041,631,'_product_version','9.3.3'), +(9042,632,'_variation_description',''), +(9043,632,'_regular_price','65'), +(9044,632,'total_sales','0'), +(9045,632,'_tax_status','taxable'), +(9046,632,'_tax_class','parent'), +(9047,632,'_manage_stock','no'), +(9048,632,'_backorders','no'), +(9049,632,'_sold_individually','no'), +(9050,632,'_virtual','no'), +(9051,632,'_downloadable','no'), +(9052,632,'_download_limit','-1'), +(9053,632,'_download_expiry','-1'), +(9054,632,'_thumbnail_id','0'), +(9055,632,'_stock',NULL), +(9056,632,'_stock_status','instock'), +(9057,632,'_wc_average_rating','0'), +(9058,632,'_wc_review_count','0'), +(9059,632,'attribute_pa_size','62'), +(9060,632,'_price','65'), +(9061,632,'_product_version','9.3.3'), +(9062,633,'_variation_description',''), +(9063,633,'_sku','BOROBORO-B2-s-64'), +(9064,633,'_regular_price','65'), +(9065,633,'total_sales','0'), +(9066,633,'_tax_status','taxable'), +(9067,633,'_tax_class','parent'), +(9068,633,'_manage_stock','no'), +(9069,633,'_backorders','no'), +(9070,633,'_sold_individually','no'), +(9071,633,'_virtual','no'), +(9072,633,'_downloadable','no'), +(9073,633,'_download_limit','-1'), +(9074,633,'_download_expiry','-1'), +(9075,633,'_thumbnail_id','0'), +(9076,633,'_stock',NULL), +(9077,633,'_stock_status','instock'), +(9078,633,'_wc_average_rating','0'), +(9079,633,'_wc_review_count','0'), +(9080,633,'attribute_pa_size','64'), +(9081,633,'_price','65'), +(9082,633,'_product_version','9.3.3'), +(9085,625,'_edit_lock','1750342642:1'), +(9095,631,'_sku','BOROBORO-B2-s-60'), +(9096,625,'_price','65'), +(9097,625,'_edit_last','1'), +(9102,637,'_variation_description',''), +(9103,637,'total_sales','0'), +(9104,637,'_tax_status','taxable'), +(9105,637,'_tax_class','parent'), +(9106,637,'_manage_stock','no'), +(9107,637,'_backorders','no'), +(9108,637,'_sold_individually','no'), +(9109,637,'_virtual','no'), +(9110,637,'_downloadable','no'), +(9111,637,'_download_limit','-1'), +(9112,637,'_download_expiry','-1'), +(9113,637,'_stock',NULL), +(9114,637,'_stock_status','instock'), +(9115,637,'_wc_average_rating','0'), +(9116,637,'_wc_review_count','0'), +(9117,637,'attribute_pa_side','left-side'), +(9118,637,'_product_version','9.4.1'), +(9119,638,'_variation_description',''), +(9120,638,'total_sales','0'), +(9121,638,'_tax_status','taxable'), +(9122,638,'_tax_class','parent'), +(9123,638,'_manage_stock','no'), +(9124,638,'_backorders','no'), +(9125,638,'_sold_individually','no'), +(9126,638,'_virtual','no'), +(9127,638,'_downloadable','no'), +(9128,638,'_download_limit','-1'), +(9129,638,'_download_expiry','-1'), +(9130,638,'_stock',NULL), +(9131,638,'_stock_status','instock'), +(9132,638,'_wc_average_rating','0'), +(9133,638,'_wc_review_count','0'), +(9134,638,'attribute_pa_side','pair'), +(9135,638,'_product_version','9.3.3'), +(9136,639,'_variation_description',''), +(9137,639,'total_sales','0'), +(9138,639,'_tax_status','taxable'), +(9139,639,'_tax_class','parent'), +(9140,639,'_manage_stock','no'), +(9141,639,'_backorders','no'), +(9142,639,'_sold_individually','no'), +(9143,639,'_virtual','no'), +(9144,639,'_downloadable','no'), +(9145,639,'_download_limit','-1'), +(9146,639,'_download_expiry','-1'), +(9147,639,'_stock',NULL), +(9148,639,'_stock_status','instock'), +(9149,639,'_wc_average_rating','0'), +(9150,639,'_wc_review_count','0'), +(9151,639,'attribute_pa_side','right-side'), +(9152,639,'_product_version','9.3.3'), +(9153,637,'_sku','PIASU-BO-left'), +(9154,637,'_regular_price','50'), +(9155,637,'_thumbnail_id','0'), +(9156,637,'_price','50'), +(9157,638,'_sku','PIASU-BO-pair'), +(9158,638,'_regular_price','85'), +(9159,638,'_thumbnail_id','0'), +(9160,638,'_price','85'), +(9161,639,'_sku','PIASU-BO-right'), +(9162,639,'_regular_price','50'), +(9163,639,'_thumbnail_id','0'), +(9164,639,'_price','50'), +(9214,641,'_variation_description',''), +(9215,641,'total_sales','0'), +(9216,641,'_tax_status','taxable'), +(9217,641,'_tax_class','parent'), +(9218,641,'_manage_stock','no'), +(9219,641,'_backorders','no'), +(9220,641,'_sold_individually','no'), +(9221,641,'_virtual','no'), +(9222,641,'_downloadable','no'), +(9223,641,'_download_limit','-1'), +(9224,641,'_download_expiry','-1'), +(9225,641,'_stock',NULL), +(9226,641,'_stock_status','instock'), +(9227,641,'_wc_average_rating','0'), +(9228,641,'_wc_review_count','0'), +(9229,641,'attribute_pa_side','left-side'), +(9230,641,'_product_version','9.8.4'), +(9231,642,'_variation_description',''), +(9232,642,'total_sales','0'), +(9233,642,'_tax_status','taxable'), +(9234,642,'_tax_class','parent'), +(9235,642,'_manage_stock','no'), +(9236,642,'_backorders','no'), +(9237,642,'_sold_individually','no'), +(9238,642,'_virtual','no'), +(9239,642,'_downloadable','no'), +(9240,642,'_download_limit','-1'), +(9241,642,'_download_expiry','-1'), +(9242,642,'_stock',NULL), +(9243,642,'_stock_status','instock'), +(9244,642,'_wc_average_rating','0'), +(9245,642,'_wc_review_count','0'), +(9246,642,'attribute_pa_side','pair'), +(9247,642,'_product_version','9.9.3'), +(9248,643,'_variation_description',''), +(9249,643,'total_sales','0'), +(9250,643,'_tax_status','taxable'), +(9251,643,'_tax_class','parent'), +(9252,643,'_manage_stock','no'), +(9253,643,'_backorders','no'), +(9254,643,'_sold_individually','no'), +(9255,643,'_virtual','no'), +(9256,643,'_downloadable','no'), +(9257,643,'_download_limit','-1'), +(9258,643,'_download_expiry','-1'), +(9259,643,'_stock',NULL), +(9260,643,'_stock_status','instock'), +(9261,643,'_wc_average_rating','0'), +(9262,643,'_wc_review_count','0'), +(9263,643,'attribute_pa_side','right-side'), +(9264,643,'_product_version','9.8.4'), +(9265,641,'_sku','HATTARI-CR1-s-left'), +(9266,641,'_regular_price','55'), +(9267,641,'_thumbnail_id','0'), +(9268,641,'_price','55'), +(9269,642,'_sku','HATTARI-CR1-s-pair'), +(9270,642,'_regular_price','85'), +(9271,642,'_thumbnail_id','0'), +(9272,642,'_price','85'), +(9273,643,'_sku','HATTARI-CR1-s-right'), +(9274,643,'_regular_price','55'), +(9275,643,'_thumbnail_id','0'), +(9276,643,'_price','55'), +(9286,645,'_variation_description',''), +(9287,645,'total_sales','0'), +(9288,645,'_tax_status','taxable'), +(9289,645,'_tax_class','parent'), +(9290,645,'_manage_stock','no'), +(9291,645,'_backorders','no'), +(9292,645,'_sold_individually','no'), +(9293,645,'_virtual','no'), +(9294,645,'_downloadable','no'), +(9295,645,'_download_limit','-1'), +(9296,645,'_download_expiry','-1'), +(9297,645,'_stock',NULL), +(9298,645,'_stock_status','instock'), +(9299,645,'_wc_average_rating','0'), +(9300,645,'_wc_review_count','0'), +(9301,645,'attribute_pa_side','left-side'), +(9302,645,'_product_version','9.8.4'), +(9303,646,'_variation_description',''), +(9304,646,'total_sales','0'), +(9305,646,'_tax_status','taxable'), +(9306,646,'_tax_class','parent'), +(9307,646,'_manage_stock','no'), +(9308,646,'_backorders','no'), +(9309,646,'_sold_individually','no'), +(9310,646,'_virtual','no'), +(9311,646,'_downloadable','no'), +(9312,646,'_download_limit','-1'), +(9313,646,'_download_expiry','-1'), +(9314,646,'_stock',NULL), +(9315,646,'_stock_status','instock'), +(9316,646,'_wc_average_rating','0'), +(9317,646,'_wc_review_count','0'), +(9318,646,'attribute_pa_side','pair'), +(9319,646,'_product_version','9.9.3'), +(9320,647,'_variation_description',''), +(9321,647,'total_sales','0'), +(9322,647,'_tax_status','taxable'), +(9323,647,'_tax_class','parent'), +(9324,647,'_manage_stock','no'), +(9325,647,'_backorders','no'), +(9326,647,'_sold_individually','no'), +(9327,647,'_virtual','no'), +(9328,647,'_downloadable','no'), +(9329,647,'_download_limit','-1'), +(9330,647,'_download_expiry','-1'), +(9331,647,'_stock',NULL), +(9332,647,'_stock_status','instock'), +(9333,647,'_wc_average_rating','0'), +(9334,647,'_wc_review_count','0'), +(9335,647,'attribute_pa_side','right-side'), +(9336,647,'_product_version','9.8.4'), +(9337,645,'_sku','HATTARI-CR1-g-left'), +(9338,645,'_regular_price','60'), +(9339,645,'_thumbnail_id','0'), +(9340,645,'_price','60'), +(9341,646,'_sku','HATTARI-CR1-g-pair'), +(9342,646,'_regular_price','90'), +(9343,646,'_thumbnail_id','0'), +(9344,646,'_price','90'), +(9345,647,'_sku','HATTARI-CR1-g-right'), +(9346,647,'_regular_price','60'), +(9347,647,'_thumbnail_id','0'), +(9348,647,'_price','60'), +(9427,651,'_variation_description',''), +(9428,651,'total_sales','0'), +(9429,651,'_tax_status','taxable'), +(9430,651,'_tax_class','parent'), +(9431,651,'_manage_stock','no'), +(9432,651,'_backorders','no'), +(9433,651,'_sold_individually','no'), +(9434,651,'_virtual','no'), +(9435,651,'_downloadable','no'), +(9436,651,'_download_limit','-1'), +(9437,651,'_download_expiry','-1'), +(9438,651,'_stock',NULL), +(9439,651,'_stock_status','instock'), +(9440,651,'_wc_average_rating','0'), +(9441,651,'_wc_review_count','0'), +(9442,651,'attribute_pa_side','long'), +(9443,651,'_product_version','9.3.3'), +(9444,652,'_variation_description',''), +(9445,652,'total_sales','0'), +(9446,652,'_tax_status','taxable'), +(9447,652,'_tax_class','parent'), +(9448,652,'_manage_stock','no'), +(9449,652,'_backorders','no'), +(9450,652,'_sold_individually','no'), +(9451,652,'_virtual','no'), +(9452,652,'_downloadable','no'), +(9453,652,'_download_limit','-1'), +(9454,652,'_download_expiry','-1'), +(9455,652,'_stock',NULL), +(9456,652,'_stock_status','instock'), +(9457,652,'_wc_average_rating','0'), +(9458,652,'_wc_review_count','0'), +(9459,652,'attribute_pa_side','pair'), +(9460,652,'_product_version','9.3.3'), +(9461,653,'_variation_description',''), +(9462,653,'total_sales','0'), +(9463,653,'_tax_status','taxable'), +(9464,653,'_tax_class','parent'), +(9465,653,'_manage_stock','no'), +(9466,653,'_backorders','no'), +(9467,653,'_sold_individually','no'), +(9468,653,'_virtual','no'), +(9469,653,'_downloadable','no'), +(9470,653,'_download_limit','-1'), +(9471,653,'_download_expiry','-1'), +(9472,653,'_stock',NULL), +(9473,653,'_stock_status','instock'), +(9474,653,'_wc_average_rating','0'), +(9475,653,'_wc_review_count','0'), +(9476,653,'attribute_pa_side','short'), +(9477,653,'_product_version','9.4.1'), +(9478,651,'_sku','TAMANORI-CR-s-long'), +(9479,651,'_regular_price','50'), +(9480,651,'_thumbnail_id','0'), +(9481,651,'_price','50'), +(9482,652,'_sku','TAMANORI-CR-s-pair'), +(9483,652,'_regular_price','70'), +(9484,652,'_thumbnail_id','0'), +(9485,652,'_price','70'), +(9486,653,'_sku','TAMANORI-CR-s-short'), +(9487,653,'_regular_price','48'), +(9488,653,'_thumbnail_id','0'), +(9489,653,'_price','48'), +(9498,654,'_variation_description',''), +(9499,654,'total_sales','0'), +(9500,654,'_tax_status','taxable'), +(9501,654,'_tax_class','parent'), +(9502,654,'_manage_stock','no'), +(9503,654,'_backorders','no'), +(9504,654,'_sold_individually','no'), +(9505,654,'_virtual','no'), +(9506,654,'_downloadable','no'), +(9507,654,'_download_limit','-1'), +(9508,654,'_download_expiry','-1'), +(9509,654,'_stock',NULL), +(9510,654,'_stock_status','instock'), +(9511,654,'_wc_average_rating','0'), +(9512,654,'_wc_review_count','0'), +(9513,654,'attribute_pa_side','long'), +(9514,654,'_product_version','9.4.1'), +(9515,655,'_variation_description',''), +(9516,655,'total_sales','0'), +(9517,655,'_tax_status','taxable'), +(9518,655,'_tax_class','parent'), +(9519,655,'_manage_stock','no'), +(9520,655,'_backorders','no'), +(9521,655,'_sold_individually','no'), +(9522,655,'_virtual','no'), +(9523,655,'_downloadable','no'), +(9524,655,'_download_limit','-1'), +(9525,655,'_download_expiry','-1'), +(9526,655,'_stock',NULL), +(9527,655,'_stock_status','instock'), +(9528,655,'_wc_average_rating','0'), +(9529,655,'_wc_review_count','0'), +(9530,655,'attribute_pa_side','pair'), +(9531,655,'_product_version','9.3.3'), +(9532,656,'_variation_description',''), +(9533,656,'total_sales','0'), +(9534,656,'_tax_status','taxable'), +(9535,656,'_tax_class','parent'), +(9536,656,'_manage_stock','no'), +(9537,656,'_backorders','no'), +(9538,656,'_sold_individually','no'), +(9539,656,'_virtual','no'), +(9540,656,'_downloadable','no'), +(9541,656,'_download_limit','-1'), +(9542,656,'_download_expiry','-1'), +(9543,656,'_stock',NULL), +(9544,656,'_stock_status','instock'), +(9545,656,'_wc_average_rating','0'), +(9546,656,'_wc_review_count','0'), +(9547,656,'attribute_pa_side','short'), +(9548,656,'_product_version','9.4.1'), +(9549,654,'_sku','TAMANORI-CR-g-long'), +(9550,654,'_regular_price','52'), +(9551,654,'_thumbnail_id','0'), +(9552,654,'_price','52'), +(9553,655,'_sku','TAMANORI-CR-g-pair'), +(9554,655,'_regular_price','75'), +(9555,655,'_thumbnail_id','0'), +(9556,655,'_price','75'), +(9557,656,'_sku','TAMANORI-CR-g-short'), +(9558,656,'_regular_price','50'), +(9559,656,'_thumbnail_id','0'), +(9560,656,'_price','50'), +(9575,659,'_wp_attached_file','2024/09/HADOU-B-opti.jpg'), +(9576,659,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:24:\"2024/09/HADOU-B-opti.jpg\";s:8:\"filesize\";i:249510;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), +(9577,659,'_wp_attachment_image_alt','Hadou wavy ring mix of silver and gold plated silver.'), +(9584,660,'_wp_attached_file','2024/10/IMG_1442.jpg'), +(9585,660,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:20:\"2024/10/IMG_1442.jpg\";s:8:\"filesize\";i:1029972;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_1442-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19538;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), +(9586,660,'_wp_attachment_image_alt','Tamanori oval gold plated hoops with dangling chains.'), +(9587,306,'_price','48'), +(9588,306,'_price','50'), +(9589,306,'_price','70'), +(9590,306,'_photos_colonne_gauche|||0|value','310'), +(9591,306,'_photos_colonne_droite|||0|value','311'), +(9592,306,'_photos_colonne_droite|||1|value','424'), +(9593,306,'_haiku_details_produit',''), +(9594,312,'_price','50'), +(9595,312,'_price','52'), +(9596,312,'_price','75'), +(9601,661,'_wp_attached_file','2024/10/IMG_1454.jpg'), +(9602,661,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:20:\"2024/10/IMG_1454.jpg\";s:8:\"filesize\";i:849459;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_1454-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15222;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), +(9603,661,'_wp_attachment_image_alt','Piasu earrings in silver covering ear lobe with three hoops hanging on it'), +(9604,202,'_price','50'), +(9605,202,'_price','85'), +(9612,662,'_wp_attached_file','2024/10/IMG_1456.jpg'), +(9613,662,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:20:\"2024/10/IMG_1456.jpg\";s:8:\"filesize\";i:730806;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_1456-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22777;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), +(9614,662,'_wp_attachment_image_alt','Piasu earrings in silver covering ear lobe with three hoops hanging on it'), +(9615,202,'_photos_colonne_gauche|||0|value','206'), +(9616,202,'_photos_colonne_droite|||0|value','662'), +(9617,202,'_photos_colonne_droite|||1|value','661'), +(9618,202,'_photos_colonne_droite|||2|value','212'), +(9619,202,'_photos_colonne_droite|||3|value','207'), +(9620,202,'_haiku_details_produit',''), +(9627,664,'_wp_attached_file','2024/10/IMG_1512.jpg'), +(9628,664,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:20:\"2024/10/IMG_1512.jpg\";s:8:\"filesize\";i:873482;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_1512-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17996;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), +(9629,664,'_wp_attachment_image_alt','Kagun trio of earrings in mix of silver and gold plated silver, with minimalist shapes and fresh water pearls'), +(9693,671,'_wp_attached_file','2024/10/IMG_1604.jpg'), +(9694,671,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:20:\"2024/10/IMG_1604.jpg\";s:8:\"filesize\";i:876712;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_1604-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16608;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), +(9695,671,'_wp_attachment_image_alt','pair of Boroboro long gold plated silver earrings with asymmetrical shapes.'), +(9701,672,'_wp_attached_file','2024/10/IMG_1656-1.jpg'), +(9702,672,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:22:\"2024/10/IMG_1656-1.jpg\";s:8:\"filesize\";i:1095755;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"IMG_1656-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16180;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), +(9703,672,'_wp_attachment_image_alt','Hattari ear cuff gold plated.'), +(9713,673,'_wp_attached_file','2024/10/IMG_1657.jpg'), +(9714,673,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:20:\"2024/10/IMG_1657.jpg\";s:8:\"filesize\";i:901473;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_1657-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16418;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), +(9715,673,'_wp_attachment_image_alt','Mugura minimalist silver hoops.'), +(9833,478,'_regular_price','48'), +(9834,478,'_price','48'), +(9835,479,'_regular_price','48'), +(9836,479,'_price','48'), +(9837,480,'_regular_price','48'), +(9838,480,'_price','48'), +(9840,433,'_price','48'), +(9850,613,'_price','70'), +(9851,679,'_wp_attached_file','2024/10/DSC9116.jpg'), +(9852,679,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:19:\"2024/10/DSC9116.jpg\";s:8:\"filesize\";i:485510;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"DSC9116-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12868;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), +(9853,679,'_wp_attachment_image_alt','Fuyou sterling silver necklace with rectangle trace chain and fluid elements, gold plated dangling detail.'), +(9892,681,'_wp_attached_file','2024/09/DSC9897.jpg'), +(9893,681,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:19:\"2024/09/DSC9897.jpg\";s:8:\"filesize\";i:689413;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"DSC9897-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7272;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), +(9894,681,'_wp_attachment_image_alt','Piasu wide band silver ring with three hoops, one in 18K gold.'), +(9906,683,'_wp_attached_file','2024/09/IMG_1423.jpg'), +(9907,683,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:20:\"2024/09/IMG_1423.jpg\";s:8:\"filesize\";i:534598;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_1423-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14614;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), +(9908,683,'_wp_attachment_image_alt','Hattari double finger ring with a mix of bands in sterling silver and gold plated silver.'), +(9915,684,'_wp_attached_file','2024/09/IMG_1478.jpg'), +(9916,684,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:20:\"2024/09/IMG_1478.jpg\";s:8:\"filesize\";i:867867;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_1478-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17799;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), +(9917,684,'_wp_attachment_image_alt','Ikkan gold plated silver ring with oversized link on top.'), +(9947,689,'_wp_attached_file','2024/10/DSC9341.jpg'), +(9948,689,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:19:\"2024/10/DSC9341.jpg\";s:8:\"filesize\";i:635454;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"DSC9341-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13949;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), +(9949,689,'_wp_attachment_image_alt','Hattari stacked hoops in gold plated silver.'), +(9954,690,'_wp_attached_file','2024/10/FUYOU-C-1.jpg'), +(9955,690,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:21:\"2024/10/FUYOU-C-1.jpg\";s:8:\"filesize\";i:394786;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"FUYOU-C-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7048;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), +(9956,690,'_wp_attachment_image_alt','Fuyou sterling silver necklace with rectangle trace chain and fluid elements, gold plated dangling detail.'), +(9967,691,'_wp_attached_file','2024/10/FUYOU-CR1.jpg'), +(9968,691,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:21:\"2024/10/FUYOU-CR1.jpg\";s:8:\"filesize\";i:235970;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"FUYOU-CR1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4020;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:21:\"FUYOU-CR1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4020;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), +(9969,691,'_wp_attachment_image_alt','Fuyou solo hoop in sterling silver with gold plated rings hanging.'), +(9970,318,'_thumbnail_id','691'), +(9976,692,'_wp_attached_file','2024/10/HADOU-BR-mix.jpg'), +(9977,692,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:24:\"2024/10/HADOU-BR-mix.jpg\";s:8:\"filesize\";i:312958;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"HADOU-BR-mix-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6692;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:24:\"HADOU-BR-mix-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6692;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), +(9978,692,'_wp_attachment_image_alt','Hadou wavy blangles in silver and gold plated silver.'), +(9988,696,'_wp_attached_file','2024/10/IKKAN-C-3.jpg'), +(9989,696,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:21:\"2024/10/IKKAN-C-3.jpg\";s:8:\"filesize\";i:431103;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"IKKAN-C-3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7161;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:21:\"IKKAN-C-3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7161;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), +(9990,696,'_wp_attachment_image_alt','Ikkan necklace in sterling silver with some gold plated links.'), +(9991,263,'_thumbnail_id','696'), +(9998,698,'_wp_attached_file','2024/10/IMG_1428-1.jpg'), +(9999,698,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:22:\"2024/10/IMG_1428-1.jpg\";s:8:\"filesize\";i:484518;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"IMG_1428-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9487;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), +(10000,698,'_wp_attachment_image_alt','Fuyou gold plated chain bracelet with fluid element'), +(10004,700,'_wp_attached_file','2024/10/IMG_1431.jpg'), +(10005,700,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:20:\"2024/10/IMG_1431.jpg\";s:8:\"filesize\";i:1757156;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_1431-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10441;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), +(10006,700,'_wp_attachment_image_alt','Tanemaki bracelet mixing chains and fresh water pearls.'), +(10011,702,'_wp_attached_file','2024/10/IMG_1432.jpg'), +(10012,702,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:20:\"2024/10/IMG_1432.jpg\";s:8:\"filesize\";i:540692;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_1432-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10290;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), +(10013,702,'_wp_attachment_image_alt','Tanemaki bracelet mixing chains and fresh water pearls.'), +(10021,704,'_wp_attached_file','2024/10/IMG_1493.jpg'), +(10022,704,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:20:\"2024/10/IMG_1493.jpg\";s:8:\"filesize\";i:985049;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_1493-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18845;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), +(10023,704,'_wp_attachment_image_alt','Piasu necklace mixing gold plated and silver chains'), +(10028,705,'_wp_attached_file','2024/10/IMG_1531.jpg'), +(10029,705,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:20:\"2024/10/IMG_1531.jpg\";s:8:\"filesize\";i:774222;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_1531-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12309;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), +(10030,705,'_wp_attachment_image_alt','Rokku statement necklace in sterling silver with semi precious stone pendant.'), +(10031,707,'_wp_attached_file','2024/10/IMG_1543.jpg'), +(10032,707,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:20:\"2024/10/IMG_1543.jpg\";s:8:\"filesize\";i:776895;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_1543-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14251;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), +(10033,707,'_wp_attachment_image_alt','Rokku statement necklace in sterling silver with semi precious stone pendant.'), +(10041,708,'_wp_attached_file','2024/10/IMG_1565.jpg'), +(10042,708,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:20:\"2024/10/IMG_1565.jpg\";s:8:\"filesize\";i:570527;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_1565-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11827;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), +(10043,708,'_wp_attachment_image_alt','Ikkan necklace in sterling silver with some gold plated links'), +(10081,713,'_wp_attached_file','2024/10/IMG_1647.jpg'), +(10082,713,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:20:\"2024/10/IMG_1647.jpg\";s:8:\"filesize\";i:703654;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_1647-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13572;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), +(10083,713,'_wp_attachment_image_alt','Fuyou sterling silver necklace with rectangle trace chain and fluid elements, gold plated dangling detail'), +(10084,274,'_photos_colonne_gauche|||0|value','275'), +(10085,274,'_photos_colonne_droite|||0|value','713'), +(10086,274,'_photos_colonne_droite|||1|value','690'), +(10087,274,'_photos_colonne_droite|||2|value','679'), +(10088,274,'_haiku_details_produit',''), +(10089,714,'_wp_attached_file','2024/10/IMG_1651.jpg'), +(10090,714,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:20:\"2024/10/IMG_1651.jpg\";s:8:\"filesize\";i:639347;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_1651-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14332;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), +(10091,714,'_wp_attachment_image_alt','Fuyou solo hoop and Hadou ear cuff in sterling silver'), +(10097,715,'_wp_attached_file','2024/10/IMG_1669.jpg'), +(10098,715,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:20:\"2024/10/IMG_1669.jpg\";s:8:\"filesize\";i:642926;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_1669-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15261;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), +(10099,715,'_wp_attachment_image_alt','Rokku solo hoop silver with tiger\'s eye and Tamanori earrings gold plated silver.'), +(10126,718,'_wp_attached_file','2024/10/IMG_1746.jpg'), +(10127,718,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:20:\"2024/10/IMG_1746.jpg\";s:8:\"filesize\";i:684400;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_1746-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15199;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), +(10128,718,'_wp_attachment_image_alt','Boroboro earrings gold plated and silver.'), +(10152,342,'_thumbnail_id','928'), +(10159,722,'_wp_attached_file','2024/10/MUGURA-CR2-vrm.jpg'), +(10160,722,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:26:\"2024/10/MUGURA-CR2-vrm.jpg\";s:8:\"filesize\";i:254284;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"MUGURA-CR2-vrm-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4808;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:26:\"MUGURA-CR2-vrm-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4808;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), +(10161,722,'_wp_attachment_image_alt','Mugura minimalist silver hoops.'), +(10162,398,'_thumbnail_id','931'), +(10183,725,'_wp_attached_file','2024/10/PIASU-C.jpg'), +(10184,725,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:19:\"2024/10/PIASU-C.jpg\";s:8:\"filesize\";i:391561;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"PIASU-C-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6649;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:19:\"PIASU-C-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6649;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), +(10185,725,'_wp_attachment_image_alt','Piasu necklace mixing gold plated and silver chains.'), +(10186,268,'_thumbnail_id','725'), +(10191,726,'_wp_attached_file','2024/10/ROKKU-B-malachite.jpg'), +(10192,726,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:29:\"2024/10/ROKKU-B-malachite.jpg\";s:8:\"filesize\";i:287899;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"ROKKU-B-malachite-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5185;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:29:\"ROKKU-B-malachite-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5185;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), +(10193,726,'_wp_attachment_image_alt','Rokku wide silver ring with malachite set in 18k gold'), +(10194,168,'_thumbnail_id','726'), +(10203,727,'_wp_attached_file','2024/10/ROKKU-C-jaspe.jpg'), +(10204,727,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:25:\"2024/10/ROKKU-C-jaspe.jpg\";s:8:\"filesize\";i:324080;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"ROKKU-C-jaspe-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6300;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), +(10205,727,'_wp_attachment_image_alt','Rokku statement necklace in silver with jaspe stone pendant and gold plated clasp.'), +(10209,729,'_wp_attached_file','2024/10/ROKKU-C-tiger.jpg'), +(10210,729,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:25:\"2024/10/ROKKU-C-tiger.jpg\";s:8:\"filesize\";i:325348;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"ROKKU-C-tiger-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6593;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:25:\"ROKKU-C-tiger-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6593;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), +(10211,729,'_wp_attachment_image_alt','Rokku statement necklace in silver with tiger\'s eye stone pendant and gold plated clasp.'), +(10212,385,'_thumbnail_id','729'), +(10227,730,'_wp_attached_file','2024/10/ROKKU-CR1-vrm-lapis.jpg'), +(10228,730,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:31:\"2024/10/ROKKU-CR1-vrm-lapis.jpg\";s:8:\"filesize\";i:243829;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"ROKKU-CR1-vrm-lapis-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4390;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:31:\"ROKKU-CR1-vrm-lapis-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4390;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), +(10229,730,'_wp_attachment_image_alt','Rokku solo hoop earring in gold plated silver with lapis lazuli stone.'), +(10230,731,'_wp_attached_file','2024/10/ROKKU-CR1-vrm-malachite.jpg'), +(10231,731,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:35:\"2024/10/ROKKU-CR1-vrm-malachite.jpg\";s:8:\"filesize\";i:224150;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"ROKKU-CR1-vrm-malachite-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3790;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), +(10232,731,'_wp_attachment_image_alt','Rokku solo hoop earring in gold plated silver with malachite stone.'), +(10233,732,'_wp_attached_file','2024/10/ROKKU-CR1-vrm-tiger.jpg'), +(10234,732,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:31:\"2024/10/ROKKU-CR1-vrm-tiger.jpg\";s:8:\"filesize\";i:239111;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"ROKKU-CR1-vrm-tiger-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4331;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), +(10235,732,'_wp_attachment_image_alt','Rokku solo hoop earring in gold plated silver with tiger\'s eye stone.'), +(10236,433,'_thumbnail_id','730'), +(10260,735,'_wp_attached_file','2024/10/TAMANORI-CR2-vrm.jpg'), +(10261,735,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:28:\"2024/10/TAMANORI-CR2-vrm.jpg\";s:8:\"filesize\";i:262704;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"TAMANORI-CR2-vrm-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4895;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:28:\"TAMANORI-CR2-vrm-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4895;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), +(10262,735,'_wp_attachment_image_alt','Tamanori oval gold plated hoops with dangling chains.'), +(10267,736,'_wp_attached_file','2024/10/TANEMAKI-BR.jpg'), +(10268,736,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:23:\"2024/10/TANEMAKI-BR.jpg\";s:8:\"filesize\";i:287017;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"TANEMAKI-BR-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5366;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:23:\"TANEMAKI-BR-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5366;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), +(10269,736,'_wp_attachment_image_alt','Tanemaki bracelet mixing chains and fresh water pearls.'), +(10270,251,'_thumbnail_id','736'), +(10313,743,'_wp_attached_file','2024/11/BOROBORO-B2-g.jpg'), +(10314,743,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:25:\"2024/11/BOROBORO-B2-g.jpg\";s:8:\"filesize\";i:237826;s:5:\"sizes\";a:1:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:25:\"BOROBORO-B2-g-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4182;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), +(10315,743,'_wp_attachment_image_alt','BoroBoro minimalist gold plated ring with movable aventurine bead.'), +(10316,613,'_thumbnail_id','743'), +(10321,744,'_wp_attached_file','2024/11/BOROBORO-B2-s.jpg'), +(10322,744,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:25:\"2024/11/BOROBORO-B2-s.jpg\";s:8:\"filesize\";i:221635;s:5:\"sizes\";a:1:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:25:\"BOROBORO-B2-s-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3652;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), +(10323,744,'_wp_attachment_image_alt','BoroBoro minimalist gold plated ring with movable aventurine bead.'), +(10324,625,'_thumbnail_id','744'), +(10341,747,'_wp_attached_file','2024/11/BOROBORO-BO1-g-green.jpg'), +(10342,747,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:32:\"2024/11/BOROBORO-BO1-g-green.jpg\";s:8:\"filesize\";i:292196;s:5:\"sizes\";a:1:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:32:\"BOROBORO-BO1-g-green-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5376;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), +(10343,747,'_wp_attachment_image_alt','Boroboro asymmetrical gold plated bead earrings with green aventurine.'), +(10344,748,'_wp_attached_file','2024/11/BOROBORO-BO1-g-brown.jpg'), +(10345,748,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:32:\"2024/11/BOROBORO-BO1-g-brown.jpg\";s:8:\"filesize\";i:290704;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"BOROBORO-BO1-g-brown-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5401;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), +(10346,748,'_wp_attachment_image_alt','Boroboro asymmetrical gold plated bead earrings with tiger\'s eye.'), +(10347,515,'_thumbnail_id','927'), +(10352,749,'_wp_attached_file','2024/11/BOROBORO-BO1-s-brown.jpg'), +(10353,749,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:32:\"2024/11/BOROBORO-BO1-s-brown.jpg\";s:8:\"filesize\";i:265471;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"BOROBORO-BO1-s-brown-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4452;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:32:\"BOROBORO-BO1-s-brown-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4452;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), +(10354,749,'_wp_attachment_image_alt','Boroboro asymmetrical silver bead earrings with tiger\'s eye.'), +(10355,750,'_wp_attached_file','2024/11/BOROBORO-BO1-s-green.jpg'), +(10356,750,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:32:\"2024/11/BOROBORO-BO1-s-green.jpg\";s:8:\"filesize\";i:266105;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"BOROBORO-BO1-s-green-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4540;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), +(10357,750,'_wp_attachment_image_alt','Boroboro asymmetrical silver bead earrings with green aventurine.'), +(10358,521,'_thumbnail_id','925'), +(10363,751,'_wp_attached_file','2024/11/DSC9463.jpg'), +(10364,751,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:19:\"2024/11/DSC9463.jpg\";s:8:\"filesize\";i:888805;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"DSC9463-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16390;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), +(10365,751,'_wp_attachment_image_alt','Kara textured silver hoops'), +(10369,752,'_wp_attached_file','2024/11/HADOU-BOP.jpg'), +(10370,752,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:21:\"2024/11/HADOU-BOP.jpg\";s:8:\"filesize\";i:248309;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"HADOU-BOP-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4492;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:21:\"HADOU-BOP-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4492;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), +(10371,752,'_wp_attachment_image_alt','Hadou wavy stud earrings in silver.'), +(10372,490,'_thumbnail_id','934'), +(10376,753,'_wp_attached_file','2024/11/HATTARI-BR.jpg'), +(10377,753,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:22:\"2024/11/HATTARI-BR.jpg\";s:8:\"filesize\";i:302897;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"HATTARI-BR-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5839;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:22:\"HATTARI-BR-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5839;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), +(10378,753,'_wp_attachment_image_alt','Hattari wide asymmetrical cuff crossed by gold plated thin band.'), +(10379,610,'_thumbnail_id','753'), +(10389,755,'_wp_attached_file','2024/11/IMG_1474.jpg'), +(10390,755,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:20:\"2024/11/IMG_1474.jpg\";s:8:\"filesize\";i:625708;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_1474-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12978;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), +(10391,755,'_wp_attachment_image_alt','Hadou wavy stud earrings mixing gold and silver.'), +(10395,756,'_wp_attached_file','2024/11/IMG_1481.jpg'), +(10396,756,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:20:\"2024/11/IMG_1481.jpg\";s:8:\"filesize\";i:841107;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_1481-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16947;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), +(10397,756,'_wp_attachment_image_alt','Kagun solo hoop with wavy gold plated element.'), +(10398,757,'_wp_attached_file','2024/11/IMG_1484.jpg'), +(10399,757,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:20:\"2024/11/IMG_1484.jpg\";s:8:\"filesize\";i:691565;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_1484-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13562;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), +(10400,757,'_wp_attachment_image_alt','Kagun solo hoop with wavy gold plated element.'), +(10405,758,'_wp_attached_file','2024/11/IMG_1501.jpg'), +(10406,758,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:20:\"2024/11/IMG_1501.jpg\";s:8:\"filesize\";i:582559;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_1501-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13223;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), +(10407,758,'_wp_attachment_image_alt','BoroBoro minimalist silver ring with movable tiger\'s eye bead.'), +(10408,759,'_wp_attached_file','2024/11/IMG_1506.jpg'), +(10409,759,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:20:\"2024/11/IMG_1506.jpg\";s:8:\"filesize\";i:606859;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_1506-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13397;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), +(10410,759,'_wp_attachment_image_alt','BoroBoro minimalist silver ring with movable tiger\'s eye bead.'), +(10415,760,'_wp_attached_file','2024/11/IMG_1504.jpg'), +(10416,760,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:20:\"2024/11/IMG_1504.jpg\";s:8:\"filesize\";i:599899;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_1504-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13183;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), +(10417,760,'_wp_attachment_image_alt','BoroBoro minimalist gold plated ring with movable aventurine bead.'), +(10418,761,'_wp_attached_file','2024/11/IMG_1554.jpg'), +(10419,761,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:20:\"2024/11/IMG_1554.jpg\";s:8:\"filesize\";i:648391;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_1554-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14254;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), +(10420,761,'_wp_attachment_image_alt','BoroBoro minimalist gold plated ring with movable aventurine bead.'), +(10425,762,'_wp_attached_file','2024/11/IMG_1563.jpg'), +(10426,762,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:20:\"2024/11/IMG_1563.jpg\";s:8:\"filesize\";i:711087;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_1563-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14072;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), +(10427,762,'_wp_attachment_image_alt','Kara small textured gold plated silver hoops.'), +(10443,535,'_photos_colonne_gauche|||0|value','745'), +(10444,535,'_photos_colonne_droite|||0|value','764'), +(10445,535,'_photos_colonne_droite|||1|value','746'), +(10446,535,'_photos_colonne_droite|||2|value','765'), +(10447,535,'_haiku_details_produit',''), +(10448,766,'_sku','FUYOU-BO-s'), +(10449,766,'total_sales','0'), +(10450,766,'_tax_status','taxable'), +(10451,766,'_tax_class',''), +(10452,766,'_manage_stock','no'), +(10453,766,'_backorders','no'), +(10454,766,'_sold_individually','no'), +(10455,766,'_virtual','no'), +(10456,766,'_downloadable','no'), +(10457,766,'_download_limit','-1'), +(10458,766,'_download_expiry','-1'), +(10459,766,'_thumbnail_id','770'), +(10460,766,'_stock',NULL), +(10461,766,'_stock_status','instock'), +(10462,766,'_wc_average_rating','0'), +(10463,766,'_wc_review_count','0'), +(10464,766,'_product_attributes','a:1:{s:7:\"pa_side\";a:6:{s:4:\"name\";s:7:\"pa_side\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'), +(10465,766,'_product_version','9.8.4'), +(10470,767,'_variation_description',''), +(10471,767,'_sku','FUYOU-BO-s-pair'), +(10472,767,'_regular_price','85'), +(10473,767,'total_sales','0'), +(10474,767,'_tax_status','taxable'), +(10475,767,'_tax_class','parent'), +(10476,767,'_manage_stock','no'), +(10477,767,'_backorders','no'), +(10478,767,'_sold_individually','no'), +(10479,767,'_virtual','no'), +(10480,767,'_downloadable','no'), +(10481,767,'_download_limit','-1'), +(10482,767,'_download_expiry','-1'), +(10483,767,'_thumbnail_id','0'), +(10484,767,'_stock',NULL), +(10485,767,'_stock_status','instock'), +(10486,767,'_wc_average_rating','0'), +(10487,767,'_wc_review_count','0'), +(10489,767,'_price','85'), +(10490,767,'_product_version','9.8.4'), +(10491,768,'_variation_description',''), +(10492,768,'_sku','FUYOU-BO-s-long'), +(10493,768,'_regular_price','55'), +(10494,768,'total_sales','0'), +(10495,768,'_tax_status','taxable'), +(10496,768,'_tax_class','parent'), +(10497,768,'_manage_stock','no'), +(10498,768,'_backorders','no'), +(10499,768,'_sold_individually','no'), +(10500,768,'_virtual','no'), +(10501,768,'_downloadable','no'), +(10502,768,'_download_limit','-1'), +(10503,768,'_download_expiry','-1'), +(10504,768,'_thumbnail_id','0'), +(10505,768,'_stock',NULL), +(10506,768,'_stock_status','instock'), +(10507,768,'_wc_average_rating','0'), +(10508,768,'_wc_review_count','0'), +(10510,768,'_price','55'), +(10511,768,'_product_version','9.8.4'), +(10513,766,'_edit_lock','1750266919:1'), +(10516,770,'_wp_attached_file','2024/11/FUYOU-B0-s.jpg'), +(10517,770,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:22:\"2024/11/FUYOU-B0-s.jpg\";s:8:\"filesize\";i:302772;s:5:\"sizes\";a:1:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:22:\"FUYOU-B0-s-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5442;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), +(10518,770,'_wp_attachment_image_alt','Fuyou long dangling earrings in silver with fluid oval shapes and chains.'), +(10519,771,'_wp_attached_file','2024/11/DSC0240.jpg'), +(10520,771,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:19:\"2024/11/DSC0240.jpg\";s:8:\"filesize\";i:707748;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"DSC0240-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17734;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), +(10521,772,'_wp_attached_file','2024/11/DSC0242.jpg'), +(10522,772,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:19:\"2024/11/DSC0242.jpg\";s:8:\"filesize\";i:655520;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"DSC0242-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19603;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), +(10523,773,'_wp_attached_file','2024/11/DSC0249.jpg'), +(10524,773,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:19:\"2024/11/DSC0249.jpg\";s:8:\"filesize\";i:545109;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"DSC0249-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16678;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), +(10525,774,'_wp_attached_file','2024/11/DSC0251.jpg'), +(10526,774,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:19:\"2024/11/DSC0251.jpg\";s:8:\"filesize\";i:599812;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"DSC0251-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17018;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), +(10527,771,'_wp_attachment_image_alt',''), +(10528,772,'_wp_attachment_image_alt','Fuyou long dangling earrings in silver with fluid oval shapes and chains.'), +(10529,773,'_wp_attachment_image_alt','Fuyou long dangling earrings in silver with fluid oval shapes and chains.'), +(10530,774,'_wp_attachment_image_alt','Fuyou long dangling earrings in silver with fluid oval shapes and chains.'), +(10531,767,'attribute_pa_side','pair'), +(10532,768,'attribute_pa_side','long'), +(10534,775,'_variation_description',''), +(10535,775,'total_sales','0'), +(10536,775,'_tax_status','taxable'), +(10537,775,'_tax_class','parent'), +(10538,775,'_manage_stock','no'), +(10539,775,'_backorders','no'), +(10540,775,'_sold_individually','no'), +(10541,775,'_virtual','no'), +(10542,775,'_downloadable','no'), +(10543,775,'_download_limit','-1'), +(10544,775,'_download_expiry','-1'), +(10545,775,'_stock',NULL), +(10546,775,'_stock_status','instock'), +(10547,775,'_wc_average_rating','0'), +(10548,775,'_wc_review_count','0'), +(10549,775,'attribute_pa_side','medium'), +(10550,775,'_product_version','9.8.4'), +(10552,775,'_thumbnail_id','0'), +(10554,775,'_sku','FUYOU-BO-s-mid'), +(10555,775,'_regular_price','55'), +(10556,775,'_price','55'), +(10559,766,'_edit_last','1'), +(11354,819,'_wp_attached_file','2024/11/HAIKU-ringsizes.jpg'), +(11355,819,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:595;s:6:\"height\";i:842;s:4:\"file\";s:27:\"2024/11/HAIKU-ringsizes.jpg\";s:8:\"filesize\";i:41989;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"HAIKU-ringsizes-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14579;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), +(11356,819,'_wp_attachment_image_alt','Ring size guide'), +(11357,72,'_photos_colonne_gauche|||0|value','81'), +(11358,72,'_photos_colonne_droite|||0|value','100'), +(11359,72,'_photos_colonne_droite|||1|value','411'), +(11360,72,'_photos_colonne_droite|||2|value','101'), +(11361,72,'_haiku_details_produit',''), +(11368,102,'_photos_colonne_gauche|||0|value','110'), +(11369,102,'_photos_colonne_droite|||0|value','112'), +(11370,102,'_photos_colonne_droite|||1|value','111'), +(11371,102,'_haiku_details_produit',''), +(11391,144,'_photos_colonne_gauche|||0|value','152'), +(11392,144,'_photos_colonne_droite|||0|value','154'), +(11393,144,'_photos_colonne_droite|||1|value','153'), +(11394,144,'_haiku_details_produit',''), +(11395,155,'_photos_colonne_gauche|||0|value','163'), +(11396,155,'_photos_colonne_droite|||0|value','712'), +(11397,155,'_photos_colonne_droite|||1|value','165'), +(11398,155,'_photos_colonne_droite|||2|value','164'), +(11399,155,'_haiku_details_produit',''), +(11412,613,'_photos_colonne_gauche|||0|value','743'), +(11413,613,'_photos_colonne_droite|||0|value','760'), +(11414,613,'_photos_colonne_droite|||1|value','761'), +(11415,613,'_haiku_details_produit',''), +(11416,625,'_photos_colonne_gauche|||0|value','744'), +(11417,625,'_photos_colonne_droite|||0|value','758'), +(11418,625,'_photos_colonne_droite|||1|value','759'), +(11419,625,'_haiku_details_produit',''), +(11420,820,'_wp_attached_file','2024/09/IKKAN-B-vrm.jpg'), +(11421,820,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1277;s:4:\"file\";s:23:\"2024/09/IKKAN-B-vrm.jpg\";s:8:\"filesize\";i:393112;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"IKKAN-B-vrm-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27681;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:23:\"IKKAN-B-vrm-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5054;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:6:\"NEX-C3\";s:7:\"caption\";s:8:\"SONY DSC\";s:17:\"created_timestamp\";s:10:\"1294266271\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"18\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:8:\"SONY DSC\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), +(11422,820,'_wp_attachment_image_alt','Ikkan gold plated silver ring with oversized link on top.'), +(11423,113,'_thumbnail_id','820'), +(11424,113,'_photos_colonne_gauche|||0|value','820'), +(11425,113,'_photos_colonne_droite|||0|value','122'), +(11426,113,'_photos_colonne_droite|||1|value','684'), +(11427,113,'_haiku_details_produit',''), +(11428,821,'_wp_attached_file','2024/09/KARA-B.jpg'), +(11429,821,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:18:\"2024/09/KARA-B.jpg\";s:8:\"filesize\";i:460992;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"KARA-B-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22802;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:6:\"NEX-C3\";s:7:\"caption\";s:8:\"SONY DSC\";s:17:\"created_timestamp\";s:10:\"1294266271\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"18\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:8:\"SONY DSC\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), +(11430,822,'_wp_attached_file','2024/09/KARA-B-1.jpg'), +(11431,822,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:20:\"2024/09/KARA-B-1.jpg\";s:8:\"filesize\";i:429750;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"KARA-B-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22093;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:20:\"KARA-B-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4882;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:6:\"NEX-C3\";s:7:\"caption\";s:8:\"SONY DSC\";s:17:\"created_timestamp\";s:10:\"1294266271\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"18\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:8:\"SONY DSC\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), +(11432,821,'_wp_attachment_image_alt','Kara ring composed of two sterling silver bands linked by a 18k gold thin curb chain'), +(11433,822,'_wp_attachment_image_alt','Kara ring composed of two sterling silver bands linked by a 18k gold thin curb chain'), +(11441,823,'_wp_attached_file','2024/10/BOROBORO-BOaTANEMAKI-BO1a-opti-1.jpg'), +(11442,823,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:823;s:6:\"height\";i:547;s:4:\"file\";s:44:\"2024/10/BOROBORO-BOaTANEMAKI-BO1a-opti-1.jpg\";s:8:\"filesize\";i:108182;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:44:\"BOROBORO-BOaTANEMAKI-BO1a-opti-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17971;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), +(11443,823,'_wp_attachment_image_alt','BoroBoro earrings minimalist oval shape'), +(11448,824,'_wp_attached_file','2024/10/FUYOU-BR-g.jpg'), +(11449,824,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:22:\"2024/10/FUYOU-BR-g.jpg\";s:8:\"filesize\";i:453474;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"FUYOU-BR-g-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24091;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:6:\"NEX-C3\";s:7:\"caption\";s:8:\"SONY DSC\";s:17:\"created_timestamp\";s:10:\"1294266271\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"18\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:8:\"SONY DSC\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), +(11450,824,'_wp_attachment_image_alt','Fuyou silver chain bracelet with fluid element'), +(11451,261,'_thumbnail_id','824'), +(11456,825,'_wp_attached_file','2024/10/IMG_1505.jpg'), +(11457,825,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:20:\"2024/10/IMG_1505.jpg\";s:8:\"filesize\";i:460176;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_1505-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14500;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), +(11458,825,'_wp_attachment_image_alt','Ikkan gold plated silver bracelet, half chain half wire.'), +(11463,826,'_wp_attached_file','2024/10/IMG_1582.jpg'), +(11464,826,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1195;s:6:\"height\";i:1195;s:4:\"file\";s:20:\"2024/10/IMG_1582.jpg\";s:8:\"filesize\";i:1286747;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_1582-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47358;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"3.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon EOS 6D Mark II\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1729428985\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"70\";s:3:\"iso\";s:3:\"500\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), +(11465,826,'_wp_attachment_image_alt','Rokku wide silver ring with malachite set in 18k gold.'), +(11485,828,'_wp_attached_file','2024/10/ROKKU-C-lapis-copy.jpg'), +(11486,828,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:30:\"2024/10/ROKKU-C-lapis-copy.jpg\";s:8:\"filesize\";i:546484;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"ROKKU-C-lapis-copy-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27261;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:6:\"NEX-C3\";s:7:\"caption\";s:8:\"SONY DSC\";s:17:\"created_timestamp\";s:10:\"1294266271\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"18\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:8:\"SONY DSC\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), +(11487,828,'_wp_attachment_image_alt','Rokku statement necklace in silver with lapis lazuli stone pendant and gold plated clasp.'), +(11495,312,'_thumbnail_id','735'), +(11496,312,'_photos_colonne_gauche|||0|value','735'), +(11497,312,'_photos_colonne_droite|||0|value','660'), +(11498,312,'_photos_colonne_droite|||1|value','317'), +(11499,312,'_haiku_details_produit',''), +(11500,829,'_wp_attached_file','2024/11/IMG_1460.jpg'), +(11501,829,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:20:\"2024/11/IMG_1460.jpg\";s:8:\"filesize\";i:934957;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_1460-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15470;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), +(11502,829,'_wp_attachment_image_alt','Hattari wide asymmetrical cuff crossed by gold plated thin band.'), +(11509,830,'_wp_attached_file','2024/11/IMG_1473.jpg'), +(11510,830,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:20:\"2024/11/IMG_1473.jpg\";s:8:\"filesize\";i:632613;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_1473-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15130;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), +(11511,830,'_wp_attachment_image_alt','Kara textured ear cuff in silver and gold plated'), +(11515,133,'_thumbnail_id','822'), +(11524,831,'_wp_attached_file','2024/11/IMG_1524.jpg'), +(11525,831,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1921;s:4:\"file\";s:20:\"2024/11/IMG_1524.jpg\";s:8:\"filesize\";i:911352;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_1524-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16305;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), +(11526,831,'_wp_attachment_image_alt','Boroboro asymmetrical silver bead earrings with tiger\'s eye.'), +(11531,832,'_wp_attached_file','2024/11/IMG_1525.jpg'), +(11532,832,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:20:\"2024/11/IMG_1525.jpg\";s:8:\"filesize\";i:985758;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_1525-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18128;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), +(11533,832,'_wp_attachment_image_alt','Boroboro asymmetrical gold plated bead earrings with green aventurine.'), +(11538,833,'_wp_attached_file','2024/11/KAGUN-CR1.jpg'), +(11539,833,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:3553;s:6:\"height\";i:2361;s:4:\"file\";s:21:\"2024/11/KAGUN-CR1.jpg\";s:8:\"filesize\";i:455669;s:5:\"sizes\";a:1:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:21:\"KAGUN-CR1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3735;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), +(11540,833,'_wp_attachment_image_alt','Mugura solo hoop with wavy gold plated element.'), +(11545,834,'_wp_attached_file','2024/11/KARA-CR-g.jpg'), +(11546,834,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:21:\"2024/11/KARA-CR-g.jpg\";s:8:\"filesize\";i:407384;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"KARA-CR-g-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22482;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:21:\"KARA-CR-g-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4712;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:6:\"NEX-C3\";s:7:\"caption\";s:8:\"SONY DSC\";s:17:\"created_timestamp\";s:10:\"1294266271\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"18\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:8:\"SONY DSC\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), +(11547,834,'_wp_attachment_image_alt','Kara small textured gold plated silver hoops.'), +(11551,835,'_wp_attached_file','2024/11/KARA-CR-s.jpg'), +(11552,835,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:21:\"2024/11/KARA-CR-s.jpg\";s:8:\"filesize\";i:384089;s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"KARA-CR-s-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24691;}s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:21:\"KARA-CR-s-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3818;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:6:\"NEX-C3\";s:7:\"caption\";s:8:\"SONY DSC\";s:17:\"created_timestamp\";s:10:\"1294266271\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"18\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:8:\"SONY DSC\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), +(11553,835,'_wp_attachment_image_alt','Kara small textured sterling silver hoops.'), +(11554,554,'_thumbnail_id','935'), +(11558,545,'_thumbnail_id','938'), +(11562,496,'_thumbnail_id','833'), +(11567,836,'_wp_attached_file','2024/11/KARA-EC-vrm.jpg'), +(11568,836,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:23:\"2024/11/KARA-EC-vrm.jpg\";s:8:\"filesize\";i:361036;s:5:\"sizes\";a:1:{s:21:\"woocommerce_thumbnail\";a:6:{s:4:\"file\";s:23:\"KARA-EC-vrm-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3165;s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:6:\"NEX-C3\";s:7:\"caption\";s:8:\"SONY DSC\";s:17:\"created_timestamp\";s:10:\"1294266271\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"18\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:8:\"SONY DSC\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), +(11569,836,'_wp_attachment_image_alt','Kara textured ear cuff in gold plated silver'), +(11570,447,'_thumbnail_id','939'), +(11581,839,'_wp_attached_file','2024/10/DSC9242.jpg'), +(11582,839,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1536;s:6:\"height\";i:1536;s:4:\"file\";s:19:\"2024/10/DSC9242.jpg\";s:8:\"filesize\";i:337187;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"DSC9242-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13205;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), +(11583,839,'_wp_attachment_image_alt','Fuyou silver chain bracelet with fluid element.'), +(11584,840,'_wp_attached_file','2024/10/DSC9237.jpg'), +(11585,840,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:19:\"2024/10/DSC9237.jpg\";s:8:\"filesize\";i:849705;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"DSC9237-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15439;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), +(11586,840,'_wp_attachment_image_alt','Fuyou silver chain bracelet with fluid element.'), +(11587,258,'_photos_colonne_gauche|||0|value','259'), +(11588,258,'_photos_colonne_droite|||0|value','839'), +(11589,258,'_photos_colonne_droite|||1|value','840'), +(11590,258,'_photos_colonne_droite|||2|value','260'), +(11591,258,'_haiku_details_produit',''), +(11650,430,'_product_attributes','a:1:{s:8:\"pa_stone\";a:6:{s:4:\"name\";s:8:\"pa_stone\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'), +(11651,845,'_variation_description',''), +(11652,845,'total_sales','0'), +(11653,845,'_tax_status','taxable'), +(11654,845,'_tax_class','parent'), +(11655,845,'_manage_stock','no'), +(11656,845,'_backorders','no'), +(11657,845,'_sold_individually','no'), +(11658,845,'_virtual','no'), +(11659,845,'_downloadable','no'), +(11660,845,'_download_limit','-1'), +(11661,845,'_download_expiry','-1'), +(11662,845,'_stock',NULL), +(11663,845,'_stock_status','instock'), +(11664,845,'_wc_average_rating','0'), +(11665,845,'_wc_review_count','0'), +(11666,845,'attribute_pa_stone','lapis-lazuli'), +(11667,845,'_product_version','9.4.2'), +(11668,846,'_variation_description',''), +(11669,846,'total_sales','0'), +(11670,846,'_tax_status','taxable'), +(11671,846,'_tax_class','parent'), +(11672,846,'_manage_stock','no'), +(11673,846,'_backorders','no'), +(11674,846,'_sold_individually','no'), +(11675,846,'_virtual','no'), +(11676,846,'_downloadable','no'), +(11677,846,'_download_limit','-1'), +(11678,846,'_download_expiry','-1'), +(11679,846,'_stock',NULL), +(11680,846,'_stock_status','instock'), +(11681,846,'_wc_average_rating','0'), +(11682,846,'_wc_review_count','0'), +(11683,846,'attribute_pa_stone','malachite'), +(11684,846,'_product_version','9.4.2'), +(11685,847,'_variation_description',''), +(11686,847,'total_sales','0'), +(11687,847,'_tax_status','taxable'), +(11688,847,'_tax_class','parent'), +(11689,847,'_manage_stock','no'), +(11690,847,'_backorders','no'), +(11691,847,'_sold_individually','no'), +(11692,847,'_virtual','no'), +(11693,847,'_downloadable','no'), +(11694,847,'_download_limit','-1'), +(11695,847,'_download_expiry','-1'), +(11696,847,'_stock',NULL), +(11697,847,'_stock_status','instock'), +(11698,847,'_wc_average_rating','0'), +(11699,847,'_wc_review_count','0'), +(11700,847,'attribute_pa_stone','tiger-eye'), +(11701,847,'_product_version','9.4.2'), +(11702,845,'_sku','ROKKU-CR-s-lapis'), +(11703,845,'_regular_price','45'), +(11704,845,'_thumbnail_id','0'), +(11705,845,'_price','45'), +(11706,846,'_sku','ROKKU-CR-s-malachite'), +(11707,846,'_regular_price','45'), +(11708,846,'_thumbnail_id','0'), +(11709,846,'_price','45'), +(11710,847,'_sku','ROKKU-CR-s-tiger'), +(11711,847,'_regular_price','45'), +(11712,847,'_thumbnail_id','0'), +(11713,847,'_price','45'), +(11714,430,'_price','45'), +(11716,430,'_regular_price','45'), +(11717,430,'_photos_colonne_gauche|||0|value','842'), +(11718,430,'_photos_colonne_droite|||0|value','432'), +(11719,430,'_photos_colonne_droite|||1|value','715'), +(11720,430,'_photos_colonne_droite|||2|value','843'), +(11721,430,'_photos_colonne_droite|||3|value','844'), +(11722,430,'_haiku_details_produit',''), +(11730,851,'_edit_lock','1733268183:1'), +(11731,851,'_edit_last','1'), +(11732,851,'discount_type','percent'), +(11733,851,'coupon_amount','20'), +(11734,851,'individual_use','no'), +(11735,851,'usage_limit','0'), +(11736,851,'usage_limit_per_user','1'), +(11737,851,'limit_usage_to_x_items','0'), +(11738,851,'usage_count','0'), +(11739,851,'date_expires','1733266800'), +(11740,851,'free_shipping','no'), +(11741,851,'exclude_sale_items','no'), +(11752,261,'_photos_colonne_gauche|||0|value','824'), +(11753,261,'_photos_colonne_droite|||0|value','698'), +(11754,261,'_haiku_details_produit',''), +(11755,433,'_photos_colonne_gauche|||0|value','730'), +(11756,433,'_photos_colonne_droite|||0|value','716'), +(11757,433,'_photos_colonne_droite|||1|value','731'), +(11758,433,'_photos_colonne_droite|||2|value','732'), +(11759,433,'_haiku_details_produit',''), +(11939,530,'_regular_price','100'), +(11940,530,'_price','100'), +(11951,532,'_regular_price','95'), +(11952,532,'_price','95'), +(11954,133,'_price','95'), +(11955,133,'_photos_colonne_gauche|||0|value','822'), +(11956,133,'_photos_colonne_droite|||0|value','166'), +(11957,133,'_photos_colonne_droite|||1|value','142'), +(11958,133,'_photos_colonne_droite|||2|value','821'), +(11959,133,'_photos_colonne_droite|||3|value','167'), +(11960,133,'_photos_colonne_droite|||4|value','143'), +(11961,133,'_haiku_details_produit',''), +(11962,200,'_thumbnail_id','0'), +(12003,766,'_price','55'), +(12004,766,'_price','85'), +(12005,766,'_photos_colonne_gauche|||0|value','770'), +(12006,766,'_photos_colonne_droite|||0|value','771'), +(12007,766,'_photos_colonne_droite|||1|value','774'), +(12008,766,'_photos_colonne_droite|||2|value','772'), +(12009,766,'_photos_colonne_droite|||3|value','773'), +(12010,766,'_haiku_details_produit',''), +(12011,246,'_price','85'), +(12012,246,'_photos_colonne_gauche|||0|value','249'), +(12013,246,'_photos_colonne_droite|||0|value','825'), +(12014,246,'_photos_colonne_droite|||1|value','250'), +(12015,246,'_haiku_details_produit',''), +(12016,240,'_price','80'), +(12017,240,'_photos_colonne_gauche|||0|value','243'), +(12018,240,'_photos_colonne_droite|||0|value','244'), +(12019,240,'_photos_colonne_droite|||1|value','245'), +(12020,240,'_haiku_details_produit',''), +(12021,610,'_photos_colonne_gauche|||0|value','753'), +(12022,610,'_photos_colonne_droite|||0|value','829'), +(12023,610,'_haiku_details_produit',''), +(12025,385,'_price','120'), +(12026,385,'_photos_colonne_gauche|||0|value','729'), +(12027,385,'_photos_colonne_droite|||0|value','487'), +(12028,385,'_photos_colonne_droite|||1|value','727'), +(12029,385,'_photos_colonne_droite|||2|value','705'), +(12030,385,'_photos_colonne_droite|||3|value','828'), +(12031,385,'_photos_colonne_droite|||4|value','707'), +(12032,385,'_haiku_details_produit',''), +(12044,318,'_photos_colonne_gauche|||0|value','691'), +(12045,318,'_photos_colonne_droite|||0|value','714'), +(12046,318,'_photos_colonne_droite|||1|value','324'), +(12047,318,'_photos_colonne_droite|||2|value','323'), +(12048,318,'_haiku_details_produit',''), +(12054,545,'_price','45'), +(12055,545,'_price','70'), +(12064,554,'_price','40'), +(12065,554,'_price','65'), +(12072,328,'_photos_colonne_gauche|||0|value','329'), +(12073,328,'_photos_colonne_droite|||0|value','330'), +(12074,328,'_haiku_details_produit',''), +(12075,325,'_photos_colonne_gauche|||0|value','326'), +(12076,325,'_photos_colonne_droite|||0|value','327'), +(12077,325,'_photos_colonne_droite|||1|value','714'), +(12078,325,'_haiku_details_produit',''), +(12095,490,'_price','35'), +(12096,490,'_price','50'), +(12132,251,'_photos_colonne_gauche|||0|value','736'), +(12133,251,'_photos_colonne_droite|||0|value','700'), +(12134,251,'_photos_colonne_droite|||1|value','702'), +(12135,251,'_haiku_details_produit',''), +(12136,540,'_wp_trash_meta_status','publish'), +(12137,540,'_wp_trash_meta_time','1749803880'), +(12138,540,'_wp_desired_post_slug','mugura-nail-jewel-silver-copy-crystal'), +(12139,541,'_wp_trash_meta_status','publish'), +(12140,541,'_wp_trash_meta_time','1749803880'), +(12141,541,'_wp_desired_post_slug','mugura-nail-jewel-silver-copy-jade'), +(12142,535,'_wp_trash_meta_status','publish'), +(12143,535,'_wp_trash_meta_time','1749803880'), +(12144,535,'_wp_desired_post_slug','boroboro-belt'), +(12145,534,'_wp_trash_meta_status','publish'), +(12146,534,'_wp_trash_meta_time','1749803912'), +(12147,534,'_wp_desired_post_slug','kishou-ring-gold-plated-64'), +(12148,161,'_wp_trash_meta_status','publish'), +(12149,161,'_wp_trash_meta_time','1749803912'), +(12150,161,'_wp_desired_post_slug','hadou-golden-earcuff-117'), +(12151,162,'_wp_trash_meta_status','publish'), +(12152,162,'_wp_trash_meta_time','1749803912'), +(12153,162,'_wp_desired_post_slug','hadou-golden-earcuff-118'), +(12154,156,'_wp_trash_meta_status','publish'), +(12155,156,'_wp_trash_meta_time','1749803912'), +(12156,156,'_wp_desired_post_slug','hadou-golden-earcuff-112'), +(12157,157,'_wp_trash_meta_status','publish'), +(12158,157,'_wp_trash_meta_time','1749803912'), +(12159,157,'_wp_desired_post_slug','hadou-golden-earcuff-113'), +(12160,158,'_wp_trash_meta_status','publish'), +(12161,158,'_wp_trash_meta_time','1749803912'), +(12162,158,'_wp_desired_post_slug','hadou-golden-earcuff-114'), +(12163,159,'_wp_trash_meta_status','publish'), +(12164,159,'_wp_trash_meta_time','1749803912'), +(12165,159,'_wp_desired_post_slug','hadou-golden-earcuff-115'), +(12166,160,'_wp_trash_meta_status','publish'), +(12167,160,'_wp_trash_meta_time','1749803912'), +(12168,160,'_wp_desired_post_slug','hadou-golden-earcuff-116'), +(12169,155,'_wp_trash_meta_status','publish'), +(12170,155,'_wp_trash_meta_time','1749803912'), +(12171,155,'_wp_desired_post_slug','kishou-ring-gold-plated'), +(12172,533,'_wp_trash_meta_status','publish'), +(12173,533,'_wp_trash_meta_time','1749803912'), +(12174,533,'_wp_desired_post_slug','kishou-ring-silver-64'), +(12175,147,'_wp_trash_meta_status','publish'), +(12176,147,'_wp_trash_meta_time','1749803912'), +(12177,147,'_wp_desired_post_slug','hadou-golden-earcuff-107'), +(12178,148,'_wp_trash_meta_status','publish'), +(12179,148,'_wp_trash_meta_time','1749803912'), +(12180,148,'_wp_desired_post_slug','hadou-golden-earcuff-108'), +(12181,149,'_wp_trash_meta_status','publish'), +(12182,149,'_wp_trash_meta_time','1749803912'), +(12183,149,'_wp_desired_post_slug','hadou-golden-earcuff-109'), +(12184,150,'_wp_trash_meta_status','publish'), +(12185,150,'_wp_trash_meta_time','1749803912'), +(12186,150,'_wp_desired_post_slug','hadou-golden-earcuff-110'), +(12187,151,'_wp_trash_meta_status','publish'), +(12188,151,'_wp_trash_meta_time','1749803912'), +(12189,151,'_wp_desired_post_slug','hadou-golden-earcuff-111'), +(12190,145,'_wp_trash_meta_status','publish'), +(12191,145,'_wp_trash_meta_time','1749803912'), +(12192,145,'_wp_desired_post_slug','hadou-golden-earcuff-105'), +(12193,146,'_wp_trash_meta_status','publish'), +(12194,146,'_wp_trash_meta_time','1749803912'), +(12195,146,'_wp_desired_post_slug','hadou-golden-earcuff-106'), +(12196,144,'_wp_trash_meta_status','publish'), +(12197,144,'_wp_trash_meta_time','1749803912'), +(12198,144,'_wp_desired_post_slug','kishou-silver-ring'), +(12200,925,'_wp_attached_file','2024/11/BORO-BO1-arg.jpg'), +(12201,925,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:24:\"2024/11/BORO-BO1-arg.jpg\";s:8:\"filesize\";i:162384;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"BORO-BO1-arg-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19888;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), +(12202,925,'_wp_attachment_image_alt','Boroboro asymmetrical silver earrings with honey calcite beads.'), +(12203,926,'_variation_description',''), +(12204,926,'total_sales','0'), +(12205,926,'_tax_status','taxable'), +(12206,926,'_tax_class','parent'), +(12207,926,'_manage_stock','no'), +(12208,926,'_backorders','no'), +(12209,926,'_sold_individually','no'), +(12210,926,'_virtual','no'), +(12211,926,'_downloadable','no'), +(12212,926,'_download_limit','-1'), +(12213,926,'_download_expiry','-1'), +(12214,926,'_stock',NULL), +(12215,926,'_stock_status','instock'), +(12216,926,'_wc_average_rating','0'), +(12217,926,'_wc_review_count','0'), +(12218,926,'attribute_pa_stone','honey-calcite'), +(12219,926,'_product_version','9.9.3'), +(12221,926,'_sku','BOROBORO-BO1-s-honey'), +(12222,926,'_regular_price','60'), +(12223,926,'_thumbnail_id','0'), +(12224,926,'_price','60'), +(12225,521,'_price','60'), +(12230,927,'_wp_attached_file','2024/11/BORO-BO1-or.jpg'), +(12231,927,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:23:\"2024/11/BORO-BO1-or.jpg\";s:8:\"filesize\";i:168334;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"BORO-BO1-or-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20391;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), +(12232,927,'_wp_attachment_image_alt','Boroboro asymmetrical gold plated silver earrings with green aventurine beads.'), +(12237,928,'_wp_attached_file','2024/10/MUGURA-BOP.jpg'), +(12238,928,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:22:\"2024/10/MUGURA-BOP.jpg\";s:8:\"filesize\";i:155395;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"MUGURA-BOP-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15165;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), +(12239,928,'_wp_attachment_image_alt','Mugura trio of stud earrings in silver and gold plated silver with dangling pearls.'), +(12240,342,'_price','30'), +(12241,342,'_price','35'), +(12242,342,'_price','38'), +(12243,342,'_price','55'), +(12244,342,'_wp_old_slug','kagun-trio-earrings'), +(12245,342,'_photos_colonne_gauche|||0|value','928'), +(12246,342,'_photos_colonne_droite|||0|value','664'), +(12247,342,'_photos_colonne_droite|||1|value','347'), +(12248,342,'_photos_colonne_droite|||2|value','348'), +(12249,342,'_photos_colonne_droite|||3|value','349'), +(12250,342,'_haiku_details_produit',''), +(12251,496,'_photos_colonne_gauche|||0|value','833'), +(12252,496,'_photos_colonne_droite|||0|value','756'), +(12253,496,'_photos_colonne_droite|||1|value','757'), +(12254,496,'_haiku_details_produit',''), +(12255,478,'_wp_trash_meta_status','publish'), +(12256,478,'_wp_trash_meta_time','1750141541'), +(12257,478,'_wp_desired_post_slug','rokku-hoop-gold-plated-lapis-lazuli'), +(12258,479,'_wp_trash_meta_status','publish'), +(12259,479,'_wp_trash_meta_time','1750141541'), +(12260,479,'_wp_desired_post_slug','rokku-hoop-gold-plated-malachite'), +(12261,480,'_wp_trash_meta_status','publish'), +(12262,480,'_wp_trash_meta_time','1750141541'), +(12263,480,'_wp_desired_post_slug','rokku-hoop-gold-plated-tiger-eye'), +(12264,433,'_wp_trash_meta_status','publish'), +(12265,433,'_wp_trash_meta_time','1750141541'), +(12266,433,'_wp_desired_post_slug','rokku-hoop-gold-plated'), +(12267,845,'_wp_trash_meta_status','publish'), +(12268,845,'_wp_trash_meta_time','1750141552'), +(12269,845,'_wp_desired_post_slug','rokku-hoop-silver-lapis-lazuli'), +(12270,846,'_wp_trash_meta_status','publish'), +(12271,846,'_wp_trash_meta_time','1750141552'), +(12272,846,'_wp_desired_post_slug','rokku-hoop-silver-malachite'), +(12273,847,'_wp_trash_meta_status','publish'), +(12274,847,'_wp_trash_meta_time','1750141552'), +(12275,847,'_wp_desired_post_slug','rokku-hoop-silver-tigers-eye'), +(12276,430,'_wp_trash_meta_status','publish'), +(12277,430,'_wp_trash_meta_time','1750141552'), +(12278,430,'_wp_desired_post_slug','rokku-hoop-silver'), +(12279,931,'_wp_attached_file','2024/10/MUGURA-CR2-g.jpg'), +(12280,931,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:24:\"2024/10/MUGURA-CR2-g.jpg\";s:8:\"filesize\";i:174500;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"MUGURA-CR2-g-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18892;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), +(12281,931,'_wp_attachment_image_alt','Mugura minimalist gold plated silver hoops.'), +(12287,398,'_photos_colonne_gauche|||0|value','931'), +(12288,398,'_photos_colonne_droite|||0|value','400'), +(12289,398,'_photos_colonne_droite|||1|value','401'), +(12290,398,'_photos_colonne_droite|||2|value','722'), +(12291,398,'_haiku_details_produit',''), +(12292,932,'_wp_attached_file','2024/10/MUGURA-CR2-s.jpg'), +(12293,932,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:24:\"2024/10/MUGURA-CR2-s.jpg\";s:8:\"filesize\";i:176716;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"MUGURA-CR2-s-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18743;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), +(12294,932,'_wp_attachment_image_alt','Mugura minimalist silver hoops.'), +(12295,393,'_photos_colonne_gauche|||0|value','932'), +(12296,393,'_photos_colonne_droite|||0|value','397'), +(12297,393,'_photos_colonne_droite|||1|value','673'), +(12298,393,'_photos_colonne_droite|||2|value','396'), +(12299,393,'_haiku_details_produit',''), +(12300,934,'_wp_attached_file','2024/11/HADOU-BOP-1.jpg'), +(12301,934,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:23:\"2024/11/HADOU-BOP-1.jpg\";s:8:\"filesize\";i:160091;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"HADOU-BOP-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18088;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), +(12302,934,'_wp_attachment_image_alt','Hadou wavy stud earrings in silver.'), +(12303,490,'_photos_colonne_gauche|||0|value','934'), +(12304,490,'_photos_colonne_droite|||0|value','755'), +(12305,490,'_photos_colonne_droite|||1|value','752'), +(12306,490,'_haiku_details_produit',''), +(12307,935,'_wp_attached_file','2024/11/KARA-CR-s-1.jpg'), +(12308,935,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:23:\"2024/11/KARA-CR-s-1.jpg\";s:8:\"filesize\";i:173653;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"KARA-CR-s-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18419;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), +(12309,935,'_wp_attachment_image_alt','Kara small textured sterling silver hoops.'), +(12310,936,'_wp_attached_file','2024/11/DSC00650.jpg'), +(12311,936,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2760;s:6:\"height\";i:2760;s:4:\"file\";s:20:\"2024/11/DSC00650.jpg\";s:8:\"filesize\";i:1683107;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"DSC00650-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35988;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"5.6\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:6:\"NEX-C3\";s:7:\"caption\";s:8:\"SONY DSC\";s:17:\"created_timestamp\";s:10:\"1294989922\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"18\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:8:\"SONY DSC\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), +(12312,936,'_wp_attachment_image_alt','Kara small textured silver hoops.'), +(12313,937,'_wp_attached_file','2024/11/DSC00655.jpg'), +(12314,937,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2760;s:6:\"height\";i:2760;s:4:\"file\";s:20:\"2024/11/DSC00655.jpg\";s:8:\"filesize\";i:1563690;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"DSC00655-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35696;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"5.6\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:6:\"NEX-C3\";s:7:\"caption\";s:8:\"SONY DSC\";s:17:\"created_timestamp\";s:10:\"1294989978\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"18\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:8:\"SONY DSC\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), +(12315,937,'_wp_attachment_image_alt','Kara small textured silver hoops.'), +(12316,554,'_photos_colonne_gauche|||0|value','935'), +(12317,554,'_photos_colonne_droite|||0|value','936'), +(12318,554,'_photos_colonne_droite|||1|value','937'), +(12319,554,'_photos_colonne_droite|||2|value','835'), +(12320,554,'_haiku_details_produit',''), +(12321,938,'_wp_attached_file','2024/11/KARA-CR-g-1.jpg'), +(12322,938,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:23:\"2024/11/KARA-CR-g-1.jpg\";s:8:\"filesize\";i:170852;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"KARA-CR-g-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18352;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), +(12323,938,'_wp_attachment_image_alt','Kara small textured gold plated silver hoops.'), +(12324,545,'_photos_colonne_gauche|||0|value','938'), +(12325,545,'_photos_colonne_droite|||0|value','762'), +(12326,545,'_photos_colonne_droite|||1|value','834'), +(12327,545,'_haiku_details_produit',''), +(12328,939,'_wp_attached_file','2024/11/KARA-EC-g.jpg'), +(12329,939,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:21:\"2024/11/KARA-EC-g.jpg\";s:8:\"filesize\";i:162501;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"KARA-EC-g-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17883;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), +(12330,939,'_wp_attachment_image_alt','Kara textured ear cuff in gold plated silver.'), +(12331,447,'_photos_colonne_gauche|||0|value','939'), +(12332,447,'_photos_colonne_droite|||0|value','830'), +(12333,447,'_photos_colonne_droite|||1|value','939'), +(12334,447,'_haiku_details_produit',''), +(12335,940,'_wp_attached_file','2024/10/KARA-EC-s.jpg'), +(12336,940,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:21:\"2024/10/KARA-EC-s.jpg\";s:8:\"filesize\";i:157285;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"KARA-EC-s-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17771;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), +(12337,940,'_wp_attachment_image_alt','Kara textured ear cuff in silver.'), +(12338,435,'_photos_colonne_gauche|||0|value','940'), +(12339,435,'_photos_colonne_droite|||0|value','437'), +(12340,435,'_photos_colonne_droite|||1|value','940'), +(12341,435,'_haiku_details_produit',''), +(12342,941,'_edit_lock','1750440068:1'), +(12343,941,'_edit_last','1'), +(12347,943,'_wp_attached_file','2025/06/DSC00671.jpg'), +(12348,943,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2760;s:6:\"height\";i:2760;s:4:\"file\";s:20:\"2025/06/DSC00671.jpg\";s:8:\"filesize\";i:1219328;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"DSC00671-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31560;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"5.6\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:6:\"NEX-C3\";s:7:\"caption\";s:8:\"SONY DSC\";s:17:\"created_timestamp\";s:10:\"1294990774\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"20\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:8:\"SONY DSC\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), +(12349,943,'_wp_attachment_image_alt','Uteki swirling ring with a prehnite oval stone. in sterling silver'), +(12350,943,'_wp_attachment_image_alt','Uteki swirling ring with a prehnite oval stone. in sterling silver'), +(12351,941,'total_sales','0'), +(12352,941,'_tax_status','taxable'), +(12353,941,'_tax_class',''), +(12354,941,'_manage_stock','no'), +(12355,941,'_backorders','no'), +(12356,941,'_sold_individually','no'), +(12357,941,'_virtual','no'), +(12358,941,'_downloadable','no'), +(12359,941,'_download_limit','-1'), +(12360,941,'_download_expiry','-1'), +(12361,941,'_stock',NULL), +(12362,941,'_stock_status','instock'), +(12363,941,'_wc_average_rating','0'), +(12364,941,'_wc_review_count','0'), +(12365,941,'_product_attributes','a:1:{s:7:\"pa_size\";a:6:{s:4:\"name\";s:7:\"pa_size\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'), +(12366,941,'_product_version','9.9.4'), +(12367,944,'_variation_description',''), +(12368,944,'total_sales','0'), +(12369,944,'_tax_status','taxable'), +(12370,944,'_tax_class','parent'), +(12371,944,'_manage_stock','no'), +(12372,944,'_backorders','no'), +(12373,944,'_sold_individually','no'), +(12374,944,'_virtual','no'), +(12375,944,'_downloadable','no'), +(12376,944,'_download_limit','-1'), +(12377,944,'_download_expiry','-1'), +(12378,944,'_stock',NULL), +(12379,944,'_stock_status','instock'), +(12380,944,'_wc_average_rating','0'), +(12381,944,'_wc_review_count','0'), +(12382,944,'attribute_pa_size','50'), +(12383,944,'_product_version','9.9.3'), +(12384,945,'_variation_description',''), +(12385,945,'total_sales','0'), +(12386,945,'_tax_status','taxable'), +(12387,945,'_tax_class','parent'), +(12388,945,'_manage_stock','no'), +(12389,945,'_backorders','no'), +(12390,945,'_sold_individually','no'), +(12391,945,'_virtual','no'), +(12392,945,'_downloadable','no'), +(12393,945,'_download_limit','-1'), +(12394,945,'_download_expiry','-1'), +(12395,945,'_stock',NULL), +(12396,945,'_stock_status','instock'), +(12397,945,'_wc_average_rating','0'), +(12398,945,'_wc_review_count','0'), +(12399,945,'attribute_pa_size','52'), +(12400,945,'_product_version','9.9.3'), +(12401,946,'_variation_description',''), +(12402,946,'total_sales','0'), +(12403,946,'_tax_status','taxable'), +(12404,946,'_tax_class','parent'), +(12405,946,'_manage_stock','no'), +(12406,946,'_backorders','no'), +(12407,946,'_sold_individually','no'), +(12408,946,'_virtual','no'), +(12409,946,'_downloadable','no'), +(12410,946,'_download_limit','-1'), +(12411,946,'_download_expiry','-1'), +(12412,946,'_stock',NULL), +(12413,946,'_stock_status','instock'), +(12414,946,'_wc_average_rating','0'), +(12415,946,'_wc_review_count','0'), +(12416,946,'attribute_pa_size','54'), +(12417,946,'_product_version','9.9.3'), +(12418,947,'_variation_description',''), +(12419,947,'total_sales','0'), +(12420,947,'_tax_status','taxable'), +(12421,947,'_tax_class','parent'), +(12422,947,'_manage_stock','no'), +(12423,947,'_backorders','no'), +(12424,947,'_sold_individually','no'), +(12425,947,'_virtual','no'), +(12426,947,'_downloadable','no'), +(12427,947,'_download_limit','-1'), +(12428,947,'_download_expiry','-1'), +(12429,947,'_stock',NULL), +(12430,947,'_stock_status','instock'), +(12431,947,'_wc_average_rating','0'), +(12432,947,'_wc_review_count','0'), +(12433,947,'attribute_pa_size','56'), +(12434,947,'_product_version','9.9.3'), +(12435,948,'_variation_description',''), +(12436,948,'total_sales','0'), +(12437,948,'_tax_status','taxable'), +(12438,948,'_tax_class','parent'), +(12439,948,'_manage_stock','no'), +(12440,948,'_backorders','no'), +(12441,948,'_sold_individually','no'), +(12442,948,'_virtual','no'), +(12443,948,'_downloadable','no'), +(12444,948,'_download_limit','-1'), +(12445,948,'_download_expiry','-1'), +(12446,948,'_stock',NULL), +(12447,948,'_stock_status','instock'), +(12448,948,'_wc_average_rating','0'), +(12449,948,'_wc_review_count','0'), +(12450,948,'attribute_pa_size','58'), +(12451,948,'_product_version','9.9.3'), +(12452,949,'_variation_description',''), +(12453,949,'total_sales','0'), +(12454,949,'_tax_status','taxable'), +(12455,949,'_tax_class','parent'), +(12456,949,'_manage_stock','no'), +(12457,949,'_backorders','no'), +(12458,949,'_sold_individually','no'), +(12459,949,'_virtual','no'), +(12460,949,'_downloadable','no'), +(12461,949,'_download_limit','-1'), +(12462,949,'_download_expiry','-1'), +(12463,949,'_stock',NULL), +(12464,949,'_stock_status','instock'), +(12465,949,'_wc_average_rating','0'), +(12466,949,'_wc_review_count','0'), +(12467,949,'attribute_pa_size','60'), +(12468,949,'_product_version','9.9.3'), +(12469,950,'_variation_description',''), +(12470,950,'total_sales','0'), +(12471,950,'_tax_status','taxable'), +(12472,950,'_tax_class','parent'), +(12473,950,'_manage_stock','no'), +(12474,950,'_backorders','no'), +(12475,950,'_sold_individually','no'), +(12476,950,'_virtual','no'), +(12477,950,'_downloadable','no'), +(12478,950,'_download_limit','-1'), +(12479,950,'_download_expiry','-1'), +(12480,950,'_stock',NULL), +(12481,950,'_stock_status','instock'), +(12482,950,'_wc_average_rating','0'), +(12483,950,'_wc_review_count','0'), +(12484,950,'attribute_pa_size','62'), +(12485,950,'_product_version','9.9.3'), +(12486,951,'_variation_description',''), +(12487,951,'total_sales','0'), +(12488,951,'_tax_status','taxable'), +(12489,951,'_tax_class','parent'), +(12490,951,'_manage_stock','no'), +(12491,951,'_backorders','no'), +(12492,951,'_sold_individually','no'), +(12493,951,'_virtual','no'), +(12494,951,'_downloadable','no'), +(12495,951,'_download_limit','-1'), +(12496,951,'_download_expiry','-1'), +(12497,951,'_stock',NULL), +(12498,951,'_stock_status','instock'), +(12499,951,'_wc_average_rating','0'), +(12500,951,'_wc_review_count','0'), +(12501,951,'attribute_pa_size','64'), +(12502,951,'_product_version','9.9.3'), +(12503,944,'_sku','UTEKI-B-s-50'), +(12504,944,'_regular_price','110'), +(12505,944,'_thumbnail_id','0'), +(12506,944,'_price','110'), +(12507,945,'_sku','UTEKI-B-s-52'), +(12508,945,'_regular_price','110'), +(12509,945,'_thumbnail_id','0'), +(12510,945,'_price','110'), +(12511,946,'_sku','UTEKI-B-s-54'), +(12512,946,'_regular_price','110'), +(12513,946,'_thumbnail_id','0'), +(12514,946,'_price','110'), +(12515,947,'_sku','UTEKI-B-s-56'), +(12516,947,'_regular_price','110'), +(12517,947,'_thumbnail_id','0'), +(12518,947,'_price','110'), +(12519,948,'_sku','UTEKI-B-s-58'), +(12520,948,'_regular_price','110'), +(12521,948,'_thumbnail_id','0'), +(12522,948,'_price','110'), +(12523,949,'_sku','UTEKI-B-s-60'), +(12524,949,'_regular_price','110'), +(12525,949,'_thumbnail_id','0'), +(12526,949,'_price','110'), +(12527,950,'_sku','UTEKI-B-s-62'), +(12528,950,'_regular_price','110'), +(12529,950,'_thumbnail_id','0'), +(12530,950,'_price','110'), +(12531,951,'_sku','UTEKI-B-s-64'), +(12532,951,'_regular_price','110'), +(12533,951,'_thumbnail_id','0'), +(12534,951,'_price','110'), +(12535,941,'_price','110'), +(12537,941,'_regular_price','110'), +(12541,952,'_wp_attached_file','2025/06/UTEKI-B-s-1.jpg'), +(12542,952,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:23:\"2025/06/UTEKI-B-s-1.jpg\";s:8:\"filesize\";i:176396;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"UTEKI-B-s-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20275;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), +(12543,952,'_wp_attachment_image_alt','Uteki swirling ring with a prehnite oval stone. In sterling silver'), +(12544,941,'_thumbnail_id','952'), +(12548,953,'total_sales','0'), +(12549,953,'_tax_status','taxable'), +(12550,953,'_tax_class',''), +(12551,953,'_manage_stock','no'), +(12552,953,'_backorders','no'), +(12553,953,'_sold_individually','no'), +(12554,953,'_virtual','no'), +(12555,953,'_downloadable','no'), +(12556,953,'_download_limit','-1'), +(12557,953,'_download_expiry','-1'), +(12558,953,'_thumbnail_id','962'), +(12559,953,'_stock',NULL), +(12560,953,'_stock_status','instock'), +(12561,953,'_wc_average_rating','0'), +(12562,953,'_wc_review_count','0'), +(12563,953,'_product_attributes','a:1:{s:7:\"pa_size\";a:6:{s:4:\"name\";s:7:\"pa_size\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'), +(12564,953,'_product_version','9.9.4'), +(12568,954,'_variation_description',''), +(12569,954,'_sku','UTEKI-B-s-50-1'), +(12570,954,'_regular_price','115'), +(12571,954,'total_sales','0'), +(12572,954,'_tax_status','taxable'), +(12573,954,'_tax_class','parent'), +(12574,954,'_manage_stock','no'), +(12575,954,'_backorders','no'), +(12576,954,'_sold_individually','no'), +(12577,954,'_virtual','no'), +(12578,954,'_downloadable','no'), +(12579,954,'_download_limit','-1'), +(12580,954,'_download_expiry','-1'), +(12581,954,'_thumbnail_id','0'), +(12582,954,'_stock',NULL), +(12583,954,'_stock_status','instock'), +(12584,954,'_wc_average_rating','0'), +(12585,954,'_wc_review_count','0'), +(12586,954,'attribute_pa_size','50'), +(12587,954,'_price','115'), +(12588,954,'_product_version','9.9.3'), +(12589,955,'_variation_description',''), +(12590,955,'_sku','UTEKI-B-s-52-1'), +(12591,955,'_regular_price','115'), +(12592,955,'total_sales','0'), +(12593,955,'_tax_status','taxable'), +(12594,955,'_tax_class','parent'), +(12595,955,'_manage_stock','no'), +(12596,955,'_backorders','no'), +(12597,955,'_sold_individually','no'), +(12598,955,'_virtual','no'), +(12599,955,'_downloadable','no'), +(12600,955,'_download_limit','-1'), +(12601,955,'_download_expiry','-1'), +(12602,955,'_thumbnail_id','0'), +(12603,955,'_stock',NULL), +(12604,955,'_stock_status','instock'), +(12605,955,'_wc_average_rating','0'), +(12606,955,'_wc_review_count','0'), +(12607,955,'attribute_pa_size','52'), +(12608,955,'_price','115'), +(12609,955,'_product_version','9.9.3'), +(12610,956,'_variation_description',''), +(12611,956,'_sku','UTEKI-B-s-54-1'), +(12612,956,'_regular_price','115'), +(12613,956,'total_sales','0'), +(12614,956,'_tax_status','taxable'), +(12615,956,'_tax_class','parent'), +(12616,956,'_manage_stock','no'), +(12617,956,'_backorders','no'), +(12618,956,'_sold_individually','no'), +(12619,956,'_virtual','no'), +(12620,956,'_downloadable','no'), +(12621,956,'_download_limit','-1'), +(12622,956,'_download_expiry','-1'), +(12623,956,'_thumbnail_id','0'), +(12624,956,'_stock',NULL), +(12625,956,'_stock_status','instock'), +(12626,956,'_wc_average_rating','0'), +(12627,956,'_wc_review_count','0'), +(12628,956,'attribute_pa_size','54'), +(12629,956,'_price','115'), +(12630,956,'_product_version','9.9.3'), +(12631,957,'_variation_description',''), +(12632,957,'_sku','UTEKI-B-s-56-1'), +(12633,957,'_regular_price','115'), +(12634,957,'total_sales','0'), +(12635,957,'_tax_status','taxable'), +(12636,957,'_tax_class','parent'), +(12637,957,'_manage_stock','no'), +(12638,957,'_backorders','no'), +(12639,957,'_sold_individually','no'), +(12640,957,'_virtual','no'), +(12641,957,'_downloadable','no'), +(12642,957,'_download_limit','-1'), +(12643,957,'_download_expiry','-1'), +(12644,957,'_thumbnail_id','0'), +(12645,957,'_stock',NULL), +(12646,957,'_stock_status','instock'), +(12647,957,'_wc_average_rating','0'), +(12648,957,'_wc_review_count','0'), +(12649,957,'attribute_pa_size','56'), +(12650,957,'_price','115'), +(12651,957,'_product_version','9.9.3'), +(12652,958,'_variation_description',''), +(12653,958,'_sku','UTEKI-B-s-58-1'), +(12654,958,'_regular_price','115'), +(12655,958,'total_sales','0'), +(12656,958,'_tax_status','taxable'), +(12657,958,'_tax_class','parent'), +(12658,958,'_manage_stock','no'), +(12659,958,'_backorders','no'), +(12660,958,'_sold_individually','no'), +(12661,958,'_virtual','no'), +(12662,958,'_downloadable','no'), +(12663,958,'_download_limit','-1'), +(12664,958,'_download_expiry','-1'), +(12665,958,'_thumbnail_id','0'), +(12666,958,'_stock',NULL), +(12667,958,'_stock_status','instock'), +(12668,958,'_wc_average_rating','0'), +(12669,958,'_wc_review_count','0'), +(12670,958,'attribute_pa_size','58'), +(12671,958,'_price','115'), +(12672,958,'_product_version','9.9.3'), +(12673,959,'_variation_description',''), +(12674,959,'_sku','UTEKI-B-s-60-1'), +(12675,959,'_regular_price','115'), +(12676,959,'total_sales','0'), +(12677,959,'_tax_status','taxable'), +(12678,959,'_tax_class','parent'), +(12679,959,'_manage_stock','no'), +(12680,959,'_backorders','no'), +(12681,959,'_sold_individually','no'), +(12682,959,'_virtual','no'), +(12683,959,'_downloadable','no'), +(12684,959,'_download_limit','-1'), +(12685,959,'_download_expiry','-1'), +(12686,959,'_thumbnail_id','0'), +(12687,959,'_stock',NULL), +(12688,959,'_stock_status','instock'), +(12689,959,'_wc_average_rating','0'), +(12690,959,'_wc_review_count','0'), +(12691,959,'attribute_pa_size','60'), +(12692,959,'_price','115'), +(12693,959,'_product_version','9.9.3'), +(12694,960,'_variation_description',''), +(12695,960,'_sku','UTEKI-B-s-62-1'), +(12696,960,'_regular_price','115'), +(12697,960,'total_sales','0'), +(12698,960,'_tax_status','taxable'), +(12699,960,'_tax_class','parent'), +(12700,960,'_manage_stock','no'), +(12701,960,'_backorders','no'), +(12702,960,'_sold_individually','no'), +(12703,960,'_virtual','no'), +(12704,960,'_downloadable','no'), +(12705,960,'_download_limit','-1'), +(12706,960,'_download_expiry','-1'), +(12707,960,'_thumbnail_id','0'), +(12708,960,'_stock',NULL), +(12709,960,'_stock_status','instock'), +(12710,960,'_wc_average_rating','0'), +(12711,960,'_wc_review_count','0'), +(12712,960,'attribute_pa_size','62'), +(12713,960,'_price','115'), +(12714,960,'_product_version','9.9.3'), +(12715,961,'_variation_description',''), +(12716,961,'_sku','UTEKI-B-s-64-1'), +(12717,961,'_regular_price','115'), +(12718,961,'total_sales','0'), +(12719,961,'_tax_status','taxable'), +(12720,961,'_tax_class','parent'), +(12721,961,'_manage_stock','no'), +(12722,961,'_backorders','no'), +(12723,961,'_sold_individually','no'), +(12724,961,'_virtual','no'), +(12725,961,'_downloadable','no'), +(12726,961,'_download_limit','-1'), +(12727,961,'_download_expiry','-1'), +(12728,961,'_thumbnail_id','0'), +(12729,961,'_stock',NULL), +(12730,961,'_stock_status','instock'), +(12731,961,'_wc_average_rating','0'), +(12732,961,'_wc_review_count','0'), +(12733,961,'attribute_pa_size','64'), +(12734,961,'_price','115'), +(12735,961,'_product_version','9.9.3'), +(12737,953,'_edit_lock','1750439928:1'), +(12738,962,'_wp_attached_file','2025/06/UTEKI-B-g.jpg'), +(12739,962,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:21:\"2025/06/UTEKI-B-g.jpg\";s:8:\"filesize\";i:181915;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"UTEKI-B-g-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20491;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), +(12740,953,'_edit_last','1'), +(12741,962,'_wp_attachment_image_alt','Uteki swirling ring with a prehnite oval stone. In gold plated sterling silver'), +(12742,963,'_wp_attached_file','2025/06/DSC00670.jpg'), +(12743,963,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2760;s:6:\"height\";i:2760;s:4:\"file\";s:20:\"2025/06/DSC00670.jpg\";s:8:\"filesize\";i:1396939;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"DSC00670-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34019;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:6:\"NEX-C3\";s:7:\"caption\";s:8:\"SONY DSC\";s:17:\"created_timestamp\";s:10:\"1294990764\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"20\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:8:\"SONY DSC\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), +(12744,963,'_wp_attachment_image_alt',''), +(12745,953,'_price','115'), +(12749,263,'_photos_colonne_gauche|||0|value','696'), +(12750,263,'_photos_colonne_droite|||0|value','265'), +(12751,263,'_photos_colonne_droite|||1|value','267'), +(12752,263,'_photos_colonne_droite|||2|value','708'), +(12753,263,'_haiku_details_produit',''), +(12754,268,'_photos_colonne_gauche|||0|value','725'), +(12755,268,'_photos_colonne_droite|||0|value','704'), +(12756,268,'_photos_colonne_droite|||1|value','270'), +(12757,268,'_haiku_details_produit',''), +(12758,288,'_price','60'), +(12759,288,'_price','90'), +(12760,288,'_photos_colonne_gauche|||0|value','289'), +(12761,288,'_photos_colonne_droite|||0|value','290'), +(12762,288,'_photos_colonne_droite|||1|value','689'), +(12763,288,'_haiku_details_produit',''), +(12764,285,'_price','55'), +(12765,285,'_price','85'), +(12766,285,'_photos_colonne_gauche|||0|value','286'), +(12767,285,'_photos_colonne_droite|||0|value','287'), +(12768,285,'_haiku_details_produit',''), +(12769,247,'_wp_trash_meta_status','publish'), +(12770,247,'_wp_trash_meta_time','1750278720'), +(12771,247,'_wp_desired_post_slug','tamanori-earrings-gold-plated-copy-size-5'), +(12772,248,'_wp_trash_meta_status','publish'), +(12773,248,'_wp_trash_meta_time','1750278720'), +(12774,248,'_wp_desired_post_slug','tamanori-earrings-gold-plated-copy-size-6'), +(12775,246,'_wp_trash_meta_status','publish'), +(12776,246,'_wp_trash_meta_time','1750278720'), +(12777,246,'_wp_desired_post_slug','ikkan-bracelet-gold-plated'), +(12778,965,'_wp_attached_file','2024/10/BOROBORO-BO2-g.jpg'), +(12779,965,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:26:\"2024/10/BOROBORO-BO2-g.jpg\";s:8:\"filesize\";i:191599;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"BOROBORO-BO2-g-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21655;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), +(12780,965,'_wp_attachment_image_alt','pair of Boroboro long gold plated earrings with asymmetrical shapes.'), +(12781,213,'_price','50'), +(12782,213,'_price','75'), +(12783,213,'_thumbnail_id','965'), +(12784,213,'_photos_colonne_gauche|||0|value','965'), +(12785,213,'_photos_colonne_droite|||0|value','671'), +(12786,213,'_photos_colonne_droite|||1|value','199'), +(12787,213,'_haiku_details_produit',''), +(12788,966,'_wp_attached_file','2024/10/BOROBORO-BO2-s.jpg'), +(12789,966,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:26:\"2024/10/BOROBORO-BO2-s.jpg\";s:8:\"filesize\";i:181343;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"BOROBORO-BO2-s-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21159;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), +(12790,966,'_wp_attachment_image_alt','pair of Boroboro long silver earrings with asymmetrical shapes.'), +(12791,183,'_price','45'), +(12792,183,'_price','70'), +(12793,183,'_thumbnail_id','966'), +(12794,183,'_photos_colonne_gauche|||0|value','966'), +(12795,183,'_photos_colonne_droite|||0|value','718'), +(12796,183,'_photos_colonne_droite|||1|value','823'), +(12797,183,'_haiku_details_produit',''), +(12798,968,'_wp_attached_file','2024/09/PIASU-B-s.jpg'), +(12799,968,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:21:\"2024/09/PIASU-B-s.jpg\";s:8:\"filesize\";i:187836;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"PIASU-B-s-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17649;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), +(12800,968,'_wp_attachment_image_alt','Piasu wide band silver ring with three hoops.'), +(12801,123,'_price','100'), +(12802,123,'_thumbnail_id','968'), +(12803,123,'_photos_colonne_gauche|||0|value','968'), +(12804,123,'_photos_colonne_droite|||0|value','132'), +(12805,123,'_photos_colonne_droite|||1|value','681'), +(12806,123,'_haiku_details_produit',''), +(12807,168,'_price','100'), +(12808,168,'_price','110'), +(12809,168,'_photos_colonne_gauche|||0|value','726'), +(12810,168,'_photos_colonne_droite|||0|value','180'), +(12811,168,'_photos_colonne_droite|||1|value','177'), +(12812,168,'_photos_colonne_droite|||2|value','178'), +(12813,168,'_photos_colonne_droite|||3|value','182'), +(12814,168,'_photos_colonne_droite|||4|value','179'), +(12815,168,'_photos_colonne_droite|||5|value','826'), +(12816,168,'_haiku_details_produit',''), +(12817,969,'_wp_attached_file','2024/10/TANEMAKI-C-1.jpg'), +(12818,969,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:24:\"2024/10/TANEMAKI-C-1.jpg\";s:8:\"filesize\";i:581610;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"TANEMAKI-C-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26499;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:6:\"NEX-C3\";s:7:\"caption\";s:8:\"SONY DSC\";s:17:\"created_timestamp\";s:10:\"1294266271\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"18\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:8:\"SONY DSC\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), +(12819,969,'_wp_attachment_image_alt','Tanemaki silver necklace with fresh water grey pearls and gold plated details'), +(12820,271,'_thumbnail_id','969'), +(12821,271,'_photos_colonne_gauche|||0|value','737'), +(12822,271,'_photos_colonne_gauche|||1|value','969'), +(12823,271,'_photos_colonne_droite|||0|value','273'), +(12824,271,'_haiku_details_produit',''), +(12828,521,'_photos_colonne_gauche|||0|value','925'), +(12829,521,'_photos_colonne_droite|||0|value','831'), +(12830,521,'_photos_colonne_droite|||1|value','749'), +(12831,521,'_haiku_details_produit',''), +(12832,515,'_photos_colonne_gauche|||0|value','927'), +(12833,515,'_photos_colonne_droite|||0|value','832'), +(12834,515,'_photos_colonne_droite|||1|value','747'), +(12835,515,'_haiku_details_produit',''), +(12836,982,'total_sales','0'), +(12837,982,'_tax_status','taxable'), +(12838,982,'_tax_class',''), +(12839,982,'_manage_stock','no'), +(12840,982,'_backorders','no'), +(12841,982,'_sold_individually','no'), +(12842,982,'_virtual','no'), +(12843,982,'_downloadable','no'), +(12844,982,'_download_limit','-1'), +(12845,982,'_download_expiry','-1'), +(12846,982,'_thumbnail_id','991'), +(12847,982,'_stock',NULL), +(12848,982,'_stock_status','instock'), +(12849,982,'_wc_average_rating','0'), +(12850,982,'_wc_review_count','0'), +(12851,982,'_product_attributes','a:1:{s:7:\"pa_size\";a:6:{s:4:\"name\";s:7:\"pa_size\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'), +(12852,982,'_product_version','9.9.4'), +(13024,982,'_price','100'), +(13025,982,'_edit_lock','1750440191:1'), +(13026,982,'_edit_last','1'), +(13027,991,'_wp_attached_file','2025/06/UTEKI-C-s.jpg'), +(13028,991,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:21:\"2025/06/UTEKI-C-s.jpg\";s:8:\"filesize\";i:190153;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"UTEKI-C-s-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20983;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), +(13029,991,'_wp_attachment_image_alt','Uteki necklace with a droplet pendant and prehnite oval stone. In sterling silver'), +(13030,992,'_wp_attached_file','2025/06/DSC00689.jpg'), +(13031,992,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:4912;s:6:\"height\";i:2760;s:4:\"file\";s:20:\"2025/06/DSC00689.jpg\";s:8:\"filesize\";i:1445969;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"DSC00689-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18191;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'), +(13032,992,'_wp_attachment_image_alt','Uteki necklaces with a droplet pendant and prehnite oval stone.'), +(13033,993,'_wp_attached_file','2025/06/DSC00684.jpg'), +(13034,993,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2137;s:6:\"height\";i:2138;s:4:\"file\";s:20:\"2025/06/DSC00684.jpg\";s:8:\"filesize\";i:950776;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"DSC00684-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32474;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:6:\"NEX-C3\";s:7:\"caption\";s:8:\"SONY DSC\";s:17:\"created_timestamp\";s:10:\"1294991090\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"18\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:5:\"0.004\";s:5:\"title\";s:8:\"SONY DSC\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), +(13035,993,'_wp_attachment_image_alt','Uteki necklace with a droplet pendant and prehnite oval stone. Silver version'), +(13036,982,'_sku','UTEKI-C-s'), +(13037,982,'_regular_price','100'), +(13042,994,'_sku','UTEKI-C-g'), +(13043,994,'_regular_price','100'), +(13044,994,'total_sales','0'), +(13045,994,'_tax_status','taxable'), +(13046,994,'_tax_class',''), +(13047,994,'_manage_stock','no'), +(13048,994,'_backorders','no'), +(13049,994,'_sold_individually','no'), +(13050,994,'_virtual','no'), +(13051,994,'_downloadable','no'), +(13052,994,'_download_limit','-1'), +(13053,994,'_download_expiry','-1'), +(13054,994,'_thumbnail_id','995'), +(13055,994,'_stock',NULL), +(13056,994,'_stock_status','instock'), +(13057,994,'_wc_average_rating','0'), +(13058,994,'_wc_review_count','0'), +(13059,994,'_product_attributes','a:1:{s:7:\"pa_size\";a:6:{s:4:\"name\";s:7:\"pa_size\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'), +(13060,994,'_product_version','9.9.4'), +(13061,994,'_price','100'), +(13066,994,'_edit_lock','1750440135:1'), +(13067,995,'_wp_attached_file','2025/06/UTEKI-C-g.jpg'), +(13068,995,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1920;s:4:\"file\";s:21:\"2025/06/UTEKI-C-g.jpg\";s:8:\"filesize\";i:196560;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"UTEKI-C-g-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22259;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), +(13069,995,'_wp_attachment_image_alt','Uteki necklace with a droplet pendant and prehnite oval stone. In gold plated silver'), +(13070,994,'_edit_last','1'), +(13071,996,'_wp_attached_file','2025/06/DSC00699.jpg'), +(13072,996,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2760;s:6:\"height\";i:2760;s:4:\"file\";s:20:\"2025/06/DSC00699.jpg\";s:8:\"filesize\";i:1161535;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"DSC00699-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33359;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:6:\"NEX-C3\";s:7:\"caption\";s:8:\"SONY DSC\";s:17:\"created_timestamp\";s:10:\"1294991497\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"19\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:5:\"0.004\";s:5:\"title\";s:8:\"SONY DSC\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'), +(13073,996,'_wp_attachment_image_alt','Uteki necklace with a droplet pendant and prehnite oval stone.'), +(13078,941,'_sku','UTEKI-B-s'), +(13082,953,'_sku','UTEKI-B-g'), +(13086,953,'_photos_colonne_gauche|||0|value','962'), +(13087,953,'_photos_colonne_droite|||0|value','963'), +(13088,953,'_haiku_details_produit',''), +(13089,941,'_photos_colonne_gauche|||0|value','952'), +(13090,941,'_photos_colonne_droite|||0|value','943'), +(13091,941,'_haiku_details_produit',''), +(13092,994,'_photos_colonne_gauche|||0|value','995'), +(13093,994,'_photos_colonne_droite|||0|value','992'), +(13094,994,'_photos_colonne_droite|||1|value','996'), +(13095,994,'_haiku_details_produit',''), +(13096,982,'_photos_colonne_gauche|||0|value','991'), +(13097,982,'_photos_colonne_droite|||0|value','992'), +(13098,982,'_photos_colonne_droite|||1|value','993'), +(13099,982,'_haiku_details_produit',''); +/*!40000 ALTER TABLE `haikuwp_postmeta` ENABLE KEYS */; +UNLOCK TABLES; +commit; + +-- +-- Table structure for table `haikuwp_posts` +-- + +DROP TABLE IF EXISTS `haikuwp_posts`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8mb4 */; +CREATE TABLE `haikuwp_posts` ( + `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, + `post_author` bigint(20) unsigned NOT NULL DEFAULT 0, + `post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + `post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + `post_content` longtext NOT NULL, + `post_title` text NOT NULL, + `post_excerpt` text NOT NULL, + `post_status` varchar(20) NOT NULL DEFAULT 'publish', + `comment_status` varchar(20) NOT NULL DEFAULT 'open', + `ping_status` varchar(20) NOT NULL DEFAULT 'open', + `post_password` varchar(255) NOT NULL DEFAULT '', + `post_name` varchar(200) NOT NULL DEFAULT '', + `to_ping` text NOT NULL, + `pinged` text NOT NULL, + `post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + `post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + `post_content_filtered` longtext NOT NULL, + `post_parent` bigint(20) unsigned NOT NULL DEFAULT 0, + `guid` varchar(255) NOT NULL DEFAULT '', + `menu_order` int(11) NOT NULL DEFAULT 0, + `post_type` varchar(20) NOT NULL DEFAULT 'post', + `post_mime_type` varchar(100) NOT NULL DEFAULT '', + `comment_count` bigint(20) NOT NULL DEFAULT 0, + PRIMARY KEY (`ID`), + KEY `post_name` (`post_name`(191)), + KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`), + KEY `post_parent` (`post_parent`), + KEY `post_author` (`post_author`) +) ENGINE=InnoDB AUTO_INCREMENT=1001 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `haikuwp_posts` +-- + +LOCK TABLES `haikuwp_posts` WRITE; +/*!40000 ALTER TABLE `haikuwp_posts` DISABLE KEYS */; +set autocommit=0; +INSERT INTO `haikuwp_posts` VALUES +(1,1,'2024-08-04 22:10:39','2024-08-04 20:10:39','\n

Bienvenue sur WordPress. Ceci est votre premier article. Modifiez-le ou supprimez-le, puis commencez à écrire !

\n','Bonjour tout le monde !','','publish','open','open','','bonjour-tout-le-monde','','','2024-08-04 22:10:39','2024-08-04 20:10:39','',0,'https://haikuatelier.fr.ddev.site/?p=1',0,'post','',1), +(4,0,'2024-08-04 22:10:39','2024-08-04 20:10:39','','Navigation','','publish','closed','closed','','navigation','','','2024-08-04 22:10:39','2024-08-04 20:10:39','',0,'https://haikuatelier.fr.ddev.site/2024/08/04/navigation/',0,'wp_navigation','',0), +(13,1,'2024-08-05 15:21:14','2024-08-05 13:21:14','','Home','','publish','closed','closed','','home','','','2024-08-05 15:21:14','2024-08-05 13:21:14','',0,'https://haikuatelier.fr.ddev.site/?page_id=13',0,'page','',0), +(14,1,'2024-08-05 15:21:25','2024-08-05 13:21:25','','E-Shop','','publish','closed','closed','','shop','','','2024-08-06 22:21:51','2024-08-06 20:21:51','',0,'https://haikuatelier.fr.ddev.site/?page_id=14',0,'page','',0), +(16,1,'2024-08-05 15:22:02','2024-08-05 13:22:02','','Cart','','publish','closed','closed','','cart','','','2024-08-05 15:22:02','2024-08-05 13:22:02','',0,'https://haikuatelier.fr.ddev.site/?page_id=16',0,'page','',0), +(17,1,'2024-08-05 15:22:18','2024-08-05 13:22:18','','Checkout','','publish','closed','closed','','checkout','','','2024-08-05 15:22:18','2024-08-05 13:22:18','',0,'https://haikuatelier.fr.ddev.site/?page_id=17',0,'page','',0), +(18,1,'2024-08-05 15:22:40','2024-08-05 13:22:40','','Privacy policy','','publish','closed','closed','','privacy-policy','','','2024-08-05 15:22:40','2024-08-05 13:22:40','',0,'https://haikuatelier.fr.ddev.site/?page_id=18',0,'page','',0), +(19,1,'2024-08-05 15:23:03','2024-08-05 13:23:03','','Terms & Conditions','','publish','closed','closed','','terms-and-conditions','','','2024-11-25 16:28:57','2024-11-25 15:28:57','',0,'https://haikuatelier.fr.ddev.site/?page_id=19',0,'page','',0), +(26,1,'2024-08-06 22:21:23','2024-08-06 20:21:23','','Contact','','publish','closed','closed','','contact','','','2024-08-06 22:21:23','2024-08-06 20:21:23','',0,'https://haikuatelier.fr.ddev.site/?page_id=26',0,'page','',0), +(27,1,'2024-08-06 22:21:30','2024-08-06 20:21:30','','About','','publish','closed','closed','','about','','','2024-08-06 22:21:30','2024-08-06 20:21:30','',0,'https://haikuatelier.fr.ddev.site/?page_id=27',0,'page','',0), +(72,2,'2024-09-25 08:20:29','2024-09-25 06:20:29','HADOU: wave \r\n\r\nA wavy ring mixing two bands: one in sterling silver, the other in gold plated silver.\r\n
    \r\n
  • total width 0,5cm
  • \r\n
  • wires diameter 2mm and 1,5mm
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nFind some help to chose your ring size here.\r\n\r\nAll our pieces are made in 80% recycled silver and 24K gold plated silver.','Hadou Ring','','publish','closed','closed','','hadou-ring','','','2024-11-24 11:44:31','2024-11-24 10:44:31','',0,'https://haiku.gcch.fr/?post_type=product&p=72',0,'product','',0), +(73,2,'2024-09-25 08:20:29','2024-09-25 06:20:29','','Hadou Ring - 50','Size: 50','publish','closed','closed','','hadou-golden-earcuff-63','','','2024-09-30 17:59:13','2024-09-30 15:59:13','',72,'https://haiku.gcch.fr/?post_type=product_variation&p=73',2,'product_variation','',0), +(74,2,'2024-09-25 08:20:29','2024-09-25 06:20:29','','Hadou Ring - 52','Size: 52','publish','closed','closed','','hadou-golden-earcuff-64','','','2024-09-30 17:59:13','2024-09-30 15:59:13','',72,'https://haiku.gcch.fr/?post_type=product_variation&p=74',3,'product_variation','',0), +(75,2,'2024-09-25 08:20:29','2024-09-25 06:20:29','','Hadou Ring - 54','Size: 54','publish','closed','closed','','hadou-golden-earcuff-65','','','2024-09-30 17:59:13','2024-09-30 15:59:13','',72,'https://haiku.gcch.fr/?post_type=product_variation&p=75',4,'product_variation','',0), +(76,2,'2024-09-25 08:20:29','2024-09-25 06:20:29','','Hadou Ring - 56','Size: 56','publish','closed','closed','','hadou-golden-earcuff-66','','','2024-09-30 17:59:13','2024-09-30 15:59:13','',72,'https://haiku.gcch.fr/?post_type=product_variation&p=76',5,'product_variation','',0), +(77,2,'2024-09-25 08:20:29','2024-09-25 06:20:29','','Hadou Ring - 58','Size: 58','publish','closed','closed','','hadou-golden-earcuff-67','','','2024-09-30 17:59:13','2024-09-30 15:59:13','',72,'https://haiku.gcch.fr/?post_type=product_variation&p=77',6,'product_variation','',0), +(78,2,'2024-09-25 08:20:29','2024-09-25 06:20:29','','Hadou Ring - 60','Size: 60','publish','closed','closed','','hadou-golden-earcuff-68','','','2024-09-30 17:59:13','2024-09-30 15:59:13','',72,'https://haiku.gcch.fr/?post_type=product_variation&p=78',7,'product_variation','',0), +(79,2,'2024-09-25 08:20:29','2024-09-25 06:20:29','','Hadou Ring - 62','Size: 62','publish','closed','closed','','hadou-golden-earcuff-69','','','2024-09-30 17:59:13','2024-09-30 15:59:13','',72,'https://haiku.gcch.fr/?post_type=product_variation&p=79',8,'product_variation','',0), +(81,2,'2024-09-30 17:22:16','2024-09-30 15:22:16','','Hadou Ring','','inherit','closed','closed','','sony-dsc','','','2024-09-30 17:26:53','2024-09-30 15:26:53','',72,'https://haiku.gcch.fr/app/uploads/2024/09/HADOU-B.jpg',0,'attachment','image/jpeg',0), +(100,2,'2024-09-30 18:51:37','2024-09-30 16:51:37','','Hadou ring','','inherit','closed','closed','','hadou-b-mix','','','2024-09-30 18:51:55','2024-09-30 16:51:55','',72,'https://haiku.gcch.fr/app/uploads/2024/09/HADOU-B-mix.jpg',0,'attachment','image/jpeg',0), +(102,2,'2024-09-30 18:54:28','2024-09-30 16:54:28','IKKAN : link\r\n\r\nA piece made of an oversized link thread into a D-shaped sterling silver band ring.\r\n
    \r\n
  • link caliber 1cm
  • \r\n
  • band diameter 2mm
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nFind some help to chose your ring size here.\r\n\r\nAll our pieces are made in 80% recycled sterling silver and 24K gold plated silver.','Ikkan Ring silver','','publish','closed','closed','','ikkan-ring-silver','','','2024-11-24 11:45:53','2024-11-24 10:45:53','',0,'https://haiku.gcch.fr/?post_type=product&p=102',0,'product','',0), +(103,2,'2024-09-30 18:54:28','2024-09-30 16:54:28','','Ikkan Ring silver - 50','Size: 50','publish','closed','closed','','hadou-golden-earcuff-77','','','2024-11-12 23:40:26','2024-11-12 22:40:26','',102,'https://haiku.gcch.fr/?post_type=product_variation&p=103',1,'product_variation','',0), +(104,2,'2024-09-30 18:54:28','2024-09-30 16:54:28','','Ikkan Ring silver - 52','Size: 52','publish','closed','closed','','hadou-golden-earcuff-78','','','2024-11-12 23:40:26','2024-11-12 22:40:26','',102,'https://haiku.gcch.fr/?post_type=product_variation&p=104',2,'product_variation','',0), +(105,2,'2024-09-30 18:54:28','2024-09-30 16:54:28','','Ikkan Ring silver - 54','Size: 54','publish','closed','closed','','hadou-golden-earcuff-79','','','2024-11-12 23:40:26','2024-11-12 22:40:26','',102,'https://haiku.gcch.fr/?post_type=product_variation&p=105',3,'product_variation','',0), +(106,2,'2024-09-30 18:54:28','2024-09-30 16:54:28','','Ikkan Ring silver - 56','Size: 56','publish','closed','closed','','hadou-golden-earcuff-80','','','2024-11-12 23:40:26','2024-11-12 22:40:26','',102,'https://haiku.gcch.fr/?post_type=product_variation&p=106',4,'product_variation','',0), +(107,2,'2024-09-30 18:54:28','2024-09-30 16:54:28','','Ikkan Ring silver - 58','Size: 58','publish','closed','closed','','hadou-golden-earcuff-81','','','2024-11-12 23:40:26','2024-11-12 22:40:26','',102,'https://haiku.gcch.fr/?post_type=product_variation&p=107',5,'product_variation','',0), +(108,2,'2024-09-30 18:54:28','2024-09-30 16:54:28','','Ikkan Ring silver - 60','Size: 60','publish','closed','closed','','hadou-golden-earcuff-82','','','2024-11-12 23:40:26','2024-11-12 22:40:26','',102,'https://haiku.gcch.fr/?post_type=product_variation&p=108',6,'product_variation','',0), +(109,2,'2024-09-30 18:54:28','2024-09-30 16:54:28','','Ikkan Ring silver - 62','Size: 62','publish','closed','closed','','hadou-golden-earcuff-83','','','2024-11-12 23:40:27','2024-11-12 22:40:27','',102,'https://haiku.gcch.fr/?post_type=product_variation&p=109',7,'product_variation','',0), +(110,2,'2024-09-30 18:56:37','2024-09-30 16:56:37','','Ikkan silver Ring','','inherit','closed','closed','','sony-dsc-3','','','2024-09-30 18:58:06','2024-09-30 16:58:06','',102,'https://haiku.gcch.fr/app/uploads/2024/09/IKKAN-B2-arg.jpg',0,'attachment','image/jpeg',0), +(111,2,'2024-09-30 18:57:45','2024-09-30 16:57:45','','Ikkan silver ring','','inherit','closed','closed','','ikkan-b-arg','','','2024-09-30 18:58:26','2024-09-30 16:58:26','',102,'https://haiku.gcch.fr/app/uploads/2024/09/IKKAN-B-arg.jpg',0,'attachment','image/jpeg',0), +(112,2,'2024-09-30 18:59:53','2024-09-30 16:59:53','','Ikkan silver ring + Kishou ring','','inherit','closed','closed','','ikkan-bakigen-ba','','','2024-09-30 19:00:36','2024-09-30 17:00:36','',102,'https://haiku.gcch.fr/app/uploads/2024/09/IKKAN-BaKIGEN-Ba.jpg',0,'attachment','image/jpeg',0), +(113,2,'2024-09-30 21:12:33','2024-09-30 19:12:33','IKKAN: link\r\n\r\nA piece made of an oversized link thread into a D-shaped gold plated silver band ring.\r\n
    \r\n
  • link caliber 1cm
  • \r\n
  • band diameter 2mm
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nFind some help to chose your ring size here.\r\n\r\nAll our pieces are made in 80% recycled sterling silver and 24K gold plated silver.','Ikkan Ring gold plated','','publish','closed','closed','','ikkan-ring-gold-plated','','','2024-11-24 11:53:51','2024-11-24 10:53:51','',0,'https://haiku.gcch.fr/?post_type=product&p=113',0,'product','',0), +(114,2,'2024-09-30 21:12:33','2024-09-30 19:12:33','','Ikkan Ring gold plated - 50','Size: 50','publish','closed','closed','','hadou-golden-earcuff-84','','','2024-11-12 23:42:29','2024-11-12 22:42:29','',113,'https://haiku.gcch.fr/?post_type=product_variation&p=114',1,'product_variation','',0), +(115,2,'2024-09-30 21:12:33','2024-09-30 19:12:33','','Ikkan Ring gold plated - 52','Size: 52','publish','closed','closed','','hadou-golden-earcuff-85','','','2024-11-12 23:42:29','2024-11-12 22:42:29','',113,'https://haiku.gcch.fr/?post_type=product_variation&p=115',2,'product_variation','',0), +(116,2,'2024-09-30 21:12:33','2024-09-30 19:12:33','','Ikkan Ring gold plated - 54','Size: 54','publish','closed','closed','','hadou-golden-earcuff-86','','','2024-11-12 23:42:29','2024-11-12 22:42:29','',113,'https://haiku.gcch.fr/?post_type=product_variation&p=116',3,'product_variation','',0), +(117,2,'2024-09-30 21:12:33','2024-09-30 19:12:33','','Ikkan Ring gold plated - 56','Size: 56','publish','closed','closed','','hadou-golden-earcuff-87','','','2024-11-12 23:42:29','2024-11-12 22:42:29','',113,'https://haiku.gcch.fr/?post_type=product_variation&p=117',4,'product_variation','',0), +(118,2,'2024-09-30 21:12:33','2024-09-30 19:12:33','','Ikkan Ring gold plated - 58','Size: 58','publish','closed','closed','','hadou-golden-earcuff-88','','','2024-11-12 23:42:29','2024-11-12 22:42:29','',113,'https://haiku.gcch.fr/?post_type=product_variation&p=118',5,'product_variation','',0), +(119,2,'2024-09-30 21:12:34','2024-09-30 19:12:34','','Ikkan Ring gold plated - 60','Size: 60','publish','closed','closed','','hadou-golden-earcuff-89','','','2024-11-12 23:42:29','2024-11-12 22:42:29','',113,'https://haiku.gcch.fr/?post_type=product_variation&p=119',6,'product_variation','',0), +(120,2,'2024-09-30 21:12:34','2024-09-30 19:12:34','','Ikkan Ring gold plated - 62','Size: 62','publish','closed','closed','','hadou-golden-earcuff-90','','','2024-11-12 23:42:29','2024-11-12 22:42:29','',113,'https://haiku.gcch.fr/?post_type=product_variation&p=120',7,'product_variation','',0), +(122,2,'2024-09-30 21:19:26','2024-09-30 19:19:26','','Ikkan gold plated ring','','inherit','closed','closed','','ikkan-b-g','','','2024-11-07 23:57:12','2024-11-07 22:57:12','',113,'https://haiku.gcch.fr/app/uploads/2024/09/IKKAN-B-g.jpg',0,'attachment','image/jpeg',0), +(123,2,'2024-09-30 21:21:56','2024-09-30 19:21:56','PIASU : piercing\r\n\r\nWide band ring in sterling silver with three movable hoops on top.\r\n
    \r\n
  • bands diameter 1cm to 1,5cm
  • \r\n
  • height 0,8 cm
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nFind some help to chose your ring size here.\r\n\r\nAll our pieces are made in 80% recycled sterling silver.','Piasu Ring','','publish','closed','closed','','piasu-ring','','','2025-06-18 22:44:58','2025-06-18 20:44:58','',0,'https://haiku.gcch.fr/?post_type=product&p=123',0,'product','',0), +(124,2,'2024-09-30 21:21:56','2024-09-30 19:21:56','','Piasu Ring - 50','Size: 50','publish','closed','closed','','hadou-golden-earcuff-91','','','2025-06-18 22:44:51','2025-06-18 20:44:51','',123,'https://haiku.gcch.fr/?post_type=product_variation&p=124',1,'product_variation','',0), +(125,2,'2024-09-30 21:21:56','2024-09-30 19:21:56','','Piasu Ring - 52','Size: 52','publish','closed','closed','','hadou-golden-earcuff-92','','','2025-06-18 22:44:51','2025-06-18 20:44:51','',123,'https://haiku.gcch.fr/?post_type=product_variation&p=125',2,'product_variation','',0), +(126,2,'2024-09-30 21:21:56','2024-09-30 19:21:56','','Piasu Ring - 54','Size: 54','publish','closed','closed','','hadou-golden-earcuff-93','','','2025-06-18 22:44:51','2025-06-18 20:44:51','',123,'https://haiku.gcch.fr/?post_type=product_variation&p=126',3,'product_variation','',0), +(127,2,'2024-09-30 21:21:56','2024-09-30 19:21:56','','Piasu Ring - 56','Size: 56','publish','closed','closed','','hadou-golden-earcuff-94','','','2025-06-18 22:44:51','2025-06-18 20:44:51','',123,'https://haiku.gcch.fr/?post_type=product_variation&p=127',4,'product_variation','',0), +(128,2,'2024-09-30 21:21:56','2024-09-30 19:21:56','','Piasu Ring - 58','Size: 58','publish','closed','closed','','hadou-golden-earcuff-95','','','2025-06-18 22:44:51','2025-06-18 20:44:51','',123,'https://haiku.gcch.fr/?post_type=product_variation&p=128',5,'product_variation','',0), +(129,2,'2024-09-30 21:21:56','2024-09-30 19:21:56','','Piasu Ring - 60','Size: 60','publish','closed','closed','','hadou-golden-earcuff-96','','','2025-06-18 22:44:51','2025-06-18 20:44:51','',123,'https://haiku.gcch.fr/?post_type=product_variation&p=129',6,'product_variation','',0), +(130,2,'2024-09-30 21:21:56','2024-09-30 19:21:56','','Piasu Ring - 62','Size: 62','publish','closed','closed','','hadou-golden-earcuff-97','','','2025-06-18 22:44:51','2025-06-18 20:44:51','',123,'https://haiku.gcch.fr/?post_type=product_variation&p=130',7,'product_variation','',0), +(132,2,'2024-09-30 21:40:43','2024-09-30 19:40:43','','Piasu ring','','inherit','closed','closed','','_dsc9928','','','2024-09-30 21:41:04','2024-09-30 19:41:04','',123,'https://haiku.gcch.fr/app/uploads/2024/09/DSC9928.jpg',0,'attachment','image/jpeg',0), +(133,2,'2024-09-30 22:00:26','2024-09-30 20:00:26','KARA: hull, shell\r\n\r\nTwo textured sterling silver rings linked by a thin silver curb chain. Can be worn stacked on the same finger, or on two different fingers.\r\n
    \r\n
  • height 1cm and 0,5cm
  • \r\n
  • chain length 4cm
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nFind some help to chose your ring size here.\r\n\r\nAll our pieces are made in 80% recycled sterling silver.','Kara Ring','','publish','closed','closed','','kara-ring','','','2025-05-09 17:40:27','2025-05-09 15:40:27','',0,'https://haiku.gcch.fr/?post_type=product&p=133',0,'product','',0), +(134,2,'2024-09-30 22:00:27','2024-09-30 20:00:27','','Kara Ring - 50','Size: 50','publish','closed','closed','','hadou-golden-earcuff-98','','','2025-05-09 17:40:25','2025-05-09 15:40:25','',133,'https://haiku.gcch.fr/?post_type=product_variation&p=134',1,'product_variation','',0), +(135,2,'2024-09-30 22:00:27','2024-09-30 20:00:27','','Kara Ring - 52','Size: 52','publish','closed','closed','','hadou-golden-earcuff-99','','','2025-05-09 17:40:25','2025-05-09 15:40:25','',133,'https://haiku.gcch.fr/?post_type=product_variation&p=135',2,'product_variation','',0), +(136,2,'2024-09-30 22:00:27','2024-09-30 20:00:27','','Kara Ring - 54','Size: 54','publish','closed','closed','','hadou-golden-earcuff-100','','','2025-05-09 17:40:25','2025-05-09 15:40:25','',133,'https://haiku.gcch.fr/?post_type=product_variation&p=136',3,'product_variation','',0), +(137,2,'2024-09-30 22:00:27','2024-09-30 20:00:27','','Kara Ring - 56','Size: 56','publish','closed','closed','','hadou-golden-earcuff-101','','','2025-05-09 17:40:25','2025-05-09 15:40:25','',133,'https://haiku.gcch.fr/?post_type=product_variation&p=137',4,'product_variation','',0), +(138,2,'2024-09-30 22:00:27','2024-09-30 20:00:27','','Kara Ring - 58','Size: 58','publish','closed','closed','','hadou-golden-earcuff-102','','','2025-05-09 17:40:25','2025-05-09 15:40:25','',133,'https://haiku.gcch.fr/?post_type=product_variation&p=138',5,'product_variation','',0), +(139,2,'2024-09-30 22:00:27','2024-09-30 20:00:27','','Kara Ring - 60','Size: 60','publish','closed','closed','','hadou-golden-earcuff-103','','','2025-05-09 17:40:25','2025-05-09 15:40:25','',133,'https://haiku.gcch.fr/?post_type=product_variation&p=139',6,'product_variation','',0), +(140,2,'2024-09-30 22:00:27','2024-09-30 20:00:27','','Kara Ring - 62','Size: 62','publish','closed','closed','','hadou-golden-earcuff-104','','','2025-05-09 17:40:25','2025-05-09 15:40:25','',133,'https://haiku.gcch.fr/?post_type=product_variation&p=140',7,'product_variation','',0), +(142,2,'2024-09-30 22:16:16','2024-09-30 20:16:16','','Kara ring','','inherit','closed','closed','','_dsc9269','','','2024-09-30 22:16:33','2024-09-30 20:16:33','',133,'https://haiku.gcch.fr/app/uploads/2024/09/DSC9269.jpg',0,'attachment','image/jpeg',0), +(143,2,'2024-09-30 22:17:13','2024-09-30 20:17:13','','Kara ring','','inherit','closed','closed','','_dsc9148','','','2024-09-30 22:17:26','2024-09-30 20:17:26','',133,'https://haiku.gcch.fr/app/uploads/2024/09/DSC9148.jpg',0,'attachment','image/jpeg',0), +(144,2,'2024-10-01 08:12:23','2024-10-01 06:12:23','KISHOU: signing\r\n\r\nSignet ring engraved with three lines that represent the three sentences composing an haïku. Made in sterling silver.\r\n
    \r\n
  • height 0,5cm
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nFind some help to chose your ring size here.\r\n\r\nAll our pieces are made in 80% recycled sterling silver and 24K gold plated silver.','Kishou Ring silver','','trash','closed','closed','','kishou-silver-ring__trashed','','','2025-06-13 10:38:32','2025-06-13 08:38:32','',0,'https://haiku.gcch.fr/?post_type=product&p=144',0,'product','',0), +(145,2,'2024-10-01 08:12:23','2024-10-01 06:12:23','','Kishou Ring silver - 50','Size: 50','trash','closed','closed','','hadou-golden-earcuff-105__trashed','','','2025-06-13 10:38:32','2025-06-13 08:38:32','',144,'https://haiku.gcch.fr/?post_type=product_variation&p=145',1,'product_variation','',0), +(146,2,'2024-10-01 08:12:23','2024-10-01 06:12:23','','Kishou Ring silver - 52','Size: 52','trash','closed','closed','','hadou-golden-earcuff-106__trashed','','','2025-06-13 10:38:32','2025-06-13 08:38:32','',144,'https://haiku.gcch.fr/?post_type=product_variation&p=146',2,'product_variation','',0), +(147,2,'2024-10-01 08:12:24','2024-10-01 06:12:24','','Kishou Ring silver - 54','Size: 54','trash','closed','closed','','hadou-golden-earcuff-107__trashed','','','2025-06-13 10:38:32','2025-06-13 08:38:32','',144,'https://haiku.gcch.fr/?post_type=product_variation&p=147',3,'product_variation','',0), +(148,2,'2024-10-01 08:12:24','2024-10-01 06:12:24','','Kishou Ring silver - 56','Size: 56','trash','closed','closed','','hadou-golden-earcuff-108__trashed','','','2025-06-13 10:38:32','2025-06-13 08:38:32','',144,'https://haiku.gcch.fr/?post_type=product_variation&p=148',4,'product_variation','',0), +(149,2,'2024-10-01 08:12:24','2024-10-01 06:12:24','','Kishou Ring silver - 58','Size: 58','trash','closed','closed','','hadou-golden-earcuff-109__trashed','','','2025-06-13 10:38:32','2025-06-13 08:38:32','',144,'https://haiku.gcch.fr/?post_type=product_variation&p=149',5,'product_variation','',0), +(150,2,'2024-10-01 08:12:24','2024-10-01 06:12:24','','Kishou Ring silver - 60','Size: 60','trash','closed','closed','','hadou-golden-earcuff-110__trashed','','','2025-06-13 10:38:32','2025-06-13 08:38:32','',144,'https://haiku.gcch.fr/?post_type=product_variation&p=150',6,'product_variation','',0), +(151,2,'2024-10-01 08:12:24','2024-10-01 06:12:24','','Kishou Ring silver - 62','Size: 62','trash','closed','closed','','hadou-golden-earcuff-111__trashed','','','2025-06-13 10:38:32','2025-06-13 08:38:32','',144,'https://haiku.gcch.fr/?post_type=product_variation&p=151',7,'product_variation','',0), +(154,2,'2024-10-01 08:28:27','2024-10-01 06:28:27','','Kishou silver ring','','inherit','closed','closed','','kigen-baikkanba','','','2024-10-01 08:29:30','2024-10-01 06:29:30','',144,'https://haiku.gcch.fr/app/uploads/2024/10/KIGEN-BaIKKANBa.jpg',0,'attachment','image/jpeg',0), +(155,2,'2024-10-01 08:31:00','2024-10-01 06:31:00','KISHOU: signing\r\n\r\nSignet ring engraved with three lines that represent the three sentences composing a haïku. Made in gold plated silver.\r\n
    \r\n
  • height 0,5cm
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nFind some help to chose your ring size here.\r\n\r\nAll our pieces are made in 80% recycled sterling silver and 24K gold plated silver.','Kishou Ring gold plated','','trash','closed','closed','','kishou-ring-gold-plated__trashed','','','2025-06-13 10:38:32','2025-06-13 08:38:32','',0,'https://haiku.gcch.fr/?post_type=product&p=155',0,'product','',0), +(156,2,'2024-10-01 08:31:00','2024-10-01 06:31:00','','Kishou Ring gold plated - 50','Size: 50','trash','closed','closed','','hadou-golden-earcuff-112__trashed','','','2025-06-13 10:38:32','2025-06-13 08:38:32','',155,'https://haiku.gcch.fr/?post_type=product_variation&p=156',1,'product_variation','',0), +(157,2,'2024-10-01 08:31:00','2024-10-01 06:31:00','','Kishou Ring gold plated - 52','Size: 52','trash','closed','closed','','hadou-golden-earcuff-113__trashed','','','2025-06-13 10:38:32','2025-06-13 08:38:32','',155,'https://haiku.gcch.fr/?post_type=product_variation&p=157',2,'product_variation','',0), +(158,2,'2024-10-01 08:31:00','2024-10-01 06:31:00','','Kishou Ring gold plated - 54','Size: 54','trash','closed','closed','','hadou-golden-earcuff-114__trashed','','','2025-06-13 10:38:32','2025-06-13 08:38:32','',155,'https://haiku.gcch.fr/?post_type=product_variation&p=158',3,'product_variation','',0), +(159,2,'2024-10-01 08:31:00','2024-10-01 06:31:00','','Kishou Ring gold plated - 56','Size: 56','trash','closed','closed','','hadou-golden-earcuff-115__trashed','','','2025-06-13 10:38:32','2025-06-13 08:38:32','',155,'https://haiku.gcch.fr/?post_type=product_variation&p=159',4,'product_variation','',0), +(160,2,'2024-10-01 08:31:00','2024-10-01 06:31:00','','Kishou Ring gold plated - 58','Size: 58','trash','closed','closed','','hadou-golden-earcuff-116__trashed','','','2025-06-13 10:38:32','2025-06-13 08:38:32','',155,'https://haiku.gcch.fr/?post_type=product_variation&p=160',5,'product_variation','',0), +(161,2,'2024-10-01 08:31:01','2024-10-01 06:31:01','','Kishou Ring gold plated - 60','Size: 60','trash','closed','closed','','hadou-golden-earcuff-117__trashed','','','2025-06-13 10:38:32','2025-06-13 08:38:32','',155,'https://haiku.gcch.fr/?post_type=product_variation&p=161',6,'product_variation','',0), +(162,2,'2024-10-01 08:31:01','2024-10-01 06:31:01','','Kishou Ring gold plated - 62','Size: 62','trash','closed','closed','','hadou-golden-earcuff-118__trashed','','','2025-06-13 10:38:32','2025-06-13 08:38:32','',155,'https://haiku.gcch.fr/?post_type=product_variation&p=162',7,'product_variation','',0), +(165,2,'2024-10-01 08:37:37','2024-10-01 06:37:37','','Kishou gold plated ring','','inherit','closed','closed','','hadou-booikkan-bkigen-bjokou-co','','','2024-10-01 08:37:59','2024-10-01 06:37:59','',155,'https://haiku.gcch.fr/app/uploads/2024/10/HADOU-BOoIKKAN-BKIGEN-BJOKOU-Co.jpg',0,'attachment','image/jpeg',0), +(166,2,'2024-10-01 08:40:28','2024-10-01 06:40:28','','Kara ring','','inherit','closed','closed','','_dsc9760','','','2024-10-01 08:40:59','2024-10-01 06:40:59','',133,'https://haiku.gcch.fr/app/uploads/2024/09/DSC9760.jpg',0,'attachment','image/jpeg',0), +(167,2,'2024-10-01 08:41:39','2024-10-01 06:41:39','','Kara ring','','inherit','closed','closed','','_dsc9339','','','2024-10-01 08:41:56','2024-10-01 06:41:56','',133,'https://haiku.gcch.fr/app/uploads/2024/09/DSC9339.jpg',0,'attachment','image/jpeg',0), +(168,2,'2024-10-01 08:42:52','2024-10-01 06:42:52','ROKKU: pebble\r\n\r\nLarge wavy ring in sterling silver with a semi precious oval stone in the center set in silver.\r\n
    \r\n
  • adjustable
  • \r\n
  • height 2cm
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nAll our pieces are made in 80% recycled sterling silver.','Rokku Ring','','publish','closed','closed','','rokku-ring','','','2025-06-18 22:46:03','2025-06-18 20:46:03','',0,'https://haiku.gcch.fr/?post_type=product&p=168',0,'product','',0), +(177,2,'2024-10-01 09:12:26','2024-10-01 07:12:26','','Rokku ring malachite','','inherit','closed','closed','','rokku-b-malachite-2','','','2024-10-01 09:12:46','2024-10-01 07:12:46','',168,'https://haiku.gcch.fr/app/uploads/2024/10/ROKKU-B-malachite-1.jpg',0,'attachment','image/jpeg',0), +(178,2,'2024-10-01 09:13:13','2024-10-01 07:13:13','','Rokku ring tiger eye','','inherit','closed','closed','','sony-dsc-9','','','2024-10-01 09:13:48','2024-10-01 07:13:48','',168,'https://haiku.gcch.fr/app/uploads/2024/10/ROKKU-B-tigereye.jpg',0,'attachment','image/jpeg',0), +(179,2,'2024-10-01 09:14:04','2024-10-01 07:14:04','','Rokku ring tiger eye','','inherit','closed','closed','','rokku-b-tigereye','','','2024-10-01 09:14:34','2024-10-01 07:14:34','',168,'https://haiku.gcch.fr/app/uploads/2024/10/ROKKU-B-tigereye-1.jpg',0,'attachment','image/jpeg',0), +(180,2,'2024-10-01 09:25:14','2024-10-01 07:25:14','','Rokku ring malachite','','inherit','closed','closed','','_dsc9710','','','2024-10-01 09:25:39','2024-10-01 07:25:39','',168,'https://haiku.gcch.fr/app/uploads/2024/10/DSC9710.jpg',0,'attachment','image/jpeg',0), +(182,2,'2024-10-01 09:26:24','2024-10-01 07:26:24','','Rokku ring tiger eye','','inherit','closed','closed','','_dsc9190','','','2024-10-01 09:26:54','2024-10-01 07:26:54','',168,'https://haiku.gcch.fr/app/uploads/2024/10/DSC9190.jpg',0,'attachment','image/jpeg',0), +(183,2,'2024-10-01 11:31:42','2024-10-01 09:31:42','BOROBORO: the sound of something crumbling \r\n\r\nLong asymmetrical earrings with oval shapes made of sterling silver.\r\n
    \r\n
  • wire diameter 12mm
  • \r\n
  • height 4cm
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nAll our pieces are made in 80% recycled sterling silver and 18K gold plated silver.','BoroBoro Long Earrings silver','','publish','closed','closed','','boroboro-long-earrings-silver','','','2025-06-18 22:39:08','2025-06-18 20:39:08','',0,'https://haiku.gcch.fr/?post_type=product&p=183',0,'product','',0), +(199,2,'2024-10-01 12:16:11','2024-10-01 10:16:11','','BoroBoro silver long earring, right side','','inherit','closed','closed','','sony-dsc-11','','','2024-10-01 12:17:24','2024-10-01 10:17:24','',183,'https://haiku.gcch.fr/app/uploads/2024/10/BOROBORO-BOaTANEMAKI-BO1a-opti.jpg',0,'attachment','image/jpeg',0), +(200,2,'2024-10-01 12:25:28','2024-10-01 10:25:28','','Rokku Ring - Malachite','Stone: Malachite','publish','closed','closed','','rokku-ring-malachite','','','2025-06-18 22:45:56','2025-06-18 20:45:56','',168,'https://haiku.gcch.fr/?post_type=product_variation&p=200',1,'product_variation','',0), +(201,2,'2024-10-01 12:25:28','2024-10-01 10:25:28','','Rokku Ring - Tiger\'s Eye','Stone: Tiger\'s Eye','publish','closed','closed','','rokku-ring-tiger-eye','','','2025-06-18 22:45:56','2025-06-18 20:45:56','',168,'https://haiku.gcch.fr/?post_type=product_variation&p=201',2,'product_variation','',0), +(202,2,'2024-10-01 18:14:00','2024-10-01 16:14:00','PIASU: piercing\r\n\r\nLarge earrings covering the lobe with three hoops hanging to it, mixing sterling silver and gold plated silver.\r\n
    \r\n
  • rings diameter 0,5 to 1,5cm
  • \r\n
  • total caliber 2cm
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nAll our pieces are made in 80% recycled sterling silver and 24K gold plated silver.','Piasu Earrings','','publish','closed','closed','','piasu-earrings','','','2024-11-15 12:40:29','2024-11-15 11:40:29','',0,'https://haiku.gcch.fr/?post_type=product&p=202',0,'product','',0), +(206,2,'2024-10-01 18:20:45','2024-10-01 16:20:45','','Piasu earrings','','inherit','closed','closed','','sony-dsc-12','','','2024-10-01 18:22:00','2024-10-01 16:22:00','',202,'https://haiku.gcch.fr/app/uploads/2024/10/PIASU-BO.jpg',0,'attachment','image/jpeg',0), +(207,2,'2024-10-01 19:33:10','2024-10-01 17:33:10','','Piasu earrings','','inherit','closed','closed','','piasu-bo','','','2024-10-01 19:34:41','2024-10-01 17:34:41','',202,'https://haiku.gcch.fr/app/uploads/2024/10/PIASU-BO-1.jpg',0,'attachment','image/jpeg',0), +(212,2,'2024-10-01 19:50:41','2024-10-01 17:50:41','','PIASU-BO','','inherit','closed','closed','','piasu-bo-2','','','2024-10-01 19:51:04','2024-10-01 17:51:04','',202,'https://haiku.gcch.fr/app/uploads/2024/10/PIASU-BO-2.jpg',0,'attachment','image/jpeg',0), +(213,2,'2024-10-01 19:52:06','2024-10-01 17:52:06','BOROBORO: the sound of something crumbling \r\n\r\nLong asymmetrical earrings with oval shapes made of gold plated silver.\r\n
    \r\n
  • wire diameter 12mm
  • \r\n
  • height 4cm
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nAll our pieces are made in 80% recycled sterling silver and 18K gold plated silver.','BoroBoro Long Earrings gold plated','','publish','closed','closed','','boroboro-long-earrings-gold-plated','','','2025-06-18 22:36:56','2025-06-18 20:36:56','',0,'https://haiku.gcch.fr/?post_type=product&p=213',0,'product','',0), +(240,2,'2024-10-02 23:21:37','2024-10-02 21:21:37','IKKAN : link\r\n\r\nA bracelet in sterling silver mixing a rigid band and loose curb chain\r\n
    \r\n
  • size 1: 6cm diameter / size 2: 7cm diameter
  • \r\n
  • wire thickness 2,5mm
  • \r\n
  • handcrafted in Brussels
  • \r\n
','Ikkan Bracelet silver','','publish','closed','closed','','ikkan-bracelet-silver','','','2025-05-09 17:52:17','2025-05-09 15:52:17','',0,'https://haiku.gcch.fr/?post_type=product&p=240',0,'product','',0), +(241,2,'2024-10-02 23:21:37','2024-10-02 21:21:37','','Ikkan Bracelet silver - Size 1','Size: Size 1','publish','closed','closed','','tamanori-earrings-gold-plated-copy-size-3','','','2025-05-09 17:52:17','2025-05-09 15:52:17','',240,'https://haiku.gcch.fr/?post_type=product_variation&p=241',1,'product_variation','',0), +(242,2,'2024-10-02 23:21:37','2024-10-02 21:21:37','','Ikkan Bracelet silver - Size 2','Size: Size 2','publish','closed','closed','','tamanori-earrings-gold-plated-copy-size-4','','','2025-05-09 17:52:17','2025-05-09 15:52:17','',240,'https://haiku.gcch.fr/?post_type=product_variation&p=242',2,'product_variation','',0), +(243,2,'2024-10-02 23:24:46','2024-10-02 21:24:46','','Ikkan bracelet silver','','inherit','closed','closed','','sony-dsc-17','','','2024-10-02 23:29:51','2024-10-02 21:29:51','',240,'https://haiku.gcch.fr/app/uploads/2024/10/IKKAN-BR-arg.jpg',0,'attachment','image/jpeg',0), +(244,2,'2024-10-02 23:32:58','2024-10-02 21:32:58','','Ikkan bracelet silver','','inherit','closed','closed','','ikkan-br-s','','','2024-10-02 23:33:16','2024-10-02 21:33:16','',240,'https://haiku.gcch.fr/app/uploads/2024/10/IKKAN-BR-s.jpg',0,'attachment','image/jpeg',0), +(245,2,'2024-10-02 23:33:24','2024-10-02 21:33:24','','Ikkan bracelet silver','','inherit','closed','closed','','ikkan-br-s-2','','','2024-10-02 23:33:43','2024-10-02 21:33:43','',240,'https://haiku.gcch.fr/app/uploads/2024/10/IKKAN-BR-s-1.jpg',0,'attachment','image/jpeg',0), +(246,2,'2024-10-02 23:36:10','2024-10-02 21:36:10','IKKAN : link\r\n\r\nA bracelet in gold plated silver, mixing a rigid wire and loose curb chain.\r\n
    \r\n
  • size 1: 6cm diameter / size 2: 7cm diameter
  • \r\n
  • wire thickness 2,5mm
  • \r\n
  • handcrafted in Brussels
  • \r\n
','Ikkan Bracelet gold plated','','trash','closed','closed','','ikkan-bracelet-gold-plated__trashed','','','2025-06-18 22:32:00','2025-06-18 20:32:00','',0,'https://haiku.gcch.fr/?post_type=product&p=246',0,'product','',0), +(247,2,'2024-10-02 23:36:10','2024-10-02 21:36:10','','Ikkan Bracelet gold plated - Size 1','Size: Size 1','trash','closed','closed','','tamanori-earrings-gold-plated-copy-size-5__trashed','','','2025-06-18 22:32:00','2025-06-18 20:32:00','',246,'https://haiku.gcch.fr/?post_type=product_variation&p=247',1,'product_variation','',0), +(248,2,'2024-10-02 23:36:10','2024-10-02 21:36:10','','Ikkan Bracelet gold plated - Size 2','Size: Size 2','trash','closed','closed','','tamanori-earrings-gold-plated-copy-size-6__trashed','','','2025-06-18 22:32:00','2025-06-18 20:32:00','',246,'https://haiku.gcch.fr/?post_type=product_variation&p=248',2,'product_variation','',0), +(249,2,'2024-10-02 23:36:59','2024-10-02 21:36:59','','Ikkan bracelet gold plated','','inherit','closed','closed','','sony-dsc-18','','','2024-10-02 23:37:41','2024-10-02 21:37:41','',246,'https://haiku.gcch.fr/app/uploads/2024/10/IKKAN-BR-vrm.jpg',0,'attachment','image/jpeg',0), +(250,2,'2024-10-02 23:38:49','2024-10-02 21:38:49','','Ikkan bracelet gold plated','','inherit','closed','closed','','ikkan-br-g','','','2024-11-08 00:00:39','2024-11-07 23:00:39','',246,'https://haiku.gcch.fr/app/uploads/2024/10/IKKAN-BR-g.jpg',0,'attachment','image/jpeg',0), +(251,2,'2024-10-02 23:40:26','2024-10-02 21:40:26','TANEMAKI: seeding \r\n\r\nDelicate bracelet composed of an fluid center element with small grey fresh water pearls on one side, and a mix of sterling silver and gold plated silver chains on the other side.\r\n
    \r\n
  • adjustable in between 15cm and 18cm
  • \r\n
  • oval center shape 1cm caliber
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nAll our pieces are made in 80% recycled sterling silver and 24K gold plated silver.','Tanemaki Bracelet','','publish','closed','closed','','tanemaki-bracelet','','','2025-05-27 08:49:54','2025-05-27 06:49:54','',0,'https://haiku.gcch.fr/?post_type=product&p=251',0,'product','',0), +(255,2,'2024-10-02 23:55:51','2024-10-02 21:55:51','','Tanemaki bracelet','','inherit','closed','closed','','tanemaki-br','','','2024-10-02 23:56:12','2024-10-02 21:56:12','',251,'https://haiku.gcch.fr/app/uploads/2024/10/TANEMAKI-BR-1.jpg',0,'attachment','image/jpeg',0), +(258,2,'2024-10-03 22:02:26','2024-10-03 20:02:26','Fuyou: floating leave on water\r\n\r\nRectangular trace chain bracelet in sterling silver with a fluid oval shape element in the center.\r\n
    \r\n
  • adjustable in between 15 and 18cm
  • \r\n
  • oval center shape 2cm caliber
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nAll our pieces are made in 80% recycled sterling silver and 24K gold plated silver.','Fuyou Bracelet silver','','publish','closed','closed','','fuyou-bracelet-silver','','','2024-11-25 09:20:15','2024-11-25 08:20:15','',0,'https://haiku.gcch.fr/?post_type=product&p=258',0,'product','',0), +(259,2,'2024-10-03 22:05:22','2024-10-03 20:05:22','','Fuyou bracelet silver','','inherit','closed','closed','','sony-dsc-20','','','2024-10-03 22:06:35','2024-10-03 20:06:35','',258,'https://haiku.gcch.fr/app/uploads/2024/10/FUYOU-BR-s.jpg',0,'attachment','image/jpeg',0), +(260,2,'2024-10-03 22:08:43','2024-10-03 20:08:43','','Fuyou bracelet silver','','inherit','closed','closed','','_dsc9225','','','2024-11-25 09:11:31','2024-11-25 08:11:31','',258,'https://haiku.gcch.fr/app/uploads/2024/10/DSC9225.jpg',0,'attachment','image/jpeg',0), +(261,2,'2024-10-03 22:13:48','2024-10-03 20:13:48','Fuyou : floating leave on water\r\n\r\nRectangular trace chain bracelet in gold plated silver with a fluid oval shape element in the center.\r\n
    \r\n
  • adjustable in between 15 and 18cm
  • \r\n
  • oval center shape 2cm caliber
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nAll our pieces are made in 80% recycled sterling silver and 24K gold plated silver.','Fuyou Bracelet gold plated','','publish','closed','closed','','fuyou-bracelet-gold-plated','','','2024-11-25 18:37:49','2024-11-25 17:37:49','',0,'https://haiku.gcch.fr/?post_type=product&p=261',0,'product','',0), +(263,2,'2024-10-03 22:17:11','2024-10-03 20:17:11','IKKAN: link \r\n\r\nNecklace with a mix of different links combining sterling silver and gold plated silver.\r\n
    \r\n
  • length 50 to 54cm
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nAll our pieces are made in 80% recycled sterling silver and 18K gold plated silver.','Ikkan Necklace','','publish','closed','closed','','ikkan-necklace','','','2025-06-18 22:28:46','2025-06-18 20:28:46','',0,'https://haiku.gcch.fr/?post_type=product&p=263',0,'product','',0), +(265,2,'2024-10-03 22:39:11','2024-10-03 20:39:11','','Ikkan necklace silver','','inherit','closed','closed','','ikkan-c','','','2024-10-03 22:39:37','2024-10-03 20:39:37','',263,'https://haiku.gcch.fr/app/uploads/2024/10/IKKAN-C.jpg',0,'attachment','image/jpeg',0), +(266,2,'2024-10-03 22:39:57','2024-10-03 20:39:57','','Ikkan necklace silver','','inherit','closed','closed','','ikkan-c-2','','','2024-10-03 22:40:20','2024-10-03 20:40:20','',263,'https://haiku.gcch.fr/app/uploads/2024/10/IKKAN-C-1.jpg',0,'attachment','image/jpeg',0), +(267,2,'2024-10-03 22:40:36','2024-10-03 20:40:36','','Ikkan necklace silver','','inherit','closed','closed','','ikkan-c-3','','','2024-10-03 22:40:53','2024-10-03 20:40:53','',263,'https://haiku.gcch.fr/app/uploads/2024/10/IKKAN-C-2.jpg',0,'attachment','image/jpeg',0), +(268,2,'2024-10-03 22:43:42','2024-10-03 20:43:42','PIASU : piercing\r\n\r\nThis short necklace combines different thin chains with a mix of sterling silver and gold plated silver. Secured by a toggle clasp on the front.\r\n
    \r\n
  • length 45cm to 50cm
  • \r\n
  • toggle clasp caliber 1cm
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nAll our pieces are made in 80% recycled sterling silver and 18K gold plated silver.','Piasu Necklace','','publish','closed','closed','','piasu-necklace','','','2025-06-18 22:29:26','2025-06-18 20:29:26','',0,'https://haiku.gcch.fr/?post_type=product&p=268',0,'product','',0), +(270,2,'2024-10-03 22:48:06','2024-10-03 20:48:06','','Piasu necklace silver','','inherit','closed','closed','','piasu-c-arg-opti','','','2024-10-03 22:48:49','2024-10-03 20:48:49','',268,'https://haiku.gcch.fr/app/uploads/2024/10/PIASU-C-arg-opti.jpg',0,'attachment','image/jpeg',0), +(271,2,'2024-10-04 08:18:27','2024-10-04 06:18:27','TANEMAKI : seeding\r\n\r\nA necklace composed of a fluid center element with dark grey fresh water pearls on one side, and a mix of sterling silver and gold plated chains on the other side.\r\n
    \r\n
  • length 50cm to 55cm
  • \r\n
  • center element caliber 2cm
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nAll our pieces are made in 80% recycled sterling silver and 18K gold plated silver.','Tanemaki Necklace','','publish','closed','closed','','tanemaki-necklace','','','2025-06-18 22:49:37','2025-06-18 20:49:37','',0,'https://haiku.gcch.fr/?post_type=product&p=271',0,'product','',0), +(273,2,'2024-10-04 08:32:08','2024-10-04 06:32:08','','Tanemaki necklace','','inherit','closed','closed','','tanemaki-c','','','2024-10-04 08:32:26','2024-10-04 06:32:26','',271,'https://haiku.gcch.fr/app/uploads/2024/10/TANEMAKI-C.jpg',0,'attachment','image/jpeg',0), +(274,2,'2024-10-04 08:33:31','2024-10-04 06:33:31','FUYOU: floating leave on water\r\n\r\nA necklace with thin rectangular trace chain and oval fluid elements in sterling silver, with a dangling gold plated detail.\r\n
    \r\n
  • length 50cm to 55cm
  • \r\n
  • oval shapes caliber between 3cm and 1cm
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nAll our pieces are made in 80% recycled sterling silver and 24K gold plated silver.','Fuyou Necklace','','publish','closed','closed','','fuyou-necklace','','','2025-05-09 17:55:35','2025-05-09 15:55:35','',0,'https://haiku.gcch.fr/?post_type=product&p=274',0,'product','',0), +(275,2,'2024-10-04 08:39:00','2024-10-04 06:39:00','','Fuyou necklace','','inherit','closed','closed','','sony-dsc-25','','','2024-10-04 08:40:13','2024-10-04 06:40:13','',274,'https://haiku.gcch.fr/app/uploads/2024/10/FUYOU-C.jpg',0,'attachment','image/jpeg',0), +(285,2,'2024-10-04 08:55:02','2024-10-04 06:55:02','HATTARI: bluff\r\n\r\nMultiple hoops in various sizes giving the illusion of stacked hoop earrings, in sterling silver.\r\n
    \r\n
  • hoops diameter 3cm to 1cm
  • \r\n
  • d-shape wires
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nAll our pieces are made in 80% recycled sterling silver and 18K gold plated silver.','Hattari Stacked Hoops silver','','publish','closed','closed','','hattari-stacked-hoops-silver','','','2025-06-18 22:31:13','2025-06-18 20:31:13','',0,'https://haiku.gcch.fr/?post_type=product&p=285',0,'product','',0), +(286,2,'2024-10-04 09:00:41','2024-10-04 07:00:41','','Hattari stacked hoops silver','','inherit','closed','closed','','sony-dsc-28','','','2024-10-04 09:01:22','2024-10-04 07:01:22','',285,'https://haiku.gcch.fr/app/uploads/2024/10/HATTARI-CR1-s.jpg',0,'attachment','image/jpeg',0), +(287,2,'2024-10-04 09:08:50','2024-10-04 07:08:50','','Hattari stacked hoops silver','','inherit','closed','closed','','hattari-cr1-s','','','2024-10-04 09:09:07','2024-10-04 07:09:07','',285,'https://haiku.gcch.fr/app/uploads/2024/10/HATTARI-CR1-s-1.jpg',0,'attachment','image/jpeg',0), +(288,2,'2024-10-04 09:10:01','2024-10-04 07:10:01','HATTARI: bluff\r\n\r\nMultiple hoops in various sizes giving the illusion of stacked hoop earrings, in gold plated silver.\r\n
    \r\n
  • hoops diameter 3cm to 1cm
  • \r\n
  • d-shape wires
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nAll our pieces are made in 80% recycled sterling silver and 18K gold plated silver.','Hattari Stacked Hoops gold plated','','publish','closed','closed','','hattari-stacked-hoops-gold-plated','','','2025-06-18 22:30:24','2025-06-18 20:30:24','',0,'https://haiku.gcch.fr/?post_type=product&p=288',0,'product','',0), +(289,2,'2024-10-04 09:10:35','2024-10-04 07:10:35','','Hattari stacked hoops gold plated','','inherit','closed','closed','','sony-dsc-29','','','2024-10-04 09:11:02','2024-10-04 07:11:02','',288,'https://haiku.gcch.fr/app/uploads/2024/10/HATTARI-CR1-g.jpg',0,'attachment','image/jpeg',0), +(290,2,'2024-10-04 09:12:19','2024-10-04 07:12:19','','Hattari stacked hoops gold plated','','inherit','closed','closed','','_dsc9336','','','2024-11-13 19:53:24','2024-11-13 18:53:24','',288,'https://haiku.gcch.fr/app/uploads/2024/10/DSC9336.jpg',0,'attachment','image/jpeg',0), +(306,2,'2024-10-07 08:18:28','2024-10-07 06:18:28','TAMANORI: in balance on a ball\r\n\r\nOval sterling silver hoops lined with dangling box chains of two different length.\r\n
    \r\n
  • hoops height 2cm
  • \r\n
  • chain length 5cm and 3,5cm
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nAll our pieces are made in 80% recycled sterling silver and 24K gold plated silver.','Tamanori Hoops silver','','publish','closed','closed','','tamanori-hoops','','','2024-11-15 12:32:15','2024-11-15 11:32:15','',0,'https://haiku.gcch.fr/?post_type=product&p=306',0,'product','',0), +(310,2,'2024-10-07 08:20:16','2024-10-07 06:20:16','','Tamanori Hoops silver','','inherit','closed','closed','','sony-dsc-31','','','2024-10-07 08:20:55','2024-10-07 06:20:55','',306,'https://haiku.gcch.fr/app/uploads/2024/10/TAMANORI-CR2-arg.jpg',0,'attachment','image/jpeg',0), +(311,2,'2024-10-07 08:22:26','2024-10-07 06:22:26','','Tamanori Hoops silver','','inherit','closed','closed','','_dsc9378','','','2024-10-07 08:22:48','2024-10-07 06:22:48','',306,'https://haiku.gcch.fr/app/uploads/2024/10/DSC9378.jpg',0,'attachment','image/jpeg',0), +(312,2,'2024-10-07 08:33:26','2024-10-07 06:33:26','TAMANORI: in balance on a ball\r\n\r\nOval gold plated silver hoops lined with dangling box chains of two different length.\r\n
    \r\n
  • hoops height 2cm
  • \r\n
  • chain length 5cm and 3,5cm
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nAll our pieces are made in 80% recycles sterling silver and 24K gold plated silver.','Tamanori Hoops gold plated','','publish','closed','closed','','tamanori-hoops-gold-plated','','','2024-11-24 12:12:54','2024-11-24 11:12:54','',0,'https://haiku.gcch.fr/?post_type=product&p=312',0,'product','',0), +(317,2,'2024-10-07 08:36:37','2024-10-07 06:36:37','','Tamanori Hoops gold plated','','inherit','closed','closed','','tamanori-cr2-vrm','','','2024-10-07 08:36:52','2024-10-07 06:36:52','',312,'https://haiku.gcch.fr/app/uploads/2024/10/TAMANORI-CR2-vrm-1.jpg',0,'attachment','image/jpeg',0), +(318,2,'2024-10-07 08:40:26','2024-10-07 06:40:26','FUYOU: floating leave on water\r\n\r\nSolo hoop in sterling silver with a mix of small rings in gold plated silver hanging on it.\r\n
    \r\n
  • hoop diameter 13mm
  • \r\n
  • small rings diameter around 5mm
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nAll our pieces are made in 80% recycled silver and 24k gold plated silver.','Fuyou Hoop','','publish','closed','closed','','fuyou-hoop','','','2025-05-09 17:59:27','2025-05-09 15:59:27','',0,'https://haiku.gcch.fr/?post_type=product&p=318',0,'product','',0), +(323,2,'2024-10-07 08:54:21','2024-10-07 06:54:21','','Fuyou Hoops silver and gold','','inherit','closed','closed','','fuyou-cr','','','2024-10-07 08:54:39','2024-10-07 06:54:39','',318,'https://haiku.gcch.fr/app/uploads/2024/10/FUYOU-CR.jpg',0,'attachment','image/jpeg',0), +(324,2,'2024-10-07 08:55:07','2024-10-07 06:55:07','','Fuyou Hoops silver and gold','','inherit','closed','closed','','_dsc9542','','','2024-10-07 08:55:26','2024-10-07 06:55:26','',318,'https://haiku.gcch.fr/app/uploads/2024/10/DSC9542.jpg',0,'attachment','image/jpeg',0), +(325,2,'2024-10-07 11:08:32','2024-10-07 09:08:32','HADOU: wave\r\n\r\nAn ear cuff composed of three wavy bands in sterling silver.\r\n
    \r\n
  • total height 8mm
  • \r\n
  • bands thickness 1,2mm
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nAll our pieces are made in 80% recycled silver and 24k gold plated silver.','Hadou Ear Cuff silver','','publish','closed','closed','','hadou-earcuff-silver','','','2025-05-09 18:03:02','2025-05-09 16:03:02','',0,'https://haiku.gcch.fr/?post_type=product&p=325',0,'product','',0), +(326,2,'2024-10-07 11:17:26','2024-10-07 09:17:26','','Hadou Earcuff silver','','inherit','closed','closed','','sony-dsc-34','','','2024-10-07 11:24:14','2024-10-07 09:24:14','',325,'https://haiku.gcch.fr/app/uploads/2024/10/HADOU-EC-arg.jpg',0,'attachment','image/jpeg',0), +(327,2,'2024-10-07 11:21:04','2024-10-07 09:21:04','','Hadou Earcuff silver','','inherit','closed','closed','','hadou-ec','','','2024-10-07 11:21:41','2024-10-07 09:21:41','',325,'https://haiku.gcch.fr/app/uploads/2024/10/HADOU-EC.jpg',0,'attachment','image/jpeg',0), +(328,2,'2024-10-07 11:22:52','2024-10-07 09:22:52','HADOU: wave\r\n\r\nAn ear cuff composed of three wavy bands in gold plated silver.\r\n
    \r\n
  • total height 8mm
  • \r\n
  • bands thickness 1,2mm
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nAll our pieces are made in 80% recycled silver and 24k gold plated silver.','Hadou Ear Cuff gold plated','','publish','closed','closed','','hadou-earcuff-gold-plated','','','2025-05-09 18:02:53','2025-05-09 16:02:53','',0,'https://haiku.gcch.fr/?post_type=product&p=328',0,'product','',0), +(329,2,'2024-10-07 11:23:37','2024-10-07 09:23:37','','Hadou Earcuff gold plated','','inherit','closed','closed','','sony-dsc-35','','','2024-10-07 11:24:28','2024-10-07 09:24:28','',328,'https://haiku.gcch.fr/app/uploads/2024/10/HADOU-EC-vrm.jpg',0,'attachment','image/jpeg',0), +(330,2,'2024-10-07 11:25:22','2024-10-07 09:25:22','','Hadou Earcuff gold plated','','inherit','closed','closed','','hadou-ec-vrm','','','2024-10-07 11:25:54','2024-10-07 09:25:54','',328,'https://haiku.gcch.fr/app/uploads/2024/10/HADOU-EC-vrm-1.jpg',0,'attachment','image/jpeg',0), +(337,2,'2024-10-07 11:36:56','2024-10-07 09:36:56','','Hattari Earcuff gold plated','','inherit','closed','closed','','_dsc9472','','','2024-10-07 11:37:19','2024-10-07 09:37:19','',0,'https://haiku.gcch.fr/app/uploads/2024/10/DSC9472.jpg',0,'attachment','image/jpeg',0), +(338,2,'2024-10-07 11:38:31','2024-10-07 09:38:31','PIASU: piercing\r\n\r\nThis brooch, made to be hooked on a top, mimics a nipple piercing and is made of sterling silver with a gold plated silver bead.\r\n
    \r\n
  • caliber 1,2cm
  • \r\n
  • wire thickness 15mm
  • \r\n
  • handcrafted in Brussels
  • \r\n
','Piasu Brooch','','publish','closed','closed','','piasu-brooch','','','2024-10-07 11:51:18','2024-10-07 09:51:18','',0,'https://haiku.gcch.fr/?post_type=product&p=338',0,'product','',0), +(339,2,'2024-10-07 11:42:14','2024-10-07 09:42:14','','Piasu brooch','','inherit','closed','closed','','sony-dsc-38','','','2024-10-07 11:43:19','2024-10-07 09:43:19','',338,'https://haiku.gcch.fr/app/uploads/2024/10/PIASU-BRC.jpg',0,'attachment','image/jpeg',0), +(340,2,'2024-10-07 11:46:56','2024-10-07 09:46:56','','Piasu Brooch','','inherit','closed','closed','','piasu-brc','','','2024-10-07 11:47:31','2024-10-07 09:47:31','',338,'https://haiku.gcch.fr/app/uploads/2024/10/PIASU-BRC-1.jpg',0,'attachment','image/jpeg',0), +(341,2,'2024-10-07 11:50:14','2024-10-07 09:50:14','','Piasu Brooch','','inherit','closed','closed','','piasu-brc-2','','','2024-10-07 11:50:42','2024-10-07 09:50:42','',338,'https://haiku.gcch.fr/app/uploads/2024/10/PIASU-BRC-2.jpg',0,'attachment','image/jpeg',0), +(342,2,'2024-10-15 15:24:41','2024-10-15 13:24:41','MUGURA: vine\r\n\r\nTrio of mismatched stud earrings in sterling silver and gold plated silver, mixing wavy lines and natural grey pearls.\r\n
    \r\n
  • wire width 15mm
  • \r\n
  • chain length 4cm
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nAll our pieces are made in 80% recycled sterling silver and 24K gold plated silver.','Mugura Trio Stud Earrings','','publish','closed','closed','','mugura-trio-earrings','','','2025-06-17 08:19:15','2025-06-17 06:19:15','',0,'https://haiku.gcch.fr/?post_type=product&p=342',0,'product','',0), +(347,2,'2024-10-15 15:51:14','2024-10-15 13:51:14','','Kagun Trio Earrings silver','','inherit','closed','closed','','_dsc9763','','','2024-10-15 15:51:54','2024-10-15 13:51:54','',342,'https://haiku.gcch.fr/app/uploads/2024/10/DSC9763.jpg',0,'attachment','image/jpeg',0), +(348,2,'2024-10-15 15:52:11','2024-10-15 13:52:11','','Kagun Trio Earrings silver','','inherit','closed','closed','','_dsc9781','','','2024-10-15 15:52:27','2024-10-15 13:52:27','',342,'https://haiku.gcch.fr/app/uploads/2024/10/DSC9781.jpg',0,'attachment','image/jpeg',0), +(349,2,'2024-10-15 15:52:56','2024-10-15 13:52:56','','Kagun Trio Earrings silver','','inherit','closed','closed','','_dsc9748','','','2024-10-15 15:57:59','2024-10-15 13:57:59','',342,'https://haiku.gcch.fr/app/uploads/2024/10/DSC9748.jpg',0,'attachment','image/jpeg',0), +(384,2,'2024-10-18 08:17:21','2024-10-18 06:17:21','','Kagun bracelet gold plated','','inherit','closed','closed','','_dsc9775','','','2024-10-18 08:17:50','2024-10-18 06:17:50','',0,'https://haiku.gcch.fr/app/uploads/2024/10/DSC9775.jpg',0,'attachment','image/jpeg',0), +(385,2,'2024-10-18 08:19:19','2024-10-18 06:19:19','ROKKU: pebble\r\n\r\nA statement piece in sterling silver mixing cheval chain and gold plated ball chain, with a removable pendant made of droplet shaped semi precious stone secured by a clasp.\r\n
    \r\n
  • total chain length 50cm
  • \r\n
  • pendant height 3cm
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nAll our pieces are made in 80% recycled silver and 24K gold plated silver.','Rokku Necklace','','publish','closed','closed','','rokku-necklace','','','2025-05-09 17:57:00','2025-05-09 15:57:00','',0,'https://haiku.gcch.fr/?post_type=product&p=385',0,'product','',0), +(388,2,'2024-10-18 08:40:49','2024-10-18 06:40:49','','Rokku necklace silver and semi precious stone','','inherit','closed','closed','','rokku-c-arg','','','2024-10-18 08:41:04','2024-10-18 06:41:04','',385,'https://haiku.gcch.fr/app/uploads/2024/10/ROKKU-C-arg.jpg',0,'attachment','image/jpeg',0), +(389,2,'2024-10-18 08:45:18','2024-10-18 06:45:18','','Rokku Necklace - Green Jaspe','Stone: Green Jaspe','publish','closed','closed','','fuyou-necklace-copy-green-jaspe','','','2025-05-09 17:56:57','2025-05-09 15:56:57','',385,'https://haiku.gcch.fr/?post_type=product_variation&p=389',1,'product_variation','',0), +(391,2,'2024-10-18 08:45:18','2024-10-18 06:45:18','','Rokku Necklace - Lapis Lazuli','Stone: Lapis Lazuli','publish','closed','closed','','fuyou-necklace-copy-lapis-lazuli','','','2025-05-09 17:56:57','2025-05-09 15:56:57','',385,'https://haiku.gcch.fr/?post_type=product_variation&p=391',2,'product_variation','',0), +(392,2,'2024-10-18 08:45:18','2024-10-18 06:45:18','','Rokku Necklace - Tiger\'s Eye','Stone: Tiger\'s Eye','publish','closed','closed','','fuyou-necklace-copy-tiger-eye','','','2025-05-09 17:56:57','2025-05-09 15:56:57','',385,'https://haiku.gcch.fr/?post_type=product_variation&p=392',3,'product_variation','',0), +(393,2,'2024-10-18 08:48:05','2024-10-18 06:48:05','MUGURA: vine\r\n\r\nMinimalist hoop earrings with thin ends going up on the lobes. In sterling silver.\r\n
    \r\n
  • wire thickness 2mm
  • \r\n
  • total diameter 3cm
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nAll our pieces are made in 80% recycled sterling silver and 24K gold plated silver.','Mugura Hoops silver','','publish','closed','closed','','mugura-hoops-silver','','','2025-06-17 08:35:24','2025-06-17 06:35:24','',0,'https://haiku.gcch.fr/?post_type=product&p=393',0,'product','',0), +(396,2,'2024-10-18 08:51:31','2024-10-18 06:51:31','','Mugura hoops silver','','inherit','closed','closed','','sony-dsc-46','','','2024-10-18 08:59:25','2024-10-18 06:59:25','',393,'https://haiku.gcch.fr/app/uploads/2024/10/MUGURA-CR2-arg.jpg',0,'attachment','image/jpeg',0), +(397,2,'2024-10-18 08:59:16','2024-10-18 06:59:16','','Mugura hoops silver','','inherit','closed','closed','','_dsc9733','','','2024-11-08 00:27:40','2024-11-07 23:27:40','',393,'https://haiku.gcch.fr/app/uploads/2024/10/DSC9733.jpg',0,'attachment','image/jpeg',0), +(398,2,'2024-10-18 09:00:33','2024-10-18 07:00:33','MUGURA: vine\r\n\r\nMinimalist hoop earrings with thin ends going up on the lobes. In gold plated silver.\r\n
    \r\n
  • wire thickness 2mm
  • \r\n
  • total diametre 3cm
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nAll our pieces are made in 80% recycled sterling silver and 24K gold plated silver.','Mugura Hoops gold plated','','publish','closed','closed','','mugura-hoops-gold-plated','','','2025-06-17 08:33:37','2025-06-17 06:33:37','',0,'https://haiku.gcch.fr/?post_type=product&p=398',0,'product','',0), +(400,2,'2024-10-18 09:21:51','2024-10-18 07:21:51','','Mugura hoops silver','','inherit','closed','closed','','_dsc9723','','','2024-10-18 09:22:07','2024-10-18 07:22:07','',398,'https://haiku.gcch.fr/app/uploads/2024/10/DSC9723.jpg',0,'attachment','image/jpeg',0), +(401,2,'2024-10-18 09:22:21','2024-10-18 07:22:21','','Mugura hoops silver','','inherit','closed','closed','','_dsc9730','','','2024-10-18 09:22:38','2024-10-18 07:22:38','',398,'https://haiku.gcch.fr/app/uploads/2024/10/DSC9730.jpg',0,'attachment','image/jpeg',0), +(404,2,'2024-10-28 07:51:48','2024-10-28 06:51:48','','Mugura Nail Jewel silver','','inherit','closed','closed','','_dsc9216','','','2024-10-28 07:52:28','2024-10-28 06:52:28','',0,'https://haiku.gcch.fr/app/uploads/2024/10/DSC9216.jpg',0,'attachment','image/jpeg',0), +(408,2,'2024-10-28 08:07:14','2024-10-28 07:07:14','','Mugura Nail Jewel gold plated','','inherit','closed','closed','','_dsc9485','','','2024-10-28 08:07:36','2024-10-28 07:07:36','',0,'https://haiku.gcch.fr/app/uploads/2024/10/DSC9485.jpg',0,'attachment','image/jpeg',0), +(411,1,'2024-10-30 20:42:57','2024-10-30 19:42:57','','Hadou ring','','inherit','closed','closed','','_dsc8400-copie','','','2024-10-30 20:43:23','2024-10-30 19:43:23','',72,'https://haiku.gcch.fr/app/uploads/2024/09/DSC8400-copie.jpg',0,'attachment','image/jpeg',0), +(412,1,'2024-10-30 20:51:18','2024-10-30 19:51:18','','Hattari ring','','inherit','closed','closed','','hattari-b-2-2','','','2024-10-30 20:51:35','2024-10-30 19:51:35','',0,'https://haiku.gcch.fr/app/uploads/2024/09/HATTARI-B-2-1.jpg',0,'attachment','image/jpeg',0), +(419,1,'2024-10-30 21:03:44','2024-10-30 20:03:44','','Hattari ring','','inherit','closed','closed','','hattari-b-1','','','2024-10-30 21:04:17','2024-10-30 20:04:17','',0,'https://haiku.gcch.fr/app/uploads/2024/09/HATTARI-B-1.jpg',0,'attachment','image/jpeg',0), +(420,1,'2024-10-30 21:15:40','2024-10-30 20:15:40','','Hattari ring','','inherit','closed','closed','','sony-dsc-2','','','2024-10-30 21:16:19','2024-10-30 20:16:19','',0,'https://haiku.gcch.fr/app/uploads/2024/09/HATTARI-B.jpg',0,'attachment','image/jpeg',0), +(424,1,'2024-10-30 22:08:13','2024-10-30 21:08:13','','Tamanori Hoops silver','','inherit','closed','closed','','_dsc9376','','','2024-10-30 22:08:31','2024-10-30 21:08:31','',306,'https://haiku.gcch.fr/app/uploads/2024/10/DSC9376.jpg',0,'attachment','image/jpeg',0), +(425,1,'2024-10-30 22:19:21','2024-10-30 21:19:21','','Mugura Earrings silver','','inherit','closed','closed','','_dsc9156','','','2024-10-30 22:19:38','2024-10-30 21:19:38','',0,'https://haiku.gcch.fr/app/uploads/2024/10/DSC9156.jpg',0,'attachment','image/jpeg',0), +(430,1,'2024-10-30 22:27:09','2024-10-30 21:27:09','ROKKU: pebble\r\n\r\nSolo hoop earring in sterling silver with a semi precious oval stone.\r\n
    \r\n
  • hoop 13mm diameter
  • \r\n
  • pendant height 1,5cm
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nAll our pieces are made in 80% recycled silver and 24K gold plated silver.','Rokku Hoop silver','','trash','closed','closed','','rokku-hoop-silver__trashed','','','2025-06-17 08:25:52','2025-06-17 06:25:52','',0,'https://haiku.gcch.fr/?post_type=product&p=430',0,'product','',0), +(433,1,'2024-10-30 22:33:29','2024-10-30 21:33:29','ROKKU: pebble\r\n\r\nSolo hoop earring in gold plated silver with a semi precious oval stone.\r\n
    \r\n
  • hoop 13mm diameter
  • \r\n
  • pendant height 1,5cm
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nAll our jewelry are made in 80% recycled silver and 24K gold plated silver.','Rokku Hoop gold plated','','trash','closed','closed','','rokku-hoop-gold-plated__trashed','','','2025-06-17 08:25:41','2025-06-17 06:25:41','',0,'https://haiku.gcch.fr/?post_type=product&p=433',0,'product','',0), +(435,1,'2024-10-30 22:36:02','2024-10-30 21:36:02','KARA: hull, shell\r\n\r\nTextured ear cuff in sterling silver.\r\n
    \r\n
  • width 0,5cm
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nAll our pieces are made in 80% recycled silver and 24K gold plated silver.','Kara Ear Cuff silver','','publish','closed','closed','','kara-earcuff-silver','','','2025-06-17 10:28:57','2025-06-17 08:28:57','',0,'https://haiku.gcch.fr/?post_type=product&p=435',0,'product','',0), +(436,1,'2024-10-30 22:37:12','2024-10-30 21:37:12','','Kara ear cuff silver','','inherit','closed','closed','','sony-dsc-53','','','2024-10-30 22:37:44','2024-10-30 21:37:44','',435,'https://haiku.gcch.fr/app/uploads/2024/10/KARA-EC-arg.jpg',0,'attachment','image/jpeg',0), +(437,1,'2024-10-30 22:40:43','2024-10-30 21:40:43','','Kara ear cuff silver','','inherit','closed','closed','','_dsc9781-2','','','2024-10-30 22:40:56','2024-10-30 21:40:56','',435,'https://haiku.gcch.fr/app/uploads/2024/10/DSC9781-1.jpg',0,'attachment','image/jpeg',0), +(447,1,'2024-11-07 23:51:25','2024-11-07 22:51:25','KARA: hull, shell\r\n\r\nTextured ear cuff in sterling gold plated silver.\r\n
    \r\n
  • width 0,5cm
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nAll our products are made in 80% recycled sterling silver and 24K gold plated silver.','Kara Ear Cuff gold plated','','publish','closed','closed','','kara-ear-cuff-gold-plated','','','2025-06-17 10:27:36','2025-06-17 08:27:36','',0,'https://haikuatelier.com/?post_type=product&p=447',0,'product','',0), +(478,1,'2024-11-08 08:34:00','2024-11-08 07:34:00','','Rokku Hoop gold plated - Lapis Lazuli','Stone: Lapis Lazuli','trash','closed','closed','','rokku-hoop-gold-plated-lapis-lazuli__trashed','','','2025-06-17 08:25:41','2025-06-17 06:25:41','',433,'https://haikuatelier.com/?post_type=product_variation&p=478',1,'product_variation','',0), +(479,1,'2024-11-08 08:34:00','2024-11-08 07:34:00','','Rokku Hoop gold plated - Malachite','Stone: Malachite','trash','closed','closed','','rokku-hoop-gold-plated-malachite__trashed','','','2025-06-17 08:25:41','2025-06-17 06:25:41','',433,'https://haikuatelier.com/?post_type=product_variation&p=479',2,'product_variation','',0), +(480,1,'2024-11-08 08:34:00','2024-11-08 07:34:00','','Rokku Hoop gold plated - Tiger\'s Eye','Stone: Tiger\'s Eye','trash','closed','closed','','rokku-hoop-gold-plated-tiger-eye__trashed','','','2025-06-17 08:25:41','2025-06-17 06:25:41','',433,'https://haikuatelier.com/?post_type=product_variation&p=480',3,'product_variation','',0), +(487,1,'2024-11-08 10:36:08','2024-11-08 09:36:08','','Rokku necklace tiger\'s eye stone','','inherit','closed','closed','','_dsc9138','','','2024-11-08 10:37:34','2024-11-08 09:37:34','',385,'https://haikuatelier.com/app/uploads/2024/10/DSC9138.jpg',0,'attachment','image/jpeg',0), +(490,1,'2024-11-10 12:47:12','2024-11-10 11:47:12','Hadou: wave\r\n\r\nStud earrings with 2 wavy lines, one in sterling silver, the other in gold plated silver.\r\n
    \r\n
  • height 1cm
  • \r\n
  • wire thickness 1,5mm
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nAll our products are made in 80% recycled silver and 24K gold plated silver.','Hadou Stud Earrings','','publish','closed','closed','','hadou-stud-earrings','','','2025-06-17 09:46:46','2025-06-17 07:46:46','',0,'https://haikuatelier.com/?post_type=product&p=490',0,'product','',0), +(493,1,'2024-11-10 12:59:05','2024-11-10 11:59:05','','Hadou Stud Earrings - left side','Side: left side','publish','closed','closed','','hattari-double-hoops-copy-left-side','','','2025-05-09 18:09:54','2025-05-09 16:09:54','',490,'https://haikuatelier.com/?post_type=product_variation&p=493',2,'product_variation','',0), +(494,1,'2024-11-10 12:59:05','2024-11-10 11:59:05','','Hadou Stud Earrings - pair','Side: pair','publish','closed','closed','','hattari-double-hoops-copy-pair','','','2025-05-09 18:09:54','2025-05-09 16:09:54','',490,'https://haikuatelier.com/?post_type=product_variation&p=494',1,'product_variation','',0), +(495,1,'2024-11-10 12:59:05','2024-11-10 11:59:05','','Hadou Stud Earrings - right side','Side: right side','publish','closed','closed','','hattari-double-hoops-copy-right-side','','','2025-05-09 18:09:54','2025-05-09 16:09:54','',490,'https://haikuatelier.com/?post_type=product_variation&p=495',3,'product_variation','',0), +(496,1,'2024-11-10 13:07:31','2024-11-10 12:07:31','Mugura: vine\r\n\r\nSmall solo hoop in sterling silver with a wavy element in gold plated silver dangling.\r\n
    \r\n
  • hoop diameter 13mm
  • \r\n
  • total height 3cm
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nAll our jewelry are made in 80% recycled silver and 24K gold plated silver.','Mugura Solo Hoop','','publish','closed','closed','','kagun-hoop','','','2025-06-17 08:25:09','2025-06-17 06:25:09','',0,'https://haikuatelier.com/?post_type=product&p=496',0,'product','',0), +(506,0,'2024-11-11 23:02:44','2024-11-11 22:02:44','','woocommerce-placeholder','','inherit','open','closed','','woocommerce-placeholder','','','2024-11-11 23:02:44','2024-11-11 22:02:44','',0,'https://haiku.gcch.fr/app/uploads/2024/11/woocommerce-placeholder.png',0,'attachment','image/png',0), +(510,1,'2024-11-12 17:15:05','2024-11-12 16:15:05','','Successful Order','','publish','closed','closed','','successful-order','','','2024-11-12 17:34:29','2024-11-12 16:34:29','',0,'https://haiku.gcch.fr/?page_id=510',0,'page','',0), +(511,1,'2024-11-12 17:15:13','2024-11-12 16:15:13','','Failed Order','','publish','closed','closed','','failed-order','','','2024-11-12 17:34:46','2024-11-12 16:34:46','',0,'https://haiku.gcch.fr/?page_id=511',0,'page','',0), +(515,1,'2024-11-12 23:15:48','2024-11-12 22:15:48','BOROBORO : the sound of something crumbling \r\n\r\nSmall asymmetrical earrings composed of one oval shape and one round shape with semi precious beads dangling.\r\n
    \r\n
  • wire diameter 12mm
  • \r\n
  • height 2cm
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nAll our products are made in 80% recycled sterling silver and 24K gold plated silver.','BoroBoro Bead Earrings gold plated','','publish','closed','closed','','boroboro-bead-earrings-gold-plated','','','2025-06-19 16:20:08','2025-06-19 14:20:08','',0,'https://haikuatelier.com/?post_type=product&p=515',0,'product','',0), +(521,1,'2024-11-12 23:26:10','2024-11-12 22:26:10','BOROBORO : the sound of something crumbling \r\n\r\nSmall asymmetrical earrings composed of one oval shape and one round shape with semi precious beads dangling.\r\n
    \r\n
  • wire diameter 12mm
  • \r\n
  • height 2cm
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nAll our products are made in 80% recycled sterling silver and 24K gold plated silver.','BoroBoro Bead Earrings silver','','publish','closed','closed','','boroboro-bead-earrings-silver','','','2025-06-19 16:20:06','2025-06-19 14:20:06','',0,'https://haikuatelier.com/?post_type=product&p=521',0,'product','',0), +(523,1,'2024-11-12 23:26:10','2024-11-12 22:26:10','','BoroBoro Bead Earrings silver - Tiger\'s Eye','Stone: Tiger\'s Eye','publish','closed','closed','','boroboro-long-earrings-gold-plated-copy-tigers-eye-2','','','2024-11-12 23:30:51','2024-11-12 22:30:51','',521,'https://haikuatelier.com/?post_type=product_variation&p=523',2,'product_variation','',0), +(528,1,'2024-11-12 23:40:20','2024-11-12 22:40:20','','Ikkan Ring silver - 64','Size: 64','publish','closed','closed','','ikkan-ring-silver-64','','','2024-11-12 23:40:26','2024-11-12 22:40:26','',102,'https://haikuatelier.com/?post_type=product_variation&p=528',8,'product_variation','',0), +(529,1,'2024-11-12 23:42:21','2024-11-12 22:42:21','','Ikkan Ring gold plated - 64','Size: 64','publish','closed','closed','','ikkan-ring-gold-plated-64','','','2024-11-12 23:42:29','2024-11-12 22:42:29','',113,'https://haikuatelier.com/?post_type=product_variation&p=529',8,'product_variation','',0), +(530,1,'2024-11-12 23:43:55','2024-11-12 22:43:55','','Piasu Ring - 64','Size: 64','publish','closed','closed','','piasu-ring-64','','','2025-06-18 22:44:51','2025-06-18 20:44:51','',123,'https://haikuatelier.com/?post_type=product_variation&p=530',8,'product_variation','',0), +(532,1,'2024-11-12 23:50:23','2024-11-12 22:50:23','','Kara Ring - 64','Size: 64','publish','closed','closed','','kara-ring-64','','','2025-05-09 17:40:25','2025-05-09 15:40:25','',133,'https://haikuatelier.com/?post_type=product_variation&p=532',8,'product_variation','',0), +(533,1,'2024-11-12 23:51:56','2024-11-12 22:51:56','','Kishou Ring silver - 64','Size: 64','trash','closed','closed','','kishou-ring-silver-64__trashed','','','2025-06-13 10:38:32','2025-06-13 08:38:32','',144,'https://haikuatelier.com/?post_type=product_variation&p=533',8,'product_variation','',0), +(534,1,'2024-11-12 23:53:31','2024-11-12 22:53:31','','Kishou Ring gold plated - 64','Size: 64','trash','closed','closed','','kishou-ring-gold-plated-64__trashed','','','2025-06-13 10:38:32','2025-06-13 08:38:32','',155,'https://haikuatelier.com/?post_type=product_variation&p=534',8,'product_variation','',0), +(535,1,'2024-11-13 08:41:58','2024-11-13 07:41:58','BoroBoro: the sound of something crumbling \r\n\r\nA belt made of thin leather scraps and a sterling silver oval buckle, secured by sliding the straps into a semi precious bead. \r\n
    \r\n
  • adjustable up to 95cm
  • \r\n
  • oval element caliber 8cm
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nAll our pieces are made in 80% recycled sterling silver and 24K gold plated silver.','BoroBoro Belt','','trash','closed','closed','','boroboro-belt__trashed','','','2025-06-13 10:38:00','2025-06-13 08:38:00','',0,'https://haikuatelier.com/?post_type=product&p=535',0,'product','',0), +(540,1,'2024-11-13 09:11:24','2024-11-13 08:11:24','','BoroBoro Belt - Crystal','Stone: Crystal','trash','closed','closed','','mugura-nail-jewel-silver-copy-crystal__trashed','','','2025-06-13 10:38:00','2025-06-13 08:38:00','',535,'https://haikuatelier.com/?post_type=product_variation&p=540',1,'product_variation','',0), +(541,1,'2024-11-13 09:11:24','2024-11-13 08:11:24','','BoroBoro Belt - Jade','Stone: Jade','trash','closed','closed','','mugura-nail-jewel-silver-copy-jade__trashed','','','2025-06-13 10:38:00','2025-06-13 08:38:00','',535,'https://haikuatelier.com/?post_type=product_variation&p=541',2,'product_variation','',0), +(545,1,'2024-11-13 13:56:53','2024-11-13 12:56:53','KARA: hull, shell\r\n\r\nSmall textured gold plated silver hoops.\r\n
    \r\n
  • 1cm diameter
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nAll our pieces are made in 80% recycled sterling silver and 24K gold plated silver.','Kara Hoops gold plated','','publish','closed','closed','','kara-hoops-gold-plated','','','2025-06-17 10:23:24','2025-06-17 08:23:24','',0,'https://haikuatelier.com/?post_type=product&p=545',0,'product','',0), +(552,1,'2024-11-13 14:51:15','2024-11-13 13:51:15','','Kara Hoops gold plated - one earring','Side: one earring','publish','closed','closed','','kara-hoops-gold-plated-one-earring','','','2025-05-09 18:01:13','2025-05-09 16:01:13','',545,'https://haikuatelier.com/?post_type=product_variation&p=552',2,'product_variation','',0), +(553,1,'2024-11-13 14:51:15','2024-11-13 13:51:15','','Kara Hoops gold plated - pair','Side: pair','publish','closed','closed','','kara-hoops-gold-plated-pair','','','2025-05-09 18:01:13','2025-05-09 16:01:13','',545,'https://haikuatelier.com/?post_type=product_variation&p=553',1,'product_variation','',0), +(554,1,'2024-11-13 14:52:59','2024-11-13 13:52:59','KARA: hull, shell\r\n\r\nSmall textured sterling silver hoops.\r\n
    \r\n
  • 1cm diameter
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nAll our pieces are made in 80% recycled sterling silver and 24K gold plated silver.','Kara Hoops silver','','publish','closed','closed','','kara-hoops-silver','','','2025-06-17 10:21:21','2025-06-17 08:21:21','',0,'https://haikuatelier.com/?post_type=product&p=554',0,'product','',0), +(555,1,'2024-11-13 14:52:59','2024-11-13 13:52:59','','Kara Hoops silver - pair','Side: pair','publish','closed','closed','','kara-hoops-gold-plated-pair-2','','','2025-05-09 18:01:37','2025-05-09 16:01:37','',554,'https://haikuatelier.com/?post_type=product_variation&p=555',1,'product_variation','',0), +(556,1,'2024-11-13 14:52:59','2024-11-13 13:52:59','','Kara Hoops silver - one earring','Side: one earring','publish','closed','closed','','kara-hoops-gold-plated-one-earring-2','','','2025-05-09 18:01:55','2025-05-09 16:01:55','',554,'https://haikuatelier.com/?post_type=product_variation&p=556',2,'product_variation','',0), +(560,1,'2024-11-13 15:17:28','2024-11-13 14:17:28','','Mugura Trio Stud Earrings - all','Side: all','publish','closed','closed','','kagun-trio-earrings-all','','','2025-06-17 08:19:09','2025-06-17 06:19:09','',342,'https://haikuatelier.com/?post_type=product_variation&p=560',1,'product_variation','',0), +(561,1,'2024-11-13 15:17:28','2024-11-13 14:17:28','','Mugura Trio Stud Earrings - long','Side: long','publish','closed','closed','','kagun-trio-earrings-long-side','','','2025-06-17 08:19:09','2025-06-17 06:19:09','',342,'https://haikuatelier.com/?post_type=product_variation&p=561',2,'product_variation','',0), +(562,1,'2024-11-13 15:17:28','2024-11-13 14:17:28','','Mugura Trio Stud Earrings - medium','Side: medium','publish','closed','closed','','kagun-trio-earrings-medium-side','','','2025-06-17 08:19:09','2025-06-17 06:19:09','',342,'https://haikuatelier.com/?post_type=product_variation&p=562',3,'product_variation','',0), +(563,1,'2024-11-13 15:17:28','2024-11-13 14:17:28','','Mugura Trio Stud Earrings - short','Side: short','publish','closed','closed','','kagun-trio-earrings-short-side','','','2025-06-17 08:19:09','2025-06-17 06:19:09','',342,'https://haikuatelier.com/?post_type=product_variation&p=563',4,'product_variation','',0), +(565,1,'2024-11-13 15:42:44','2024-11-13 14:42:44','','BoroBoro Long Earrings silver - one element earring','Side: one element earring','publish','closed','closed','','boroboro-long-earrings-silver-one-element-side','','','2025-06-18 22:39:06','2025-06-18 20:39:06','',183,'https://haikuatelier.com/?post_type=product_variation&p=565',2,'product_variation','',0), +(566,1,'2024-11-13 15:42:44','2024-11-13 14:42:44','','BoroBoro Long Earrings silver - pair','Side: pair','publish','closed','closed','','boroboro-long-earrings-silver-pair','','','2025-06-18 22:39:06','2025-06-18 20:39:06','',183,'https://haikuatelier.com/?post_type=product_variation&p=566',1,'product_variation','',0), +(567,1,'2024-11-13 15:42:44','2024-11-13 14:42:44','','BoroBoro Long Earrings silver - two elements earring','Side: two elements earring','publish','closed','closed','','boroboro-long-earrings-silver-two-elements-side','','','2025-06-18 22:39:06','2025-06-18 20:39:06','',183,'https://haikuatelier.com/?post_type=product_variation&p=567',3,'product_variation','',0), +(569,1,'2024-11-13 15:46:14','2024-11-13 14:46:14','','BoroBoro Long Earrings gold plated - one element earring','Side: one element earring','publish','closed','closed','','boroboro-long-earrings-gold-plated-one-element-side','','','2025-05-09 17:43:23','2025-05-09 15:43:23','',213,'https://haikuatelier.com/?post_type=product_variation&p=569',2,'product_variation','',0), +(570,1,'2024-11-13 15:46:14','2024-11-13 14:46:14','','BoroBoro Long Earrings gold plated - pair','Side: pair','publish','closed','closed','','boroboro-long-earrings-gold-plated-pair','','','2025-06-18 22:36:56','2025-06-18 20:36:56','',213,'https://haikuatelier.com/?post_type=product_variation&p=570',1,'product_variation','',0), +(571,1,'2024-11-13 15:46:14','2024-11-13 14:46:14','','BoroBoro Long Earrings gold plated - two elements earring','Side: two elements earring','publish','closed','closed','','boroboro-long-earrings-gold-plated-two-elements-side','','','2025-05-09 17:43:23','2025-05-09 15:43:23','',213,'https://haikuatelier.com/?post_type=product_variation&p=571',3,'product_variation','',0), +(610,1,'2024-11-13 18:30:59','2024-11-13 17:30:59','HATTARI: bluff\r\n\r\nA bangle bracelet composed of a wide asymmetrical band in sterling silver, and a round wire in gold plated silver crossing it.\r\n
    \r\n
  • adjustable
  • \r\n
  • band width 2cm and wire thickness 1,5mm
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nAll our pieces are made in 80% recycled sterling silver and 24K gold plated silver.','Hattari Cuff','','publish','closed','closed','','hattari-cuff','','','2025-05-09 17:53:12','2025-05-09 15:53:12','',0,'https://haikuatelier.com/?post_type=product&p=610',0,'product','',0), +(613,1,'2024-11-13 19:01:59','2024-11-13 18:01:59','BOROBORO: the sound of something crumbling\r\n\r\nMinimalist gold plated ring composed of a thick round band and a movable green aventurine bead.\r\n
    \r\n
  • wire diameter 25 mm
  • \r\n
  • bead diameter 12mm
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nFind some help to chose your ring size here.\r\n\r\nAll our pieces are made in 80% recycled silver and 24K gold plated silver.','BoroBoro Bead Ring gold plated','','publish','closed','closed','','boroboro-bead-ring-gold-plated','','','2024-11-24 11:51:37','2024-11-24 10:51:37','',0,'https://haikuatelier.com/?post_type=product&p=613',0,'product','',0), +(614,1,'2024-11-13 19:01:59','2024-11-13 18:01:59','','BoroBoro Bead Ring gold plated - 50','Size: 50','publish','closed','closed','','hadou-golden-earcuff-119','','','2024-11-13 19:11:38','2024-11-13 18:11:38','',613,'https://haikuatelier.com/?post_type=product_variation&p=614',1,'product_variation','',0), +(615,1,'2024-11-13 19:01:59','2024-11-13 18:01:59','','BoroBoro Bead Ring gold plated - 52','Size: 52','publish','closed','closed','','hadou-golden-earcuff-120','','','2024-11-13 19:11:38','2024-11-13 18:11:38','',613,'https://haikuatelier.com/?post_type=product_variation&p=615',2,'product_variation','',0), +(616,1,'2024-11-13 19:02:00','2024-11-13 18:02:00','','BoroBoro Bead Ring gold plated - 54','Size: 54','publish','closed','closed','','hadou-golden-earcuff-121','','','2024-11-13 19:11:38','2024-11-13 18:11:38','',613,'https://haikuatelier.com/?post_type=product_variation&p=616',3,'product_variation','',0), +(617,1,'2024-11-13 19:02:00','2024-11-13 18:02:00','','BoroBoro Bead Ring gold plated - 56','Size: 56','publish','closed','closed','','hadou-golden-earcuff-122','','','2024-11-13 19:11:38','2024-11-13 18:11:38','',613,'https://haikuatelier.com/?post_type=product_variation&p=617',4,'product_variation','',0), +(618,1,'2024-11-13 19:02:00','2024-11-13 18:02:00','','BoroBoro Bead Ring gold plated - 58','Size: 58','publish','closed','closed','','hadou-golden-earcuff-123','','','2024-11-13 19:11:38','2024-11-13 18:11:38','',613,'https://haikuatelier.com/?post_type=product_variation&p=618',5,'product_variation','',0), +(619,1,'2024-11-13 19:02:00','2024-11-13 18:02:00','','BoroBoro Bead Ring gold plated - 60','Size: 60','publish','closed','closed','','hadou-golden-earcuff-124','','','2024-11-13 19:11:38','2024-11-13 18:11:38','',613,'https://haikuatelier.com/?post_type=product_variation&p=619',6,'product_variation','',0), +(620,1,'2024-11-13 19:02:00','2024-11-13 18:02:00','','BoroBoro Bead Ring gold plated - 62','Size: 62','publish','closed','closed','','hadou-golden-earcuff-125','','','2024-11-16 19:45:02','2024-11-16 18:45:02','',613,'https://haikuatelier.com/?post_type=product_variation&p=620',7,'product_variation','',0), +(624,1,'2024-11-13 19:09:17','2024-11-13 18:09:17','','BoroBoro Bead Ring gold plated - 64','Size: 64','publish','closed','closed','','hadou-ring-copy-64','','','2024-11-13 19:11:38','2024-11-13 18:11:38','',613,'https://haikuatelier.com/?post_type=product_variation&p=624',8,'product_variation','',0), +(625,1,'2024-11-13 19:13:47','2024-11-13 18:13:47','BOROBORO: the sound of something crumbling\r\n\r\nMinimalist sterling silver ring composed of a thick round band and a movable tiger\'s eye bead.\r\n
    \r\n
  • wire diameter 25 mm
  • \r\n
  • bead diameter 12mm
  • \r\n
  • handcrafted in Brussels
  • \r\n
\r\nFind some help to chose your ring size here.\r\n\r\nAll our pieces are made in 80% recycled silver and 24K gold plated silver.','BoroBoro Bead Ring silver','','publish','closed','closed','','boroboro-bead-ring-silver','','','2024-11-24 11:51:44','2024-11-24 10:51:44','',0,'https://haikuatelier.com/?post_type=product&p=625',0,'product','',0), +(626,1,'2024-11-13 19:13:47','2024-11-13 18:13:47','','BoroBoro Bead Ring silver - 50','Size: 50','publish','closed','closed','','hadou-golden-earcuff-126','','','2024-11-13 19:18:01','2024-11-13 18:18:01','',625,'https://haikuatelier.com/?post_type=product_variation&p=626',1,'product_variation','',0), +(627,1,'2024-11-13 19:13:47','2024-11-13 18:13:47','','BoroBoro Bead Ring silver - 52','Size: 52','publish','closed','closed','','hadou-golden-earcuff-127','','','2024-11-13 19:18:01','2024-11-13 18:18:01','',625,'https://haikuatelier.com/?post_type=product_variation&p=627',2,'product_variation','',0), +(628,1,'2024-11-13 19:13:47','2024-11-13 18:13:47','','BoroBoro Bead Ring silver - 54','Size: 54','publish','closed','closed','','hadou-golden-earcuff-128','','','2024-11-13 19:18:01','2024-11-13 18:18:01','',625,'https://haikuatelier.com/?post_type=product_variation&p=628',3,'product_variation','',0), +(629,1,'2024-11-13 19:13:47','2024-11-13 18:13:47','','BoroBoro Bead Ring silver - 56','Size: 56','publish','closed','closed','','hadou-golden-earcuff-129','','','2024-11-13 19:18:01','2024-11-13 18:18:01','',625,'https://haikuatelier.com/?post_type=product_variation&p=629',4,'product_variation','',0), +(630,1,'2024-11-13 19:13:47','2024-11-13 18:13:47','','BoroBoro Bead Ring silver - 58','Size: 58','publish','closed','closed','','hadou-golden-earcuff-130','','','2024-11-13 19:18:01','2024-11-13 18:18:01','',625,'https://haikuatelier.com/?post_type=product_variation&p=630',5,'product_variation','',0), +(631,1,'2024-11-13 19:13:47','2024-11-13 18:13:47','','BoroBoro Bead Ring silver - 60','Size: 60','publish','closed','closed','','hadou-golden-earcuff-131','','','2024-11-13 19:18:01','2024-11-13 18:18:01','',625,'https://haikuatelier.com/?post_type=product_variation&p=631',6,'product_variation','',0), +(632,1,'2024-11-13 19:13:47','2024-11-13 18:13:47','','BoroBoro Bead Ring silver - 62','Size: 62','publish','closed','closed','','hadou-golden-earcuff-132','','','2024-11-13 19:18:01','2024-11-13 18:18:01','',625,'https://haikuatelier.com/?post_type=product_variation&p=632',7,'product_variation','',0), +(633,1,'2024-11-13 19:13:47','2024-11-13 18:13:47','','BoroBoro Bead Ring silver - 64','Size: 64','publish','closed','closed','','hadou-ring-copy-65','','','2024-11-13 19:18:01','2024-11-13 18:18:01','',625,'https://haikuatelier.com/?post_type=product_variation&p=633',8,'product_variation','',0), +(637,1,'2024-11-13 19:23:08','2024-11-13 18:23:08','','Piasu Earrings - left side','Side: left side','publish','closed','closed','','piasu-earrings-left-side','','','2024-11-15 12:38:50','2024-11-15 11:38:50','',202,'https://haikuatelier.com/?post_type=product_variation&p=637',2,'product_variation','',0), +(638,1,'2024-11-13 19:23:08','2024-11-13 18:23:08','','Piasu Earrings - pair','Side: pair','publish','closed','closed','','piasu-earrings-pair','','','2024-11-13 19:25:24','2024-11-13 18:25:24','',202,'https://haikuatelier.com/?post_type=product_variation&p=638',1,'product_variation','',0), +(639,1,'2024-11-13 19:23:08','2024-11-13 18:23:08','','Piasu Earrings - right side','Side: right side','publish','closed','closed','','piasu-earrings-right-side','','','2024-11-13 19:25:24','2024-11-13 18:25:24','',202,'https://haikuatelier.com/?post_type=product_variation&p=639',3,'product_variation','',0), +(641,1,'2024-11-13 19:47:48','2024-11-13 18:47:48','','Hattari Stacked Hoops silver - left side','Side: left side','publish','closed','closed','','hattari-stacked-hoops-silver-left-side','','','2025-05-09 17:58:35','2025-05-09 15:58:35','',285,'https://haikuatelier.com/?post_type=product_variation&p=641',2,'product_variation','',0), +(642,1,'2024-11-13 19:47:48','2024-11-13 18:47:48','','Hattari Stacked Hoops silver - pair','Side: pair','publish','closed','closed','','hattari-stacked-hoops-silver-pair','','','2025-06-18 22:31:04','2025-06-18 20:31:04','',285,'https://haikuatelier.com/?post_type=product_variation&p=642',1,'product_variation','',0), +(643,1,'2024-11-13 19:47:48','2024-11-13 18:47:48','','Hattari Stacked Hoops silver - right side','Side: right side','publish','closed','closed','','hattari-stacked-hoops-silver-right-side','','','2025-05-09 17:58:35','2025-05-09 15:58:35','',285,'https://haikuatelier.com/?post_type=product_variation&p=643',3,'product_variation','',0), +(645,1,'2024-11-13 19:54:04','2024-11-13 18:54:04','','Hattari Stacked Hoops gold plated - left side','Side: left side','publish','closed','closed','','hattari-stacked-hoops-gold-plated-left-side','','','2025-05-09 17:58:12','2025-05-09 15:58:12','',288,'https://haikuatelier.com/?post_type=product_variation&p=645',2,'product_variation','',0), +(646,1,'2024-11-13 19:54:04','2024-11-13 18:54:04','','Hattari Stacked Hoops gold plated - pair','Side: pair','publish','closed','closed','','hattari-stacked-hoops-gold-plated-pair','','','2025-06-18 22:30:24','2025-06-18 20:30:24','',288,'https://haikuatelier.com/?post_type=product_variation&p=646',1,'product_variation','',0), +(647,1,'2024-11-13 19:54:04','2024-11-13 18:54:04','','Hattari Stacked Hoops gold plated - right side','Side: right side','publish','closed','closed','','hattari-stacked-hoops-gold-plated-right-side','','','2025-05-09 17:58:12','2025-05-09 15:58:12','',288,'https://haikuatelier.com/?post_type=product_variation&p=647',3,'product_variation','',0), +(651,1,'2024-11-13 20:02:49','2024-11-13 19:02:49','','Tamanori Hoops silver - long','Side: long','publish','closed','closed','','tamanori-hoops-silver-long','','','2024-11-13 20:03:51','2024-11-13 19:03:51','',306,'https://haikuatelier.com/?post_type=product_variation&p=651',2,'product_variation','',0), +(652,1,'2024-11-13 20:02:49','2024-11-13 19:02:49','','Tamanori Hoops silver - pair','Side: pair','publish','closed','closed','','tamanori-hoops-silver-pair','','','2024-11-13 20:03:51','2024-11-13 19:03:51','',306,'https://haikuatelier.com/?post_type=product_variation&p=652',1,'product_variation','',0), +(653,1,'2024-11-13 20:02:49','2024-11-13 19:02:49','','Tamanori Hoops silver - short','Side: short','publish','closed','closed','','tamanori-hoops-silver-short','','','2024-11-15 12:32:10','2024-11-15 11:32:10','',306,'https://haikuatelier.com/?post_type=product_variation&p=653',3,'product_variation','',0), +(654,1,'2024-11-13 20:07:31','2024-11-13 19:07:31','','Tamanori Hoops gold plated - long','Side: long','publish','closed','closed','','tamanori-hoops-gold-plated-long','','','2024-11-15 12:32:55','2024-11-15 11:32:55','',312,'https://haikuatelier.com/?post_type=product_variation&p=654',2,'product_variation','',0), +(655,1,'2024-11-13 20:07:31','2024-11-13 19:07:31','','Tamanori Hoops gold plated - pair','Side: pair','publish','closed','closed','','tamanori-hoops-gold-plated-pair','','','2024-11-13 20:13:10','2024-11-13 19:13:10','',312,'https://haikuatelier.com/?post_type=product_variation&p=655',1,'product_variation','',0), +(656,1,'2024-11-13 20:07:31','2024-11-13 19:07:31','','Tamanori Hoops gold plated - short','Side: short','publish','closed','closed','','tamanori-hoops-gold-plated-short','','','2024-11-15 12:32:55','2024-11-15 11:32:55','',312,'https://haikuatelier.com/?post_type=product_variation&p=656',3,'product_variation','',0), +(659,1,'2024-11-15 12:26:34','2024-11-15 11:26:34','','Hadou wavy ring silver and gold','','inherit','closed','closed','','hadou-b-opti','','','2024-11-15 17:20:07','2024-11-15 16:20:07','',72,'https://haikuatelier.com/app/uploads/2024/09/HADOU-B-opti.jpg',0,'wmpc-trash','image/jpeg',0), +(660,1,'2024-11-15 12:30:13','2024-11-15 11:30:13','','Tamanori hoops gold plated','','inherit','closed','closed','','img_1442','','','2024-11-15 12:30:25','2024-11-15 11:30:25','',312,'https://haikuatelier.com/app/uploads/2024/10/IMG_1442.jpg',0,'attachment','image/jpeg',0), +(661,1,'2024-11-15 12:37:38','2024-11-15 11:37:38','','Piasu earrins mixing gold and silver','','inherit','closed','closed','','img_1454','','','2024-11-15 12:38:04','2024-11-15 11:38:04','',202,'https://haikuatelier.com/app/uploads/2024/10/IMG_1454.jpg',0,'attachment','image/jpeg',0), +(662,1,'2024-11-15 12:39:58','2024-11-15 11:39:58','','Piasu earrings mixing gold and silver','','inherit','closed','closed','','img_1456','','','2024-11-15 12:40:19','2024-11-15 11:40:19','',202,'https://haikuatelier.com/app/uploads/2024/10/IMG_1456.jpg',0,'attachment','image/jpeg',0), +(664,1,'2024-11-15 12:45:23','2024-11-15 11:45:23','','Kagun trio earrings','','inherit','closed','closed','','img_1512','','','2024-11-15 12:45:38','2024-11-15 11:45:38','',342,'https://haikuatelier.com/app/uploads/2024/10/IMG_1512.jpg',0,'attachment','image/jpeg',0), +(671,1,'2024-11-15 13:18:10','2024-11-15 12:18:10','','BoroBoro gold plated asymmetrical earrings','','inherit','closed','closed','','img_1604','','','2024-11-15 13:18:55','2024-11-15 12:18:55','',213,'https://haikuatelier.com/app/uploads/2024/10/IMG_1604.jpg',0,'attachment','image/jpeg',0), +(672,1,'2024-11-15 13:23:08','2024-11-15 12:23:08','','Hattari ear cuff gold plated','','inherit','closed','closed','','img_1656-2','','','2024-11-15 13:27:38','2024-11-15 12:27:38','',393,'https://haikuatelier.com/app/uploads/2024/10/IMG_1656-1.jpg',0,'attachment','image/jpeg',0), +(673,1,'2024-11-15 13:29:39','2024-11-15 12:29:39','','Mugura minimalist silver hoops','','inherit','closed','closed','','img_1657','','','2024-11-15 13:30:07','2024-11-15 12:30:07','',393,'https://haikuatelier.com/app/uploads/2024/10/IMG_1657.jpg',0,'attachment','image/jpeg',0), +(679,1,'2024-11-16 19:53:30','2024-11-16 18:53:30','','Fuyou necklace','','inherit','closed','closed','','_dsc9116','','','2024-11-16 19:53:56','2024-11-16 18:53:56','',274,'https://haikuatelier.com/app/uploads/2024/10/DSC9116.jpg',0,'attachment','image/jpeg',0), +(681,1,'2024-11-17 10:24:25','2024-11-17 09:24:25','','Piasu Ring','','inherit','closed','closed','','dsc9897','','','2024-11-17 10:24:56','2024-11-17 09:24:56','',123,'https://haikuatelier.com/app/uploads/2024/09/DSC9897.jpg',0,'attachment','image/jpeg',0), +(683,1,'2024-11-17 10:32:47','2024-11-17 09:32:47','','Hattari double fingers ring','','inherit','closed','closed','','img_1423','','','2024-11-17 10:33:09','2024-11-17 09:33:09','',0,'https://haikuatelier.com/app/uploads/2024/09/IMG_1423.jpg',0,'attachment','image/jpeg',0), +(684,1,'2024-11-17 10:35:57','2024-11-17 09:35:57','','Ikkan ring gold plated','','inherit','closed','closed','','img_1478','','','2024-11-17 10:36:09','2024-11-17 09:36:09','',113,'https://haikuatelier.com/app/uploads/2024/09/IMG_1478.jpg',0,'attachment','image/jpeg',0), +(689,1,'2024-11-17 10:50:52','2024-11-17 09:50:52','','Hattari stacked hoops gold plated','','inherit','closed','closed','','_dsc9341','','','2024-11-17 10:51:13','2024-11-17 09:51:13','',288,'https://haikuatelier.com/app/uploads/2024/10/DSC9341.jpg',0,'attachment','image/jpeg',0), +(690,1,'2024-11-17 10:54:45','2024-11-17 09:54:45','','Fuyou necklace','SONY DSC','inherit','closed','closed','','sony-dsc-33','','','2024-11-17 10:55:01','2024-11-17 09:55:01','',274,'https://haikuatelier.com/app/uploads/2024/10/FUYOU-C-1.jpg',0,'attachment','image/jpeg',0), +(691,1,'2024-11-17 10:57:02','2024-11-17 09:57:02','','Fuyou solo hoop','SONY DSC','inherit','closed','closed','','sony-dsc-62','','','2024-11-17 10:57:29','2024-11-17 09:57:29','',318,'https://haikuatelier.com/app/uploads/2024/10/FUYOU-CR1.jpg',0,'attachment','image/jpeg',0), +(692,1,'2024-11-17 10:59:40','2024-11-17 09:59:40','','Hadou bangles','SONY DSC','inherit','closed','closed','','sony-dsc-16','','','2024-11-17 10:59:48','2024-11-17 09:59:48','',0,'https://haikuatelier.com/app/uploads/2024/10/HADOU-BR-mix.jpg',0,'attachment','image/jpeg',0), +(696,1,'2024-11-17 11:05:12','2024-11-17 10:05:12','','Ikkan necklace','','inherit','closed','closed','','sony-dsc-22','','','2024-11-17 11:05:30','2024-11-17 10:05:30','',263,'https://haikuatelier.com/app/uploads/2024/10/IKKAN-C-3.jpg',0,'attachment','image/jpeg',0), +(698,1,'2024-11-17 11:07:52','2024-11-17 10:07:52','','Fuyou bracelet gold plated','','inherit','closed','closed','','img_1428-2','','','2024-11-17 11:08:08','2024-11-17 10:08:08','',261,'https://haikuatelier.com/app/uploads/2024/10/IMG_1428-1.jpg',0,'attachment','image/jpeg',0), +(700,1,'2024-11-17 11:10:04','2024-11-17 10:10:04','','Tanemaki pearl bracelet','','inherit','closed','closed','','img_1431','','','2024-11-17 11:10:29','2024-11-17 10:10:29','',251,'https://haikuatelier.com/app/uploads/2024/10/IMG_1431.jpg',0,'attachment','image/jpeg',0), +(702,1,'2024-11-17 11:11:49','2024-11-17 10:11:49','','Tanemaki pearl bracelet','','inherit','closed','closed','','img_1432','','','2024-11-17 11:12:02','2024-11-17 10:12:02','',251,'https://haikuatelier.com/app/uploads/2024/10/IMG_1432.jpg',0,'attachment','image/jpeg',0), +(704,1,'2024-11-17 11:18:25','2024-11-17 10:18:25','','Piasu necklace','','inherit','closed','closed','','img_1493','','','2024-11-17 11:18:37','2024-11-17 10:18:37','',268,'https://haikuatelier.com/app/uploads/2024/10/IMG_1493.jpg',0,'attachment','image/jpeg',0), +(705,1,'2024-11-17 11:21:09','2024-11-17 10:21:09','','Rokku necklace jaspe stone','','inherit','closed','closed','','img_1531','','','2024-11-17 11:21:43','2024-11-17 10:21:43','',385,'https://haikuatelier.com/app/uploads/2024/10/IMG_1531.jpg',0,'attachment','image/jpeg',0), +(707,1,'2024-11-17 11:24:00','2024-11-17 10:24:00','','Rokku necklace lapis lazuli stone','','inherit','closed','closed','','img_1543','','','2024-11-17 11:24:27','2024-11-17 10:24:27','',385,'https://haikuatelier.com/app/uploads/2024/10/IMG_1543.jpg',0,'attachment','image/jpeg',0), +(708,1,'2024-11-17 11:26:34','2024-11-17 10:26:34','','Ikkan necklace','','inherit','closed','closed','','img_1565','','','2024-11-17 11:26:44','2024-11-17 10:26:44','',263,'https://haikuatelier.com/app/uploads/2024/10/IMG_1565.jpg',0,'attachment','image/jpeg',0), +(713,1,'2024-11-17 11:39:49','2024-11-17 10:39:49','','Fuyou necklace','','inherit','closed','closed','','img_1647','','','2024-11-17 11:39:58','2024-11-17 10:39:58','',274,'https://haikuatelier.com/app/uploads/2024/10/IMG_1647.jpg',0,'attachment','image/jpeg',0), +(714,1,'2024-11-17 11:42:07','2024-11-17 10:42:07','','Fuyou solo hoop','','inherit','closed','closed','','img_1651','','','2024-11-17 11:42:18','2024-11-17 10:42:18','',318,'https://haikuatelier.com/app/uploads/2024/10/IMG_1651.jpg',0,'attachment','image/jpeg',0), +(715,1,'2024-11-17 11:44:06','2024-11-17 10:44:06','','Rokku silver hoop and Tamanori goldplated earring','','inherit','closed','closed','','img_1669','','','2024-11-17 11:44:41','2024-11-17 10:44:41','',430,'https://haikuatelier.com/app/uploads/2024/10/IMG_1669.jpg',0,'attachment','image/jpeg',0), +(718,1,'2024-11-17 11:54:22','2024-11-17 10:54:22','','Boroboro earrings','','inherit','closed','closed','','img_1746','','','2024-11-17 11:54:46','2024-11-17 10:54:46','',183,'https://haikuatelier.com/app/uploads/2024/10/IMG_1746.jpg',0,'attachment','image/jpeg',0), +(722,1,'2024-11-17 17:29:17','2024-11-17 16:29:17','','Mugura hoops gold plated','','inherit','closed','closed','','sony-dsc-39','','','2024-11-17 17:29:34','2024-11-17 16:29:34','',398,'https://haikuatelier.com/app/uploads/2024/10/MUGURA-CR2-vrm.jpg',0,'attachment','image/jpeg',0), +(725,1,'2024-11-17 17:36:52','2024-11-17 16:36:52','','Piasu necklace','SONY DSC','inherit','closed','closed','','sony-dsc-23','','','2024-11-17 17:37:08','2024-11-17 16:37:08','',268,'https://haikuatelier.com/app/uploads/2024/10/PIASU-C.jpg',0,'attachment','image/jpeg',0), +(726,1,'2024-11-17 17:39:44','2024-11-17 16:39:44','','Rokku ring silver and malachite','','inherit','closed','closed','','rokku-b-malachite','','','2024-11-17 17:40:01','2024-11-17 16:40:01','',168,'https://haikuatelier.com/app/uploads/2024/10/ROKKU-B-malachite.jpg',0,'attachment','image/jpeg',0), +(727,1,'2024-11-17 17:41:31','2024-11-17 16:41:31','','Rokku necklace with jaspe','','inherit','closed','closed','','sony-dsc-49','','','2024-11-17 17:41:48','2024-11-17 16:41:48','',385,'https://haikuatelier.com/app/uploads/2024/10/ROKKU-C-jaspe.jpg',0,'attachment','image/jpeg',0), +(729,1,'2024-11-17 17:44:27','2024-11-17 16:44:27','','Rokku necklace tiger\'s eye','','inherit','closed','closed','','sony-dsc-45','','','2024-11-17 17:44:45','2024-11-17 16:44:45','',385,'https://haikuatelier.com/app/uploads/2024/10/ROKKU-C-tiger.jpg',0,'attachment','image/jpeg',0), +(730,1,'2024-11-17 17:52:40','2024-11-17 16:52:40','','Rokku solo hoop gold plated lapis lazuli','','inherit','closed','closed','','sony-dsc-52','','','2024-11-17 17:53:02','2024-11-17 16:53:02','',433,'https://haikuatelier.com/app/uploads/2024/10/ROKKU-CR1-vrm-lapis.jpg',0,'attachment','image/jpeg',0), +(731,1,'2024-11-17 17:54:12','2024-11-17 16:54:12','','Rokku solo hoop gold plated malachite','','inherit','closed','closed','','sony-dsc-55','','','2024-11-17 17:54:32','2024-11-17 16:54:32','',433,'https://haikuatelier.com/app/uploads/2024/10/ROKKU-CR1-vrm-malachite.jpg',0,'attachment','image/jpeg',0), +(732,1,'2024-11-17 17:55:29','2024-11-17 16:55:29','','Rokku solo hoop gold plated tiger\'s eye','','inherit','closed','closed','','sony-dsc-56','','','2024-11-17 17:55:59','2024-11-17 16:55:59','',433,'https://haikuatelier.com/app/uploads/2024/10/ROKKU-CR1-vrm-tiger.jpg',0,'attachment','image/jpeg',0), +(735,1,'2024-11-17 18:03:32','2024-11-17 17:03:32','','Tamanori hoops gold plated','','inherit','closed','closed','','sony-dsc-32','','','2024-11-17 18:03:50','2024-11-17 17:03:50','',312,'https://haikuatelier.com/app/uploads/2024/10/TAMANORI-CR2-vrm.jpg',0,'attachment','image/jpeg',0), +(736,1,'2024-11-17 18:05:42','2024-11-17 17:05:42','','Tanemaki pearls bracelet','','inherit','closed','closed','','sony-dsc-59','','','2024-11-17 18:05:56','2024-11-17 17:05:56','',251,'https://haikuatelier.com/app/uploads/2024/10/TANEMAKI-BR.jpg',0,'attachment','image/jpeg',0), +(743,1,'2024-11-17 18:19:23','2024-11-17 17:19:23','','BoroBoro bead ring gold plated','','inherit','closed','closed','','sony-dsc-73','','','2024-11-17 18:19:43','2024-11-17 17:19:43','',613,'https://haikuatelier.com/app/uploads/2024/11/BOROBORO-B2-g.jpg',0,'attachment','image/jpeg',0), +(744,1,'2024-11-17 18:20:59','2024-11-17 17:20:59','','BoroBoro bead ring silver','','inherit','closed','closed','','sony-dsc-74','','','2024-11-17 18:21:16','2024-11-17 17:21:16','',625,'https://haikuatelier.com/app/uploads/2024/11/BOROBORO-B2-s.jpg',0,'attachment','image/jpeg',0), +(747,1,'2024-11-17 18:27:21','2024-11-17 17:27:21','','BoroBoro beads earrings gold plated and aventurine','','inherit','closed','closed','','sony-dsc-63','','','2024-11-17 18:27:51','2024-11-17 17:27:51','',515,'https://haikuatelier.com/app/uploads/2024/11/BOROBORO-BO1-g-green.jpg',0,'attachment','image/jpeg',0), +(748,1,'2024-11-17 18:28:18','2024-11-17 17:28:18','','BoroBoro beads earrings gold plated tiger\'s eye','','inherit','closed','closed','','sony-dsc-64','','','2024-11-17 18:28:45','2024-11-17 17:28:45','',515,'https://haikuatelier.com/app/uploads/2024/11/BOROBORO-BO1-g-brown.jpg',0,'attachment','image/jpeg',0), +(749,1,'2024-11-17 18:30:10','2024-11-17 17:30:10','','BoroBoro beads earrings silver and tiger\'s eye','','inherit','closed','closed','','sony-dsc-65','','','2024-11-17 18:30:37','2024-11-17 17:30:37','',521,'https://haikuatelier.com/app/uploads/2024/11/BOROBORO-BO1-s-brown.jpg',0,'attachment','image/jpeg',0), +(750,1,'2024-11-17 18:30:59','2024-11-17 17:30:59','','BoroBoro beads earrings silver and aventurine','','inherit','closed','closed','','sony-dsc-66','','','2024-11-17 18:31:22','2024-11-17 17:31:22','',521,'https://haikuatelier.com/app/uploads/2024/11/BOROBORO-BO1-s-green.jpg',0,'attachment','image/jpeg',0), +(751,1,'2024-11-17 18:34:14','2024-11-17 17:34:14','','Kara hoops silver','','inherit','closed','closed','','_dsc9463','','','2024-11-17 18:34:32','2024-11-17 17:34:32','',554,'https://haikuatelier.com/app/uploads/2024/11/DSC9463.jpg',0,'attachment','image/jpeg',0), +(752,1,'2024-11-17 18:35:52','2024-11-17 17:35:52','','Hadou stud earrings','','inherit','closed','closed','','sony-dsc-60','','','2024-11-17 18:37:25','2024-11-17 17:37:25','',490,'https://haikuatelier.com/app/uploads/2024/11/HADOU-BOP.jpg',0,'attachment','image/jpeg',0), +(753,1,'2024-11-17 18:40:18','2024-11-17 17:40:18','','Hattari cuff','','inherit','closed','closed','','sony-dsc-15','','','2024-11-17 18:40:30','2024-11-17 17:40:30','',610,'https://haikuatelier.com/app/uploads/2024/11/HATTARI-BR.jpg',0,'attachment','image/jpeg',0), +(755,1,'2024-11-17 18:44:27','2024-11-17 17:44:27','','Hadou stud earrings silver','','inherit','closed','closed','','img_1474','','','2024-11-17 18:45:04','2024-11-17 17:45:04','',490,'https://haikuatelier.com/app/uploads/2024/11/IMG_1474.jpg',0,'attachment','image/jpeg',0), +(756,1,'2024-11-17 18:47:01','2024-11-17 17:47:01','','Kagun solo hoop earring','','inherit','closed','closed','','img_1481','','','2024-11-17 18:47:16','2024-11-17 17:47:16','',496,'https://haikuatelier.com/app/uploads/2024/11/IMG_1481.jpg',0,'attachment','image/jpeg',0), +(757,1,'2024-11-17 18:48:24','2024-11-17 17:48:24','','Kagun solo hoop earring','','inherit','closed','closed','','img_1484','','','2024-11-17 18:48:35','2024-11-17 17:48:35','',496,'https://haikuatelier.com/app/uploads/2024/11/IMG_1484.jpg',0,'attachment','image/jpeg',0), +(758,1,'2024-11-17 18:50:22','2024-11-17 17:50:22','','BoroBoro bead ring silver and tiger\'s eye','','inherit','closed','closed','','img_1501','','','2024-11-17 18:55:54','2024-11-17 17:55:54','',625,'https://haikuatelier.com/app/uploads/2024/11/IMG_1501.jpg',0,'attachment','image/jpeg',0), +(759,1,'2024-11-17 18:51:58','2024-11-17 17:51:58','','BoroBoro bead ring silver and tiger\'s eye','','inherit','closed','closed','','img_1506','','','2024-11-17 18:55:47','2024-11-17 17:55:47','',625,'https://haikuatelier.com/app/uploads/2024/11/IMG_1506.jpg',0,'attachment','image/jpeg',0), +(760,1,'2024-11-17 18:53:44','2024-11-17 17:53:44','','BoroBoro bead ring gold plated and aventurine','','inherit','closed','closed','','img_1504','','','2024-11-17 18:55:29','2024-11-17 17:55:29','',613,'https://haikuatelier.com/app/uploads/2024/11/IMG_1504.jpg',0,'attachment','image/jpeg',0), +(761,1,'2024-11-17 18:55:14','2024-11-17 17:55:14','','BoroBoro bead ring gold plated and aventurine','','inherit','closed','closed','','img_1554','','','2024-11-17 18:55:37','2024-11-17 17:55:37','',613,'https://haikuatelier.com/app/uploads/2024/11/IMG_1554.jpg',0,'attachment','image/jpeg',0), +(762,1,'2024-11-17 18:57:40','2024-11-17 17:57:40','','Kara textured hoops gold plated','','inherit','closed','closed','','img_1563','','','2024-11-17 18:58:00','2024-11-17 17:58:00','',545,'https://haikuatelier.com/app/uploads/2024/11/IMG_1563.jpg',0,'attachment','image/jpeg',0), +(766,1,'2024-11-20 16:00:37','2024-11-20 15:00:37','Fuyou : floating leave on water\r\n\r\nLong dangling earrings in sterling silver. Composed of fluid oval shapes and rectangular chains.\r\n\r\n• total length 5cm\r\n• oval length 2,5cm\r\n• handcrafted in Brussels\r\n\r\nAll our products are made in 80% recycled sterling silver and 24K gold plated silver.\r\n\r\n ','Fuyou Long Earrings silver','','publish','closed','closed','','fuyou-long-earrings-silver','','','2025-05-09 17:50:49','2025-05-09 15:50:49','',0,'https://haikuatelier.com/?post_type=product&p=766',0,'product','',0), +(767,1,'2024-11-20 16:00:37','2024-11-20 15:00:37','','Fuyou Long Earrings silver - pair','Side: pair','publish','closed','closed','','boroboro-long-earrings-gold-plated-copy-tigers-eye-3','','','2025-05-09 17:50:49','2025-05-09 15:50:49','',766,'https://haikuatelier.com/?post_type=product_variation&p=767',1,'product_variation','',0), +(768,1,'2024-11-20 16:00:37','2024-11-20 15:00:37','','Fuyou Long Earrings silver - long','Side: long','publish','closed','closed','','boroboro-long-earrings-gold-plated-copy-green-aventurine-3','','','2025-05-09 17:50:49','2025-05-09 15:50:49','',766,'https://haikuatelier.com/?post_type=product_variation&p=768',2,'product_variation','',0), +(770,1,'2024-11-20 16:10:04','2024-11-20 15:10:04','','Fuyou long earrings silver','','inherit','closed','closed','','sony-dsc-75','','','2024-11-20 16:10:49','2024-11-20 15:10:49','',766,'https://haikuatelier.com/app/uploads/2024/11/FUYOU-B0-s.jpg',0,'attachment','image/jpeg',0), +(771,1,'2024-11-20 16:18:56','2024-11-20 15:18:56','','Fuyou long earrings silver','','inherit','closed','closed','','_dsc0240','','','2024-11-20 16:19:28','2024-11-20 15:19:28','',766,'https://haikuatelier.com/app/uploads/2024/11/DSC0240.jpg',0,'attachment','image/jpeg',0), +(772,1,'2024-11-20 16:18:57','2024-11-20 15:18:57','','Fuyou long earrings silver','','inherit','closed','closed','','_dsc0242','','','2024-11-20 16:19:40','2024-11-20 15:19:40','',766,'https://haikuatelier.com/app/uploads/2024/11/DSC0242.jpg',0,'attachment','image/jpeg',0), +(773,1,'2024-11-20 16:18:58','2024-11-20 15:18:58','','Fuyou long earrings silver','','inherit','closed','closed','','_dsc0249','','','2024-11-20 16:19:42','2024-11-20 15:19:42','',766,'https://haikuatelier.com/app/uploads/2024/11/DSC0249.jpg',0,'attachment','image/jpeg',0), +(774,1,'2024-11-20 16:18:59','2024-11-20 15:18:59','','Fuyou long earrings silver','','inherit','closed','closed','','_dsc0251','','','2024-11-20 16:19:57','2024-11-20 15:19:57','',766,'https://haikuatelier.com/app/uploads/2024/11/DSC0251.jpg',0,'attachment','image/jpeg',0), +(775,1,'2024-11-20 16:22:51','2024-11-20 15:22:51','','Fuyou Long Earrings silver - medium','Side: medium','publish','closed','closed','','boroboro-bead-earrings-silver-copy-medium','','','2025-05-09 17:50:49','2025-05-09 15:50:49','',766,'https://haikuatelier.com/?post_type=product_variation&p=775',3,'product_variation','',0), +(819,1,'2024-11-24 11:42:38','2024-11-24 10:42:38','','Haiku size guide','','inherit','closed','closed','','haiku-ringsizes','','','2024-11-24 11:42:57','2024-11-24 10:42:57','',0,'https://haikuatelier.com/app/uploads/2024/11/HAIKU-ringsizes.jpg',0,'attachment','image/jpeg',0), +(820,1,'2024-11-24 11:53:29','2024-11-24 10:53:29','','Ikkan ring gold plated','','inherit','closed','closed','','sony-dsc-4','','','2024-11-24 11:53:45','2024-11-24 10:53:45','',113,'https://haikuatelier.com/app/uploads/2024/09/IKKAN-B-vrm.jpg',0,'attachment','image/jpeg',0), +(821,1,'2024-11-24 11:55:38','2024-11-24 10:55:38','','Kara ring silver and 18k gold','','inherit','closed','closed','','sony-dsc-6','','','2024-11-24 11:55:59','2024-11-24 10:55:59','',133,'https://haikuatelier.com/app/uploads/2024/09/KARA-B.jpg',0,'attachment','image/jpeg',0), +(822,1,'2024-11-24 11:55:39','2024-11-24 10:55:39','','Kara ring silver and 18k gold','','inherit','closed','closed','','sony-dsc-76','','','2024-11-24 11:56:08','2024-11-24 10:56:08','',133,'https://haikuatelier.com/app/uploads/2024/09/KARA-B-1.jpg',0,'attachment','image/jpeg',0), +(823,1,'2024-11-24 11:58:59','2024-11-24 10:58:59','','BoroBoro earrings silver','','inherit','closed','closed','','boroboro-boatanemaki-bo1a-opti','','','2024-11-24 11:59:14','2024-11-24 10:59:14','',183,'https://haikuatelier.com/app/uploads/2024/10/BOROBORO-BOaTANEMAKI-BO1a-opti-1.jpg',0,'attachment','image/jpeg',0), +(824,1,'2024-11-24 12:01:15','2024-11-24 11:01:15','','Fuyou bracelet gold plated','','inherit','closed','closed','','sony-dsc-77','','','2024-11-24 12:01:38','2024-11-24 11:01:38','',261,'https://haikuatelier.com/app/uploads/2024/10/FUYOU-BR-g.jpg',0,'attachment','image/jpeg',0), +(825,1,'2024-11-24 12:05:34','2024-11-24 11:05:34','','Ikkan bracelet gold plated','','inherit','closed','closed','','img_1505','','','2024-11-24 12:05:50','2024-11-24 11:05:50','',246,'https://haikuatelier.com/app/uploads/2024/10/IMG_1505.jpg',0,'attachment','image/jpeg',0), +(826,1,'2024-11-24 12:07:57','2024-11-24 11:07:57','','Rokku ring silver and 18k gold','','inherit','closed','closed','','img_1582','','','2024-11-24 12:08:10','2024-11-24 11:08:10','',168,'https://haikuatelier.com/app/uploads/2024/10/IMG_1582.jpg',0,'attachment','image/jpeg',0), +(828,1,'2024-11-24 12:11:18','2024-11-24 11:11:18','','Rokku necklace silver and lapis lazuli','SONY DSC','inherit','closed','closed','','sony-dsc-58','','','2024-11-24 12:11:34','2024-11-24 11:11:34','',385,'https://haikuatelier.com/app/uploads/2024/10/ROKKU-C-lapis-copy.jpg',0,'attachment','image/jpeg',0), +(829,1,'2024-11-24 15:08:28','2024-11-24 14:08:28','','Hattari cuff','','inherit','closed','closed','','img_1460','','','2024-11-24 15:08:36','2024-11-24 14:08:36','',610,'https://haikuatelier.com/app/uploads/2024/11/IMG_1460.jpg',0,'attachment','image/jpeg',0), +(830,1,'2024-11-24 15:10:45','2024-11-24 14:10:45','','Kara ear cuff','','inherit','closed','closed','','img_1473','','','2024-11-24 15:11:09','2024-11-24 14:11:09','',447,'https://haikuatelier.com/app/uploads/2024/11/IMG_1473.jpg',0,'attachment','image/jpeg',0), +(831,1,'2024-11-24 15:13:27','2024-11-24 14:13:27','','BoroBoro bead earrings','','inherit','closed','closed','','img_1524','','','2024-11-24 15:13:44','2024-11-24 14:13:44','',521,'https://haikuatelier.com/app/uploads/2024/11/IMG_1524.jpg',0,'attachment','image/jpeg',0), +(832,1,'2024-11-24 15:14:54','2024-11-24 14:14:54','','BoroBoro bead earrings','','inherit','closed','closed','','img_1525','','','2024-11-24 15:15:08','2024-11-24 14:15:08','',515,'https://haikuatelier.com/app/uploads/2024/11/IMG_1525.jpg',0,'attachment','image/jpeg',0), +(833,1,'2024-11-24 15:16:47','2024-11-24 14:16:47','','Mugura solo hoop','','inherit','closed','closed','','sony-dsc-61','','','2025-06-17 08:27:38','2025-06-17 06:27:38','',496,'https://haikuatelier.com/app/uploads/2024/11/KAGUN-CR1.jpg',0,'attachment','image/jpeg',0), +(834,1,'2024-11-24 15:19:36','2024-11-24 14:19:36','','Kara textured hoops gold plated','','inherit','closed','closed','','sony-dsc-69','','','2024-11-24 15:19:54','2024-11-24 14:19:54','',545,'https://haikuatelier.com/app/uploads/2024/11/KARA-CR-g.jpg',0,'attachment','image/jpeg',0), +(835,1,'2024-11-24 15:21:03','2024-11-24 14:21:03','','Kara textured hoops silver','','inherit','closed','closed','','sony-dsc-70','','','2024-11-24 15:21:25','2024-11-24 14:21:25','',554,'https://haikuatelier.com/app/uploads/2024/11/KARA-CR-s.jpg',0,'attachment','image/jpeg',0), +(836,1,'2024-11-24 15:24:19','2024-11-24 14:24:19','','Kara ear cuff gold plated','','inherit','closed','closed','','sony-dsc-54','','','2024-11-24 15:24:36','2024-11-24 14:24:36','',447,'https://haikuatelier.com/app/uploads/2024/11/KARA-EC-vrm.jpg',0,'attachment','image/jpeg',0), +(839,1,'2024-11-25 09:11:59','2024-11-25 08:11:59','','Fuyou bracelet silver','','inherit','closed','closed','','_dsc9242','','','2024-11-25 09:12:22','2024-11-25 08:12:22','',258,'https://haikuatelier.com/app/uploads/2024/10/DSC9242.jpg',0,'attachment','image/jpeg',0), +(840,1,'2024-11-25 09:19:54','2024-11-25 08:19:54','','Fuyou bracelet silver','','inherit','closed','closed','','_dsc9237','','','2024-11-25 09:20:06','2024-11-25 08:20:06','',258,'https://haikuatelier.com/app/uploads/2024/10/DSC9237.jpg',0,'attachment','image/jpeg',0), +(845,1,'2024-11-25 09:44:31','2024-11-25 08:44:31','','Rokku Hoop silver - Lapis Lazuli','Stone: Lapis Lazuli','trash','closed','closed','','rokku-hoop-silver-lapis-lazuli__trashed','','','2025-06-17 08:25:52','2025-06-17 06:25:52','',430,'https://haikuatelier.com/?post_type=product_variation&p=845',2,'product_variation','',0), +(846,1,'2024-11-25 09:44:31','2024-11-25 08:44:31','','Rokku Hoop silver - Malachite','Stone: Malachite','trash','closed','closed','','rokku-hoop-silver-malachite__trashed','','','2025-06-17 08:25:52','2025-06-17 06:25:52','',430,'https://haikuatelier.com/?post_type=product_variation&p=846',3,'product_variation','',0), +(847,1,'2024-11-25 09:44:31','2024-11-25 08:44:31','','Rokku Hoop silver - Tiger\'s Eye','Stone: Tiger\'s Eye','trash','closed','closed','','rokku-hoop-silver-tigers-eye__trashed','','','2025-06-17 08:25:52','2025-06-17 06:25:52','',430,'https://haikuatelier.com/?post_type=product_variation&p=847',1,'product_variation','',0), +(851,1,'2024-11-25 16:26:31','2024-11-25 15:26:31','','NEWSHOP20','Code promo pour l\'ouverture du site.','publish','closed','closed','','newshop20','','','2024-12-04 00:23:03','2024-12-03 23:23:03','',0,'https://haikuatelier.com/?post_type=shop_coupon&p=851',0,'shop_coupon','',0), +(861,1,'2024-11-28 16:21:17','2024-11-28 15:21:17','','','','draft','closed','closed','','','','','2024-11-28 16:21:17','2024-11-28 15:21:17','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=861',0,'shop_order_placehold','',3), +(862,1,'2024-11-28 16:40:46','2024-11-28 15:40:46','','','','draft','closed','closed','','','','','2024-11-28 16:40:46','2024-11-28 15:40:46','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=862',0,'shop_order_placehold','',1), +(866,1,'2024-11-29 10:05:49','2024-11-29 09:05:49','','','','draft','closed','closed','','','','','2024-11-29 10:05:49','2024-11-29 09:05:49','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=866',0,'shop_order_placehold','',1), +(867,1,'2024-11-29 10:30:23','2024-11-29 09:30:23','','','','draft','closed','closed','','','','','2024-11-29 10:30:23','2024-11-29 09:30:23','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=867',0,'shop_order_placehold','',0), +(868,1,'2024-11-29 18:22:16','2024-11-29 17:22:16','','','','draft','closed','closed','','','','','2024-11-29 18:22:16','2024-11-29 17:22:16','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=868',0,'shop_order_placehold','',1), +(869,1,'2024-12-02 11:05:43','2024-12-02 10:05:43','','','','draft','closed','closed','','','','','2024-12-02 11:05:43','2024-12-02 10:05:43','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=869',0,'shop_order_placehold','',1), +(870,1,'2024-12-02 11:46:48','2024-12-02 10:46:48','','','','draft','closed','closed','','','','','2024-12-02 11:46:48','2024-12-02 10:46:48','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=870',0,'shop_order_placehold','',0), +(871,1,'2024-12-02 17:33:11','2024-12-02 16:33:11','','','','draft','closed','closed','','','','','2024-12-02 17:33:11','2024-12-02 16:33:11','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=871',0,'shop_order_placehold','',1), +(872,1,'2024-12-03 18:03:18','2024-12-03 17:03:18','','','','draft','closed','closed','','','','','2024-12-03 18:03:18','2024-12-03 17:03:18','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=872',0,'shop_order_placehold','',1), +(873,1,'2024-12-03 23:53:41','2024-12-03 22:53:41','','','','draft','closed','closed','','','','','2024-12-03 23:53:41','2024-12-03 22:53:41','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=873',0,'shop_order_placehold','',1), +(876,1,'2024-12-06 14:04:13','2024-12-06 13:04:13','','','','draft','closed','closed','','','','','2024-12-06 14:04:13','2024-12-06 13:04:13','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=876',0,'shop_order_placehold','',0), +(877,1,'2024-12-06 14:04:13','2024-12-06 13:04:13','','','','draft','closed','closed','','','','','2024-12-06 14:04:13','2024-12-06 13:04:13','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=877',0,'shop_order_placehold','',0), +(878,1,'2024-12-06 14:08:34','2024-12-06 13:08:34','','','','draft','closed','closed','','','','','2024-12-06 14:08:34','2024-12-06 13:08:34','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=878',0,'shop_order_placehold','',3), +(879,1,'2024-12-06 15:04:22','2024-12-06 14:04:22','','','','draft','closed','closed','','','','','2024-12-06 15:04:22','2024-12-06 14:04:22','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=879',0,'shop_order_placehold','',2), +(880,1,'2024-12-12 17:55:38','2024-12-12 16:55:38','','','','draft','closed','closed','','','','','2024-12-12 17:55:38','2024-12-12 16:55:38','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=880',0,'shop_order_placehold','',3), +(881,1,'2024-12-13 09:37:26','2024-12-13 08:37:26','','','','draft','closed','closed','','','','','2024-12-13 09:37:26','2024-12-13 08:37:26','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=881',0,'shop_order_placehold','',2), +(884,1,'2024-12-14 11:10:01','2024-12-14 10:10:01','','','','draft','closed','closed','','','','','2024-12-14 11:10:01','2024-12-14 10:10:01','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=884',0,'shop_order_placehold','',3), +(885,1,'2024-12-16 10:16:07','2024-12-16 09:16:07','','','','draft','closed','closed','','','','','2024-12-16 10:16:07','2024-12-16 09:16:07','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=885',0,'shop_order_placehold','',2), +(886,1,'2024-12-17 09:40:04','2024-12-17 08:40:04','','','','draft','closed','closed','','','','','2024-12-17 09:40:04','2024-12-17 08:40:04','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=886',0,'shop_order_placehold','',2), +(887,1,'2024-12-18 16:13:28','2024-12-18 15:13:28','','','','draft','closed','closed','','','','','2024-12-18 16:13:28','2024-12-18 15:13:28','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=887',0,'shop_order_placehold','',2), +(888,1,'2024-12-19 10:08:20','2024-12-19 09:08:20','','','','draft','closed','closed','','','','','2024-12-19 10:08:20','2024-12-19 09:08:20','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=888',0,'shop_order_placehold','',2), +(889,1,'2024-12-26 13:37:45','2024-12-26 12:37:45','','','','draft','closed','closed','','','','','2024-12-26 13:37:45','2024-12-26 12:37:45','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=889',0,'shop_order_placehold','',2), +(890,1,'2024-12-29 15:53:20','2024-12-29 14:53:20','','','','draft','closed','closed','','','','','2024-12-29 15:53:20','2024-12-29 14:53:20','',888,'https://haikuatelier.com/?post_type=shop_order_placehold&p=890',0,'shop_order_placehold','',0), +(891,1,'2024-12-30 11:40:43','2024-12-30 10:40:43','','','','draft','closed','closed','','','','','2024-12-30 11:40:43','2024-12-30 10:40:43','',880,'https://haikuatelier.com/?post_type=shop_order_placehold&p=891',0,'shop_order_placehold','',0), +(892,1,'2024-12-30 19:59:22','2024-12-30 18:59:22','','','','draft','closed','closed','','','','','2024-12-30 19:59:22','2024-12-30 18:59:22','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=892',0,'shop_order_placehold','',0), +(893,1,'2025-01-03 09:10:31','2025-01-03 08:10:31','','','','draft','closed','closed','','','','','2025-01-03 09:10:31','2025-01-03 08:10:31','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=893',0,'shop_order_placehold','',0), +(894,1,'2025-01-03 10:04:01','2025-01-03 09:04:01','','','','draft','closed','closed','','','','','2025-01-03 10:04:01','2025-01-03 09:04:01','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=894',0,'shop_order_placehold','',2), +(895,1,'2025-01-09 13:01:26','2025-01-09 12:01:26','','','','draft','closed','closed','','','','','2025-01-09 13:01:26','2025-01-09 12:01:26','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=895',0,'shop_order_placehold','',2), +(896,1,'2025-01-23 22:51:50','2025-01-23 21:51:50','','','','draft','closed','closed','','','','','2025-01-23 22:51:50','2025-01-23 21:51:50','',884,'https://haikuatelier.com/?post_type=shop_order_placehold&p=896',0,'shop_order_placehold','',0), +(897,1,'2025-01-29 11:32:07','2025-01-29 10:32:07','','','','draft','closed','closed','','','','','2025-01-29 11:32:07','2025-01-29 10:32:07','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=897',0,'shop_order_placehold','',2), +(898,1,'2025-01-30 09:55:09','2025-01-30 08:55:09','','','','draft','closed','closed','','','','','2025-01-30 09:55:09','2025-01-30 08:55:09','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=898',0,'shop_order_placehold','',0), +(899,1,'2025-01-30 09:57:12','2025-01-30 08:57:12','','','','draft','closed','closed','','','','','2025-01-30 09:57:12','2025-01-30 08:57:12','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=899',0,'shop_order_placehold','',2), +(900,1,'2025-02-21 20:32:16','2025-02-21 19:32:16','','','','draft','closed','closed','','','','','2025-02-21 20:32:16','2025-02-21 19:32:16','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=900',0,'shop_order_placehold','',0), +(901,1,'2025-02-23 18:08:07','2025-02-23 17:08:07','','','','draft','closed','closed','','','','','2025-02-23 18:08:07','2025-02-23 17:08:07','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=901',0,'shop_order_placehold','',1), +(902,1,'2025-02-26 13:51:14','2025-02-26 12:51:14','','','','draft','closed','closed','','','','','2025-02-26 13:51:14','2025-02-26 12:51:14','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=902',0,'shop_order_placehold','',0), +(903,1,'2025-02-26 13:51:16','2025-02-26 12:51:16','','','','draft','closed','closed','','','','','2025-02-26 13:51:16','2025-02-26 12:51:16','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=903',0,'shop_order_placehold','',2), +(904,1,'2025-03-03 08:31:50','2025-03-03 07:31:50','','','','draft','closed','closed','','','','','2025-03-03 08:31:50','2025-03-03 07:31:50','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=904',0,'shop_order_placehold','',0), +(905,1,'2025-03-03 11:45:26','2025-03-03 10:45:26','','','','draft','closed','closed','','','','','2025-03-03 11:45:26','2025-03-03 10:45:26','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=905',0,'shop_order_placehold','',2), +(906,1,'2025-03-03 12:10:15','2025-03-03 11:10:15','','','','draft','closed','closed','','','','','2025-03-03 12:10:15','2025-03-03 11:10:15','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=906',0,'shop_order_placehold','',2), +(907,1,'2025-03-05 12:04:07','2025-03-05 11:04:07','','','','draft','closed','closed','','','','','2025-03-05 12:04:07','2025-03-05 11:04:07','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=907',0,'shop_order_placehold','',2), +(908,1,'2025-03-23 22:39:51','2025-03-23 21:39:51','','','','draft','closed','closed','','','','','2025-03-23 22:39:51','2025-03-23 21:39:51','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=908',0,'shop_order_placehold','',2), +(909,1,'2025-04-07 13:50:33','2025-04-07 11:50:33','','','','draft','closed','closed','','','','','2025-04-07 13:50:33','2025-04-07 11:50:33','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=909',0,'shop_order_placehold','',0), +(910,1,'2025-04-08 13:44:22','2025-04-08 11:44:22','','','','draft','closed','closed','','','','','2025-04-08 13:44:22','2025-04-08 11:44:22','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=910',0,'shop_order_placehold','',2), +(911,1,'2025-05-05 11:14:57','2025-05-05 09:14:57','','','','draft','closed','closed','','','','','2025-05-05 11:14:57','2025-05-05 09:14:57','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=911',0,'shop_order_placehold','',0), +(912,1,'2025-05-09 11:49:40','2025-05-09 09:49:40','','','','draft','closed','closed','','','','','2025-05-09 11:49:40','2025-05-09 09:49:40','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=912',0,'shop_order_placehold','',2), +(913,1,'2025-05-09 17:41:06','2025-05-09 15:41:06','ROKKU: pebble\n\nLarge wavy ring in sterling silver with a semi precious oval stone in the center set in some 18K gold.\n
    \n
  • adjustable
  • \n
  • height 2cm
  • \n
  • handcrafted in Brussels
  • \n
\nAll our pieces are made in 80% recycled sterling silver.','Rokku Ring','','inherit','closed','closed','','168-autosave-v1','','','2025-05-09 17:41:06','2025-05-09 15:41:06','',168,'https://haikuatelier.com/?p=913',0,'revision','',0), +(919,1,'2025-05-09 21:54:35','2025-05-09 19:54:35','','','','draft','closed','closed','','','','','2025-05-09 21:54:35','2025-05-09 19:54:35','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=919',0,'shop_order_placehold','',0), +(920,1,'2025-05-09 21:56:26','2025-05-09 19:56:26','','','','draft','closed','closed','','','','','2025-05-09 21:56:26','2025-05-09 19:56:26','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=920',0,'shop_order_placehold','',0), +(921,1,'2025-05-09 21:56:27','2025-05-09 19:56:27','','','','draft','closed','closed','','','','','2025-05-09 21:56:27','2025-05-09 19:56:27','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=921',0,'shop_order_placehold','',2), +(922,1,'2025-05-09 21:56:28','2025-05-09 19:56:28','','','','draft','closed','closed','','','','','2025-05-09 21:56:28','2025-05-09 19:56:28','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=922',0,'shop_order_placehold','',2), +(923,1,'2025-06-04 13:13:31','2025-06-04 11:13:31','','','','draft','closed','closed','','','','','2025-06-04 13:13:31','2025-06-04 11:13:31','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=923',0,'shop_order_placehold','',0), +(924,1,'2025-06-05 09:44:45','2025-06-05 07:44:45','','','','draft','closed','closed','','','','','2025-06-05 09:44:45','2025-06-05 07:44:45','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=924',0,'shop_order_placehold','',2), +(925,1,'2025-06-17 08:02:32','2025-06-17 06:02:32','','BoroBoro silver earrings with honey calcite beads','','inherit','closed','closed','','boro-bo1-arg','','','2025-06-17 08:08:00','2025-06-17 06:08:00','',521,'https://haikuatelier.com/app/uploads/2024/11/BORO-BO1-arg.jpg',0,'attachment','image/jpeg',0), +(926,1,'2025-06-17 08:09:43','2025-06-17 06:09:43','','BoroBoro Bead Earrings silver - Honey Calcite','Stone: Honey Calcite','publish','closed','closed','','boroboro-bead-earrings-silver-honey-calcite','','','2025-06-17 08:10:30','2025-06-17 06:10:30','',521,'https://haikuatelier.com/?post_type=product_variation&p=926',1,'product_variation','',0), +(927,1,'2025-06-17 08:11:34','2025-06-17 06:11:34','','BoroBoro gold plated earrings with green aventurine beads','','inherit','closed','closed','','boro-bo1-or','','','2025-06-17 08:12:40','2025-06-17 06:12:40','',515,'https://haikuatelier.com/app/uploads/2024/11/BORO-BO1-or.jpg',0,'attachment','image/jpeg',0), +(928,1,'2025-06-17 08:15:25','2025-06-17 06:15:25','','Mugura trio of stud earrings','','inherit','closed','closed','','mugura-bop','','','2025-06-17 08:16:36','2025-06-17 06:16:36','',342,'https://haikuatelier.com/app/uploads/2024/10/MUGURA-BOP.jpg',0,'attachment','image/jpeg',0), +(929,1,'2025-06-17 08:19:04','2025-06-17 06:19:04','MUGURA: vine\n\nTrio of mismatched stud earrings in sterling silver and gold plated silver, mixing wavy lines and natural grey pearls.\n
    \n
  • wire width 15mm
  • \n
  • chain length 4cm
  • \n
  • handcrafted in Brussels
  • \n
\nAll our pieces are made in 80% recycled sterling silver and 24K gold plated silver.','Mugura Trio Stud Earrings','','inherit','closed','closed','','342-autosave-v1','','','2025-06-17 08:19:04','2025-06-17 06:19:04','',342,'https://haikuatelier.com/?p=929',0,'revision','',0), +(930,1,'2025-06-17 08:24:48','2025-06-17 06:24:48','Mugura: vine\n\nSmall solo hoop in sterling silver with a wavy element in gold plated silver dangling.\n
    \n
  • hoop diameter 13mm
  • \n
  • total height 3cm
  • \n
  • handcrafted in Brussels
  • \n
\nAll our jewelry are made in 80% recycled silver and 24K gold plated silver.','Mugura Solo Hoop','','inherit','closed','closed','','496-autosave-v1','','','2025-06-17 08:24:48','2025-06-17 06:24:48','',496,'https://haikuatelier.com/?p=930',0,'revision','',0), +(931,1,'2025-06-17 08:32:35','2025-06-17 06:32:35','','Mugura hoops gold plated','','inherit','closed','closed','','mugura-cr2-g','','','2025-06-17 08:34:26','2025-06-17 06:34:26','',398,'https://haikuatelier.com/app/uploads/2024/10/MUGURA-CR2-g.jpg',0,'attachment','image/jpeg',0), +(932,1,'2025-06-17 08:34:07','2025-06-17 06:34:07','','Mugura hoops silver','','inherit','closed','closed','','mugura-cr2-s','','','2025-06-17 08:34:59','2025-06-17 06:34:59','',393,'https://haikuatelier.com/app/uploads/2024/10/MUGURA-CR2-s.jpg',0,'attachment','image/jpeg',0), +(933,1,'2025-06-17 09:45:36','2025-06-17 07:45:36','Hadou : wave\n\nStud earrings with 2 wavy lines, one in sterling silver, the other in gold plated silver.\n
    \n
  • height 1cm
  • \n
  • wire thickness 1,5mm
  • \n
  • handcrafted in Brussels
  • \n
\nAll our products are made in 80% recycled silver and 24K gold plated silver.','Hadou Stud Earrings','','inherit','closed','closed','','490-autosave-v1','','','2025-06-17 09:45:36','2025-06-17 07:45:36','',490,'https://haikuatelier.com/?p=933',0,'revision','',0), +(934,1,'2025-06-17 09:45:51','2025-06-17 07:45:51','','Hadou stud earrings','','inherit','closed','closed','','hadou-bop-1','','','2025-06-17 09:46:12','2025-06-17 07:46:12','',490,'https://haikuatelier.com/app/uploads/2024/11/HADOU-BOP-1.jpg',0,'attachment','image/jpeg',0), +(935,1,'2025-06-17 09:57:48','2025-06-17 07:57:48','','Kara textured hoops silver','','inherit','closed','closed','','kara-cr-s','','','2025-06-17 09:58:04','2025-06-17 07:58:04','',554,'https://haikuatelier.com/app/uploads/2024/11/KARA-CR-s-1.jpg',0,'attachment','image/jpeg',0), +(936,1,'2025-06-17 10:18:41','2025-06-17 08:18:41','','Kara textured hoops silver','','inherit','closed','closed','','sony-dsc-7','','','2025-06-17 10:20:11','2025-06-17 08:20:11','',554,'https://haikuatelier.com/app/uploads/2024/11/DSC00650.jpg',0,'attachment','image/jpeg',0), +(937,1,'2025-06-17 10:20:05','2025-06-17 08:20:05','','Kara textured hoops silver','','inherit','closed','closed','','sony-dsc-8','','','2025-06-17 10:20:28','2025-06-17 08:20:28','',554,'https://haikuatelier.com/app/uploads/2024/11/DSC00655.jpg',0,'attachment','image/jpeg',0), +(938,1,'2025-06-17 10:22:41','2025-06-17 08:22:41','','Kara textured hoops gold plated','','inherit','closed','closed','','kara-cr-g','','','2025-06-17 10:22:58','2025-06-17 08:22:58','',545,'https://haikuatelier.com/app/uploads/2024/11/KARA-CR-g-1.jpg',0,'attachment','image/jpeg',0), +(939,1,'2025-06-17 10:27:02','2025-06-17 08:27:02','','Kara ear cuff gold plated','','inherit','closed','closed','','kara-ec-g','','','2025-06-17 10:27:19','2025-06-17 08:27:19','',447,'https://haikuatelier.com/app/uploads/2024/11/KARA-EC-g.jpg',0,'attachment','image/jpeg',0), +(940,1,'2025-06-17 10:28:05','2025-06-17 08:28:05','','Kara ear cuff silver','','inherit','closed','closed','','kara-ec-s','','','2025-06-17 10:28:36','2025-06-17 08:28:36','',435,'https://haikuatelier.com/app/uploads/2024/10/KARA-EC-s.jpg',0,'attachment','image/jpeg',0), +(941,1,'2025-06-20 19:22:20','2025-06-20 17:22:20','Uteki : raindrop\r\n\r\nRing composed of a swirling silver wire encircling an oval prehnite stone. Made in sterling silver.\r\n\r\n• wire thickness 3mm\r\n• stone 10x8cm\r\n• handcrafted in Brussels\r\n\r\nAll our products are made in 80% recycled sterling silver and 18K gold plated silver.','Uteki Ring silver','','publish','closed','closed','','uteki-ring-silver','','','2025-06-20 19:22:20','2025-06-20 17:22:20','',0,'https://haikuatelier.com/?post_type=product&p=941',0,'product','',0), +(943,1,'2025-06-18 19:31:49','2025-06-18 17:31:49','','Uteki ring in silver','','inherit','closed','closed','','sony-dsc-13','','','2025-06-18 19:32:06','2025-06-18 17:32:06','',941,'https://haikuatelier.com/app/uploads/2025/06/DSC00671.jpg',0,'attachment','image/jpeg',0), +(944,1,'2025-06-18 19:33:26','2025-06-18 17:33:26','','Uteki Ring silver - 50','Size: 50','publish','closed','closed','','uteki-ring-silver-50','','','2025-06-18 19:35:03','2025-06-18 17:35:03','',941,'https://haikuatelier.com/?post_type=product_variation&p=944',1,'product_variation','',0), +(945,1,'2025-06-18 19:33:26','2025-06-18 17:33:26','','Uteki Ring silver - 52','Size: 52','publish','closed','closed','','uteki-ring-silver-52','','','2025-06-18 19:35:03','2025-06-18 17:35:03','',941,'https://haikuatelier.com/?post_type=product_variation&p=945',2,'product_variation','',0), +(946,1,'2025-06-18 19:33:26','2025-06-18 17:33:26','','Uteki Ring silver - 54','Size: 54','publish','closed','closed','','uteki-ring-silver-54','','','2025-06-18 19:35:03','2025-06-18 17:35:03','',941,'https://haikuatelier.com/?post_type=product_variation&p=946',3,'product_variation','',0), +(947,1,'2025-06-18 19:33:26','2025-06-18 17:33:26','','Uteki Ring silver - 56','Size: 56','publish','closed','closed','','uteki-ring-silver-56','','','2025-06-18 19:35:03','2025-06-18 17:35:03','',941,'https://haikuatelier.com/?post_type=product_variation&p=947',4,'product_variation','',0), +(948,1,'2025-06-18 19:33:26','2025-06-18 17:33:26','','Uteki Ring silver - 58','Size: 58','publish','closed','closed','','uteki-ring-silver-58','','','2025-06-18 19:35:04','2025-06-18 17:35:04','',941,'https://haikuatelier.com/?post_type=product_variation&p=948',5,'product_variation','',0), +(949,1,'2025-06-18 19:33:26','2025-06-18 17:33:26','','Uteki Ring silver - 60','Size: 60','publish','closed','closed','','uteki-ring-silver-60','','','2025-06-18 19:35:04','2025-06-18 17:35:04','',941,'https://haikuatelier.com/?post_type=product_variation&p=949',6,'product_variation','',0), +(950,1,'2025-06-18 19:33:27','2025-06-18 17:33:27','','Uteki Ring silver - 62','Size: 62','publish','closed','closed','','uteki-ring-silver-62','','','2025-06-18 19:35:04','2025-06-18 17:35:04','',941,'https://haikuatelier.com/?post_type=product_variation&p=950',7,'product_variation','',0), +(951,1,'2025-06-18 19:33:27','2025-06-18 17:33:27','','Uteki Ring silver - 64','Size: 64','publish','closed','closed','','uteki-ring-silver-64','','','2025-06-18 19:35:04','2025-06-18 17:35:04','',941,'https://haikuatelier.com/?post_type=product_variation&p=951',8,'product_variation','',0), +(952,1,'2025-06-18 22:16:56','2025-06-18 20:16:56','','Uteki ring in silver','','inherit','closed','closed','','uteki-b-s-2','','','2025-06-20 19:02:08','2025-06-20 17:02:08','',941,'https://haikuatelier.com/app/uploads/2025/06/UTEKI-B-s-1.jpg',0,'attachment','image/jpeg',0), +(953,1,'2025-06-18 22:19:47','2025-06-18 20:19:47','Uteki : raindrop\r\n\r\nRing composed of a swirling silver wire encircling an oval prehnite stone. Made in gold plated sterling silver.\r\n\r\n• wire thickness 3mm\r\n• stone 10x8cm\r\n• handcrafted in Brussels\r\n\r\nAll our products are made in 80% recycled sterling silver and 18K gold plated silver.\r\n\r\n','Uteki Ring gold plated','','publish','closed','closed','','uteki-ring-gold-plated','','','2025-06-20 19:21:04','2025-06-20 17:21:04','',0,'https://haikuatelier.com/?post_type=product&p=953',0,'product','',0), +(954,1,'2025-06-18 22:19:47','2025-06-18 20:19:47','','Uteki Ring gold plated - 50','Size: 50','publish','closed','closed','','uteki-ring-silver-65','','','2025-06-18 22:24:50','2025-06-18 20:24:50','',953,'https://haikuatelier.com/?post_type=product_variation&p=954',1,'product_variation','',0), +(955,1,'2025-06-18 22:19:47','2025-06-18 20:19:47','','Uteki Ring gold plated - 52','Size: 52','publish','closed','closed','','uteki-ring-silver-66','','','2025-06-18 22:24:50','2025-06-18 20:24:50','',953,'https://haikuatelier.com/?post_type=product_variation&p=955',2,'product_variation','',0), +(956,1,'2025-06-18 22:19:47','2025-06-18 20:19:47','','Uteki Ring gold plated - 54','Size: 54','publish','closed','closed','','uteki-ring-silver-67','','','2025-06-18 22:24:50','2025-06-18 20:24:50','',953,'https://haikuatelier.com/?post_type=product_variation&p=956',3,'product_variation','',0), +(957,1,'2025-06-18 22:19:47','2025-06-18 20:19:47','','Uteki Ring gold plated - 56','Size: 56','publish','closed','closed','','uteki-ring-silver-68','','','2025-06-18 22:24:50','2025-06-18 20:24:50','',953,'https://haikuatelier.com/?post_type=product_variation&p=957',4,'product_variation','',0), +(958,1,'2025-06-18 22:19:48','2025-06-18 20:19:48','','Uteki Ring gold plated - 58','Size: 58','publish','closed','closed','','uteki-ring-silver-69','','','2025-06-18 22:24:50','2025-06-18 20:24:50','',953,'https://haikuatelier.com/?post_type=product_variation&p=958',5,'product_variation','',0), +(959,1,'2025-06-18 22:19:48','2025-06-18 20:19:48','','Uteki Ring gold plated - 60','Size: 60','publish','closed','closed','','uteki-ring-silver-70','','','2025-06-18 22:24:50','2025-06-18 20:24:50','',953,'https://haikuatelier.com/?post_type=product_variation&p=959',6,'product_variation','',0), +(960,1,'2025-06-18 22:19:48','2025-06-18 20:19:48','','Uteki Ring gold plated - 62','Size: 62','publish','closed','closed','','uteki-ring-silver-71','','','2025-06-18 22:24:50','2025-06-18 20:24:50','',953,'https://haikuatelier.com/?post_type=product_variation&p=960',7,'product_variation','',0), +(961,1,'2025-06-18 22:19:48','2025-06-18 20:19:48','','Uteki Ring gold plated - 64','Size: 64','publish','closed','closed','','uteki-ring-silver-72','','','2025-06-18 22:24:50','2025-06-18 20:24:50','',953,'https://haikuatelier.com/?post_type=product_variation&p=961',8,'product_variation','',0), +(962,1,'2025-06-18 22:20:23','2025-06-18 20:20:23','','Uteki ring in gold plated','','inherit','closed','closed','','uteki-b-g','','','2025-06-18 22:22:37','2025-06-18 20:22:37','',953,'https://haikuatelier.com/app/uploads/2025/06/UTEKI-B-g.jpg',0,'attachment','image/jpeg',0), +(963,1,'2025-06-18 22:23:24','2025-06-18 20:23:24','','Uteki ring in gold plated','','inherit','closed','closed','','sony-dsc-14','','','2025-06-18 22:23:44','2025-06-18 20:23:44','',953,'https://haikuatelier.com/app/uploads/2025/06/DSC00670.jpg',0,'attachment','image/jpeg',0), +(964,1,'2025-06-18 22:33:23','2025-06-18 20:33:23','BOROBORO: the sound of something crumbling \n\nLong asymmetrical earrings with oval shapes made of gold plated silver.\n
    \n
  • wire diameter 12mm
  • \n
  • height 4cm
  • \n
  • handcrafted in Brussels
  • \n
\nAll our pieces are made in 80% recycled sterling silver and 18K gold plated silver.','BoroBoro Long Earrings gold plated','','inherit','closed','closed','','213-autosave-v1','','','2025-06-18 22:33:23','2025-06-18 20:33:23','',213,'https://haikuatelier.com/?p=964',0,'revision','',0), +(965,1,'2025-06-18 22:35:38','2025-06-18 20:35:38','','BoroBoro asymmetrical earrings gold plated','','inherit','closed','closed','','boroboro-bo2-g','','','2025-06-18 22:36:05','2025-06-18 20:36:05','',213,'https://haikuatelier.com/app/uploads/2024/10/BOROBORO-BO2-g.jpg',0,'attachment','image/jpeg',0), +(966,1,'2025-06-18 22:37:22','2025-06-18 20:37:22','','BoroBoro asymmetrical earrings gold plated','','inherit','closed','closed','','boroboro-bo2-s','','','2025-06-18 22:37:52','2025-06-18 20:37:52','',183,'https://haikuatelier.com/app/uploads/2024/10/BOROBORO-BO2-s.jpg',0,'attachment','image/jpeg',0), +(967,1,'2025-06-18 22:38:10','2025-06-18 20:38:10','BOROBORO: the sound of something crumbling \n\nLong asymmetrical earrings with oval shapes made of sterling silver.\n
    \n
  • wire diameter 12mm
  • \n
  • height 4cm
  • \n
  • handcrafted in Brussels
  • \n
\nAll our pieces are made in 80% recycled sterling silver and 18K gold plated silver.','BoroBoro Long Earrings silver','','inherit','closed','closed','','183-autosave-v1','','','2025-06-18 22:38:10','2025-06-18 20:38:10','',183,'https://haikuatelier.com/?p=967',0,'revision','',0), +(968,1,'2025-06-18 22:43:11','2025-06-18 20:43:11','','Piasu ring in silver','','inherit','closed','closed','','piasu-b-s','','','2025-06-18 22:43:41','2025-06-18 20:43:41','',123,'https://haikuatelier.com/app/uploads/2024/09/PIASU-B-s.jpg',0,'attachment','image/jpeg',0), +(969,1,'2025-06-18 22:47:21','2025-06-18 20:47:21','','Tanemaki necklace mixing chains and pearls','','inherit','closed','closed','','sony-dsc-5','','','2025-06-18 22:48:05','2025-06-18 20:48:05','',271,'https://haikuatelier.com/app/uploads/2024/10/TANEMAKI-C-1.jpg',0,'attachment','image/jpeg',0), +(970,1,'2025-06-18 22:47:53','2025-06-18 20:47:53','TANEMAKI : seeding\n\nA necklace composed of a fluid center element with dark grey fresh water pearls on one side, and a mix of sterling silver and gold plated chains on the other side.\n
    \n
  • length 50cm to 55cm
  • \n
  • center element caliber 2cm
  • \n
  • handcrafted in Brussels
  • \n
\nAll our pieces are made in 80% recycled sterling silver and 18K gold plated silver.','Tanemaki Necklace','','inherit','closed','closed','','271-autosave-v1','','','2025-06-18 22:47:53','2025-06-18 20:47:53','',271,'https://haikuatelier.com/?p=970',0,'revision','',0), +(971,1,'2025-06-19 16:19:33','2025-06-19 14:19:33','BOROBORO: the sound of something crumbling\n\nMinimalist sterling silver ring composed of a thick round band and a movable tiger\'s eye bead.\n
    \n
  • wire diameter 25 mm
  • \n
  • bead diameter 12mm
  • \n
  • handcrafted in Brussels
  • \n
\nFind some help to chose your ring size here.\n\nAll our pieces are made in 80% recycled silver and 24K gold plated silver.','BoroBoro Bead Ring silver','','inherit','closed','closed','','625-autosave-v1','','','2025-06-19 16:19:33','2025-06-19 14:19:33','',625,'https://haikuatelier.com/?p=971',0,'revision','',0), +(972,1,'2025-06-19 16:19:34','2025-06-19 14:19:34','BOROBORO: the sound of something crumbling\n\nMinimalist gold plated ring composed of a thick round band and a movable green aventurine bead.\n
    \n
  • wire diameter 25 mm
  • \n
  • bead diameter 12mm
  • \n
  • handcrafted in Brussels
  • \n
\nFind some help to chose your ring size here.\n\nAll our pieces are made in 80% recycled silver and 24K gold plated silver.','BoroBoro Bead Ring gold plated','','inherit','closed','closed','','613-autosave-v1','','','2025-06-19 16:19:34','2025-06-19 14:19:34','',613,'https://haikuatelier.com/?p=972',0,'revision','',0), +(975,1,'2025-06-19 16:20:01','2025-06-19 14:20:01','HATTARI: bluff\n\nA bangle bracelet composed of a wide asymmetrical band in sterling silver, and a round wire in gold plated silver crossing it.\n
    \n
  • adjustable
  • \n
  • band width 2cm and wire thickness 1,5mm
  • \n
  • handcrafted in Brussels
  • \n
\nAll our pieces are made in 80% recycled sterling silver and 24K gold plated silver.','Hattari Cuff','','inherit','closed','closed','','610-autosave-v1','','','2025-06-19 16:20:01','2025-06-19 14:20:01','',610,'https://haikuatelier.com/?p=975',0,'revision','',0), +(976,1,'2025-06-19 16:20:02','2025-06-19 14:20:02','KARA: hull, shell\n\nSmall textured gold plated silver hoops.\n
    \n
  • 1cm diameter
  • \n
  • handcrafted in Brussels
  • \n
\nAll our pieces are made in 80% recycled sterling silver and 24K gold plated silver.','Kara Hoops gold plated','','inherit','closed','closed','','545-autosave-v1','','','2025-06-19 16:20:02','2025-06-19 14:20:02','',545,'https://haikuatelier.com/?p=976',0,'revision','',0), +(977,1,'2025-06-19 16:20:10','2025-06-19 14:20:10','KARA: hull, shell\n\nTextured ear cuff in sterling gold plated silver.\n
    \n
  • width 0,5cm
  • \n
  • handcrafted in Brussels
  • \n
\nAll our products are made in 80% recycled sterling silver and 24K gold plated silver.','Kara Ear Cuff gold plated','','inherit','closed','closed','','447-autosave-v1','','','2025-06-19 16:20:10','2025-06-19 14:20:10','',447,'https://haikuatelier.com/?p=977',0,'revision','',0), +(978,1,'2025-06-19 16:20:20','2025-06-19 14:20:20','MUGURA: vine\n\nMinimalist hoop earrings with thin ends going up on the lobes. In gold plated silver.\n
    \n
  • wire thickness 2mm
  • \n
  • total diametre 3cm
  • \n
  • handcrafted in Brussels
  • \n
\nAll our pieces are made in 80% recycled sterling silver and 24K gold plated silver.','Mugura Hoops gold plated','','inherit','closed','closed','','398-autosave-v1','','','2025-06-19 16:20:20','2025-06-19 14:20:20','',398,'https://haikuatelier.com/?p=978',0,'revision','',0), +(979,1,'2025-06-19 16:20:20','2025-06-19 14:20:20','MUGURA: vine\n\nMinimalist hoop earrings with thin ends going up on the lobes. In sterling silver.\n
    \n
  • wire thickness 2mm
  • \n
  • total diameter 3cm
  • \n
  • handcrafted in Brussels
  • \n
\nAll our pieces are made in 80% recycled sterling silver and 24K gold plated silver.','Mugura Hoops silver','','inherit','closed','closed','','393-autosave-v1','','','2025-06-19 16:20:20','2025-06-19 14:20:20','',393,'https://haikuatelier.com/?p=979',0,'revision','',0), +(980,1,'2025-06-19 16:20:20','2025-06-19 14:20:20','ROKKU: pebble\n\nA statement piece in sterling silver mixing cheval chain and gold plated ball chain, with a removable pendant made of droplet shaped semi precious stone secured by a clasp.\n
    \n
  • total chain length 50cm
  • \n
  • pendant height 3cm
  • \n
  • handcrafted in Brussels
  • \n
\nAll our pieces are made in 80% recycled silver and 24K gold plated silver.','Rokku Necklace','','inherit','closed','closed','','385-autosave-v1','','','2025-06-19 16:20:20','2025-06-19 14:20:20','',385,'https://haikuatelier.com/?p=980',0,'revision','',0), +(981,1,'2025-06-20 12:13:00','2025-06-20 10:13:00','','','','draft','closed','closed','','','','','2025-06-20 12:13:00','2025-06-20 10:13:00','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=981',0,'shop_order_placehold','',0), +(982,1,'2025-06-20 18:59:01','2025-06-20 16:59:01','Uteki : raindrop\r\n\r\nSnake chain necklace with a droplet shaped pendant swirling around a prehnite stone. Made in sterling silver.\r\n\r\n• total length 45cm\r\n• stone 10x8cm\r\n• handcrafted in Brussels\r\n\r\nAll our products are made in 80% recycled sterling silver and 18K gold plated silver.','Uteki Necklace silver','','publish','closed','closed','','uteki-necklace-silver','','','2025-06-20 19:25:14','2025-06-20 17:25:14','',0,'https://haikuatelier.com/?post_type=product&p=982',0,'product','',0), +(991,1,'2025-06-20 19:00:59','2025-06-20 17:00:59','','Uteki necklace in silver','','inherit','closed','closed','','uteki-c-s','','','2025-06-20 19:02:09','2025-06-20 17:02:09','',982,'https://haikuatelier.com/app/uploads/2025/06/UTEKI-C-s.jpg',0,'attachment','image/jpeg',0), +(992,1,'2025-06-20 19:05:42','2025-06-20 17:05:42','','Uteki necklaces','','inherit','closed','closed','','dsc00689','','','2025-06-20 19:06:07','2025-06-20 17:06:07','',982,'https://haikuatelier.com/app/uploads/2025/06/DSC00689.jpg',0,'attachment','image/jpeg',0), +(993,1,'2025-06-20 19:06:23','2025-06-20 17:06:23','','Uteki necklace in sterling silver','','inherit','closed','closed','','sony-dsc-10','','','2025-06-20 19:10:44','2025-06-20 17:10:44','',982,'https://haikuatelier.com/app/uploads/2025/06/DSC00684.jpg',0,'attachment','image/jpeg',0), +(994,1,'2025-06-20 19:07:53','2025-06-20 17:07:53','Uteki : raindrop\r\n\r\nSnake chain necklace with a droplet shaped pendant swirling around a prehnite stone. In gold plated silver.\r\n\r\n• total length 45cm\r\n• stone 10x8cm\r\n• handcrafted in Brussels\r\n\r\nAll our products are made in 80% recycled sterling silver and 18K gold plated silver.','Uteki Necklace gold plated','','publish','closed','closed','','uteki-necklace-gold-plated','','','2025-06-20 19:24:13','2025-06-20 17:24:13','',0,'https://haikuatelier.com/?post_type=product&p=994',0,'product','',0), +(995,1,'2025-06-20 19:08:41','2025-06-20 17:08:41','','Uteki necklace gold plated','','inherit','closed','closed','','uteki-c-g','','','2025-06-20 19:09:10','2025-06-20 17:09:10','',994,'https://haikuatelier.com/app/uploads/2025/06/UTEKI-C-g.jpg',0,'attachment','image/jpeg',0), +(996,1,'2025-06-20 19:09:52','2025-06-20 17:09:52','','Uteki necklace in gold plated silver','','inherit','closed','closed','','sony-dsc-19','','','2025-06-20 19:10:52','2025-06-20 17:10:52','',994,'https://haikuatelier.com/app/uploads/2025/06/DSC00699.jpg',0,'attachment','image/jpeg',0), +(997,1,'2025-06-21 11:54:31','2025-06-21 09:54:31','','','','draft','closed','closed','','','','','2025-06-21 11:54:31','2025-06-21 09:54:31','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=997',0,'shop_order_placehold','',1), +(998,1,'2025-06-21 14:43:50','2025-06-21 12:43:50','','','','draft','closed','closed','','','','','2025-06-21 14:43:50','2025-06-21 12:43:50','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=998',0,'shop_order_placehold','',0), +(999,1,'2025-06-21 14:54:52','2025-06-21 12:54:52','','','','draft','closed','closed','','','','','2025-06-21 14:54:52','2025-06-21 12:54:52','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=999',0,'shop_order_placehold','',0), +(1000,1,'2025-06-21 14:58:23','2025-06-21 12:58:23','','','','draft','closed','closed','','','','','2025-06-21 14:58:23','2025-06-21 12:58:23','',0,'https://haikuatelier.com/?post_type=shop_order_placehold&p=1000',0,'shop_order_placehold','',0); +/*!40000 ALTER TABLE `haikuwp_posts` ENABLE KEYS */; +UNLOCK TABLES; +commit; + +-- +-- Table structure for table `haikuwp_term_relationships` +-- + +DROP TABLE IF EXISTS `haikuwp_term_relationships`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8mb4 */; +CREATE TABLE `haikuwp_term_relationships` ( + `object_id` bigint(20) unsigned NOT NULL DEFAULT 0, + `term_taxonomy_id` bigint(20) unsigned NOT NULL DEFAULT 0, + `term_order` int(11) NOT NULL DEFAULT 0, + PRIMARY KEY (`object_id`,`term_taxonomy_id`), + KEY `term_taxonomy_id` (`term_taxonomy_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `haikuwp_term_relationships` +-- + +LOCK TABLES `haikuwp_term_relationships` WRITE; +/*!40000 ALTER TABLE `haikuwp_term_relationships` DISABLE KEYS */; +set autocommit=0; +INSERT INTO `haikuwp_term_relationships` VALUES +(1,1,0), +(1,17,0), +(1,18,0), +(13,16,0), +(13,23,0), +(14,16,0), +(14,24,0), +(15,16,0), +(15,25,0), +(16,16,0), +(16,26,0), +(17,16,0), +(17,27,0), +(18,16,0), +(18,28,0), +(19,16,0), +(19,29,0), +(72,4,0), +(72,31,0), +(72,36,0), +(72,37,0), +(72,38,0), +(72,39,0), +(72,40,0), +(72,41,0), +(72,42,0), +(72,43,0), +(72,44,0), +(102,4,0), +(102,31,0), +(102,37,0), +(102,38,0), +(102,39,0), +(102,40,0), +(102,41,0), +(102,42,0), +(102,43,0), +(102,44,0), +(102,51,0), +(113,4,0), +(113,31,0), +(113,37,0), +(113,38,0), +(113,39,0), +(113,40,0), +(113,41,0), +(113,42,0), +(113,43,0), +(113,44,0), +(113,51,0), +(123,4,0), +(123,31,0), +(123,37,0), +(123,38,0), +(123,39,0), +(123,40,0), +(123,41,0), +(123,42,0), +(123,43,0), +(123,44,0), +(123,56,0), +(133,4,0), +(133,31,0), +(133,37,0), +(133,38,0), +(133,39,0), +(133,40,0), +(133,41,0), +(133,42,0), +(133,43,0), +(133,44,0), +(133,52,0), +(144,4,0), +(144,31,0), +(144,37,0), +(144,38,0), +(144,39,0), +(144,40,0), +(144,41,0), +(144,42,0), +(144,43,0), +(144,44,0), +(144,53,0), +(155,4,0), +(155,31,0), +(155,37,0), +(155,38,0), +(155,39,0), +(155,40,0), +(155,41,0), +(155,42,0), +(155,43,0), +(155,44,0), +(155,53,0), +(168,4,0), +(168,31,0), +(168,48,0), +(168,49,0), +(168,54,0), +(183,4,0), +(183,30,0), +(183,45,0), +(183,55,0), +(183,71,0), +(183,72,0), +(202,4,0), +(202,30,0), +(202,45,0), +(202,56,0), +(202,77,0), +(202,78,0), +(213,4,0), +(213,30,0), +(213,45,0), +(213,55,0), +(213,71,0), +(213,72,0), +(240,4,0), +(240,33,0), +(240,51,0), +(240,58,0), +(240,59,0), +(246,4,0), +(246,33,0), +(246,51,0), +(246,58,0), +(246,59,0), +(251,2,0), +(251,33,0), +(251,60,0), +(258,2,0), +(258,33,0), +(258,61,0), +(261,2,0), +(261,33,0), +(261,61,0), +(263,2,0), +(263,32,0), +(263,51,0), +(268,2,0), +(268,32,0), +(268,56,0), +(271,2,0), +(271,32,0), +(271,60,0), +(274,2,0), +(274,32,0), +(274,61,0), +(285,4,0), +(285,30,0), +(285,45,0), +(285,50,0), +(285,77,0), +(285,78,0), +(288,4,0), +(288,30,0), +(288,45,0), +(288,50,0), +(288,77,0), +(288,78,0), +(306,4,0), +(306,30,0), +(306,45,0), +(306,57,0), +(306,62,0), +(306,64,0), +(312,4,0), +(312,30,0), +(312,45,0), +(312,57,0), +(312,62,0), +(312,64,0), +(318,2,0), +(318,30,0), +(318,61,0), +(325,2,0), +(325,30,0), +(325,36,0), +(328,2,0), +(328,30,0), +(328,36,0), +(338,2,0), +(338,15,0), +(338,56,0), +(342,4,0), +(342,30,0), +(342,62,0), +(342,63,0), +(342,64,0), +(342,65,0), +(342,76,0), +(385,4,0), +(385,32,0), +(385,48,0), +(385,54,0), +(385,68,0), +(385,69,0), +(393,2,0), +(393,30,0), +(393,45,0), +(393,66,0), +(393,67,0), +(398,2,0), +(398,30,0), +(398,45,0), +(398,66,0), +(398,67,0), +(430,4,0), +(430,30,0), +(430,48,0), +(430,49,0), +(430,54,0), +(430,68,0), +(433,4,0), +(433,30,0), +(433,48,0), +(433,49,0), +(433,54,0), +(433,68,0), +(435,2,0), +(435,30,0), +(435,52,0), +(447,2,0), +(447,30,0), +(447,52,0), +(490,4,0), +(490,30,0), +(490,36,0), +(490,45,0), +(490,77,0), +(490,78,0), +(496,2,0), +(496,30,0), +(496,65,0), +(515,2,0), +(515,30,0), +(515,48,0), +(515,55,0), +(515,73,0), +(521,4,0), +(521,30,0), +(521,48,0), +(521,55,0), +(521,79,0), +(535,4,0), +(535,15,0), +(535,55,0), +(535,74,0), +(535,75,0), +(545,4,0), +(545,30,0), +(545,45,0), +(545,52,0), +(545,66,0), +(554,4,0), +(554,30,0), +(554,45,0), +(554,52,0), +(554,66,0), +(610,2,0), +(610,33,0), +(610,50,0), +(613,4,0), +(613,31,0), +(613,37,0), +(613,38,0), +(613,39,0), +(613,40,0), +(613,41,0), +(613,42,0), +(613,43,0), +(613,44,0), +(613,55,0), +(625,4,0), +(625,31,0), +(625,37,0), +(625,38,0), +(625,39,0), +(625,40,0), +(625,41,0), +(625,42,0), +(625,43,0), +(625,44,0), +(625,55,0), +(766,4,0), +(766,30,0), +(766,45,0), +(766,61,0), +(766,62,0), +(766,63,0), +(941,4,0), +(941,31,0), +(941,37,0), +(941,38,0), +(941,39,0), +(941,40,0), +(941,41,0), +(941,42,0), +(941,43,0), +(941,44,0), +(941,80,0), +(941,81,0), +(953,4,0), +(953,31,0), +(953,37,0), +(953,38,0), +(953,39,0), +(953,40,0), +(953,41,0), +(953,42,0), +(953,43,0), +(953,44,0), +(953,80,0), +(982,2,0), +(982,32,0), +(982,37,0), +(982,38,0), +(982,39,0), +(982,40,0), +(982,41,0), +(982,42,0), +(982,43,0), +(982,44,0), +(982,80,0), +(994,2,0), +(994,32,0), +(994,37,0), +(994,38,0), +(994,39,0), +(994,40,0), +(994,41,0), +(994,42,0), +(994,43,0), +(994,44,0), +(994,80,0); +/*!40000 ALTER TABLE `haikuwp_term_relationships` ENABLE KEYS */; +UNLOCK TABLES; +commit; + +-- +-- Table structure for table `haikuwp_term_taxonomy` +-- + +DROP TABLE IF EXISTS `haikuwp_term_taxonomy`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8mb4 */; +CREATE TABLE `haikuwp_term_taxonomy` ( + `term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, + `term_id` bigint(20) unsigned NOT NULL DEFAULT 0, + `taxonomy` varchar(32) NOT NULL DEFAULT '', + `description` longtext NOT NULL, + `parent` bigint(20) unsigned NOT NULL DEFAULT 0, + `count` bigint(20) NOT NULL DEFAULT 0, + PRIMARY KEY (`term_taxonomy_id`), + UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`), + KEY `taxonomy` (`taxonomy`) +) ENGINE=InnoDB AUTO_INCREMENT=82 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `haikuwp_term_taxonomy` +-- + +LOCK TABLES `haikuwp_term_taxonomy` WRITE; +/*!40000 ALTER TABLE `haikuwp_term_taxonomy` DISABLE KEYS */; +set autocommit=0; +INSERT INTO `haikuwp_term_taxonomy` VALUES +(1,1,'category','',0,1), +(2,2,'product_type','',0,20), +(3,3,'product_type','',0,0), +(4,4,'product_type','',0,25), +(5,5,'product_type','',0,0), +(6,6,'product_visibility','',0,0), +(7,7,'product_visibility','',0,0), +(8,8,'product_visibility','',0,0), +(9,9,'product_visibility','',0,0), +(10,10,'product_visibility','',0,0), +(11,11,'product_visibility','',0,0), +(12,12,'product_visibility','',0,0), +(13,13,'product_visibility','',0,0), +(14,14,'product_visibility','',0,0), +(15,15,'product_cat','',0,1), +(16,16,'language','a:3:{s:6:\"locale\";s:5:\"en_GB\";s:3:\"rtl\";i:0;s:9:\"flag_code\";s:2:\"gb\";}',0,7), +(17,17,'term_language','',0,1), +(21,21,'category','',0,0), +(30,30,'product_cat','',0,22), +(31,31,'product_cat','',0,10), +(32,32,'product_cat','',0,7), +(33,33,'product_cat','',0,5), +(36,36,'collection','',0,4), +(37,37,'pa_size','',0,11), +(38,38,'pa_size','',0,11), +(39,39,'pa_size','',0,11), +(40,40,'pa_size','',0,11), +(41,41,'pa_size','',0,11), +(42,42,'pa_size','',0,11), +(43,43,'pa_size','',0,11), +(44,44,'pa_size','',0,11), +(45,45,'pa_side','',0,13), +(48,48,'pa_stone','',0,4), +(49,49,'pa_stone','',0,1), +(50,50,'collection','',0,3), +(51,51,'collection','',0,4), +(52,52,'collection','',0,5), +(53,53,'collection','',0,0), +(54,54,'collection','',0,2), +(55,55,'collection','',0,6), +(56,56,'collection','',0,4), +(57,57,'collection','',0,2), +(58,58,'pa_size','',0,1), +(59,59,'pa_size','',0,1), +(60,60,'collection','',0,2), +(61,61,'collection','',0,5), +(62,62,'pa_side','',0,4), +(63,63,'pa_side','',0,2), +(64,64,'pa_side','',0,3), +(65,65,'collection','',0,2), +(66,66,'pa_side','',0,4), +(67,67,'collection','',0,2), +(68,68,'pa_stone','',0,1), +(69,69,'pa_stone','',0,1), +(70,70,'pa_stone','',0,0), +(71,71,'pa_side','',0,2), +(72,72,'pa_side','',0,2), +(73,73,'pa_stone','',0,1), +(74,74,'pa_stone','',0,0), +(75,75,'pa_stone','',0,0), +(76,76,'pa_side','',0,1), +(77,77,'pa_side','',0,4), +(78,78,'pa_side','',0,4), +(79,79,'pa_stone','',0,1), +(80,80,'collection','',0,4), +(81,81,'product_tag','',0,1); +/*!40000 ALTER TABLE `haikuwp_term_taxonomy` ENABLE KEYS */; +UNLOCK TABLES; +commit; + +-- +-- Table structure for table `haikuwp_termmeta` +-- + +DROP TABLE IF EXISTS `haikuwp_termmeta`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8mb4 */; +CREATE TABLE `haikuwp_termmeta` ( + `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, + `term_id` bigint(20) unsigned NOT NULL DEFAULT 0, + `meta_key` varchar(255) DEFAULT NULL, + `meta_value` longtext DEFAULT NULL, + PRIMARY KEY (`meta_id`), + KEY `term_id` (`term_id`), + KEY `meta_key` (`meta_key`(191)) +) ENGINE=InnoDB AUTO_INCREMENT=60 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `haikuwp_termmeta` +-- + +LOCK TABLES `haikuwp_termmeta` WRITE; +/*!40000 ALTER TABLE `haikuwp_termmeta` DISABLE KEYS */; +set autocommit=0; +INSERT INTO `haikuwp_termmeta` VALUES +(1,16,'_pll_strings_translations','a:2:{i:0;a:2:{i:0;s:5:\"Y-m-d\";i:1;s:5:\"Y-m-d\";}i:1;a:2:{i:0;s:3:\"H:i\";i:1;s:3:\"H:i\";}}'), +(3,15,'display_type',''), +(4,15,'thumbnail_id','0'), +(5,30,'order','1'), +(6,30,'display_type',''), +(7,30,'thumbnail_id','0'), +(8,31,'order','2'), +(9,31,'display_type',''), +(10,31,'thumbnail_id','0'), +(11,32,'order','3'), +(12,32,'display_type',''), +(13,32,'thumbnail_id','0'), +(14,33,'order','4'), +(15,33,'display_type',''), +(16,33,'thumbnail_id','0'), +(20,15,'order','5'), +(21,30,'product_count_product_cat','22'), +(22,31,'product_count_product_cat','10'), +(23,32,'product_count_product_cat','7'), +(24,33,'product_count_product_cat','5'), +(25,15,'product_count_product_cat','1'), +(28,37,'order','0'), +(29,38,'order','0'), +(30,39,'order','0'), +(31,40,'order','0'), +(32,41,'order','0'), +(33,42,'order','0'), +(34,43,'order','0'), +(35,44,'order','0'), +(36,45,'order','0'), +(39,48,'order','0'), +(40,49,'order','0'), +(41,58,'order','0'), +(42,59,'order','0'), +(43,62,'order','0'), +(44,63,'order','0'), +(45,64,'order','0'), +(46,66,'order','0'), +(47,68,'order','0'), +(48,69,'order','0'), +(49,70,'order','0'), +(50,71,'order','0'), +(51,72,'order','0'), +(52,73,'order','0'), +(53,74,'order','0'), +(54,75,'order','0'), +(55,76,'order','0'), +(56,77,'order','0'), +(57,78,'order','0'), +(58,79,'order','0'), +(59,81,'product_count_product_tag','1'); +/*!40000 ALTER TABLE `haikuwp_termmeta` ENABLE KEYS */; +UNLOCK TABLES; +commit; + +-- +-- Table structure for table `haikuwp_terms` +-- + +DROP TABLE IF EXISTS `haikuwp_terms`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8mb4 */; +CREATE TABLE `haikuwp_terms` ( + `term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, + `name` varchar(200) NOT NULL DEFAULT '', + `slug` varchar(200) NOT NULL DEFAULT '', + `term_group` bigint(10) NOT NULL DEFAULT 0, + PRIMARY KEY (`term_id`), + KEY `slug` (`slug`(191)), + KEY `name` (`name`(191)) +) ENGINE=InnoDB AUTO_INCREMENT=82 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `haikuwp_terms` +-- + +LOCK TABLES `haikuwp_terms` WRITE; +/*!40000 ALTER TABLE `haikuwp_terms` DISABLE KEYS */; +set autocommit=0; +INSERT INTO `haikuwp_terms` VALUES +(1,'Non classé','non-classe',0), +(2,'simple','simple',0), +(3,'grouped','grouped',0), +(4,'variable','variable',0), +(5,'external','external',0), +(6,'exclude-from-search','exclude-from-search',0), +(7,'exclude-from-catalog','exclude-from-catalog',0), +(8,'featured','featured',0), +(9,'outofstock','outofstock',0), +(10,'rated-1','rated-1',0), +(11,'rated-2','rated-2',0), +(12,'rated-3','rated-3',0), +(13,'rated-4','rated-4',0), +(14,'rated-5','rated-5',0), +(15,'Others','others',0), +(16,'English','en',0), +(17,'English','pll_en',0), +(21,'Uncategorized','uncategorized-fr',0), +(30,'Earrings','earrings',0), +(31,'Rings','rings',0), +(32,'Necklaces','necklaces',0), +(33,'Bracelets','bracelets',0), +(36,'Hadou','hadou',0), +(37,'50','50',0), +(38,'52','52',0), +(39,'54','54',0), +(40,'56','56',0), +(41,'58','58',0), +(42,'60','60',0), +(43,'62','62',0), +(44,'64','64',0), +(45,'pair','pair',0), +(48,'Tiger\'s Eye','tiger-eye',0), +(49,'Malachite','malachite',0), +(50,'Hattari','hattari',0), +(51,'Ikkan','ikkan',0), +(52,'Kara','kara',0), +(53,'Kishou','kishou',0), +(54,'Rokku','rokku',0), +(55,'BoroBoro','boroboro',0), +(56,'Piasu','piasu',0), +(57,'Tamanori','tamanori',0), +(58,'Size 1','size-1',0), +(59,'Size 2','size-2',0), +(60,'Tanemaki','tanemaki',0), +(61,'Fuyou','fuyou',0), +(62,'long','long',0), +(63,'medium','medium',0), +(64,'short','short',0), +(65,'Kagun','kagun',0), +(66,'one earring','one',0), +(67,'Mugura','mugura',0), +(68,'Lapis Lazuli','lapis-lazuli',0), +(69,'Green Jaspe','green-jaspe',0), +(70,'Hawk\'s Eye','hawk-eye',0), +(71,'one element earring','one-element-side',0), +(72,'two elements earring','two-elements-side',0), +(73,'Green Aventurine','green-aventurine',0), +(74,'Crystal','crystal',0), +(75,'Jade','jade',0), +(76,'all','all',0), +(77,'left side','left-side',0), +(78,'right side','right-side',0), +(79,'Honey Calcite','honey-calcite',0), +(80,'Uteki','uteki',0), +(81,'Uteki','uteki',0); +/*!40000 ALTER TABLE `haikuwp_terms` ENABLE KEYS */; +UNLOCK TABLES; +commit; + +-- +-- Table structure for table `haikuwp_usermeta` +-- + +DROP TABLE IF EXISTS `haikuwp_usermeta`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8mb4 */; +CREATE TABLE `haikuwp_usermeta` ( + `umeta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, + `user_id` bigint(20) unsigned NOT NULL DEFAULT 0, + `meta_key` varchar(255) DEFAULT NULL, + `meta_value` longtext DEFAULT NULL, + PRIMARY KEY (`umeta_id`), + KEY `user_id` (`user_id`), + KEY `meta_key` (`meta_key`(191)) +) ENGINE=InnoDB AUTO_INCREMENT=241 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `haikuwp_usermeta` +-- + +LOCK TABLES `haikuwp_usermeta` WRITE; +/*!40000 ALTER TABLE `haikuwp_usermeta` DISABLE KEYS */; +set autocommit=0; +INSERT INTO `haikuwp_usermeta` VALUES +(1,1,'nickname','gcch'), +(2,1,'first_name',''), +(3,1,'last_name',''), +(4,1,'description',''), +(5,1,'rich_editing','true'), +(6,1,'syntax_highlighting','true'), +(7,1,'comment_shortcuts','false'), +(8,1,'admin_color','blue'), +(9,1,'use_ssl','0'), +(10,1,'show_admin_bar_front','false'), +(11,1,'locale','en_GB'), +(12,1,'haikuwp_capabilities','a:1:{s:13:\"administrator\";b:1;}'), +(13,1,'haikuwp_user_level','10'), +(14,1,'dismissed_wp_pointers',''), +(15,1,'show_welcome_panel','1'), +(17,1,'haikuwp_dashboard_quick_press_last_post_id','5'), +(18,1,'community-events-location','a:1:{s:2:\"ip\";s:12:\"77.109.115.0\";}'), +(19,1,'_woocommerce_tracks_anon_id','woo:d4XJVDeUWJmLLIBoynrGwlsO'), +(21,1,'last_update','1746806847'), +(22,1,'woocommerce_admin_task_list_tracked_started_tasks','{\"customize-store\":1,\"products\":1}'), +(23,1,'wc_last_active','1750636800'), +(24,1,'meta-box-order_product','a:4:{s:25:\"carbon_fields_after_title\";s:0:\"\";s:4:\"side\";s:84:\"submitdiv,slugdiv,postimagediv,product_catdiv,tagsdiv-collection,tagsdiv-product_tag\";s:6:\"normal\";s:89:\"carbon_fields_container_products_details,postexcerpt,postcustom,woocommerce-product-data,\";s:8:\"advanced\";s:0:\"\";}'), +(25,1,'edit_page_per_page','20'), +(26,1,'haikuwp_user-settings','posts_list_mode=excerpt&libraryContent=browse&editor=html&hidetb=0'), +(27,1,'haikuwp_user-settings-time','1732442434'), +(30,1,'woocommerce_admin_variable_product_tour_shown','\"yes\"'), +(34,1,'billing_first_name',''), +(35,1,'billing_last_name',''), +(36,1,'billing_company',''), +(37,1,'billing_address_1',''), +(38,1,'billing_address_2',''), +(39,1,'billing_city',''), +(40,1,'billing_postcode',''), +(41,1,'billing_country',''), +(42,1,'billing_state',''), +(43,1,'billing_phone',''), +(44,1,'billing_email','g7c'), +(45,1,'shipping_first_name',''), +(46,1,'shipping_last_name',''), +(47,1,'shipping_company',''), +(48,1,'shipping_address_1',''), +(49,1,'shipping_address_2',''), +(50,1,'shipping_city',''), +(51,1,'shipping_postcode',''), +(52,1,'shipping_country',''), +(53,1,'shipping_state',''), +(54,1,'shipping_phone',''), +(57,1,'wc_marketplace_suggestions_dismissed_suggestions','a:4:{i:0;s:28:\"product-edit-name-your-price\";i:1;s:31:\"product-edit-min-max-quantities\";i:2;s:42:\"product-edit-woocommerce-one-page-checkout\";i:3;s:29:\"product-edit-variation-images\";}'), +(58,1,'closedpostboxes_product','a:1:{i:0;s:11:\"postexcerpt\";}'), +(59,1,'metaboxhidden_product','a:2:{i:0;s:11:\"postexcerpt\";i:1;s:10:\"postcustom\";}'), +(61,1,'screen_layout_product','2'), +(63,1,'manageedit-productcolumnshidden','a:1:{i:0;s:8:\"featured\";}'), +(64,1,'edit_product_per_page','100'), +(68,1,'dismissed_uploads_directory_is_unprotected_notice','1'), +(69,1,'dismissed_update_notice','1'), +(81,2,'nickname','manon'), +(82,2,'first_name','Manon'), +(83,2,'last_name','DÉSIGNÈRE'), +(84,2,'description',''), +(85,2,'rich_editing','true'), +(86,2,'syntax_highlighting','true'), +(87,2,'comment_shortcuts','false'), +(88,2,'admin_color','fresh'), +(89,2,'use_ssl','0'), +(90,2,'show_admin_bar_front','true'), +(91,2,'locale','en_GB'), +(92,2,'haikuwp_capabilities','a:1:{s:13:\"administrator\";b:1;}'), +(93,2,'haikuwp_user_level','10'), +(94,2,'dismissed_wp_pointers',''), +(95,2,'session_tokens','a:1:{s:64:\"1ad366a00acd8c673142409995104b04727c5eb911714d647d4d47faedf10564\";a:4:{s:10:\"expiration\";i:1730208242;s:2:\"ip\";s:13:\"81.164.20.154\";s:2:\"ua\";s:117:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36\";s:5:\"login\";i:1728998642;}}'), +(96,2,'wc_last_active','1730160000'), +(98,2,'_woocommerce_tracks_anon_id','woo:tTnslNIiEvD9zC3nQTmFxTO7'), +(99,2,'meta-box-order_product','a:3:{s:4:\"side\";s:84:\"submitdiv,postimagediv,woocommerce-product-images,product_catdiv,tagsdiv-product_tag\";s:6:\"normal\";s:55:\"woocommerce-product-data,postcustom,slugdiv,postexcerpt\";s:8:\"advanced\";s:0:\"\";}'), +(102,2,'haikuwp_user-settings','editor=tinymce&libraryContent=browse'), +(103,2,'haikuwp_user-settings-time','1727711511'), +(104,2,'closedpostboxes_product','a:1:{i:0;s:19:\"tagsdiv-product_tag\";}'), +(105,2,'metaboxhidden_product','a:4:{i:0;s:40:\"carbon_fields_container_products_details\";i:1;s:10:\"postcustom\";i:2;s:7:\"slugdiv\";i:3;s:11:\"postexcerpt\";}'), +(106,2,'last_update','1728072417'), +(107,2,'woocommerce_admin_variable_product_tour_shown','yes'), +(110,1,'session_tokens','a:4:{s:64:\"7ce6c55b752fef3b23c8c7f9b55f7eb29c10d8d7fac9a010c4faf918995ee144\";a:4:{s:10:\"expiration\";i:1751013467;s:2:\"ip\";s:13:\"77.109.115.21\";s:2:\"ua\";s:70:\"Mozilla/5.0 (X11; Linux x86_64; rv:139.0) Gecko/20100101 Firefox/139.0\";s:5:\"login\";i:1749803867;}s:64:\"7442ff0072852e0276a27979236f42bf0a9ae8f5b495655e919425e17ad2670b\";a:4:{s:10:\"expiration\";i:1751349593;s:2:\"ip\";s:13:\"77.109.115.21\";s:2:\"ua\";s:117:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/127.0.0.0 Safari/537.36\";s:5:\"login\";i:1750139993;}s:64:\"1178a94ed008f2f2c44a1f64bd7dd2e12a4be70db960411987316a493ba170e4\";a:4:{s:10:\"expiration\";i:1751623733;s:2:\"ip\";s:13:\"77.109.115.21\";s:2:\"ua\";s:70:\"Mozilla/5.0 (X11; Linux x86_64; rv:139.0) Gecko/20100101 Firefox/139.0\";s:5:\"login\";i:1750414133;}s:64:\"ee6d517ed4be27bf6ee736832a6acb82c200df72a27f021c8a4c5b22756a6d4e\";a:4:{s:10:\"expiration\";i:1751895169;s:2:\"ip\";s:13:\"77.109.115.21\";s:2:\"ua\";s:70:\"Mozilla/5.0 (X11; Linux x86_64; rv:139.0) Gecko/20100101 Firefox/139.0\";s:5:\"login\";i:1750685569;}}'), +(126,1,'woocommerce_admin_homepage_stats','{\"installJetpackDismissed\":true}'), +(128,1,'managewoocommerce_page_wc-orderscolumnshidden','a:0:{}'), +(129,1,'edit_shop_order_per_page','20'), +(132,1,'roc_dismissed_wc_pro_notice','1'), +(146,1,'closedpostboxes_woocommerce_page_wc-orders','a:1:{i:0;s:12:\"wms_meta_box\";}'), +(147,1,'metaboxhidden_woocommerce_page_wc-orders','a:0:{}'), +(155,1,'wp_mail_smtp_pro_banner_dismissed','1'), +(165,1,'_new_email','a:2:{s:4:\"hash\";s:32:\"bb75df9dea643dd96634d2474f715f58\";s:8:\"newemail\";s:17:\"g7colin@gmail.com\";}'), +(168,1,'closedpostboxes_dashboard','a:1:{i:0;s:32:\"wp_mail_smtp_reports_widget_lite\";}'), +(169,1,'metaboxhidden_dashboard','a:0:{}'), +(184,1,'roc_dismissed_pro_release_notice','1'), +(220,1,'woocommerce_admin_dashboard_chart_interval','month'), +(222,1,'meta-box-order_woocommerce_page_wc-orders','a:3:{s:4:\"side\";s:62:\"woocommerce-order-notes,woocommerce-order-actions,wms_meta_box\";s:6:\"normal\";s:87:\"woocommerce-order-data,woocommerce-order-items,woocommerce-order-downloads,order_custom\";s:8:\"advanced\";s:0:\"\";}'), +(237,1,'_woocommerce_persistent_cart_1','a:1:{s:4:\"cart\";a:2:{s:32:\"b38f02426820647e98661a84bdebf520\";a:11:{s:3:\"key\";s:32:\"b38f02426820647e98661a84bdebf520\";s:10:\"product_id\";i:625;s:12:\"variation_id\";i:630;s:9:\"variation\";a:1:{s:17:\"attribute_pa_size\";s:2:\"58\";}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"d0a6a0d675df86860b86732d58c0f82d\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:65;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:65;s:8:\"line_tax\";d:0;}s:32:\"934815ad542a4a7c5e8a2dfa04fea9f5\";a:11:{s:3:\"key\";s:32:\"934815ad542a4a7c5e8a2dfa04fea9f5\";s:10:\"product_id\";i:994;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:100;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:100;s:8:\"line_tax\";d:0;}}}'); +/*!40000 ALTER TABLE `haikuwp_usermeta` ENABLE KEYS */; +UNLOCK TABLES; +commit; + +-- +-- Table structure for table `haikuwp_users` +-- + +DROP TABLE IF EXISTS `haikuwp_users`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8mb4 */; +CREATE TABLE `haikuwp_users` ( + `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, + `user_login` varchar(60) NOT NULL DEFAULT '', + `user_pass` varchar(255) NOT NULL DEFAULT '', + `user_nicename` varchar(50) NOT NULL DEFAULT '', + `user_email` varchar(100) NOT NULL DEFAULT '', + `user_url` varchar(100) NOT NULL DEFAULT '', + `user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + `user_activation_key` varchar(255) NOT NULL DEFAULT '', + `user_status` int(11) NOT NULL DEFAULT 0, + `display_name` varchar(250) NOT NULL DEFAULT '', + PRIMARY KEY (`ID`), + KEY `user_login_key` (`user_login`), + KEY `user_nicename` (`user_nicename`), + KEY `user_email` (`user_email`) +) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `haikuwp_users` +-- + +LOCK TABLES `haikuwp_users` WRITE; +/*!40000 ALTER TABLE `haikuwp_users` DISABLE KEYS */; +set autocommit=0; +INSERT INTO `haikuwp_users` VALUES +(1,'gcch','$wp$2y$10$WJwlILNX75DzDtQBsjcRJuFWaQFIgpzWWYKm0Qj0FsAfZt8kJRtiu','gcch','contact@gcch.fr','https://haikuatelier.fr.ddev.site/wp','2024-08-04 20:10:39','',0,'gcch'), +(2,'manon','$2y$10$PQ3e05y6ZdzN40jk.1DHBuQeRiN5nw9QA0pghx6/AeJJfhqv1AcRy','manon','haiku.atelier@gmail.com','https://haikuatelier.com','2024-09-25 06:10:56','',0,'Manon DÉSIGNÈRE'); +/*!40000 ALTER TABLE `haikuwp_users` ENABLE KEYS */; +UNLOCK TABLES; +commit; + +-- +-- Table structure for table `haikuwp_wc_admin_note_actions` +-- + +DROP TABLE IF EXISTS `haikuwp_wc_admin_note_actions`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8mb4 */; +CREATE TABLE `haikuwp_wc_admin_note_actions` ( + `action_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, + `note_id` bigint(20) unsigned NOT NULL, + `name` varchar(255) NOT NULL, + `label` varchar(255) NOT NULL, + `query` longtext NOT NULL, + `status` varchar(255) NOT NULL, + `actioned_text` varchar(255) NOT NULL, + `nonce_action` varchar(255) DEFAULT NULL, + `nonce_name` varchar(255) DEFAULT NULL, + PRIMARY KEY (`action_id`), + KEY `note_id` (`note_id`) +) ENGINE=InnoDB AUTO_INCREMENT=580 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `haikuwp_wc_admin_note_actions` +-- + +LOCK TABLES `haikuwp_wc_admin_note_actions` WRITE; +/*!40000 ALTER TABLE `haikuwp_wc_admin_note_actions` DISABLE KEYS */; +set autocommit=0; +INSERT INTO `haikuwp_wc_admin_note_actions` VALUES +(1,1,'notify-refund-returns-page','Edit page','https://haikuatelier.fr.ddev.site/wp/wp-admin/post.php?post=11&action=edit','actioned','',NULL,NULL), +(86,59,'connect','Connecter','?page=wc-addons§ion=helper','unactioned','',NULL,NULL), +(424,61,'learn-more','Learn more','https://woocommerce.com/mobile/?utm_medium=product','actioned','',NULL,NULL), +(428,4,'learn-more','Learn more','https://docs.woocommerce.com/document/woocommerce-shipping-and-tax/?utm_source=inbox','unactioned','',NULL,NULL), +(429,5,'learn-more','Learn more','https://woocommerce.com/posts/ecommerce-shipping-solutions-guide/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more','actioned','',NULL,NULL), +(430,6,'optimizing-the-checkout-flow','Learn more','https://woocommerce.com/posts/optimizing-woocommerce-checkout?utm_source=inbox_note&utm_medium=product&utm_campaign=optimizing-the-checkout-flow','actioned','',NULL,NULL), +(431,7,'qualitative-feedback-from-new-users','Share feedback','https://automattic.survey.fm/wc-pay-new','actioned','',NULL,NULL), +(432,8,'share-feedback','Share feedback','http://automattic.survey.fm/paypal-feedback','unactioned','',NULL,NULL), +(434,10,'update-wc-subscriptions-3-0-15','View latest version','https://haikuatelier.fr.ddev.site/wp/wp-admin/&page=wc-addons§ion=helper','actioned','',NULL,NULL), +(435,11,'update-wc-core-5-4-0','How to update WooCommerce','https://docs.woocommerce.com/document/how-to-update-woocommerce/','actioned','',NULL,NULL), +(436,14,'ppxo-pps-install-paypal-payments-1','View upgrade guide','https://docs.woocommerce.com/document/woocommerce-paypal-payments/paypal-payments-upgrade-guide/','actioned','',NULL,NULL), +(437,15,'ppxo-pps-install-paypal-payments-2','View upgrade guide','https://docs.woocommerce.com/document/woocommerce-paypal-payments/paypal-payments-upgrade-guide/','actioned','',NULL,NULL), +(438,16,'learn-more','Learn more','https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more','unactioned','',NULL,NULL), +(439,16,'dismiss','Dismiss','','actioned','',NULL,NULL), +(440,17,'learn-more','Learn more','https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more','unactioned','',NULL,NULL), +(441,17,'dismiss','Dismiss','','actioned','',NULL,NULL), +(442,18,'learn-more','Learn more','https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more','unactioned','',NULL,NULL), +(443,18,'dismiss','Dismiss','','actioned','',NULL,NULL), +(444,19,'learn-more','Learn more','https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more','unactioned','',NULL,NULL), +(445,19,'dismiss','Dismiss','','actioned','',NULL,NULL), +(447,21,'learn-more','Learn more','https://developer.woocommerce.com/2022/03/10/woocommerce-3-5-10-6-3-1-security-releases/','unactioned','',NULL,NULL), +(448,21,'woocommerce-core-paypal-march-2022-dismiss','Dismiss','','actioned','',NULL,NULL), +(449,22,'learn-more','Learn more','https://developer.woocommerce.com/2022/03/10/woocommerce-3-5-10-6-3-1-security-releases/','unactioned','',NULL,NULL), +(450,22,'dismiss','Dismiss','','actioned','',NULL,NULL), +(452,24,'store_setup_survey_survey_q2_2022_share_your_thoughts','Tell us how it’s going','https://automattic.survey.fm/store-setup-survey-2022','actioned','',NULL,NULL), +(453,25,'needs-update-eway-payment-gateway-rin-action-button-2022-12-20','See available updates','https://haikuatelier.fr.ddev.site/wp/wp-admin/update-core.php','unactioned','',NULL,NULL), +(454,25,'needs-update-eway-payment-gateway-rin-dismiss-button-2022-12-20','Dismiss','#','actioned','',NULL,NULL), +(455,26,'updated-eway-payment-gateway-rin-action-button-2022-12-20','See all updates','https://haikuatelier.fr.ddev.site/wp/wp-admin/update-core.php','unactioned','',NULL,NULL), +(456,26,'updated-eway-payment-gateway-rin-dismiss-button-2022-12-20','Dismiss','#','actioned','',NULL,NULL), +(457,27,'share-navigation-survey-feedback','Share feedback','https://automattic.survey.fm/new-ecommerce-plan-navigation','actioned','',NULL,NULL), +(458,28,'woopay-beta-merchantrecruitment-activate-04MAY23','Activate WooPay','https://haikuatelier.fr.ddev.site/wp/wp-admin/admin.php?page=wc-settings&tab=checkout§ion=woocommerce_payments&method=platform_checkout','actioned','',NULL,NULL), +(459,28,'woopay-beta-merchantrecruitment-activate-learnmore-04MAY23','Learn More','https://woocommerce.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-activate-learnmore-04MAY23','unactioned','',NULL,NULL), +(460,29,'woocommerce-wcpay-march-2023-update-needed-button','See Blog Post','https://developer.woocommerce.com/2023/03/23/critical-vulnerability-detected-in-woocommerce-payments-what-you-need-to-know','unactioned','',NULL,NULL), +(461,29,'woocommerce-wcpay-march-2023-update-needed-dismiss-button','Dismiss','#','actioned','',NULL,NULL), +(463,31,'extension-settings','See available updates','https://haikuatelier.fr.ddev.site/wp/wp-admin/update-core.php','unactioned','',NULL,NULL), +(464,31,'dismiss','Dismiss','#','actioned','',NULL,NULL), +(465,32,'woopay-beta-merchantrecruitment-update-WCPay-04MAY23','Update WooCommerce Payments','https://haikuatelier.fr.ddev.site/wp/wp-admin/plugins.php?plugin_status=all','unactioned','',NULL,NULL), +(466,32,'woopay-beta-merchantrecruitment-update-activate-04MAY23','Activate WooPay','https://haikuatelier.fr.ddev.site/wp/wp-admin/admin.php?page=wc-settings&tab=checkout§ion=woocommerce_payments&method=platform_checkout','actioned','',NULL,NULL), +(467,33,'woopay-beta-existingmerchants-noaction-documentation-27APR23','Documentation','https://woocommerce.com/document/woopay-merchant-documentation/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-existingmerchants-noaction-documentation-27APR23','actioned','',NULL,NULL), +(468,34,'woopay-beta-existingmerchants-update-WCPay-27APR23','Update WooCommerce Payments','https://haikuatelier.fr.ddev.site/wp/wp-admin/plugins.php?plugin_status=all','actioned','',NULL,NULL), +(469,35,'woopay-beta-merchantrecruitment-short-activate-04MAY23','Activate WooPay','https://haikuatelier.fr.ddev.site/wp/wp-admin/admin.php?page=wc-settings&tab=checkout§ion=woocommerce_payments&method=platform_checkout','actioned','',NULL,NULL), +(470,35,'woopay-beta-merchantrecruitment-short-activate-learnmore-04MAY23','Learn More','https://woocommerce.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-04MAY23','actioned','',NULL,NULL), +(471,36,'woopay-beta-merchantrecruitment-short-update-WCPay-04MAY23','Update WooCommerce Payments','https://haikuatelier.fr.ddev.site/wp/wp-admin/plugins.php?plugin_status=all','unactioned','',NULL,NULL), +(472,36,'woopay-beta-merchantrecruitment-short-update-activate-04MAY23','Activate WooPay','https://haikuatelier.fr.ddev.site/wp/wp-admin/admin.php?page=wc-settings&tab=checkout§ion=woocommerce_payments&method=platform_checkout','actioned','',NULL,NULL), +(473,37,'woopay-beta-merchantrecruitment-short-activate-06MAY23-TESTA','Activate WooPay Test A','https://haikuatelier.fr.ddev.site/wp/wp-admin/admin.php?page=wc-settings&tab=checkout§ion=woocommerce_payments&method=platform_checkout','unactioned','',NULL,NULL), +(474,37,'woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTA','Learn More','https://woocommerce.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTA','unactioned','',NULL,NULL), +(475,38,'woopay-beta-merchantrecruitment-short-activate-06MAY23-TESTB','Activate WooPay Test B','https://haikuatelier.fr.ddev.site/wp/wp-admin/admin.php?page=wc-settings&tab=checkout§ion=woocommerce_payments&method=platform_checkout','unactioned','',NULL,NULL), +(476,38,'woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTA','Learn More','https://woocommerce.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTA','unactioned','',NULL,NULL), +(477,39,'woopay-beta-merchantrecruitment-short-activate-06MAY23-TESTC','Activate WooPay Test C','https://haikuatelier.fr.ddev.site/wp/wp-admin/admin.php?page=wc-settings&tab=checkout§ion=woocommerce_payments&method=platform_checkout','unactioned','',NULL,NULL), +(478,39,'woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTC','Learn More','https://woocommerce.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTC','unactioned','',NULL,NULL), +(479,40,'woopay-beta-merchantrecruitment-short-activate-06MAY23-TESTD','Activate WooPay Test D','https://haikuatelier.fr.ddev.site/wp/wp-admin/admin.php?page=wc-settings&tab=checkout§ion=woocommerce_payments&method=platform_checkout','unactioned','',NULL,NULL), +(480,40,'woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTD','Learn More','https://woocommerce.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTD','unactioned','',NULL,NULL), +(481,41,'woopay-beta-merchantrecruitment-short-activate-button-09MAY23','Activate WooPay','https://haikuatelier.fr.ddev.site/wp/wp-admin/admin.php?page=wc-settings&tab=checkout§ion=woocommerce_payments&method=platform_checkout','unactioned','',NULL,NULL), +(482,41,'woopay-beta-merchantrecruitment-short-activate-learnmore-button2-09MAY23','Learn More','https://woocommerce.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-button2-09MAY23','unactioned','',NULL,NULL), +(483,42,'woopay-beta-merchantrecruitment-short-update-WCPay-09MAY23','Update WooCommerce Payments','https://haikuatelier.fr.ddev.site/wp/wp-admin/plugins.php?plugin_status=all','unactioned','',NULL,NULL), +(484,42,'woopay-beta-merchantrecruitment-short-update-activate-09MAY23','Activate WooPay','https://haikuatelier.fr.ddev.site/wp/wp-admin/admin.php?page=wc-settings&tab=checkout§ion=woocommerce_payments&method=platform_checkout','unactioned','',NULL,NULL), +(487,44,'woocommerce-WCReturnsWarranty-June-2023-updated-needed','See available updates','https://haikuatelier.fr.ddev.site/wp/wp-admin/plugins.php?plugin_status=all','unactioned','',NULL,NULL), +(488,44,'woocommerce-WCReturnsWarranty-June-2023-updated-needed','Dismiss','#','actioned','',NULL,NULL), +(489,45,'woocommerce-WCOPC-June-2023-updated-needed','See available updates','https://haikuatelier.fr.ddev.site/wp/wp-admin/plugins.php?plugin_status=all','actioned','',NULL,NULL), +(490,45,'woocommerce-WCOPC-June-2023-updated-needed','Dismiss','https://haikuatelier.fr.ddev.site/wp/wp-admin/#','actioned','',NULL,NULL), +(491,46,'woocommerce-WCGC-July-2023-update-needed','See available updates','https://haikuatelier.fr.ddev.site/wp/wp-admin/plugins.php?plugin_status=all','unactioned','',NULL,NULL), +(492,46,'woocommerce-WCGC-July-2023-update-needed','Dismiss','#','actioned','',NULL,NULL), +(493,47,'learn-more','Learn more','https://woocommerce.com/document/fedex/?utm_medium=product&utm_source=inbox_note&utm_campaign=learn-more#july-2023-api-outage','unactioned','',NULL,NULL), +(494,48,'plugin-list','See available updates','https://haikuatelier.fr.ddev.site/wp/wp-admin/plugins.php?plugin_status=all','unactioned','',NULL,NULL), +(495,48,'dismiss','Dismiss','https://haikuatelier.fr.ddev.site/wp/wp-admin/admin.php?page=wc-admin','actioned','',NULL,NULL), +(496,49,'woocommerce-WCStripe-Aug-2023-update-needed','See available updates','https://haikuatelier.fr.ddev.site/wp/wp-admin/update-core.php?','unactioned','',NULL,NULL), +(497,49,'dismiss','Dismiss','#','actioned','',NULL,NULL), +(498,50,'dismiss','Dismiss','#','actioned','',NULL,NULL), +(499,51,'dismiss','Dismiss','#','actioned','',NULL,NULL), +(501,53,'woo-activation-survey-blockers-survey-button-22AUG23','Take our short survey','https://woocommerce.survey.fm/getting-started-with-woo','unactioned','',NULL,NULL), +(502,54,'woocommerce-usermeta-Sept2023-productvendors','See available updates','https://haikuatelier.fr.ddev.site/wp/wp-admin/plugins.php','unactioned','',NULL,NULL), +(503,54,'dismiss','Dismiss','https://haikuatelier.fr.ddev.site/wp/wp-admin/#','actioned','',NULL,NULL), +(504,55,'woocommerce-STRIPE-Oct-2023-update-needed','See available updates','https://haikuatelier.fr.ddev.site/wp/wp-admin/update-core.php','unactioned','',NULL,NULL), +(505,55,'dismiss','Dismiss','#','actioned','',NULL,NULL), +(509,62,'day-after-first-product','Learn more','https://woocommerce.com/document/woocommerce-customizer/?utm_source=inbox&utm_medium=product','actioned','',NULL,NULL), +(510,63,'view-payment-gateways','Learn more','https://woocommerce.com/product-category/woocommerce-extensions/payment-gateways/?utm_medium=product','actioned','',NULL,NULL), +(511,64,'tracking-opt-in','Activate usage tracking','','actioned','',NULL,NULL), +(542,66,'learn-more','Learn more','https://woocommerce.com/posts/pre-launch-checklist-the-essentials/?utm_source=inbox&utm_medium=product','actioned','',NULL,NULL), +(543,67,'learn-more','Learn more','https://woocommerce.com/mobile/?utm_source=inbox&utm_medium=product','actioned','',NULL,NULL), +(553,69,'browse','Browse','https://woocommerce.com/success-stories/?utm_source=inbox&utm_medium=product','actioned','',NULL,NULL), +(554,70,'view-report','View report','?page=wc-admin&path=/analytics/revenue&period=custom&compare=previous_year&after=2024-11-26&before=2024-11-26','actioned','',NULL,NULL), +(555,71,'learn-more','Learn more','https://woocommerce.com/mobile/?utm_source=inbox&utm_medium=product','actioned','',NULL,NULL), +(568,72,'learn-more','Learn more','https://woocommerce.com/mobile/?utm_source=inbox&utm_medium=product','actioned','',NULL,NULL), +(578,65,'update-db_done','Thanks!','https://haikuatelier.com/wp/wp-admin/admin.php?page=wc-status&status=failed&tab=action-scheduler&s&bulk_action=Apply&paged=1&wc-hide-notice=update','actioned','woocommerce_hide_notices_nonce','woocommerce_hide_notices_nonce','_wc_notice_nonce'), +(579,73,'try-the-new-templates','Try the new templates','?page=wc-settings&tab=email&try-new-templates','actioned','',NULL,NULL); +/*!40000 ALTER TABLE `haikuwp_wc_admin_note_actions` ENABLE KEYS */; +UNLOCK TABLES; +commit; + +-- +-- Table structure for table `haikuwp_wc_admin_notes` +-- + +DROP TABLE IF EXISTS `haikuwp_wc_admin_notes`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8mb4 */; +CREATE TABLE `haikuwp_wc_admin_notes` ( + `note_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, + `name` varchar(255) NOT NULL, + `type` varchar(20) NOT NULL, + `locale` varchar(20) NOT NULL, + `title` longtext NOT NULL, + `content` longtext NOT NULL, + `content_data` longtext DEFAULT NULL, + `status` varchar(200) NOT NULL, + `source` varchar(200) NOT NULL, + `date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + `date_reminder` datetime DEFAULT NULL, + `is_snoozable` tinyint(1) NOT NULL DEFAULT 0, + `layout` varchar(20) NOT NULL DEFAULT '', + `image` varchar(200) DEFAULT NULL, + `is_deleted` tinyint(1) NOT NULL DEFAULT 0, + `is_read` tinyint(1) NOT NULL DEFAULT 0, + `icon` varchar(200) NOT NULL DEFAULT 'info', + PRIMARY KEY (`note_id`) +) ENGINE=InnoDB AUTO_INCREMENT=74 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `haikuwp_wc_admin_notes` +-- + +LOCK TABLES `haikuwp_wc_admin_notes` WRITE; +/*!40000 ALTER TABLE `haikuwp_wc_admin_notes` DISABLE KEYS */; +set autocommit=0; +INSERT INTO `haikuwp_wc_admin_notes` VALUES +(1,'wc-refund-returns-page','info','en_US','Setup a Refund and Returns Policy page to boost your store\'s credibility.','We have created a sample draft Refund and Returns Policy page for you. Please have a look and update it to fit your store.','{}','actioned','woocommerce-core','2024-08-05 13:12:38',NULL,0,'plain','',0,1,'info'), +(4,'woocommerce-services','info','en_US','WooCommerce Shipping & Tax','WooCommerce Shipping & Tax helps get your store \"ready to sell\" as quickly as possible. You create your products. We take care of tax calculation, payment processing, and shipping label printing! Learn more about the extension that you just installed.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), +(5,'your-first-product','info','en_US','Your first product','That’s huge! You’re well on your way to building a successful online store — now it’s time to think about how you’ll fulfill your orders.

Read our shipping guide to learn best practices and options for putting together your shipping strategy. And for WooCommerce stores in the United States, you can print discounted shipping labels via USPS with WooCommerce Shipping.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), +(6,'wc-admin-optimizing-the-checkout-flow','info','en_US','Optimizing the checkout flow','It’s crucial to get your store’s checkout as smooth as possible to avoid losing sales. Let’s take a look at how you can optimize the checkout experience for your shoppers.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), +(7,'wc-payments-qualitative-feedback','info','en_US','WooCommerce Payments setup - let us know what you think','Congrats on enabling WooCommerce Payments for your store. Please share your feedback in this 2 minute survey to help us improve the setup process.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), +(8,'share-your-feedback-on-paypal','info','en_US','Share your feedback on PayPal','Share your feedback in this 2 minute survey about how we can make the process of accepting payments more useful for your store.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), +(10,'wc-subscriptions-security-update-3-0-15','info','en_US','WooCommerce Subscriptions security update!','We recently released an important security update to WooCommerce Subscriptions. To ensure your site’s data is protected, please upgrade WooCommerce Subscriptions to version 3.0.15 or later.

Click the button below to view and update to the latest Subscriptions version, or log in to WooCommerce.com Dashboard and navigate to your Downloads page.

We recommend always using the latest version of WooCommerce Subscriptions, and other software running on your site, to ensure maximum security.

If you have any questions we are here to help — just open a ticket.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), +(11,'woocommerce-core-update-5-4-0','info','en_US','Update to WooCommerce 5.4.1 now','WooCommerce 5.4.1 addresses a checkout issue discovered in WooCommerce 5.4. We recommend upgrading to WooCommerce 5.4.1 as soon as possible.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), +(14,'ppxo-pps-upgrade-paypal-payments-1','info','en_US','Get the latest PayPal extension for WooCommerce','Heads up! There’s a new PayPal on the block!

Now is a great time to upgrade to our latest PayPal extension to continue to receive support and updates with PayPal.

Get access to a full suite of PayPal payment methods, extensive currency and country coverage, and pay later options with the all-new PayPal extension for WooCommerce.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), +(15,'ppxo-pps-upgrade-paypal-payments-2','info','en_US','Upgrade your PayPal experience!','Get access to a full suite of PayPal payment methods, extensive currency and country coverage, offer subscription and recurring payments, and the new PayPal pay later options.

Start using our latest PayPal today to continue to receive support and updates.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), +(16,'woocommerce-core-sqli-july-2021-need-to-update','update','en_US','Action required: Critical vulnerabilities in WooCommerce','In response to a critical vulnerability identified on July 13, 2021, we are working with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).

Our investigation into this vulnerability is ongoing, but we wanted to let you know now about the importance of updating immediately.

For more information on which actions you should take, as well as answers to FAQs, please urgently review our blog post detailing this issue.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), +(17,'woocommerce-blocks-sqli-july-2021-need-to-update','update','en_US','Action required: Critical vulnerabilities in WooCommerce Blocks','In response to a critical vulnerability identified on July 13, 2021, we are working with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).

Our investigation into this vulnerability is ongoing, but we wanted to let you know now about the importance of updating immediately.

For more information on which actions you should take, as well as answers to FAQs, please urgently review our blog post detailing this issue.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), +(18,'woocommerce-core-sqli-july-2021-store-patched','update','en_US','Solved: Critical vulnerabilities patched in WooCommerce','In response to a critical vulnerability identified on July 13, 2021, we worked with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).

Your store has been updated to the latest secure version(s). For more information and answers to FAQs, please review our blog post detailing this issue.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), +(19,'woocommerce-blocks-sqli-july-2021-store-patched','update','en_US','Solved: Critical vulnerabilities patched in WooCommerce Blocks','In response to a critical vulnerability identified on July 13, 2021, we worked with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).

Your store has been updated to the latest secure version(s). For more information and answers to FAQs, please review our blog post detailing this issue.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), +(21,'woocommerce-core-paypal-march-2022-updated','update','en_US','Security auto-update of WooCommerce','Your store has been updated to the latest secure version of WooCommerce. We worked with WordPress to deploy PayPal Standard security updates for stores running WooCommerce (version 3.5 to 6.3). It’s recommended to disable PayPal Standard, and use PayPal Payments to accept PayPal.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), +(22,'woocommerce-core-paypal-march-2022-updated-nopp','update','en_US','Security auto-update of WooCommerce','Your store has been updated to the latest secure version of WooCommerce. We worked with WordPress to deploy security updates related to PayPal Standard payment gateway for stores running WooCommerce (version 3.5 to 6.3).','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), +(24,'store_setup_survey_survey_q2_2022','survey','en_US','How is your store setup going?','Our goal is to make sure you have all the right tools to start setting up your store in the smoothest way possible.\r\nWe’d love to know if we hit our mark and how we can improve. To collect your thoughts, we made a 2-minute survey.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), +(25,'needs-update-eway-payment-gateway-rin-2022-12-20','update','en_US','Security vulnerability patched in WooCommerce Eway Gateway','In response to a potential vulnerability identified in WooCommerce Eway Gateway versions 3.1.0 to 3.5.0, we’ve worked to deploy security fixes and have released an updated version.\r\nNo external exploits have been detected, but we recommend you update to your latest supported version 3.1.26, 3.2.3, 3.3.1, 3.4.6, or 3.5.1','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), +(26,'updated-eway-payment-gateway-rin-2022-12-20','update','en_US','WooCommerce Eway Gateway has been automatically updated','Your store is now running the latest secure version of WooCommerce Eway Gateway. We worked with the WordPress Plugins team to deploy a software update to stores running WooCommerce Eway Gateway (versions 3.1.0 to 3.5.0) in response to a security vulnerability that was discovered.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), +(27,'ecomm-wc-navigation-survey-2023','info','en_US','Navigating WooCommerce on WordPress.com','We are improving the WooCommerce navigation on WordPress.com and would love your help to make it better! Please share your experience with us in this 2-minute survey.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), +(28,'woopay-beta-merchantrecruitment-04MAY23','info','en_US','Increase conversions with WooPay — our fastest checkout yet','WooPay, a new express checkout feature built into WooCommerce Payments, is now available —and we’re inviting you to be one of the first to try it. \r\n

\r\nBoost conversions by offering your customers a simple, secure way to pay with a single click.\r\n

\r\nGet started in seconds.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), +(29,'woocommerce-wcpay-march-2023-update-needed','update','en_US','Action required: Security update for WooCommerce Payments','Your store requires a security update for WooCommerce Payments. Please update to the latest version of WooCommerce Payments immediately to address a potential vulnerability discovered on March 22. For more information on how to update, visit this WooCommerce Developer Blog Post.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), +(31,'woocommerce-WCPreOrders-april-2023-update-needed','update','en_US','Action required: Security update of WooCommerce Pre-Orders extension','Your store requires a security update for the WooCommerce Pre-Orders extension. Please update the WooCommerce Pre-Orders extension immediately to address a potential vulnerability discovered on April 11.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), +(32,'woopay-beta-merchantrecruitment-update-04MAY23','info','en_US','Increase conversions with WooPay — our fastest checkout yet','WooPay, a new express checkout feature built into WooCommerce Payments, is now available — and you’re invited to try it. \r\n

\r\nBoost conversions by offering your customers a simple, secure way to pay with a single click.\r\n

\r\nUpdate WooCommerce Payments to get started.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), +(33,'woopay-beta-existingmerchants-noaction-27APR23','info','en_US','WooPay is back!','Thanks for previously trying WooPay, the express checkout feature built into WooCommerce Payments. We’re excited to announce that WooPay availability has resumed. No action is required on your part.\r\n

\r\nYou can now continue boosting conversions by offering your customers a simple, secure way to pay with a single click.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), +(34,'woopay-beta-existingmerchants-update-27APR23','info','en_US','WooPay is back!','Thanks for previously trying WooPay, the express checkout feature built into WooCommerce Payments. We’re excited to announce that WooPay availability has resumed.\r\n

\r\n\r\nUpdate to the latest WooCommerce Payments version to continue boosting conversions by offering your customers a simple, secure way to pay with a single click.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), +(35,'woopay-beta-merchantrecruitment-short-04MAY23','info','en_US','Increase conversions with WooPay — our fastest checkout yet','Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n

\r\nBoost conversions by letting customers pay with a single click.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), +(36,'woopay-beta-merchantrecruitment-short-update-04MAY23','info','en_US','Increase conversions with WooPay — our fastest checkout yet','Be one of the first to try WooPay, our new express checkout feature.
Boost conversions by letting customers pay with a single click.

Update to the latest version of WooCommerce Payments to get started.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), +(37,'woopay-beta-merchantrecruitment-short-06MAY23-TESTA','info','en_US','Increase conversions with WooPay — our fastest checkout yet','Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n

\r\nBoost conversions by letting customers pay with a single click.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), +(38,'woopay-beta-merchantrecruitment-short-06MAY23-TESTB','info','en_US','Increase conversions with WooPay — our fastest checkout yet','Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n

\r\nBoost conversions by letting customers pay with a single click.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), +(39,'woopay-beta-merchantrecruitment-short-06MAY23-TESTC','info','en_US','Increase conversions with WooPay — our fastest checkout yet','Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n

\r\nBoost conversions by letting customers pay with a single click.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), +(40,'woopay-beta-merchantrecruitment-short-06MAY23-TESTD','info','en_US','Increase conversions with WooPay — our fastest checkout yet','Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n

\r\nBoost conversions by letting customers pay with a single click.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), +(41,'woopay-beta-merchantrecruitment-short-09MAY23','info','en_US','Increase conversions with WooPay — our fastest checkout yet','Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n

\r\nBoost conversions by letting customers pay with a single click.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), +(42,'woopay-beta-merchantrecruitment-short-update-09MAY23','info','en_US','Increase conversions with WooPay — our fastest checkout yet','Be one of the first to try WooPay, our new express checkout feature.
Boost conversions by letting customers pay with a single click.

Update to the latest version of WooCommerce Payments to get started.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), +(44,'woocommerce-WCReturnsWarranty-June-2023-updated-needed','update','en_US','Action required: Security update of WooCommerce Returns and Warranty Requests extension','Your store requires a security update for the Returns and Warranty Requests extension. Please update to the latest version of the WooCommerce Returns and Warranty Requests extension immediately to address a potential vulnerability discovered on May 31.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), +(45,'woocommerce-WCOPC-June-2023-updated-needed','update','en_US','Action required: Security update of WooCommerce One Page Checkout','Your shop requires a security update to address a vulnerability in the WooCommerce One Page Checkout extension. The fix for this vulnerability was released for this extension on June 13th. Please update immediately.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), +(46,'woocommerce-WCGC-July-2023-update-needed','update','en_US','Action required: Security update of WooCommerce GoCardless Extension','Your shop requires a security update to address a vulnerability in the WooCommerce GoCardless extension. The fix for this vulnerability was released on July 4th. Please update immediately.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), +(47,'woocommerce-shipping-fedex-api-outage-2023-07-16','warning','en_US','Scheduled FedEx API outage — July 2023','On July 16 there will be a full outage of the FedEx API from 04:00 to 08:00 AM UTC. Due to planned maintenance by FedEx, you\'ll be unable to provide FedEx shipping rates during this time. Follow the link below for more information and recommendations on how to minimize impact.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), +(48,'wcship-2023-07-hazmat-update-needed','update','en_US','Action required: USPS HAZMAT compliance update for WooCommerce Shipping & Tax extension','Your store requires an update for the WooCommerce Shipping extension. Please update to the latest version of the WooCommerce Shipping & Tax extension immediately to ensure compliance with new USPS HAZMAT rules currently in effect.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), +(49,'woocommerce-WCStripe-Aug-2023-update-needed','update','en_US','Action required: Security update for WooCommerce Stripe plugin','Your shop requires an important security update for the WooCommerce Stripe plugin. The fix for this vulnerability was released on July 31. Please update immediately.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), +(50,'woocommerce-WCStripe-Aug-2023-security-updated','update','en_US','Security update of WooCommerce Stripe plugin','Your store has been updated to the latest secure version of the WooCommerce Stripe plugin. This update was released on July 31.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), +(51,'woocommerce-WooPayments-Aug-2023-security-updated','update','en_US','Security update of WooPayments (WooCommerce Payments) plugin','Your store has been updated to the more secure version of WooPayments (WooCommerce Payments). This update was released on July 31.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), +(53,'woo-activation-survey-blockers-22AUG23','info','en_US','How can we help you get that first sale?','Your feedback is vital. Please take a minute to share your experience of setting up your new store and whether anything is preventing you from making those first few sales. Together, we can make Woo even better!','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), +(54,'woocommerce-usermeta-Sept2023-productvendors','update','en_US','Your store requires a security update','Your shop needs an update to address a vulnerability in WooCommerce. The fix was released on Sept 15. Please update WooCommerce to the latest version immediately. Read our developer update for more information.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), +(55,'woocommerce-STRIPE-Oct-2023-update-needed','update','en_US','Action required: Security update for WooCommerce Stripe Gateway','Your shop requires a security update to address a vulnerability in the WooCommerce Stripe Gateway. The fix for this vulnerability was released on October 17. Please update immediately.','{}','pending','woocommerce.com','2024-08-05 13:12:38',NULL,0,'plain','',0,0,'info'), +(59,'wc-admin-wc-helper-connection','info','en_US','Se connecter à WooCommerce.com','Connectez-vous pour obtenir des notifications et des mises à jour importantes sur les produits.','{}','unactioned','woocommerce-admin','2024-08-05 13:13:55',NULL,0,'plain','',1,1,'info'), +(61,'wc-admin-mobile-app','info','en_US','Install Woo mobile app','Install the WooCommerce mobile app to manage orders, receive sales notifications, and view key metrics – wherever you are.','{}','unactioned','woocommerce-admin','2024-08-07 13:30:14',NULL,0,'plain','',1,1,'info'), +(62,'wc-admin-customizing-product-catalog','info','en_US','How to customise your product catalogue','You want your product catalogue and images to look great and align with your brand. This guide will give you all the tips you need to get your products looking great in your store.','{}','unactioned','woocommerce-admin','2024-08-08 16:35:00',NULL,0,'plain','',1,1,'info'), +(63,'wc-admin-onboarding-payments-reminder','info','en_US','Start accepting payments on your store!','Take payments with the provider that’s right for you - choose from 100+ payment gateways for WooCommerce.','{}','unactioned','woocommerce-admin','2024-08-10 13:35:49',NULL,0,'plain','',1,1,'info'), +(64,'wc-admin-usage-tracking-opt-in','info','en_US','Help WooCommerce improve with usage tracking','Gathering usage data allows us to improve WooCommerce. Your store will be considered as we evaluate new features, judge the quality of an update, or determine if an improvement makes sense. You can always visit the Settings and choose to stop sharing data. Read more about what data we collect.','{}','unactioned','woocommerce-admin','2024-08-12 15:54:19',NULL,0,'plain','',1,1,'info'), +(65,'wc-update-db-reminder','update','en_US','WooCommerce database update done','WooCommerce database update complete. Thank you for updating to the latest version!','{}','actioned','woocommerce-core','2024-08-22 14:16:51',NULL,0,'plain','',0,1,'info'), +(66,'wc-admin-launch-checklist','info','en_US','Ready to launch your store?','To make sure you never get that sinking \"what did I forget\" feeling, we\'ve put together the essential pre-launch checklist.','{}','unactioned','woocommerce-admin','2024-10-31 13:30:48',NULL,0,'plain','',1,1,'info'), +(67,'wc-admin-real-time-order-alerts','info','en_US','Get real-time order alerts anywhere','Get notifications about store activity, including new orders and product reviews directly on your mobile devices with the Woo app.','{}','unactioned','woocommerce-admin','2024-11-03 13:16:04',NULL,0,'plain','',1,1,'info'), +(69,'wc-admin-orders-milestone','info','en_US','Congratulations on processing 10 orders!','You\'ve hit the 10 orders milestone! Look at you go. Browse some WooCommerce success stories for inspiration.','{\"current_milestone\":10}','unactioned','woocommerce-admin','2024-11-21 16:12:57',NULL,0,'plain','',0,1,'info'), +(70,'wc-admin-new-sales-record','info','en_US','New sales record!','Woohoo, November 26th was your record day for sales! Net sales was € 1.525,00 beating the previous record of € 1.390,00 set on November 13th.','{\"old_record_date\":\"2024-11-13\",\"old_record_amt\":1390,\"new_record_date\":\"2024-11-26\",\"new_record_amt\":1525}','unactioned','woocommerce-admin','2024-11-27 13:20:42',NULL,0,'plain','',0,1,'info'), +(71,'wc-admin-manage-orders-on-the-go','info','en_US','Manage your orders on the go','Look for orders, customer info, and process refunds in one click with the Woo app.','{}','unactioned','woocommerce-admin','2025-02-01 14:43:19',NULL,0,'plain','',0,1,'info'), +(72,'wc-admin-performance-on-mobile','info','en_US','Track your store performance on mobile','Monitor your sales and high performing products with the Woo app.','{}','unactioned','woocommerce-admin','2025-05-02 13:13:21',NULL,0,'plain','',0,0,'info'), +(73,'wc-admin-email-improvements','info','en_US','Store emails have had an upgrade!','We’ve made some exciting improvements to our email templates, including modern, shopper-friendly designs and new customization options. And if you’re using a block theme, you can automatically sync your theme styles! Head to your email settings to explore the new features.','{}','unactioned','woocommerce-admin','2025-06-13 13:13:15',NULL,0,'plain','',0,0,'info'); +/*!40000 ALTER TABLE `haikuwp_wc_admin_notes` ENABLE KEYS */; +UNLOCK TABLES; +commit; + +-- +-- Table structure for table `haikuwp_wc_category_lookup` +-- + +DROP TABLE IF EXISTS `haikuwp_wc_category_lookup`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8mb4 */; +CREATE TABLE `haikuwp_wc_category_lookup` ( + `category_tree_id` bigint(20) unsigned NOT NULL, + `category_id` bigint(20) unsigned NOT NULL, + PRIMARY KEY (`category_tree_id`,`category_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `haikuwp_wc_category_lookup` +-- + +LOCK TABLES `haikuwp_wc_category_lookup` WRITE; +/*!40000 ALTER TABLE `haikuwp_wc_category_lookup` DISABLE KEYS */; +set autocommit=0; +INSERT INTO `haikuwp_wc_category_lookup` VALUES +(15,15), +(30,30), +(31,31), +(32,32), +(33,33); +/*!40000 ALTER TABLE `haikuwp_wc_category_lookup` ENABLE KEYS */; +UNLOCK TABLES; +commit; + +-- +-- Table structure for table `haikuwp_wc_customer_lookup` +-- + +DROP TABLE IF EXISTS `haikuwp_wc_customer_lookup`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8mb4 */; +CREATE TABLE `haikuwp_wc_customer_lookup` ( + `customer_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, + `user_id` bigint(20) unsigned DEFAULT NULL, + `username` varchar(60) NOT NULL DEFAULT '', + `first_name` varchar(255) NOT NULL, + `last_name` varchar(255) NOT NULL, + `email` varchar(100) DEFAULT NULL, + `date_last_active` timestamp NULL DEFAULT NULL, + `date_registered` timestamp NULL DEFAULT NULL, + `country` char(2) NOT NULL DEFAULT '', + `postcode` varchar(20) NOT NULL DEFAULT '', + `city` varchar(100) NOT NULL DEFAULT '', + `state` varchar(100) NOT NULL DEFAULT '', + PRIMARY KEY (`customer_id`), + UNIQUE KEY `user_id` (`user_id`), + KEY `email` (`email`) +) ENGINE=InnoDB AUTO_INCREMENT=47 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `haikuwp_wc_customer_lookup` +-- + +LOCK TABLES `haikuwp_wc_customer_lookup` WRITE; +/*!40000 ALTER TABLE `haikuwp_wc_customer_lookup` DISABLE KEYS */; +set autocommit=0; +INSERT INTO `haikuwp_wc_customer_lookup` VALUES +(6,NULL,'','Charlotte','Gérard','charlottegerard7@gmail.com','2024-11-28 14:21:17',NULL,'BE','1200','Woluwe-Saint-Lambert','Bruxelles'), +(7,NULL,'','Roberto','Ruggeri NW Groupe','sofia.balducci99@gmail.com','2024-11-28 14:40:46',NULL,'FR','75007','Paris',''), +(8,NULL,'','Claudia','Van Vynckt - WIPLAW','claudia.vanvynckt@hotmail.fr','2024-11-29 08:05:49',NULL,'BE','1050','Bruxelles',''), +(9,NULL,'','Lucie','Leiner','lucie.leiner@gmail.com','2024-11-29 16:22:16',NULL,'BE','1630','Linkebeek',''), +(10,NULL,'','Claire','Maroufin','maroufin.claire@gmail.com','2024-12-02 09:05:43',NULL,'FR','94270','Le Kremlin Bicetre',''), +(11,NULL,'','Peggy','Luete','gilquinpeggy@gmail.com','2024-12-02 09:46:48',NULL,'FR','93360','Neuilly - Plaisance',''), +(12,NULL,'','Violette','Cubier','v.cubier@gmail.com','2024-12-02 15:33:11',NULL,'FR','92320','Chatillon',''), +(13,NULL,'','Elise','Colson','choploone@gmail.com','2024-12-03 16:03:18',NULL,'BE','4420','Saint-Nicolas','Liège'), +(14,NULL,'','Maren','Sigge','maren.sigge@gmail.com','2024-12-03 21:53:41',NULL,'BE','1160','Auderghem','Belgium'), +(15,NULL,'','Perrine','Vincent','perrinevincent90@gmail.com','2024-12-06 12:08:34',NULL,'BE','5150','Floreffe','Namur'), +(16,NULL,'','Julien','Martial','julien.martial@hotmail.com','2024-12-06 13:04:22',NULL,'BE','1150','Woluwe St Pierre',''), +(17,NULL,'','christine','Saquet Bossu','c.saquetbossu@orange.fr','2024-12-12 15:55:38',NULL,'FR','35660','Renac',''), +(18,NULL,'','Nathalie','Chabin','lili.chabin@gmail.com','2024-12-19 08:08:20',NULL,'CH','1046','Rueyres - Suisse','vaud'), +(19,NULL,'','Veronique','Marchand','vsmarchand24@gmail.com','2024-12-14 09:10:01',NULL,'FR','89000','AUXERRE',''), +(20,NULL,'','Antoine','Deroisy','antoine.der92@gmail.com','2024-12-16 08:16:07',NULL,'BE','1050','Bruxelles',''), +(21,NULL,'','Ella','Richard','ella_cherry@hotmail.fr','2024-12-17 07:40:04',NULL,'FR','93310','Le Pre Saint Gervais',''), +(22,NULL,'','Elsa','Dumontel','elsa.dumontel@gmail.com','2024-12-18 14:13:28',NULL,'FR','15130','Arpajon Sur Cere','France'), +(23,NULL,'','Magali','Jacob','melian.jacob@free.fr','2024-12-26 11:37:45',NULL,'FR','67800','Hœnheim',''), +(24,NULL,'','Camille','Lacroix','camillelacroix715@gmail.com','2024-12-30 17:59:22',NULL,'FR','93310','Le Pré St Gervais',''), +(25,NULL,'','Margot','BRISOUX','margot.brisoux@hotmail.fr','2025-01-03 08:04:01',NULL,'FR','75011','Paris',''), +(26,NULL,'','Marine','TIBERI','tiberi.marine@gmail.com','2025-01-09 11:01:26',NULL,'FR','31400','Toulouse',''), +(27,NULL,'','Alice','Tabernat','alicetabernat@yahoo.fr','2025-01-29 09:32:07',NULL,'FR','93100','Montreuil',''), +(28,NULL,'','Aïn-Establet','Manon','manon.ainest@gmail.com','2025-01-30 07:57:12',NULL,'FR','75020','Paris',''), +(29,NULL,'','de beauvais','nina','parisnoune@gmail.com','2025-02-21 18:32:16',NULL,'FR','75019','paris',''), +(30,NULL,'','Owen Andrew','O\'Neill','owenoneill2727@gmail.com','2025-02-23 16:08:07',NULL,'BE','1060','Saint-Gilles','Brussel'), +(31,NULL,'','Julie','Soulie','julie.soulie96@yahoo.fr','2025-02-26 11:51:16',NULL,'FR','75019','Paris','Ile de France'), +(32,NULL,'','Charles','Stoop','charles.stoop@gmail.com','2025-03-03 10:10:15',NULL,'BE','1170','Watermael-Boitsfort','Bruxelles'), +(33,NULL,'','Amélie','Graux','amelie.grx@gmail.com','2025-03-03 09:45:26',NULL,'FR','75020','Paris',''), +(34,NULL,'','Raphael','Kuder','raphael.kuderpro@gmail.com','2025-03-05 10:04:07',NULL,'FR','75020','Paris','IDF'), +(35,NULL,'','Eve marie','REDOUIN','evemarie.redouin@gmail.com','2025-03-23 20:39:51',NULL,'FR','91140','Villebon-sur-Yvette',''), +(36,NULL,'','Arnau','Oliver Antich','isoliverantich1@gmail.com','2025-04-08 09:44:22',NULL,'BE','1060','Saint-Gilles','Belgium'), +(37,NULL,'','Gauthier','COLIN HAAG','lol@mdr.fr','2025-05-05 07:14:57',NULL,'FR','57070','Metz',''), +(38,NULL,'','Jérôme','Laurent','crack_one@hotmail.fr','2025-05-09 07:49:40',NULL,'FR','10500','BRIENNE LE CHATEAU','Aube'), +(39,NULL,'','Anne sophie','Mabi','annesophiemabi@gmail.com','2025-05-09 17:56:28',NULL,'FR','93110','Rosny sous bois',''), +(40,NULL,'','Zafiria','Efstratiadi','zafiria.efstratiadi@hotmail.com','2025-06-04 09:13:31',NULL,'BE','1080','Bruxelles','Molenbeek-Saint-Jean'), +(41,NULL,'','Laurent','CAPELO','laurentpvcapelo@gmail.com','2025-06-05 05:44:45',NULL,'FR','92130','Issy-les-Moulineaux',''), +(42,NULL,'','','','','2025-06-20 08:13:00',NULL,'','','',''), +(43,NULL,'','','','','2025-06-21 07:54:31',NULL,'','','',''), +(44,NULL,'','','','','2025-06-21 10:43:50',NULL,'','','',''), +(45,NULL,'','','','','2025-06-21 10:54:52',NULL,'','','',''), +(46,NULL,'','','','','2025-06-21 10:58:23',NULL,'','','',''); +/*!40000 ALTER TABLE `haikuwp_wc_customer_lookup` ENABLE KEYS */; +UNLOCK TABLES; +commit; + +-- +-- Table structure for table `haikuwp_wc_download_log` +-- + +DROP TABLE IF EXISTS `haikuwp_wc_download_log`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8mb4 */; +CREATE TABLE `haikuwp_wc_download_log` ( + `download_log_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, + `timestamp` datetime NOT NULL, + `permission_id` bigint(20) unsigned NOT NULL, + `user_id` bigint(20) unsigned DEFAULT NULL, + `user_ip_address` varchar(100) DEFAULT '', + PRIMARY KEY (`download_log_id`), + KEY `permission_id` (`permission_id`), + KEY `timestamp` (`timestamp`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `haikuwp_wc_download_log` +-- + +LOCK TABLES `haikuwp_wc_download_log` WRITE; +/*!40000 ALTER TABLE `haikuwp_wc_download_log` DISABLE KEYS */; +set autocommit=0; +/*!40000 ALTER TABLE `haikuwp_wc_download_log` ENABLE KEYS */; +UNLOCK TABLES; +commit; + +-- +-- Table structure for table `haikuwp_wc_order_addresses` +-- + +DROP TABLE IF EXISTS `haikuwp_wc_order_addresses`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8mb4 */; +CREATE TABLE `haikuwp_wc_order_addresses` ( + `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, + `order_id` bigint(20) unsigned NOT NULL, + `address_type` varchar(20) DEFAULT NULL, + `first_name` text DEFAULT NULL, + `last_name` text DEFAULT NULL, + `company` text DEFAULT NULL, + `address_1` text DEFAULT NULL, + `address_2` text DEFAULT NULL, + `city` text DEFAULT NULL, + `state` text DEFAULT NULL, + `postcode` text DEFAULT NULL, + `country` text DEFAULT NULL, + `email` varchar(320) DEFAULT NULL, + `phone` varchar(100) DEFAULT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `address_type_order_id` (`address_type`,`order_id`), + KEY `order_id` (`order_id`), + KEY `email` (`email`(191)), + KEY `phone` (`phone`), + FULLTEXT KEY `order_addresses_fts` (`first_name`,`last_name`,`company`,`address_1`,`address_2`,`city`,`state`,`postcode`,`country`,`email`,`phone`) +) ENGINE=InnoDB AUTO_INCREMENT=201 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `haikuwp_wc_order_addresses` +-- + +LOCK TABLES `haikuwp_wc_order_addresses` WRITE; +/*!40000 ALTER TABLE `haikuwp_wc_order_addresses` DISABLE KEYS */; +set autocommit=0; +INSERT INTO `haikuwp_wc_order_addresses` VALUES +(93,861,'billing','Charlotte','Gérard',NULL,'16 rue Georges Rency',NULL,'Woluwe-Saint-Lambert','Bruxelles','1200','BE','charlottegerard7@gmail.com','0498836916'), +(94,861,'shipping','Charlotte','Gérard',NULL,'16 rue Georges Rency',NULL,'Woluwe-Saint-Lambert','Bruxelles','1200','BE',NULL,'0498836916'), +(95,862,'billing','Roberto','Ruggeri NW Groupe',NULL,'31 avenue bosquet',NULL,'Paris',NULL,'75007','FR','sofia.balducci99@gmail.com','+393470972182'), +(96,862,'shipping','Roberto','Ruggeri NW Groupe',NULL,'31 avenue bosquet',NULL,'Paris',NULL,'75007','FR',NULL,'+393470972182'), +(103,866,'billing','Claudia','Van Vynckt - WIPLAW',NULL,'279, avenue louise',NULL,'Bruxelles',NULL,'1050','BE','claudia.vanvynckt@hotmail.fr','0478183560'), +(104,866,'shipping','Claudia','Van Vynckt - WIPLAW',NULL,'279, avenue louise',NULL,'Bruxelles',NULL,'1050','BE',NULL,'0478183560'), +(105,867,'billing','Lucie','Leiner',NULL,'Vijversdreef 10',NULL,'Linkebeek','Linkebeek','1630','BE','lucie.leiner@gmail.com','+32489578514'), +(106,867,'shipping','Lucie','Leiner',NULL,'Vijversdreef 10',NULL,'Linkebeek','Linkebeek','1630','BE',NULL,'+32489578514'), +(107,868,'billing','Lucie','Leiner',NULL,'Vijversdreef 10',NULL,'Linkebeek',NULL,'1630','BE','lucie.leiner@gmail.com','+32489578514'), +(108,868,'shipping','Lucie','Leiner',NULL,'Vijversdreef 10',NULL,'Linkebeek',NULL,'1630','BE',NULL,'+32489578514'), +(109,869,'billing','Claire','Maroufin',NULL,'26 avenue Eugène Thomas',NULL,'Le Kremlin Bicetre',NULL,'94270','FR','maroufin.claire@gmail.com','+33681223295'), +(110,869,'shipping','Claire','Maroufin',NULL,'26 avenue Eugène Thomas',NULL,'Le Kremlin Bicetre',NULL,'94270','FR',NULL,'+33681223295'), +(111,870,'billing','Peggy','Luete',NULL,'23, Allée des mimosas, Allée des mimosas',NULL,'Neuilly - Plaisance',NULL,'93360','FR','gilquinpeggy@gmail.com','+33663293145'), +(112,870,'shipping','Peggy','Luete',NULL,'23, Allée des mimosas, Allée des mimosas',NULL,'Neuilly - Plaisance',NULL,'93360','FR',NULL,'+33663293145'), +(113,871,'billing','Violette','Cubier',NULL,'5 rue Andre Gide',NULL,'Chatillon',NULL,'92320','FR','v.cubier@gmail.com','0616154243'), +(114,871,'shipping','Violette','Cubier',NULL,'5 rue Andre Gide',NULL,'Chatillon',NULL,'92320','FR',NULL,'0616154243'), +(115,872,'billing','Elise','Colson',NULL,'Rue des grands champs 119',NULL,'Saint-Nicolas','Liège','4420','BE','choploone@gmail.com','0498508266'), +(116,872,'shipping','Elise','Colson',NULL,'Rue des grands champs 119',NULL,'Saint-Nicolas','Liège','4420','BE',NULL,'0498508266'), +(117,873,'billing','Maren','Sigge',NULL,'Av. G. E. Lebon, 24, BP 3',NULL,'Auderghem','Belgium','1160','BE','maren.sigge@gmail.com','+32489439874'), +(118,873,'shipping','Viviane','Antoine',NULL,'Chaussée de Givet 33',NULL,'Mariembourg','Belgium','5660','BE',NULL,'+32489439874'), +(121,876,'billing','Perrine','Vincent',NULL,'Rue de la Basse-Sambre 8',NULL,'Floreffe','Namur','5150','BE','perrinevincent90@gmail.com','00 32 472 24 97 14'), +(122,876,'shipping','Perrine','Vincent',NULL,'Rue de la Basse-Sambre 8',NULL,'Floreffe','Namur','5150','BE',NULL,'00 32 472 24 97 14'), +(123,877,'billing','Perrine','Vincent',NULL,'Rue de la Basse-Sambre 8',NULL,'Floreffe','Namur','5150','BE','perrinevincent90@gmail.com','00 32 472 24 97 14'), +(124,877,'shipping','Perrine','Vincent',NULL,'Rue de la Basse-Sambre 8',NULL,'Floreffe','Namur','5150','BE',NULL,'00 32 472 24 97 14'), +(125,878,'billing','Perrine','Vincent',NULL,'Rue de la Basse-Sambre 8',NULL,'Floreffe','Namur','5150','BE','perrinevincent90@gmail.com','00 32 472 24 97 14'), +(126,878,'shipping','Perrine','Vincent',NULL,'Rue de la Basse-Sambre 8',NULL,'Floreffe','Namur','5150','BE',NULL,'00 32 472 24 97 14'), +(127,879,'billing','Julien','Martial',NULL,'Rue François Gay, 225',NULL,'Woluwe St Pierre',NULL,'1150','BE','julien.martial@hotmail.com','0472585911'), +(128,879,'shipping','Julien','Martial',NULL,'Rue François Gay, 225',NULL,'Woluwe St Pierre',NULL,'1150','BE',NULL,'0472585911'), +(129,880,'billing','christine','Saquet Bossu',NULL,'33 rue du Colonel du Halgouêt',NULL,'Renac',NULL,'35660','FR','c.saquetbossu@orange.fr','0685532210'), +(130,880,'shipping','christine','Saquet Bossu',NULL,'33 rue du Colonel du Halgouêt',NULL,'Renac',NULL,'35660','FR',NULL,'0685532210'), +(131,881,'billing','Nathalie','Chabin',NULL,'chemin de Rossy 1, 1',NULL,'Rueyres - Suisse',NULL,'1046','CH','lili.chabin@gmail.com','+41786229221'), +(132,881,'shipping','Nathalie','Chabin',NULL,'chemin de Rossy 1, 1',NULL,'Rueyres - Suisse',NULL,'1046','CH',NULL,'+41786229221'), +(137,884,'billing','Veronique','Marchand',NULL,'5 bis impasse de la Noue',NULL,'AUXERRE',NULL,'89000','FR','vsmarchand24@gmail.com','+33612102273'), +(138,884,'shipping','Veronique','Marchand',NULL,'5 bis impasse de la Noue',NULL,'AUXERRE',NULL,'89000','FR',NULL,'+33612102273'), +(139,885,'billing','Antoine','Deroisy',NULL,'389 chaussée de waterloo',NULL,'Bruxelles',NULL,'1050','BE','antoine.der92@gmail.com','0474183450'), +(140,885,'shipping','Antoine','Deroisy',NULL,'389 chaussée de waterloo',NULL,'Bruxelles',NULL,'1050','BE',NULL,'0474183450'), +(141,886,'billing','Ella','Richard',NULL,'44 Rue Gutenberg, 93310 Le Pre Saint Gervais, France',NULL,'Le Pre Saint Gervais',NULL,'93310','FR','ella_cherry@hotmail.fr','06 77 32 66 50'), +(142,886,'shipping','Ella','Richard',NULL,'44 Rue Gutenberg, 93310 Le Pre Saint Gervais, France',NULL,'Le Pre Saint Gervais',NULL,'93310','FR',NULL,'06 77 32 66 50'), +(143,887,'billing','Elsa','Dumontel',NULL,'29 Route Des Chenes',NULL,'Arpajon Sur Cere','France','15130','FR','elsa.dumontel@gmail.com','0642985078'), +(144,887,'shipping','Elsa','Dumontel',NULL,'29 Route Des Chenes',NULL,'Arpajon Sur Cere','France','15130','FR',NULL,'0642985078'), +(145,888,'billing','Nathalie','Chabin',NULL,'chemin de Rossy 1',NULL,'Rueyres - Suisse','vaud','1046','CH','lili.chabin@gmail.com','+41786229221'), +(146,888,'shipping','Nathalie','Chabin',NULL,'chemin de Rossy 1',NULL,'Rueyres - Suisse','vaud','1046','CH',NULL,'+41786229221'), +(147,889,'billing','Magali','Jacob',NULL,'1 Rue du Limousin',NULL,'Hœnheim',NULL,'67800','FR','melian.jacob@free.fr','0670745455'), +(148,889,'shipping','Magali','Jacob',NULL,'1 Rue du Limousin',NULL,'Hœnheim',NULL,'67800','FR',NULL,'0670745455'), +(149,892,'billing','Camille','Lacroix',NULL,'7 rue du Capitaine Soyer',NULL,'Le Pré St Gervais',NULL,'93310','FR','camillelacroix715@gmail.com','0681659460'), +(150,892,'shipping','Camille','Lacroix',NULL,'7 rue du Capitaine Soyer',NULL,'Le Pré St Gervais',NULL,'93310','FR',NULL,'0681659460'), +(151,893,'billing','Margot','Brisoux',NULL,'13 rue Camille Desmoulins',NULL,'Paris',NULL,'75011','FR','margot.brisoux@hotmail.fr','0679481991'), +(152,893,'shipping','Margot','Brisoux',NULL,'13 rue Camille Desmoulins',NULL,'Paris',NULL,'75011','FR',NULL,'0679481991'), +(153,894,'billing','Margot','BRISOUX',NULL,'13 rue Camille Desmoulins',NULL,'Paris',NULL,'75011','FR','margot.brisoux@hotmail.fr','0679481991'), +(154,894,'shipping','Margot','BRISOUX',NULL,'13 rue Camille Desmoulins',NULL,'Paris',NULL,'75011','FR',NULL,'0679481991'), +(155,895,'billing','Marine','TIBERI',NULL,'50 rue Jules Clarétie',NULL,'Toulouse',NULL,'31400','FR','tiberi.marine@gmail.com','+33602079136'), +(156,895,'shipping','Marine','TIBERI',NULL,'50 rue Jules Clarétie',NULL,'Toulouse',NULL,'31400','FR',NULL,'+33602079136'), +(157,897,'billing','Alice','Tabernat',NULL,'88 boulevard Aristide Briand',NULL,'Montreuil',NULL,'93100','FR','alicetabernat@yahoo.fr','0770426206'), +(158,897,'shipping','Alice','Tabernat',NULL,'88 boulevard Aristide Briand',NULL,'Montreuil',NULL,'93100','FR',NULL,'0770426206'), +(159,898,'billing','Aïn-Establet','Manon',NULL,'140, boulevard de Menilmontant',NULL,'Paris',NULL,'75020','FR','manon.ainest@gmail.com','0612109541'), +(160,898,'shipping','Aïn-Establet','Manon',NULL,'140, boulevard de Menilmontant',NULL,'Paris',NULL,'75020','FR',NULL,'0612109541'), +(161,899,'billing','Aïn-Establet','Manon',NULL,'140, boulevard de Menilmontant',NULL,'Paris',NULL,'75020','FR','manon.ainest@gmail.com','0612109541'), +(162,899,'shipping','Aïn-Establet','Manon',NULL,'140, boulevard de Menilmontant',NULL,'Paris',NULL,'75020','FR',NULL,'0612109541'), +(163,900,'billing','de beauvais','nina',NULL,'39 avenue mathurin Moreau',NULL,'paris',NULL,'75019','FR','parisnoune@gmail.com','0670423158'), +(164,900,'shipping','de beauvais','nina',NULL,'39 avenue mathurin Moreau',NULL,'paris',NULL,'75019','FR',NULL,'0670423158'), +(165,901,'billing','Owen Andrew','O\'Neill',NULL,'Rue Bosquet, 25',NULL,'Saint-Gilles','Brussel','1060','BE','owenoneill2727@gmail.com','+353852179564'), +(166,901,'shipping','Owen Andrew','O\'Neill',NULL,'Rue Bosquet, 25',NULL,'Saint-Gilles','Brussel','1060','BE',NULL,'+353852179564'), +(167,902,'billing','Julie','Soulie',NULL,'17/19 rue de l\'Atlas',NULL,'Paris','Ile de France','75019','FR','julie.soulie96@yahoo.fr','0643105822'), +(168,902,'shipping','Julie','Soulie',NULL,'17/19 rue de l\'Atlas',NULL,'Paris','Ile de France','75019','FR',NULL,'0643105822'), +(169,903,'billing','Julie','Soulie',NULL,'17/19 rue de l\'Atlas',NULL,'Paris','Ile de France','75019','FR','julie.soulie96@yahoo.fr','0643105822'), +(170,903,'shipping','Julie','Soulie',NULL,'17/19 rue de l\'Atlas',NULL,'Paris','Ile de France','75019','FR',NULL,'0643105822'), +(171,904,'billing','Charles','Stoop',NULL,'Rue Edouard Olivier 27',NULL,'Watermael-Boitsfort','Bruxelles','1170','BE','charles.stoop@gmail.com','0493566360'), +(172,904,'shipping','Charles','Stoop',NULL,'Rue Edouard Olivier 27',NULL,'Watermael-Boitsfort','Bruxelles','1170','BE',NULL,'0493566360'), +(173,905,'billing','Amélie','Graux',NULL,'15 rue du Capitaine Ferber',NULL,'Paris',NULL,'75020','FR','amelie.grx@gmail.com','0667102260'), +(174,905,'shipping','Amélie','Graux',NULL,'15 rue du Capitaine Ferber',NULL,'Paris',NULL,'75020','FR',NULL,'0667102260'), +(175,906,'billing','Charles','Stoop',NULL,'Rue Edouard Olivier 27',NULL,'Watermael-Boitsfort','Bruxelles','1170','BE','charles.stoop@gmail.com','0493566360'), +(176,906,'shipping','Charles','Stoop',NULL,'Rue Edouard Olivier 27',NULL,'Watermael-Boitsfort','Bruxelles','1170','BE',NULL,'0493566360'), +(177,907,'billing','Raphael','Kuder',NULL,'140 boulevard de Ménilmontant',NULL,'Paris','IDF','75020','FR','raphael.kuderpro@gmail.com','0783260894'), +(178,907,'shipping','Raphael','Kuder',NULL,'140 boulevard de Ménilmontant',NULL,'Paris','IDF','75020','FR',NULL,'0783260894'), +(179,908,'billing','Eve marie','REDOUIN',NULL,'3 Rue des Hortensias',NULL,'Villebon-sur-Yvette',NULL,'91140','FR','evemarie.redouin@gmail.com','0642769155'), +(180,908,'shipping','Eve marie','REDOUIN',NULL,'3 Rue des Hortensias',NULL,'Villebon-sur-Yvette',NULL,'91140','FR',NULL,'0642769155'), +(181,909,'billing','Arnau','Oliver Antich',NULL,'Rue du Mont-Blanc 57, R.D.C.',NULL,'Saint-Gilles','Belgium','1060','BE','isoliverantich1@gmail.com','+34 648761712'), +(182,909,'shipping','Arnau','Oliver Antich',NULL,'Rue du Mont-Blanc 57, R.D.C.',NULL,'Saint-Gilles','Belgium','1060','BE',NULL,'+34 648761712'), +(183,910,'billing','Arnau','Oliver Antich',NULL,'Rue du Mont-Blanc 57, R.D.C.',NULL,'Saint-Gilles','Belgium','1060','BE','isoliverantich1@gmail.com','+34 648761712'), +(184,910,'shipping','Arnau','Oliver Antich',NULL,'Rue du Mont-Blanc 57, R.D.C.',NULL,'Saint-Gilles','Belgium','1060','BE',NULL,'+34 648761712'), +(185,911,'billing','Gauthier','COLIN HAAG',NULL,'5 rue de la Ville',NULL,'Metz',NULL,'57070','FR','lol@mdr.fr','0603436016'), +(186,911,'shipping','Gauthier','COLIN HAAG',NULL,'5 rue de la Ville',NULL,'Metz',NULL,'57070','FR',NULL,'0603436016'), +(187,912,'billing','Jérôme','Laurent',NULL,'5 place de la république',NULL,'BRIENNE LE CHATEAU','Aube','10500','FR','crack_one@hotmail.fr','+33695854956'), +(188,912,'shipping','Jérôme','Laurent',NULL,'5 place de la république',NULL,'BRIENNE LE CHATEAU','Aube','10500','FR',NULL,'+33695854956'), +(189,919,'billing','Anne sophie','Mabi',NULL,'4 rue des tulipiers',NULL,'Rosny sous bois',NULL,'93110','FR','annesophiemabi@gmail.com','+33678454888'), +(190,919,'shipping','Anne sophie','Mabi',NULL,'4 rue des tulipiers',NULL,'Rosny sous bois',NULL,'93110','FR',NULL,'+33678454888'), +(191,920,'billing','Anne sophie','Mabi',NULL,'4 rue des tulipiers',NULL,'Rosny sous bois',NULL,'93110','FR','annesophiemabi@gmail.com','+33678454888'), +(192,920,'shipping','Anne sophie','Mabi',NULL,'4 rue des tulipiers',NULL,'Rosny sous bois',NULL,'93110','FR',NULL,'+33678454888'), +(193,921,'billing','Anne sophie','Mabi',NULL,'4 rue des tulipiers',NULL,'Rosny sous bois',NULL,'93110','FR','annesophiemabi@gmail.com','+33678454888'), +(194,921,'shipping','Anne sophie','Mabi',NULL,'4 rue des tulipiers',NULL,'Rosny sous bois',NULL,'93110','FR',NULL,'+33678454888'), +(195,922,'billing','Anne sophie','Mabi',NULL,'4 rue des tulipiers',NULL,'Rosny sous bois',NULL,'93110','FR','annesophiemabi@gmail.com','+33678454888'), +(196,922,'shipping','Anne sophie','Mabi',NULL,'4 rue des tulipiers',NULL,'Rosny sous bois',NULL,'93110','FR',NULL,'+33678454888'), +(197,923,'billing','Zafiria','Efstratiadi',NULL,'Boulvard louis mettewie 445,boîte 6',NULL,'Bruxelles','Molenbeek-Saint-Jean','1080','BE','zafiria.efstratiadi@hotmail.com','0474918430'), +(198,923,'shipping','Zafiria','Efstratiadi',NULL,'Boulvard louis mettewie 445,boîte 6',NULL,'Bruxelles','Molenbeek-Saint-Jean','1080','BE',NULL,'0474918430'), +(199,924,'billing','Laurent','CAPELO',NULL,'24 Avenue Bourgain',NULL,'Issy-les-Moulineaux',NULL,'92130','FR','laurentpvcapelo@gmail.com','+33646234205'), +(200,924,'shipping','Laurent','CAPELO',NULL,'24 Avenue Bourgain',NULL,'Issy-les-Moulineaux',NULL,'92130','FR',NULL,'+33646234205'); +/*!40000 ALTER TABLE `haikuwp_wc_order_addresses` ENABLE KEYS */; +UNLOCK TABLES; +commit; + +-- +-- Table structure for table `haikuwp_wc_order_coupon_lookup` +-- + +DROP TABLE IF EXISTS `haikuwp_wc_order_coupon_lookup`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8mb4 */; +CREATE TABLE `haikuwp_wc_order_coupon_lookup` ( + `order_id` bigint(20) unsigned NOT NULL, + `coupon_id` bigint(20) NOT NULL, + `date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + `discount_amount` double NOT NULL DEFAULT 0, + PRIMARY KEY (`order_id`,`coupon_id`), + KEY `coupon_id` (`coupon_id`), + KEY `date_created` (`date_created`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `haikuwp_wc_order_coupon_lookup` +-- + +LOCK TABLES `haikuwp_wc_order_coupon_lookup` WRITE; +/*!40000 ALTER TABLE `haikuwp_wc_order_coupon_lookup` DISABLE KEYS */; +set autocommit=0; +/*!40000 ALTER TABLE `haikuwp_wc_order_coupon_lookup` ENABLE KEYS */; +UNLOCK TABLES; +commit; + +-- +-- Table structure for table `haikuwp_wc_order_operational_data` +-- + +DROP TABLE IF EXISTS `haikuwp_wc_order_operational_data`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8mb4 */; +CREATE TABLE `haikuwp_wc_order_operational_data` ( + `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, + `order_id` bigint(20) unsigned DEFAULT NULL, + `created_via` varchar(100) DEFAULT NULL, + `woocommerce_version` varchar(20) DEFAULT NULL, + `prices_include_tax` tinyint(1) DEFAULT NULL, + `coupon_usages_are_counted` tinyint(1) DEFAULT NULL, + `download_permission_granted` tinyint(1) DEFAULT NULL, + `cart_hash` varchar(100) DEFAULT NULL, + `new_order_email_sent` tinyint(1) DEFAULT NULL, + `order_key` varchar(100) DEFAULT NULL, + `order_stock_reduced` tinyint(1) DEFAULT NULL, + `date_paid_gmt` datetime DEFAULT NULL, + `date_completed_gmt` datetime DEFAULT NULL, + `shipping_tax_amount` decimal(26,8) DEFAULT NULL, + `shipping_total_amount` decimal(26,8) DEFAULT NULL, + `discount_tax_amount` decimal(26,8) DEFAULT NULL, + `discount_total_amount` decimal(26,8) DEFAULT NULL, + `recorded_sales` tinyint(1) DEFAULT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `order_id` (`order_id`), + KEY `order_key` (`order_key`) +) ENGINE=InnoDB AUTO_INCREMENT=708 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `haikuwp_wc_order_operational_data` +-- + +LOCK TABLES `haikuwp_wc_order_operational_data` WRITE; +/*!40000 ALTER TABLE `haikuwp_wc_order_operational_data` DISABLE KEYS */; +set autocommit=0; +INSERT INTO `haikuwp_wc_order_operational_data` VALUES +(275,861,'rest-api','9.4.2',0,1,1,'',1,'wc_order_mIB56la8Hu9rh',0,'2024-11-28 17:00:31',NULL,0.00000000,300.00000000,0.00000000,0.00000000,1), +(278,862,'rest-api','9.4.2',0,1,1,'',1,'wc_order_g6qGGwFmCLhG4',1,'2024-11-28 15:42:54',NULL,0.00000000,0.00000000,0.00000000,0.00000000,1), +(315,866,'rest-api','9.4.2',0,1,1,'',1,'wc_order_GfVnri1zucEHV',1,'2024-11-29 09:07:39',NULL,0.00000000,0.00000000,0.00000000,0.00000000,1), +(324,867,'rest-api','9.4.2',0,0,0,'',0,'wc_order_Onpg5Ph1VT0kX',0,NULL,NULL,0.00000000,0.00000000,0.00000000,0.00000000,0), +(327,868,'rest-api','9.4.2',0,1,1,'',1,'wc_order_LbjBOTM6Pg4Y8',1,'2024-11-29 17:26:38',NULL,0.00000000,0.00000000,0.00000000,0.00000000,1), +(336,869,'rest-api','9.4.2',0,1,1,'',1,'wc_order_ZpJT7n8ezcpc5',1,'2024-12-02 10:06:46',NULL,0.00000000,0.00000000,0.00000000,0.00000000,1), +(345,870,'rest-api','9.4.2',0,0,0,'',0,'wc_order_QMiR6T3KaJtKv',0,NULL,NULL,0.00000000,0.00000000,0.00000000,0.00000000,0), +(348,871,'rest-api','9.4.2',0,1,1,'',1,'wc_order_14ze4V3I7fPgF',1,'2024-12-02 16:34:12',NULL,0.00000000,0.00000000,0.00000000,0.00000000,1), +(357,872,'rest-api','9.4.2',0,1,1,'',1,'wc_order_DpCz0MofHOMDQ',1,'2024-12-03 17:04:43',NULL,0.00000000,0.00000000,0.00000000,0.00000000,1), +(366,873,'rest-api','9.4.2',0,1,1,'',1,'wc_order_sAvbLtrCudWx8',1,'2024-12-03 22:55:58',NULL,0.00000000,0.00000000,0.00000000,0.00000000,1), +(381,876,'rest-api','9.4.3',0,0,0,'',0,'wc_order_WLxB8y0RH3GN1',0,NULL,NULL,0.00000000,0.00000000,0.00000000,0.00000000,0), +(384,877,'rest-api','9.4.3',0,0,0,'',0,'wc_order_aW0gsIEvhmbBI',0,NULL,NULL,0.00000000,0.00000000,0.00000000,0.00000000,0), +(387,878,'rest-api','9.4.3',0,1,1,'',1,'wc_order_FErghd9o15Mhi',1,'2024-12-06 13:10:02','2024-12-12 22:07:33',0.00000000,0.00000000,0.00000000,0.00000000,1), +(396,879,'rest-api','9.4.3',0,1,1,'',1,'wc_order_uzC3Ve7jqfc8V',1,'2024-12-06 14:22:12','2024-12-12 21:43:42',0.00000000,0.00000000,0.00000000,0.00000000,1), +(405,880,'rest-api','9.4.3',0,1,1,'',1,'wc_order_HQOvW1OdAL776',1,'2024-12-12 16:59:06','2024-12-15 09:59:40',0.00000000,0.00000000,0.00000000,0.00000000,1), +(416,881,'rest-api','9.4.3',0,1,1,'',1,'wc_order_WWQmiUtXyzFol',1,'2024-12-13 08:39:25','2024-12-16 14:13:34',0.00000000,1200.00000000,0.00000000,0.00000000,1), +(431,884,'rest-api','9.4.3',0,1,1,'',1,'wc_order_E7TjpmjrlfgqK',1,'2024-12-14 10:10:27','2024-12-16 14:13:01',0.00000000,0.00000000,0.00000000,0.00000000,1), +(441,885,'rest-api','9.4.3',0,1,1,'',1,'wc_order_dRRIRApWpQVvv',1,'2024-12-16 09:17:25','2024-12-18 17:19:19',0.00000000,0.00000000,0.00000000,0.00000000,1), +(452,886,'rest-api','9.4.3',0,1,1,'',1,'wc_order_j7Ko64S7WIAGg',1,'2024-12-17 08:40:36','2024-12-18 17:16:40',0.00000000,0.00000000,0.00000000,0.00000000,1), +(461,887,'rest-api','9.4.3',0,1,1,'',1,'wc_order_cxY5Hd9F3yfSx',1,'2024-12-18 15:14:07','2024-12-31 11:59:52',0.00000000,0.00000000,0.00000000,0.00000000,1), +(472,888,'rest-api','9.4.3',0,1,1,'',1,'wc_order_EWQEpfmuwjvdy',1,'2024-12-19 09:09:28','2024-12-20 18:55:34',0.00000000,12.00000000,0.00000000,0.00000000,1), +(482,889,'rest-api','9.4.3',0,1,1,'',1,'wc_order_C8HPkCjTn8qGF',1,'2024-12-26 12:41:16','2024-12-31 11:59:03',0.00000000,0.00000000,0.00000000,0.00000000,1), +(491,890,NULL,'9.4.3',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0.00000000,0.00000000,0.00000000,0.00000000,NULL), +(494,891,NULL,'9.4.3',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0.00000000,0.00000000,0.00000000,0.00000000,NULL), +(497,892,'rest-api','9.4.3',0,0,0,'',0,'wc_order_DSYDx6HTwefzB',0,NULL,NULL,0.00000000,0.00000000,0.00000000,0.00000000,0), +(502,893,'rest-api','9.4.3',0,0,0,'',0,'wc_order_8wGrIq5ASqfBl',0,NULL,NULL,0.00000000,3.00000000,0.00000000,0.00000000,0), +(505,894,'rest-api','9.4.3',0,1,1,'',1,'wc_order_BlQYC36BaeTyn',1,'2025-01-03 09:04:36','2025-01-07 14:56:35',0.00000000,3.00000000,0.00000000,0.00000000,1), +(515,895,'rest-api','9.4.3',0,1,1,'',1,'wc_order_2xSBNPp21uZ5r',1,'2025-01-09 12:03:17','2025-01-14 19:47:45',0.00000000,0.00000000,0.00000000,0.00000000,1), +(525,896,NULL,'9.4.3',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0.00000000,0.00000000,0.00000000,0.00000000,NULL), +(528,897,'rest-api','9.4.3',0,1,1,'',1,'wc_order_nvCeSzsnDrcfh',1,'2025-01-29 10:33:02','2025-02-03 17:36:19',0.00000000,0.00000000,0.00000000,0.00000000,1), +(537,898,'rest-api','9.4.3',0,0,0,'',0,'wc_order_WV96AzBB6vqxe',0,NULL,NULL,0.00000000,3.00000000,0.00000000,0.00000000,0), +(540,899,'rest-api','9.4.3',0,1,1,'',1,'wc_order_y7Idk0wZ92Kf0',1,'2025-01-30 08:57:26','2025-02-03 17:37:02',0.00000000,3.00000000,0.00000000,0.00000000,1), +(551,900,'rest-api','9.4.3',0,0,0,'',0,'wc_order_vfYF53SLgxEsH',0,NULL,NULL,0.00000000,0.00000000,0.00000000,0.00000000,0), +(554,901,'rest-api','9.4.3',0,1,1,'',1,'wc_order_EUV5aiBi07rzG',1,'2025-02-23 17:08:48',NULL,0.00000000,3.00000000,0.00000000,0.00000000,1), +(563,902,'rest-api','9.4.3',0,0,0,'',0,'wc_order_zGVBcZqGbnaUi',0,NULL,NULL,0.00000000,0.00000000,0.00000000,0.00000000,0), +(566,903,'rest-api','9.4.3',0,1,1,'',1,'wc_order_vAtkq8RMPMGTb',1,'2025-02-26 12:53:34','2025-03-01 08:14:27',0.00000000,0.00000000,0.00000000,0.00000000,1), +(576,904,'rest-api','9.4.3',0,0,0,'',0,'wc_order_ZDIVsBShe5GGn',0,NULL,NULL,0.00000000,0.00000000,0.00000000,0.00000000,0), +(579,905,'rest-api','9.4.3',0,1,1,'',1,'wc_order_LMPM4pRGwA2nd',1,'2025-03-03 10:46:58','2025-03-06 08:24:33',0.00000000,0.00000000,0.00000000,0.00000000,1), +(588,906,'rest-api','9.4.3',0,1,1,'',1,'wc_order_hU6nJ5TqPP2wT',1,'2025-03-03 11:11:31','2025-03-06 08:25:36',0.00000000,0.00000000,0.00000000,0.00000000,1), +(597,907,'rest-api','9.4.3',0,1,1,'',1,'wc_order_DCBDWc0ZYTU0z',1,'2025-03-05 11:05:44','2025-03-18 09:40:39',0.00000000,0.00000000,0.00000000,0.00000000,1), +(609,908,'rest-api','9.4.3',0,1,1,'',1,'wc_order_hRtZ57XslBZT7',1,'2025-03-23 21:41:40','2025-04-04 06:41:39',0.00000000,0.00000000,0.00000000,0.00000000,1), +(619,909,'rest-api','9.4.3',0,0,0,'',0,'wc_order_cFZg51NEJ46Uh',0,NULL,NULL,0.00000000,3.00000000,0.00000000,0.00000000,0), +(622,910,'rest-api','9.8.4',0,1,1,'',1,'wc_order_kXbYV8JWxxFPV',1,'2025-04-08 11:45:10','2025-05-11 13:35:32',0.00000000,3.00000000,0.00000000,0.00000000,1), +(631,911,'rest-api','9.8.2',0,0,0,'',0,'wc_order_CbFLxIXlsqY2F',0,NULL,NULL,0.00000000,0.00000000,0.00000000,0.00000000,0), +(634,912,'rest-api','9.8.5',0,1,1,'',1,'wc_order_ffo5RfplSyEWZ',1,'2025-05-09 09:50:57','2025-05-16 05:54:00',0.00000000,3.00000000,0.00000000,0.00000000,1), +(643,919,'rest-api','9.8.4',0,0,0,'',0,'wc_order_ztQMr09oE7jlP',0,NULL,NULL,0.00000000,0.00000000,0.00000000,0.00000000,0), +(646,920,'rest-api','9.8.4',0,0,0,'',0,'wc_order_F2CMSPdH6VVnz',0,NULL,NULL,0.00000000,0.00000000,0.00000000,0.00000000,0), +(649,921,'rest-api','9.8.5',0,1,1,'',1,'wc_order_SJg4VAI3wKTkp',1,'2025-05-09 19:57:36','2025-05-16 05:54:26',0.00000000,0.00000000,0.00000000,0.00000000,1), +(652,922,'rest-api','9.8.5',0,1,1,'',1,'wc_order_i4LpjO4IGhJql',1,'2025-05-16 05:54:37','2025-05-16 05:55:04',0.00000000,0.00000000,0.00000000,0.00000000,1), +(674,923,'rest-api','9.8.5',0,0,0,'',0,'wc_order_489IFs7nUiMpg',0,NULL,NULL,0.00000000,0.00000000,0.00000000,0.00000000,0), +(677,924,'rest-api','9.8.5',0,1,1,'',1,'wc_order_CtkYhNBPJqYg1',1,'2025-06-05 07:45:48','2025-06-09 10:59:56',0.00000000,0.00000000,0.00000000,0.00000000,1), +(687,981,'rest-api','9.9.4',0,0,0,'',0,'wc_order_72FNef8hhAh5j',0,NULL,NULL,0.00000000,0.00000000,0.00000000,0.00000000,0), +(690,997,'rest-api','9.9.4',0,1,1,'',1,'wc_order_PE3U54MIfW9x8',1,'2025-06-21 09:56:06',NULL,0.00000000,0.00000000,0.00000000,0.00000000,1), +(699,998,'rest-api','9.9.4',0,0,0,'',0,'wc_order_9B3ACYvBxZim9',0,NULL,NULL,0.00000000,0.00000000,0.00000000,0.00000000,0), +(702,999,'rest-api','9.9.4',0,0,0,'',0,'wc_order_x7s5iYaE0ZuAq',0,NULL,NULL,0.00000000,0.00000000,0.00000000,0.00000000,0), +(705,1000,'rest-api','9.9.4',0,0,0,'',0,'wc_order_wBk7uhHsT2ZUM',0,NULL,NULL,0.00000000,0.00000000,0.00000000,0.00000000,0); +/*!40000 ALTER TABLE `haikuwp_wc_order_operational_data` ENABLE KEYS */; +UNLOCK TABLES; +commit; + +-- +-- Table structure for table `haikuwp_wc_order_product_lookup` +-- + +DROP TABLE IF EXISTS `haikuwp_wc_order_product_lookup`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8mb4 */; +CREATE TABLE `haikuwp_wc_order_product_lookup` ( + `order_item_id` bigint(20) unsigned NOT NULL, + `order_id` bigint(20) unsigned NOT NULL, + `product_id` bigint(20) unsigned NOT NULL, + `variation_id` bigint(20) unsigned NOT NULL, + `customer_id` bigint(20) unsigned DEFAULT NULL, + `date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + `product_qty` int(11) NOT NULL, + `product_net_revenue` double NOT NULL DEFAULT 0, + `product_gross_revenue` double NOT NULL DEFAULT 0, + `coupon_amount` double NOT NULL DEFAULT 0, + `tax_amount` double NOT NULL DEFAULT 0, + `shipping_amount` double NOT NULL DEFAULT 0, + `shipping_tax_amount` double NOT NULL DEFAULT 0, + PRIMARY KEY (`order_item_id`), + KEY `order_id` (`order_id`), + KEY `product_id` (`product_id`), + KEY `customer_id` (`customer_id`), + KEY `date_created` (`date_created`), + KEY `customer_product_date` (`customer_id`,`product_id`,`date_created`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `haikuwp_wc_order_product_lookup` +-- + +LOCK TABLES `haikuwp_wc_order_product_lookup` WRITE; +/*!40000 ALTER TABLE `haikuwp_wc_order_product_lookup` DISABLE KEYS */; +set autocommit=0; +INSERT INTO `haikuwp_wc_order_product_lookup` VALUES +(136,861,331,0,6,'2024-11-28 16:21:17',1,35,335,0,0,300,0), +(138,862,288,646,7,'2024-11-28 16:40:46',1,80,80,0,0,0,0), +(147,866,251,0,8,'2024-11-29 10:05:49',1,65,65,0,0,0,0), +(149,867,258,0,9,'2024-11-29 10:30:23',1,75,75,0,0,0,0), +(151,868,251,0,9,'2024-11-29 18:22:16',1,65,65,0,0,0,0), +(152,868,271,0,9,'2024-11-29 18:22:16',1,95,95,0,0,0,0), +(154,869,202,637,10,'2024-12-02 11:05:43',1,50,50,0,0,0,0), +(155,869,291,649,10,'2024-12-02 11:05:43',1,70,70,0,0,0,0), +(157,870,398,0,11,'2024-12-02 11:46:48',1,65,65,0,0,0,0), +(159,871,521,523,12,'2024-12-02 17:33:11',1,60,60,0,0,0,0), +(160,871,342,563,12,'2024-12-02 17:33:11',1,25,25,0,0,0,0), +(161,871,342,560,12,'2024-12-02 17:33:11',1,58,58,0,0,0,0), +(163,872,263,0,13,'2024-12-03 18:03:18',1,90,90,0,0,0,0), +(165,873,306,652,14,'2024-12-03 23:53:41',1,70,70,0,0,0,0), +(166,873,183,566,14,'2024-12-03 23:53:41',1,70,70,0,0,0,0), +(167,873,274,0,14,'2024-12-03 23:53:41',1,95,95,0,0,0,0), +(173,876,288,646,15,'2024-12-06 14:04:13',1,80,80,0,0,0,0), +(175,877,288,646,15,'2024-12-06 14:04:13',1,80,80,0,0,0,0), +(177,878,288,646,15,'2024-12-06 14:08:34',1,80,80,0,0,0,0), +(178,878,285,642,15,'2024-12-06 14:08:34',1,75,75,0,0,0,0), +(180,879,312,655,16,'2024-12-06 15:04:22',1,75,75,0,0,0,0), +(182,880,335,0,17,'2024-12-12 17:55:38',1,40,40,0,0,0,0), +(183,880,545,553,17,'2024-12-12 17:55:38',1,60,60,0,0,0,0), +(185,881,306,653,18,'2024-12-13 09:37:26',1,48,1248,0,0,1200,0), +(193,884,271,0,19,'2024-12-14 11:10:01',1,95,95,0,0,0,0), +(195,885,288,646,20,'2024-12-16 10:16:07',1,80,80,0,0,0,0), +(197,886,545,553,21,'2024-12-17 09:40:04',1,60,60,0,0,0,0), +(198,886,490,494,21,'2024-12-17 09:40:04',1,45,45,0,0,0,0), +(200,887,365,677,22,'2024-12-18 16:13:28',1,60,60,0,0,0,0), +(202,888,306,651,18,'2024-12-19 10:08:20',1,50,62,0,0,12,0), +(204,889,325,0,23,'2024-12-26 13:37:45',1,35,35,0,0,0,0), +(205,889,554,555,23,'2024-12-26 13:37:45',1,55,55,0,0,0,0), +(206,889,435,0,23,'2024-12-26 13:37:45',1,35,35,0,0,0,0), +(207,889,521,523,23,'2024-12-26 13:37:45',1,60,60,0,0,0,0), +(208,889,251,0,23,'2024-12-26 13:37:45',1,65,65,0,0,0,0), +(210,892,554,555,24,'2024-12-30 19:59:22',1,55,55,0,0,0,0), +(212,893,335,0,25,'2025-01-03 09:10:31',1,40,43,0,0,3,0), +(214,894,331,0,25,'2025-01-03 10:04:01',1,35,38,0,0,3,0), +(216,895,202,638,26,'2025-01-09 13:01:26',1,85,85,0,0,0,0), +(217,895,306,652,26,'2025-01-09 13:01:26',1,70,70,0,0,0,0), +(219,897,291,649,27,'2025-01-29 11:32:07',1,70,70,0,0,0,0), +(221,898,435,0,28,'2025-01-30 09:55:09',1,35,38,0,0,3,0), +(223,899,435,0,28,'2025-01-30 09:57:12',1,35,38,0,0,3,0), +(225,900,133,135,29,'2025-02-21 20:32:16',1,150,150,0,0,0,0), +(227,901,430,845,30,'2025-02-23 18:08:07',1,45,48,0,0,3,0), +(229,902,271,0,31,'2025-02-26 13:51:14',1,95,95,0,0,0,0), +(231,903,271,0,31,'2025-02-26 13:51:16',1,95,95,0,0,0,0), +(233,904,168,200,32,'2025-03-03 08:31:50',1,150,150,0,0,0,0), +(235,905,274,0,33,'2025-03-03 11:45:26',1,95,95,0,0,0,0), +(237,906,168,200,32,'2025-03-03 12:10:15',1,150,150,0,0,0,0), +(239,907,168,200,34,'2025-03-05 12:04:07',1,150,150,0,0,0,0), +(240,907,447,0,34,'2025-03-05 12:04:07',1,40,40,0,0,0,0), +(242,908,342,560,35,'2025-03-23 22:39:51',1,58,58,0,0,0,0), +(243,908,433,478,35,'2025-03-23 22:39:51',1,48,48,0,0,0,0), +(245,909,328,0,36,'2025-04-07 13:50:33',1,40,43,0,0,3,0), +(247,910,328,0,36,'2025-04-08 13:44:22',1,40,43,0,0,3,0), +(249,911,625,633,37,'2025-05-05 11:14:57',1,65,65,0,0,0,0), +(251,912,318,0,38,'2025-05-09 11:49:40',1,40,43,0,0,3,0), +(253,919,490,494,39,'2025-05-09 21:54:35',1,50,50,0,0,0,0), +(254,919,342,563,39,'2025-05-09 21:54:35',2,60,60,0,0,0,0), +(256,920,342,563,39,'2025-05-09 21:56:26',2,60,60,0,0,0,0), +(258,921,342,563,39,'2025-05-09 21:56:27',2,60,60,0,0,0,0), +(260,922,342,563,39,'2025-05-09 21:56:28',2,60,60,0,0,0,0), +(262,923,285,642,40,'2025-06-04 13:13:31',1,80,80,0,0,0,0), +(264,924,447,0,41,'2025-06-05 09:44:45',1,45,45,0,0,0,0), +(265,924,435,0,41,'2025-06-05 09:44:45',1,40,40,0,0,0,0), +(266,924,328,0,41,'2025-06-05 09:44:45',1,45,45,0,0,0,0), +(268,981,766,767,42,'2025-06-20 12:13:00',2,170,170,0,0,0,0), +(270,997,447,0,43,'2025-06-21 11:54:31',1,45,45,0,0,0,0), +(271,997,202,638,43,'2025-06-21 11:54:31',1,85,85,0,0,0,0), +(273,998,625,630,44,'2025-06-21 14:43:50',1,65,65,0,0,0,0), +(275,999,994,0,45,'2025-06-21 14:54:52',1,100,100,0,0,0,0), +(277,1000,625,630,46,'2025-06-21 14:58:23',1,65,65,0,0,0,0), +(278,1000,994,0,46,'2025-06-21 14:58:23',1,100,100,0,0,0,0); +/*!40000 ALTER TABLE `haikuwp_wc_order_product_lookup` ENABLE KEYS */; +UNLOCK TABLES; +commit; + +-- +-- Table structure for table `haikuwp_wc_order_stats` +-- + +DROP TABLE IF EXISTS `haikuwp_wc_order_stats`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8mb4 */; +CREATE TABLE `haikuwp_wc_order_stats` ( + `order_id` bigint(20) unsigned NOT NULL, + `parent_id` bigint(20) unsigned NOT NULL DEFAULT 0, + `date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + `date_created_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + `date_paid` datetime DEFAULT '0000-00-00 00:00:00', + `date_completed` datetime DEFAULT '0000-00-00 00:00:00', + `num_items_sold` int(11) NOT NULL DEFAULT 0, + `total_sales` double NOT NULL DEFAULT 0, + `tax_total` double NOT NULL DEFAULT 0, + `shipping_total` double NOT NULL DEFAULT 0, + `net_total` double NOT NULL DEFAULT 0, + `returning_customer` tinyint(1) DEFAULT NULL, + `status` varchar(200) NOT NULL, + `customer_id` bigint(20) unsigned NOT NULL, + PRIMARY KEY (`order_id`), + KEY `date_created` (`date_created`), + KEY `customer_id` (`customer_id`), + KEY `status` (`status`(191)) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `haikuwp_wc_order_stats` +-- + +LOCK TABLES `haikuwp_wc_order_stats` WRITE; +/*!40000 ALTER TABLE `haikuwp_wc_order_stats` DISABLE KEYS */; +set autocommit=0; +INSERT INTO `haikuwp_wc_order_stats` VALUES +(861,0,'2024-11-28 16:21:17','2024-11-28 15:21:17','2024-11-28 18:00:31',NULL,1,335,0,300,35,0,'wc-pending',6), +(862,0,'2024-11-28 16:40:46','2024-11-28 15:40:46','2024-11-28 16:42:54',NULL,1,80,0,0,80,0,'wc-processing',7), +(866,0,'2024-11-29 10:05:49','2024-11-29 09:05:49','2024-11-29 10:07:39',NULL,1,65,0,0,65,0,'wc-processing',8), +(867,0,'2024-11-29 10:30:23','2024-11-29 09:30:23',NULL,NULL,1,75,0,0,75,0,'wc-pending',9), +(868,0,'2024-11-29 18:22:16','2024-11-29 17:22:16','2024-11-29 18:26:38',NULL,2,160,0,0,160,0,'wc-processing',9), +(869,0,'2024-12-02 11:05:43','2024-12-02 10:05:43','2024-12-02 11:06:46',NULL,2,120,0,0,120,0,'wc-processing',10), +(870,0,'2024-12-02 11:46:48','2024-12-02 10:46:48',NULL,NULL,1,65,0,0,65,0,'wc-pending',11), +(871,0,'2024-12-02 17:33:11','2024-12-02 16:33:11','2024-12-02 17:34:12',NULL,3,143,0,0,143,0,'wc-processing',12), +(872,0,'2024-12-03 18:03:18','2024-12-03 17:03:18','2024-12-03 18:04:43',NULL,1,90,0,0,90,0,'wc-processing',13), +(873,0,'2024-12-03 23:53:41','2024-12-03 22:53:41','2024-12-03 23:55:58',NULL,3,235,0,0,235,0,'wc-processing',14), +(876,0,'2024-12-06 14:04:13','2024-12-06 13:04:13',NULL,NULL,1,80,0,0,80,0,'wc-pending',15), +(877,0,'2024-12-06 14:04:13','2024-12-06 13:04:13',NULL,NULL,1,80,0,0,80,0,'wc-pending',15), +(878,0,'2024-12-06 14:08:34','2024-12-06 13:08:34','2024-12-06 14:10:02','2024-12-12 23:07:33',2,155,0,0,155,0,'wc-completed',15), +(879,0,'2024-12-06 15:04:22','2024-12-06 14:04:22','2024-12-06 15:22:12','2024-12-12 22:43:42',1,75,0,0,75,0,'wc-completed',16), +(880,0,'2024-12-12 17:55:38','2024-12-12 16:55:38','2024-12-12 17:59:06','2024-12-15 10:59:40',2,100,0,0,100,0,'wc-refunded',17), +(881,0,'2024-12-13 09:37:26','2024-12-13 08:37:26','2024-12-13 09:39:25','2024-12-16 15:13:34',1,1248,0,1200,48,0,'wc-completed',18), +(884,0,'2024-12-14 11:10:01','2024-12-14 10:10:01','2024-12-14 11:10:27','2024-12-16 15:13:01',1,95,0,0,95,0,'wc-refunded',19), +(885,0,'2024-12-16 10:16:07','2024-12-16 09:16:07','2024-12-16 10:17:25','2024-12-18 18:19:19',1,80,0,0,80,0,'wc-completed',20), +(886,0,'2024-12-17 09:40:04','2024-12-17 08:40:04','2024-12-17 09:40:36','2024-12-18 18:16:40',2,105,0,0,105,0,'wc-completed',21), +(887,0,'2024-12-18 16:13:28','2024-12-18 15:13:28','2024-12-18 16:14:07','2024-12-31 12:59:52',1,60,0,0,60,0,'wc-completed',22), +(888,0,'2024-12-19 10:08:20','2024-12-19 09:08:20','2024-12-19 10:09:28','2024-12-20 19:55:34',1,62,0,12,50,1,'wc-completed',18), +(889,0,'2024-12-26 13:37:45','2024-12-26 12:37:45','2024-12-26 13:41:16','2024-12-31 12:59:03',5,250,0,0,250,0,'wc-completed',23), +(890,888,'2024-12-29 15:53:20','2024-12-29 14:53:20','2024-12-29 15:53:20','2024-12-29 15:53:20',0,-12,0,0,-12,NULL,'wc-completed',18), +(891,880,'2024-12-30 11:40:43','2024-12-30 10:40:43','2024-12-30 11:40:43','2024-12-30 11:40:43',0,-100,0,0,-100,NULL,'wc-refunded',17), +(892,0,'2024-12-30 19:59:22','2024-12-30 18:59:22',NULL,NULL,1,55,0,0,55,0,'wc-pending',24), +(893,0,'2025-01-03 09:10:31','2025-01-03 08:10:31',NULL,NULL,1,43,0,3,40,0,'wc-pending',25), +(894,0,'2025-01-03 10:04:01','2025-01-03 09:04:01','2025-01-03 10:04:36','2025-01-07 15:56:35',1,38,0,3,35,0,'wc-completed',25), +(895,0,'2025-01-09 13:01:26','2025-01-09 12:01:26','2025-01-09 13:03:17','2025-01-14 20:47:45',2,155,0,0,155,0,'wc-completed',26), +(896,884,'2025-01-23 22:51:50','2025-01-23 21:51:50','2025-01-23 22:51:50','2025-01-23 22:51:50',0,-95,0,0,-95,NULL,'wc-refunded',19), +(897,0,'2025-01-29 11:32:07','2025-01-29 10:32:07','2025-01-29 11:33:02','2025-02-03 18:36:19',1,70,0,0,70,0,'wc-completed',27), +(898,0,'2025-01-30 09:55:09','2025-01-30 08:55:09',NULL,NULL,1,38,0,3,35,0,'wc-pending',28), +(899,0,'2025-01-30 09:57:12','2025-01-30 08:57:12','2025-01-30 09:57:26','2025-02-03 18:37:02',1,38,0,3,35,0,'wc-completed',28), +(900,0,'2025-02-21 20:32:16','2025-02-21 19:32:16',NULL,NULL,1,150,0,0,150,0,'wc-pending',29), +(901,0,'2025-02-23 18:08:07','2025-02-23 17:08:07','2025-02-23 18:08:48',NULL,1,48,0,3,45,0,'wc-processing',30), +(902,0,'2025-02-26 13:51:14','2025-02-26 12:51:14',NULL,NULL,1,95,0,0,95,0,'wc-pending',31), +(903,0,'2025-02-26 13:51:16','2025-02-26 12:51:16','2025-02-26 13:53:34','2025-03-01 09:14:27',1,95,0,0,95,0,'wc-completed',31), +(904,0,'2025-03-03 08:31:50','2025-03-03 07:31:50',NULL,NULL,1,150,0,0,150,0,'wc-pending',32), +(905,0,'2025-03-03 11:45:26','2025-03-03 10:45:26','2025-03-03 11:46:58','2025-03-06 09:24:33',1,95,0,0,95,0,'wc-completed',33), +(906,0,'2025-03-03 12:10:15','2025-03-03 11:10:15','2025-03-03 12:11:31','2025-03-06 09:25:36',1,150,0,0,150,0,'wc-completed',32), +(907,0,'2025-03-05 12:04:07','2025-03-05 11:04:07','2025-03-05 12:05:44','2025-03-18 10:40:39',2,190,0,0,190,0,'wc-completed',34), +(908,0,'2025-03-23 22:39:51','2025-03-23 21:39:51','2025-03-23 22:41:40','2025-04-04 08:41:39',2,106,0,0,106,0,'wc-completed',35), +(909,0,'2025-04-07 13:50:33','2025-04-07 11:50:33',NULL,NULL,1,43,0,3,40,0,'wc-pending',36), +(910,0,'2025-04-08 13:44:22','2025-04-08 11:44:22','2025-04-08 13:45:10','2025-05-11 15:35:32',1,43,0,3,40,0,'wc-completed',36), +(911,0,'2025-05-05 11:14:57','2025-05-05 09:14:57',NULL,NULL,1,65,0,0,65,0,'wc-pending',37), +(912,0,'2025-05-09 11:49:40','2025-05-09 09:49:40','2025-05-09 11:50:57','2025-05-16 07:54:00',1,43,0,3,40,0,'wc-completed',38), +(919,0,'2025-05-09 21:54:35','2025-05-09 19:54:35',NULL,NULL,3,110,0,0,110,0,'wc-pending',39), +(920,0,'2025-05-09 21:56:26','2025-05-09 19:56:26',NULL,NULL,2,60,0,0,60,0,'wc-pending',39), +(921,0,'2025-05-09 21:56:27','2025-05-09 19:56:27','2025-05-09 21:57:36','2025-05-16 07:54:26',2,60,0,0,60,0,'wc-completed',39), +(922,0,'2025-05-09 21:56:28','2025-05-09 19:56:28','2025-05-16 07:54:37','2025-05-16 07:55:04',2,60,0,0,60,1,'wc-completed',39), +(923,0,'2025-06-04 13:13:31','2025-06-04 11:13:31',NULL,NULL,1,80,0,0,80,0,'wc-pending',40), +(924,0,'2025-06-05 09:44:45','2025-06-05 07:44:45','2025-06-05 09:45:48','2025-06-09 12:59:56',3,130,0,0,130,0,'wc-completed',41), +(981,0,'2025-06-20 12:13:00','2025-06-20 10:13:00',NULL,NULL,2,170,0,0,170,0,'wc-pending',42), +(997,0,'2025-06-21 11:54:31','2025-06-21 09:54:31','2025-06-21 11:56:06',NULL,2,130,0,0,130,0,'wc-processing',43), +(998,0,'2025-06-21 14:43:50','2025-06-21 12:43:50',NULL,NULL,1,65,0,0,65,0,'wc-pending',44), +(999,0,'2025-06-21 14:54:52','2025-06-21 12:54:52',NULL,NULL,1,100,0,0,100,0,'wc-pending',45), +(1000,0,'2025-06-21 14:58:23','2025-06-21 12:58:23',NULL,NULL,2,165,0,0,165,0,'wc-pending',46); +/*!40000 ALTER TABLE `haikuwp_wc_order_stats` ENABLE KEYS */; +UNLOCK TABLES; +commit; + +-- +-- Table structure for table `haikuwp_wc_order_tax_lookup` +-- + +DROP TABLE IF EXISTS `haikuwp_wc_order_tax_lookup`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8mb4 */; +CREATE TABLE `haikuwp_wc_order_tax_lookup` ( + `order_id` bigint(20) unsigned NOT NULL, + `tax_rate_id` bigint(20) unsigned NOT NULL, + `date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + `shipping_tax` double NOT NULL DEFAULT 0, + `order_tax` double NOT NULL DEFAULT 0, + `total_tax` double NOT NULL DEFAULT 0, + PRIMARY KEY (`order_id`,`tax_rate_id`), + KEY `tax_rate_id` (`tax_rate_id`), + KEY `date_created` (`date_created`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `haikuwp_wc_order_tax_lookup` +-- + +LOCK TABLES `haikuwp_wc_order_tax_lookup` WRITE; +/*!40000 ALTER TABLE `haikuwp_wc_order_tax_lookup` DISABLE KEYS */; +set autocommit=0; +/*!40000 ALTER TABLE `haikuwp_wc_order_tax_lookup` ENABLE KEYS */; +UNLOCK TABLES; +commit; + +-- +-- Table structure for table `haikuwp_wc_orders` +-- + +DROP TABLE IF EXISTS `haikuwp_wc_orders`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8mb4 */; +CREATE TABLE `haikuwp_wc_orders` ( + `id` bigint(20) unsigned NOT NULL, + `status` varchar(20) DEFAULT NULL, + `currency` varchar(10) DEFAULT NULL, + `type` varchar(20) DEFAULT NULL, + `tax_amount` decimal(26,8) DEFAULT NULL, + `total_amount` decimal(26,8) DEFAULT NULL, + `customer_id` bigint(20) unsigned DEFAULT NULL, + `billing_email` varchar(320) DEFAULT NULL, + `date_created_gmt` datetime DEFAULT NULL, + `date_updated_gmt` datetime DEFAULT NULL, + `parent_order_id` bigint(20) unsigned DEFAULT NULL, + `payment_method` varchar(100) DEFAULT NULL, + `payment_method_title` text DEFAULT NULL, + `transaction_id` varchar(100) DEFAULT NULL, + `ip_address` varchar(100) DEFAULT NULL, + `user_agent` text DEFAULT NULL, + `customer_note` text DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `status` (`status`), + KEY `date_created` (`date_created_gmt`), + KEY `customer_id_billing_email` (`customer_id`,`billing_email`(171)), + KEY `billing_email` (`billing_email`(191)), + KEY `type_status_date` (`type`,`status`,`date_created_gmt`), + KEY `parent_order_id` (`parent_order_id`), + KEY `date_updated` (`date_updated_gmt`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `haikuwp_wc_orders` +-- + +LOCK TABLES `haikuwp_wc_orders` WRITE; +/*!40000 ALTER TABLE `haikuwp_wc_orders` DISABLE KEYS */; +set autocommit=0; +INSERT INTO `haikuwp_wc_orders` VALUES +(861,'wc-pending','EUR','shop_order',0.00000000,335.00000000,0,'charlottegerard7@gmail.com','2024-11-28 15:21:17','2024-11-28 19:40:39',0,'','','','','',''), +(862,'wc-processing','EUR','shop_order',0.00000000,80.00000000,0,'sofia.balducci99@gmail.com','2024-11-28 15:40:46','2024-12-04 08:33:07',0,'','','cs_live_a1svQoVpQTAiSee2hdTTRsnPYQaQXDq7RNxaNg90PXi3YyGZtLHzO34Ci0','','',''), +(866,'wc-processing','EUR','shop_order',0.00000000,65.00000000,0,'claudia.vanvynckt@hotmail.fr','2024-11-29 09:05:49','2024-11-29 09:07:40',0,'','','cs_live_a1d08FUjZ9BRf9odbxjxgKnG6B1B6qh8sXCNcDnQ4iYPYGuJO0eDUYFPza','','',''), +(867,'wc-pending','EUR','shop_order',0.00000000,75.00000000,0,'lucie.leiner@gmail.com','2024-11-29 09:30:23','2024-11-29 09:30:23',0,'','','','','',''), +(868,'wc-processing','EUR','shop_order',0.00000000,160.00000000,0,'lucie.leiner@gmail.com','2024-11-29 17:22:16','2024-11-29 17:26:38',0,'','','cs_live_b1rl5EdRJzCtNzMlKISIV6pLx1QoXSQKMRMJLT0kSRouevb2zQ23nyaBQb','','',''), +(869,'wc-processing','EUR','shop_order',0.00000000,120.00000000,0,'maroufin.claire@gmail.com','2024-12-02 10:05:43','2024-12-02 10:06:46',0,'','','cs_live_b10JaBeyOWGNedl3gG765YEShS8lZHA9A4aKS95LgAKh6qZXQnCIVSljQS','','',''), +(870,'wc-pending','EUR','shop_order',0.00000000,65.00000000,0,'gilquinpeggy@gmail.com','2024-12-02 10:46:48','2024-12-02 10:46:48',0,'','','','','',''), +(871,'wc-processing','EUR','shop_order',0.00000000,143.00000000,0,'v.cubier@gmail.com','2024-12-02 16:33:11','2024-12-02 16:34:13',0,'','','cs_live_b1NkHwimGQsZ4QkEAqe9CDnUr1DXp6W3PJtiypSTl7tbdlpNdixwfKayy5','','',''), +(872,'wc-processing','EUR','shop_order',0.00000000,90.00000000,0,'choploone@gmail.com','2024-12-03 17:03:18','2024-12-03 17:04:44',0,'','','cs_live_a1N24p77v8EyXK9ZJym9WKpN0L9d7nn8TKiG51ukP3wcHGOIEEO7JVRYkc','','',''), +(873,'wc-processing','EUR','shop_order',0.00000000,235.00000000,0,'maren.sigge@gmail.com','2024-12-03 22:53:41','2024-12-03 22:55:59',0,'','','cs_live_b1d2FCt4FYyGLsCPq20mViayd4OQXAn1eBfe3z3UOZQbCZk02byhZw8uRp','','',''), +(876,'wc-pending','EUR','shop_order',0.00000000,80.00000000,0,'perrinevincent90@gmail.com','2024-12-06 13:04:13','2024-12-06 13:04:13',0,'','','','','',''), +(877,'wc-pending','EUR','shop_order',0.00000000,80.00000000,0,'perrinevincent90@gmail.com','2024-12-06 13:04:13','2024-12-06 13:04:14',0,'','','','','',''), +(878,'wc-completed','EUR','shop_order',0.00000000,155.00000000,0,'perrinevincent90@gmail.com','2024-12-06 13:08:34','2024-12-15 09:35:41',0,'','','cs_live_a12SLRUpoI738BH0BJvY39tzXRBmbhmx4dty8MkdfmxlOrSNwqzi0LIs0w','','',''), +(879,'wc-completed','EUR','shop_order',0.00000000,75.00000000,0,'julien.martial@hotmail.com','2024-12-06 14:04:22','2024-12-12 21:48:29',0,'','','cs_live_a10cY6oxXXTqiNMNGXdIqBStIF4rxjTJ4nFAApF14ug4df1ubvsJBCkEnB','','',''), +(880,'wc-refunded','EUR','shop_order',0.00000000,100.00000000,0,'c.saquetbossu@orange.fr','2024-12-12 16:55:38','2024-12-30 10:40:50',0,'','','cs_live_b1rQKvEwBHzNanBG70EG9Xg1BMcfxjxlsIKvnNwLHSGcMeRRVFusIv82xu','','',''), +(881,'wc-completed','EUR','shop_order',0.00000000,1248.00000000,0,'lili.chabin@gmail.com','2024-12-13 08:37:26','2024-12-16 14:13:34',0,'','','cs_live_a1QOrbZvz7NPHCy1AONKDEPoNfNniuLqi8S8mO1So5xlfcxP3s7A8u1saJ','','',''), +(884,'wc-refunded','EUR','shop_order',0.00000000,95.00000000,0,'vsmarchand24@gmail.com','2024-12-14 10:10:01','2025-01-23 21:51:50',0,'','','cs_live_a1KhJ0JraBn277imcg61syatlwfwXUqRSgH0si1UywNXQnnaaPQUXCb6Ye','','',''), +(885,'wc-completed','EUR','shop_order',0.00000000,80.00000000,0,'antoine.der92@gmail.com','2024-12-16 09:16:07','2024-12-18 17:19:19',0,'','','cs_live_a15teMmPCgaffuRSOljLOuFl7R0GhHVDHuyCLh83Exs5EGs76RhR2Z6slN','','',''), +(886,'wc-completed','EUR','shop_order',0.00000000,105.00000000,0,'ella_cherry@hotmail.fr','2024-12-17 08:40:04','2024-12-18 17:16:40',0,'','','cs_live_b10gtoDEAZtugeUUybNRQU286vrPQm9SKRxovq17jyT5JSibTAZI8TyH9b','','',''), +(887,'wc-completed','EUR','shop_order',0.00000000,60.00000000,0,'elsa.dumontel@gmail.com','2024-12-18 15:13:28','2024-12-31 11:59:52',0,'','','cs_live_a1kBdlYdcEX5glITE5cxLtkjEsemFaIVNJZDW641JlnkljMEjyrssTNJXo','','',''), +(888,'wc-completed','EUR','shop_order',0.00000000,62.00000000,0,'lili.chabin@gmail.com','2024-12-19 09:08:20','2024-12-29 14:53:29',0,'','','cs_live_a1ktP4tLyzgYY305YJGum3L8hu9N9qrPbOfeswgsBRyMSSge3yTL8atXEg','','',''), +(889,'wc-completed','EUR','shop_order',0.00000000,250.00000000,0,'melian.jacob@free.fr','2024-12-26 12:37:45','2024-12-31 11:59:03',0,'','','cs_live_b1sWkcR5ha10Ro3rgV3FqEQxvD40aB2mbqw6Plaq8I6nrBx1xYUPN6URYb','','',''), +(890,'wc-completed','EUR','shop_order_refund',0.00000000,-12.00000000,NULL,NULL,'2024-12-29 14:53:20','2024-12-29 14:53:20',888,NULL,NULL,NULL,NULL,NULL,NULL), +(891,'wc-completed','EUR','shop_order_refund',0.00000000,-100.00000000,NULL,NULL,'2024-12-30 10:40:43','2024-12-30 10:40:43',880,NULL,NULL,NULL,NULL,NULL,NULL), +(892,'wc-pending','EUR','shop_order',0.00000000,55.00000000,0,'camillelacroix715@gmail.com','2024-12-30 18:59:22','2024-12-30 18:59:22',0,'','','','','',''), +(893,'wc-pending','EUR','shop_order',0.00000000,43.00000000,0,'margot.brisoux@hotmail.fr','2025-01-03 08:10:31','2025-01-03 08:10:31',0,'','','','','',''), +(894,'wc-completed','EUR','shop_order',0.00000000,38.00000000,0,'margot.brisoux@hotmail.fr','2025-01-03 09:04:01','2025-01-07 14:56:35',0,'','','cs_live_a1bOBwoGtGQUtjrFiFgIaZqD3pvXjvB1bCVVa63MDqORXOtYmWf5qsFFCy','','',''), +(895,'wc-completed','EUR','shop_order',0.00000000,155.00000000,0,'tiberi.marine@gmail.com','2025-01-09 12:01:26','2025-01-14 19:47:45',0,'','','cs_live_b1qXQzunVuNopx9KHrAAgcQpNKmmLwshMwKQgiK94CJpAC1peepjzzgw88','','',''), +(896,'wc-completed','EUR','shop_order_refund',0.00000000,-95.00000000,NULL,NULL,'2025-01-23 21:51:50','2025-01-23 21:51:50',884,NULL,NULL,NULL,NULL,NULL,NULL), +(897,'wc-completed','EUR','shop_order',0.00000000,70.00000000,0,'alicetabernat@yahoo.fr','2025-01-29 10:32:07','2025-02-03 17:36:19',0,'','','cs_live_a11g0bnfWPAfwbgPcGsp2nFjPkaTqz9TKjUKCgkotTDle31gqp2t5DIFXr','','',''), +(898,'wc-pending','EUR','shop_order',0.00000000,38.00000000,0,'manon.ainest@gmail.com','2025-01-30 08:55:09','2025-01-30 08:55:09',0,'','','','','',''), +(899,'wc-completed','EUR','shop_order',0.00000000,38.00000000,0,'manon.ainest@gmail.com','2025-01-30 08:57:12','2025-02-03 17:37:02',0,'','','cs_live_a1QPvqbvcYzHtXWCvDchaoX8yKphpHA8aFUvZtEC5wxfw1C2SX0RI7XmOB','','',''), +(900,'wc-pending','EUR','shop_order',0.00000000,150.00000000,0,'parisnoune@gmail.com','2025-02-21 19:32:16','2025-02-21 19:32:16',0,'','','','','',''), +(901,'wc-processing','EUR','shop_order',0.00000000,48.00000000,0,'owenoneill2727@gmail.com','2025-02-23 17:08:07','2025-02-23 17:08:49',0,'','','cs_live_a1GFHeWtsHUJuYz6QaJ9ys4MjurDGI6i43iKN9eG0SnFqknxjaMSLGJOez','','',''), +(902,'wc-pending','EUR','shop_order',0.00000000,95.00000000,0,'julie.soulie96@yahoo.fr','2025-02-26 12:51:14','2025-02-26 12:51:15',0,'','','','','',''), +(903,'wc-completed','EUR','shop_order',0.00000000,95.00000000,0,'julie.soulie96@yahoo.fr','2025-02-26 12:51:16','2025-03-01 08:14:27',0,'','','cs_live_a1mFOyZPMm14pK57DdGIKZwTO4W8ZCatZvZWCNpF5xUC4ycLVAmKhDUrsA','','',''), +(904,'wc-pending','EUR','shop_order',0.00000000,150.00000000,0,'charles.stoop@gmail.com','2025-03-03 07:31:50','2025-03-03 07:31:50',0,'','','','','',''), +(905,'wc-completed','EUR','shop_order',0.00000000,95.00000000,0,'amelie.grx@gmail.com','2025-03-03 10:45:26','2025-03-06 08:24:33',0,'','','cs_live_a1aPByBFzbZyfbQTxL6nzu92j7iKkvl5if69zqaMEp5QJrQGPHjEimbMoK','','',''), +(906,'wc-completed','EUR','shop_order',0.00000000,150.00000000,0,'charles.stoop@gmail.com','2025-03-03 11:10:15','2025-03-06 08:25:36',0,'','','cs_live_a1LEJpJwearhfR2b7iPVKdUfymrbDp00VvSuR9qqkFdxuoo1TseDdGWSsj','','',''), +(907,'wc-completed','EUR','shop_order',0.00000000,190.00000000,0,'raphael.kuderpro@gmail.com','2025-03-05 11:04:07','2025-03-18 09:40:39',0,'','','cs_live_b11qrZzpZitWqhRsaz4pR9avf8eXD1nF5lEZ31cfuXZWYMn1ucJOUZL2tc','','',''), +(908,'wc-completed','EUR','shop_order',0.00000000,106.00000000,0,'evemarie.redouin@gmail.com','2025-03-23 21:39:51','2025-04-04 06:41:39',0,'','','cs_live_b1YqdwNaPbu9CWfGSQrpINirWmEMehRQzmYRJ3xJ0DCu8Tpmftcvyrx4My','','',''), +(909,'wc-pending','EUR','shop_order',0.00000000,43.00000000,0,'isoliverantich1@gmail.com','2025-04-07 11:50:33','2025-04-07 11:50:33',0,'','','','','',''), +(910,'wc-completed','EUR','shop_order',0.00000000,43.00000000,0,'isoliverantich1@gmail.com','2025-04-08 11:44:22','2025-05-11 13:35:32',0,'','','cs_live_a1M1AbVhpNayddsFHKmFfBx4whULHHouxQwRAvpuYm1sIXUlKfd0GItHWH','','',''), +(911,'wc-pending','EUR','shop_order',0.00000000,65.00000000,0,'lol@mdr.fr','2025-05-05 09:14:57','2025-05-05 09:14:57',0,'','','','','',''), +(912,'wc-completed','EUR','shop_order',0.00000000,43.00000000,0,'crack_one@hotmail.fr','2025-05-09 09:49:40','2025-05-16 05:54:00',0,'','','cs_live_a1H92o6VYyvx7aHJeAQmk1Pmd0IRjxqiuCRVy9CJKOHwNgUajseeOZV5GJ','','',''), +(919,'wc-pending','EUR','shop_order',0.00000000,110.00000000,0,'annesophiemabi@gmail.com','2025-05-09 19:54:35','2025-05-09 19:54:35',0,'','','','','',''), +(920,'wc-pending','EUR','shop_order',0.00000000,60.00000000,0,'annesophiemabi@gmail.com','2025-05-09 19:56:26','2025-05-09 19:56:26',0,'','','','','',''), +(921,'wc-completed','EUR','shop_order',0.00000000,60.00000000,0,'annesophiemabi@gmail.com','2025-05-09 19:56:27','2025-05-16 05:54:26',0,'','','cs_live_a1BfsTQJFzp4sAD4M7ttoO0LVJLncUDjxVj0jfYnFYqfjvJfHKLu3aFhIm','','',''), +(922,'wc-completed','EUR','shop_order',0.00000000,60.00000000,0,'annesophiemabi@gmail.com','2025-05-09 19:56:28','2025-05-16 05:55:04',0,'','','','','',''), +(923,'wc-pending','EUR','shop_order',0.00000000,80.00000000,0,'zafiria.efstratiadi@hotmail.com','2025-06-04 11:13:31','2025-06-04 11:13:31',0,'','','','','',''), +(924,'wc-completed','EUR','shop_order',0.00000000,130.00000000,0,'laurentpvcapelo@gmail.com','2025-06-05 07:44:45','2025-06-09 10:59:56',0,'','','cs_live_b1PVvGzhCZzxaRp4uSOYQcsRnC1RuZlyZoFqK0LZJQo2zkoU41vdXerJkw','','',''), +(981,'wc-pending','EUR','shop_order',0.00000000,170.00000000,0,NULL,'2025-06-20 10:13:00','2025-06-20 10:13:00',0,'','','','','',''), +(997,'wc-processing','EUR','shop_order',0.00000000,130.00000000,0,NULL,'2025-06-21 09:54:31','2025-06-21 09:56:07',0,'','','cs_live_b1sjjD9YUm2JJIRUEYnmIQVeqq5HJg4fA08WLC163mheZO7PdHRO2Po4qk','','',''), +(998,'wc-pending','EUR','shop_order',0.00000000,65.00000000,0,NULL,'2025-06-21 12:43:50','2025-06-21 12:43:51',0,'','','','','',''), +(999,'wc-pending','EUR','shop_order',0.00000000,100.00000000,0,NULL,'2025-06-21 12:54:52','2025-06-21 12:54:52',0,'','','','','',''), +(1000,'wc-pending','EUR','shop_order',0.00000000,165.00000000,0,NULL,'2025-06-21 12:58:23','2025-06-21 12:58:23',0,'','','','','',''); +/*!40000 ALTER TABLE `haikuwp_wc_orders` ENABLE KEYS */; +UNLOCK TABLES; +commit; + +-- +-- Table structure for table `haikuwp_wc_orders_meta` +-- + +DROP TABLE IF EXISTS `haikuwp_wc_orders_meta`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8mb4 */; +CREATE TABLE `haikuwp_wc_orders_meta` ( + `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, + `order_id` bigint(20) unsigned DEFAULT NULL, + `meta_key` varchar(255) DEFAULT NULL, + `meta_value` text DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `meta_key_value` (`meta_key`(100),`meta_value`(82)), + KEY `order_id_meta_key_meta_value` (`order_id`,`meta_key`(100),`meta_value`(82)) +) ENGINE=InnoDB AUTO_INCREMENT=399 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `haikuwp_wc_orders_meta` +-- + +LOCK TABLES `haikuwp_wc_orders_meta` WRITE; +/*!40000 ALTER TABLE `haikuwp_wc_orders_meta` DISABLE KEYS */; +set autocommit=0; +INSERT INTO `haikuwp_wc_orders_meta` VALUES +(190,861,'_billing_address_index','Charlotte Gérard 16 rue Georges Rency Woluwe-Saint-Lambert Bruxelles 1200 BE charlottegerard7@gmail.com 0498836916'), +(191,861,'_shipping_address_index','Charlotte Gérard 16 rue Georges Rency Woluwe-Saint-Lambert Bruxelles 1200 BE 0498836916'), +(192,862,'_billing_address_index','Roberto Ruggeri NW Groupe 31 avenue bosquet Paris 75007 FR sofia.balducci99@gmail.com +393470972182'), +(193,862,'_shipping_address_index','Roberto Ruggeri NW Groupe 31 avenue bosquet Paris 75007 FR +393470972182'), +(194,861,'_edit_lock','1732822840:1'), +(204,862,'_edit_lock','1733301301:1'), +(212,866,'_billing_address_index','Claudia Van Vynckt - WIPLAW 279, avenue louise Bruxelles 1050 BE claudia.vanvynckt@hotmail.fr 0478183560'), +(213,866,'_shipping_address_index','Claudia Van Vynckt - WIPLAW 279, avenue louise Bruxelles 1050 BE 0478183560'), +(214,867,'_billing_address_index','Lucie Leiner Vijversdreef 10 Linkebeek Linkebeek 1630 BE lucie.leiner@gmail.com +32489578514'), +(215,867,'_shipping_address_index','Lucie Leiner Vijversdreef 10 Linkebeek Linkebeek 1630 BE +32489578514'), +(216,868,'_billing_address_index','Lucie Leiner Vijversdreef 10 Linkebeek 1630 BE lucie.leiner@gmail.com +32489578514'), +(217,868,'_shipping_address_index','Lucie Leiner Vijversdreef 10 Linkebeek 1630 BE +32489578514'), +(218,866,'_edit_lock','1732990774:1'), +(219,868,'_edit_lock','1741777158:1'), +(220,869,'_billing_address_index','Claire Maroufin 26 avenue Eugène Thomas Le Kremlin Bicetre 94270 FR maroufin.claire@gmail.com +33681223295'), +(221,869,'_shipping_address_index','Claire Maroufin 26 avenue Eugène Thomas Le Kremlin Bicetre 94270 FR +33681223295'), +(222,870,'_billing_address_index','Peggy Luete 23, Allée des mimosas, Allée des mimosas Neuilly - Plaisance 93360 FR gilquinpeggy@gmail.com +33663293145'), +(223,870,'_shipping_address_index','Peggy Luete 23, Allée des mimosas, Allée des mimosas Neuilly - Plaisance 93360 FR +33663293145'), +(224,871,'_billing_address_index','Violette Cubier 5 rue Andre Gide Chatillon 92320 FR v.cubier@gmail.com 0616154243'), +(225,871,'_shipping_address_index','Violette Cubier 5 rue Andre Gide Chatillon 92320 FR 0616154243'), +(226,871,'_edit_lock','1733427652:1'), +(227,872,'_billing_address_index','Elise Colson Rue des grands champs 119 Saint-Nicolas Liège 4420 BE choploone@gmail.com 0498508266'), +(228,872,'_shipping_address_index','Elise Colson Rue des grands champs 119 Saint-Nicolas Liège 4420 BE 0498508266'), +(229,872,'_edit_lock','1733769475:1'), +(230,873,'_billing_address_index','Maren Sigge Av. G. E. Lebon, 24, BP 3 Auderghem Belgium 1160 BE maren.sigge@gmail.com +32489439874'), +(231,873,'_shipping_address_index','Viviane Antoine Chaussée de Givet 33 Mariembourg Belgium 5660 BE +32489439874'), +(232,869,'_edit_lock','1734160497:1'), +(233,873,'_edit_lock','1733386487:1'), +(239,876,'_billing_address_index','Perrine Vincent Rue de la Basse-Sambre 8 Floreffe Namur 5150 BE perrinevincent90@gmail.com 00 32 472 24 97 14'), +(240,876,'_shipping_address_index','Perrine Vincent Rue de la Basse-Sambre 8 Floreffe Namur 5150 BE 00 32 472 24 97 14'), +(241,877,'_billing_address_index','Perrine Vincent Rue de la Basse-Sambre 8 Floreffe Namur 5150 BE perrinevincent90@gmail.com 00 32 472 24 97 14'), +(242,877,'_shipping_address_index','Perrine Vincent Rue de la Basse-Sambre 8 Floreffe Namur 5150 BE 00 32 472 24 97 14'), +(243,878,'_billing_address_index','Perrine Vincent Rue de la Basse-Sambre 8 Floreffe Namur 5150 BE perrinevincent90@gmail.com 00 32 472 24 97 14'), +(244,878,'_shipping_address_index','Perrine Vincent Rue de la Basse-Sambre 8 Floreffe Namur 5150 BE 00 32 472 24 97 14'), +(245,879,'_billing_address_index','Julien Martial Rue François Gay, 225 Woluwe St Pierre 1150 BE julien.martial@hotmail.com 0472585911'), +(246,879,'_shipping_address_index','Julien Martial Rue François Gay, 225 Woluwe St Pierre 1150 BE 0472585911'), +(247,879,'_edit_lock','1734041227:1'), +(248,880,'_billing_address_index','christine Saquet Bossu 33 rue du Colonel du Halgouêt Renac 35660 FR c.saquetbossu@orange.fr 0685532210'), +(249,880,'_shipping_address_index','christine Saquet Bossu 33 rue du Colonel du Halgouêt Renac 35660 FR 0685532210'), +(250,879,'tracking_number','10622472'), +(251,878,'_edit_lock','1734256732:1'), +(252,878,'tracking_number','10622471'), +(253,881,'_billing_address_index','Nathalie Chabin chemin de Rossy 1, 1 Rueyres - Suisse 1046 CH lili.chabin@gmail.com +41786229221'), +(254,881,'_shipping_address_index','Nathalie Chabin chemin de Rossy 1, 1 Rueyres - Suisse 1046 CH +41786229221'), +(255,881,'_edit_lock','1734817565:1'), +(266,880,'_edit_lock','1740486386:1'), +(267,884,'_billing_address_index','Veronique Marchand 5 bis impasse de la Noue AUXERRE 89000 FR vsmarchand24@gmail.com +33612102273'), +(268,884,'_shipping_address_index','Veronique Marchand 5 bis impasse de la Noue AUXERRE 89000 FR +33612102273'), +(269,876,'_edit_lock','1734255312:1'), +(270,880,'tracking_number','10727218'), +(271,884,'_edit_lock','1738615854:1'), +(272,885,'_billing_address_index','Antoine Deroisy 389 chaussée de waterloo Bruxelles 1050 BE antoine.der92@gmail.com 0474183450'), +(273,885,'_shipping_address_index','Antoine Deroisy 389 chaussée de waterloo Bruxelles 1050 BE 0474183450'), +(274,884,'tracking_number','10776780'), +(275,881,'tracking_number',''), +(276,886,'_billing_address_index','Ella Richard 44 Rue Gutenberg, 93310 Le Pre Saint Gervais, France Le Pre Saint Gervais 93310 FR ella_cherry@hotmail.fr 06 77 32 66 50'), +(277,886,'_shipping_address_index','Ella Richard 44 Rue Gutenberg, 93310 Le Pre Saint Gervais, France Le Pre Saint Gervais 93310 FR 06 77 32 66 50'), +(278,886,'_edit_lock','1734542336:1'), +(279,887,'_billing_address_index','Elsa Dumontel 29 Route Des Chenes Arpajon Sur Cere France 15130 FR elsa.dumontel@gmail.com 0642985078'), +(280,887,'_shipping_address_index','Elsa Dumontel 29 Route Des Chenes Arpajon Sur Cere France 15130 FR 0642985078'), +(281,886,'tracking_number','10831148'), +(282,885,'_edit_lock','1734545250:1'), +(283,885,'tracking_number',''), +(284,887,'_edit_lock','1736762840:1'), +(285,888,'_billing_address_index','Nathalie Chabin chemin de Rossy 1 Rueyres - Suisse vaud 1046 CH lili.chabin@gmail.com +41786229221'), +(286,888,'_shipping_address_index','Nathalie Chabin chemin de Rossy 1 Rueyres - Suisse vaud 1046 CH +41786229221'), +(287,888,'_edit_lock','1735490132:1'), +(288,888,'tracking_number','RN600242900BE'), +(289,889,'_billing_address_index','Magali Jacob 1 Rue du Limousin Hœnheim 67800 FR melian.jacob@free.fr 0670745455'), +(290,889,'_shipping_address_index','Magali Jacob 1 Rue du Limousin Hœnheim 67800 FR 0670745455'), +(291,889,'_edit_lock','1735646345:1'), +(292,890,'_refund_amount','12.00'), +(293,890,'_refunded_by','1'), +(294,890,'_refunded_payment',''), +(295,890,'_refund_reason','Free shipping'), +(296,891,'_refund_amount','100.00'), +(297,891,'_refunded_by','1'), +(298,891,'_refunded_payment',''), +(299,891,'_refund_reason',''), +(300,892,'_billing_address_index','Camille Lacroix 7 rue du Capitaine Soyer Le Pré St Gervais 93310 FR camillelacroix715@gmail.com 0681659460'), +(301,892,'_shipping_address_index','Camille Lacroix 7 rue du Capitaine Soyer Le Pré St Gervais 93310 FR 0681659460'), +(302,889,'tracking_number','10996113'), +(303,887,'tracking_number','10851363'), +(304,893,'_billing_address_index','Margot Brisoux 13 rue Camille Desmoulins Paris 75011 FR margot.brisoux@hotmail.fr 0679481991'), +(305,893,'_shipping_address_index','Margot Brisoux 13 rue Camille Desmoulins Paris 75011 FR 0679481991'), +(306,894,'_billing_address_index','Margot BRISOUX 13 rue Camille Desmoulins Paris 75011 FR margot.brisoux@hotmail.fr 0679481991'), +(307,894,'_shipping_address_index','Margot BRISOUX 13 rue Camille Desmoulins Paris 75011 FR 0679481991'), +(308,894,'_edit_lock','1736261796:1'), +(309,894,'tracking_number','11114755'), +(310,895,'_billing_address_index','Marine TIBERI 50 rue Jules Clarétie Toulouse 31400 FR tiberi.marine@gmail.com +33602079136'), +(311,895,'_shipping_address_index','Marine TIBERI 50 rue Jules Clarétie Toulouse 31400 FR +33602079136'), +(312,895,'_edit_lock','1737668991:1'), +(313,895,'tracking_number','11206531'), +(314,896,'_refund_amount','95.00'), +(315,896,'_refunded_by','1'), +(316,896,'_refunded_payment',''), +(317,896,'_refund_reason',''), +(318,897,'_billing_address_index','Alice Tabernat 88 boulevard Aristide Briand Montreuil 93100 FR alicetabernat@yahoo.fr 0770426206'), +(319,897,'_shipping_address_index','Alice Tabernat 88 boulevard Aristide Briand Montreuil 93100 FR 0770426206'), +(320,898,'_billing_address_index','Aïn-Establet Manon 140, boulevard de Menilmontant Paris 75020 FR manon.ainest@gmail.com 0612109541'), +(321,898,'_shipping_address_index','Aïn-Establet Manon 140, boulevard de Menilmontant Paris 75020 FR 0612109541'), +(322,899,'_billing_address_index','Aïn-Establet Manon 140, boulevard de Menilmontant Paris 75020 FR manon.ainest@gmail.com 0612109541'), +(323,899,'_shipping_address_index','Aïn-Establet Manon 140, boulevard de Menilmontant Paris 75020 FR 0612109541'), +(324,897,'_edit_lock','1738604185:1'), +(325,899,'_edit_lock','1739726026:1'), +(326,897,'tracking_number','11516644'), +(327,899,'tracking_number','11516643'), +(328,900,'_billing_address_index','de beauvais nina 39 avenue mathurin Moreau paris 75019 FR parisnoune@gmail.com 0670423158'), +(329,900,'_shipping_address_index','de beauvais nina 39 avenue mathurin Moreau paris 75019 FR 0670423158'), +(330,901,'_billing_address_index','Owen Andrew O\'Neill Rue Bosquet, 25 Saint-Gilles Brussel 1060 BE owenoneill2727@gmail.com +353852179564'), +(331,901,'_shipping_address_index','Owen Andrew O\'Neill Rue Bosquet, 25 Saint-Gilles Brussel 1060 BE +353852179564'), +(332,901,'_edit_lock','1740762785:1'), +(333,902,'_billing_address_index','Julie Soulie 17/19 rue de l\'Atlas Paris Ile de France 75019 FR julie.soulie96@yahoo.fr 0643105822'), +(334,902,'_shipping_address_index','Julie Soulie 17/19 rue de l\'Atlas Paris Ile de France 75019 FR 0643105822'), +(335,903,'_billing_address_index','Julie Soulie 17/19 rue de l\'Atlas Paris Ile de France 75019 FR julie.soulie96@yahoo.fr 0643105822'), +(336,903,'_shipping_address_index','Julie Soulie 17/19 rue de l\'Atlas Paris Ile de France 75019 FR 0643105822'), +(337,903,'_edit_lock','1741249420:1'), +(338,903,'tracking_number','11864885'), +(339,904,'_billing_address_index','Charles Stoop Rue Edouard Olivier 27 Watermael-Boitsfort Bruxelles 1170 BE charles.stoop@gmail.com 0493566360'), +(340,904,'_shipping_address_index','Charles Stoop Rue Edouard Olivier 27 Watermael-Boitsfort Bruxelles 1170 BE 0493566360'), +(341,905,'_billing_address_index','Amélie Graux 15 rue du Capitaine Ferber Paris 75020 FR amelie.grx@gmail.com 0667102260'), +(342,905,'_shipping_address_index','Amélie Graux 15 rue du Capitaine Ferber Paris 75020 FR 0667102260'), +(343,906,'_billing_address_index','Charles Stoop Rue Edouard Olivier 27 Watermael-Boitsfort Bruxelles 1170 BE charles.stoop@gmail.com 0493566360'), +(344,906,'_shipping_address_index','Charles Stoop Rue Edouard Olivier 27 Watermael-Boitsfort Bruxelles 1170 BE 0493566360'), +(345,907,'_billing_address_index','Raphael Kuder 140 boulevard de Ménilmontant Paris IDF 75020 FR raphael.kuderpro@gmail.com 0783260894'), +(346,907,'_shipping_address_index','Raphael Kuder 140 boulevard de Ménilmontant Paris IDF 75020 FR 0783260894'), +(347,905,'_edit_lock','1741249495:1'), +(348,905,'tracking_number','11941129'), +(349,906,'_edit_lock','1741249538:1'), +(350,906,'tracking_number','11941130'), +(351,907,'_edit_lock','1743510857:1'), +(352,907,'tracking_number','12069441'), +(353,908,'_billing_address_index','Eve marie REDOUIN 3 Rue des Hortensias Villebon-sur-Yvette 91140 FR evemarie.redouin@gmail.com 0642769155'), +(354,908,'_shipping_address_index','Eve marie REDOUIN 3 Rue des Hortensias Villebon-sur-Yvette 91140 FR 0642769155'), +(355,908,'_edit_lock','1743748901:1'), +(356,908,'tracking_number','12337845'), +(357,909,'_billing_address_index','Arnau Oliver Antich Rue du Mont-Blanc 57, R.D.C. Saint-Gilles Belgium 1060 BE isoliverantich1@gmail.com +34 648761712'), +(358,909,'_shipping_address_index','Arnau Oliver Antich Rue du Mont-Blanc 57, R.D.C. Saint-Gilles Belgium 1060 BE +34 648761712'), +(359,910,'_billing_address_index','Arnau Oliver Antich Rue du Mont-Blanc 57, R.D.C. Saint-Gilles Belgium 1060 BE isoliverantich1@gmail.com +34 648761712'), +(360,910,'_shipping_address_index','Arnau Oliver Antich Rue du Mont-Blanc 57, R.D.C. Saint-Gilles Belgium 1060 BE +34 648761712'), +(361,911,'_billing_address_index','Gauthier COLIN HAAG 5 rue de la Ville Metz 57070 FR lol@mdr.fr 0603436016'), +(362,911,'_shipping_address_index','Gauthier COLIN HAAG 5 rue de la Ville Metz 57070 FR 0603436016'), +(363,912,'_billing_address_index','Jérôme Laurent 5 place de la république BRIENNE LE CHATEAU Aube 10500 FR crack_one@hotmail.fr +33695854956'), +(364,912,'_shipping_address_index','Jérôme Laurent 5 place de la république BRIENNE LE CHATEAU Aube 10500 FR +33695854956'), +(365,919,'_billing_address_index','Anne sophie Mabi 4 rue des tulipiers Rosny sous bois 93110 FR annesophiemabi@gmail.com +33678454888'), +(366,919,'_shipping_address_index','Anne sophie Mabi 4 rue des tulipiers Rosny sous bois 93110 FR +33678454888'), +(367,920,'_billing_address_index','Anne sophie Mabi 4 rue des tulipiers Rosny sous bois 93110 FR annesophiemabi@gmail.com +33678454888'), +(368,920,'_shipping_address_index','Anne sophie Mabi 4 rue des tulipiers Rosny sous bois 93110 FR +33678454888'), +(369,921,'_billing_address_index','Anne sophie Mabi 4 rue des tulipiers Rosny sous bois 93110 FR annesophiemabi@gmail.com +33678454888'), +(370,921,'_shipping_address_index','Anne sophie Mabi 4 rue des tulipiers Rosny sous bois 93110 FR +33678454888'), +(371,922,'_billing_address_index','Anne sophie Mabi 4 rue des tulipiers Rosny sous bois 93110 FR annesophiemabi@gmail.com +33678454888'), +(372,922,'_shipping_address_index','Anne sophie Mabi 4 rue des tulipiers Rosny sous bois 93110 FR +33678454888'), +(373,910,'_edit_lock','1746970534:1'), +(374,910,'tracking_number',''), +(375,921,'_edit_lock','1747374867:1'), +(376,912,'_edit_lock','1747374841:1'), +(377,912,'tracking_number','12910308'), +(378,921,'tracking_number','12910309'), +(379,923,'_billing_address_index','Zafiria Efstratiadi Boulvard louis mettewie 445,boîte 6 Bruxelles Molenbeek-Saint-Jean 1080 BE zafiria.efstratiadi@hotmail.com 0474918430'), +(380,923,'_shipping_address_index','Zafiria Efstratiadi Boulvard louis mettewie 445,boîte 6 Bruxelles Molenbeek-Saint-Jean 1080 BE 0474918430'), +(381,924,'_billing_address_index','Laurent CAPELO 24 Avenue Bourgain Issy-les-Moulineaux 92130 FR laurentpvcapelo@gmail.com +33646234205'), +(382,924,'_shipping_address_index','Laurent CAPELO 24 Avenue Bourgain Issy-les-Moulineaux 92130 FR +33646234205'), +(383,924,'_edit_lock','1750509714:1'), +(384,924,'tracking_number','13228029'), +(385,981,'_billing_address_index',' '), +(386,981,'_shipping_address_index',' '), +(387,997,'_billing_address_index',' '), +(388,997,'_shipping_address_index',' '), +(389,997,'_edit_lock','1750509804:1'), +(390,998,'_billing_address_index',' '), +(391,998,'_shipping_address_index',' '), +(392,998,'_edit_lock','1750514661:1'), +(393,999,'_billing_address_index',' '), +(394,999,'_shipping_address_index',' '), +(395,999,'_edit_lock','1750510551:1'), +(396,1000,'_billing_address_index',' '), +(397,1000,'_shipping_address_index',' '), +(398,1000,'_edit_lock','1750510720:1'); +/*!40000 ALTER TABLE `haikuwp_wc_orders_meta` ENABLE KEYS */; +UNLOCK TABLES; +commit; + +-- +-- Table structure for table `haikuwp_wc_product_attributes_lookup` +-- + +DROP TABLE IF EXISTS `haikuwp_wc_product_attributes_lookup`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8mb4 */; +CREATE TABLE `haikuwp_wc_product_attributes_lookup` ( + `product_id` bigint(20) NOT NULL, + `product_or_parent_id` bigint(20) NOT NULL, + `taxonomy` varchar(32) NOT NULL, + `term_id` bigint(20) NOT NULL, + `is_variation_attribute` tinyint(1) NOT NULL, + `in_stock` tinyint(1) NOT NULL, + PRIMARY KEY (`product_or_parent_id`,`term_id`,`product_id`,`taxonomy`), + KEY `is_variation_attribute_term_id` (`is_variation_attribute`,`term_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `haikuwp_wc_product_attributes_lookup` +-- + +LOCK TABLES `haikuwp_wc_product_attributes_lookup` WRITE; +/*!40000 ALTER TABLE `haikuwp_wc_product_attributes_lookup` DISABLE KEYS */; +set autocommit=0; +INSERT INTO `haikuwp_wc_product_attributes_lookup` VALUES +(73,72,'pa_size',37,1,1), +(74,72,'pa_size',38,1,1), +(75,72,'pa_size',39,1,1), +(76,72,'pa_size',40,1,1), +(77,72,'pa_size',41,1,1), +(78,72,'pa_size',42,1,1), +(79,72,'pa_size',43,1,1), +(103,102,'pa_size',37,1,1), +(104,102,'pa_size',38,1,1), +(105,102,'pa_size',39,1,1), +(106,102,'pa_size',40,1,1), +(107,102,'pa_size',41,1,1), +(108,102,'pa_size',42,1,1), +(109,102,'pa_size',43,1,1), +(528,102,'pa_size',44,1,1), +(114,113,'pa_size',37,1,1), +(115,113,'pa_size',38,1,1), +(116,113,'pa_size',39,1,1), +(117,113,'pa_size',40,1,1), +(118,113,'pa_size',41,1,1), +(119,113,'pa_size',42,1,1), +(120,113,'pa_size',43,1,1), +(529,113,'pa_size',44,1,1), +(124,123,'pa_size',37,1,1), +(125,123,'pa_size',38,1,1), +(126,123,'pa_size',39,1,1), +(127,123,'pa_size',40,1,1), +(128,123,'pa_size',41,1,1), +(129,123,'pa_size',42,1,1), +(130,123,'pa_size',43,1,1), +(530,123,'pa_size',44,1,1), +(134,133,'pa_size',37,1,1), +(135,133,'pa_size',38,1,1), +(136,133,'pa_size',39,1,1), +(137,133,'pa_size',40,1,1), +(138,133,'pa_size',41,1,1), +(139,133,'pa_size',42,1,1), +(140,133,'pa_size',43,1,1), +(532,133,'pa_size',44,1,1), +(201,168,'pa_stone',48,1,1), +(200,168,'pa_stone',49,1,1), +(566,183,'pa_side',45,1,1), +(565,183,'pa_side',71,1,1), +(567,183,'pa_side',72,1,1), +(638,202,'pa_side',45,1,1), +(637,202,'pa_side',77,1,1), +(639,202,'pa_side',78,1,1), +(570,213,'pa_side',45,1,1), +(569,213,'pa_side',71,1,1), +(571,213,'pa_side',72,1,1), +(241,240,'pa_size',58,1,1), +(242,240,'pa_size',59,1,1), +(642,285,'pa_side',45,1,1), +(641,285,'pa_side',77,1,1), +(643,285,'pa_side',78,1,1), +(646,288,'pa_side',45,1,1), +(645,288,'pa_side',77,1,1), +(647,288,'pa_side',78,1,1), +(652,306,'pa_side',45,1,1), +(651,306,'pa_side',62,1,1), +(653,306,'pa_side',64,1,1), +(655,312,'pa_side',45,1,1), +(654,312,'pa_side',62,1,1), +(656,312,'pa_side',64,1,1), +(561,342,'pa_side',62,1,1), +(562,342,'pa_side',63,1,1), +(563,342,'pa_side',64,1,1), +(560,342,'pa_side',76,1,1), +(392,385,'pa_stone',48,1,1), +(391,385,'pa_stone',68,1,1), +(389,385,'pa_stone',69,1,1), +(393,393,'pa_side',45,0,1), +(393,393,'pa_side',66,0,1), +(398,398,'pa_side',45,0,1), +(398,398,'pa_side',66,0,1), +(494,490,'pa_side',45,1,1), +(493,490,'pa_side',77,1,1), +(495,490,'pa_side',78,1,1), +(515,515,'pa_stone',48,0,1), +(515,515,'pa_stone',73,0,1), +(523,521,'pa_stone',48,1,1), +(926,521,'pa_stone',79,1,1), +(553,545,'pa_side',45,1,1), +(552,545,'pa_side',66,1,1), +(555,554,'pa_side',45,1,1), +(556,554,'pa_side',66,1,1), +(614,613,'pa_size',37,1,1), +(615,613,'pa_size',38,1,1), +(616,613,'pa_size',39,1,1), +(617,613,'pa_size',40,1,1), +(618,613,'pa_size',41,1,1), +(619,613,'pa_size',42,1,1), +(620,613,'pa_size',43,1,1), +(624,613,'pa_size',44,1,1), +(626,625,'pa_size',37,1,1), +(627,625,'pa_size',38,1,1), +(628,625,'pa_size',39,1,1), +(629,625,'pa_size',40,1,1), +(630,625,'pa_size',41,1,1), +(631,625,'pa_size',42,1,1), +(632,625,'pa_size',43,1,1), +(633,625,'pa_size',44,1,1), +(767,766,'pa_side',45,1,1), +(768,766,'pa_side',62,1,1), +(775,766,'pa_side',63,1,1), +(944,941,'pa_size',37,1,1), +(945,941,'pa_size',38,1,1), +(946,941,'pa_size',39,1,1), +(947,941,'pa_size',40,1,1), +(948,941,'pa_size',41,1,1), +(949,941,'pa_size',42,1,1), +(950,941,'pa_size',43,1,1), +(951,941,'pa_size',44,1,1), +(954,953,'pa_size',37,1,1), +(955,953,'pa_size',38,1,1), +(956,953,'pa_size',39,1,1), +(957,953,'pa_size',40,1,1), +(958,953,'pa_size',41,1,1), +(959,953,'pa_size',42,1,1), +(960,953,'pa_size',43,1,1), +(961,953,'pa_size',44,1,1), +(982,982,'pa_size',37,0,1), +(982,982,'pa_size',38,0,1), +(982,982,'pa_size',39,0,1), +(982,982,'pa_size',40,0,1), +(982,982,'pa_size',41,0,1), +(982,982,'pa_size',42,0,1), +(982,982,'pa_size',43,0,1), +(982,982,'pa_size',44,0,1), +(994,994,'pa_size',37,0,1), +(994,994,'pa_size',38,0,1), +(994,994,'pa_size',39,0,1), +(994,994,'pa_size',40,0,1), +(994,994,'pa_size',41,0,1), +(994,994,'pa_size',42,0,1), +(994,994,'pa_size',43,0,1), +(994,994,'pa_size',44,0,1); +/*!40000 ALTER TABLE `haikuwp_wc_product_attributes_lookup` ENABLE KEYS */; +UNLOCK TABLES; +commit; + +-- +-- Table structure for table `haikuwp_wc_product_download_directories` +-- + +DROP TABLE IF EXISTS `haikuwp_wc_product_download_directories`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8mb4 */; +CREATE TABLE `haikuwp_wc_product_download_directories` ( + `url_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, + `url` varchar(256) NOT NULL, + `enabled` tinyint(1) NOT NULL DEFAULT 0, + PRIMARY KEY (`url_id`), + KEY `url` (`url`(191)) +) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `haikuwp_wc_product_download_directories` +-- + +LOCK TABLES `haikuwp_wc_product_download_directories` WRITE; +/*!40000 ALTER TABLE `haikuwp_wc_product_download_directories` DISABLE KEYS */; +set autocommit=0; +/*!40000 ALTER TABLE `haikuwp_wc_product_download_directories` ENABLE KEYS */; +UNLOCK TABLES; +commit; + +-- +-- Table structure for table `haikuwp_wc_product_meta_lookup` +-- + +DROP TABLE IF EXISTS `haikuwp_wc_product_meta_lookup`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8mb4 */; +CREATE TABLE `haikuwp_wc_product_meta_lookup` ( + `product_id` bigint(20) NOT NULL, + `sku` varchar(100) DEFAULT '', + `virtual` tinyint(1) DEFAULT 0, + `downloadable` tinyint(1) DEFAULT 0, + `min_price` decimal(19,4) DEFAULT NULL, + `max_price` decimal(19,4) DEFAULT NULL, + `onsale` tinyint(1) DEFAULT 0, + `stock_quantity` double DEFAULT NULL, + `stock_status` varchar(100) DEFAULT 'instock', + `rating_count` bigint(20) DEFAULT 0, + `average_rating` decimal(3,2) DEFAULT 0.00, + `total_sales` bigint(20) DEFAULT 0, + `tax_status` varchar(100) DEFAULT 'taxable', + `tax_class` varchar(100) DEFAULT '', + `global_unique_id` varchar(100) DEFAULT '', + PRIMARY KEY (`product_id`), + KEY `virtual` (`virtual`), + KEY `downloadable` (`downloadable`), + KEY `stock_status` (`stock_status`), + KEY `stock_quantity` (`stock_quantity`), + KEY `onsale` (`onsale`), + KEY `min_max_price` (`min_price`,`max_price`), + KEY `sku` (`sku`(50)) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `haikuwp_wc_product_meta_lookup` +-- + +LOCK TABLES `haikuwp_wc_product_meta_lookup` WRITE; +/*!40000 ALTER TABLE `haikuwp_wc_product_meta_lookup` DISABLE KEYS */; +set autocommit=0; +INSERT INTO `haikuwp_wc_product_meta_lookup` VALUES +(20,NULL,0,0,0.0000,0.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), +(22,NULL,0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), +(23,NULL,0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), +(25,NULL,0,0,20.0000,20.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), +(28,NULL,0,0,65.0000,69.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), +(29,NULL,0,0,69.0000,69.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), +(30,NULL,0,0,65.0000,65.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), +(35,NULL,0,0,62.0000,68.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), +(36,NULL,0,0,68.0000,68.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), +(37,NULL,0,0,62.0000,62.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), +(41,NULL,0,0,72.0000,72.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), +(50,NULL,0,0,69.0000,69.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), +(56,NULL,0,0,35.0000,35.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), +(60,NULL,0,0,38.0000,38.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), +(65,NULL,0,0,38.0000,38.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), +(66,NULL,0,0,38.0000,38.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), +(67,NULL,0,0,38.0000,38.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), +(68,NULL,0,0,38.0000,38.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), +(69,NULL,0,0,38.0000,38.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), +(70,NULL,0,0,38.0000,38.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), +(71,NULL,0,0,38.0000,38.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), +(72,'HADOU-B',0,0,85.0000,85.0000,0,NULL,'instock',0,0.00,0,'taxable','',NULL), +(73,NULL,0,0,85.0000,85.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), +(74,NULL,0,0,85.0000,85.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), +(75,NULL,0,0,85.0000,85.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), +(76,NULL,0,0,85.0000,85.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), +(77,NULL,0,0,85.0000,85.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), +(78,NULL,0,0,85.0000,85.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), +(79,NULL,0,0,85.0000,85.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), +(102,'HADOU-B-s',0,0,85.0000,85.0000,0,NULL,'instock',0,0.00,0,'taxable','',NULL), +(103,NULL,0,0,85.0000,85.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), +(104,NULL,0,0,85.0000,85.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), +(105,NULL,0,0,85.0000,85.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), +(106,NULL,0,0,85.0000,85.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), +(107,NULL,0,0,85.0000,85.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), +(108,NULL,0,0,85.0000,85.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), +(109,NULL,0,0,85.0000,85.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), +(113,'HADOU-B-g',0,0,90.0000,90.0000,0,NULL,'instock',0,0.00,0,'taxable','',NULL), +(114,NULL,0,0,90.0000,90.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), +(115,NULL,0,0,90.0000,90.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), +(116,NULL,0,0,90.0000,90.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), +(117,NULL,0,0,90.0000,90.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), +(118,NULL,0,0,90.0000,90.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), +(119,NULL,0,0,90.0000,90.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), +(120,NULL,0,0,90.0000,90.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), +(123,'PIASU-B',0,0,100.0000,100.0000,0,NULL,'instock',0,0.00,0,'taxable','',NULL), +(124,NULL,0,0,100.0000,100.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), +(125,NULL,0,0,100.0000,100.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), +(126,NULL,0,0,100.0000,100.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), +(127,NULL,0,0,100.0000,100.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), +(128,NULL,0,0,100.0000,100.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), +(129,NULL,0,0,100.0000,100.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), +(130,NULL,0,0,100.0000,100.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), +(133,'KARA-B',0,0,95.0000,95.0000,0,NULL,'instock',0,0.00,0,'taxable','',NULL), +(134,NULL,0,0,95.0000,95.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), +(135,NULL,0,0,95.0000,95.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), +(136,NULL,0,0,95.0000,95.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), +(137,NULL,0,0,95.0000,95.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), +(138,NULL,0,0,95.0000,95.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), +(139,NULL,0,0,95.0000,95.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), +(140,NULL,0,0,95.0000,95.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), +(144,'Kishou-B-s',0,0,75.0000,75.0000,0,NULL,'instock',0,0.00,0,'taxable','',NULL), +(145,NULL,0,0,75.0000,75.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), +(146,NULL,0,0,75.0000,75.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), +(147,NULL,0,0,75.0000,75.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), +(148,NULL,0,0,75.0000,75.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), +(149,NULL,0,0,75.0000,75.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), +(150,NULL,0,0,75.0000,75.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), +(151,NULL,0,0,75.0000,75.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), +(155,'Kishou-B-g',0,0,80.0000,80.0000,0,NULL,'instock',0,0.00,0,'taxable','',NULL), +(156,NULL,0,0,80.0000,80.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), +(157,NULL,0,0,80.0000,80.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), +(158,NULL,0,0,80.0000,80.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), +(159,NULL,0,0,80.0000,80.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), +(160,NULL,0,0,80.0000,80.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), +(161,NULL,0,0,80.0000,80.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), +(162,NULL,0,0,80.0000,80.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), +(168,'Rokku-B',0,0,100.0000,110.0000,0,NULL,'instock',0,0.00,2,'taxable','',NULL), +(183,'BOROBORO-BO2-s',0,0,45.0000,70.0000,0,NULL,'instock',0,0.00,1,'taxable','',NULL), +(200,NULL,0,0,100.0000,100.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), +(201,NULL,0,0,110.0000,110.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), +(202,'PIASU-BO',0,0,50.0000,85.0000,0,NULL,'instock',0,0.00,3,'taxable','',''), +(213,'BOROBORO-BO2-g',0,0,50.0000,75.0000,0,NULL,'instock',0,0.00,0,'taxable','',NULL), +(240,'IKKAN-BR-s',0,0,80.0000,80.0000,0,NULL,'instock',0,0.00,0,'taxable','',NULL), +(241,'IKKAN-BR-s-1',0,0,80.0000,80.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), +(242,'IKKAN-BR-s-2',0,0,80.0000,80.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), +(246,'IKKAN-BR-g',0,0,85.0000,85.0000,0,NULL,'instock',0,0.00,0,'taxable','',NULL), +(247,'IKKAN-BR-g-1',0,0,85.0000,85.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), +(248,'IKKAN-BR-g-2',0,0,85.0000,85.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), +(251,'TANEMAKI-BR',0,0,75.0000,75.0000,0,NULL,'instock',0,0.00,3,'taxable','',NULL), +(258,'FUYOU-BR-s',0,0,75.0000,75.0000,0,NULL,'instock',0,0.00,0,'taxable','',NULL), +(261,'FUYOU-BR-g',0,0,80.0000,80.0000,0,NULL,'instock',0,0.00,0,'taxable','',NULL), +(263,'IKKAN-C',0,0,100.0000,100.0000,0,NULL,'instock',0,0.00,1,'taxable','',NULL), +(268,'PIASU-C',0,0,100.0000,100.0000,0,NULL,'instock',0,0.00,0,'taxable','',NULL), +(271,'TANEMAKI-C',0,0,120.0000,120.0000,0,NULL,'instock',0,0.00,3,'taxable','',NULL), +(274,'FUYOU-C',0,0,120.0000,120.0000,0,NULL,'instock',0,0.00,2,'taxable','',NULL), +(285,'HATTARI-CR1-s',0,0,55.0000,85.0000,0,NULL,'instock',0,0.00,1,'taxable','',NULL), +(288,'HATTARI-CR1-g',0,0,60.0000,90.0000,0,NULL,'instock',0,0.00,3,'taxable','',NULL), +(306,'TAMANORI-CR-s',0,0,48.0000,70.0000,0,NULL,'instock',0,0.00,4,'taxable','',NULL), +(312,'TAMANORI-CR-g',0,0,50.0000,75.0000,0,NULL,'instock',0,0.00,1,'taxable','',NULL), +(318,'FUYOU-CR',0,0,45.0000,45.0000,0,NULL,'instock',0,0.00,1,'taxable','',NULL), +(325,'HADOU-EC-s',0,0,40.0000,40.0000,0,NULL,'instock',0,0.00,1,'taxable','',NULL), +(328,'HADOU-EC-g',0,0,45.0000,45.0000,0,NULL,'instock',0,0.00,2,'taxable','',NULL), +(338,'PIASU-BRC',0,0,50.0000,50.0000,0,NULL,'instock',0,0.00,0,'taxable','',NULL), +(342,'KAGUN-BOP',0,0,30.0000,55.0000,0,NULL,'instock',0,0.00,7,'taxable','',NULL), +(385,'ROKKU-C',0,0,120.0000,120.0000,0,NULL,'instock',0,0.00,0,'taxable','',NULL), +(389,'ROKKU-C-jaspe',0,0,120.0000,120.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), +(391,'ROKKU-C-lapis',0,0,120.0000,120.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), +(392,'ROKKU-C-tiger',0,0,120.0000,120.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), +(393,'MUGURA-CR-s',0,0,70.0000,70.0000,0,NULL,'instock',0,0.00,0,'taxable','',NULL), +(398,'MUGURA-CR-g',0,0,75.0000,75.0000,0,NULL,'instock',0,0.00,0,'taxable','',NULL), +(430,'ROKKU-CR-s',0,0,45.0000,45.0000,0,NULL,'instock',0,0.00,1,'taxable','',NULL), +(433,'ROKKU-CR-g',0,0,48.0000,48.0000,0,NULL,'instock',0,0.00,1,'taxable','',NULL), +(435,'KARA-EC-s',0,0,40.0000,40.0000,0,NULL,'instock',0,0.00,3,'taxable','',NULL), +(447,'KARA-EC-s-1',0,0,45.0000,45.0000,0,NULL,'instock',0,0.00,3,'taxable','',''), +(478,'ROKKU-CR-g-lapis',0,0,48.0000,48.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), +(479,'ROKKU-CR-g-malachite',0,0,48.0000,48.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), +(480,'ROKKU-CR-g-tiger',0,0,48.0000,48.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), +(490,'HADOU-BOP',0,0,35.0000,50.0000,0,NULL,'instock',0,0.00,1,'taxable','',NULL), +(493,'HADOU-BOP-left',0,0,35.0000,35.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), +(494,'HADOU-BOP-pair',0,0,50.0000,50.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), +(495,'HADOU-BOP-right',0,0,35.0000,35.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), +(496,'MUGURA-CR1',0,0,45.0000,45.0000,0,NULL,'instock',0,0.00,0,'taxable','',NULL), +(515,'BOROBORO-BO1-g',0,0,65.0000,65.0000,0,NULL,'instock',0,0.00,0,'taxable','',NULL), +(521,'BOROBORO-BO1-s',0,0,60.0000,60.0000,0,NULL,'instock',0,0.00,2,'taxable','',NULL), +(523,'BOROBORO-BO1-s-brown',0,0,60.0000,60.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), +(528,NULL,0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), +(529,NULL,0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), +(530,NULL,0,0,100.0000,100.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), +(532,NULL,0,0,95.0000,95.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), +(533,NULL,0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), +(534,NULL,0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), +(535,'BOROBORO-BELT',0,0,65.0000,65.0000,0,NULL,'instock',0,0.00,0,'taxable','',NULL), +(540,'BOROBORO-BLT-crystal',0,0,65.0000,65.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), +(541,'BOROBORO-BLT-jade',0,0,65.0000,65.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), +(545,'KARA-CR1-g',0,0,45.0000,70.0000,0,NULL,'instock',0,0.00,2,'taxable','',NULL), +(552,'KARA-CR-g-one',0,0,45.0000,45.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), +(553,'KARA-CR-g-pair',0,0,70.0000,70.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), +(554,'KARA-CR1-s',0,0,40.0000,65.0000,0,NULL,'instock',0,0.00,1,'taxable','',NULL), +(555,'KARA-CR-s-pair',0,0,65.0000,65.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), +(556,'KARA-CR-s-one',0,0,40.0000,40.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), +(560,'MUGURA-BOP-all',0,0,55.0000,55.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), +(561,'MUGURA-BOP-long',0,0,38.0000,38.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), +(562,'MUGURA-BOP-medium',0,0,35.0000,35.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), +(563,'MUGURA-BOP-short',0,0,30.0000,30.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), +(565,'BOROBORO-BO2-s-one',0,0,45.0000,45.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), +(566,'BOROBORO-BO2-s-pair',0,0,70.0000,70.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), +(567,'BOROBORO-BO2-s-two',0,0,45.0000,45.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), +(569,'BOROBORO-BO2-g-one',0,0,50.0000,50.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), +(570,'BOROBORO-BO2-g-pair',0,0,75.0000,75.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), +(571,'BOROBORO-BO2-g-two',0,0,50.0000,50.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), +(610,'HATTARI-BR',0,0,120.0000,120.0000,0,NULL,'instock',0,0.00,0,'taxable','',NULL), +(613,'BOROBORO-B2-g',0,0,70.0000,70.0000,0,NULL,'instock',0,0.00,0,'taxable','',NULL), +(614,'BOROBORO-B2-g-50',0,0,70.0000,70.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), +(615,'BOROBORO-B2-g-52',0,0,70.0000,70.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), +(616,'BOROBORO-B2-g-54',0,0,70.0000,70.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), +(617,'BOROBORO-B2-g-56',0,0,70.0000,70.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), +(618,'BOROBORO-B2-g-58',0,0,70.0000,70.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), +(619,NULL,0,0,70.0000,70.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), +(620,NULL,0,0,70.0000,70.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), +(624,'BOROBORO-B2-g-60',0,0,70.0000,70.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), +(625,'BOROBORO-B2-s',0,0,65.0000,65.0000,0,NULL,'instock',0,0.00,0,'taxable','',NULL), +(626,'BOROBORO-B2-s-50',0,0,65.0000,65.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), +(627,'BOROBORO-B2-s-52',0,0,65.0000,65.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), +(628,'BOROBORO-B2-s-54',0,0,65.0000,65.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), +(629,'BOROBORO-B2-s-56',0,0,65.0000,65.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), +(630,'BOROBORO-B2-s-58',0,0,65.0000,65.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), +(631,'BOROBORO-B2-s-60',0,0,65.0000,65.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), +(632,NULL,0,0,65.0000,65.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), +(633,'BOROBORO-B2-s-64',0,0,65.0000,65.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), +(637,'PIASU-BO-left',0,0,50.0000,50.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), +(638,'PIASU-BO-pair',0,0,85.0000,85.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), +(639,'PIASU-BO-right',0,0,50.0000,50.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), +(641,'HATTARI-CR1-s-left',0,0,55.0000,55.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), +(642,'HATTARI-CR1-s-pair',0,0,85.0000,85.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), +(643,'HATTARI-CR1-s-right',0,0,55.0000,55.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), +(645,'HATTARI-CR1-g-left',0,0,60.0000,60.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), +(646,'HATTARI-CR1-g-pair',0,0,90.0000,90.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), +(647,'HATTARI-CR1-g-right',0,0,60.0000,60.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), +(651,'TAMANORI-CR-s-long',0,0,50.0000,50.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), +(652,'TAMANORI-CR-s-pair',0,0,70.0000,70.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), +(653,'TAMANORI-CR-s-short',0,0,48.0000,48.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), +(654,'TAMANORI-CR-g-long',0,0,52.0000,52.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), +(655,'TAMANORI-CR-g-pair',0,0,75.0000,75.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), +(656,'TAMANORI-CR-g-short',0,0,50.0000,50.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), +(766,'FUYOU-BO-s',0,0,55.0000,85.0000,0,NULL,'instock',0,0.00,0,'taxable','',NULL), +(767,'FUYOU-BO-s-pair',0,0,85.0000,85.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), +(768,'FUYOU-BO-s-long',0,0,55.0000,55.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), +(775,'FUYOU-BO-s-mid',0,0,55.0000,55.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), +(787,NULL,0,0,85.0000,85.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), +(790,NULL,0,0,85.0000,85.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), +(791,NULL,0,0,85.0000,85.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), +(792,NULL,0,0,85.0000,85.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), +(793,NULL,0,0,85.0000,85.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), +(794,NULL,0,0,85.0000,85.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), +(795,NULL,0,0,85.0000,85.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), +(796,NULL,0,0,85.0000,85.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), +(798,NULL,0,0,75.0000,75.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), +(799,NULL,0,0,75.0000,75.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), +(800,NULL,0,0,75.0000,75.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), +(801,NULL,0,0,75.0000,75.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), +(802,NULL,0,0,75.0000,75.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), +(803,NULL,0,0,75.0000,75.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), +(804,NULL,0,0,75.0000,75.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), +(805,NULL,0,0,75.0000,75.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), +(806,NULL,0,0,75.0000,75.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), +(807,NULL,0,0,0.0000,0.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), +(808,NULL,0,0,0.0000,0.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), +(809,NULL,0,0,0.0000,0.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), +(810,NULL,0,0,0.0000,0.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), +(811,NULL,0,0,0.0000,0.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), +(812,NULL,0,0,0.0000,0.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), +(813,NULL,0,0,0.0000,0.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), +(814,NULL,0,0,0.0000,0.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), +(815,NULL,0,0,0.0000,0.0000,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL), +(845,'ROKKU-CR-s-lapis',0,0,45.0000,45.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), +(846,'ROKKU-CR-s-malachite',0,0,45.0000,45.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), +(847,'ROKKU-CR-s-tiger',0,0,45.0000,45.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), +(926,'BOROBORO-BO1-s-honey',0,0,60.0000,60.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), +(941,'UTEKI-B-s',0,0,110.0000,110.0000,0,NULL,'instock',0,0.00,0,'taxable','',''), +(944,'UTEKI-B-s-50',0,0,110.0000,110.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), +(945,'UTEKI-B-s-52',0,0,110.0000,110.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), +(946,'UTEKI-B-s-54',0,0,110.0000,110.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), +(947,'UTEKI-B-s-56',0,0,110.0000,110.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), +(948,'UTEKI-B-s-58',0,0,110.0000,110.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), +(949,'UTEKI-B-s-60',0,0,110.0000,110.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), +(950,'UTEKI-B-s-62',0,0,110.0000,110.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), +(951,'UTEKI-B-s-64',0,0,110.0000,110.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), +(953,'UTEKI-B-g',0,0,115.0000,115.0000,0,NULL,'instock',0,0.00,0,'taxable','',''), +(954,'UTEKI-B-s-50-1',0,0,115.0000,115.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), +(955,'UTEKI-B-s-52-1',0,0,115.0000,115.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), +(956,'UTEKI-B-s-54-1',0,0,115.0000,115.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), +(957,'UTEKI-B-s-56-1',0,0,115.0000,115.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), +(958,'UTEKI-B-s-58-1',0,0,115.0000,115.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), +(959,'UTEKI-B-s-60-1',0,0,115.0000,115.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), +(960,'UTEKI-B-s-62-1',0,0,115.0000,115.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), +(961,'UTEKI-B-s-64-1',0,0,115.0000,115.0000,0,NULL,'instock',0,0.00,0,'taxable','parent',NULL), +(982,'UTEKI-C-s',0,0,100.0000,100.0000,0,NULL,'instock',0,0.00,0,'taxable','',''), +(994,'UTEKI-C-g',0,0,100.0000,100.0000,0,NULL,'instock',0,0.00,0,'taxable','',''); +/*!40000 ALTER TABLE `haikuwp_wc_product_meta_lookup` ENABLE KEYS */; +UNLOCK TABLES; +commit; + +-- +-- Table structure for table `haikuwp_wc_rate_limits` +-- + +DROP TABLE IF EXISTS `haikuwp_wc_rate_limits`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8mb4 */; +CREATE TABLE `haikuwp_wc_rate_limits` ( + `rate_limit_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, + `rate_limit_key` varchar(200) NOT NULL, + `rate_limit_expiry` bigint(20) unsigned NOT NULL, + `rate_limit_remaining` smallint(10) NOT NULL DEFAULT 0, + PRIMARY KEY (`rate_limit_id`), + UNIQUE KEY `rate_limit_key` (`rate_limit_key`(191)) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `haikuwp_wc_rate_limits` +-- + +LOCK TABLES `haikuwp_wc_rate_limits` WRITE; +/*!40000 ALTER TABLE `haikuwp_wc_rate_limits` DISABLE KEYS */; +set autocommit=0; +/*!40000 ALTER TABLE `haikuwp_wc_rate_limits` ENABLE KEYS */; +UNLOCK TABLES; +commit; + +-- +-- Table structure for table `haikuwp_wc_reserved_stock` +-- + +DROP TABLE IF EXISTS `haikuwp_wc_reserved_stock`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8mb4 */; +CREATE TABLE `haikuwp_wc_reserved_stock` ( + `order_id` bigint(20) NOT NULL, + `product_id` bigint(20) NOT NULL, + `stock_quantity` double NOT NULL DEFAULT 0, + `timestamp` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + `expires` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + PRIMARY KEY (`order_id`,`product_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `haikuwp_wc_reserved_stock` +-- + +LOCK TABLES `haikuwp_wc_reserved_stock` WRITE; +/*!40000 ALTER TABLE `haikuwp_wc_reserved_stock` DISABLE KEYS */; +set autocommit=0; +/*!40000 ALTER TABLE `haikuwp_wc_reserved_stock` ENABLE KEYS */; +UNLOCK TABLES; +commit; + +-- +-- Table structure for table `haikuwp_wc_tax_rate_classes` +-- + +DROP TABLE IF EXISTS `haikuwp_wc_tax_rate_classes`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8mb4 */; +CREATE TABLE `haikuwp_wc_tax_rate_classes` ( + `tax_rate_class_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, + `name` varchar(200) NOT NULL DEFAULT '', + `slug` varchar(200) NOT NULL DEFAULT '', + PRIMARY KEY (`tax_rate_class_id`), + UNIQUE KEY `slug` (`slug`(191)) +) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `haikuwp_wc_tax_rate_classes` +-- + +LOCK TABLES `haikuwp_wc_tax_rate_classes` WRITE; +/*!40000 ALTER TABLE `haikuwp_wc_tax_rate_classes` DISABLE KEYS */; +set autocommit=0; +INSERT INTO `haikuwp_wc_tax_rate_classes` VALUES +(1,'Reduced rate','reduced-rate'), +(2,'Zero rate','zero-rate'); +/*!40000 ALTER TABLE `haikuwp_wc_tax_rate_classes` ENABLE KEYS */; +UNLOCK TABLES; +commit; + +-- +-- Table structure for table `haikuwp_wc_webhooks` +-- + +DROP TABLE IF EXISTS `haikuwp_wc_webhooks`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8mb4 */; +CREATE TABLE `haikuwp_wc_webhooks` ( + `webhook_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, + `status` varchar(200) NOT NULL, + `name` text NOT NULL, + `user_id` bigint(20) unsigned NOT NULL, + `delivery_url` text NOT NULL, + `secret` text NOT NULL, + `topic` varchar(200) NOT NULL, + `date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + `date_created_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + `date_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + `date_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + `api_version` smallint(4) NOT NULL, + `failure_count` smallint(10) NOT NULL DEFAULT 0, + `pending_delivery` tinyint(1) NOT NULL DEFAULT 0, + PRIMARY KEY (`webhook_id`), + KEY `user_id` (`user_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `haikuwp_wc_webhooks` +-- + +LOCK TABLES `haikuwp_wc_webhooks` WRITE; +/*!40000 ALTER TABLE `haikuwp_wc_webhooks` DISABLE KEYS */; +set autocommit=0; +/*!40000 ALTER TABLE `haikuwp_wc_webhooks` ENABLE KEYS */; +UNLOCK TABLES; +commit; + +-- +-- Table structure for table `haikuwp_woocommerce_api_keys` +-- + +DROP TABLE IF EXISTS `haikuwp_woocommerce_api_keys`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8mb4 */; +CREATE TABLE `haikuwp_woocommerce_api_keys` ( + `key_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, + `user_id` bigint(20) unsigned NOT NULL, + `description` varchar(200) DEFAULT NULL, + `permissions` varchar(10) NOT NULL, + `consumer_key` char(64) NOT NULL, + `consumer_secret` char(43) NOT NULL, + `nonces` longtext DEFAULT NULL, + `truncated_key` char(7) NOT NULL, + `last_access` datetime DEFAULT NULL, + PRIMARY KEY (`key_id`), + KEY `consumer_key` (`consumer_key`), + KEY `consumer_secret` (`consumer_secret`) +) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `haikuwp_woocommerce_api_keys` +-- + +LOCK TABLES `haikuwp_woocommerce_api_keys` WRITE; +/*!40000 ALTER TABLE `haikuwp_woocommerce_api_keys` DISABLE KEYS */; +set autocommit=0; +INSERT INTO `haikuwp_woocommerce_api_keys` VALUES +(3,1,'lecture-clients','read_write','5d6090d73adb9034e3ece67a7e0394110a40dc8da3d59244bc4e916e8fd16533','cs_e213979ea3d1490b275dd75c8d53d05c82853119',NULL,'3606954','2025-06-23 14:53:14'); +/*!40000 ALTER TABLE `haikuwp_woocommerce_api_keys` ENABLE KEYS */; +UNLOCK TABLES; +commit; + +-- +-- Table structure for table `haikuwp_woocommerce_attribute_taxonomies` +-- + +DROP TABLE IF EXISTS `haikuwp_woocommerce_attribute_taxonomies`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8mb4 */; +CREATE TABLE `haikuwp_woocommerce_attribute_taxonomies` ( + `attribute_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, + `attribute_name` varchar(200) NOT NULL, + `attribute_label` varchar(200) DEFAULT NULL, + `attribute_type` varchar(20) NOT NULL, + `attribute_orderby` varchar(20) NOT NULL, + `attribute_public` int(1) NOT NULL DEFAULT 1, + PRIMARY KEY (`attribute_id`), + KEY `attribute_name` (`attribute_name`(20)) +) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `haikuwp_woocommerce_attribute_taxonomies` +-- + +LOCK TABLES `haikuwp_woocommerce_attribute_taxonomies` WRITE; +/*!40000 ALTER TABLE `haikuwp_woocommerce_attribute_taxonomies` DISABLE KEYS */; +set autocommit=0; +INSERT INTO `haikuwp_woocommerce_attribute_taxonomies` VALUES +(1,'size','Size','select','menu_order',0), +(2,'side','Side','select','menu_order',0), +(3,'stone','Stone','select','name',0); +/*!40000 ALTER TABLE `haikuwp_woocommerce_attribute_taxonomies` ENABLE KEYS */; +UNLOCK TABLES; +commit; + +-- +-- Table structure for table `haikuwp_woocommerce_downloadable_product_permissions` +-- + +DROP TABLE IF EXISTS `haikuwp_woocommerce_downloadable_product_permissions`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8mb4 */; +CREATE TABLE `haikuwp_woocommerce_downloadable_product_permissions` ( + `permission_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, + `download_id` varchar(36) NOT NULL, + `product_id` bigint(20) unsigned NOT NULL, + `order_id` bigint(20) unsigned NOT NULL DEFAULT 0, + `order_key` varchar(200) NOT NULL, + `user_email` varchar(200) NOT NULL, + `user_id` bigint(20) unsigned DEFAULT NULL, + `downloads_remaining` varchar(9) DEFAULT NULL, + `access_granted` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + `access_expires` datetime DEFAULT NULL, + `download_count` bigint(20) unsigned NOT NULL DEFAULT 0, + PRIMARY KEY (`permission_id`), + KEY `download_order_key_product` (`product_id`,`order_id`,`order_key`(16),`download_id`), + KEY `download_order_product` (`download_id`,`order_id`,`product_id`), + KEY `order_id` (`order_id`), + KEY `user_order_remaining_expires` (`user_id`,`order_id`,`downloads_remaining`,`access_expires`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `haikuwp_woocommerce_downloadable_product_permissions` +-- + +LOCK TABLES `haikuwp_woocommerce_downloadable_product_permissions` WRITE; +/*!40000 ALTER TABLE `haikuwp_woocommerce_downloadable_product_permissions` DISABLE KEYS */; +set autocommit=0; +/*!40000 ALTER TABLE `haikuwp_woocommerce_downloadable_product_permissions` ENABLE KEYS */; +UNLOCK TABLES; +commit; + +-- +-- Table structure for table `haikuwp_woocommerce_log` +-- + +DROP TABLE IF EXISTS `haikuwp_woocommerce_log`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8mb4 */; +CREATE TABLE `haikuwp_woocommerce_log` ( + `log_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, + `timestamp` datetime NOT NULL, + `level` smallint(4) NOT NULL, + `source` varchar(200) NOT NULL, + `message` longtext NOT NULL, + `context` longtext DEFAULT NULL, + PRIMARY KEY (`log_id`), + KEY `level` (`level`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `haikuwp_woocommerce_log` +-- + +LOCK TABLES `haikuwp_woocommerce_log` WRITE; +/*!40000 ALTER TABLE `haikuwp_woocommerce_log` DISABLE KEYS */; +set autocommit=0; +/*!40000 ALTER TABLE `haikuwp_woocommerce_log` ENABLE KEYS */; +UNLOCK TABLES; +commit; + +-- +-- Table structure for table `haikuwp_woocommerce_order_itemmeta` +-- + +DROP TABLE IF EXISTS `haikuwp_woocommerce_order_itemmeta`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8mb4 */; +CREATE TABLE `haikuwp_woocommerce_order_itemmeta` ( + `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, + `order_item_id` bigint(20) unsigned NOT NULL, + `meta_key` varchar(255) DEFAULT NULL, + `meta_value` longtext DEFAULT NULL, + PRIMARY KEY (`meta_id`), + KEY `order_item_id` (`order_item_id`), + KEY `meta_key` (`meta_key`(32)) +) ENGINE=InnoDB AUTO_INCREMENT=2219 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `haikuwp_woocommerce_order_itemmeta` +-- + +LOCK TABLES `haikuwp_woocommerce_order_itemmeta` WRITE; +/*!40000 ALTER TABLE `haikuwp_woocommerce_order_itemmeta` DISABLE KEYS */; +set autocommit=0; +INSERT INTO `haikuwp_woocommerce_order_itemmeta` VALUES +(1111,136,'_product_id','331'), +(1112,136,'_variation_id','0'), +(1113,136,'_qty','1'), +(1114,136,'_tax_class',''), +(1115,136,'_line_subtotal','35'), +(1116,136,'_line_subtotal_tax','0'), +(1117,136,'_line_total','35'), +(1118,136,'_line_tax','0'), +(1119,136,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), +(1120,137,'method_id','mondial_relay_point_relais'), +(1121,137,'instance_id',''), +(1122,137,'cost','300'), +(1123,137,'total_tax','0'), +(1124,137,'taxes','a:1:{s:5:\"total\";a:0:{}}'), +(1125,138,'_product_id','288'), +(1126,138,'_variation_id','646'), +(1127,138,'_qty','1'), +(1128,138,'_tax_class',''), +(1129,138,'_line_subtotal','80'), +(1130,138,'_line_subtotal_tax','0'), +(1131,138,'_line_total','80'), +(1132,138,'_line_tax','0'), +(1133,138,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), +(1134,138,'pa_side','pair'), +(1135,139,'method_id','mondial_relay_point_relais'), +(1136,139,'instance_id',''), +(1137,139,'cost','0'), +(1138,139,'total_tax','0'), +(1139,139,'taxes','a:1:{s:5:\"total\";a:0:{}}'), +(1195,147,'_product_id','251'), +(1196,147,'_variation_id','0'), +(1197,147,'_qty','1'), +(1198,147,'_tax_class',''), +(1199,147,'_line_subtotal','65'), +(1200,147,'_line_subtotal_tax','0'), +(1201,147,'_line_total','65'), +(1202,147,'_line_tax','0'), +(1203,147,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), +(1204,148,'method_id','mondial_relay_point_relais'), +(1205,148,'instance_id',''), +(1206,148,'cost','0'), +(1207,148,'total_tax','0'), +(1208,148,'taxes','a:1:{s:5:\"total\";a:0:{}}'), +(1209,149,'_product_id','258'), +(1210,149,'_variation_id','0'), +(1211,149,'_qty','1'), +(1212,149,'_tax_class',''), +(1213,149,'_line_subtotal','75'), +(1214,149,'_line_subtotal_tax','0'), +(1215,149,'_line_total','75'), +(1216,149,'_line_tax','0'), +(1217,149,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), +(1218,150,'method_id','mondial_relay_point_relais'), +(1219,150,'instance_id',''), +(1220,150,'cost','0'), +(1221,150,'total_tax','0'), +(1222,150,'taxes','a:1:{s:5:\"total\";a:0:{}}'), +(1223,151,'_product_id','251'), +(1224,151,'_variation_id','0'), +(1225,151,'_qty','1'), +(1226,151,'_tax_class',''), +(1227,151,'_line_subtotal','65'), +(1228,151,'_line_subtotal_tax','0'), +(1229,151,'_line_total','65'), +(1230,151,'_line_tax','0'), +(1231,151,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), +(1232,152,'_product_id','271'), +(1233,152,'_variation_id','0'), +(1234,152,'_qty','1'), +(1235,152,'_tax_class',''), +(1236,152,'_line_subtotal','95'), +(1237,152,'_line_subtotal_tax','0'), +(1238,152,'_line_total','95'), +(1239,152,'_line_tax','0'), +(1240,152,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), +(1241,153,'method_id','mondial_relay_point_relais'), +(1242,153,'instance_id',''), +(1243,153,'cost','0'), +(1244,153,'total_tax','0'), +(1245,153,'taxes','a:1:{s:5:\"total\";a:0:{}}'), +(1246,154,'_product_id','202'), +(1247,154,'_variation_id','637'), +(1248,154,'_qty','1'), +(1249,154,'_tax_class',''), +(1250,154,'_line_subtotal','50'), +(1251,154,'_line_subtotal_tax','0'), +(1252,154,'_line_total','50'), +(1253,154,'_line_tax','0'), +(1254,154,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), +(1255,154,'pa_side','left-side'), +(1256,155,'_product_id','291'), +(1257,155,'_variation_id','649'), +(1258,155,'_qty','1'), +(1259,155,'_tax_class',''), +(1260,155,'_line_subtotal','70'), +(1261,155,'_line_subtotal_tax','0'), +(1262,155,'_line_total','70'), +(1263,155,'_line_tax','0'), +(1264,155,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), +(1265,155,'pa_side','pair'), +(1266,156,'method_id','mondial_relay_point_relais'), +(1267,156,'instance_id',''), +(1268,156,'cost','0'), +(1269,156,'total_tax','0'), +(1270,156,'taxes','a:1:{s:5:\"total\";a:0:{}}'), +(1271,157,'_product_id','398'), +(1272,157,'_variation_id','0'), +(1273,157,'_qty','1'), +(1274,157,'_tax_class',''), +(1275,157,'_line_subtotal','65'), +(1276,157,'_line_subtotal_tax','0'), +(1277,157,'_line_total','65'), +(1278,157,'_line_tax','0'), +(1279,157,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), +(1280,158,'method_id','mondial_relay_point_relais'), +(1281,158,'instance_id',''), +(1282,158,'cost','0'), +(1283,158,'total_tax','0'), +(1284,158,'taxes','a:1:{s:5:\"total\";a:0:{}}'), +(1285,159,'_product_id','521'), +(1286,159,'_variation_id','523'), +(1287,159,'_qty','1'), +(1288,159,'_tax_class',''), +(1289,159,'_line_subtotal','60'), +(1290,159,'_line_subtotal_tax','0'), +(1291,159,'_line_total','60'), +(1292,159,'_line_tax','0'), +(1293,159,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), +(1294,159,'pa_stone','tiger-eye'), +(1295,160,'_product_id','342'), +(1296,160,'_variation_id','563'), +(1297,160,'_qty','1'), +(1298,160,'_tax_class',''), +(1299,160,'_line_subtotal','25'), +(1300,160,'_line_subtotal_tax','0'), +(1301,160,'_line_total','25'), +(1302,160,'_line_tax','0'), +(1303,160,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), +(1304,160,'pa_side','short'), +(1305,161,'_product_id','342'), +(1306,161,'_variation_id','560'), +(1307,161,'_qty','1'), +(1308,161,'_tax_class',''), +(1309,161,'_line_subtotal','58'), +(1310,161,'_line_subtotal_tax','0'), +(1311,161,'_line_total','58'), +(1312,161,'_line_tax','0'), +(1313,161,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), +(1314,161,'pa_side','all'), +(1315,162,'method_id','mondial_relay_point_relais'), +(1316,162,'instance_id',''), +(1317,162,'cost','0'), +(1318,162,'total_tax','0'), +(1319,162,'taxes','a:1:{s:5:\"total\";a:0:{}}'), +(1320,163,'_product_id','263'), +(1321,163,'_variation_id','0'), +(1322,163,'_qty','1'), +(1323,163,'_tax_class',''), +(1324,163,'_line_subtotal','90'), +(1325,163,'_line_subtotal_tax','0'), +(1326,163,'_line_total','90'), +(1327,163,'_line_tax','0'), +(1328,163,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), +(1329,164,'method_id','mondial_relay_point_relais'), +(1330,164,'instance_id',''), +(1331,164,'cost','0'), +(1332,164,'total_tax','0'), +(1333,164,'taxes','a:1:{s:5:\"total\";a:0:{}}'), +(1334,165,'_product_id','306'), +(1335,165,'_variation_id','652'), +(1336,165,'_qty','1'), +(1337,165,'_tax_class',''), +(1338,165,'_line_subtotal','70'), +(1339,165,'_line_subtotal_tax','0'), +(1340,165,'_line_total','70'), +(1341,165,'_line_tax','0'), +(1342,165,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), +(1343,165,'pa_side','pair'), +(1344,166,'_product_id','183'), +(1345,166,'_variation_id','566'), +(1346,166,'_qty','1'), +(1347,166,'_tax_class',''), +(1348,166,'_line_subtotal','70'), +(1349,166,'_line_subtotal_tax','0'), +(1350,166,'_line_total','70'), +(1351,166,'_line_tax','0'), +(1352,166,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), +(1353,166,'pa_side','pair'), +(1354,167,'_product_id','274'), +(1355,167,'_variation_id','0'), +(1356,167,'_qty','1'), +(1357,167,'_tax_class',''), +(1358,167,'_line_subtotal','95'), +(1359,167,'_line_subtotal_tax','0'), +(1360,167,'_line_total','95'), +(1361,167,'_line_tax','0'), +(1362,167,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), +(1363,168,'method_id','mondial_relay_point_relais'), +(1364,168,'instance_id',''), +(1365,168,'cost','0'), +(1366,168,'total_tax','0'), +(1367,168,'taxes','a:1:{s:5:\"total\";a:0:{}}'), +(1396,173,'_product_id','288'), +(1397,173,'_variation_id','646'), +(1398,173,'_qty','1'), +(1399,173,'_tax_class',''), +(1400,173,'_line_subtotal','80'), +(1401,173,'_line_subtotal_tax','0'), +(1402,173,'_line_total','80'), +(1403,173,'_line_tax','0'), +(1404,173,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), +(1405,173,'pa_side','pair'), +(1406,174,'method_id','mondial_relay_point_relais'), +(1407,174,'instance_id',''), +(1408,174,'cost','0'), +(1409,174,'total_tax','0'), +(1410,174,'taxes','a:1:{s:5:\"total\";a:0:{}}'), +(1411,175,'_product_id','288'), +(1412,175,'_variation_id','646'), +(1413,175,'_qty','1'), +(1414,175,'_tax_class',''), +(1415,175,'_line_subtotal','80'), +(1416,175,'_line_subtotal_tax','0'), +(1417,175,'_line_total','80'), +(1418,175,'_line_tax','0'), +(1419,175,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), +(1420,175,'pa_side','pair'), +(1421,176,'method_id','mondial_relay_point_relais'), +(1422,176,'instance_id',''), +(1423,176,'cost','0'), +(1424,176,'total_tax','0'), +(1425,176,'taxes','a:1:{s:5:\"total\";a:0:{}}'), +(1426,177,'_product_id','288'), +(1427,177,'_variation_id','646'), +(1428,177,'_qty','1'), +(1429,177,'_tax_class',''), +(1430,177,'_line_subtotal','80'), +(1431,177,'_line_subtotal_tax','0'), +(1432,177,'_line_total','80'), +(1433,177,'_line_tax','0'), +(1434,177,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), +(1435,177,'pa_side','pair'), +(1436,178,'_product_id','285'), +(1437,178,'_variation_id','642'), +(1438,178,'_qty','1'), +(1439,178,'_tax_class',''), +(1440,178,'_line_subtotal','75'), +(1441,178,'_line_subtotal_tax','0'), +(1442,178,'_line_total','75'), +(1443,178,'_line_tax','0'), +(1444,178,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), +(1445,178,'pa_side','pair'), +(1446,179,'method_id','mondial_relay_point_relais'), +(1447,179,'instance_id',''), +(1448,179,'cost','0'), +(1449,179,'total_tax','0'), +(1450,179,'taxes','a:1:{s:5:\"total\";a:0:{}}'), +(1451,180,'_product_id','312'), +(1452,180,'_variation_id','655'), +(1453,180,'_qty','1'), +(1454,180,'_tax_class',''), +(1455,180,'_line_subtotal','75'), +(1456,180,'_line_subtotal_tax','0'), +(1457,180,'_line_total','75'), +(1458,180,'_line_tax','0'), +(1459,180,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), +(1460,180,'pa_side','pair'), +(1461,181,'method_id','mondial_relay_point_relais'), +(1462,181,'instance_id',''), +(1463,181,'cost','0'), +(1464,181,'total_tax','0'), +(1465,181,'taxes','a:1:{s:5:\"total\";a:0:{}}'), +(1466,182,'_product_id','335'), +(1467,182,'_variation_id','0'), +(1468,182,'_qty','1'), +(1469,182,'_tax_class',''), +(1470,182,'_line_subtotal','40'), +(1471,182,'_line_subtotal_tax','0'), +(1472,182,'_line_total','40'), +(1473,182,'_line_tax','0'), +(1474,182,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), +(1475,183,'_product_id','545'), +(1476,183,'_variation_id','553'), +(1477,183,'_qty','1'), +(1478,183,'_tax_class',''), +(1479,183,'_line_subtotal','60'), +(1480,183,'_line_subtotal_tax','0'), +(1481,183,'_line_total','60'), +(1482,183,'_line_tax','0'), +(1483,183,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), +(1484,183,'pa_side','pair'), +(1485,184,'method_id','mondial_relay_point_relais'), +(1486,184,'instance_id',''), +(1487,184,'cost','0'), +(1488,184,'total_tax','0'), +(1489,184,'taxes','a:1:{s:5:\"total\";a:0:{}}'), +(1490,185,'_product_id','306'), +(1491,185,'_variation_id','653'), +(1492,185,'_qty','1'), +(1493,185,'_tax_class',''), +(1494,185,'_line_subtotal','48'), +(1495,185,'_line_subtotal_tax','0'), +(1496,185,'_line_total','48'), +(1497,185,'_line_tax','0'), +(1498,185,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), +(1499,185,'pa_side','short'), +(1500,186,'method_id','flat_rate'), +(1501,186,'instance_id',''), +(1502,186,'cost','1200'), +(1503,186,'total_tax','0'), +(1504,186,'taxes','a:1:{s:5:\"total\";a:0:{}}'), +(1555,193,'_product_id','271'), +(1556,193,'_variation_id','0'), +(1557,193,'_qty','1'), +(1558,193,'_tax_class',''), +(1559,193,'_line_subtotal','95'), +(1560,193,'_line_subtotal_tax','0'), +(1561,193,'_line_total','95'), +(1562,193,'_line_tax','0'), +(1563,193,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), +(1564,194,'method_id','mondial_relay_point_relais'), +(1565,194,'instance_id',''), +(1566,194,'cost','0'), +(1567,194,'total_tax','0'), +(1568,194,'taxes','a:1:{s:5:\"total\";a:0:{}}'), +(1569,195,'_product_id','288'), +(1570,195,'_variation_id','646'), +(1571,195,'_qty','1'), +(1572,195,'_tax_class',''), +(1573,195,'_line_subtotal','80'), +(1574,195,'_line_subtotal_tax','0'), +(1575,195,'_line_total','80'), +(1576,195,'_line_tax','0'), +(1577,195,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), +(1578,195,'pa_side','pair'), +(1579,196,'method_id','mondial_relay_point_relais'), +(1580,196,'instance_id',''), +(1581,196,'cost','0'), +(1582,196,'total_tax','0'), +(1583,196,'taxes','a:1:{s:5:\"total\";a:0:{}}'), +(1584,197,'_product_id','545'), +(1585,197,'_variation_id','553'), +(1586,197,'_qty','1'), +(1587,197,'_tax_class',''), +(1588,197,'_line_subtotal','60'), +(1589,197,'_line_subtotal_tax','0'), +(1590,197,'_line_total','60'), +(1591,197,'_line_tax','0'), +(1592,197,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), +(1593,197,'pa_side','pair'), +(1594,198,'_product_id','490'), +(1595,198,'_variation_id','494'), +(1596,198,'_qty','1'), +(1597,198,'_tax_class',''), +(1598,198,'_line_subtotal','45'), +(1599,198,'_line_subtotal_tax','0'), +(1600,198,'_line_total','45'), +(1601,198,'_line_tax','0'), +(1602,198,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), +(1603,198,'pa_side','pair'), +(1604,199,'method_id','mondial_relay_point_relais'), +(1605,199,'instance_id',''), +(1606,199,'cost','0'), +(1607,199,'total_tax','0'), +(1608,199,'taxes','a:1:{s:5:\"total\";a:0:{}}'), +(1609,200,'_product_id','365'), +(1610,200,'_variation_id','677'), +(1611,200,'_qty','1'), +(1612,200,'_tax_class',''), +(1613,200,'_line_subtotal','60'), +(1614,200,'_line_subtotal_tax','0'), +(1615,200,'_line_total','60'), +(1616,200,'_line_tax','0'), +(1617,200,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), +(1618,200,'pa_side','pair'), +(1619,201,'method_id','mondial_relay_point_relais'), +(1620,201,'instance_id',''), +(1621,201,'cost','0'), +(1622,201,'total_tax','0'), +(1623,201,'taxes','a:1:{s:5:\"total\";a:0:{}}'), +(1624,202,'_product_id','306'), +(1625,202,'_variation_id','651'), +(1626,202,'_qty','1'), +(1627,202,'_tax_class',''), +(1628,202,'_line_subtotal','50'), +(1629,202,'_line_subtotal_tax','0'), +(1630,202,'_line_total','50'), +(1631,202,'_line_tax','0'), +(1632,202,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), +(1633,202,'pa_side','long'), +(1634,203,'method_id','flat_rate'), +(1635,203,'instance_id',''), +(1636,203,'cost','12'), +(1637,203,'total_tax','0'), +(1638,203,'taxes','a:1:{s:5:\"total\";a:0:{}}'), +(1639,204,'_product_id','325'), +(1640,204,'_variation_id','0'), +(1641,204,'_qty','1'), +(1642,204,'_tax_class',''), +(1643,204,'_line_subtotal','35'), +(1644,204,'_line_subtotal_tax','0'), +(1645,204,'_line_total','35'), +(1646,204,'_line_tax','0'), +(1647,204,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), +(1648,205,'_product_id','554'), +(1649,205,'_variation_id','555'), +(1650,205,'_qty','1'), +(1651,205,'_tax_class',''), +(1652,205,'_line_subtotal','55'), +(1653,205,'_line_subtotal_tax','0'), +(1654,205,'_line_total','55'), +(1655,205,'_line_tax','0'), +(1656,205,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), +(1657,205,'pa_side','pair'), +(1658,206,'_product_id','435'), +(1659,206,'_variation_id','0'), +(1660,206,'_qty','1'), +(1661,206,'_tax_class',''), +(1662,206,'_line_subtotal','35'), +(1663,206,'_line_subtotal_tax','0'), +(1664,206,'_line_total','35'), +(1665,206,'_line_tax','0'), +(1666,206,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), +(1667,207,'_product_id','521'), +(1668,207,'_variation_id','523'), +(1669,207,'_qty','1'), +(1670,207,'_tax_class',''), +(1671,207,'_line_subtotal','60'), +(1672,207,'_line_subtotal_tax','0'), +(1673,207,'_line_total','60'), +(1674,207,'_line_tax','0'), +(1675,207,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), +(1676,207,'pa_stone','tiger-eye'), +(1677,208,'_product_id','251'), +(1678,208,'_variation_id','0'), +(1679,208,'_qty','1'), +(1680,208,'_tax_class',''), +(1681,208,'_line_subtotal','65'), +(1682,208,'_line_subtotal_tax','0'), +(1683,208,'_line_total','65'), +(1684,208,'_line_tax','0'), +(1685,208,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), +(1686,209,'method_id','mondial_relay_point_relais'), +(1687,209,'instance_id',''), +(1688,209,'cost','0'), +(1689,209,'total_tax','0'), +(1690,209,'taxes','a:1:{s:5:\"total\";a:0:{}}'), +(1691,210,'_product_id','554'), +(1692,210,'_variation_id','555'), +(1693,210,'_qty','1'), +(1694,210,'_tax_class',''), +(1695,210,'_line_subtotal','55'), +(1696,210,'_line_subtotal_tax','0'), +(1697,210,'_line_total','55'), +(1698,210,'_line_tax','0'), +(1699,210,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), +(1700,210,'pa_side','pair'), +(1701,211,'method_id','mondial_relay_point_relais'), +(1702,211,'instance_id',''), +(1703,211,'cost','0'), +(1704,211,'total_tax','0'), +(1705,211,'taxes','a:1:{s:5:\"total\";a:0:{}}'), +(1706,212,'_product_id','335'), +(1707,212,'_variation_id','0'), +(1708,212,'_qty','1'), +(1709,212,'_tax_class',''), +(1710,212,'_line_subtotal','40'), +(1711,212,'_line_subtotal_tax','0'), +(1712,212,'_line_total','40'), +(1713,212,'_line_tax','0'), +(1714,212,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), +(1715,213,'method_id','mondial_relay_point_relais'), +(1716,213,'instance_id',''), +(1717,213,'cost','3'), +(1718,213,'total_tax','0'), +(1719,213,'taxes','a:1:{s:5:\"total\";a:0:{}}'), +(1720,214,'_product_id','331'), +(1721,214,'_variation_id','0'), +(1722,214,'_qty','1'), +(1723,214,'_tax_class',''), +(1724,214,'_line_subtotal','35'), +(1725,214,'_line_subtotal_tax','0'), +(1726,214,'_line_total','35'), +(1727,214,'_line_tax','0'), +(1728,214,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), +(1729,215,'method_id','mondial_relay_point_relais'), +(1730,215,'instance_id',''), +(1731,215,'cost','3'), +(1732,215,'total_tax','0'), +(1733,215,'taxes','a:1:{s:5:\"total\";a:0:{}}'), +(1734,216,'_product_id','202'), +(1735,216,'_variation_id','638'), +(1736,216,'_qty','1'), +(1737,216,'_tax_class',''), +(1738,216,'_line_subtotal','85'), +(1739,216,'_line_subtotal_tax','0'), +(1740,216,'_line_total','85'), +(1741,216,'_line_tax','0'), +(1742,216,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), +(1743,216,'pa_side','pair'), +(1744,217,'_product_id','306'), +(1745,217,'_variation_id','652'), +(1746,217,'_qty','1'), +(1747,217,'_tax_class',''), +(1748,217,'_line_subtotal','70'), +(1749,217,'_line_subtotal_tax','0'), +(1750,217,'_line_total','70'), +(1751,217,'_line_tax','0'), +(1752,217,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), +(1753,217,'pa_side','pair'), +(1754,218,'method_id','mondial_relay_point_relais'), +(1755,218,'instance_id',''), +(1756,218,'cost','0'), +(1757,218,'total_tax','0'), +(1758,218,'taxes','a:1:{s:5:\"total\";a:0:{}}'), +(1759,219,'_product_id','291'), +(1760,219,'_variation_id','649'), +(1761,219,'_qty','1'), +(1762,219,'_tax_class',''), +(1763,219,'_line_subtotal','70'), +(1764,219,'_line_subtotal_tax','0'), +(1765,219,'_line_total','70'), +(1766,219,'_line_tax','0'), +(1767,219,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), +(1768,219,'pa_side','pair'), +(1769,220,'method_id','mondial_relay_point_relais'), +(1770,220,'instance_id',''), +(1771,220,'cost','0'), +(1772,220,'total_tax','0'), +(1773,220,'taxes','a:1:{s:5:\"total\";a:0:{}}'), +(1774,221,'_product_id','435'), +(1775,221,'_variation_id','0'), +(1776,221,'_qty','1'), +(1777,221,'_tax_class',''), +(1778,221,'_line_subtotal','35'), +(1779,221,'_line_subtotal_tax','0'), +(1780,221,'_line_total','35'), +(1781,221,'_line_tax','0'), +(1782,221,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), +(1783,222,'method_id','mondial_relay_point_relais'), +(1784,222,'instance_id',''), +(1785,222,'cost','3'), +(1786,222,'total_tax','0'), +(1787,222,'taxes','a:1:{s:5:\"total\";a:0:{}}'), +(1788,223,'_product_id','435'), +(1789,223,'_variation_id','0'), +(1790,223,'_qty','1'), +(1791,223,'_tax_class',''), +(1792,223,'_line_subtotal','35'), +(1793,223,'_line_subtotal_tax','0'), +(1794,223,'_line_total','35'), +(1795,223,'_line_tax','0'), +(1796,223,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), +(1797,224,'method_id','mondial_relay_point_relais'), +(1798,224,'instance_id',''), +(1799,224,'cost','3'), +(1800,224,'total_tax','0'), +(1801,224,'taxes','a:1:{s:5:\"total\";a:0:{}}'), +(1802,225,'_product_id','133'), +(1803,225,'_variation_id','135'), +(1804,225,'_qty','1'), +(1805,225,'_tax_class',''), +(1806,225,'_line_subtotal','150'), +(1807,225,'_line_subtotal_tax','0'), +(1808,225,'_line_total','150'), +(1809,225,'_line_tax','0'), +(1810,225,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), +(1811,225,'pa_size','52'), +(1812,226,'method_id','mondial_relay_point_relais'), +(1813,226,'instance_id',''), +(1814,226,'cost','0'), +(1815,226,'total_tax','0'), +(1816,226,'taxes','a:1:{s:5:\"total\";a:0:{}}'), +(1817,227,'_product_id','430'), +(1818,227,'_variation_id','845'), +(1819,227,'_qty','1'), +(1820,227,'_tax_class',''), +(1821,227,'_line_subtotal','45'), +(1822,227,'_line_subtotal_tax','0'), +(1823,227,'_line_total','45'), +(1824,227,'_line_tax','0'), +(1825,227,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), +(1826,227,'pa_stone','lapis-lazuli'), +(1827,228,'method_id','mondial_relay_point_relais'), +(1828,228,'instance_id',''), +(1829,228,'cost','3'), +(1830,228,'total_tax','0'), +(1831,228,'taxes','a:1:{s:5:\"total\";a:0:{}}'), +(1832,229,'_product_id','271'), +(1833,229,'_variation_id','0'), +(1834,229,'_qty','1'), +(1835,229,'_tax_class',''), +(1836,229,'_line_subtotal','95'), +(1837,229,'_line_subtotal_tax','0'), +(1838,229,'_line_total','95'), +(1839,229,'_line_tax','0'), +(1840,229,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), +(1841,230,'method_id','mondial_relay_point_relais'), +(1842,230,'instance_id',''), +(1843,230,'cost','0'), +(1844,230,'total_tax','0'), +(1845,230,'taxes','a:1:{s:5:\"total\";a:0:{}}'), +(1846,231,'_product_id','271'), +(1847,231,'_variation_id','0'), +(1848,231,'_qty','1'), +(1849,231,'_tax_class',''), +(1850,231,'_line_subtotal','95'), +(1851,231,'_line_subtotal_tax','0'), +(1852,231,'_line_total','95'), +(1853,231,'_line_tax','0'), +(1854,231,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), +(1855,232,'method_id','mondial_relay_point_relais'), +(1856,232,'instance_id',''), +(1857,232,'cost','0'), +(1858,232,'total_tax','0'), +(1859,232,'taxes','a:1:{s:5:\"total\";a:0:{}}'), +(1860,233,'_product_id','168'), +(1861,233,'_variation_id','200'), +(1862,233,'_qty','1'), +(1863,233,'_tax_class',''), +(1864,233,'_line_subtotal','150'), +(1865,233,'_line_subtotal_tax','0'), +(1866,233,'_line_total','150'), +(1867,233,'_line_tax','0'), +(1868,233,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), +(1869,233,'pa_stone','malachite'), +(1870,234,'method_id','mondial_relay_point_relais'), +(1871,234,'instance_id',''), +(1872,234,'cost','0'), +(1873,234,'total_tax','0'), +(1874,234,'taxes','a:1:{s:5:\"total\";a:0:{}}'), +(1875,235,'_product_id','274'), +(1876,235,'_variation_id','0'), +(1877,235,'_qty','1'), +(1878,235,'_tax_class',''), +(1879,235,'_line_subtotal','95'), +(1880,235,'_line_subtotal_tax','0'), +(1881,235,'_line_total','95'), +(1882,235,'_line_tax','0'), +(1883,235,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), +(1884,236,'method_id','mondial_relay_point_relais'), +(1885,236,'instance_id',''), +(1886,236,'cost','0'), +(1887,236,'total_tax','0'), +(1888,236,'taxes','a:1:{s:5:\"total\";a:0:{}}'), +(1889,237,'_product_id','168'), +(1890,237,'_variation_id','200'), +(1891,237,'_qty','1'), +(1892,237,'_tax_class',''), +(1893,237,'_line_subtotal','150'), +(1894,237,'_line_subtotal_tax','0'), +(1895,237,'_line_total','150'), +(1896,237,'_line_tax','0'), +(1897,237,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), +(1898,237,'pa_stone','malachite'), +(1899,238,'method_id','mondial_relay_point_relais'), +(1900,238,'instance_id',''), +(1901,238,'cost','0'), +(1902,238,'total_tax','0'), +(1903,238,'taxes','a:1:{s:5:\"total\";a:0:{}}'), +(1904,239,'_product_id','168'), +(1905,239,'_variation_id','200'), +(1906,239,'_qty','1'), +(1907,239,'_tax_class',''), +(1908,239,'_line_subtotal','150'), +(1909,239,'_line_subtotal_tax','0'), +(1910,239,'_line_total','150'), +(1911,239,'_line_tax','0'), +(1912,239,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), +(1913,239,'pa_stone','malachite'), +(1914,240,'_product_id','447'), +(1915,240,'_variation_id','0'), +(1916,240,'_qty','1'), +(1917,240,'_tax_class',''), +(1918,240,'_line_subtotal','40'), +(1919,240,'_line_subtotal_tax','0'), +(1920,240,'_line_total','40'), +(1921,240,'_line_tax','0'), +(1922,240,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), +(1923,241,'method_id','mondial_relay_point_relais'), +(1924,241,'instance_id',''), +(1925,241,'cost','0'), +(1926,241,'total_tax','0'), +(1927,241,'taxes','a:1:{s:5:\"total\";a:0:{}}'), +(1928,242,'_product_id','342'), +(1929,242,'_variation_id','560'), +(1930,242,'_qty','1'), +(1931,242,'_tax_class',''), +(1932,242,'_line_subtotal','58'), +(1933,242,'_line_subtotal_tax','0'), +(1934,242,'_line_total','58'), +(1935,242,'_line_tax','0'), +(1936,242,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), +(1937,242,'pa_side','all'), +(1938,243,'_product_id','433'), +(1939,243,'_variation_id','478'), +(1940,243,'_qty','1'), +(1941,243,'_tax_class',''), +(1942,243,'_line_subtotal','48'), +(1943,243,'_line_subtotal_tax','0'), +(1944,243,'_line_total','48'), +(1945,243,'_line_tax','0'), +(1946,243,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), +(1947,243,'pa_stone','lapis-lazuli'), +(1948,244,'method_id','mondial_relay_point_relais'), +(1949,244,'instance_id',''), +(1950,244,'cost','0'), +(1951,244,'total_tax','0'), +(1952,244,'taxes','a:1:{s:5:\"total\";a:0:{}}'), +(1953,245,'_product_id','328'), +(1954,245,'_variation_id','0'), +(1955,245,'_qty','1'), +(1956,245,'_tax_class',''), +(1957,245,'_line_subtotal','40'), +(1958,245,'_line_subtotal_tax','0'), +(1959,245,'_line_total','40'), +(1960,245,'_line_tax','0'), +(1961,245,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), +(1962,246,'method_id','mondial_relay_point_relais'), +(1963,246,'instance_id',''), +(1964,246,'cost','3'), +(1965,246,'total_tax','0'), +(1966,246,'taxes','a:1:{s:5:\"total\";a:0:{}}'), +(1967,247,'_product_id','328'), +(1968,247,'_variation_id','0'), +(1969,247,'_qty','1'), +(1970,247,'_tax_class',''), +(1971,247,'_line_subtotal','40'), +(1972,247,'_line_subtotal_tax','0'), +(1973,247,'_line_total','40'), +(1974,247,'_line_tax','0'), +(1975,247,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), +(1976,248,'method_id','mondial_relay_point_relais'), +(1977,248,'instance_id',''), +(1978,248,'cost','3'), +(1979,248,'total_tax','0'), +(1980,248,'taxes','a:1:{s:5:\"total\";a:0:{}}'), +(1981,249,'_product_id','625'), +(1982,249,'_variation_id','633'), +(1983,249,'_qty','1'), +(1984,249,'_tax_class',''), +(1985,249,'_line_subtotal','65'), +(1986,249,'_line_subtotal_tax','0'), +(1987,249,'_line_total','65'), +(1988,249,'_line_tax','0'), +(1989,249,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), +(1990,249,'pa_size','64'), +(1991,250,'method_id','mondial_relay_point_relais'), +(1992,250,'instance_id',''), +(1993,250,'cost','0'), +(1994,250,'total_tax','0'), +(1995,250,'taxes','a:1:{s:5:\"total\";a:0:{}}'), +(1996,251,'_product_id','318'), +(1997,251,'_variation_id','0'), +(1998,251,'_qty','1'), +(1999,251,'_tax_class',''), +(2000,251,'_line_subtotal','40'), +(2001,251,'_line_subtotal_tax','0'), +(2002,251,'_line_total','40'), +(2003,251,'_line_tax','0'), +(2004,251,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), +(2005,252,'method_id','mondial_relay_point_relais'), +(2006,252,'instance_id',''), +(2007,252,'cost','3'), +(2008,252,'total_tax','0'), +(2009,252,'taxes','a:1:{s:5:\"total\";a:0:{}}'), +(2010,253,'_product_id','490'), +(2011,253,'_variation_id','494'), +(2012,253,'_qty','1'), +(2013,253,'_tax_class',''), +(2014,253,'_line_subtotal','50'), +(2015,253,'_line_subtotal_tax','0'), +(2016,253,'_line_total','50'), +(2017,253,'_line_tax','0'), +(2018,253,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), +(2019,253,'pa_side','pair'), +(2020,254,'_product_id','342'), +(2021,254,'_variation_id','563'), +(2022,254,'_qty','2'), +(2023,254,'_tax_class',''), +(2024,254,'_line_subtotal','60'), +(2025,254,'_line_subtotal_tax','0'), +(2026,254,'_line_total','60'), +(2027,254,'_line_tax','0'), +(2028,254,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), +(2029,254,'pa_side','short'), +(2030,255,'method_id','mondial_relay_point_relais'), +(2031,255,'instance_id',''), +(2032,255,'cost','0'), +(2033,255,'total_tax','0'), +(2034,255,'taxes','a:1:{s:5:\"total\";a:0:{}}'), +(2035,256,'_product_id','342'), +(2036,256,'_variation_id','563'), +(2037,256,'_qty','2'), +(2038,256,'_tax_class',''), +(2039,256,'_line_subtotal','60'), +(2040,256,'_line_subtotal_tax','0'), +(2041,256,'_line_total','60'), +(2042,256,'_line_tax','0'), +(2043,256,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), +(2044,256,'pa_side','short'), +(2045,257,'method_id','mondial_relay_point_relais'), +(2046,257,'instance_id',''), +(2047,257,'cost','0'), +(2048,257,'total_tax','0'), +(2049,257,'taxes','a:1:{s:5:\"total\";a:0:{}}'), +(2050,258,'_product_id','342'), +(2051,258,'_variation_id','563'), +(2052,258,'_qty','2'), +(2053,258,'_tax_class',''), +(2054,258,'_line_subtotal','60'), +(2055,258,'_line_subtotal_tax','0'), +(2056,258,'_line_total','60'), +(2057,258,'_line_tax','0'), +(2058,258,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), +(2059,258,'pa_side','short'), +(2060,259,'method_id','mondial_relay_point_relais'), +(2061,259,'instance_id',''), +(2062,259,'cost','0'), +(2063,259,'total_tax','0'), +(2064,259,'taxes','a:1:{s:5:\"total\";a:0:{}}'), +(2065,260,'_product_id','342'), +(2066,260,'_variation_id','563'), +(2067,260,'_qty','2'), +(2068,260,'_tax_class',''), +(2069,260,'_line_subtotal','60'), +(2070,260,'_line_subtotal_tax','0'), +(2071,260,'_line_total','60'), +(2072,260,'_line_tax','0'), +(2073,260,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), +(2074,260,'pa_side','short'), +(2075,261,'method_id','mondial_relay_point_relais'), +(2076,261,'instance_id',''), +(2077,261,'cost','0'), +(2078,261,'total_tax','0'), +(2079,261,'taxes','a:1:{s:5:\"total\";a:0:{}}'), +(2080,262,'_product_id','285'), +(2081,262,'_variation_id','642'), +(2082,262,'_qty','1'), +(2083,262,'_tax_class',''), +(2084,262,'_line_subtotal','80'), +(2085,262,'_line_subtotal_tax','0'), +(2086,262,'_line_total','80'), +(2087,262,'_line_tax','0'), +(2088,262,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), +(2089,262,'pa_side','pair'), +(2090,263,'method_id','mondial_relay_point_relais'), +(2091,263,'instance_id',''), +(2092,263,'cost','0'), +(2093,263,'total_tax','0'), +(2094,263,'taxes','a:1:{s:5:\"total\";a:0:{}}'), +(2095,264,'_product_id','447'), +(2096,264,'_variation_id','0'), +(2097,264,'_qty','1'), +(2098,264,'_tax_class',''), +(2099,264,'_line_subtotal','45'), +(2100,264,'_line_subtotal_tax','0'), +(2101,264,'_line_total','45'), +(2102,264,'_line_tax','0'), +(2103,264,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), +(2104,265,'_product_id','435'), +(2105,265,'_variation_id','0'), +(2106,265,'_qty','1'), +(2107,265,'_tax_class',''), +(2108,265,'_line_subtotal','40'), +(2109,265,'_line_subtotal_tax','0'), +(2110,265,'_line_total','40'), +(2111,265,'_line_tax','0'), +(2112,265,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), +(2113,266,'_product_id','328'), +(2114,266,'_variation_id','0'), +(2115,266,'_qty','1'), +(2116,266,'_tax_class',''), +(2117,266,'_line_subtotal','45'), +(2118,266,'_line_subtotal_tax','0'), +(2119,266,'_line_total','45'), +(2120,266,'_line_tax','0'), +(2121,266,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), +(2122,267,'method_id','mondial_relay_point_relais'), +(2123,267,'instance_id',''), +(2124,267,'cost','0'), +(2125,267,'total_tax','0'), +(2126,267,'taxes','a:1:{s:5:\"total\";a:0:{}}'), +(2127,268,'_product_id','766'), +(2128,268,'_variation_id','767'), +(2129,268,'_qty','2'), +(2130,268,'_tax_class',''), +(2131,268,'_line_subtotal','170'), +(2132,268,'_line_subtotal_tax','0'), +(2133,268,'_line_total','170'), +(2134,268,'_line_tax','0'), +(2135,268,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), +(2136,268,'pa_side','pair'), +(2137,269,'method_id','mondial_relay_point_relais'), +(2138,269,'instance_id',''), +(2139,269,'cost','0'), +(2140,269,'total_tax','0'), +(2141,269,'taxes','a:1:{s:5:\"total\";a:0:{}}'), +(2142,270,'_product_id','447'), +(2143,270,'_variation_id','0'), +(2144,270,'_qty','1'), +(2145,270,'_tax_class',''), +(2146,270,'_line_subtotal','45'), +(2147,270,'_line_subtotal_tax','0'), +(2148,270,'_line_total','45'), +(2149,270,'_line_tax','0'), +(2150,270,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), +(2151,271,'_product_id','202'), +(2152,271,'_variation_id','638'), +(2153,271,'_qty','1'), +(2154,271,'_tax_class',''), +(2155,271,'_line_subtotal','85'), +(2156,271,'_line_subtotal_tax','0'), +(2157,271,'_line_total','85'), +(2158,271,'_line_tax','0'), +(2159,271,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), +(2160,271,'pa_side','pair'), +(2161,272,'method_id','mondial_relay_point_relais'), +(2162,272,'instance_id',''), +(2163,272,'cost','0'), +(2164,272,'total_tax','0'), +(2165,272,'taxes','a:1:{s:5:\"total\";a:0:{}}'), +(2166,273,'_product_id','625'), +(2167,273,'_variation_id','630'), +(2168,273,'_qty','1'), +(2169,273,'_tax_class',''), +(2170,273,'_line_subtotal','65'), +(2171,273,'_line_subtotal_tax','0'), +(2172,273,'_line_total','65'), +(2173,273,'_line_tax','0'), +(2174,273,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), +(2175,273,'pa_size','58'), +(2176,274,'method_id','mondial_relay_point_relais'), +(2177,274,'instance_id',''), +(2178,274,'cost','0'), +(2179,274,'total_tax','0'), +(2180,274,'taxes','a:1:{s:5:\"total\";a:0:{}}'), +(2181,275,'_product_id','994'), +(2182,275,'_variation_id','0'), +(2183,275,'_qty','1'), +(2184,275,'_tax_class',''), +(2185,275,'_line_subtotal','100'), +(2186,275,'_line_subtotal_tax','0'), +(2187,275,'_line_total','100'), +(2188,275,'_line_tax','0'), +(2189,275,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), +(2190,276,'method_id','mondial_relay_point_relais'), +(2191,276,'instance_id',''), +(2192,276,'cost','0'), +(2193,276,'total_tax','0'), +(2194,276,'taxes','a:1:{s:5:\"total\";a:0:{}}'), +(2195,277,'_product_id','625'), +(2196,277,'_variation_id','630'), +(2197,277,'_qty','1'), +(2198,277,'_tax_class',''), +(2199,277,'_line_subtotal','65'), +(2200,277,'_line_subtotal_tax','0'), +(2201,277,'_line_total','65'), +(2202,277,'_line_tax','0'), +(2203,277,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), +(2204,277,'pa_size','58'), +(2205,278,'_product_id','994'), +(2206,278,'_variation_id','0'), +(2207,278,'_qty','1'), +(2208,278,'_tax_class',''), +(2209,278,'_line_subtotal','100'), +(2210,278,'_line_subtotal_tax','0'), +(2211,278,'_line_total','100'), +(2212,278,'_line_tax','0'), +(2213,278,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'), +(2214,279,'method_id','mondial_relay_point_relais'), +(2215,279,'instance_id',''), +(2216,279,'cost','0'), +(2217,279,'total_tax','0'), +(2218,279,'taxes','a:1:{s:5:\"total\";a:0:{}}'); +/*!40000 ALTER TABLE `haikuwp_woocommerce_order_itemmeta` ENABLE KEYS */; +UNLOCK TABLES; +commit; + +-- +-- Table structure for table `haikuwp_woocommerce_order_items` +-- + +DROP TABLE IF EXISTS `haikuwp_woocommerce_order_items`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8mb4 */; +CREATE TABLE `haikuwp_woocommerce_order_items` ( + `order_item_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, + `order_item_name` text NOT NULL, + `order_item_type` varchar(200) NOT NULL DEFAULT '', + `order_id` bigint(20) unsigned NOT NULL, + PRIMARY KEY (`order_item_id`), + KEY `order_id` (`order_id`) +) ENGINE=InnoDB AUTO_INCREMENT=280 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `haikuwp_woocommerce_order_items` +-- + +LOCK TABLES `haikuwp_woocommerce_order_items` WRITE; +/*!40000 ALTER TABLE `haikuwp_woocommerce_order_items` DISABLE KEYS */; +set autocommit=0; +INSERT INTO `haikuwp_woocommerce_order_items` VALUES +(136,'Hattari Ear Cuff silver','line_item',861), +(137,'Mondial Relay - Point Relais','shipping',861), +(138,'Hattari Stacked Hoops gold plated - pair','line_item',862), +(139,'Mondial Relay - Point Relais (Free)','shipping',862), +(147,'Tanemaki Bracelet','line_item',866), +(148,'Mondial Relay - Point Relais (Free)','shipping',866), +(149,'Fuyou Bracelet silver','line_item',867), +(150,'Mondial Relay - Point Relais (Free)','shipping',867), +(151,'Tanemaki Bracelet','line_item',868), +(152,'Tanemaki Necklace','line_item',868), +(153,'Mondial Relay - Point Relais (Free)','shipping',868), +(154,'Piasu Earrings - left side','line_item',869), +(155,'Hattari Double Hoops - pair','line_item',869), +(156,'Mondial Relay - Point Relais (Free)','shipping',869), +(157,'Mugura Hoops gold plated','line_item',870), +(158,'Mondial Relay - Point Relais (Free)','shipping',870), +(159,'BoroBoro Bead Earrings silver - Tiger\'s Eye','line_item',871), +(160,'Kagun Trio Earrings - short','line_item',871), +(161,'Kagun Trio Earrings - all','line_item',871), +(162,'Mondial Relay - Point Relais (Free)','shipping',871), +(163,'Ikkan Necklace','line_item',872), +(164,'Mondial Relay - Point Relais (Free)','shipping',872), +(165,'Tamanori Hoops silver - pair','line_item',873), +(166,'BoroBoro Long Earrings silver - pair','line_item',873), +(167,'Fuyou Necklace','line_item',873), +(168,'Mondial Relay - Point Relais (Free)','shipping',873), +(173,'Hattari Stacked Hoops gold plated - pair','line_item',876), +(174,'Mondial Relay - Point Relais (Free)','shipping',876), +(175,'Hattari Stacked Hoops gold plated - pair','line_item',877), +(176,'Mondial Relay - Point Relais (Free)','shipping',877), +(177,'Hattari Stacked Hoops gold plated - pair','line_item',878), +(178,'Hattari Stacked Hoops silver - pair','line_item',878), +(179,'Mondial Relay - Point Relais (Free)','shipping',878), +(180,'Tamanori Hoops gold plated - pair','line_item',879), +(181,'Mondial Relay - Point Relais (Free)','shipping',879), +(182,'Hattari Ear Cuff gold plated','line_item',880), +(183,'Kara Hoops gold plated - pair','line_item',880), +(184,'Mondial Relay - Point Relais (Free)','shipping',880), +(185,'Tamanori Hoops silver - short','line_item',881), +(186,'UPS Standard','shipping',881), +(193,'Tanemaki Necklace','line_item',884), +(194,'Mondial Relay - Point Relais (Free)','shipping',884), +(195,'Hattari Stacked Hoops gold plated - pair','line_item',885), +(196,'Mondial Relay - Point Relais (Free)','shipping',885), +(197,'Kara Hoops gold plated - pair','line_item',886), +(198,'Hadou Stud Earrings - pair','line_item',886), +(199,'Mondial Relay - Point Relais (Free)','shipping',886), +(200,'Mugura Earrings silver - pair','line_item',887), +(201,'Mondial Relay - Point Relais (Free)','shipping',887), +(202,'Tamanori Hoops silver - long','line_item',888), +(203,'UPS Standard','shipping',888), +(204,'Hadou Ear Cuff silver','line_item',889), +(205,'Kara Hoops silver - pair','line_item',889), +(206,'Kara Ear Cuff silver','line_item',889), +(207,'BoroBoro Bead Earrings silver - Tiger\'s Eye','line_item',889), +(208,'Tanemaki Bracelet','line_item',889), +(209,'Mondial Relay - Point Relais (Free)','shipping',889), +(210,'Kara Hoops silver - pair','line_item',892), +(211,'Mondial Relay - Point Relais (Free)','shipping',892), +(212,'Hattari Ear Cuff gold plated','line_item',893), +(213,'Mondial Relay - Point Relais','shipping',893), +(214,'Hattari Ear Cuff silver','line_item',894), +(215,'Mondial Relay - Point Relais','shipping',894), +(216,'Piasu Earrings - pair','line_item',895), +(217,'Tamanori Hoops silver - pair','line_item',895), +(218,'Mondial Relay - Point Relais (Free)','shipping',895), +(219,'Hattari Double Hoops - pair','line_item',897), +(220,'Mondial Relay - Point Relais (Free)','shipping',897), +(221,'Kara Ear Cuff silver','line_item',898), +(222,'Mondial Relay - Point Relais','shipping',898), +(223,'Kara Ear Cuff silver','line_item',899), +(224,'Mondial Relay - Point Relais','shipping',899), +(225,'Kara Ring - 52','line_item',900), +(226,'Mondial Relay - Point Relais (Free)','shipping',900), +(227,'Rokku Hoop silver - Lapis Lazuli','line_item',901), +(228,'Mondial Relay - Point Relais','shipping',901), +(229,'Tanemaki Necklace','line_item',902), +(230,'Mondial Relay - Point Relais (Free)','shipping',902), +(231,'Tanemaki Necklace','line_item',903), +(232,'Mondial Relay - Point Relais (Free)','shipping',903), +(233,'Rokku Ring - Malachite','line_item',904), +(234,'Mondial Relay - Point Relais (Free)','shipping',904), +(235,'Fuyou Necklace','line_item',905), +(236,'Mondial Relay - Point Relais (Free)','shipping',905), +(237,'Rokku Ring - Malachite','line_item',906), +(238,'Mondial Relay - Point Relais (Free)','shipping',906), +(239,'Rokku Ring - Malachite','line_item',907), +(240,'Kara Ear Cuff gold plated','line_item',907), +(241,'Mondial Relay - Point Relais (Free)','shipping',907), +(242,'Kagun Trio Earrings - all','line_item',908), +(243,'Rokku Hoop gold plated - Lapis Lazuli','line_item',908), +(244,'Mondial Relay - Point Relais (Free)','shipping',908), +(245,'Hadou Ear Cuff gold plated','line_item',909), +(246,'Mondial Relay - Point Relais','shipping',909), +(247,'Hadou Ear Cuff gold plated','line_item',910), +(248,'Mondial Relay - Point Relais','shipping',910), +(249,'BoroBoro Bead Ring silver - 64','line_item',911), +(250,'Mondial Relay - Point Relais (Free)','shipping',911), +(251,'Fuyou Hoop','line_item',912), +(252,'Mondial Relay - Point Relais','shipping',912), +(253,'Hadou Stud Earrings - pair','line_item',919), +(254,'Kagun Trio Earrings - short','line_item',919), +(255,'Mondial Relay - Point Relais (Free)','shipping',919), +(256,'Kagun Trio Earrings - short','line_item',920), +(257,'Mondial Relay - Point Relais (Free)','shipping',920), +(258,'Kagun Trio Earrings - short','line_item',921), +(259,'Mondial Relay - Point Relais (Free)','shipping',921), +(260,'Kagun Trio Earrings - short','line_item',922), +(261,'Mondial Relay - Point Relais (Free)','shipping',922), +(262,'Hattari Stacked Hoops silver - pair','line_item',923), +(263,'Mondial Relay - Point Relais (Free)','shipping',923), +(264,'Kara Ear Cuff gold plated','line_item',924), +(265,'Kara Ear Cuff silver','line_item',924), +(266,'Hadou Ear Cuff gold plated','line_item',924), +(267,'Mondial Relay - Point Relais (Free)','shipping',924), +(268,'Fuyou Long Earrings silver - pair','line_item',981), +(269,'Mondial Relay - Point Relais (Free)','shipping',981), +(270,'Kara Ear Cuff gold plated','line_item',997), +(271,'Piasu Earrings - pair','line_item',997), +(272,'Mondial Relay - Point Relais (Free)','shipping',997), +(273,'BoroBoro Bead Ring silver - 58','line_item',998), +(274,'Mondial Relay - Point Relais (Free)','shipping',998), +(275,'Uteki Necklace gold plated','line_item',999), +(276,'Mondial Relay - Point Relais (Free)','shipping',999), +(277,'BoroBoro Bead Ring silver - 58','line_item',1000), +(278,'Uteki Necklace gold plated','line_item',1000), +(279,'Mondial Relay - Point Relais (Free)','shipping',1000); +/*!40000 ALTER TABLE `haikuwp_woocommerce_order_items` ENABLE KEYS */; +UNLOCK TABLES; +commit; + +-- +-- Table structure for table `haikuwp_woocommerce_payment_tokenmeta` +-- + +DROP TABLE IF EXISTS `haikuwp_woocommerce_payment_tokenmeta`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8mb4 */; +CREATE TABLE `haikuwp_woocommerce_payment_tokenmeta` ( + `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, + `payment_token_id` bigint(20) unsigned NOT NULL, + `meta_key` varchar(255) DEFAULT NULL, + `meta_value` longtext DEFAULT NULL, + PRIMARY KEY (`meta_id`), + KEY `payment_token_id` (`payment_token_id`), + KEY `meta_key` (`meta_key`(32)) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `haikuwp_woocommerce_payment_tokenmeta` +-- + +LOCK TABLES `haikuwp_woocommerce_payment_tokenmeta` WRITE; +/*!40000 ALTER TABLE `haikuwp_woocommerce_payment_tokenmeta` DISABLE KEYS */; +set autocommit=0; +/*!40000 ALTER TABLE `haikuwp_woocommerce_payment_tokenmeta` ENABLE KEYS */; +UNLOCK TABLES; +commit; + +-- +-- Table structure for table `haikuwp_woocommerce_payment_tokens` +-- + +DROP TABLE IF EXISTS `haikuwp_woocommerce_payment_tokens`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8mb4 */; +CREATE TABLE `haikuwp_woocommerce_payment_tokens` ( + `token_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, + `gateway_id` varchar(200) NOT NULL, + `token` text NOT NULL, + `user_id` bigint(20) unsigned NOT NULL DEFAULT 0, + `type` varchar(200) NOT NULL, + `is_default` tinyint(1) NOT NULL DEFAULT 0, + PRIMARY KEY (`token_id`), + KEY `user_id` (`user_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `haikuwp_woocommerce_payment_tokens` +-- + +LOCK TABLES `haikuwp_woocommerce_payment_tokens` WRITE; +/*!40000 ALTER TABLE `haikuwp_woocommerce_payment_tokens` DISABLE KEYS */; +set autocommit=0; +/*!40000 ALTER TABLE `haikuwp_woocommerce_payment_tokens` ENABLE KEYS */; +UNLOCK TABLES; +commit; + +-- +-- Table structure for table `haikuwp_woocommerce_sessions` +-- + +DROP TABLE IF EXISTS `haikuwp_woocommerce_sessions`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8mb4 */; +CREATE TABLE `haikuwp_woocommerce_sessions` ( + `session_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, + `session_key` char(32) NOT NULL, + `session_value` longtext NOT NULL, + `session_expiry` bigint(20) unsigned NOT NULL, + PRIMARY KEY (`session_id`), + UNIQUE KEY `session_key` (`session_key`) +) ENGINE=InnoDB AUTO_INCREMENT=28 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `haikuwp_woocommerce_sessions` +-- + +LOCK TABLES `haikuwp_woocommerce_sessions` WRITE; +/*!40000 ALTER TABLE `haikuwp_woocommerce_sessions` DISABLE KEYS */; +set autocommit=0; +INSERT INTO `haikuwp_woocommerce_sessions` VALUES +(9,'t_7ed18253b31cbddff790c14b45ce30','a:12:{s:4:\"cart\";N;s:11:\"cart_totals\";N;s:15:\"applied_coupons\";N;s:22:\"coupon_discount_totals\";N;s:26:\"coupon_discount_tax_totals\";N;s:21:\"removed_cart_contents\";N;s:22:\"shipping_for_package_0\";s:498:\"a:2:{s:12:\"package_hash\";s:40:\"wc_ship_5a822a2058bdf80c23b62be962b5ea82\";s:5:\"rates\";a:1:{s:28:\"mondial_relay_point_relais:6\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:28:\"mondial_relay_point_relais:6\";s:9:\"method_id\";s:26:\"mondial_relay_point_relais\";s:11:\"instance_id\";i:6;s:5:\"label\";s:35:\"Mondial Relay - Point Relais (Free)\";s:4:\"cost\";s:1:\"0\";s:5:\"taxes\";a:0:{}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:0:{}}}}\";s:25:\"previous_shipping_methods\";s:56:\"a:1:{i:0;a:1:{i:0;s:28:\"mondial_relay_point_relais:6\";}}\";s:22:\"shipping_method_counts\";s:14:\"a:1:{i:0;i:1;}\";s:10:\"wc_notices\";s:6:\"a:0:{}\";s:8:\"customer\";s:965:\"a:28:{s:2:\"id\";s:1:\"0\";s:13:\"date_modified\";s:0:\"\";s:10:\"first_name\";s:7:\"Raphael\";s:9:\"last_name\";s:5:\"Kuder\";s:7:\"company\";s:0:\"\";s:5:\"phone\";s:12:\"+33783260894\";s:5:\"email\";s:26:\"raphael.kuderpro@gmail.com\";s:7:\"address\";s:30:\"140 boulevard de Ménilmontant\";s:9:\"address_1\";s:30:\"140 boulevard de Ménilmontant\";s:9:\"address_2\";s:0:\"\";s:4:\"city\";s:5:\"Paris\";s:5:\"state\";s:3:\"IDF\";s:8:\"postcode\";s:5:\"75020\";s:7:\"country\";s:2:\"FR\";s:19:\"shipping_first_name\";s:7:\"Raphael\";s:18:\"shipping_last_name\";s:5:\"Kuder\";s:16:\"shipping_company\";s:0:\"\";s:14:\"shipping_phone\";s:12:\"+33783260894\";s:16:\"shipping_address\";s:30:\"140 boulevard de Ménilmontant\";s:18:\"shipping_address_1\";s:30:\"140 boulevard de Ménilmontant\";s:18:\"shipping_address_2\";s:0:\"\";s:13:\"shipping_city\";s:5:\"Paris\";s:14:\"shipping_state\";s:3:\"IDF\";s:17:\"shipping_postcode\";s:5:\"75020\";s:16:\"shipping_country\";s:2:\"FR\";s:13:\"is_vat_exempt\";s:0:\"\";s:19:\"calculated_shipping\";s:0:\"\";s:9:\"meta_data\";a:0:{}}\";s:22:\"order_awaiting_payment\";N;}',1750672309), +(24,'t_04404cabdca97cd8422d93b2c36a4d','a:7:{s:4:\"cart\";s:6:\"a:0:{}\";s:11:\"cart_totals\";s:367:\"a:15:{s:8:\"subtotal\";i:0;s:12:\"subtotal_tax\";i:0;s:14:\"shipping_total\";i:0;s:12:\"shipping_tax\";i:0;s:14:\"shipping_taxes\";a:0:{}s:14:\"discount_total\";i:0;s:12:\"discount_tax\";i:0;s:19:\"cart_contents_total\";i:0;s:17:\"cart_contents_tax\";i:0;s:19:\"cart_contents_taxes\";a:0:{}s:9:\"fee_total\";i:0;s:7:\"fee_tax\";i:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";i:0;s:9:\"total_tax\";i:0;}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:22:\"coupon_discount_totals\";s:6:\"a:0:{}\";s:26:\"coupon_discount_tax_totals\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:8:\"customer\";s:738:\"a:28:{s:2:\"id\";s:1:\"0\";s:13:\"date_modified\";s:0:\"\";s:10:\"first_name\";s:0:\"\";s:9:\"last_name\";s:0:\"\";s:7:\"company\";s:0:\"\";s:5:\"phone\";s:0:\"\";s:5:\"email\";s:0:\"\";s:7:\"address\";s:0:\"\";s:9:\"address_1\";s:0:\"\";s:9:\"address_2\";s:0:\"\";s:4:\"city\";s:0:\"\";s:5:\"state\";s:0:\"\";s:8:\"postcode\";s:0:\"\";s:7:\"country\";s:2:\"BE\";s:19:\"shipping_first_name\";s:0:\"\";s:18:\"shipping_last_name\";s:0:\"\";s:16:\"shipping_company\";s:0:\"\";s:14:\"shipping_phone\";s:0:\"\";s:16:\"shipping_address\";s:0:\"\";s:18:\"shipping_address_1\";s:0:\"\";s:18:\"shipping_address_2\";s:0:\"\";s:13:\"shipping_city\";s:0:\"\";s:14:\"shipping_state\";s:0:\"\";s:17:\"shipping_postcode\";s:0:\"\";s:16:\"shipping_country\";s:2:\"BE\";s:13:\"is_vat_exempt\";s:0:\"\";s:19:\"calculated_shipping\";s:0:\"\";s:9:\"meta_data\";a:0:{}}\";}',1750683364), +(26,'t_45201e11cad4019041d1e35136a36c','a:7:{s:4:\"cart\";s:6:\"a:0:{}\";s:11:\"cart_totals\";s:367:\"a:15:{s:8:\"subtotal\";i:0;s:12:\"subtotal_tax\";i:0;s:14:\"shipping_total\";i:0;s:12:\"shipping_tax\";i:0;s:14:\"shipping_taxes\";a:0:{}s:14:\"discount_total\";i:0;s:12:\"discount_tax\";i:0;s:19:\"cart_contents_total\";i:0;s:17:\"cart_contents_tax\";i:0;s:19:\"cart_contents_taxes\";a:0:{}s:9:\"fee_total\";i:0;s:7:\"fee_tax\";i:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";i:0;s:9:\"total_tax\";i:0;}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:22:\"coupon_discount_totals\";s:6:\"a:0:{}\";s:26:\"coupon_discount_tax_totals\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:8:\"customer\";s:738:\"a:28:{s:2:\"id\";s:1:\"0\";s:13:\"date_modified\";s:0:\"\";s:10:\"first_name\";s:0:\"\";s:9:\"last_name\";s:0:\"\";s:7:\"company\";s:0:\"\";s:5:\"phone\";s:0:\"\";s:5:\"email\";s:0:\"\";s:7:\"address\";s:0:\"\";s:9:\"address_1\";s:0:\"\";s:9:\"address_2\";s:0:\"\";s:4:\"city\";s:0:\"\";s:5:\"state\";s:0:\"\";s:8:\"postcode\";s:0:\"\";s:7:\"country\";s:2:\"BE\";s:19:\"shipping_first_name\";s:0:\"\";s:18:\"shipping_last_name\";s:0:\"\";s:16:\"shipping_company\";s:0:\"\";s:14:\"shipping_phone\";s:0:\"\";s:16:\"shipping_address\";s:0:\"\";s:18:\"shipping_address_1\";s:0:\"\";s:18:\"shipping_address_2\";s:0:\"\";s:13:\"shipping_city\";s:0:\"\";s:14:\"shipping_state\";s:0:\"\";s:17:\"shipping_postcode\";s:0:\"\";s:16:\"shipping_country\";s:2:\"BE\";s:13:\"is_vat_exempt\";s:0:\"\";s:19:\"calculated_shipping\";s:0:\"\";s:9:\"meta_data\";a:0:{}}\";}',1750776055), +(27,'1','a:11:{s:4:\"cart\";s:854:\"a:2:{s:32:\"b38f02426820647e98661a84bdebf520\";a:11:{s:3:\"key\";s:32:\"b38f02426820647e98661a84bdebf520\";s:10:\"product_id\";i:625;s:12:\"variation_id\";i:630;s:9:\"variation\";a:1:{s:17:\"attribute_pa_size\";s:2:\"58\";}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"d0a6a0d675df86860b86732d58c0f82d\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:65;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:65;s:8:\"line_tax\";d:0;}s:32:\"934815ad542a4a7c5e8a2dfa04fea9f5\";a:11:{s:3:\"key\";s:32:\"934815ad542a4a7c5e8a2dfa04fea9f5\";s:10:\"product_id\";i:994;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:100;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:100;s:8:\"line_tax\";d:0;}}\";s:11:\"cart_totals\";s:396:\"a:15:{s:8:\"subtotal\";s:3:\"165\";s:12:\"subtotal_tax\";d:0;s:14:\"shipping_total\";s:1:\"0\";s:12:\"shipping_tax\";d:0;s:14:\"shipping_taxes\";a:0:{}s:14:\"discount_total\";d:0;s:12:\"discount_tax\";d:0;s:19:\"cart_contents_total\";s:3:\"165\";s:17:\"cart_contents_tax\";i:0;s:19:\"cart_contents_taxes\";a:0:{}s:9:\"fee_total\";s:1:\"0\";s:7:\"fee_tax\";d:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";s:6:\"165.00\";s:9:\"total_tax\";d:0;}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:22:\"coupon_discount_totals\";s:6:\"a:0:{}\";s:26:\"coupon_discount_tax_totals\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:22:\"shipping_for_package_0\";s:498:\"a:2:{s:12:\"package_hash\";s:40:\"wc_ship_de354a7511dddc8f7ad645333e2384ee\";s:5:\"rates\";a:1:{s:28:\"mondial_relay_point_relais:6\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:28:\"mondial_relay_point_relais:6\";s:9:\"method_id\";s:26:\"mondial_relay_point_relais\";s:11:\"instance_id\";i:6;s:5:\"label\";s:35:\"Mondial Relay - Point Relais (Free)\";s:4:\"cost\";s:1:\"0\";s:5:\"taxes\";a:0:{}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:0:{}}}}\";s:25:\"previous_shipping_methods\";s:56:\"a:1:{i:0;a:1:{i:0;s:28:\"mondial_relay_point_relais:6\";}}\";s:23:\"chosen_shipping_methods\";s:46:\"a:1:{i:0;s:28:\"mondial_relay_point_relais:6\";}\";s:22:\"shipping_method_counts\";s:14:\"a:1:{i:0;i:1;}\";s:8:\"customer\";s:780:\"a:28:{s:2:\"id\";s:1:\"1\";s:13:\"date_modified\";s:25:\"2025-05-09T18:07:27+02:00\";s:10:\"first_name\";s:0:\"\";s:9:\"last_name\";s:0:\"\";s:7:\"company\";s:0:\"\";s:5:\"phone\";s:0:\"\";s:5:\"email\";s:15:\"contact@gcch.fr\";s:7:\"address\";s:0:\"\";s:9:\"address_1\";s:0:\"\";s:9:\"address_2\";s:0:\"\";s:4:\"city\";s:0:\"\";s:5:\"state\";s:0:\"\";s:8:\"postcode\";s:0:\"\";s:7:\"country\";s:2:\"BE\";s:19:\"shipping_first_name\";s:0:\"\";s:18:\"shipping_last_name\";s:0:\"\";s:16:\"shipping_company\";s:0:\"\";s:14:\"shipping_phone\";s:0:\"\";s:16:\"shipping_address\";s:0:\"\";s:18:\"shipping_address_1\";s:0:\"\";s:18:\"shipping_address_2\";s:0:\"\";s:13:\"shipping_city\";s:0:\"\";s:14:\"shipping_state\";s:0:\"\";s:17:\"shipping_postcode\";s:0:\"\";s:16:\"shipping_country\";s:2:\"BE\";s:13:\"is_vat_exempt\";s:0:\"\";s:19:\"calculated_shipping\";s:0:\"\";s:9:\"meta_data\";a:0:{}}\";}',1750858371); +/*!40000 ALTER TABLE `haikuwp_woocommerce_sessions` ENABLE KEYS */; +UNLOCK TABLES; +commit; + +-- +-- Table structure for table `haikuwp_woocommerce_shipping_zone_locations` +-- + +DROP TABLE IF EXISTS `haikuwp_woocommerce_shipping_zone_locations`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8mb4 */; +CREATE TABLE `haikuwp_woocommerce_shipping_zone_locations` ( + `location_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, + `zone_id` bigint(20) unsigned NOT NULL, + `location_code` varchar(200) NOT NULL, + `location_type` varchar(40) NOT NULL, + PRIMARY KEY (`location_id`), + KEY `zone_id` (`zone_id`), + KEY `location_type_code` (`location_type`(10),`location_code`(20)) +) ENGINE=InnoDB AUTO_INCREMENT=193 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `haikuwp_woocommerce_shipping_zone_locations` +-- + +LOCK TABLES `haikuwp_woocommerce_shipping_zone_locations` WRITE; +/*!40000 ALTER TABLE `haikuwp_woocommerce_shipping_zone_locations` DISABLE KEYS */; +set autocommit=0; +INSERT INTO `haikuwp_woocommerce_shipping_zone_locations` VALUES +(1,1,'BE','country'), +(2,1,'FR','country'), +(103,3,'DE','country'), +(104,3,'AT','country'), +(105,3,'ES','country'), +(106,3,'IT','country'), +(107,3,'LU','country'), +(108,3,'NL','country'), +(109,3,'PL','country'), +(110,3,'PT','country'), +(111,2,'AX','country'), +(112,2,'AL','country'), +(113,2,'AD','country'), +(114,2,'BY','country'), +(115,2,'BA','country'), +(116,2,'BG','country'), +(117,2,'HR','country'), +(118,2,'CZ','country'), +(119,2,'DK','country'), +(120,2,'EE','country'), +(121,2,'FO','country'), +(122,2,'FI','country'), +(123,2,'GI','country'), +(124,2,'GR','country'), +(125,2,'HU','country'), +(126,2,'IS','country'), +(127,2,'IE','country'), +(128,2,'LV','country'), +(129,2,'LI','country'), +(130,2,'LT','country'), +(131,2,'MT','country'), +(132,2,'MD','country'), +(133,2,'MC','country'), +(134,2,'ME','country'), +(135,2,'MK','country'), +(136,2,'NO','country'), +(137,2,'RO','country'), +(138,2,'SM','country'), +(139,2,'RS','country'), +(140,2,'SK','country'), +(141,2,'SI','country'), +(142,2,'SJ','country'), +(143,2,'SE','country'), +(144,2,'CH','country'), +(145,2,'TR','country'), +(146,2,'UA','country'), +(147,2,'NA','continent'), +(148,2,'OC','continent'), +(149,2,'SA','continent'), +(150,2,'AF','continent'), +(151,2,'AM','country'), +(152,2,'BD','country'), +(153,2,'BT','country'), +(154,2,'BN','country'), +(155,2,'KH','country'), +(156,2,'CX','country'), +(157,2,'CC','country'), +(158,2,'CY','country'), +(159,2,'GE','country'), +(160,2,'HK','country'), +(161,2,'IN','country'), +(162,2,'ID','country'), +(163,2,'IR','country'), +(164,2,'IQ','country'), +(165,2,'JP','country'), +(166,2,'JO','country'), +(167,2,'KZ','country'), +(168,2,'KG','country'), +(169,2,'LA','country'), +(170,2,'LB','country'), +(171,2,'MO','country'), +(172,2,'MY','country'), +(173,2,'MV','country'), +(174,2,'MN','country'), +(175,2,'MM','country'), +(176,2,'NP','country'), +(177,2,'OM','country'), +(178,2,'PK','country'), +(179,2,'PS','country'), +(180,2,'PH','country'), +(181,2,'SG','country'), +(182,2,'KR','country'), +(183,2,'LK','country'), +(184,2,'SY','country'), +(185,2,'TW','country'), +(186,2,'TJ','country'), +(187,2,'TH','country'), +(188,2,'TL','country'), +(189,2,'TM','country'), +(190,2,'UZ','country'), +(191,2,'VN','country'), +(192,2,'YE','country'); +/*!40000 ALTER TABLE `haikuwp_woocommerce_shipping_zone_locations` ENABLE KEYS */; +UNLOCK TABLES; +commit; + +-- +-- Table structure for table `haikuwp_woocommerce_shipping_zone_methods` +-- + +DROP TABLE IF EXISTS `haikuwp_woocommerce_shipping_zone_methods`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8mb4 */; +CREATE TABLE `haikuwp_woocommerce_shipping_zone_methods` ( + `zone_id` bigint(20) unsigned NOT NULL, + `instance_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, + `method_id` varchar(200) NOT NULL, + `method_order` bigint(20) unsigned NOT NULL, + `is_enabled` tinyint(1) NOT NULL DEFAULT 1, + PRIMARY KEY (`instance_id`) +) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `haikuwp_woocommerce_shipping_zone_methods` +-- + +LOCK TABLES `haikuwp_woocommerce_shipping_zone_methods` WRITE; +/*!40000 ALTER TABLE `haikuwp_woocommerce_shipping_zone_methods` DISABLE KEYS */; +set autocommit=0; +INSERT INTO `haikuwp_woocommerce_shipping_zone_methods` VALUES +(2,4,'ups_standard',2,1), +(3,5,'mondial_relay_point_relais',1,1), +(1,6,'mondial_relay_point_relais',2,1), +(2,7,'flat_rate',3,1), +(2,8,'free_shipping',1,1); +/*!40000 ALTER TABLE `haikuwp_woocommerce_shipping_zone_methods` ENABLE KEYS */; +UNLOCK TABLES; +commit; + +-- +-- Table structure for table `haikuwp_woocommerce_shipping_zones` +-- + +DROP TABLE IF EXISTS `haikuwp_woocommerce_shipping_zones`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8mb4 */; +CREATE TABLE `haikuwp_woocommerce_shipping_zones` ( + `zone_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, + `zone_name` varchar(200) NOT NULL, + `zone_order` bigint(20) unsigned NOT NULL, + PRIMARY KEY (`zone_id`) +) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `haikuwp_woocommerce_shipping_zones` +-- + +LOCK TABLES `haikuwp_woocommerce_shipping_zones` WRITE; +/*!40000 ALTER TABLE `haikuwp_woocommerce_shipping_zones` DISABLE KEYS */; +set autocommit=0; +INSERT INTO `haikuwp_woocommerce_shipping_zones` VALUES +(1,'Belgique et France',0), +(2,'Reste',2), +(3,'Pays Mondial Relay',1); +/*!40000 ALTER TABLE `haikuwp_woocommerce_shipping_zones` ENABLE KEYS */; +UNLOCK TABLES; +commit; + +-- +-- Table structure for table `haikuwp_woocommerce_tax_rate_locations` +-- + +DROP TABLE IF EXISTS `haikuwp_woocommerce_tax_rate_locations`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8mb4 */; +CREATE TABLE `haikuwp_woocommerce_tax_rate_locations` ( + `location_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, + `location_code` varchar(200) NOT NULL, + `tax_rate_id` bigint(20) unsigned NOT NULL, + `location_type` varchar(40) NOT NULL, + PRIMARY KEY (`location_id`), + KEY `tax_rate_id` (`tax_rate_id`), + KEY `location_type_code` (`location_type`(10),`location_code`(20)) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `haikuwp_woocommerce_tax_rate_locations` +-- + +LOCK TABLES `haikuwp_woocommerce_tax_rate_locations` WRITE; +/*!40000 ALTER TABLE `haikuwp_woocommerce_tax_rate_locations` DISABLE KEYS */; +set autocommit=0; +/*!40000 ALTER TABLE `haikuwp_woocommerce_tax_rate_locations` ENABLE KEYS */; +UNLOCK TABLES; +commit; + +-- +-- Table structure for table `haikuwp_woocommerce_tax_rates` +-- + +DROP TABLE IF EXISTS `haikuwp_woocommerce_tax_rates`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8mb4 */; +CREATE TABLE `haikuwp_woocommerce_tax_rates` ( + `tax_rate_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, + `tax_rate_country` varchar(2) NOT NULL DEFAULT '', + `tax_rate_state` varchar(200) NOT NULL DEFAULT '', + `tax_rate` varchar(8) NOT NULL DEFAULT '', + `tax_rate_name` varchar(200) NOT NULL DEFAULT '', + `tax_rate_priority` bigint(20) unsigned NOT NULL, + `tax_rate_compound` int(1) NOT NULL DEFAULT 0, + `tax_rate_shipping` int(1) NOT NULL DEFAULT 1, + `tax_rate_order` bigint(20) unsigned NOT NULL, + `tax_rate_class` varchar(200) NOT NULL DEFAULT '', + PRIMARY KEY (`tax_rate_id`), + KEY `tax_rate_country` (`tax_rate_country`), + KEY `tax_rate_state` (`tax_rate_state`(2)), + KEY `tax_rate_class` (`tax_rate_class`(10)), + KEY `tax_rate_priority` (`tax_rate_priority`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `haikuwp_woocommerce_tax_rates` +-- + +LOCK TABLES `haikuwp_woocommerce_tax_rates` WRITE; +/*!40000 ALTER TABLE `haikuwp_woocommerce_tax_rates` DISABLE KEYS */; +set autocommit=0; +/*!40000 ALTER TABLE `haikuwp_woocommerce_tax_rates` ENABLE KEYS */; +UNLOCK TABLES; +commit; + +-- +-- Table structure for table `haikuwp_wpmailsmtp_debug_events` +-- + +DROP TABLE IF EXISTS `haikuwp_wpmailsmtp_debug_events`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8mb4 */; +CREATE TABLE `haikuwp_wpmailsmtp_debug_events` ( + `id` int(10) unsigned NOT NULL AUTO_INCREMENT, + `content` text DEFAULT NULL, + `initiator` text DEFAULT NULL, + `event_type` tinyint(3) unsigned NOT NULL DEFAULT 0, + `created_at` timestamp NOT NULL DEFAULT current_timestamp(), + PRIMARY KEY (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=22 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `haikuwp_wpmailsmtp_debug_events` +-- + +LOCK TABLES `haikuwp_wpmailsmtp_debug_events` WRITE; +/*!40000 ALTER TABLE `haikuwp_wpmailsmtp_debug_events` DISABLE KEYS */; +set autocommit=0; +INSERT INTO `haikuwp_wpmailsmtp_debug_events` VALUES +(1,'Mailer: Other SMTP\r\nSMTP Error: Could not connect to SMTP host. Failed to connect to serverSMTP server error: Failed to connect to server SMTP code: 110 Additional SMTP info: Connection timed out','{\"file\":\"\\/srv\\/haikuatelier.com\\/web\\/app\\/plugins\\/wp-mail-smtp\\/src\\/Admin\\/SetupWizard.php\",\"line\":1213}',0,'2024-11-25 15:49:12'), +(2,'Mailer: Other SMTP\r\nSMTP Error: Could not connect to SMTP host. Failed to connect to serverSMTP server error: Failed to connect to server SMTP code: 110 Additional SMTP info: Connection timed out','{\"file\":\"\\/srv\\/haikuatelier.com\\/web\\/app\\/plugins\\/wp-mail-smtp\\/src\\/Admin\\/Pages\\/TestTab.php\",\"line\":350}',0,'2024-11-25 15:49:47'), +(3,'Mailer: Other SMTP\r\nSMTP Error: Could not connect to SMTP host. Failed to connect to serverSMTP server error: Failed to connect to server SMTP code: 110 Additional SMTP info: Connection timed out','{\"file\":\"\\/srv\\/haikuatelier.com\\/web\\/app\\/plugins\\/wp-mail-smtp\\/src\\/Admin\\/Pages\\/TestTab.php\",\"line\":350}',0,'2024-11-25 15:50:39'), +(4,'Mailer: Other SMTP\r\nSMTP Error: Could not connect to SMTP host. Failed to connect to serverSMTP server error: Failed to connect to server SMTP code: 110 Additional SMTP info: Connection timed out','{\"file\":\"\\/srv\\/haikuatelier.com\\/web\\/app\\/plugins\\/falcon\\/src\\/Email.php\",\"line\":76}',0,'2024-11-25 15:52:18'), +(5,'Mailer: Other SMTP\r\nSMTP Error: Could not connect to SMTP host. Failed to connect to serverSMTP server error: Failed to connect to server SMTP code: 110 Additional SMTP info: Connection timed out','{\"file\":\"\\/srv\\/haikuatelier.com\\/web\\/app\\/plugins\\/falcon\\/src\\/Email.php\",\"line\":76}',0,'2024-11-25 15:52:42'), +(6,'Mailer: Other SMTP\r\nSMTP Error: Could not connect to SMTP host. Failed to connect to serverSMTP server error: Failed to connect to server SMTP code: 110 Additional SMTP info: Connection timed out','{\"file\":\"\\/srv\\/haikuatelier.com\\/web\\/app\\/plugins\\/falcon\\/src\\/Email.php\",\"line\":76}',0,'2024-11-25 15:54:25'), +(7,'Mailer: Other SMTP\r\nSMTP Error: Could not connect to SMTP host. Failed to connect to serverSMTP server error: Failed to connect to server SMTP code: 110 Additional SMTP info: Connection timed out','{\"file\":\"\\/srv\\/haikuatelier.com\\/web\\/app\\/plugins\\/falcon\\/src\\/Email.php\",\"line\":76}',0,'2024-11-25 15:56:03'), +(8,'Mailer: Other SMTP\r\nSMTP Error: Could not connect to SMTP host. Failed to connect to serverSMTP server error: Failed to connect to server SMTP code: 110 Additional SMTP info: Connection timed out','{\"file\":\"\\/srv\\/haikuatelier.com\\/web\\/app\\/plugins\\/wp-mail-smtp\\/src\\/Admin\\/SetupWizard.php\",\"line\":1213}',0,'2024-11-25 15:57:48'), +(9,'Mailer: Other SMTP\r\nSMTP Error: Could not connect to SMTP host. Failed to connect to serverSMTP server error: Failed to connect to server SMTP code: 110 Additional SMTP info: Connection timed out','{\"file\":\"\\/srv\\/haikuatelier.com\\/web\\/app\\/plugins\\/wp-mail-smtp\\/src\\/Admin\\/Pages\\/TestTab.php\",\"line\":350}',0,'2024-11-25 15:58:31'), +(10,'Mailer: Other SMTP\r\nSMTP Error: Could not connect to SMTP host. Failed to connect to serverSMTP server error: Failed to connect to server SMTP code: 110 Additional SMTP info: Connection timed out','{\"file\":\"\\/srv\\/haikuatelier.com\\/web\\/app\\/plugins\\/wp-mail-smtp\\/src\\/Admin\\/Pages\\/TestTab.php\",\"line\":350}',0,'2024-11-25 15:58:50'), +(11,'Mailer: Other SMTP\r\nSMTP Error: Could not connect to SMTP host. Failed to connect to serverSMTP server error: Failed to connect to server SMTP code: 110 Additional SMTP info: Connection timed out','{\"file\":\"\\/srv\\/haikuatelier.com\\/web\\/app\\/plugins\\/wp-mail-smtp\\/src\\/Admin\\/Pages\\/TestTab.php\",\"line\":350}',0,'2024-11-25 15:58:55'), +(12,'Mailer: Other SMTP\r\nSMTP Error: Could not connect to SMTP host. Failed to connect to serverSMTP server error: Failed to connect to server SMTP code: 110 Additional SMTP info: Connection timed out','{\"file\":\"\\/srv\\/haikuatelier.com\\/web\\/app\\/plugins\\/wp-mail-smtp\\/src\\/Admin\\/Pages\\/TestTab.php\",\"line\":350}',0,'2024-11-25 16:00:42'), +(13,'Mailer: Other SMTP\r\nSMTP Error: Could not connect to SMTP host. Failed to connect to serverSMTP server error: Failed to connect to server SMTP code: 110 Additional SMTP info: Connection timed out','{\"file\":\"\\/srv\\/haikuatelier.com\\/web\\/app\\/plugins\\/falcon\\/src\\/Email.php\",\"line\":76}',0,'2024-11-25 16:03:45'), +(14,'Mailer: Other SMTP\r\nSMTP Error: Could not connect to SMTP host. Failed to connect to serverSMTP server error: Failed to connect to server SMTP code: 110 Additional SMTP info: Connection timed out','{\"file\":\"\\/srv\\/haikuatelier.com\\/web\\/app\\/plugins\\/falcon\\/src\\/Email.php\",\"line\":76}',0,'2024-11-25 16:04:09'), +(15,'Mailer: Other SMTP\r\nSMTP Error: Could not connect to SMTP host. Failed to connect to serverSMTP server error: Failed to connect to server SMTP code: 110 Additional SMTP info: Connection timed out','{\"file\":\"\\/srv\\/haikuatelier.com\\/web\\/app\\/plugins\\/wp-mail-smtp\\/src\\/Admin\\/Pages\\/TestTab.php\",\"line\":350}',0,'2024-11-25 16:06:02'), +(16,'Mailer: Other SMTP\r\nSMTP Error: Could not connect to SMTP host. Failed to connect to serverSMTP server error: Failed to connect to server SMTP code: 110 Additional SMTP info: Connection timed out','{\"file\":\"\\/srv\\/haikuatelier.com\\/web\\/app\\/plugins\\/wp-mail-smtp\\/src\\/Admin\\/Pages\\/TestTab.php\",\"line\":350}',0,'2024-11-25 16:07:04'), +(17,'Mailer: Other SMTP\r\nSMTP Error: Could not connect to SMTP host. Failed to connect to serverSMTP server error: Failed to connect to server SMTP code: 110 Additional SMTP info: Connection timed out','{\"file\":\"\\/srv\\/haikuatelier.com\\/web\\/app\\/plugins\\/falcon\\/src\\/Email.php\",\"line\":76}',0,'2024-11-25 16:10:01'), +(18,'Mailer: Other SMTP\r\nSMTP Error: Could not connect to SMTP host. Failed to connect to serverSMTP server error: Failed to connect to server SMTP code: 110 Additional SMTP info: Connection timed out','{\"file\":\"\\/srv\\/haikuatelier.com\\/web\\/wp\\/wp-admin\\/includes\\/misc.php\",\"line\":1556}',0,'2024-11-28 18:14:28'), +(19,'Mailer: Other SMTP\r\nSMTP Error: Could not connect to SMTP host. Failed to connect to serverSMTP server error: Failed to connect to server SMTP code: 110 Additional SMTP info: Connection timed out','{\"file\":\"\\/srv\\/haikuatelier.com\\/web\\/wp\\/wp-admin\\/includes\\/misc.php\",\"line\":1556}',0,'2024-11-28 18:15:15'), +(20,'Mailer: Other SMTP\r\nSMTP Error: Could not connect to SMTP host. Failed to connect to serverSMTP server error: Failed to connect to server SMTP code: 110 Additional SMTP info: Connection timed out','{\"file\":\"\\/srv\\/haikuatelier.com\\/web\\/app\\/plugins\\/wp-mail-smtp\\/src\\/Admin\\/Pages\\/TestTab.php\",\"line\":350}',0,'2024-11-28 18:15:34'), +(21,'Mailer: Other SMTP\r\nSMTP Error: Could not connect to SMTP host. Failed to connect to serverSMTP server error: Failed to connect to server SMTP code: 110 Additional SMTP info: Connection timed out','{\"file\":\"\\/srv\\/haikuatelier.com\\/web\\/app\\/plugins\\/wp-mail-smtp\\/src\\/Admin\\/Pages\\/TestTab.php\",\"line\":350}',0,'2024-11-28 18:20:03'); +/*!40000 ALTER TABLE `haikuwp_wpmailsmtp_debug_events` ENABLE KEYS */; +UNLOCK TABLES; +commit; + +-- +-- Table structure for table `haikuwp_wpmailsmtp_tasks_meta` +-- + +DROP TABLE IF EXISTS `haikuwp_wpmailsmtp_tasks_meta`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8mb4 */; +CREATE TABLE `haikuwp_wpmailsmtp_tasks_meta` ( + `id` bigint(20) NOT NULL AUTO_INCREMENT, + `action` varchar(255) NOT NULL, + `data` longtext NOT NULL, + `date` datetime NOT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `haikuwp_wpmailsmtp_tasks_meta` +-- + +LOCK TABLES `haikuwp_wpmailsmtp_tasks_meta` WRITE; +/*!40000 ALTER TABLE `haikuwp_wpmailsmtp_tasks_meta` DISABLE KEYS */; +set autocommit=0; +INSERT INTO `haikuwp_wpmailsmtp_tasks_meta` VALUES +(1,'wp_mail_smtp_admin_notifications_update','W10=','2024-11-25 16:49:16'); +/*!40000 ALTER TABLE `haikuwp_wpmailsmtp_tasks_meta` ENABLE KEYS */; +UNLOCK TABLES; +commit; + +-- +-- Table structure for table `haikuwp_wpml_mails` +-- + +DROP TABLE IF EXISTS `haikuwp_wpml_mails`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8mb4 */; +CREATE TABLE `haikuwp_wpml_mails` ( + `mail_id` int(11) NOT NULL AUTO_INCREMENT, + `timestamp` timestamp NOT NULL, + `host` varchar(200) NOT NULL DEFAULT '0', + `receiver` varchar(200) NOT NULL DEFAULT '0', + `subject` varchar(200) NOT NULL DEFAULT '0', + `message` text DEFAULT NULL, + `headers` text DEFAULT NULL, + `attachments` varchar(800) NOT NULL DEFAULT '0', + `error` varchar(400) DEFAULT '', + `plugin_version` varchar(200) NOT NULL DEFAULT '0', + PRIMARY KEY (`mail_id`), + FULLTEXT KEY `idx_message` (`message`) +) ENGINE=InnoDB AUTO_INCREMENT=85 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `haikuwp_wpml_mails` +-- + +LOCK TABLES `haikuwp_wpml_mails` WRITE; +/*!40000 ALTER TABLE `haikuwp_wpml_mails` DISABLE KEYS */; +set autocommit=0; +INSERT INTO `haikuwp_wpml_mails` VALUES +(84,'2024-12-12 16:59:06','217.182.132.198','haiku.atelier@gmail.com,\\n contact@gcch.fr','[Haiku Atelier]: New order #880','\n\n\n\n\n\n

You’ve received the following order from christine Saquet Bossu:

\n\n

\n [Order #880] (2024-12-12)

\n\n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
ProductQuantityPrice
\n Hattari Ear Cuff gold plated (#HATTARI-EC-g) \n 1 \n  40,00
\n Kara Hoops gold plated - pair (#KARA-CR-g-pair)
  • \nSide:

    pair

    \n
\n 1 \n  60,00
Subtotal: 100,00
Shipping:Mondial Relay - Point Relais (Free)
Total: 100,00
\n
\n\n\n \n \n \n \n
\n

Billing address

\n\n
\n christine Saquet Bossu
33 rue du Colonel du Halgouêt
35660 RENAC
France
0685532210
c.saquetbossu@orange.fr
\n
\n

Shipping address

\n\n
\n christine Saquet Bossu
33 rue du Colonel du Halgouêt
35660 RENAC
France
0685532210
\n
\n

Congratulations on the sale.

\nProcess your orders on the go. Get the app.\n\n','Content-Type: text/html,\\nReply-to: christine Saquet Bossu ','',NULL,'1.13.1'); +/*!40000 ALTER TABLE `haikuwp_wpml_mails` ENABLE KEYS */; +UNLOCK TABLES; +commit; +/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; + +/*!40101 SET SQL_MODE=@OLD_SQL_MODE */; +/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; +/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; +/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; +/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; +/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; +/*M!100616 SET NOTE_VERBOSITY=@OLD_NOTE_VERBOSITY */; + +-- Dump completed on 2025-06-23 15:33:24 diff --git a/docs/JOURNAL.md b/docs/JOURNAL.md new file mode 100644 index 00000000..cdc4329f --- /dev/null +++ b/docs/JOURNAL.md @@ -0,0 +1,59 @@ +# Journal de développement + +## 2025-06-13 + +### Informations produit sous forme de grille + +- L'idée est de réimplémenter les informations essentiels du produit (nom, prix), le sélecteur de variation, les textes de détail, de conditions et d'entretien, et le bouton d'ajout au Panier. +- Plutôt qu'un encart flottant, contenant tout, il n'y aurait qu'une barre pleine longueur comprenant nom, prix et sélecteur de variation (`.essentiel-produit`). +- Il flotterait en bas de l'écran jusqu'à ce se poser à la fin des photos. +- Une nouvelle section, statique elle et faisant suite à la fois aux photos et à la barre, s'afficherait en pleine longueur sous forme d'accordéon, avec les anciens onglets comme sections. +- Par défaut, la section « Détails » serait développée. +- `
` et `` sont aujourd'hui pris en charge par les navigateurs (niveau _Baseline_), mais l'attribut `name` permettant l'ouverture exclusive d'une section par accordéon (p. ex. le développement d'une ferme toutes les autres) n'a que récemment été implémentée (2024 pour _Firefox_). +- Une implémentation en _JavaScript_ est donc pour l'instant nécessaire. + +### Remaniement du défilement des photos de la page Produit + +- Les flèches de défilement sont supprimées. +- À la place, les photos ne s'affichent plus en pleine longueur. +- Elles le sont à ~93%, pour que l'on perçoive sur les bords la photo précédente/suivante et signale à l'Utilisateur qu'il est possible de défiler. + +## 2025-06-30 + +- Test de _LogTape_ comme librairie de journalisation. + +## 2025-07-03 + +- Création d'une animation SVG avec des `` défilants sur un ``. + - Le redimensionnement dynamique du conteneur de l'animation se fait via JavaScript. + - Le script récupère la longueur d'une image au redimensionnement de la vue. + - Il injecte un attribut CSS `inline-size` dans le HTML de la page correspondant à cette nouvelle longueur. + - Il n'est pas encore possible de mettre en pause l'animation au survol de la souris, qui est une bonne pratique pour ce style d'éléments visuels. + - Le `` doit être d'une longueur supérieure au conteneur (ici `120%`) pour que le texte disparaisse de façon progressive, qu'il ne soit pas « coupé » brutalement aux extrémités. +- Début de l'implémentation d'une classe `no-js` pour un affichage adapté en cas d'absence de JavaScript. +- Développement d'un script `fish` qui lance un onglet Cromite en mode sans-tête avec profile Invité sur le site Haiku Atelier. + - Il est possible, en utilisant le débogueur à distance Chromium, de rafraîchir un onglet via le terminal en passant par `fx` et `websocat` pour l'interface _WebSocket_. + - Cela offre une forme primitive de « hot reload » (rechargement à chaud) pour éviter d'avoir manuellement taper F5 à chaque changement. + +## 2025-07-04 + +- Problème de l'animation SVG s'affichant mal sur iOS. + - Ce serait du à un bogue de rendu du moteur _WebKit_. + - Pour le contourner, appliquer un `transform: translate3d` ou `transform: matrix` sur les éléments SVG. + - Installation d'un [débogueur distant pour iOS](https://git.gay/besties/ios-safari-remote-debug). + - Compilation de [ios-webkit-debug-proxy](https://github.com/google/ios-webkit-debug-proxy). + - Ensuite, avec un câble reliant l'iPhone à l'ordinateur : + - S'assurer que le démon `usbmuxd` tourne ; + - Ouvrir un onglet sur Safari et activer le _Web Inspector_ dans les préférences avancées ; + - Lancer `ios_webkit_debug_proxy` dans le terminal ; + - Compiler `ios-safari-remote-debug` (`./ios-safari-remote-debug build -t releases/Apple/Safari-17.5-macOS-14.5`) ; + - Lancer le serveur `ios-safari-remote-debug` (`./ios-safari-remote-debug serve`) ; + - Naviguer à son adresse, ouvrir les outils de développements normalement proposés. + - Cela devrait pouvoir faciliter la résolution du soucis de l'animation sur l'accueil pour Safari iOS. + - **Le fin de mot de l'histoire ?** + - Pour _iOS_, on ne peut pas (encore) spécifier de valeurs relatives en pourcentages pour les dimensions des _SVG_. Il faut utiliser des `vw`/`vi`. + - Pour les `` au sein de SVG, le rendu de `font-size` peut différer de celui de Chromium/FF. Question de _PPI_ ? + - `IntersectionObserver` émettait un événement où `intersectionRatio` n'était pas 1, mais ~0.99874784. Vu que le script utilisait une valeur de 1 pour décider qu'un élément soit caché ou non, l'animation était cachée au chargement de la page. + - Utiliser un ratio supérieur à 0.9 corrige le soucisS. +- Journalisation avec _LogTape_. + - Différenciation primaire du niveau minimum de journal en utilisant la variable d'environnement `VITE_ENV`. diff --git a/STUFF.md b/docs/STUFF.md similarity index 85% rename from STUFF.md rename to docs/STUFF.md index 81ce1ee5..2b12cbba 100644 --- a/STUFF.md +++ b/docs/STUFF.md @@ -1,18 +1,5 @@ I'll see you soup -- Thèmes - - LS_COLORS (Vivid ?) - - bat - - eza (?) - - fdfind - - fish - - gitui - - helix - - wezterm - - yazi - - zed - - zellij - Google API AIzaSyDGe62r-bDxvNuDCP6HIfWIJAMvelFxU1s 402628219773-hl8niqniiiklf15f9biou8g06pbm9sac.apps.googleusercontent.com @@ -39,14 +26,6 @@ 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 } } ---- - -Stripe -pk_live_51D0BbTIKBol0AhpghF9b6lJ4ZjPXWaNRzBgxtcUTdbV8OC2OpHxSbkMoEEgCHEPSs6E6NISfdMv92t9OnKqKh0sH00N6tgi6HW -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 - ---- - - Chargement de la page - Récupération des informations à la génération de la page - Panier diff --git a/TODO.md b/docs/TODO.md similarity index 76% rename from TODO.md rename to docs/TODO.md index 77ac2532..c1ff310b 100755 --- a/TODO.md +++ b/docs/TODO.md @@ -12,10 +12,23 @@ - Champs - Utiliser un polyfill pour BroadcastChannel - PAGE SHOP - - [ ] Faire apparaître le menu des catégories de Produits quand on scroll vers le haut - PAGE PANIER + - Erreur lorsque l'on ajoute deux variations d'un même produit et que l'on essaie d'en supprimer une. + - Il semblerait que supprimer une variation supprime toutes les entrées du même produit. - MÉTHODES DE LIVRAISON - [ ] Proposer la livraison à domicile en Belgique et en France pour le coût unique de 8 euros, quel que soit le montant de la commande + - [ ] Proposer la livraison aux États-Unis. +- PAGE PRODUIT +- PIED DE PAGE +- TOUTES LES PAGES + - Trouver la source des bordures superflues. + - Sur Chromium : box-shadow sur
? + +- MODE VACANCES + - Pour l'été, superposer à la page SHOP un calque gris sur lequel défile une animation d'un texte indiquant que la boutique est en vacances. + - La page doit rester défilable. +- MODE NO JS + - Laisser la page normalement défilable avec les images les une après les autres quand _JavaScript_ n'est pas présent. --- @@ -23,7 +36,7 @@ Un bouton « Retour en haut » permet pour un Utilisateur de rapidement revenir au sommet d'une page fournie en contenu. -Ne pas proposer ce bouton pour des pages faibles en contenus. Hoa Loranger recommende ainsi d'utiliser le seuil de **plus de quatre pages** de contenu (une page correspond à ce qui traversé avec l'appui sur la touche Espace dans le navigateur). +Ne pas proposer ce bouton pour des pages faibles en contenus. Hoa Loranger recommande ainsi d'utiliser le seuil de **plus de quatre pages** de contenu (une page correspond à ce qui traversé avec l'appui sur la touche Espace dans le navigateur). ### Apparence et contenu diff --git a/cute.ts b/docs/lol/cute.ts similarity index 100% rename from cute.ts rename to docs/lol/cute.ts diff --git a/dprint.json b/dprint.json index 2d0a3e2b..31790acd 100755 --- a/dprint.json +++ b/dprint.json @@ -12,7 +12,7 @@ "cacheKey": "1", "commands": [ { "command": "prettier --ignore-unknown --write --stdin-filepath {{file_path}}", "exts": ["php", "xml"] }, - { "command": "just --dump", "fileNames": ["justfile"], "stdin": false } + { "command": "just --dump", "fileNames": ["justfile"], "stdin": true } ], "cwd": "${originConfigDir}", "indentWidth": 2, @@ -76,13 +76,13 @@ }, "newLineKind": "lf", "plugins": [ - "https://plugins.dprint.dev/typescript-0.93.3.wasm", - "https://plugins.dprint.dev/json-0.19.4.wasm", - "https://plugins.dprint.dev/markdown-0.17.8.wasm", - "https://plugins.dprint.dev/toml-0.6.4.wasm", - "https://plugins.dprint.dev/g-plane/malva-v0.11.1.wasm", - "https://plugins.dprint.dev/g-plane/markup_fmt-v0.18.0.wasm", - "https://plugins.dprint.dev/g-plane/pretty_yaml-v0.5.0.wasm", + "https://plugins.dprint.dev/typescript-0.95.8.wasm", + "https://plugins.dprint.dev/json-0.20.0.wasm", + "https://plugins.dprint.dev/markdown-0.19.0.wasm", + "https://plugins.dprint.dev/toml-0.7.0.wasm", + "https://plugins.dprint.dev/g-plane/malva-v0.12.1.wasm", + "https://plugins.dprint.dev/g-plane/markup_fmt-v0.22.0.wasm", + "https://plugins.dprint.dev/g-plane/pretty_yaml-v0.5.1.wasm", "https://plugins.dprint.dev/exec-0.5.1.json@492414e39dea4dccc07b4af796d2f4efdb89e84bae2bd4e1e924c0cc050855bf" ], "toml": { diff --git a/eslint.config.js b/eslint.config.js index 01f59542..4b30e56e 100755 --- a/eslint.config.js +++ b/eslint.config.js @@ -46,12 +46,8 @@ export default tseslint.config( "@typescript-eslint/no-misused-promises": "off", /* 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-unused-expressions": [ - "error", - { - allowTernary: true, - }, - ], + // Pour utiliser LogTape. + "@typescript-eslint/no-unused-expressions": "off", /* Cette règle est doublon avec les règles noUnused* de TypeScript. */ "@typescript-eslint/no-unused-vars": "off", /* Cette règle empêche de lever des erreurs génériques (p.ex. `E extends Error`). */ diff --git a/justfile b/justfile index b9cbfce5..b54fed44 100755 --- a/justfile +++ b/justfile @@ -1,31 +1,30 @@ set shell := ["fish", "-c"] +set unstable := true cacheFolder := ".cache" eslintCacheFile := "eslintcache" prettierCacheFile := "prettiercache" stylelintCacheFile := "stylelintcache" +# Recette par défaut. +default: dev + # Liste toutes les recettes list: @just --list --list-heading 'Recettes disponibles :'\n'' --unsorted -# Démarre le conteneur ddev -start: - ddev start - -# Arrête le conteneur ddev -stop: - ddev stop - -# Met à jour les dépendances composer et npm +# Met à jour les dépendances composer et npm. +[group('js')] +[group('php')] update: composer update - pnpm update --latest + bun update -# Formatte avec Prettier et dprint +# Formatte avec Prettier et dprint. +[group('qualité')] format: @echo "Formatage de l'ensemble du code avec Prettier et dprint." - pnpm prettier \ + bunx prettier \ --cache \ --cache-location "{{ cacheFolder }}/{{ prettierCacheFile }}" \ --ignore-unknown \ @@ -33,77 +32,114 @@ format: . dprint fmt -# Compile, minifie et optimise Sass vers CSS +# Compile, minifie et optimise Sass vers CSS. +[group('css')] build-css: - pnpm sass \ + @bunx sass \ --update \ "web/app/themes/haiku-atelier-2024/src/sass":"web/app/themes/haiku-atelier-2024/assets/css" - pnpm lightningcss \ + @bunx lightningcss \ --bundle \ --minify \ --output-file "web/app/themes/haiku-atelier-2024/assets/css/main.min.css" \ -- "web/app/themes/haiku-atelier-2024/assets/css/main.css" - pnpm lightningcss \ + @bunx lightningcss \ --bundle \ --minify \ --output-file "web/app/themes/haiku-atelier-2024/assets/css/pages/page-panier.min.css" \ -- "web/app/themes/haiku-atelier-2024/assets/css/pages/page-panier.css" - pnpm lightningcss \ + @bunx lightningcss \ --bundle \ --minify \ --output-file "web/app/themes/haiku-atelier-2024/assets/css/pages/page-accueil.min.css" \ -- "web/app/themes/haiku-atelier-2024/assets/css/pages/page-accueil.css" - pnpm lightningcss \ + @bunx lightningcss \ --bundle \ --minify \ --output-file "web/app/themes/haiku-atelier-2024/assets/css/pages/page-boutique.min.css" \ -- "web/app/themes/haiku-atelier-2024/assets/css/pages/page-boutique.css" - pnpm lightningcss \ + @bunx lightningcss \ --bundle \ --minify \ --output-file "web/app/themes/haiku-atelier-2024/assets/css/pages/page-a-propos.min.css" \ -- "web/app/themes/haiku-atelier-2024/assets/css/pages/page-a-propos.css" - pnpm lightningcss \ + @bunx lightningcss \ --bundle \ --minify \ --output-file "web/app/themes/haiku-atelier-2024/assets/css/pages/page-modele-simple.min.css" \ -- "web/app/themes/haiku-atelier-2024/assets/css/pages/page-modele-simple.css" - pnpm lightningcss \ - --bundle \ - --minify \ - --output-file "web/app/themes/haiku-atelier-2024/assets/css/pages/page-succes-commande.min.css" \ - -- "web/app/themes/haiku-atelier-2024/assets/css/pages/page-succes-commande.css" + @bunx lightningcss \ + --bundle \ + --minify \ + --output-file "web/app/themes/haiku-atelier-2024/assets/css/pages/page-succes-commande.min.css" \ + -- "web/app/themes/haiku-atelier-2024/assets/css/pages/page-succes-commande.css" -# Compile le CSS à chaque changement de fichier +# Compile le CSS à chaque changement de fichier. +[group('css')] watch-css: - pnpm sass \ - --update \ - --watch \ - "web/app/themes/haiku-atelier-2024/src/sass":"web/app/themes/haiku-atelier-2024/assets/css" + @just dev + @watchexec -w "web/app/themes/haiku-atelier-2024/src/sass" -- just build-css reload-tab -# Compile TypeScript en JavaScript +# Compile TypeScript en JavaScript. +[group('js')] build-js: - pnpm vite build + @bunx vite build -# Compile tout +# Compile tout. +[group('css')] +[group('js')] build-all: - just build-css - just build-js + @just build-css + @just build-js + @just format -# Compile TypeScript à chaque changement de fichier +# Compile TypeScript à chaque changement de fichier. +[group('js')] watch-js: - pnpm vite build --watch + bunx vite build --watch -# Vérifie le code TypeScript avec des analyseurs statiques +# Vérifie le code TypeScript avec des analyseurs statiques. +[group('js')] +[group('qualité')] lint-js: - -pnpm eslint "web/app/themes/haiku-atelier-2024/src/scripts" - -pnpm biome check --reporter=summary "web/app/themes/haiku-atelier-2024/src/scripts" - -pnpm oxlint "web/app/themes/haiku-atelier-2024/src/scripts" + -bunx eslint "web/app/themes/haiku-atelier-2024/src/scripts" + -bunx biome check --reporter=summary "web/app/themes/haiku-atelier-2024/src/scripts" + -bunx oxlint "web/app/themes/haiku-atelier-2024/src/scripts" + +# Vérifie le code Sass avec Stylelint. +[group('css')] +[group('qualité')] +lint-css: + -bunx stylelint "web/app/themes/haiku-atelier-2024/src/sass/" --fix # Vérifie le code TypeScript mort avec knip +[group('js')] +[group('qualité')] lint-code-mort: - -pnpm knip + -bunx knip -# Avec Jujetsu, fusionne tous les changements actuels dans le commit précédent et pousse sur le répertoire distant +# Fusionne tous les changements actuels dans le commit précédent et pousse sur le répertoire distant avec Jujetsu. +[group('vcs')] squash-and-push: -jj squash --ignore-immutable && jj bookmark set principale -r @- --allow-backwards && jj git push + +# Analyse statiquement, compile et formate le CSS +[group('css')] +[group('qualité')] +lint-build-format-css: + -just lint-css + -just build-css + -just format + +# Lance un navigateur de développement. +[group('développement')] +dev: + @/opt/cromite/chrome --remote-debugging-address=127.0.0.1 --remote-debugging-port=9222 --profile-directory=Guest "https://haikuatelier.gcch.local" & + +# Recharge le premier onglet du navigateur de développement. +[group('développement')] +reload-tab: + #!/usr/bin/fish + set -f WSURL (curl -s http://127.1:9222/json | fx '.[0].webSocketDebuggerUrl') + set -f REQUEST '{ "id": 2, "method": "Page.reload", "params": { "ignoreCache": true, "scriptToEvaluateOnLoad": "" } }' + echo $REQUEST | websocat $WSURL diff --git a/package.json b/package.json index 200f4168..f19c8a03 100755 --- a/package.json +++ b/package.json @@ -5,64 +5,66 @@ "description": "", "author": "", "license": "ISC", - "packageManager": "pnpm@9.14.4", "main": "index.js", "keywords": [], - "scripts": { - "knip": "knip", - "test": "echo \"Error: no test specified\" && exit 1" - }, + "scripts": { "knip": "knip" }, "dependencies": { - "@mobily/ts-belt": "3.13.1", - "@sentry/browser": "9.14.0", - "@swan-io/boxed": "^3.2.0", - "a11y-dialog": "^8.1.3", + "@logtape/logtape": "^1.0.2", + "@mobily/ts-belt": "v4.0.0-rc.5", + "@sentry/browser": "^9.34.0", + "a11y-dialog": "^8.1.4", "chalk": "^5.4.1", "lit-html": "^3.3.0", "loglevel": "^1.9.2", "loglevel-plugin-prefix": "^0.8.4", "optics-ts": "^2.4.1", - "purify-ts": "^2.1.1", - "ts-pattern": "^5.7.0", - "valibot": "1.0.0" + "purify-ts": "2.1.2", + "ts-pattern": "^5.7.1", + "valibot": "1.1.0" }, "devDependencies": { - "@biomejs/biome": "^1.9.4", - "@eslint/js": "^9.25.1", + "@biomejs/biome": "^2.0.6", + "@cspell/dict-fr-fr": "^2.3.0", + "@eslint/js": "^9.30.1", + "@playwright/test": "^1.53.2", "@prettier/plugin-php": "^0.22.4", "@prettier/plugin-xml": "^3.4.1", - "@sentry/core": "^9.14.0", - "@swc/cli": "0.7.3", - "@types/node": "^22.14.1", - "@vitejs/plugin-legacy": "^6.1.0", + "@sentry/core": "^9.34.0", + "@swc/cli": "0.7.7", + "@types/eslint__js": "^9.14.0", + "@types/node": "^24.0.10", + "@vitejs/plugin-legacy": "^7.0.0", "better-typescript-lib": "^2.11.0", - "browserslist": "^4.24.4", - "eslint": "^9.25.1", - "eslint-plugin-oxlint": "^0.16.7", - "eslint-plugin-perfectionist": "^4.12.1", - "fdir": "^6.4.4", - "globals": "^16.0.0", - "knip": "^5.50.5", - "oxlint": "^0.16.7", + "browserslist": "^4.25.1", + "eslint": "^9.30.1", + "eslint-plugin-oxlint": "^1.5.0", + "eslint-plugin-perfectionist": "^4.15.0", + "fdir": "^6.4.6", + "globals": "^16.3.0", + "knip": "^5.61.3", + "lightningcss-cli": "^1.30.1", + "oxlint": "^1.5.0", "picomatch": "^4.0.2", - "prettier": "^3.5.3", - "prettier-plugin-pkg": "^0.19.0", - "prettier-plugin-sh": "^0.17.2", - "sass-embedded": "^1.87.0", - "stylelint": "^16.19.0", + "playwright": "^1.53.2", + "prettier": "^3.6.2", + "prettier-plugin-pkg": "^0.21.1", + "prettier-plugin-sh": "^0.18.0", + "sass-embedded": "^1.89.2", + "stylelint": "^16.21.1", "stylelint-config-clean-order": "^7.0.0", "stylelint-config-sass-guidelines": "^12.1.0", - "stylelint-config-standard-scss": "^14.0.0", + "stylelint-config-standard-scss": "^15.0.1", "stylelint-declaration-block-no-ignored-properties": "^2.8.0", "stylelint-plugin-logical-css": "^1.2.3", "typescript": "5.8.3", - "typescript-eslint": "^8.31.0", - "vite": "^6.3.2", + "typescript-eslint": "^8.35.1", + "vite": "^7.0.2", + "vite-plugin-compression2": "^2.2.0", "vite-plugin-manifest-sri": "^0.2.0", "vite-plugin-node-polyfills": "^0.23.0", - "vite-plugin-valibot-env": "^0.10.0", + "vite-plugin-valibot-env": "^1.0.1", "vite-tsconfig-paths": "^5.1.4", - "wp-types": "^4.68.0" + "wp-types": "^4.68.1" }, "browserslist": [ "chrome >0 and last 3 years", @@ -74,18 +76,8 @@ "ios >0 and last 3 years" ], "knip": { - "entry": [ - "web/app/themes/haiku-atelier-2024/src/scripts/*.ts" - ], - "project": [ - "web/app/themes/haiku-atelier-2024/src/scripts/**/*.{js,ts,d.ts}" - ] + "entry": ["web/app/themes/haiku-atelier-2024/src/scripts/*.ts"], + "project": ["web/app/themes/haiku-atelier-2024/src/scripts/**/*.{js,ts,d.ts}"] }, - "trustedDependencies": [ - "@biomejs/biome", - "@parcel/watcher", - "@swc/core", - "core-js", - "esbuild" - ] + "trustedDependencies": ["@biomejs/biome", "@parcel/watcher", "@swc/core", "core-js", "esbuild", "lightningcss-cli"] } diff --git a/phpcs.xml b/phpcs.xml index e13e63f4..1d8336f3 100755 --- a/phpcs.xml +++ b/phpcs.xml @@ -1,4 +1,4 @@ - + Roots Coding Standards diff --git a/playwright.config.ts b/playwright.config.ts new file mode 100644 index 00000000..ae98dd4b --- /dev/null +++ b/playwright.config.ts @@ -0,0 +1,92 @@ +import { defineConfig, devices } from "@playwright/test"; + +/** + * Read environment variables from file. + * https://github.com/motdotla/dotenv + */ +// import dotenv from 'dotenv'; +// import path from 'path'; +// dotenv.config({ path: path.resolve(__dirname, '.env') }); + +/** + * See https://playwright.dev/docs/test-configuration. + */ +export default defineConfig({ + testDir: "./tests", + /* Run tests in files in parallel */ + fullyParallel: true, + /* Fail the build on CI if you accidentally left test.only in the source code. */ + forbidOnly: !!process.env.CI, + /* Retry on CI only */ + retries: process.env.CI ? 2 : 0, + /* Opt out of parallel tests on CI. */ + workers: process.env.CI ? 1 : undefined, + /* Reporter to use. See https://playwright.dev/docs/test-reporters */ + reporter: "list", + /* Shared settings for all the projects below. See https://playwright.dev/docs/api/class-testoptions. */ + use: { + /* Base URL to use in actions like `await page.goto('/')`. */ + // baseURL: 'http://localhost:3000', + + /* Collect trace when retrying the failed test. See https://playwright.dev/docs/trace-viewer */ + trace: "on-first-retry", + clientCertificates: [ + { + origin: "https://haikuatelier.gcch.local", + certPath: "../certs/_wildcard.gcch.local.pem", + keyPath: "../certs/_wildcard.gcch.local-key.pem", + }, + ], + ignoreHTTPSErrors: true, + }, + + /* Configure projects for major browsers */ + projects: [ + { + name: "desktop-chromium-1920", + use: { ...devices["Desktop Chrome"], viewport: { width: 1920, height: 1080 } }, + }, + { + name: "desktop-chromium-1536", + use: { ...devices["Desktop Chrome"], viewport: { width: 1536, height: 864 } }, + }, + { + name: "desktop-chromium-1366", + use: { ...devices["Desktop Chrome"], viewport: { width: 1366, height: 768 } }, + }, + { + name: "desktop-firefox-1920", + use: { ...devices["Desktop Firefox"], viewport: { width: 1920, height: 1080 } }, + }, + { + name: "desktop-firefox-1536", + use: { ...devices["Desktop Firefox"], viewport: { width: 1536, height: 864 } }, + }, + { + name: "desktop-firefox-1366", + use: { ...devices["Desktop Firefox"], viewport: { width: 1366, height: 768 } }, + }, + { + name: "tablet-chromium-portrait", + use: { ...devices["Galaxy Tab S9"] }, + }, + { + name: "tablet-chromium-landscape", + use: { ...devices["Galaxy Tab S9 landscape"] }, + }, + { + name: "mobile-chromium-portrait", + use: { ...devices["Pixel 7"] }, + }, + { + name: "mobile-chromium-landscape", + use: { ...devices["Pixel 7 landscape"] }, + }, + ], + /* Run your local dev server before starting the tests */ + // webServer: { + // command: 'npm run start', + // url: 'http://localhost:3000', + // reuseExistingServer: !process.env.CI, + // }, +}); diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml deleted file mode 100755 index 5a6ae669..00000000 --- a/pnpm-lock.yaml +++ /dev/null @@ -1,7229 +0,0 @@ -lockfileVersion: '9.0' - -settings: - autoInstallPeers: true - excludeLinksFromLockfile: false - -importers: - - .: - dependencies: - '@mobily/ts-belt': - specifier: 4.0.0-rc.5 - version: 4.0.0-rc.5 - '@sentry/browser': - specifier: 9.14.0 - version: 9.14.0 - '@swan-io/boxed': - specifier: ^3.2.0 - version: 3.2.0(typescript@5.8.3) - a11y-dialog: - specifier: ^8.1.3 - version: 8.1.3 - chalk: - specifier: ^5.4.1 - version: 5.4.1 - lit-html: - specifier: ^3.3.0 - version: 3.3.0 - loglevel: - specifier: ^1.9.2 - version: 1.9.2 - loglevel-plugin-prefix: - specifier: ^0.8.4 - version: 0.8.4 - optics-ts: - specifier: ^2.4.1 - version: 2.4.1 - purify-ts: - specifier: ^2.1.1 - version: 2.1.1 - ts-pattern: - specifier: ^5.7.0 - version: 5.7.0 - valibot: - specifier: 1.0.0 - version: 1.0.0(typescript@5.8.3) - devDependencies: - '@biomejs/biome': - specifier: ^1.9.4 - version: 1.9.4 - '@eslint/js': - specifier: ^9.25.1 - version: 9.25.1 - '@prettier/plugin-php': - specifier: ^0.22.4 - version: 0.22.4(prettier@3.5.3) - '@prettier/plugin-xml': - specifier: ^3.4.1 - version: 3.4.1(prettier@3.5.3) - '@sentry/core': - specifier: ^9.14.0 - version: 9.14.0 - '@swc/cli': - specifier: 0.7.3 - version: 0.7.3(@swc/core@1.9.1)(chokidar@4.0.3) - '@types/eslint__js': - specifier: ^9.14.0 - version: 9.14.0 - '@types/node': - specifier: ^22.14.1 - version: 22.14.1 - '@vitejs/plugin-legacy': - specifier: ^6.1.0 - version: 6.1.0(terser@5.36.0)(vite@6.3.2(@types/node@22.14.1)(jiti@2.4.2)(sass-embedded@1.87.0)(sass@1.80.6)(terser@5.36.0)) - better-typescript-lib: - specifier: ^2.11.0 - version: 2.11.0(typescript@5.8.3) - browserslist: - specifier: ^4.24.4 - version: 4.24.4 - eslint: - specifier: ^9.25.1 - version: 9.25.1(jiti@2.4.2) - eslint-plugin-oxlint: - specifier: ^0.16.7 - version: 0.16.7 - eslint-plugin-perfectionist: - specifier: ^4.12.1 - version: 4.12.1(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3) - fdir: - specifier: ^6.4.4 - version: 6.4.4(picomatch@4.0.2) - globals: - specifier: ^16.0.0 - version: 16.0.0 - knip: - specifier: ^5.50.5 - version: 5.50.5(@types/node@22.14.1)(typescript@5.8.3) - oxlint: - specifier: ^0.16.7 - version: 0.16.7 - picomatch: - specifier: ^4.0.2 - version: 4.0.2 - prettier: - specifier: ^3.5.3 - version: 3.5.3 - prettier-plugin-pkg: - specifier: ^0.19.0 - version: 0.19.0(prettier@3.5.3) - prettier-plugin-sh: - specifier: ^0.17.2 - version: 0.17.2(prettier@3.5.3) - sass-embedded: - specifier: ^1.87.0 - version: 1.87.0 - stylelint: - specifier: ^16.19.0 - version: 16.19.0(typescript@5.8.3) - stylelint-config-clean-order: - specifier: ^7.0.0 - version: 7.0.0(stylelint@16.19.0(typescript@5.8.3)) - stylelint-config-sass-guidelines: - specifier: ^12.1.0 - version: 12.1.0(postcss@8.5.3)(stylelint@16.19.0(typescript@5.8.3)) - stylelint-config-standard-scss: - specifier: ^14.0.0 - version: 14.0.0(postcss@8.5.3)(stylelint@16.19.0(typescript@5.8.3)) - stylelint-declaration-block-no-ignored-properties: - specifier: ^2.8.0 - version: 2.8.0(stylelint@16.19.0(typescript@5.8.3)) - stylelint-plugin-logical-css: - specifier: ^1.2.3 - version: 1.2.3(stylelint@16.19.0(typescript@5.8.3)) - typescript: - specifier: 5.8.3 - version: 5.8.3 - typescript-eslint: - specifier: ^8.31.0 - version: 8.31.0(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3) - vite: - specifier: ^6.3.2 - version: 6.3.2(@types/node@22.14.1)(jiti@2.4.2)(sass-embedded@1.87.0)(sass@1.80.6)(terser@5.36.0) - vite-plugin-manifest-sri: - specifier: ^0.2.0 - version: 0.2.0 - vite-plugin-node-polyfills: - specifier: ^0.23.0 - version: 0.23.0(rollup@4.40.0)(vite@6.3.2(@types/node@22.14.1)(jiti@2.4.2)(sass-embedded@1.87.0)(sass@1.80.6)(terser@5.36.0)) - vite-plugin-valibot-env: - specifier: ^0.10.0 - version: 0.10.0(valibot@1.0.0(typescript@5.8.3))(vite@6.3.2(@types/node@22.14.1)(jiti@2.4.2)(sass-embedded@1.87.0)(sass@1.80.6)(terser@5.36.0)) - vite-tsconfig-paths: - specifier: ^5.1.4 - version: 5.1.4(typescript@5.8.3)(vite@6.3.2(@types/node@22.14.1)(jiti@2.4.2)(sass-embedded@1.87.0)(sass@1.80.6)(terser@5.36.0)) - wp-types: - specifier: ^4.68.0 - version: 4.68.0 - -packages: - - '@ampproject/remapping@2.3.0': - resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==} - engines: {node: '>=6.0.0'} - - '@babel/code-frame@7.26.2': - resolution: {integrity: sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==} - engines: {node: '>=6.9.0'} - - '@babel/compat-data@7.26.8': - resolution: {integrity: sha512-oH5UPLMWR3L2wEFLnFJ1TZXqHufiTKAiLfqw5zkhS4dKXLJ10yVztfil/twG8EDTA4F/tvVNw9nOl4ZMslB8rQ==} - engines: {node: '>=6.9.0'} - - '@babel/core@7.26.10': - resolution: {integrity: sha512-vMqyb7XCDMPvJFFOaT9kxtiRh42GwlZEg1/uIgtZshS5a/8OaduUfCi7kynKgc3Tw/6Uo2D+db9qBttghhmxwQ==} - engines: {node: '>=6.9.0'} - - '@babel/generator@7.27.0': - resolution: {integrity: sha512-VybsKvpiN1gU1sdMZIp7FcqphVVKEwcuj02x73uvcHE0PTihx1nlBcowYWhDwjpoAXRv43+gDzyggGnn1XZhVw==} - engines: {node: '>=6.9.0'} - - '@babel/helper-annotate-as-pure@7.25.9': - resolution: {integrity: sha512-gv7320KBUFJz1RnylIg5WWYPRXKZ884AGkYpgpWW02TH66Dl+HaC1t1CKd0z3R4b6hdYEcmrNZHUmfCP+1u3/g==} - engines: {node: '>=6.9.0'} - - '@babel/helper-compilation-targets@7.27.0': - resolution: {integrity: sha512-LVk7fbXml0H2xH34dFzKQ7TDZ2G4/rVTOrq9V+icbbadjbVxxeFeDsNHv2SrZeWoA+6ZiTyWYWtScEIW07EAcA==} - engines: {node: '>=6.9.0'} - - '@babel/helper-create-class-features-plugin@7.27.0': - resolution: {integrity: sha512-vSGCvMecvFCd/BdpGlhpXYNhhC4ccxyvQWpbGL4CWbvfEoLFWUZuSuf7s9Aw70flgQF+6vptvgK2IfOnKlRmBg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - - '@babel/helper-create-regexp-features-plugin@7.27.0': - resolution: {integrity: sha512-fO8l08T76v48BhpNRW/nQ0MxfnSdoSKUJBMjubOAYffsVuGG5qOfMq7N6Es7UJvi7Y8goXXo07EfcHZXDPuELQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - - '@babel/helper-define-polyfill-provider@0.6.4': - resolution: {integrity: sha512-jljfR1rGnXXNWnmQg2K3+bvhkxB51Rl32QRaOTuwwjviGrHzIbSc8+x9CpraDtbT7mfyjXObULP4w/adunNwAw==} - peerDependencies: - '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 - - '@babel/helper-member-expression-to-functions@7.25.9': - resolution: {integrity: sha512-wbfdZ9w5vk0C0oyHqAJbc62+vet5prjj01jjJ8sKn3j9h3MQQlflEdXYvuqRWjHnM12coDEqiC1IRCi0U/EKwQ==} - engines: {node: '>=6.9.0'} - - '@babel/helper-module-imports@7.25.9': - resolution: {integrity: sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw==} - engines: {node: '>=6.9.0'} - - '@babel/helper-module-transforms@7.26.0': - resolution: {integrity: sha512-xO+xu6B5K2czEnQye6BHA7DolFFmS3LB7stHZFaOLb1pAwO1HWLS8fXA+eh0A2yIvltPVmx3eNNDBJA2SLHXFw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - - '@babel/helper-optimise-call-expression@7.25.9': - resolution: {integrity: sha512-FIpuNaz5ow8VyrYcnXQTDRGvV6tTjkNtCK/RYNDXGSLlUD6cBuQTSw43CShGxjvfBTfcUA/r6UhUCbtYqkhcuQ==} - engines: {node: '>=6.9.0'} - - '@babel/helper-plugin-utils@7.26.5': - resolution: {integrity: sha512-RS+jZcRdZdRFzMyr+wcsaqOmld1/EqTghfaBGQQd/WnRdzdlvSZ//kF7U8VQTxf1ynZ4cjUcYgjVGx13ewNPMg==} - engines: {node: '>=6.9.0'} - - '@babel/helper-remap-async-to-generator@7.25.9': - resolution: {integrity: sha512-IZtukuUeBbhgOcaW2s06OXTzVNJR0ybm4W5xC1opWFFJMZbwRj5LCk+ByYH7WdZPZTt8KnFwA8pvjN2yqcPlgw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - - '@babel/helper-replace-supers@7.26.5': - resolution: {integrity: sha512-bJ6iIVdYX1YooY2X7w1q6VITt+LnUILtNk7zT78ykuwStx8BauCzxvFqFaHjOpW1bVnSUM1PN1f0p5P21wHxvg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - - '@babel/helper-skip-transparent-expression-wrappers@7.25.9': - resolution: {integrity: sha512-K4Du3BFa3gvyhzgPcntrkDgZzQaq6uozzcpGbOO1OEJaI+EJdqWIMTLgFgQf6lrfiDFo5FU+BxKepI9RmZqahA==} - engines: {node: '>=6.9.0'} - - '@babel/helper-string-parser@7.25.9': - resolution: {integrity: sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==} - engines: {node: '>=6.9.0'} - - '@babel/helper-validator-identifier@7.25.9': - resolution: {integrity: sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==} - engines: {node: '>=6.9.0'} - - '@babel/helper-validator-option@7.25.9': - resolution: {integrity: sha512-e/zv1co8pp55dNdEcCynfj9X7nyUKUXoUEwfXqaZt0omVOmDe9oOTdKStH4GmAw6zxMFs50ZayuMfHDKlO7Tfw==} - engines: {node: '>=6.9.0'} - - '@babel/helper-wrap-function@7.25.9': - resolution: {integrity: sha512-ETzz9UTjQSTmw39GboatdymDq4XIQbR8ySgVrylRhPOFpsd+JrKHIuF0de7GCWmem+T4uC5z7EZguod7Wj4A4g==} - engines: {node: '>=6.9.0'} - - '@babel/helpers@7.27.0': - resolution: {integrity: sha512-U5eyP/CTFPuNE3qk+WZMxFkp/4zUzdceQlfzf7DdGdhp+Fezd7HD+i8Y24ZuTMKX3wQBld449jijbGq6OdGNQg==} - engines: {node: '>=6.9.0'} - - '@babel/parser@7.27.0': - resolution: {integrity: sha512-iaepho73/2Pz7w2eMS0Q5f83+0RKI7i4xmiYeBmDzfRVbQtTOG7Ts0S4HzJVsTMGI9keU8rNfuZr8DKfSt7Yyg==} - engines: {node: '>=6.0.0'} - hasBin: true - - '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.25.9': - resolution: {integrity: sha512-ZkRyVkThtxQ/J6nv3JFYv1RYY+JT5BvU0y3k5bWrmuG4woXypRa4PXmm9RhOwodRkYFWqC0C0cqcJ4OqR7kW+g==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - - '@babel/plugin-bugfix-safari-class-field-initializer-scope@7.25.9': - resolution: {integrity: sha512-MrGRLZxLD/Zjj0gdU15dfs+HH/OXvnw/U4jJD8vpcP2CJQapPEv1IWwjc/qMg7ItBlPwSv1hRBbb7LeuANdcnw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - - '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.25.9': - resolution: {integrity: sha512-2qUwwfAFpJLZqxd02YW9btUCZHl+RFvdDkNfZwaIJrvB8Tesjsk8pEQkTvGwZXLqXUx/2oyY3ySRhm6HOXuCug==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - - '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.25.9': - resolution: {integrity: sha512-6xWgLZTJXwilVjlnV7ospI3xi+sl8lN8rXXbBD6vYn3UYDlGsag8wrZkKcSI8G6KgqKP7vNFaDgeDnfAABq61g==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.13.0 - - '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.25.9': - resolution: {integrity: sha512-aLnMXYPnzwwqhYSCyXfKkIkYgJ8zv9RK+roo9DkTXz38ynIhd9XCbN08s3MGvqL2MYGVUGdRQLL/JqBIeJhJBg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - - '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2': - resolution: {integrity: sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-syntax-import-assertions@7.26.0': - resolution: {integrity: sha512-QCWT5Hh830hK5EQa7XzuqIkQU9tT/whqbDz7kuaZMHFl1inRRg7JnuAEOQ0Ur0QUl0NufCk1msK2BeY79Aj/eg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-syntax-import-attributes@7.26.0': - resolution: {integrity: sha512-e2dttdsJ1ZTpi3B9UYGLw41hifAubg19AtCu/2I/F1QNVclOBr1dYpTdmdyZ84Xiz43BS/tCUkMAZNLv12Pi+A==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-syntax-unicode-sets-regex@7.18.6': - resolution: {integrity: sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - - '@babel/plugin-transform-arrow-functions@7.25.9': - resolution: {integrity: sha512-6jmooXYIwn9ca5/RylZADJ+EnSxVUS5sjeJ9UPk6RWRzXCmOJCy6dqItPJFpw2cuCangPK4OYr5uhGKcmrm5Qg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-async-generator-functions@7.26.8': - resolution: {integrity: sha512-He9Ej2X7tNf2zdKMAGOsmg2MrFc+hfoAhd3po4cWfo/NWjzEAKa0oQruj1ROVUdl0e6fb6/kE/G3SSxE0lRJOg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-async-to-generator@7.25.9': - resolution: {integrity: sha512-NT7Ejn7Z/LjUH0Gv5KsBCxh7BH3fbLTV0ptHvpeMvrt3cPThHfJfst9Wrb7S8EvJ7vRTFI7z+VAvFVEQn/m5zQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-block-scoped-functions@7.26.5': - resolution: {integrity: sha512-chuTSY+hq09+/f5lMj8ZSYgCFpppV2CbYrhNFJ1BFoXpiWPnnAb7R0MqrafCpN8E1+YRrtM1MXZHJdIx8B6rMQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-block-scoping@7.27.0': - resolution: {integrity: sha512-u1jGphZ8uDI2Pj/HJj6YQ6XQLZCNjOlprjxB5SVz6rq2T6SwAR+CdrWK0CP7F+9rDVMXdB0+r6Am5G5aobOjAQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-class-properties@7.25.9': - resolution: {integrity: sha512-bbMAII8GRSkcd0h0b4X+36GksxuheLFjP65ul9w6C3KgAamI3JqErNgSrosX6ZPj+Mpim5VvEbawXxJCyEUV3Q==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-class-static-block@7.26.0': - resolution: {integrity: sha512-6J2APTs7BDDm+UMqP1useWqhcRAXo0WIoVj26N7kPFB6S73Lgvyka4KTZYIxtgYXiN5HTyRObA72N2iu628iTQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.12.0 - - '@babel/plugin-transform-classes@7.25.9': - resolution: {integrity: sha512-mD8APIXmseE7oZvZgGABDyM34GUmK45Um2TXiBUt7PnuAxrgoSVf123qUzPxEr/+/BHrRn5NMZCdE2m/1F8DGg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-computed-properties@7.25.9': - resolution: {integrity: sha512-HnBegGqXZR12xbcTHlJ9HGxw1OniltT26J5YpfruGqtUHlz/xKf/G2ak9e+t0rVqrjXa9WOhvYPz1ERfMj23AA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-destructuring@7.25.9': - resolution: {integrity: sha512-WkCGb/3ZxXepmMiX101nnGiU+1CAdut8oHyEOHxkKuS1qKpU2SMXE2uSvfz8PBuLd49V6LEsbtyPhWC7fnkgvQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-dotall-regex@7.25.9': - resolution: {integrity: sha512-t7ZQ7g5trIgSRYhI9pIJtRl64KHotutUJsh4Eze5l7olJv+mRSg4/MmbZ0tv1eeqRbdvo/+trvJD/Oc5DmW2cA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-duplicate-keys@7.25.9': - resolution: {integrity: sha512-LZxhJ6dvBb/f3x8xwWIuyiAHy56nrRG3PeYTpBkkzkYRRQ6tJLu68lEF5VIqMUZiAV7a8+Tb78nEoMCMcqjXBw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.25.9': - resolution: {integrity: sha512-0UfuJS0EsXbRvKnwcLjFtJy/Sxc5J5jhLHnFhy7u4zih97Hz6tJkLU+O+FMMrNZrosUPxDi6sYxJ/EA8jDiAog==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - - '@babel/plugin-transform-dynamic-import@7.25.9': - resolution: {integrity: sha512-GCggjexbmSLaFhqsojeugBpeaRIgWNTcgKVq/0qIteFEqY2A+b9QidYadrWlnbWQUrW5fn+mCvf3tr7OeBFTyg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-exponentiation-operator@7.26.3': - resolution: {integrity: sha512-7CAHcQ58z2chuXPWblnn1K6rLDnDWieghSOEmqQsrBenH0P9InCUtOJYD89pvngljmZlJcz3fcmgYsXFNGa1ZQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-export-namespace-from@7.25.9': - resolution: {integrity: sha512-2NsEz+CxzJIVOPx2o9UsW1rXLqtChtLoVnwYHHiB04wS5sgn7mrV45fWMBX0Kk+ub9uXytVYfNP2HjbVbCB3Ww==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-for-of@7.26.9': - resolution: {integrity: sha512-Hry8AusVm8LW5BVFgiyUReuoGzPUpdHQQqJY5bZnbbf+ngOHWuCuYFKw/BqaaWlvEUrF91HMhDtEaI1hZzNbLg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-function-name@7.25.9': - resolution: {integrity: sha512-8lP+Yxjv14Vc5MuWBpJsoUCd3hD6V9DgBon2FVYL4jJgbnVQ9fTgYmonchzZJOVNgzEgbxp4OwAf6xz6M/14XA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-json-strings@7.25.9': - resolution: {integrity: sha512-xoTMk0WXceiiIvsaquQQUaLLXSW1KJ159KP87VilruQm0LNNGxWzahxSS6T6i4Zg3ezp4vA4zuwiNUR53qmQAw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-literals@7.25.9': - resolution: {integrity: sha512-9N7+2lFziW8W9pBl2TzaNht3+pgMIRP74zizeCSrtnSKVdUl8mAjjOP2OOVQAfZ881P2cNjDj1uAMEdeD50nuQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-logical-assignment-operators@7.25.9': - resolution: {integrity: sha512-wI4wRAzGko551Y8eVf6iOY9EouIDTtPb0ByZx+ktDGHwv6bHFimrgJM/2T021txPZ2s4c7bqvHbd+vXG6K948Q==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-member-expression-literals@7.25.9': - resolution: {integrity: sha512-PYazBVfofCQkkMzh2P6IdIUaCEWni3iYEerAsRWuVd8+jlM1S9S9cz1dF9hIzyoZ8IA3+OwVYIp9v9e+GbgZhA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-modules-amd@7.25.9': - resolution: {integrity: sha512-g5T11tnI36jVClQlMlt4qKDLlWnG5pP9CSM4GhdRciTNMRgkfpo5cR6b4rGIOYPgRRuFAvwjPQ/Yk+ql4dyhbw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-modules-commonjs@7.26.3': - resolution: {integrity: sha512-MgR55l4q9KddUDITEzEFYn5ZsGDXMSsU9E+kh7fjRXTIC3RHqfCo8RPRbyReYJh44HQ/yomFkqbOFohXvDCiIQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-modules-systemjs@7.25.9': - resolution: {integrity: sha512-hyss7iIlH/zLHaehT+xwiymtPOpsiwIIRlCAOwBB04ta5Tt+lNItADdlXw3jAWZ96VJ2jlhl/c+PNIQPKNfvcA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-modules-umd@7.25.9': - resolution: {integrity: sha512-bS9MVObUgE7ww36HEfwe6g9WakQ0KF07mQF74uuXdkoziUPfKyu/nIm663kz//e5O1nPInPFx36z7WJmJ4yNEw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-named-capturing-groups-regex@7.25.9': - resolution: {integrity: sha512-oqB6WHdKTGl3q/ItQhpLSnWWOpjUJLsOCLVyeFgeTktkBSCiurvPOsyt93gibI9CmuKvTUEtWmG5VhZD+5T/KA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - - '@babel/plugin-transform-new-target@7.25.9': - resolution: {integrity: sha512-U/3p8X1yCSoKyUj2eOBIx3FOn6pElFOKvAAGf8HTtItuPyB+ZeOqfn+mvTtg9ZlOAjsPdK3ayQEjqHjU/yLeVQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-nullish-coalescing-operator@7.26.6': - resolution: {integrity: sha512-CKW8Vu+uUZneQCPtXmSBUC6NCAUdya26hWCElAWh5mVSlSRsmiCPUUDKb3Z0szng1hiAJa098Hkhg9o4SE35Qw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-numeric-separator@7.25.9': - resolution: {integrity: sha512-TlprrJ1GBZ3r6s96Yq8gEQv82s8/5HnCVHtEJScUj90thHQbwe+E5MLhi2bbNHBEJuzrvltXSru+BUxHDoog7Q==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-object-rest-spread@7.25.9': - resolution: {integrity: sha512-fSaXafEE9CVHPweLYw4J0emp1t8zYTXyzN3UuG+lylqkvYd7RMrsOQ8TYx5RF231be0vqtFC6jnx3UmpJmKBYg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-object-super@7.25.9': - resolution: {integrity: sha512-Kj/Gh+Rw2RNLbCK1VAWj2U48yxxqL2x0k10nPtSdRa0O2xnHXalD0s+o1A6a0W43gJ00ANo38jxkQreckOzv5A==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-optional-catch-binding@7.25.9': - resolution: {integrity: sha512-qM/6m6hQZzDcZF3onzIhZeDHDO43bkNNlOX0i8n3lR6zLbu0GN2d8qfM/IERJZYauhAHSLHy39NF0Ctdvcid7g==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-optional-chaining@7.25.9': - resolution: {integrity: sha512-6AvV0FsLULbpnXeBjrY4dmWF8F7gf8QnvTEoO/wX/5xm/xE1Xo8oPuD3MPS+KS9f9XBEAWN7X1aWr4z9HdOr7A==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-parameters@7.25.9': - resolution: {integrity: sha512-wzz6MKwpnshBAiRmn4jR8LYz/g8Ksg0o80XmwZDlordjwEk9SxBzTWC7F5ef1jhbrbOW2DJ5J6ayRukrJmnr0g==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-private-methods@7.25.9': - resolution: {integrity: sha512-D/JUozNpQLAPUVusvqMxyvjzllRaF8/nSrP1s2YGQT/W4LHK4xxsMcHjhOGTS01mp9Hda8nswb+FblLdJornQw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-private-property-in-object@7.25.9': - resolution: {integrity: sha512-Evf3kcMqzXA3xfYJmZ9Pg1OvKdtqsDMSWBDzZOPLvHiTt36E75jLDQo5w1gtRU95Q4E5PDttrTf25Fw8d/uWLw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-property-literals@7.25.9': - resolution: {integrity: sha512-IvIUeV5KrS/VPavfSM/Iu+RE6llrHrYIKY1yfCzyO/lMXHQ+p7uGhonmGVisv6tSBSVgWzMBohTcvkC9vQcQFA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-regenerator@7.27.0': - resolution: {integrity: sha512-LX/vCajUJQDqE7Aum/ELUMZAY19+cDpghxrnyt5I1tV6X5PyC86AOoWXWFYFeIvauyeSA6/ktn4tQVn/3ZifsA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-regexp-modifiers@7.26.0': - resolution: {integrity: sha512-vN6saax7lrA2yA/Pak3sCxuD6F5InBjn9IcrIKQPjpsLvuHYLVroTxjdlVRHjjBWxKOqIwpTXDkOssYT4BFdRw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - - '@babel/plugin-transform-reserved-words@7.25.9': - resolution: {integrity: sha512-7DL7DKYjn5Su++4RXu8puKZm2XBPHyjWLUidaPEkCUBbE7IPcsrkRHggAOOKydH1dASWdcUBxrkOGNxUv5P3Jg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-shorthand-properties@7.25.9': - resolution: {integrity: sha512-MUv6t0FhO5qHnS/W8XCbHmiRWOphNufpE1IVxhK5kuN3Td9FT1x4rx4K42s3RYdMXCXpfWkGSbCSd0Z64xA7Ng==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-spread@7.25.9': - resolution: {integrity: sha512-oNknIB0TbURU5pqJFVbOOFspVlrpVwo2H1+HUIsVDvp5VauGGDP1ZEvO8Nn5xyMEs3dakajOxlmkNW7kNgSm6A==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-sticky-regex@7.25.9': - resolution: {integrity: sha512-WqBUSgeVwucYDP9U/xNRQam7xV8W5Zf+6Eo7T2SRVUFlhRiMNFdFz58u0KZmCVVqs2i7SHgpRnAhzRNmKfi2uA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-template-literals@7.26.8': - resolution: {integrity: sha512-OmGDL5/J0CJPJZTHZbi2XpO0tyT2Ia7fzpW5GURwdtp2X3fMmN8au/ej6peC/T33/+CRiIpA8Krse8hFGVmT5Q==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-typeof-symbol@7.27.0': - resolution: {integrity: sha512-+LLkxA9rKJpNoGsbLnAgOCdESl73vwYn+V6b+5wHbrE7OGKVDPHIQvbFSzqE6rwqaCw2RE+zdJrlLkcf8YOA0w==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-unicode-escapes@7.25.9': - resolution: {integrity: sha512-s5EDrE6bW97LtxOcGj1Khcx5AaXwiMmi4toFWRDP9/y0Woo6pXC+iyPu/KuhKtfSrNFd7jJB+/fkOtZy6aIC6Q==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-unicode-property-regex@7.25.9': - resolution: {integrity: sha512-Jt2d8Ga+QwRluxRQ307Vlxa6dMrYEMZCgGxoPR8V52rxPyldHu3hdlHspxaqYmE7oID5+kB+UKUB/eWS+DkkWg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-unicode-regex@7.25.9': - resolution: {integrity: sha512-yoxstj7Rg9dlNn9UQxzk4fcNivwv4nUYz7fYXBaKxvw/lnmPuOm/ikoELygbYq68Bls3D/D+NBPHiLwZdZZ4HA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-unicode-sets-regex@7.25.9': - resolution: {integrity: sha512-8BYqO3GeVNHtx69fdPshN3fnzUNLrWdHhk/icSwigksJGczKSizZ+Z6SBCxTs723Fr5VSNorTIK7a+R2tISvwQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - - '@babel/preset-env@7.26.9': - resolution: {integrity: sha512-vX3qPGE8sEKEAZCWk05k3cpTAE3/nOYca++JA+Rd0z2NCNzabmYvEiSShKzm10zdquOIAVXsy2Ei/DTW34KlKQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/preset-modules@0.1.6-no-external-plugins': - resolution: {integrity: sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==} - peerDependencies: - '@babel/core': ^7.0.0-0 || ^8.0.0-0 <8.0.0 - - '@babel/runtime@7.27.0': - resolution: {integrity: sha512-VtPOkrdPHZsKc/clNqyi9WUA8TINkZ4cGk63UUE3u4pmB2k+ZMQRDuIOagv8UVd6j7k0T3+RRIb7beKTebNbcw==} - engines: {node: '>=6.9.0'} - - '@babel/template@7.27.0': - resolution: {integrity: sha512-2ncevenBqXI6qRMukPlXwHKHchC7RyMuu4xv5JBXRfOGVcTy1mXCD12qrp7Jsoxll1EV3+9sE4GugBVRjT2jFA==} - engines: {node: '>=6.9.0'} - - '@babel/traverse@7.27.0': - resolution: {integrity: sha512-19lYZFzYVQkkHkl4Cy4WrAVcqBkgvV2YM2TU3xG6DIwO7O3ecbDPfW3yM3bjAGcqcQHi+CCtjMR3dIEHxsd6bA==} - engines: {node: '>=6.9.0'} - - '@babel/types@7.27.0': - resolution: {integrity: sha512-H45s8fVLYjbhFH62dIJ3WtmJ6RSPt/3DRO0ZcT2SUiYiQyz3BLVb9ADEnLl91m74aQPS3AzzeajZHYOalWe3bg==} - engines: {node: '>=6.9.0'} - - '@better-typescript-lib/decorators@2.11.0': - resolution: {integrity: sha512-ZL90jrzAhnvDr/fbpJt3CgGZdWvAeoAWznp56/mHJRKrCwsaJ9uCPqU09D21FJkWsmZ2jkz+mwBI9+e5dzwFvg==} - peerDependencies: - typescript: '>=4.5.2' - - '@better-typescript-lib/dom@2.11.0': - resolution: {integrity: sha512-tt0ZgcgxqwRL3oWa2xgtBnq7zJjBXqrtwQo6hvHEwsKNA5SD65FVrC+b1zTFTGvTLURGDIlq1kn3cB2quurVAA==} - peerDependencies: - typescript: '>=4.5.2' - - '@better-typescript-lib/es2015@2.11.0': - resolution: {integrity: sha512-Xtg8WhxWAvBawWBOsAF3XurOHa18A7nvqYdfGYz4EXfrDvw32nod6zjf0it7/sDwcGIcms6wyRZyLkI4RP7e8Q==} - peerDependencies: - typescript: '>=4.5.2' - - '@better-typescript-lib/es2016@2.11.0': - resolution: {integrity: sha512-RFLgskFU2rt/5esIcWibJu8n9a4EjmP6hCh5kqULb+w5J0eE9gXnhU6IZ685+spY2nPw991IYwnUP5idtfiGjQ==} - peerDependencies: - typescript: '>=4.5.2' - - '@better-typescript-lib/es2017@2.11.0': - resolution: {integrity: sha512-bgCJrI6h3d6jvZsnzsbdH7/HVAV2GYrbtiUnBxV/ZTJ+VDiHdSI8CvsjIAVYHmrzLDC7FBTU+B+O8YhQ+fsehA==} - peerDependencies: - typescript: '>=4.5.2' - - '@better-typescript-lib/es2018@2.11.0': - resolution: {integrity: sha512-8rwLcK9SqzO6bCsa6fQkCrYtFMAs8b5Oz+Rhuh/RmKD/Ja6XvkuXvsA8k+Zf6LjzEc/1aHk3ooQaoPeyh5wVIw==} - peerDependencies: - typescript: '>=4.5.2' - - '@better-typescript-lib/es2019@2.11.0': - resolution: {integrity: sha512-S16xjOz1GJ1N9c7cdk+jywkkKjagQI8ojP9wBABU4876rv6Ng64iYVBG6IOpPcQ3eSIbnWSZVk4h4kCyJt1sKA==} - peerDependencies: - typescript: '>=4.5.2' - - '@better-typescript-lib/es2020@2.11.0': - resolution: {integrity: sha512-TZMzKXvPXrxT25nhuA43uUbpBagwi5jjxfBcMPZQwbDfFAemO0oa96tQCw8L5oKxN/uxFLhRZuEwLRLVrtcjFw==} - peerDependencies: - typescript: '>=4.5.2' - - '@better-typescript-lib/es2021@2.11.0': - resolution: {integrity: sha512-TCc6rj/uj3SHO9SPmsUqT3uRuZgFF2+ZLsKmA6+vQZDDVBQnelQHuooUhUWz49dh9TzntEI46x+yXen+UHfBGw==} - peerDependencies: - typescript: '>=4.5.2' - - '@better-typescript-lib/es2022@2.11.0': - resolution: {integrity: sha512-Gu5MihDWyEgEd7gXXmMmh2lwyZDPlJIEU8v7Mfeqlk7BfYmS4Raww7f1WYGlXT01zAUELE9vOQdOb+jWG+9N1A==} - peerDependencies: - typescript: '>=4.5.2' - - '@better-typescript-lib/es2023@2.11.0': - resolution: {integrity: sha512-Ezo4X5hM5bZx9LTPwexvpn1dq+JO+Od6P661pVjMoFA1eUm13SxGox2YIeISFAnWmJyLrcA9ZDr9+1cYlbeZzA==} - peerDependencies: - typescript: '>=4.5.2' - - '@better-typescript-lib/es2024@2.11.0': - resolution: {integrity: sha512-1Gix0YIF/NkCid7W+/bOMivG3vIUYfOfpUNx94UDRmkTHTQa3/Vu/X2Mjes8Cu60fBhcfscMBC6QY0emStK79w==} - peerDependencies: - typescript: '>=4.5.2' - - '@better-typescript-lib/es5@2.11.0': - resolution: {integrity: sha512-Efdc4z0hL+HQvcKmsuKtypYcwREUjm1U17eE9J3oXQ2icjR6bAD5IEgFX2gSV2/Ad1KGeBS9gakLxYvDP1G0eQ==} - peerDependencies: - typescript: '>=4.5.2' - - '@better-typescript-lib/es6@2.11.0': - resolution: {integrity: sha512-zjl9jCTXwWx0QRSv5ILADM1wEgLq40VzBFURVHXg0D8LYv2KYVA7ICdcJZ2/DxoLhaukJm42mllRPjr/Bylw/A==} - peerDependencies: - typescript: '>=4.5.2' - - '@better-typescript-lib/esnext@2.11.0': - resolution: {integrity: sha512-NTWWr05QE2/oes0xEiy84on87gzzEWyk0vwPTVgcuWvgtBwDe9sIeGJQSO4vfc7ZP+s3FPBqeSPiAlB7rZi68w==} - peerDependencies: - typescript: '>=4.5.2' - - '@better-typescript-lib/scripthost@2.11.0': - resolution: {integrity: sha512-XwpujOfKtEn0oXodg8Rzm7ULu4OscK0l88ozWp4/q114k5vVd/1d90Q8nEIlB2RR8eqcGNkBG+Tcaj0qiaaJ1A==} - peerDependencies: - typescript: '>=4.5.2' - - '@better-typescript-lib/webworker@2.11.0': - resolution: {integrity: sha512-9jdYsSj7YWGixeVok7xZSV+OHpOxMBEcuw+zPHj2462LS812Xq2Vs5Kk00PoFjVXolgQm6naXDG1Wa+x445BPQ==} - peerDependencies: - typescript: '>=4.5.2' - - '@biomejs/biome@1.9.4': - resolution: {integrity: sha512-1rkd7G70+o9KkTn5KLmDYXihGoTaIGO9PIIN2ZB7UJxFrWw04CZHPYiMRjYsaDvVV7hP1dYNRLxSANLaBFGpog==} - engines: {node: '>=14.21.3'} - hasBin: true - - '@biomejs/cli-darwin-arm64@1.9.4': - resolution: {integrity: sha512-bFBsPWrNvkdKrNCYeAp+xo2HecOGPAy9WyNyB/jKnnedgzl4W4Hb9ZMzYNbf8dMCGmUdSavlYHiR01QaYR58cw==} - engines: {node: '>=14.21.3'} - cpu: [arm64] - os: [darwin] - - '@biomejs/cli-darwin-x64@1.9.4': - resolution: {integrity: sha512-ngYBh/+bEedqkSevPVhLP4QfVPCpb+4BBe2p7Xs32dBgs7rh9nY2AIYUL6BgLw1JVXV8GlpKmb/hNiuIxfPfZg==} - engines: {node: '>=14.21.3'} - cpu: [x64] - os: [darwin] - - '@biomejs/cli-linux-arm64-musl@1.9.4': - resolution: {integrity: sha512-v665Ct9WCRjGa8+kTr0CzApU0+XXtRgwmzIf1SeKSGAv+2scAlW6JR5PMFo6FzqqZ64Po79cKODKf3/AAmECqA==} - engines: {node: '>=14.21.3'} - cpu: [arm64] - os: [linux] - - '@biomejs/cli-linux-arm64@1.9.4': - resolution: {integrity: sha512-fJIW0+LYujdjUgJJuwesP4EjIBl/N/TcOX3IvIHJQNsAqvV2CHIogsmA94BPG6jZATS4Hi+xv4SkBBQSt1N4/g==} - engines: {node: '>=14.21.3'} - cpu: [arm64] - os: [linux] - - '@biomejs/cli-linux-x64-musl@1.9.4': - resolution: {integrity: sha512-gEhi/jSBhZ2m6wjV530Yy8+fNqG8PAinM3oV7CyO+6c3CEh16Eizm21uHVsyVBEB6RIM8JHIl6AGYCv6Q6Q9Tg==} - engines: {node: '>=14.21.3'} - cpu: [x64] - os: [linux] - - '@biomejs/cli-linux-x64@1.9.4': - resolution: {integrity: sha512-lRCJv/Vi3Vlwmbd6K+oQ0KhLHMAysN8lXoCI7XeHlxaajk06u7G+UsFSO01NAs5iYuWKmVZjmiOzJ0OJmGsMwg==} - engines: {node: '>=14.21.3'} - cpu: [x64] - os: [linux] - - '@biomejs/cli-win32-arm64@1.9.4': - resolution: {integrity: sha512-tlbhLk+WXZmgwoIKwHIHEBZUwxml7bRJgk0X2sPyNR3S93cdRq6XulAZRQJ17FYGGzWne0fgrXBKpl7l4M87Hg==} - engines: {node: '>=14.21.3'} - cpu: [arm64] - os: [win32] - - '@biomejs/cli-win32-x64@1.9.4': - resolution: {integrity: sha512-8Y5wMhVIPaWe6jw2H+KlEm4wP/f7EW3810ZLmDlrEEy5KvBsb9ECEfu/kMWD484ijfQ8+nIi0giMgu9g1UAuuA==} - engines: {node: '>=14.21.3'} - cpu: [x64] - os: [win32] - - '@bufbuild/protobuf@2.2.5': - resolution: {integrity: sha512-/g5EzJifw5GF8aren8wZ/G5oMuPoGeS6MQD3ca8ddcvdXR5UELUfdTZITCGNhNXynY/AYl3Z4plmxdj/tRl/hQ==} - - '@csstools/css-parser-algorithms@3.0.4': - resolution: {integrity: sha512-Up7rBoV77rv29d3uKHUIVubz1BTcgyUK72IvCQAbfbMv584xHcGKCKbWh7i8hPrRJ7qU4Y8IO3IY9m+iTB7P3A==} - engines: {node: '>=18'} - peerDependencies: - '@csstools/css-tokenizer': ^3.0.3 - - '@csstools/css-tokenizer@3.0.3': - resolution: {integrity: sha512-UJnjoFsmxfKUdNYdWgOB0mWUypuLvAfQPH1+pyvRJs6euowbFkFC6P13w1l8mJyi3vxYMxc9kld5jZEGRQs6bw==} - engines: {node: '>=18'} - - '@csstools/media-query-list-parser@3.0.1': - resolution: {integrity: sha512-HNo8gGD02kHmcbX6PvCoUuOQvn4szyB9ca63vZHKX5A81QytgDG4oxG4IaEfHTlEZSZ6MjPEMWIVU+zF2PZcgw==} - engines: {node: '>=18'} - peerDependencies: - '@csstools/css-parser-algorithms': ^3.0.1 - '@csstools/css-tokenizer': ^3.0.1 - - '@csstools/media-query-list-parser@4.0.2': - resolution: {integrity: sha512-EUos465uvVvMJehckATTlNqGj4UJWkTmdWuDMjqvSUkjGpmOyFZBVwb4knxCm/k2GMTXY+c/5RkdndzFYWeX5A==} - engines: {node: '>=18'} - peerDependencies: - '@csstools/css-parser-algorithms': ^3.0.4 - '@csstools/css-tokenizer': ^3.0.3 - - '@csstools/selector-specificity@5.0.0': - resolution: {integrity: sha512-PCqQV3c4CoVm3kdPhyeZ07VmBRdH2EpMFA/pd9OASpOEC3aXNGoqPDAZ80D0cLpMBxnmk0+yNhGsEx31hq7Gtw==} - engines: {node: '>=18'} - peerDependencies: - postcss-selector-parser: ^7.0.0 - - '@dual-bundle/import-meta-resolve@4.1.0': - resolution: {integrity: sha512-+nxncfwHM5SgAtrVzgpzJOI1ol0PkumhVo469KCf9lUi21IGcY90G98VuHm9VRrUypmAzawAHO9bs6hqeADaVg==} - - '@esbuild/aix-ppc64@0.25.3': - resolution: {integrity: sha512-W8bFfPA8DowP8l//sxjJLSLkD8iEjMc7cBVyP+u4cEv9sM7mdUCkgsj+t0n/BWPFtv7WWCN5Yzj0N6FJNUUqBQ==} - engines: {node: '>=18'} - cpu: [ppc64] - os: [aix] - - '@esbuild/android-arm64@0.25.3': - resolution: {integrity: sha512-XelR6MzjlZuBM4f5z2IQHK6LkK34Cvv6Rj2EntER3lwCBFdg6h2lKbtRjpTTsdEjD/WSe1q8UyPBXP1x3i/wYQ==} - engines: {node: '>=18'} - cpu: [arm64] - os: [android] - - '@esbuild/android-arm@0.25.3': - resolution: {integrity: sha512-PuwVXbnP87Tcff5I9ngV0lmiSu40xw1At6i3GsU77U7cjDDB4s0X2cyFuBiDa1SBk9DnvWwnGvVaGBqoFWPb7A==} - engines: {node: '>=18'} - cpu: [arm] - os: [android] - - '@esbuild/android-x64@0.25.3': - resolution: {integrity: sha512-ogtTpYHT/g1GWS/zKM0cc/tIebFjm1F9Aw1boQ2Y0eUQ+J89d0jFY//s9ei9jVIlkYi8AfOjiixcLJSGNSOAdQ==} - engines: {node: '>=18'} - cpu: [x64] - os: [android] - - '@esbuild/darwin-arm64@0.25.3': - resolution: {integrity: sha512-eESK5yfPNTqpAmDfFWNsOhmIOaQA59tAcF/EfYvo5/QWQCzXn5iUSOnqt3ra3UdzBv073ykTtmeLJZGt3HhA+w==} - engines: {node: '>=18'} - cpu: [arm64] - os: [darwin] - - '@esbuild/darwin-x64@0.25.3': - resolution: {integrity: sha512-Kd8glo7sIZtwOLcPbW0yLpKmBNWMANZhrC1r6K++uDR2zyzb6AeOYtI6udbtabmQpFaxJ8uduXMAo1gs5ozz8A==} - engines: {node: '>=18'} - cpu: [x64] - os: [darwin] - - '@esbuild/freebsd-arm64@0.25.3': - resolution: {integrity: sha512-EJiyS70BYybOBpJth3M0KLOus0n+RRMKTYzhYhFeMwp7e/RaajXvP+BWlmEXNk6uk+KAu46j/kaQzr6au+JcIw==} - engines: {node: '>=18'} - cpu: [arm64] - os: [freebsd] - - '@esbuild/freebsd-x64@0.25.3': - resolution: {integrity: sha512-Q+wSjaLpGxYf7zC0kL0nDlhsfuFkoN+EXrx2KSB33RhinWzejOd6AvgmP5JbkgXKmjhmpfgKZq24pneodYqE8Q==} - engines: {node: '>=18'} - cpu: [x64] - os: [freebsd] - - '@esbuild/linux-arm64@0.25.3': - resolution: {integrity: sha512-xCUgnNYhRD5bb1C1nqrDV1PfkwgbswTTBRbAd8aH5PhYzikdf/ddtsYyMXFfGSsb/6t6QaPSzxtbfAZr9uox4A==} - engines: {node: '>=18'} - cpu: [arm64] - os: [linux] - - '@esbuild/linux-arm@0.25.3': - resolution: {integrity: sha512-dUOVmAUzuHy2ZOKIHIKHCm58HKzFqd+puLaS424h6I85GlSDRZIA5ycBixb3mFgM0Jdh+ZOSB6KptX30DD8YOQ==} - engines: {node: '>=18'} - cpu: [arm] - os: [linux] - - '@esbuild/linux-ia32@0.25.3': - resolution: {integrity: sha512-yplPOpczHOO4jTYKmuYuANI3WhvIPSVANGcNUeMlxH4twz/TeXuzEP41tGKNGWJjuMhotpGabeFYGAOU2ummBw==} - engines: {node: '>=18'} - cpu: [ia32] - os: [linux] - - '@esbuild/linux-loong64@0.25.3': - resolution: {integrity: sha512-P4BLP5/fjyihmXCELRGrLd793q/lBtKMQl8ARGpDxgzgIKJDRJ/u4r1A/HgpBpKpKZelGct2PGI4T+axcedf6g==} - engines: {node: '>=18'} - cpu: [loong64] - os: [linux] - - '@esbuild/linux-mips64el@0.25.3': - resolution: {integrity: sha512-eRAOV2ODpu6P5divMEMa26RRqb2yUoYsuQQOuFUexUoQndm4MdpXXDBbUoKIc0iPa4aCO7gIhtnYomkn2x+bag==} - engines: {node: '>=18'} - cpu: [mips64el] - os: [linux] - - '@esbuild/linux-ppc64@0.25.3': - resolution: {integrity: sha512-ZC4jV2p7VbzTlnl8nZKLcBkfzIf4Yad1SJM4ZMKYnJqZFD4rTI+pBG65u8ev4jk3/MPwY9DvGn50wi3uhdaghg==} - engines: {node: '>=18'} - cpu: [ppc64] - os: [linux] - - '@esbuild/linux-riscv64@0.25.3': - resolution: {integrity: sha512-LDDODcFzNtECTrUUbVCs6j9/bDVqy7DDRsuIXJg6so+mFksgwG7ZVnTruYi5V+z3eE5y+BJZw7VvUadkbfg7QA==} - engines: {node: '>=18'} - cpu: [riscv64] - os: [linux] - - '@esbuild/linux-s390x@0.25.3': - resolution: {integrity: sha512-s+w/NOY2k0yC2p9SLen+ymflgcpRkvwwa02fqmAwhBRI3SC12uiS10edHHXlVWwfAagYSY5UpmT/zISXPMW3tQ==} - engines: {node: '>=18'} - cpu: [s390x] - os: [linux] - - '@esbuild/linux-x64@0.25.3': - resolution: {integrity: sha512-nQHDz4pXjSDC6UfOE1Fw9Q8d6GCAd9KdvMZpfVGWSJztYCarRgSDfOVBY5xwhQXseiyxapkiSJi/5/ja8mRFFA==} - engines: {node: '>=18'} - cpu: [x64] - os: [linux] - - '@esbuild/netbsd-arm64@0.25.3': - resolution: {integrity: sha512-1QaLtOWq0mzK6tzzp0jRN3eccmN3hezey7mhLnzC6oNlJoUJz4nym5ZD7mDnS/LZQgkrhEbEiTn515lPeLpgWA==} - engines: {node: '>=18'} - cpu: [arm64] - os: [netbsd] - - '@esbuild/netbsd-x64@0.25.3': - resolution: {integrity: sha512-i5Hm68HXHdgv8wkrt+10Bc50zM0/eonPb/a/OFVfB6Qvpiirco5gBA5bz7S2SHuU+Y4LWn/zehzNX14Sp4r27g==} - engines: {node: '>=18'} - cpu: [x64] - os: [netbsd] - - '@esbuild/openbsd-arm64@0.25.3': - resolution: {integrity: sha512-zGAVApJEYTbOC6H/3QBr2mq3upG/LBEXr85/pTtKiv2IXcgKV0RT0QA/hSXZqSvLEpXeIxah7LczB4lkiYhTAQ==} - engines: {node: '>=18'} - cpu: [arm64] - os: [openbsd] - - '@esbuild/openbsd-x64@0.25.3': - resolution: {integrity: sha512-fpqctI45NnCIDKBH5AXQBsD0NDPbEFczK98hk/aa6HJxbl+UtLkJV2+Bvy5hLSLk3LHmqt0NTkKNso1A9y1a4w==} - engines: {node: '>=18'} - cpu: [x64] - os: [openbsd] - - '@esbuild/sunos-x64@0.25.3': - resolution: {integrity: sha512-ROJhm7d8bk9dMCUZjkS8fgzsPAZEjtRJqCAmVgB0gMrvG7hfmPmz9k1rwO4jSiblFjYmNvbECL9uhaPzONMfgA==} - engines: {node: '>=18'} - cpu: [x64] - os: [sunos] - - '@esbuild/win32-arm64@0.25.3': - resolution: {integrity: sha512-YWcow8peiHpNBiIXHwaswPnAXLsLVygFwCB3A7Bh5jRkIBFWHGmNQ48AlX4xDvQNoMZlPYzjVOQDYEzWCqufMQ==} - engines: {node: '>=18'} - cpu: [arm64] - os: [win32] - - '@esbuild/win32-ia32@0.25.3': - resolution: {integrity: sha512-qspTZOIGoXVS4DpNqUYUs9UxVb04khS1Degaw/MnfMe7goQ3lTfQ13Vw4qY/Nj0979BGvMRpAYbs/BAxEvU8ew==} - engines: {node: '>=18'} - cpu: [ia32] - os: [win32] - - '@esbuild/win32-x64@0.25.3': - resolution: {integrity: sha512-ICgUR+kPimx0vvRzf+N/7L7tVSQeE3BYY+NhHRHXS1kBuPO7z2+7ea2HbhDyZdTephgvNvKrlDDKUexuCVBVvg==} - engines: {node: '>=18'} - cpu: [x64] - os: [win32] - - '@eslint-community/eslint-utils@4.6.1': - resolution: {integrity: sha512-KTsJMmobmbrFLe3LDh0PC2FXpcSYJt/MLjlkh/9LEnmKYLSYmT/0EW9JWANjeoemiuZrmogti0tW5Ch+qNUYDw==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - peerDependencies: - eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 - - '@eslint-community/regexpp@4.12.1': - resolution: {integrity: sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==} - engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} - - '@eslint/config-array@0.20.0': - resolution: {integrity: sha512-fxlS1kkIjx8+vy2SjuCB94q3htSNrufYTXubwiBFeaQHbH6Ipi43gFJq2zCMt6PHhImH3Xmr0NksKDvchWlpQQ==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - - '@eslint/config-helpers@0.2.1': - resolution: {integrity: sha512-RI17tsD2frtDu/3dmI7QRrD4bedNKPM08ziRYaC5AhkGrzIAJelm9kJU1TznK+apx6V+cqRz8tfpEeG3oIyjxw==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - - '@eslint/core@0.13.0': - resolution: {integrity: sha512-yfkgDw1KR66rkT5A8ci4irzDysN7FRpq3ttJolR88OqQikAWqwA8j5VZyas+vjyBNFIJ7MfybJ9plMILI2UrCw==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - - '@eslint/eslintrc@3.3.1': - resolution: {integrity: sha512-gtF186CXhIl1p4pJNGZw8Yc6RlshoePRvE0X91oPGb3vZ8pM3qOS9W9NGPat9LziaBV7XrJWGylNQXkGcnM3IQ==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - - '@eslint/js@9.25.1': - resolution: {integrity: sha512-dEIwmjntEx8u3Uvv+kr3PDeeArL8Hw07H9kyYxCjnM9pBjfEhk6uLXSchxxzgiwtRhhzVzqmUSDFBOi1TuZ7qg==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - - '@eslint/object-schema@2.1.6': - resolution: {integrity: sha512-RBMg5FRL0I0gs51M/guSAj5/e14VQ4tpZnQNWwuDT66P14I43ItmPfIZRhO9fUVIPOAQXU47atlywZ/czoqFPA==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - - '@eslint/plugin-kit@0.2.8': - resolution: {integrity: sha512-ZAoA40rNMPwSm+AeHpCq8STiNAwzWLJuP8Xv4CHIc9wv/PSuExjMrmjfYNj682vW0OOiZ1HKxzvjQr9XZIisQA==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - - '@humanfs/core@0.19.1': - resolution: {integrity: sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==} - engines: {node: '>=18.18.0'} - - '@humanfs/node@0.16.6': - resolution: {integrity: sha512-YuI2ZHQL78Q5HbhDiBA1X4LmYdXCKCMQIfw0pw7piHJwyREFebJUvrQN4cMssyES6x+vfUbx1CIpaQUKYdQZOw==} - engines: {node: '>=18.18.0'} - - '@humanwhocodes/module-importer@1.0.1': - resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==} - engines: {node: '>=12.22'} - - '@humanwhocodes/retry@0.3.1': - resolution: {integrity: sha512-JBxkERygn7Bv/GbN5Rv8Ul6LVknS+5Bp6RgDC/O8gEBU/yeH5Ui5C/OlWrTb6qct7LjjfT6Re2NxB0ln0yYybA==} - engines: {node: '>=18.18'} - - '@humanwhocodes/retry@0.4.2': - resolution: {integrity: sha512-xeO57FpIu4p1Ri3Jq/EXq4ClRm86dVF2z/+kvFnyqVYRavTZmaFaUBbWCOuuTh0o/g7DSsk6kc2vrS4Vl5oPOQ==} - engines: {node: '>=18.18'} - - '@jridgewell/gen-mapping@0.3.8': - resolution: {integrity: sha512-imAbBGkb+ebQyxKgzv5Hu2nmROxoDOXHh80evxdoXNOrvAnVx7zimzc1Oo5h9RlfV4vPXaE2iM5pOFbvOCClWA==} - engines: {node: '>=6.0.0'} - - '@jridgewell/resolve-uri@3.1.2': - resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==} - engines: {node: '>=6.0.0'} - - '@jridgewell/set-array@1.2.1': - resolution: {integrity: sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==} - engines: {node: '>=6.0.0'} - - '@jridgewell/source-map@0.3.6': - resolution: {integrity: sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ==} - - '@jridgewell/sourcemap-codec@1.5.0': - resolution: {integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==} - - '@jridgewell/trace-mapping@0.3.25': - resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==} - - '@keyv/serialize@1.0.3': - resolution: {integrity: sha512-qnEovoOp5Np2JDGonIDL6Ayihw0RhnRh6vxPuHo4RDn1UOzwEo4AeIfpL6UGIrsceWrCMiVPgwRjbHu4vYFc3g==} - - '@mobily/ts-belt@4.0.0-rc.5': - resolution: {integrity: sha512-HLWJ8yKrfwdMzCvckRunrAL8Z+K5q31FdY6JzhkBp8o6uQsVuzf26KFyno1s6n6GB78OJEsjs57SaDk9plsJhA==} - engines: {node: '>= 10.*'} - - '@napi-rs/nice-android-arm-eabi@1.0.1': - resolution: {integrity: sha512-5qpvOu5IGwDo7MEKVqqyAxF90I6aLj4n07OzpARdgDRfz8UbBztTByBp0RC59r3J1Ij8uzYi6jI7r5Lws7nn6w==} - engines: {node: '>= 10'} - cpu: [arm] - os: [android] - - '@napi-rs/nice-android-arm64@1.0.1': - resolution: {integrity: sha512-GqvXL0P8fZ+mQqG1g0o4AO9hJjQaeYG84FRfZaYjyJtZZZcMjXW5TwkL8Y8UApheJgyE13TQ4YNUssQaTgTyvA==} - engines: {node: '>= 10'} - cpu: [arm64] - os: [android] - - '@napi-rs/nice-darwin-arm64@1.0.1': - resolution: {integrity: sha512-91k3HEqUl2fsrz/sKkuEkscj6EAj3/eZNCLqzD2AA0TtVbkQi8nqxZCZDMkfklULmxLkMxuUdKe7RvG/T6s2AA==} - engines: {node: '>= 10'} - cpu: [arm64] - os: [darwin] - - '@napi-rs/nice-darwin-x64@1.0.1': - resolution: {integrity: sha512-jXnMleYSIR/+TAN/p5u+NkCA7yidgswx5ftqzXdD5wgy/hNR92oerTXHc0jrlBisbd7DpzoaGY4cFD7Sm5GlgQ==} - engines: {node: '>= 10'} - cpu: [x64] - os: [darwin] - - '@napi-rs/nice-freebsd-x64@1.0.1': - resolution: {integrity: sha512-j+iJ/ezONXRQsVIB/FJfwjeQXX7A2tf3gEXs4WUGFrJjpe/z2KB7sOv6zpkm08PofF36C9S7wTNuzHZ/Iiccfw==} - engines: {node: '>= 10'} - cpu: [x64] - os: [freebsd] - - '@napi-rs/nice-linux-arm-gnueabihf@1.0.1': - resolution: {integrity: sha512-G8RgJ8FYXYkkSGQwywAUh84m946UTn6l03/vmEXBYNJxQJcD+I3B3k5jmjFG/OPiU8DfvxutOP8bi+F89MCV7Q==} - engines: {node: '>= 10'} - cpu: [arm] - os: [linux] - - '@napi-rs/nice-linux-arm64-gnu@1.0.1': - resolution: {integrity: sha512-IMDak59/W5JSab1oZvmNbrms3mHqcreaCeClUjwlwDr0m3BoR09ZiN8cKFBzuSlXgRdZ4PNqCYNeGQv7YMTjuA==} - engines: {node: '>= 10'} - cpu: [arm64] - os: [linux] - - '@napi-rs/nice-linux-arm64-musl@1.0.1': - resolution: {integrity: sha512-wG8fa2VKuWM4CfjOjjRX9YLIbysSVV1S3Kgm2Fnc67ap/soHBeYZa6AGMeR5BJAylYRjnoVOzV19Cmkco3QEPw==} - engines: {node: '>= 10'} - cpu: [arm64] - os: [linux] - - '@napi-rs/nice-linux-ppc64-gnu@1.0.1': - resolution: {integrity: sha512-lxQ9WrBf0IlNTCA9oS2jg/iAjQyTI6JHzABV664LLrLA/SIdD+I1i3Mjf7TsnoUbgopBcCuDztVLfJ0q9ubf6Q==} - engines: {node: '>= 10'} - cpu: [ppc64] - os: [linux] - - '@napi-rs/nice-linux-riscv64-gnu@1.0.1': - resolution: {integrity: sha512-3xs69dO8WSWBb13KBVex+yvxmUeEsdWexxibqskzoKaWx9AIqkMbWmE2npkazJoopPKX2ULKd8Fm9veEn0g4Ig==} - engines: {node: '>= 10'} - cpu: [riscv64] - os: [linux] - - '@napi-rs/nice-linux-s390x-gnu@1.0.1': - resolution: {integrity: sha512-lMFI3i9rlW7hgToyAzTaEybQYGbQHDrpRkg+1gJWEpH0PLAQoZ8jiY0IzakLfNWnVda1eTYYlxxFYzW8Rqczkg==} - engines: {node: '>= 10'} - cpu: [s390x] - os: [linux] - - '@napi-rs/nice-linux-x64-gnu@1.0.1': - resolution: {integrity: sha512-XQAJs7DRN2GpLN6Fb+ZdGFeYZDdGl2Fn3TmFlqEL5JorgWKrQGRUrpGKbgZ25UeZPILuTKJ+OowG2avN8mThBA==} - engines: {node: '>= 10'} - cpu: [x64] - os: [linux] - - '@napi-rs/nice-linux-x64-musl@1.0.1': - resolution: {integrity: sha512-/rodHpRSgiI9o1faq9SZOp/o2QkKQg7T+DK0R5AkbnI/YxvAIEHf2cngjYzLMQSQgUhxym+LFr+UGZx4vK4QdQ==} - engines: {node: '>= 10'} - cpu: [x64] - os: [linux] - - '@napi-rs/nice-win32-arm64-msvc@1.0.1': - resolution: {integrity: sha512-rEcz9vZymaCB3OqEXoHnp9YViLct8ugF+6uO5McifTedjq4QMQs3DHz35xBEGhH3gJWEsXMUbzazkz5KNM5YUg==} - engines: {node: '>= 10'} - cpu: [arm64] - os: [win32] - - '@napi-rs/nice-win32-ia32-msvc@1.0.1': - resolution: {integrity: sha512-t7eBAyPUrWL8su3gDxw9xxxqNwZzAqKo0Szv3IjVQd1GpXXVkb6vBBQUuxfIYaXMzZLwlxRQ7uzM2vdUE9ULGw==} - engines: {node: '>= 10'} - cpu: [ia32] - os: [win32] - - '@napi-rs/nice-win32-x64-msvc@1.0.1': - resolution: {integrity: sha512-JlF+uDcatt3St2ntBG8H02F1mM45i5SF9W+bIKiReVE6wiy3o16oBP/yxt+RZ+N6LbCImJXJ6bXNO2kn9AXicg==} - engines: {node: '>= 10'} - cpu: [x64] - os: [win32] - - '@napi-rs/nice@1.0.1': - resolution: {integrity: sha512-zM0mVWSXE0a0h9aKACLwKmD6nHcRiKrPpCfvaKqG1CqDEyjEawId0ocXxVzPMCAm6kkWr2P025msfxXEnt8UGQ==} - engines: {node: '>= 10'} - - '@nodelib/fs.scandir@2.1.5': - resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} - engines: {node: '>= 8'} - - '@nodelib/fs.stat@2.0.5': - resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==} - engines: {node: '>= 8'} - - '@nodelib/fs.walk@1.2.8': - resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} - engines: {node: '>= 8'} - - '@oxlint/darwin-arm64@0.16.7': - resolution: {integrity: sha512-VeWa9qDieR8TsjCLlQ9t0IkFQru3VSv5fwiNzqA14OKosTunFbAp0qaN4kw7bbwdtaVojwg7p0kKKX7TToyHrA==} - cpu: [arm64] - os: [darwin] - - '@oxlint/darwin-x64@0.16.7': - resolution: {integrity: sha512-uFRVF91sKIaXAYvJuAwj2t66IW11AmQZlAf1zIAymTZkFg513y7t92SAAPQEE131RU1WF/jKkrBv6kZyiFKddw==} - cpu: [x64] - os: [darwin] - - '@oxlint/linux-arm64-gnu@0.16.7': - resolution: {integrity: sha512-4wdrsLT8QE/89ln3WfsfLVvh+FqhDuzNTw2tiV8BNhJRORjenmNH8oX8NAvDXkA2OL/SIQ9YmFrPdh9MLdCPXA==} - cpu: [arm64] - os: [linux] - - '@oxlint/linux-arm64-musl@0.16.7': - resolution: {integrity: sha512-2zC+9HrZ8Cc0w9fdrnFSmLizommZqgzFbWK7PpmNUdvcULT/NFCUA/RVfsxxEcwBCNiEcnay4xTbXnI2UUPXQA==} - cpu: [arm64] - os: [linux] - - '@oxlint/linux-x64-gnu@0.16.7': - resolution: {integrity: sha512-6w7H+deX+5Y6J3mcjOTrnKTY5i/EV2O/2+U3GblOFov101W4KV1IFhkKjuHl+JvIFRi364ns98fOQNr9gk+Wsw==} - cpu: [x64] - os: [linux] - - '@oxlint/linux-x64-musl@0.16.7': - resolution: {integrity: sha512-zFwBAzefgZNL2gQnQwiFnVmhPKXlIBp1ETjNarja56oWPUeWCwVvls1MQAvNgPjHDVdS40Vnka0DOHUelQk67Q==} - cpu: [x64] - os: [linux] - - '@oxlint/win32-arm64@0.16.7': - resolution: {integrity: sha512-ORQS2kw73Pqn8jE0oXlTol4W9KU+83aBQ0DMRg8vCl7ghhZ3BbJl87K3C+A5eGaH7wDHj/f8WtAgW6y460JtjQ==} - cpu: [arm64] - os: [win32] - - '@oxlint/win32-x64@0.16.7': - resolution: {integrity: sha512-kUGut1deJm9JnKK1mYP+5F2QaxL7yY0Z0yiSGkLHjhwuYSkpprb9z/PePcTsu2yhs4fDtOriDxT8fUZEu8xvhQ==} - cpu: [x64] - os: [win32] - - '@parcel/watcher-android-arm64@2.5.1': - resolution: {integrity: sha512-KF8+j9nNbUN8vzOFDpRMsaKBHZ/mcjEjMToVMJOhTozkDonQFFrRcfdLWn6yWKCmJKmdVxSgHiYvTCef4/qcBA==} - engines: {node: '>= 10.0.0'} - cpu: [arm64] - os: [android] - - '@parcel/watcher-darwin-arm64@2.5.1': - resolution: {integrity: sha512-eAzPv5osDmZyBhou8PoF4i6RQXAfeKL9tjb3QzYuccXFMQU0ruIc/POh30ePnaOyD1UXdlKguHBmsTs53tVoPw==} - engines: {node: '>= 10.0.0'} - cpu: [arm64] - os: [darwin] - - '@parcel/watcher-darwin-x64@2.5.1': - resolution: {integrity: sha512-1ZXDthrnNmwv10A0/3AJNZ9JGlzrF82i3gNQcWOzd7nJ8aj+ILyW1MTxVk35Db0u91oD5Nlk9MBiujMlwmeXZg==} - engines: {node: '>= 10.0.0'} - cpu: [x64] - os: [darwin] - - '@parcel/watcher-freebsd-x64@2.5.1': - resolution: {integrity: sha512-SI4eljM7Flp9yPuKi8W0ird8TI/JK6CSxju3NojVI6BjHsTyK7zxA9urjVjEKJ5MBYC+bLmMcbAWlZ+rFkLpJQ==} - engines: {node: '>= 10.0.0'} - cpu: [x64] - os: [freebsd] - - '@parcel/watcher-linux-arm-glibc@2.5.1': - resolution: {integrity: sha512-RCdZlEyTs8geyBkkcnPWvtXLY44BCeZKmGYRtSgtwwnHR4dxfHRG3gR99XdMEdQ7KeiDdasJwwvNSF5jKtDwdA==} - engines: {node: '>= 10.0.0'} - cpu: [arm] - os: [linux] - - '@parcel/watcher-linux-arm-musl@2.5.1': - resolution: {integrity: sha512-6E+m/Mm1t1yhB8X412stiKFG3XykmgdIOqhjWj+VL8oHkKABfu/gjFj8DvLrYVHSBNC+/u5PeNrujiSQ1zwd1Q==} - engines: {node: '>= 10.0.0'} - cpu: [arm] - os: [linux] - - '@parcel/watcher-linux-arm64-glibc@2.5.1': - resolution: {integrity: sha512-LrGp+f02yU3BN9A+DGuY3v3bmnFUggAITBGriZHUREfNEzZh/GO06FF5u2kx8x+GBEUYfyTGamol4j3m9ANe8w==} - engines: {node: '>= 10.0.0'} - cpu: [arm64] - os: [linux] - - '@parcel/watcher-linux-arm64-musl@2.5.1': - resolution: {integrity: sha512-cFOjABi92pMYRXS7AcQv9/M1YuKRw8SZniCDw0ssQb/noPkRzA+HBDkwmyOJYp5wXcsTrhxO0zq1U11cK9jsFg==} - engines: {node: '>= 10.0.0'} - cpu: [arm64] - os: [linux] - - '@parcel/watcher-linux-x64-glibc@2.5.1': - resolution: {integrity: sha512-GcESn8NZySmfwlTsIur+49yDqSny2IhPeZfXunQi48DMugKeZ7uy1FX83pO0X22sHntJ4Ub+9k34XQCX+oHt2A==} - engines: {node: '>= 10.0.0'} - cpu: [x64] - os: [linux] - - '@parcel/watcher-linux-x64-musl@2.5.1': - resolution: {integrity: sha512-n0E2EQbatQ3bXhcH2D1XIAANAcTZkQICBPVaxMeaCVBtOpBZpWJuf7LwyWPSBDITb7In8mqQgJ7gH8CILCURXg==} - engines: {node: '>= 10.0.0'} - cpu: [x64] - os: [linux] - - '@parcel/watcher-win32-arm64@2.5.1': - resolution: {integrity: sha512-RFzklRvmc3PkjKjry3hLF9wD7ppR4AKcWNzH7kXR7GUe0Igb3Nz8fyPwtZCSquGrhU5HhUNDr/mKBqj7tqA2Vw==} - engines: {node: '>= 10.0.0'} - cpu: [arm64] - os: [win32] - - '@parcel/watcher-win32-ia32@2.5.1': - resolution: {integrity: sha512-c2KkcVN+NJmuA7CGlaGD1qJh1cLfDnQsHjE89E60vUEMlqduHGCdCLJCID5geFVM0dOtA3ZiIO8BoEQmzQVfpQ==} - engines: {node: '>= 10.0.0'} - cpu: [ia32] - os: [win32] - - '@parcel/watcher-win32-x64@2.5.1': - resolution: {integrity: sha512-9lHBdJITeNR++EvSQVUcaZoWupyHfXe1jZvGZ06O/5MflPcuPLtEphScIBL+AiCWBO46tDSHzWyD0uDmmZqsgA==} - engines: {node: '>= 10.0.0'} - cpu: [x64] - os: [win32] - - '@parcel/watcher@2.5.1': - resolution: {integrity: sha512-dfUnCxiN9H4ap84DvD2ubjw+3vUNpstxa0TneY/Paat8a3R4uQZDLSvWjmznAY/DoahqTHl9V46HF/Zs3F29pg==} - engines: {node: '>= 10.0.0'} - - '@prettier/plugin-php@0.22.4': - resolution: {integrity: sha512-uZWqfyrwsxScIYkmVcfnoQGFmKVMXTHD5pqYT4l8fxzm5P3XY94hTPbf8X6TFCi2QTZBIot7GS8lfIjQjldc2g==} - peerDependencies: - prettier: ^3.0.0 - - '@prettier/plugin-xml@3.4.1': - resolution: {integrity: sha512-Uf/6/+9ez6z/IvZErgobZ2G9n1ybxF5BhCd7eMcKqfoWuOzzNUxBipNo3QAP8kRC1VD18TIo84no7LhqtyDcTg==} - peerDependencies: - prettier: ^3.0.0 - - '@reteps/dockerfmt@0.3.6': - resolution: {integrity: sha512-Tb5wIMvBf/nLejTQ61krK644/CEMB/cpiaIFXqGApfGqO3GwcR3qnI0DbmkFVCl2OyEp8LnLX3EkucoL0+tbFg==} - engines: {node: ^v12.20.0 || ^14.13.0 || >=16.0.0} - - '@rollup/plugin-inject@5.0.5': - resolution: {integrity: sha512-2+DEJbNBoPROPkgTDNe8/1YXWcqxbN5DTjASVIOx8HS+pITXushyNiBV56RB08zuptzz8gT3YfkqriTBVycepg==} - engines: {node: '>=14.0.0'} - peerDependencies: - rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 - peerDependenciesMeta: - rollup: - optional: true - - '@rollup/pluginutils@5.1.4': - resolution: {integrity: sha512-USm05zrsFxYLPdWWq+K3STlWiT/3ELn3RcV5hJMghpeAIhxfsUIg6mt12CBJBInWMV4VneoV7SfGv8xIwo2qNQ==} - engines: {node: '>=14.0.0'} - peerDependencies: - rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 - peerDependenciesMeta: - rollup: - optional: true - - '@rollup/rollup-android-arm-eabi@4.40.0': - resolution: {integrity: sha512-+Fbls/diZ0RDerhE8kyC6hjADCXA1K4yVNlH0EYfd2XjyH0UGgzaQ8MlT0pCXAThfxv3QUAczHaL+qSv1E4/Cg==} - cpu: [arm] - os: [android] - - '@rollup/rollup-android-arm64@4.40.0': - resolution: {integrity: sha512-PPA6aEEsTPRz+/4xxAmaoWDqh67N7wFbgFUJGMnanCFs0TV99M0M8QhhaSCks+n6EbQoFvLQgYOGXxlMGQe/6w==} - cpu: [arm64] - os: [android] - - '@rollup/rollup-darwin-arm64@4.40.0': - resolution: {integrity: sha512-GwYOcOakYHdfnjjKwqpTGgn5a6cUX7+Ra2HeNj/GdXvO2VJOOXCiYYlRFU4CubFM67EhbmzLOmACKEfvp3J1kQ==} - cpu: [arm64] - os: [darwin] - - '@rollup/rollup-darwin-x64@4.40.0': - resolution: {integrity: sha512-CoLEGJ+2eheqD9KBSxmma6ld01czS52Iw0e2qMZNpPDlf7Z9mj8xmMemxEucinev4LgHalDPczMyxzbq+Q+EtA==} - cpu: [x64] - os: [darwin] - - '@rollup/rollup-freebsd-arm64@4.40.0': - resolution: {integrity: sha512-r7yGiS4HN/kibvESzmrOB/PxKMhPTlz+FcGvoUIKYoTyGd5toHp48g1uZy1o1xQvybwwpqpe010JrcGG2s5nkg==} - cpu: [arm64] - os: [freebsd] - - '@rollup/rollup-freebsd-x64@4.40.0': - resolution: {integrity: sha512-mVDxzlf0oLzV3oZOr0SMJ0lSDd3xC4CmnWJ8Val8isp9jRGl5Dq//LLDSPFrasS7pSm6m5xAcKaw3sHXhBjoRw==} - cpu: [x64] - os: [freebsd] - - '@rollup/rollup-linux-arm-gnueabihf@4.40.0': - resolution: {integrity: sha512-y/qUMOpJxBMy8xCXD++jeu8t7kzjlOCkoxxajL58G62PJGBZVl/Gwpm7JK9+YvlB701rcQTzjUZ1JgUoPTnoQA==} - cpu: [arm] - os: [linux] - - '@rollup/rollup-linux-arm-musleabihf@4.40.0': - resolution: {integrity: sha512-GoCsPibtVdJFPv/BOIvBKO/XmwZLwaNWdyD8TKlXuqp0veo2sHE+A/vpMQ5iSArRUz/uaoj4h5S6Pn0+PdhRjg==} - cpu: [arm] - os: [linux] - - '@rollup/rollup-linux-arm64-gnu@4.40.0': - resolution: {integrity: sha512-L5ZLphTjjAD9leJzSLI7rr8fNqJMlGDKlazW2tX4IUF9P7R5TMQPElpH82Q7eNIDQnQlAyiNVfRPfP2vM5Avvg==} - cpu: [arm64] - os: [linux] - - '@rollup/rollup-linux-arm64-musl@4.40.0': - resolution: {integrity: sha512-ATZvCRGCDtv1Y4gpDIXsS+wfFeFuLwVxyUBSLawjgXK2tRE6fnsQEkE4csQQYWlBlsFztRzCnBvWVfcae/1qxQ==} - cpu: [arm64] - os: [linux] - - '@rollup/rollup-linux-loongarch64-gnu@4.40.0': - resolution: {integrity: sha512-wG9e2XtIhd++QugU5MD9i7OnpaVb08ji3P1y/hNbxrQ3sYEelKJOq1UJ5dXczeo6Hj2rfDEL5GdtkMSVLa/AOg==} - cpu: [loong64] - os: [linux] - - '@rollup/rollup-linux-powerpc64le-gnu@4.40.0': - resolution: {integrity: sha512-vgXfWmj0f3jAUvC7TZSU/m/cOE558ILWDzS7jBhiCAFpY2WEBn5jqgbqvmzlMjtp8KlLcBlXVD2mkTSEQE6Ixw==} - cpu: [ppc64] - os: [linux] - - '@rollup/rollup-linux-riscv64-gnu@4.40.0': - resolution: {integrity: sha512-uJkYTugqtPZBS3Z136arevt/FsKTF/J9dEMTX/cwR7lsAW4bShzI2R0pJVw+hcBTWF4dxVckYh72Hk3/hWNKvA==} - cpu: [riscv64] - os: [linux] - - '@rollup/rollup-linux-riscv64-musl@4.40.0': - resolution: {integrity: sha512-rKmSj6EXQRnhSkE22+WvrqOqRtk733x3p5sWpZilhmjnkHkpeCgWsFFo0dGnUGeA+OZjRl3+VYq+HyCOEuwcxQ==} - cpu: [riscv64] - os: [linux] - - '@rollup/rollup-linux-s390x-gnu@4.40.0': - resolution: {integrity: sha512-SpnYlAfKPOoVsQqmTFJ0usx0z84bzGOS9anAC0AZ3rdSo3snecihbhFTlJZ8XMwzqAcodjFU4+/SM311dqE5Sw==} - cpu: [s390x] - os: [linux] - - '@rollup/rollup-linux-x64-gnu@4.40.0': - resolution: {integrity: sha512-RcDGMtqF9EFN8i2RYN2W+64CdHruJ5rPqrlYw+cgM3uOVPSsnAQps7cpjXe9be/yDp8UC7VLoCoKC8J3Kn2FkQ==} - cpu: [x64] - os: [linux] - - '@rollup/rollup-linux-x64-musl@4.40.0': - resolution: {integrity: sha512-HZvjpiUmSNx5zFgwtQAV1GaGazT2RWvqeDi0hV+AtC8unqqDSsaFjPxfsO6qPtKRRg25SisACWnJ37Yio8ttaw==} - cpu: [x64] - os: [linux] - - '@rollup/rollup-win32-arm64-msvc@4.40.0': - resolution: {integrity: sha512-UtZQQI5k/b8d7d3i9AZmA/t+Q4tk3hOC0tMOMSq2GlMYOfxbesxG4mJSeDp0EHs30N9bsfwUvs3zF4v/RzOeTQ==} - cpu: [arm64] - os: [win32] - - '@rollup/rollup-win32-ia32-msvc@4.40.0': - resolution: {integrity: sha512-+m03kvI2f5syIqHXCZLPVYplP8pQch9JHyXKZ3AGMKlg8dCyr2PKHjwRLiW53LTrN/Nc3EqHOKxUxzoSPdKddA==} - cpu: [ia32] - os: [win32] - - '@rollup/rollup-win32-x64-msvc@4.40.0': - resolution: {integrity: sha512-lpPE1cLfP5oPzVjKMx10pgBmKELQnFJXHgvtHCtuJWOv8MxqdEIMNtgHgBFf7Ea2/7EuVwa9fodWUfXAlXZLZQ==} - cpu: [x64] - os: [win32] - - '@sec-ant/readable-stream@0.4.1': - resolution: {integrity: sha512-831qok9r2t8AlxLko40y2ebgSDhenenCatLVeW/uBtnHPyhHOvG0C7TvfgecV+wHzIm5KUICgzmVpWS+IMEAeg==} - - '@sentry-internal/browser-utils@9.14.0': - resolution: {integrity: sha512-pDk9XUu9zf7lcT9QX0nTObPNp/y0xQyy1Dj+5/8TSB3vAfe0LQcooKGl/D1h7EoIXVHUozZk5JC/dH+gz6BXRg==} - engines: {node: '>=18'} - - '@sentry-internal/feedback@9.14.0': - resolution: {integrity: sha512-D+PiEUWbDT0vqmaTiOs6OzXwVRVFgf7BCkFs48qsN9sAPwUgT+5zh2oo/rU2r0NrmMcvJVtSY+ezwPMk8BgGsg==} - engines: {node: '>=18'} - - '@sentry-internal/replay-canvas@9.14.0': - resolution: {integrity: sha512-GhCSqc0oNzRiLhQsi9LCXgUmIwdHdvzVIsX4fihoFYWfgWSSj5YLqeEkb3CMM8htM6vheSFzIbPLlRS8fjCrPQ==} - engines: {node: '>=18'} - - '@sentry-internal/replay@9.14.0': - resolution: {integrity: sha512-wgt397/PtpfVQ9t779a0L+hGH3JN9doXv3+9Wj98MLWwhymvJBjpjCFUBLScO5iP6imewTbRqQHbq7XS7I+x1A==} - engines: {node: '>=18'} - - '@sentry/browser@9.14.0': - resolution: {integrity: sha512-acxFbFEei3hzKr/IW3OmkzHlwohRaRBG0872nIhLYV2f/BgZmR6eV5zrUoELMmt2cgoLmDYyfp1734OoplfDbw==} - engines: {node: '>=18'} - - '@sentry/core@9.14.0': - resolution: {integrity: sha512-OLfucnP3LAL5bxVNWc2RVOHCX7fk9Er5bWPCS+O5cPjqNUUz0HQHhVh2Vhei5C0kYZZM4vy4BQit5T9LrlOaNA==} - engines: {node: '>=18'} - - '@sindresorhus/is@5.6.0': - resolution: {integrity: sha512-TV7t8GKYaJWsn00tFDqBw8+Uqmr8A0fRU1tvTQhyZzGv0sJCGRQL3JGMI3ucuKo3XIZdUP+Lx7/gh2t3lewy7g==} - engines: {node: '>=14.16'} - - '@stylistic/stylelint-plugin@3.1.2': - resolution: {integrity: sha512-tylFJGMQo62alGazK74MNxFjMagYOHmBZiePZFOJK2n13JZta0uVkB3Bh5qodUmOLtRH+uxH297EibK14UKm8g==} - engines: {node: ^18.12 || >=20.9} - peerDependencies: - stylelint: ^16.8.0 - - '@swan-io/boxed@3.2.0': - resolution: {integrity: sha512-wk6gSWjZ7nj619ifwyLFZN+B0mjpsXyfroT97ByFqvi5Ywx9nLWz7cEvStTNGIh1oAxKxGtGQLbs9dFGmtypNA==} - peerDependencies: - typescript: '>=5.0.0' - peerDependenciesMeta: - typescript: - optional: true - - '@swc/cli@0.7.3': - resolution: {integrity: sha512-rnVXNnlURjdOuPaBIwZ3TmBA44BF/eP0j154LanlgPEYfau74ige7cpKlKkZr1IBqMOG99lAnYNxQipDWA3hdg==} - engines: {node: '>= 16.14.0'} - hasBin: true - peerDependencies: - '@swc/core': ^1.2.66 - chokidar: ^4.0.1 - peerDependenciesMeta: - chokidar: - optional: true - - '@swc/core-darwin-arm64@1.9.1': - resolution: {integrity: sha512-2/ncHSCdAh5OHem1fMITrWEzzl97OdMK1PHc9CkxSJnphLjRubfxB5sbc5tDhcO68a5tVy+DxwaBgDec3PXnOg==} - engines: {node: '>=10'} - cpu: [arm64] - os: [darwin] - - '@swc/core-darwin-x64@1.9.1': - resolution: {integrity: sha512-4MDOFC5zmNqRJ9RGFOH95oYf27J9HniLVpB1pYm2gGeNHdl2QvDMtx2QTuMHQ6+OTn/3y1BHYuhBGp7d405oLA==} - engines: {node: '>=10'} - cpu: [x64] - os: [darwin] - - '@swc/core-linux-arm-gnueabihf@1.9.1': - resolution: {integrity: sha512-eVW/BjRW8/HpLe3+1jRU7w7PdRLBgnEEYTkHJISU8805/EKT03xNZn6CfaBpKfeAloY4043hbGzE/NP9IahdpQ==} - engines: {node: '>=10'} - cpu: [arm] - os: [linux] - - '@swc/core-linux-arm64-gnu@1.9.1': - resolution: {integrity: sha512-8m3u1v8R8NgI/9+cHMkzk14w87blSy3OsQPWPfhOL+XPwhyLPvat+ahQJb2nZmltjTgkB4IbzKFSfbuA34LmNA==} - engines: {node: '>=10'} - cpu: [arm64] - os: [linux] - - '@swc/core-linux-arm64-musl@1.9.1': - resolution: {integrity: sha512-hpT0sQAZnW8l02I289yeyFfT9llGO9PzKDxUq8pocKtioEHiElRqR53juCWoSmzuWi+6KX7zUJ0NKCBrc8pmDg==} - engines: {node: '>=10'} - cpu: [arm64] - os: [linux] - - '@swc/core-linux-x64-gnu@1.9.1': - resolution: {integrity: sha512-sGFdpdAYusk/ropHiwtXom2JrdaKPxl8MqemRv6dvxZq1Gm/GdmOowxdXIPjCgBGMgoXVcgNviH6CgiO5q+UtA==} - engines: {node: '>=10'} - cpu: [x64] - os: [linux] - - '@swc/core-linux-x64-musl@1.9.1': - resolution: {integrity: sha512-YtNLNwIWs0Z2+XgBs6+LrCIGtfCDtNr4S4b6Q5HDOreEIGzSvhkef8eyBI5L+fJ2eGov4b7iEo61C4izDJS5RA==} - engines: {node: '>=10'} - cpu: [x64] - os: [linux] - - '@swc/core-win32-arm64-msvc@1.9.1': - resolution: {integrity: sha512-qSxD3uZW2vSiHqUt30vUi0PB92zDh9bjqh5YKpfhhVa7h1vt/xXhlid8yMvSNToTfzhRrTEffOAPUr7WVoyQUA==} - engines: {node: '>=10'} - cpu: [arm64] - os: [win32] - - '@swc/core-win32-ia32-msvc@1.9.1': - resolution: {integrity: sha512-C3fPEwyX/WRPlX6zIToNykJuz1JkZX0sk8H1QH2vpnKuySUkt/Ur5K2FzLgSWzJdbfxstpgS151/es0VGAD+ZA==} - engines: {node: '>=10'} - cpu: [ia32] - os: [win32] - - '@swc/core-win32-x64-msvc@1.9.1': - resolution: {integrity: sha512-2XZ+U1AyVsOAXeH6WK1syDm7+gwTjA8fShs93WcbxnK7HV+NigDlvr4124CeJLTHyh3fMh1o7+CnQnaBJhlysQ==} - engines: {node: '>=10'} - cpu: [x64] - os: [win32] - - '@swc/core@1.9.1': - resolution: {integrity: sha512-OnPc+Kt5oy3xTvr/KCUOqE9ptJcWbyQgAUr1ydh9EmbBcmJTaO1kfQCxm/axzJi6sKeDTxL9rX5zvLOhoYIaQw==} - engines: {node: '>=10'} - peerDependencies: - '@swc/helpers': '*' - peerDependenciesMeta: - '@swc/helpers': - optional: true - - '@swc/counter@0.1.3': - resolution: {integrity: sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ==} - - '@swc/types@0.1.21': - resolution: {integrity: sha512-2YEtj5HJVbKivud9N4bpPBAyZhj4S2Ipe5LkUG94alTpr7in/GU/EARgPAd3BwU+YOmFVJC2+kjqhGRi3r0ZpQ==} - - '@szmarczak/http-timer@5.0.1': - resolution: {integrity: sha512-+PmQX0PiAYPMeVYe237LJAYvOMYW1j2rH5YROyS3b4CTVJum34HfRvKvAzozHAQG0TnHNdUfY9nCeUyRAs//cw==} - engines: {node: '>=14.16'} - - '@tokenizer/token@0.3.0': - resolution: {integrity: sha512-OvjF+z51L3ov0OyAU0duzsYuvO01PH7x4t6DJx+guahgTnBHkhJdG7soQeTSFLWN3efnHyibZ4Z8l2EuWwJN3A==} - - '@types/eslint__js@9.14.0': - resolution: {integrity: sha512-s0jepCjOJWB/GKcuba4jISaVpBudw3ClXJ3fUK4tugChUMQsp6kSwuA8Dcx6wFd/JsJqcY8n4rEpa5RTHs5ypA==} - deprecated: This is a stub types definition. @eslint/js provides its own type definitions, so you do not need this installed. - - '@types/estree@1.0.7': - resolution: {integrity: sha512-w28IoSUCJpidD/TGviZwwMJckNESJZXFu7NBZ5YJ4mEUnNraUn9Pm8HSZm/jDF1pDWYKspWE7oVphigUPRakIQ==} - - '@types/http-cache-semantics@4.0.4': - resolution: {integrity: sha512-1m0bIFVc7eJWyve9S0RnuRgcQqF/Xd5QsUZAZeQFr1Q3/p9JWoQQEqmVy+DPTNpGXwhgIetAoYF8JSc33q29QA==} - - '@types/json-schema@7.0.15': - resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==} - - '@types/node@22.14.1': - resolution: {integrity: sha512-u0HuPQwe/dHrItgHHpmw3N2fYCR6x4ivMNbPHRkBVP4CvN+kiRrKHWk3i8tXiO/joPwXLMYvF9TTF0eqgHIuOw==} - - '@types/trusted-types@2.0.7': - resolution: {integrity: sha512-ScaPdn1dQczgbl0QFTeTOmVHFULt394XJgOQNoyVhZ6r2vLnMLJfBPd53SB52T/3G36VI1/g2MZaX0cwDuXsfw==} - - '@typescript-eslint/eslint-plugin@8.31.0': - resolution: {integrity: sha512-evaQJZ/J/S4wisevDvC1KFZkPzRetH8kYZbkgcTRyql3mcKsf+ZFDV1BVWUGTCAW5pQHoqn5gK5b8kn7ou9aFQ==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - peerDependencies: - '@typescript-eslint/parser': ^8.0.0 || ^8.0.0-alpha.0 - eslint: ^8.57.0 || ^9.0.0 - typescript: '>=4.8.4 <5.9.0' - - '@typescript-eslint/parser@8.31.0': - resolution: {integrity: sha512-67kYYShjBR0jNI5vsf/c3WG4u+zDnCTHTPqVMQguffaWWFs7artgwKmfwdifl+r6XyM5LYLas/dInj2T0SgJyw==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - peerDependencies: - eslint: ^8.57.0 || ^9.0.0 - typescript: '>=4.8.4 <5.9.0' - - '@typescript-eslint/scope-manager@8.31.0': - resolution: {integrity: sha512-knO8UyF78Nt8O/B64i7TlGXod69ko7z6vJD9uhSlm0qkAbGeRUSudcm0+K/4CrRjrpiHfBCjMWlc08Vav1xwcw==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - - '@typescript-eslint/type-utils@8.31.0': - resolution: {integrity: sha512-DJ1N1GdjI7IS7uRlzJuEDCgDQix3ZVYVtgeWEyhyn4iaoitpMBX6Ndd488mXSx0xah/cONAkEaYyylDyAeHMHg==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - peerDependencies: - eslint: ^8.57.0 || ^9.0.0 - typescript: '>=4.8.4 <5.9.0' - - '@typescript-eslint/types@8.31.0': - resolution: {integrity: sha512-Ch8oSjVyYyJxPQk8pMiP2FFGYatqXQfQIaMp+TpuuLlDachRWpUAeEu1u9B/v/8LToehUIWyiKcA/w5hUFRKuQ==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - - '@typescript-eslint/typescript-estree@8.31.0': - resolution: {integrity: sha512-xLmgn4Yl46xi6aDSZ9KkyfhhtnYI15/CvHbpOy/eR5NWhK/BK8wc709KKwhAR0m4ZKRP7h07bm4BWUYOCuRpQQ==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - peerDependencies: - typescript: '>=4.8.4 <5.9.0' - - '@typescript-eslint/utils@8.31.0': - resolution: {integrity: sha512-qi6uPLt9cjTFxAb1zGNgTob4x9ur7xC6mHQJ8GwEzGMGE9tYniublmJaowOJ9V2jUzxrltTPfdG2nKlWsq0+Ww==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - peerDependencies: - eslint: ^8.57.0 || ^9.0.0 - typescript: '>=4.8.4 <5.9.0' - - '@typescript-eslint/visitor-keys@8.31.0': - resolution: {integrity: sha512-QcGHmlRHWOl93o64ZUMNewCdwKGU6WItOU52H0djgNmn1EOrhVudrDzXz4OycCRSCPwFCDrE2iIt5vmuUdHxuQ==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - - '@vitejs/plugin-legacy@6.1.0': - resolution: {integrity: sha512-D5/33NZFBDdlXvCoRbdGe3DcnSY4TZIDkQpolbMdMXBtUNgwJc03X1LHmEov4Igi4f5z2l9/lC0te74R8iHn5A==} - engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0} - peerDependencies: - terser: ^5.16.0 - vite: ^6.0.0 - - '@xhmikosr/archive-type@7.0.0': - resolution: {integrity: sha512-sIm84ZneCOJuiy3PpWR5bxkx3HaNt1pqaN+vncUBZIlPZCq8ASZH+hBVdu5H8znR7qYC6sKwx+ie2Q7qztJTxA==} - engines: {node: ^14.14.0 || >=16.0.0} - - '@xhmikosr/bin-check@7.0.3': - resolution: {integrity: sha512-4UnCLCs8DB+itHJVkqFp9Zjg+w/205/J2j2wNBsCEAm/BuBmtua2hhUOdAMQE47b1c7P9Xmddj0p+X1XVsfHsA==} - engines: {node: '>=18'} - - '@xhmikosr/bin-wrapper@13.0.5': - resolution: {integrity: sha512-DT2SAuHDeOw0G5bs7wZbQTbf4hd8pJ14tO0i4cWhRkIJfgRdKmMfkDilpaJ8uZyPA0NVRwasCNAmMJcWA67osw==} - engines: {node: '>=18'} - - '@xhmikosr/decompress-tar@8.0.1': - resolution: {integrity: sha512-dpEgs0cQKJ2xpIaGSO0hrzz3Kt8TQHYdizHsgDtLorWajuHJqxzot9Hbi0huRxJuAGG2qiHSQkwyvHHQtlE+fg==} - engines: {node: '>=18'} - - '@xhmikosr/decompress-tarbz2@8.0.2': - resolution: {integrity: sha512-p5A2r/AVynTQSsF34Pig6olt9CvRj6J5ikIhzUd3b57pUXyFDGtmBstcw+xXza0QFUh93zJsmY3zGeNDlR2AQQ==} - engines: {node: '>=18'} - - '@xhmikosr/decompress-targz@8.0.1': - resolution: {integrity: sha512-mvy5AIDIZjQ2IagMI/wvauEiSNHhu/g65qpdM4EVoYHUJBAmkQWqcPJa8Xzi1aKVTmOA5xLJeDk7dqSjlHq8Mg==} - engines: {node: '>=18'} - - '@xhmikosr/decompress-unzip@7.0.0': - resolution: {integrity: sha512-GQMpzIpWTsNr6UZbISawsGI0hJ4KA/mz5nFq+cEoPs12UybAqZWKbyIaZZyLbJebKl5FkLpsGBkrplJdjvUoSQ==} - engines: {node: '>=18'} - - '@xhmikosr/decompress@10.0.1': - resolution: {integrity: sha512-6uHnEEt5jv9ro0CDzqWlFgPycdE+H+kbJnwyxgZregIMLQ7unQSCNVsYG255FoqU8cP46DyggI7F7LohzEl8Ag==} - engines: {node: '>=18'} - - '@xhmikosr/downloader@15.0.1': - resolution: {integrity: sha512-fiuFHf3Dt6pkX8HQrVBsK0uXtkgkVlhrZEh8b7VgoDqFf+zrgFBPyrwCqE/3nDwn3hLeNz+BsrS7q3mu13Lp1g==} - engines: {node: '>=18'} - - '@xhmikosr/os-filter-obj@3.0.0': - resolution: {integrity: sha512-siPY6BD5dQ2SZPl3I0OZBHL27ZqZvLEosObsZRQ1NUB8qcxegwt0T9eKtV96JMFQpIz1elhkzqOg4c/Ri6Dp9A==} - engines: {node: ^14.14.0 || >=16.0.0} - - '@xml-tools/parser@1.0.11': - resolution: {integrity: sha512-aKqQ077XnR+oQtHJlrAflaZaL7qZsulWc/i/ZEooar5JiWj1eLt0+Wg28cpa+XLney107wXqneC+oG1IZvxkTA==} - - a11y-dialog@8.1.3: - resolution: {integrity: sha512-fA1RKuGEeDnfqSUeigf0Yec8SHsn7Qng/V0Tw4lcwbwLl+4bigxqxm8b7UdBhl6cqGmKO/4USRXU1lkCdpW0/g==} - - acorn-jsx@5.3.2: - resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} - peerDependencies: - acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 - - acorn@8.14.1: - resolution: {integrity: sha512-OvQ/2pUDKmgfCg++xsTX1wGxfTaszcHVcTctW4UJB4hibJx2HXxxO5UmVgyjMa+ZDsiaf5wWLXYpRWMmBI0QHg==} - engines: {node: '>=0.4.0'} - hasBin: true - - ajv@6.12.6: - resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==} - - ajv@8.17.1: - resolution: {integrity: sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==} - - ansi-regex@5.0.1: - resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} - engines: {node: '>=8'} - - ansi-styles@4.3.0: - resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} - engines: {node: '>=8'} - - arch@3.0.0: - resolution: {integrity: sha512-AmIAC+Wtm2AU8lGfTtHsw0Y9Qtftx2YXEEtiBP10xFUtMOA+sHHx6OAddyL52mUKh1vsXQ6/w1mVDptZCyUt4Q==} - - argparse@2.0.1: - resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} - - array-union@2.1.0: - resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==} - engines: {node: '>=8'} - - asn1.js@4.10.1: - resolution: {integrity: sha512-p32cOF5q0Zqs9uBiONKYLm6BClCoBCM5O9JfeUSlnQLBTxYdTK+pW+nXflm8UkKd2UYlEbYz5qEi0JuZR9ckSw==} - - assert@2.1.0: - resolution: {integrity: sha512-eLHpSK/Y4nhMJ07gDaAzoX/XAKS8PSaojml3M0DM4JpV1LAi5JOJ/p6H/XWrl8L+DzVEvVCW1z3vWAaB9oTsQw==} - - astral-regex@2.0.0: - resolution: {integrity: sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==} - engines: {node: '>=8'} - - available-typed-arrays@1.0.7: - resolution: {integrity: sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==} - engines: {node: '>= 0.4'} - - b4a@1.6.7: - resolution: {integrity: sha512-OnAYlL5b7LEkALw87fUVafQw5rVR9RjwGd4KUwNQ6DrrNmaVaUCgLipfVlzrPQ4tWOR9P0IXGNOx50jYCCdSJg==} - - babel-plugin-polyfill-corejs2@0.4.13: - resolution: {integrity: sha512-3sX/eOms8kd3q2KZ6DAhKPc0dgm525Gqq5NtWKZ7QYYZEv57OQ54KtblzJzH1lQF/eQxO8KjWGIK9IPUJNus5g==} - peerDependencies: - '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 - - babel-plugin-polyfill-corejs3@0.11.1: - resolution: {integrity: sha512-yGCqvBT4rwMczo28xkH/noxJ6MZ4nJfkVYdoDaC/utLtWrXxv27HVrzAeSbqR8SxDsp46n0YF47EbHoixy6rXQ==} - peerDependencies: - '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 - - babel-plugin-polyfill-regenerator@0.6.4: - resolution: {integrity: sha512-7gD3pRadPrbjhjLyxebmx/WrFYcuSjZ0XbdUujQMZ/fcE9oeewk2U/7PCvez84UeuK3oSjmPZ0Ch0dlupQvGzw==} - peerDependencies: - '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 - - balanced-match@1.0.2: - resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} - - balanced-match@2.0.0: - resolution: {integrity: sha512-1ugUSr8BHXRnK23KfuYS+gVMC3LB8QGH9W1iGtDPsNWoQbgtXSExkBu2aDR4epiGWZOjZsj6lDl/N/AqqTC3UA==} - - bare-events@2.5.4: - resolution: {integrity: sha512-+gFfDkR8pj4/TrWCGUGWmJIkBwuxPS5F+a5yWjOHQt2hHvNZd5YLzadjmDUtFmMM4y429bnKLa8bYBMHcYdnQA==} - - base64-js@1.5.1: - resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==} - - better-typescript-lib@2.11.0: - resolution: {integrity: sha512-dwaPodcG5lVepyeoEmwRSpRqKWOso5CRktnMcPKlE4jjcHLGjkBhZXIMe6EFD9ALG/Ru3kwOO1t6TNNQ6Pf1Jw==} - peerDependencies: - typescript: '>=4.5.2' - - bin-version-check@5.1.0: - resolution: {integrity: sha512-bYsvMqJ8yNGILLz1KP9zKLzQ6YpljV3ln1gqhuLkUtyfGi3qXKGuK2p+U4NAvjVFzDFiBBtOpCOSFNuYYEGZ5g==} - engines: {node: '>=12'} - - bin-version@6.0.0: - resolution: {integrity: sha512-nk5wEsP4RiKjG+vF+uG8lFsEn4d7Y6FVDamzzftSunXOoOcOOkzcWdKVlGgFFwlUQCj63SgnUkLLGF8v7lufhw==} - engines: {node: '>=12'} - - bn.js@4.12.1: - resolution: {integrity: sha512-k8TVBiPkPJT9uHLdOKfFpqcfprwBFOAAXXozRubr7R7PfIuKvQlzcI4M0pALeqXN09vdaMbUdUj+pass+uULAg==} - - bn.js@5.2.1: - resolution: {integrity: sha512-eXRvHzWyYPBuB4NBy0cmYQjGitUrtqwbvlzP3G6VFnNRbsZQIxQ10PbKKHt8gZ/HW/D/747aDl+QkDqg3KQLMQ==} - - brace-expansion@1.1.11: - resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==} - - brace-expansion@2.0.1: - resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==} - - braces@3.0.3: - resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==} - engines: {node: '>=8'} - - brorand@1.1.0: - resolution: {integrity: sha512-cKV8tMCEpQs4hK/ik71d6LrPOnpkpGBR0wzxqr68g2m/LB2GxVYQroAjMJZRVM1Y4BCjCKc3vAamxSzOY2RP+w==} - - browser-resolve@2.0.0: - resolution: {integrity: sha512-7sWsQlYL2rGLy2IWm8WL8DCTJvYLc/qlOnsakDac87SOoCd16WLsaAMdCiAqsTNHIe+SXfaqyxyo6THoWqs8WQ==} - - browserify-aes@1.2.0: - resolution: {integrity: sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==} - - browserify-cipher@1.0.1: - resolution: {integrity: sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w==} - - browserify-des@1.0.2: - resolution: {integrity: sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A==} - - browserify-rsa@4.1.1: - resolution: {integrity: sha512-YBjSAiTqM04ZVei6sXighu679a3SqWORA3qZTEqZImnlkDIFtKc6pNutpjyZ8RJTjQtuYfeetkxM11GwoYXMIQ==} - engines: {node: '>= 0.10'} - - browserify-sign@4.2.3: - resolution: {integrity: sha512-JWCZW6SKhfhjJxO8Tyiiy+XYB7cqd2S5/+WeYHsKdNKFlCBhKbblba1A/HN/90YwtxKc8tCErjffZl++UNmGiw==} - engines: {node: '>= 0.12'} - - browserify-zlib@0.2.0: - resolution: {integrity: sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==} - - browserslist-to-esbuild@2.1.1: - resolution: {integrity: sha512-KN+mty6C3e9AN8Z5dI1xeN15ExcRNeISoC3g7V0Kax/MMF9MSoYA2G7lkTTcVUFntiEjkpI0HNgqJC1NjdyNUw==} - engines: {node: '>=18'} - hasBin: true - peerDependencies: - browserslist: '*' - - browserslist@4.24.4: - resolution: {integrity: sha512-KDi1Ny1gSePi1vm0q4oxSF8b4DR44GF4BbmS2YdhPLOEqd8pDviZOGH/GsmRwoWJ2+5Lr085X7naowMwKHDG1A==} - engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} - hasBin: true - - buffer-builder@0.2.0: - resolution: {integrity: sha512-7VPMEPuYznPSoR21NE1zvd2Xna6c/CloiZCfcMXR1Jny6PjX0N4Nsa38zcBFo/FMK+BlA+FLKbJCQ0i2yxp+Xg==} - - buffer-crc32@0.2.13: - resolution: {integrity: sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==} - - buffer-from@1.1.2: - resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==} - - buffer-xor@1.0.3: - resolution: {integrity: sha512-571s0T7nZWK6vB67HI5dyUF7wXiNcfaPPPTl6zYCNApANjIvYJTg7hlud/+cJpdAhS7dVzqMLmfhfHR3rAcOjQ==} - - buffer@5.7.1: - resolution: {integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==} - - buffer@6.0.3: - resolution: {integrity: sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==} - - builtin-status-codes@3.0.0: - resolution: {integrity: sha512-HpGFw18DgFWlncDfjTa2rcQ4W88O1mC8e8yZ2AvQY5KDaktSTwo+KRf6nHK6FRI5FyRyb/5T6+TSxfP7QyGsmQ==} - - cacheable-lookup@7.0.0: - resolution: {integrity: sha512-+qJyx4xiKra8mZrcwhjMRMUhD5NR1R8esPkzIYxX96JiecFoxAXFuz/GpR3+ev4PE1WamHip78wV0vcmPQtp8w==} - engines: {node: '>=14.16'} - - cacheable-request@10.2.14: - resolution: {integrity: sha512-zkDT5WAF4hSSoUgyfg5tFIxz8XQK+25W/TLVojJTMKBaxevLBBtLxgqguAuVQB8PVW79FVjHcU+GJ9tVbDZ9mQ==} - engines: {node: '>=14.16'} - - cacheable@1.8.10: - resolution: {integrity: sha512-0ZnbicB/N2R6uziva8l6O6BieBklArWyiGx4GkwAhLKhSHyQtRfM9T1nx7HHuHDKkYB/efJQhz3QJ6x/YqoZzA==} - - call-bind-apply-helpers@1.0.2: - resolution: {integrity: sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==} - engines: {node: '>= 0.4'} - - call-bind@1.0.8: - resolution: {integrity: sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww==} - engines: {node: '>= 0.4'} - - call-bound@1.0.4: - resolution: {integrity: sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==} - engines: {node: '>= 0.4'} - - callsites@3.1.0: - resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} - engines: {node: '>=6'} - - caniuse-lite@1.0.30001715: - resolution: {integrity: sha512-7ptkFGMm2OAOgvZpwgA4yjQ5SQbrNVGdRjzH0pBdy1Fasvcr+KAeECmbCAECzTuDuoX0FCY8KzUxjf9+9kfZEw==} - - chalk@4.1.2: - resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} - engines: {node: '>=10'} - - chalk@5.4.1: - resolution: {integrity: sha512-zgVZuo2WcZgfUEmsn6eO3kINexW8RAE4maiQ8QNs8CtpPCSyMiYsULR3HQYkm3w8FIA3SberyMJMSldGsW+U3w==} - engines: {node: ^12.17.0 || ^14.13 || >=16.0.0} - - chevrotain@7.1.1: - resolution: {integrity: sha512-wy3mC1x4ye+O+QkEinVJkPf5u2vsrDIYW9G7ZuwFl6v/Yu0LwUuT2POsb+NUWApebyxfkQq6+yDfRExbnI5rcw==} - - chokidar@4.0.3: - resolution: {integrity: sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==} - engines: {node: '>= 14.16.0'} - - cipher-base@1.0.6: - resolution: {integrity: sha512-3Ek9H3X6pj5TgenXYtNWdaBon1tgYCaebd+XPg0keyjEbEfkD4KkmAxkQ/i1vYvxdcT5nscLBfq9VJRmCBcFSw==} - engines: {node: '>= 0.10'} - - clone@1.0.4: - resolution: {integrity: sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==} - engines: {node: '>=0.8'} - - color-convert@2.0.1: - resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} - engines: {node: '>=7.0.0'} - - color-name@1.1.4: - resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} - - colord@2.9.3: - resolution: {integrity: sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==} - - colorjs.io@0.5.2: - resolution: {integrity: sha512-twmVoizEW7ylZSN32OgKdXRmo1qg+wT5/6C3xu5b9QsWzSFAhHLn2xd8ro0diCsKfCj1RdaTP/nrcW+vAoQPIw==} - - commander@2.20.3: - resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==} - - commander@6.2.1: - resolution: {integrity: sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA==} - engines: {node: '>= 6'} - - commander@8.3.0: - resolution: {integrity: sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==} - engines: {node: '>= 12'} - - concat-map@0.0.1: - resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} - - console-browserify@1.2.0: - resolution: {integrity: sha512-ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA==} - - constants-browserify@1.0.0: - resolution: {integrity: sha512-xFxOwqIzR/e1k1gLiWEophSCMqXcwVHIH7akf7b/vxcUeGunlj3hvZaaqxwHsTgn+IndtkQJgSztIDWeumWJDQ==} - - content-disposition@0.5.4: - resolution: {integrity: sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==} - engines: {node: '>= 0.6'} - - convert-source-map@2.0.0: - resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==} - - core-js-compat@3.41.0: - resolution: {integrity: sha512-RFsU9LySVue9RTwdDVX/T0e2Y6jRYWXERKElIjpuEOEnxaXffI0X7RUwVzfYLfzuLXSNJDYoRYUAmRUcyln20A==} - - core-js@3.41.0: - resolution: {integrity: sha512-SJ4/EHwS36QMJd6h/Rg+GyR4A5xE0FSI3eZ+iBVpfqf1x0eTSg1smWLHrA+2jQThZSh97fmSgFSU8B61nxosxA==} - - core-util-is@1.0.3: - resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==} - - cosmiconfig@9.0.0: - resolution: {integrity: sha512-itvL5h8RETACmOTFc4UfIyB2RfEHi71Ax6E/PivVxq9NseKbOWpeyHEOIbmAw1rs8Ak0VursQNww7lf7YtUwzg==} - engines: {node: '>=14'} - peerDependencies: - typescript: '>=4.9.5' - peerDependenciesMeta: - typescript: - optional: true - - create-ecdh@4.0.4: - resolution: {integrity: sha512-mf+TCx8wWc9VpuxfP2ht0iSISLZnt0JgWlrOKZiNqyUZWnjIaCIVNQArMHnCZKfEYRg6IM7A+NeJoN8gf/Ws0A==} - - create-hash@1.2.0: - resolution: {integrity: sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==} - - create-hmac@1.1.7: - resolution: {integrity: sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==} - - create-require@1.1.1: - resolution: {integrity: sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==} - - cross-spawn@7.0.6: - resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==} - engines: {node: '>= 8'} - - crypto-browserify@3.12.1: - resolution: {integrity: sha512-r4ESw/IlusD17lgQi1O20Fa3qNnsckR126TdUuBgAu7GBYSIPvdNyONd3Zrxh0xCwA4+6w/TDArBPsMvhur+KQ==} - engines: {node: '>= 0.10'} - - css-functions-list@3.2.3: - resolution: {integrity: sha512-IQOkD3hbR5KrN93MtcYuad6YPuTSUhntLHDuLEbFWE+ff2/XSZNdZG+LcbbIW5AXKg/WFIfYItIzVoHngHXZzA==} - engines: {node: '>=12 || >=16'} - - css-tree@3.1.0: - resolution: {integrity: sha512-0eW44TGN5SQXU1mWSkKwFstI/22X2bG1nYzZTYMAWjylYURhse752YgbE4Cx46AC+bAvI+/dYTPRk1LqSUnu6w==} - engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0} - - cssesc@3.0.0: - resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==} - engines: {node: '>=4'} - hasBin: true - - debug@4.4.0: - resolution: {integrity: sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==} - engines: {node: '>=6.0'} - peerDependencies: - supports-color: '*' - peerDependenciesMeta: - supports-color: - optional: true - - decompress-response@6.0.0: - resolution: {integrity: sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==} - engines: {node: '>=10'} - - deep-is@0.1.4: - resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==} - - defaults@1.0.4: - resolution: {integrity: sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==} - - defaults@3.0.0: - resolution: {integrity: sha512-RsqXDEAALjfRTro+IFNKpcPCt0/Cy2FqHSIlnomiJp9YGadpQnrtbRpSgN2+np21qHcIKiva4fiOQGjS9/qR/A==} - engines: {node: '>=18'} - - defer-to-connect@2.0.1: - resolution: {integrity: sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg==} - engines: {node: '>=10'} - - define-data-property@1.1.4: - resolution: {integrity: sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==} - engines: {node: '>= 0.4'} - - define-properties@1.2.1: - resolution: {integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==} - engines: {node: '>= 0.4'} - - des.js@1.1.0: - resolution: {integrity: sha512-r17GxjhUCjSRy8aiJpr8/UadFIzMzJGexI3Nmz4ADi9LYSFx4gTBp80+NaX/YsXWWLhpZ7v/v/ubEc/bCNfKwg==} - - detect-libc@1.0.3: - resolution: {integrity: sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg==} - engines: {node: '>=0.10'} - hasBin: true - - diffie-hellman@5.0.3: - resolution: {integrity: sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg==} - - dir-glob@3.0.1: - resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==} - engines: {node: '>=8'} - - domain-browser@4.22.0: - resolution: {integrity: sha512-IGBwjF7tNk3cwypFNH/7bfzBcgSCbaMOD3GsaY1AU/JRrnHnYgEM0+9kQt52iZxjNsjBtJYtao146V+f8jFZNw==} - engines: {node: '>=10'} - - dunder-proto@1.0.1: - resolution: {integrity: sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==} - engines: {node: '>= 0.4'} - - easy-table@1.2.0: - resolution: {integrity: sha512-OFzVOv03YpvtcWGe5AayU5G2hgybsg3iqA6drU8UaoZyB9jLGMTrz9+asnLp/E+6qPh88yEI1gvyZFZ41dmgww==} - - electron-to-chromium@1.5.140: - resolution: {integrity: sha512-o82Rj+ONp4Ip7Cl1r7lrqx/pXhbp/lh9DpKcMNscFJdh8ebyRofnc7Sh01B4jx403RI0oqTBvlZ7OBIZLMr2+Q==} - - elliptic@6.6.1: - resolution: {integrity: sha512-RaddvvMatK2LJHqFJ+YA4WysVN5Ita9E35botqIYspQ4TkRAlCicdzKOjlyv/1Za5RyTNn7di//eEV0uTAfe3g==} - - emoji-regex@8.0.0: - resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} - - enhanced-resolve@5.18.1: - resolution: {integrity: sha512-ZSW3ma5GkcQBIpwZTSRAI8N71Uuwgs93IezB7mf7R60tC8ZbJideoDNKjHn2O9KIlx6rkGTTEk1xUCK2E1Y2Yg==} - engines: {node: '>=10.13.0'} - - env-paths@2.2.1: - resolution: {integrity: sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==} - engines: {node: '>=6'} - - error-ex@1.3.2: - resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==} - - es-define-property@1.0.1: - resolution: {integrity: sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==} - engines: {node: '>= 0.4'} - - es-errors@1.3.0: - resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==} - engines: {node: '>= 0.4'} - - es-object-atoms@1.1.1: - resolution: {integrity: sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==} - engines: {node: '>= 0.4'} - - esbuild@0.25.3: - resolution: {integrity: sha512-qKA6Pvai73+M2FtftpNKRxJ78GIjmFXFxd/1DVBqGo/qNhLSfv+G12n9pNoWdytJC8U00TrViOwpjT0zgqQS8Q==} - engines: {node: '>=18'} - hasBin: true - - escalade@3.2.0: - resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==} - engines: {node: '>=6'} - - escape-string-regexp@4.0.0: - resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==} - engines: {node: '>=10'} - - eslint-plugin-oxlint@0.16.7: - resolution: {integrity: sha512-1XBlEkJdVguNRKk65MAavP4SY5hxMIOrx+uFl5Ijvji5xV+QgYksV11fUNE85Uik7+IjDVLXQFDWZfWHrr4dxw==} - - eslint-plugin-perfectionist@4.12.1: - resolution: {integrity: sha512-0w0zF4ugHqFfsSFfZcg/pQTUoKkSJOYqqFPURRgA8hkpZsbYksCO4rfpDdiMkOgCJ3y4wxPvwKm3eTrP7jl7zg==} - engines: {node: ^18.0.0 || >=20.0.0} - peerDependencies: - eslint: '>=8.45.0' - - eslint-scope@8.3.0: - resolution: {integrity: sha512-pUNxi75F8MJ/GdeKtVLSbYg4ZI34J6C0C7sbL4YOp2exGwen7ZsuBqKzUhXd0qMQ362yET3z+uPwKeg/0C2XCQ==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - - eslint-visitor-keys@3.4.3: - resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - - eslint-visitor-keys@4.2.0: - resolution: {integrity: sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - - eslint@9.25.1: - resolution: {integrity: sha512-E6Mtz9oGQWDCpV12319d59n4tx9zOTXSTmc8BLVxBx+G/0RdM5MvEEJLU9c0+aleoePYYgVTOsRblx433qmhWQ==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - hasBin: true - peerDependencies: - jiti: '*' - peerDependenciesMeta: - jiti: - optional: true - - espree@10.3.0: - resolution: {integrity: sha512-0QYC8b24HWY8zjRnDTL6RiHfDbAWn63qb4LMj1Z4b076A4une81+z03Kg7l7mn/48PUTqoLptSXez8oknU8Clg==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - - esquery@1.6.0: - resolution: {integrity: sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==} - engines: {node: '>=0.10'} - - esrecurse@4.3.0: - resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==} - engines: {node: '>=4.0'} - - estraverse@5.3.0: - resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==} - engines: {node: '>=4.0'} - - estree-walker@2.0.2: - resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==} - - esutils@2.0.3: - resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==} - engines: {node: '>=0.10.0'} - - events@3.3.0: - resolution: {integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==} - engines: {node: '>=0.8.x'} - - evp_bytestokey@1.0.3: - resolution: {integrity: sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==} - - execa@5.1.1: - resolution: {integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==} - engines: {node: '>=10'} - - ext-list@2.2.2: - resolution: {integrity: sha512-u+SQgsubraE6zItfVA0tBuCBhfU9ogSRnsvygI7wht9TS510oLkBRXBsqopeUG/GBOIQyKZO9wjTqIu/sf5zFA==} - engines: {node: '>=0.10.0'} - - ext-name@5.0.0: - resolution: {integrity: sha512-yblEwXAbGv1VQDmow7s38W77hzAgJAO50ztBLMcUyUBfxv1HC+LGwtiEN+Co6LtlqT/5uwVOxsD4TNIilWhwdQ==} - engines: {node: '>=4'} - - fast-deep-equal@3.1.3: - resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} - - fast-fifo@1.3.2: - resolution: {integrity: sha512-/d9sfos4yxzpwkDkuN7k2SqFKtYNmCTzgfEpz82x34IM9/zc8KGxQoXg1liNC/izpRM/MBdt44Nmx41ZWqk+FQ==} - - fast-glob@3.3.3: - resolution: {integrity: sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==} - engines: {node: '>=8.6.0'} - - fast-json-stable-stringify@2.1.0: - resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==} - - fast-levenshtein@2.0.6: - resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==} - - fast-uri@3.0.6: - resolution: {integrity: sha512-Atfo14OibSv5wAp4VWNsFYE1AchQRTv9cBGWET4pZWHzYshFSS9NQI6I57rdKn9croWVMbYFbLhJ+yJvmZIIHw==} - - fastest-levenshtein@1.0.16: - resolution: {integrity: sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg==} - engines: {node: '>= 4.9.1'} - - fastq@1.19.1: - resolution: {integrity: sha512-GwLTyxkCXjXbxqIhTsMI2Nui8huMPtnxg7krajPJAjnEG/iiOS7i+zCtWGZR9G0NBKbXKh6X9m9UIsYX/N6vvQ==} - - fdir@6.4.4: - resolution: {integrity: sha512-1NZP+GK4GfuAv3PqKvxQRDMjdSRZjnkq7KfhlNrCNNlZ0ygQFpebfrnfnq/W7fpUnAv9aGWmY1zKx7FYL3gwhg==} - peerDependencies: - picomatch: ^3 || ^4 - peerDependenciesMeta: - picomatch: - optional: true - - file-entry-cache@10.0.8: - resolution: {integrity: sha512-FGXHpfmI4XyzbLd3HQ8cbUcsFGohJpZtmQRHr8z8FxxtCe2PcpgIlVLwIgunqjvRmXypBETvwhV4ptJizA+Y1Q==} - - file-entry-cache@8.0.0: - resolution: {integrity: sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==} - engines: {node: '>=16.0.0'} - - file-type@19.6.0: - resolution: {integrity: sha512-VZR5I7k5wkD0HgFnMsq5hOsSc710MJMu5Nc5QYsbe38NN5iPV/XTObYLc/cpttRTf6lX538+5uO1ZQRhYibiZQ==} - engines: {node: '>=18'} - - filename-reserved-regex@3.0.0: - resolution: {integrity: sha512-hn4cQfU6GOT/7cFHXBqeBg2TbrMBgdD0kcjLhvSQYYwm3s4B6cjvBfb7nBALJLAXqmU5xajSa7X2NnUud/VCdw==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - - filenamify@6.0.0: - resolution: {integrity: sha512-vqIlNogKeyD3yzrm0yhRMQg8hOVwYcYRfjEoODd49iCprMn4HL85gK3HcykQE53EPIpX3HcAbGA5ELQv216dAQ==} - engines: {node: '>=16'} - - fill-range@7.1.1: - resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==} - engines: {node: '>=8'} - - find-up@5.0.0: - resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==} - engines: {node: '>=10'} - - find-versions@5.1.0: - resolution: {integrity: sha512-+iwzCJ7C5v5KgcBuueqVoNiHVoQpwiUK5XFLjf0affFTep+Wcw93tPvmb8tqujDNmzhBDPddnWV/qgWSXgq+Hg==} - engines: {node: '>=12'} - - flat-cache@4.0.1: - resolution: {integrity: sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==} - engines: {node: '>=16'} - - flat-cache@6.1.8: - resolution: {integrity: sha512-R6MaD3nrJAtO7C3QOuS79ficm2pEAy++TgEUD8ii1LVlbcgZ9DtASLkt9B+RZSFCzm7QHDMlXPsqqB6W2Pfr1Q==} - - flatted@3.3.3: - resolution: {integrity: sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==} - - focusable-selectors@0.8.4: - resolution: {integrity: sha512-0XxbkD0KhOnX10qmnfF9U8DkDD8N/e4M77wMYw2Itoi4vdcoRjSkqXLZFIzkrLIOxzmzCGy88fNG1EbeXMD/zw==} - - for-each@0.3.5: - resolution: {integrity: sha512-dKx12eRCVIzqCxFGplyFKJMPvLEWgmNtUrpTiJIR5u97zEhRG8ySrtboPHZXx7daLxQVrl643cTzbab2tkQjxg==} - engines: {node: '>= 0.4'} - - form-data-encoder@2.1.4: - resolution: {integrity: sha512-yDYSgNMraqvnxiEXO4hi88+YZxaHC6QKzb5N84iRCTDeRO7ZALpir/lVmf/uXUhnwUr2O4HU8s/n6x+yNjQkHw==} - engines: {node: '>= 14.17'} - - fsevents@2.3.3: - resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} - engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} - os: [darwin] - - function-bind@1.1.2: - resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==} - - gensync@1.0.0-beta.2: - resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==} - engines: {node: '>=6.9.0'} - - get-intrinsic@1.3.0: - resolution: {integrity: sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==} - engines: {node: '>= 0.4'} - - get-proto@1.0.1: - resolution: {integrity: sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==} - engines: {node: '>= 0.4'} - - get-stream@6.0.1: - resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==} - engines: {node: '>=10'} - - get-stream@9.0.1: - resolution: {integrity: sha512-kVCxPF3vQM/N0B1PmoqVUqgHP+EeVjmZSQn+1oCRPxd2P21P2F19lIgbR3HBosbB1PUhOAoctJnfEn2GbN2eZA==} - engines: {node: '>=18'} - - glob-parent@5.1.2: - resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} - engines: {node: '>= 6'} - - glob-parent@6.0.2: - resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==} - engines: {node: '>=10.13.0'} - - global-modules@2.0.0: - resolution: {integrity: sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A==} - engines: {node: '>=6'} - - global-prefix@3.0.0: - resolution: {integrity: sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==} - engines: {node: '>=6'} - - globals@11.12.0: - resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==} - engines: {node: '>=4'} - - globals@14.0.0: - resolution: {integrity: sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==} - engines: {node: '>=18'} - - globals@16.0.0: - resolution: {integrity: sha512-iInW14XItCXET01CQFqudPOWP2jYMl7T+QRQT+UNcR/iQncN/F0UNpgd76iFkBPgNQb4+X3LV9tLJYzwh+Gl3A==} - engines: {node: '>=18'} - - globby@11.1.0: - resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==} - engines: {node: '>=10'} - - globjoin@0.1.4: - resolution: {integrity: sha512-xYfnw62CKG8nLkZBfWbhWwDw02CHty86jfPcc2cr3ZfeuK9ysoVPPEUxf21bAD/rWAgk52SuBrLJlefNy8mvFg==} - - globrex@0.1.2: - resolution: {integrity: sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg==} - - gopd@1.2.0: - resolution: {integrity: sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==} - engines: {node: '>= 0.4'} - - got@13.0.0: - resolution: {integrity: sha512-XfBk1CxOOScDcMr9O1yKkNaQyy865NbYs+F7dr4H0LZMVgCj2Le59k6PqbNHoL5ToeaEQUYh6c6yMfVcc6SJxA==} - engines: {node: '>=16'} - - graceful-fs@4.2.11: - resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==} - - graphemer@1.4.0: - resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==} - - has-flag@4.0.0: - resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} - engines: {node: '>=8'} - - has-property-descriptors@1.0.2: - resolution: {integrity: sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==} - - has-symbols@1.1.0: - resolution: {integrity: sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==} - engines: {node: '>= 0.4'} - - has-tostringtag@1.0.2: - resolution: {integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==} - engines: {node: '>= 0.4'} - - hash-base@3.0.5: - resolution: {integrity: sha512-vXm0l45VbcHEVlTCzs8M+s0VeYsB2lnlAaThoLKGXr3bE/VWDOelNUnycUPEhKEaXARL2TEFjBOyUiM6+55KBg==} - engines: {node: '>= 0.10'} - - hash.js@1.1.7: - resolution: {integrity: sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==} - - hasown@2.0.2: - resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==} - engines: {node: '>= 0.4'} - - hmac-drbg@1.0.1: - resolution: {integrity: sha512-Tti3gMqLdZfhOQY1Mzf/AanLiqh1WTiJgEj26ZuYQ9fbkLomzGchCws4FyrSd4VkpBfiNhaE1On+lOz894jvXg==} - - hookified@1.8.2: - resolution: {integrity: sha512-5nZbBNP44sFCDjSoB//0N7m508APCgbQ4mGGo1KJGBYyCKNHfry1Pvd0JVHZIxjdnqn8nFRBAN/eFB6Rk/4w5w==} - - html-tags@3.3.1: - resolution: {integrity: sha512-ztqyC3kLto0e9WbNp0aeP+M3kTt+nbaIveGmUxAtZa+8iFgKLUOD4YKM5j+f3QD89bra7UeumolZHKuOXnTmeQ==} - engines: {node: '>=8'} - - http-cache-semantics@4.1.1: - resolution: {integrity: sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==} - - http2-wrapper@2.2.1: - resolution: {integrity: sha512-V5nVw1PAOgfI3Lmeaj2Exmeg7fenjhRUgz1lPSezy1CuhPYbgQtbQj4jZfEAEMlaL+vupsvhjqCyjzob0yxsmQ==} - engines: {node: '>=10.19.0'} - - https-browserify@1.0.0: - resolution: {integrity: sha512-J+FkSdyD+0mA0N+81tMotaRMfSL9SGi+xpD3T6YApKsc3bGSXJlfXri3VyFOeYkfLRQisDk1W+jIFFKBeUBbBg==} - - human-signals@2.1.0: - resolution: {integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==} - engines: {node: '>=10.17.0'} - - ieee754@1.2.1: - resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==} - - ignore@5.3.2: - resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==} - engines: {node: '>= 4'} - - ignore@7.0.3: - resolution: {integrity: sha512-bAH5jbK/F3T3Jls4I0SO1hmPR0dKU0a7+SY6n1yzRtG54FLO8d6w/nxLFX2Nb7dBu6cCWXPaAME6cYqFUMmuCA==} - engines: {node: '>= 4'} - - immutable@4.3.7: - resolution: {integrity: sha512-1hqclzwYwjRDFLjcFxOM5AYkkG0rpFPpr1RLPMEuGczoS7YA8gLhy8SWXYRAA/XwfEHpfo3cw5JGioS32fnMRw==} - - immutable@5.1.1: - resolution: {integrity: sha512-3jatXi9ObIsPGr3N5hGw/vWWcTkq6hUYhpQz4k0wLC+owqWi/LiugIw9x0EdNZ2yGedKN/HzePiBvaJRXa0Ujg==} - - import-fresh@3.3.1: - resolution: {integrity: sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==} - engines: {node: '>=6'} - - imurmurhash@0.1.4: - resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} - engines: {node: '>=0.8.19'} - - inherits@2.0.4: - resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} - - ini@1.3.8: - resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==} - - inspect-with-kind@1.0.5: - resolution: {integrity: sha512-MAQUJuIo7Xqk8EVNP+6d3CKq9c80hi4tjIbIAT6lmGW9W6WzlHiu9PS8uSuUYU+Do+j1baiFp3H25XEVxDIG2g==} - - is-arguments@1.2.0: - resolution: {integrity: sha512-7bVbi0huj/wrIAOzb8U1aszg9kdi3KN/CyU19CTI7tAoZYEZoL9yCDXpbXN+uPsuWnP02cyug1gleqq+TU+YCA==} - engines: {node: '>= 0.4'} - - is-arrayish@0.2.1: - resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==} - - is-callable@1.2.7: - resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==} - engines: {node: '>= 0.4'} - - is-core-module@2.16.1: - resolution: {integrity: sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==} - engines: {node: '>= 0.4'} - - is-extglob@2.1.1: - resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} - engines: {node: '>=0.10.0'} - - is-fullwidth-code-point@3.0.0: - resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} - engines: {node: '>=8'} - - is-generator-function@1.1.0: - resolution: {integrity: sha512-nPUB5km40q9e8UfN/Zc24eLlzdSf9OfKByBw9CIdw4H1giPMeA0OIJvbchsCu4npfI2QcMVBsGEBHKZ7wLTWmQ==} - engines: {node: '>= 0.4'} - - is-glob@4.0.3: - resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} - engines: {node: '>=0.10.0'} - - is-nan@1.3.2: - resolution: {integrity: sha512-E+zBKpQ2t6MEo1VsonYmluk9NxGrbzpeeLC2xIViuO2EjU2xsXsBPwTr3Ykv9l08UYEVEdWeRZNouaZqF6RN0w==} - engines: {node: '>= 0.4'} - - is-number@7.0.0: - resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} - engines: {node: '>=0.12.0'} - - is-plain-obj@1.1.0: - resolution: {integrity: sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==} - engines: {node: '>=0.10.0'} - - is-plain-object@5.0.0: - resolution: {integrity: sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==} - engines: {node: '>=0.10.0'} - - is-regex@1.2.1: - resolution: {integrity: sha512-MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g==} - engines: {node: '>= 0.4'} - - is-stream@2.0.1: - resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==} - engines: {node: '>=8'} - - is-stream@4.0.1: - resolution: {integrity: sha512-Dnz92NInDqYckGEUJv689RbRiTSEHCQ7wOVeALbkOz999YpqT46yMRIGtSNl2iCL1waAZSx40+h59NV/EwzV/A==} - engines: {node: '>=18'} - - is-typed-array@1.1.15: - resolution: {integrity: sha512-p3EcsicXjit7SaskXHs1hA91QxgTw46Fv6EFKKGS5DRFLD8yKnohjF3hxoju94b/OcMZoQukzpPpBE9uLVKzgQ==} - engines: {node: '>= 0.4'} - - is-unicode-supported@2.1.0: - resolution: {integrity: sha512-mE00Gnza5EEB3Ds0HfMyllZzbBrmLOX3vfWoj9A9PEnTfratQ/BcaJOuMhnkhjXvb2+FkY3VuHqtAGpTPmglFQ==} - engines: {node: '>=18'} - - isarray@1.0.0: - resolution: {integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==} - - isexe@2.0.0: - resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} - - isomorphic-timers-promises@1.0.1: - resolution: {integrity: sha512-u4sej9B1LPSxTGKB/HiuzvEQnXH0ECYkSVQU39koSwmFAxhlEAFl9RdTvLv4TOTQUgBS5O3O5fwUxk6byBZ+IQ==} - engines: {node: '>=10'} - - jiti@2.4.2: - resolution: {integrity: sha512-rg9zJN+G4n2nfJl5MW3BMygZX56zKPNVEYYqq7adpmMh4Jn2QNEwhvQlFy6jPVdcod7txZtKHWnyZiA3a0zP7A==} - hasBin: true - - js-tokens@4.0.0: - resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} - - js-yaml@4.1.0: - resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} - hasBin: true - - jsesc@3.0.2: - resolution: {integrity: sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==} - engines: {node: '>=6'} - hasBin: true - - jsesc@3.1.0: - resolution: {integrity: sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==} - engines: {node: '>=6'} - hasBin: true - - json-buffer@3.0.1: - resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==} - - json-parse-even-better-errors@2.3.1: - resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==} - - json-schema-traverse@0.4.1: - resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==} - - json-schema-traverse@1.0.0: - resolution: {integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==} - - json-stable-stringify-without-jsonify@1.0.1: - resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==} - - json5@2.2.3: - resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==} - engines: {node: '>=6'} - hasBin: true - - jsonc-parser@3.3.1: - resolution: {integrity: sha512-HUgH65KyejrUFPvHFPbqOY0rsFip3Bo5wb4ngvdi1EpCYWUQDC5V+Y7mZws+DLkr4M//zQJoanu1SP+87Dv1oQ==} - - keyv@4.5.4: - resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==} - - keyv@5.3.3: - resolution: {integrity: sha512-Rwu4+nXI9fqcxiEHtbkvoes2X+QfkTRo1TMkPfwzipGsJlJO/z69vqB4FNl9xJ3xCpAcbkvmEabZfPzrwN3+gQ==} - - kind-of@6.0.3: - resolution: {integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==} - engines: {node: '>=0.10.0'} - - knip@5.50.5: - resolution: {integrity: sha512-I3mfebuG5x8i/mJJA41xjnmHMbLw75ymbDxlS7HMP+4CjY+jXEDSJyP3A2xmI5JF5/o47Fr8D7Pq3BVT0/nQPw==} - engines: {node: '>=18.18.0'} - hasBin: true - peerDependencies: - '@types/node': '>=18' - typescript: '>=5.0.4' - - known-css-properties@0.35.0: - resolution: {integrity: sha512-a/RAk2BfKk+WFGhhOCAYqSiFLc34k8Mt/6NWRI4joER0EYUzXIcFivjjnoD3+XU1DggLn/tZc3DOAgke7l8a4A==} - - known-css-properties@0.36.0: - resolution: {integrity: sha512-A+9jP+IUmuQsNdsLdcg6Yt7voiMF/D4K83ew0OpJtpu+l34ef7LaohWV0Rc6KNvzw6ZDizkqfyB5JznZnzuKQA==} - - levn@0.4.1: - resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==} - engines: {node: '>= 0.8.0'} - - lines-and-columns@1.2.4: - resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==} - - linguist-languages@7.29.0: - resolution: {integrity: sha512-KTh6ltVzr3ycnqxWw7zlzy8CqTSrpdymUzGl0EgYxK7cHoRgsX3VrZw4ExCWGCPX3uxxa7kgZwir4zeQkqjdZw==} - - lit-html@3.3.0: - resolution: {integrity: sha512-RHoswrFAxY2d8Cf2mm4OZ1DgzCoBKUKSPvA1fhtSELxUERq2aQQ2h05pO9j81gS1o7RIRJ+CePLogfyahwmynw==} - - locate-path@6.0.0: - resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==} - engines: {node: '>=10'} - - lodash.debounce@4.0.8: - resolution: {integrity: sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==} - - lodash.merge@4.6.2: - resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==} - - lodash.truncate@4.4.2: - resolution: {integrity: sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw==} - - loglevel-plugin-prefix@0.8.4: - resolution: {integrity: sha512-WpG9CcFAOjz/FtNht+QJeGpvVl/cdR6P0z6OcXSkr8wFJOsV2GRj2j10JLfjuA4aYkcKCNIEqRGCyTife9R8/g==} - - loglevel@1.9.2: - resolution: {integrity: sha512-HgMmCqIJSAKqo68l0rS2AanEWfkxaZ5wNiEFb5ggm08lDs9Xl2KxBlX3PTcaD2chBM1gXAYf491/M2Rv8Jwayg==} - engines: {node: '>= 0.6.0'} - - lowercase-keys@3.0.0: - resolution: {integrity: sha512-ozCC6gdQ+glXOQsveKD0YsDy8DSQFjDTz4zyzEHNV5+JP5D62LmfDZ6o1cycFx9ouG940M5dE8C8CTewdj2YWQ==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - - lru-cache@5.1.1: - resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==} - - magic-string@0.30.17: - resolution: {integrity: sha512-sNPKHvyjVf7gyjwS4xGTaW/mCnF8wnjtifKBEhxfZ7E/S8tQ0rssrwGNn6q8JH/ohItJfSQp9mBtQYuTlH5QnA==} - - make-dir@4.0.0: - resolution: {integrity: sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==} - engines: {node: '>=10'} - - math-intrinsics@1.1.0: - resolution: {integrity: sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==} - engines: {node: '>= 0.4'} - - mathml-tag-names@2.1.3: - resolution: {integrity: sha512-APMBEanjybaPzUrfqU0IMU5I0AswKMH7k8OTLs0vvV4KZpExkTkY87nR/zpbuTPj+gARop7aGUbl11pnDfW6xg==} - - md5.js@1.3.5: - resolution: {integrity: sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==} - - mdn-data@2.12.2: - resolution: {integrity: sha512-IEn+pegP1aManZuckezWCO+XZQDplx1366JoVhTpMpBB1sPey/SbveZQUosKiKiGYjg1wH4pMlNgXbCiYgihQA==} - - mdn-data@2.21.0: - resolution: {integrity: sha512-+ZKPQezM5vYJIkCxaC+4DTnRrVZR1CgsKLu5zsQERQx6Tea8Y+wMx5A24rq8A8NepCeatIQufVAekKNgiBMsGQ==} - - meow@13.2.0: - resolution: {integrity: sha512-pxQJQzB6djGPXh08dacEloMFopsOqGVRKFPYvPOt9XDZ1HasbgDZA74CJGreSU4G3Ak7EFJGoiH2auq+yXISgA==} - engines: {node: '>=18'} - - merge-stream@2.0.0: - resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==} - - merge2@1.4.1: - resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} - engines: {node: '>= 8'} - - micromatch@4.0.8: - resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==} - engines: {node: '>=8.6'} - - miller-rabin@4.0.1: - resolution: {integrity: sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA==} - hasBin: true - - mime-db@1.54.0: - resolution: {integrity: sha512-aU5EJuIN2WDemCcAp2vFBfp/m4EAhWJnUNSSw0ixs7/kXbd6Pg64EmwJkNdFhB8aWt1sH2CTXrLxo/iAGV3oPQ==} - engines: {node: '>= 0.6'} - - mimic-fn@2.1.0: - resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==} - engines: {node: '>=6'} - - mimic-response@3.1.0: - resolution: {integrity: sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==} - engines: {node: '>=10'} - - mimic-response@4.0.0: - resolution: {integrity: sha512-e5ISH9xMYU0DzrT+jl8q2ze9D6eWBto+I8CNpe+VI+K2J/F/k3PdkdTdz4wvGVH4NTpo+NRYTVIuMQEMMcsLqg==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - - minimalistic-assert@1.0.1: - resolution: {integrity: sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==} - - minimalistic-crypto-utils@1.0.1: - resolution: {integrity: sha512-JIYlbt6g8i5jKfJ3xz7rF0LXmv2TkDxBLUkiBeZ7bAx4GnnNMr8xFpGnOxn6GhTEHx3SjRrZEoU+j04prX1ktg==} - - minimatch@3.1.2: - resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} - - minimatch@9.0.5: - resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==} - engines: {node: '>=16 || 14 >=14.17'} - - minimist@1.2.8: - resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==} - - ms@2.1.3: - resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} - - nanoid@3.3.11: - resolution: {integrity: sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==} - engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} - hasBin: true - - natural-compare@1.4.0: - resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==} - - natural-orderby@5.0.0: - resolution: {integrity: sha512-kKHJhxwpR/Okycz4HhQKKlhWe4ASEfPgkSWNmKFHd7+ezuQlxkA5cM3+XkBPvm1gmHen3w53qsYAv+8GwRrBlg==} - engines: {node: '>=18'} - - node-addon-api@7.1.1: - resolution: {integrity: sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==} - - node-releases@2.0.19: - resolution: {integrity: sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==} - - node-stdlib-browser@1.3.1: - resolution: {integrity: sha512-X75ZN8DCLftGM5iKwoYLA3rjnrAEs97MkzvSd4q2746Tgpg8b8XWiBGiBG4ZpgcAqBgtgPHTiAc8ZMCvZuikDw==} - engines: {node: '>=10'} - - normalize-path@3.0.0: - resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==} - engines: {node: '>=0.10.0'} - - normalize-url@8.0.1: - resolution: {integrity: sha512-IO9QvjUMWxPQQhs60oOu10CRkWCiZzSUkzbXGGV9pviYl1fXYcvkzQ5jV9z8Y6un8ARoVRl4EtC6v6jNqbaJ/w==} - engines: {node: '>=14.16'} - - npm-run-path@4.0.1: - resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==} - engines: {node: '>=8'} - - object-inspect@1.13.4: - resolution: {integrity: sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==} - engines: {node: '>= 0.4'} - - object-is@1.1.6: - resolution: {integrity: sha512-F8cZ+KfGlSGi09lJT7/Nd6KJZ9ygtvYC0/UYYLI9nmQKLMnydpB9yvbv9K1uSkEu7FU9vYPmVwLg328tX+ot3Q==} - engines: {node: '>= 0.4'} - - object-keys@1.1.1: - resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==} - engines: {node: '>= 0.4'} - - object.assign@4.1.7: - resolution: {integrity: sha512-nK28WOo+QIjBkDduTINE4JkF/UJJKyf2EJxvJKfblDpyg0Q+pkOHNTL0Qwy6NP6FhE/EnzV73BxxqcJaXY9anw==} - engines: {node: '>= 0.4'} - - onetime@5.1.2: - resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==} - engines: {node: '>=6'} - - optics-ts@2.4.1: - resolution: {integrity: sha512-HaYzMHvC80r7U/LqAd4hQyopDezC60PO2qF5GuIwALut2cl5rK1VWHsqTp0oqoJJWjiv6uXKqsO+Q2OO0C3MmQ==} - - optionator@0.9.4: - resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==} - engines: {node: '>= 0.8.0'} - - os-browserify@0.3.0: - resolution: {integrity: sha512-gjcpUc3clBf9+210TRaDWbf+rZZZEshZ+DlXMRCeAjp0xhTrnQsKHypIy1J3d5hKdUzj69t708EHtU8P6bUn0A==} - - oxlint@0.16.7: - resolution: {integrity: sha512-/ab3XRLSbZT25/M2Hm7MKrcQDsqzk1DcWyfFTRidorOvYAkgk0p7gW93e7nDPHnatsdLqSWIShkXO1DFOsP3Nw==} - engines: {node: '>=8.*'} - hasBin: true - - p-cancelable@3.0.0: - resolution: {integrity: sha512-mlVgR3PGuzlo0MmTdk4cXqXWlwQDLnONTAg6sm62XkMJEiRxN3GL3SffkYvqwonbkJBcrI7Uvv5Zh9yjvn2iUw==} - engines: {node: '>=12.20'} - - p-limit@3.1.0: - resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==} - engines: {node: '>=10'} - - p-locate@5.0.0: - resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==} - engines: {node: '>=10'} - - pako@1.0.11: - resolution: {integrity: sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==} - - parent-module@1.0.1: - resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} - engines: {node: '>=6'} - - parse-asn1@5.1.7: - resolution: {integrity: sha512-CTM5kuWR3sx9IFamcl5ErfPl6ea/N8IYwiJ+vpeB2g+1iknv7zBl5uPwbMbRVznRVbrNY6lGuDoE5b30grmbqg==} - engines: {node: '>= 0.10'} - - parse-json@5.2.0: - resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==} - engines: {node: '>=8'} - - parse-ms@4.0.0: - resolution: {integrity: sha512-TXfryirbmq34y8QBwgqCVLi+8oA3oWx2eAnSn62ITyEhEYaWRlVZ2DvMM9eZbMs/RfxPu/PK/aBLyGj4IrqMHw==} - engines: {node: '>=18'} - - path-browserify@1.0.1: - resolution: {integrity: sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==} - - path-exists@4.0.0: - resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==} - engines: {node: '>=8'} - - path-key@3.1.1: - resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} - engines: {node: '>=8'} - - path-parse@1.0.7: - resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==} - - path-type@4.0.0: - resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==} - engines: {node: '>=8'} - - pbkdf2@3.1.2: - resolution: {integrity: sha512-iuh7L6jA7JEGu2WxDwtQP1ddOpaJNC4KlDEFfdQajSGgGPNi4OyDc2R7QnbY2bR9QjBVGwgvTdNJZoE7RaxUMA==} - engines: {node: '>=0.12'} - - peek-readable@5.4.2: - resolution: {integrity: sha512-peBp3qZyuS6cNIJ2akRNG1uo1WJ1d0wTxg/fxMdZ0BqCVhx242bSFHM9eNqflfJVS9SsgkzgT/1UgnsurBOTMg==} - engines: {node: '>=14.16'} - - pend@1.2.0: - resolution: {integrity: sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==} - - php-parser@3.2.3: - resolution: {integrity: sha512-Kyu33y36aRed6HUi7ZS8EDG9/ZBz4lx/cJgoQui1B/x0L0ZCbCiBstdGnlGgufk8YwcLsk4J9VK9auXoL4Jz8A==} - - picocolors@1.1.1: - resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==} - - picomatch@2.3.1: - resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} - engines: {node: '>=8.6'} - - picomatch@4.0.2: - resolution: {integrity: sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==} - engines: {node: '>=12'} - - piscina@4.9.2: - resolution: {integrity: sha512-Fq0FERJWFEUpB4eSY59wSNwXD4RYqR+nR/WiEVcZW8IWfVBxJJafcgTEZDQo8k3w0sUarJ8RyVbbUF4GQ2LGbQ==} - - pkg-dir@5.0.0: - resolution: {integrity: sha512-NPE8TDbzl/3YQYY7CSS228s3g2ollTFnc+Qi3tqmqJp9Vg2ovUpixcJEo2HJScN2Ez+kEaal6y70c0ehqJBJeA==} - engines: {node: '>=10'} - - possible-typed-array-names@1.1.0: - resolution: {integrity: sha512-/+5VFTchJDoVj3bhoqi6UeymcD00DAwb1nJwamzPvHEszJ4FpF6SNNbUbOS8yI56qHzdV8eK0qEfOSiodkTdxg==} - engines: {node: '>= 0.4'} - - postcss-media-query-parser@0.2.3: - resolution: {integrity: sha512-3sOlxmbKcSHMjlUXQZKQ06jOswE7oVkXPxmZdoB1r5l0q6gTFTQSHxNxOrCccElbW7dxNytifNEo8qidX2Vsig==} - - postcss-resolve-nested-selector@0.1.6: - resolution: {integrity: sha512-0sglIs9Wmkzbr8lQwEyIzlDOOC9bGmfVKcJTaxv3vMmd3uo4o4DerC3En0bnmgceeql9BfC8hRkp7cg0fjdVqw==} - - postcss-safe-parser@7.0.1: - resolution: {integrity: sha512-0AioNCJZ2DPYz5ABT6bddIqlhgwhpHZ/l65YAYo0BCIn0xiDpsnTHz0gnoTGk0OXZW0JRs+cDwL8u/teRdz+8A==} - engines: {node: '>=18.0'} - peerDependencies: - postcss: ^8.4.31 - - postcss-scss@4.0.9: - resolution: {integrity: sha512-AjKOeiwAitL/MXxQW2DliT28EKukvvbEWx3LBmJIRN8KfBGZbRTxNYW0kSqi1COiTZ57nZ9NW06S6ux//N1c9A==} - engines: {node: '>=12.0'} - peerDependencies: - postcss: ^8.4.29 - - postcss-selector-parser@6.1.2: - resolution: {integrity: sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==} - engines: {node: '>=4'} - - postcss-selector-parser@7.1.0: - resolution: {integrity: sha512-8sLjZwK0R+JlxlYcTuVnyT2v+htpdrjDOKuMcOVdYjt52Lh8hWRYpxBPoKx/Zg+bcjc3wx6fmQevMmUztS/ccA==} - engines: {node: '>=4'} - - postcss-sorting@8.0.2: - resolution: {integrity: sha512-M9dkSrmU00t/jK7rF6BZSZauA5MAaBW4i5EnJXspMwt4iqTh/L9j6fgMnbElEOfyRyfLfVbIHj/R52zHzAPe1Q==} - peerDependencies: - postcss: ^8.4.20 - - postcss-value-parser@4.2.0: - resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==} - - postcss@8.5.3: - resolution: {integrity: sha512-dle9A3yYxlBSrt8Fu+IpjGT8SY8hN0mlaA6GY8t0P5PjIOZemULz/E2Bnm/2dcUOena75OTNkHI76uZBNUUq3A==} - engines: {node: ^10 || ^12 || >=14} - - prelude-ls@1.2.1: - resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==} - engines: {node: '>= 0.8.0'} - - prettier-plugin-pkg@0.19.0: - resolution: {integrity: sha512-wlBvVhAZQ+iOH8/4gWc1SxJbf5++xwKmnFkqHYUsmoQIg6hgdyL1055Z9FOWa6cumqL/QwqdOzY9aH4McdjKyw==} - engines: {node: ^14.18.0 || >=16.0.0} - peerDependencies: - prettier: ^3.0.3 - - prettier-plugin-sh@0.17.2: - resolution: {integrity: sha512-7+dEo/IYbhrUj4qP+1QXj41/5Hv9ZkxBuEatI1jywrcAlVF1aGhdYJF4Sn+M67nkA16iRL53W4FSRe1bitTdmQ==} - engines: {node: '>=16.0.0'} - peerDependencies: - prettier: ^3.0.3 - - prettier@3.5.3: - resolution: {integrity: sha512-QQtaxnoDJeAkDvDKWCLiwIXkTgRhwYDEQCghU9Z6q03iyek/rxRh/2lC3HB7P8sWT2xC/y5JDctPLBIGzHKbhw==} - engines: {node: '>=14'} - hasBin: true - - pretty-ms@9.2.0: - resolution: {integrity: sha512-4yf0QO/sllf/1zbZWYnvWw3NxCQwLXKzIj0G849LSufP15BXKM0rbD2Z3wVnkMfjdn/CB0Dpp444gYAACdsplg==} - engines: {node: '>=18'} - - process-nextick-args@2.0.1: - resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==} - - process@0.11.10: - resolution: {integrity: sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==} - engines: {node: '>= 0.6.0'} - - public-encrypt@4.0.3: - resolution: {integrity: sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q==} - - punycode@1.4.1: - resolution: {integrity: sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ==} - - punycode@2.3.1: - resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==} - engines: {node: '>=6'} - - purify-ts@2.1.1: - resolution: {integrity: sha512-usEWO44vu0GnfnvfmgT5L8LDO4dTHVC2kcITclDi2tbNGMEcbQm7IZADs8FD8chqni7tU5F0LZQRQdzFHndnPw==} - deprecated: this version contains broken build - - qs@6.14.0: - resolution: {integrity: sha512-YWWTjgABSKcvs/nWBi9PycY/JiPJqOD4JA6o9Sej2AtvSGarXxKC3OQSk4pAarbdQlKAh5D4FCQkJNkW+GAn3w==} - engines: {node: '>=0.6'} - - querystring-es3@0.2.1: - resolution: {integrity: sha512-773xhDQnZBMFobEiztv8LIl70ch5MSF/jUQVlhwFyBILqq96anmoctVIYz+ZRp0qbCKATTn6ev02M3r7Ga5vqA==} - engines: {node: '>=0.4.x'} - - queue-microtask@1.2.3: - resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} - - quick-lru@5.1.1: - resolution: {integrity: sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==} - engines: {node: '>=10'} - - randombytes@2.1.0: - resolution: {integrity: sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==} - - randomfill@1.0.4: - resolution: {integrity: sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw==} - - readable-stream@2.3.8: - resolution: {integrity: sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==} - - readable-stream@3.6.2: - resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==} - engines: {node: '>= 6'} - - readdirp@4.1.2: - resolution: {integrity: sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==} - engines: {node: '>= 14.18.0'} - - regenerate-unicode-properties@10.2.0: - resolution: {integrity: sha512-DqHn3DwbmmPVzeKj9woBadqmXxLvQoQIwu7nopMc72ztvxVmVk2SBhSnx67zuye5TP+lJsb/TBQsjLKhnDf3MA==} - engines: {node: '>=4'} - - regenerate@1.4.2: - resolution: {integrity: sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==} - - regenerator-runtime@0.14.1: - resolution: {integrity: sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==} - - regenerator-transform@0.15.2: - resolution: {integrity: sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==} - - regexp-to-ast@0.5.0: - resolution: {integrity: sha512-tlbJqcMHnPKI9zSrystikWKwHkBqu2a/Sgw01h3zFjvYrMxEDYHzzoMZnUrbIfpTFEsoRnnviOXNCzFiSc54Qw==} - - regexpu-core@6.2.0: - resolution: {integrity: sha512-H66BPQMrv+V16t8xtmq+UC0CBpiTBA60V8ibS1QVReIp8T1z8hwFxqcGzm9K6lgsN7sB5edVH8a+ze6Fqm4weA==} - engines: {node: '>=4'} - - regjsgen@0.8.0: - resolution: {integrity: sha512-RvwtGe3d7LvWiDQXeQw8p5asZUmfU1G/l6WbUXeHta7Y2PEIvBTwH6E2EfmYUK8pxcxEdEmaomqyp0vZZ7C+3Q==} - - regjsparser@0.12.0: - resolution: {integrity: sha512-cnE+y8bz4NhMjISKbgeVJtqNbtf5QpjZP+Bslo+UqkIt9QPnX9q095eiRRASJG1/tz6dlNr6Z5NsBiWYokp6EQ==} - hasBin: true - - require-from-string@2.0.2: - resolution: {integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==} - engines: {node: '>=0.10.0'} - - resolve-alpn@1.2.1: - resolution: {integrity: sha512-0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g==} - - resolve-from@4.0.0: - resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==} - engines: {node: '>=4'} - - resolve-from@5.0.0: - resolution: {integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==} - engines: {node: '>=8'} - - resolve@1.22.10: - resolution: {integrity: sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w==} - engines: {node: '>= 0.4'} - hasBin: true - - responselike@3.0.0: - resolution: {integrity: sha512-40yHxbNcl2+rzXvZuVkrYohathsSJlMTXKryG5y8uciHv1+xDLHQpgjG64JUO9nrEq2jGLH6IZ8BcZyw3wrweg==} - engines: {node: '>=14.16'} - - reusify@1.1.0: - resolution: {integrity: sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==} - engines: {iojs: '>=1.0.0', node: '>=0.10.0'} - - ripemd160@2.0.2: - resolution: {integrity: sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==} - - rollup@4.40.0: - resolution: {integrity: sha512-Noe455xmA96nnqH5piFtLobsGbCij7Tu+tb3c1vYjNbTkfzGqXqQXG3wJaYXkRZuQ0vEYN4bhwg7QnIrqB5B+w==} - engines: {node: '>=18.0.0', npm: '>=8.0.0'} - hasBin: true - - run-parallel@1.2.0: - resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} - - rxjs@7.8.2: - resolution: {integrity: sha512-dhKf903U/PQZY6boNNtAGdWbG85WAbjT/1xYoZIC7FAY0yWapOBQVsVrDl58W86//e1VpMNBtRV4MaXfdMySFA==} - - safe-buffer@5.1.2: - resolution: {integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==} - - safe-buffer@5.2.1: - resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==} - - safe-regex-test@1.1.0: - resolution: {integrity: sha512-x/+Cz4YrimQxQccJf5mKEbIa1NzeCRNI5Ecl/ekmlYaampdNLPalVyIcCZNNH3MvmqBugV5TMYZXv0ljslUlaw==} - engines: {node: '>= 0.4'} - - sass-embedded-android-arm64@1.87.0: - resolution: {integrity: sha512-uqeZoBuXm3W2KhxolScAAfWOLHL21e50g7AxlLmG0he7WZsWw6e9kSnmq301iLIFp4kvmXYXbXbNKAeu9ItRYA==} - engines: {node: '>=14.0.0'} - cpu: [arm64] - os: [android] - - sass-embedded-android-arm@1.87.0: - resolution: {integrity: sha512-Z20u/Y1kFDpMbgiloR5YPLxNuMVeKQRC8e/n68oAAxf3u7rDSmNn2msi7USqgT1f2zdBBNawn/ifbFEla6JiHw==} - engines: {node: '>=14.0.0'} - cpu: [arm] - os: [android] - - sass-embedded-android-ia32@1.87.0: - resolution: {integrity: sha512-hSWTqo2Igdig528cUb1W1+emw9d1J4+nqOoR4tERS04zcwRRFNDiuBT0o5meV7nkEwE982F+h57YdcRXj8gTtg==} - engines: {node: '>=14.0.0'} - cpu: [ia32] - os: [android] - - sass-embedded-android-riscv64@1.87.0: - resolution: {integrity: sha512-kBAPSjiTBLy5ua/0LRNAJwOAARhzFU7gP35fYORJcdBuz1lkIVPVnid1lh9qQ6Ce9MOJcr7VKFtGnTuqVeig5A==} - engines: {node: '>=14.0.0'} - cpu: [riscv64] - os: [android] - - sass-embedded-android-x64@1.87.0: - resolution: {integrity: sha512-ZHMrNdtdMSpJUYco2MesnlPwDTZftD3pqkkOMI2pbqarPoFUKJtP5k80nwCM0sJGtqfNE+O16w9yPght0CMiJg==} - engines: {node: '>=14.0.0'} - cpu: [x64] - os: [android] - - sass-embedded-darwin-arm64@1.87.0: - resolution: {integrity: sha512-7TK1JWJdCIRSdZv5CJv/HpDz/wIfwUy2FoPz9sVOEj1pDTH0N+VfJd5VutCddIdoQN9jr0ap8vwkc65FbAxV2A==} - engines: {node: '>=14.0.0'} - cpu: [arm64] - os: [darwin] - - sass-embedded-darwin-x64@1.87.0: - resolution: {integrity: sha512-2JiQzt7FmgUC4MYT2QvbeH/Bi3e76WEhaYoc5P3WyTW8unsHksyTdMuTuYe0Qf9usIyt6bmm5no/4BBw7c8Cig==} - engines: {node: '>=14.0.0'} - cpu: [x64] - os: [darwin] - - sass-embedded-linux-arm64@1.87.0: - resolution: {integrity: sha512-5z+mwJCbGZcg+q+MwdEVSh0ogFK7OSAe175Gsozzr/Izw34Q+RGUw9O82jsV2c4YNuTAQvzEHgIO5cvNvt3Quw==} - engines: {node: '>=14.0.0'} - cpu: [arm64] - os: [linux] - - sass-embedded-linux-arm@1.87.0: - resolution: {integrity: sha512-z5P6INMsGXiUcq1sRRbksyQUhalFFYjTEexuxfSYdK3U2YQMADHubQh8pGzkWvFRPOpnh83RiGuwvpaARYHnsw==} - engines: {node: '>=14.0.0'} - cpu: [arm] - os: [linux] - - sass-embedded-linux-ia32@1.87.0: - resolution: {integrity: sha512-Xzcp+YPp0iakGL148Jl57CO+MxLuj2jsry3M+rc1cSnDlvkjNVs6TMxaL70GFeV5HdU2V60voYcgE7adDUtJjw==} - engines: {node: '>=14.0.0'} - cpu: [ia32] - os: [linux] - - sass-embedded-linux-musl-arm64@1.87.0: - resolution: {integrity: sha512-HWE5eTRCoKzFZWsxOjDMTF5m4DDTQ0n7NJxSYiUXPBDydr9viPXbGOMYG7WVJLjiF7upr7DYo/mfp/SNTMlZyg==} - engines: {node: '>=14.0.0'} - cpu: [arm64] - os: [linux] - - sass-embedded-linux-musl-arm@1.87.0: - resolution: {integrity: sha512-4PyqOWhRzyu06RRmpCCBOJdF4BOv7s446wrV6yODtEyyfSIDx3MJabo3KT0oJ1lTWSI/aU3R89bKx0JFXcIHHw==} - engines: {node: '>=14.0.0'} - cpu: [arm] - os: [linux] - - sass-embedded-linux-musl-ia32@1.87.0: - resolution: {integrity: sha512-aQaPvlRn3kh93PLQvl6BcFKu8Ji92+42blFEkg6nMVvmugD5ZwH2TGFrX25ibx4CYxRpMS4ssF7a0i7vy5HB1Q==} - engines: {node: '>=14.0.0'} - cpu: [ia32] - os: [linux] - - sass-embedded-linux-musl-riscv64@1.87.0: - resolution: {integrity: sha512-o5DxcqiFzET3KRWo+futHr/lhAMBP3tJGGx8YIgpHQYfvDMbsvE0hiFC+nZ/GF9dbcGd+ceIQwfvE5mcc7Gsjw==} - engines: {node: '>=14.0.0'} - cpu: [riscv64] - os: [linux] - - sass-embedded-linux-musl-x64@1.87.0: - resolution: {integrity: sha512-dKxWsu9Wu/CyfzQmHdeiGqrRSzJ85VUjbSx+aP1/7ttmps3SSg+YW95PuqnCOa7GSuSreC3dKKpXHTywUxMLQA==} - engines: {node: '>=14.0.0'} - cpu: [x64] - os: [linux] - - sass-embedded-linux-riscv64@1.87.0: - resolution: {integrity: sha512-Sy3ESZ4FwBiijvmTA9n+0p0w3MNCue1AgINVPzpAY27EFi0h49eqQm9SWfOkFqmkFS2zFRYowdQOr5Bbr2gOXA==} - engines: {node: '>=14.0.0'} - cpu: [riscv64] - os: [linux] - - sass-embedded-linux-x64@1.87.0: - resolution: {integrity: sha512-+UfjakOcHHKTnEqB3EZ+KqzezQOe1emvy4Rs+eQhLyfekpYuNze/qlRvYxfKTmrtvDiUrIto8MXsyZfMLzkuMA==} - engines: {node: '>=14.0.0'} - cpu: [x64] - os: [linux] - - sass-embedded-win32-arm64@1.87.0: - resolution: {integrity: sha512-m1DS6FYUE0/fv+vt38uQB/kxR4UjnyD+2zcSc298pFmA0aYh/XZIPWw7RxG1HL3KLE1ZrGyu3254MPoxRhs3ig==} - engines: {node: '>=14.0.0'} - cpu: [arm64] - os: [win32] - - sass-embedded-win32-ia32@1.87.0: - resolution: {integrity: sha512-JztXLo59GMe2E6g+kCsyiERYhtZgkcyDYx6CrXoSTE5WaE+RbxRiCCCv8/1+hf406f08pUxJ8G0Ody7M5urtBA==} - engines: {node: '>=14.0.0'} - cpu: [ia32] - os: [win32] - - sass-embedded-win32-x64@1.87.0: - resolution: {integrity: sha512-4nQErpauvhgSo+7ClumGdjdf9sGx+U9yBgvhI0+zUw+D5YvraVgvA0Lk8Wuwntx2PqnvKUk8YDr/vxHJostv4Q==} - engines: {node: '>=14.0.0'} - cpu: [x64] - os: [win32] - - sass-embedded@1.87.0: - resolution: {integrity: sha512-1IA3iTJNh4BkkA/nidKiVwbmkxr9o6LsPegycHMX/JYs255zpocN5GdLF1+onohQCJxbs5ldr8osKV7qNaNBjg==} - engines: {node: '>=16.0.0'} - hasBin: true - - sass@1.80.6: - resolution: {integrity: sha512-ccZgdHNiBF1NHBsWvacvT5rju3y1d/Eu+8Ex6c21nHp2lZGLBEtuwc415QfiI1PJa1TpCo3iXwwSRjRpn2Ckjg==} - engines: {node: '>=14.0.0'} - hasBin: true - - seek-bzip@2.0.0: - resolution: {integrity: sha512-SMguiTnYrhpLdk3PwfzHeotrcwi8bNV4iemL9tx9poR/yeaMYwB9VzR1w7b57DuWpuqR8n6oZboi0hj3AxZxQg==} - hasBin: true - - semver-regex@4.0.5: - resolution: {integrity: sha512-hunMQrEy1T6Jr2uEVjrAIqjwWcQTgOAcIM52C8MY1EZSD3DDNft04XzvYKPqjED65bNVVko0YI38nYeEHCX3yw==} - engines: {node: '>=12'} - - semver-truncate@3.0.0: - resolution: {integrity: sha512-LJWA9kSvMolR51oDE6PN3kALBNaUdkxzAGcexw8gjMA8xr5zUqK0JiR3CgARSqanYF3Z1YHvsErb1KDgh+v7Rg==} - engines: {node: '>=12'} - - semver@6.3.1: - resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==} - hasBin: true - - semver@7.7.1: - resolution: {integrity: sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==} - engines: {node: '>=10'} - hasBin: true - - set-function-length@1.2.2: - resolution: {integrity: sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==} - engines: {node: '>= 0.4'} - - setimmediate@1.0.5: - resolution: {integrity: sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==} - - sh-syntax@0.5.7: - resolution: {integrity: sha512-74m9dt91konrF5+m0kASugzi37VxKsnTJQ6yvdDZu3IijG5/vIZpImP6FadsJLWNt2X2YD0VaTwW5W7Ox7mFVg==} - engines: {node: '>=16.0.0'} - - sha.js@2.4.11: - resolution: {integrity: sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==} - hasBin: true - - shebang-command@2.0.0: - resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} - engines: {node: '>=8'} - - shebang-regex@3.0.0: - resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} - engines: {node: '>=8'} - - side-channel-list@1.0.0: - resolution: {integrity: sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==} - engines: {node: '>= 0.4'} - - side-channel-map@1.0.1: - resolution: {integrity: sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==} - engines: {node: '>= 0.4'} - - side-channel-weakmap@1.0.2: - resolution: {integrity: sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==} - engines: {node: '>= 0.4'} - - side-channel@1.1.0: - resolution: {integrity: sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==} - engines: {node: '>= 0.4'} - - signal-exit@3.0.7: - resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==} - - signal-exit@4.1.0: - resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==} - engines: {node: '>=14'} - - slash@3.0.0: - resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==} - engines: {node: '>=8'} - - slice-ansi@4.0.0: - resolution: {integrity: sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==} - engines: {node: '>=10'} - - smol-toml@1.3.3: - resolution: {integrity: sha512-KMVLNWu490KlNfD0lbfDBUktJIEaZRBj1eeK0SMfdpO/rfyARIzlnPVI1Ge4l0vtSJmQUAiGKxMyLGrCT38iyA==} - engines: {node: '>= 18'} - - sort-keys-length@1.0.1: - resolution: {integrity: sha512-GRbEOUqCxemTAk/b32F2xa8wDTs+Z1QHOkbhJDQTvv/6G3ZkbJ+frYWsTcc7cBB3Fu4wy4XlLCuNtJuMn7Gsvw==} - engines: {node: '>=0.10.0'} - - sort-keys@1.1.2: - resolution: {integrity: sha512-vzn8aSqKgytVik0iwdBEi+zevbTYZogewTUM6dtpmGwEcdzbub/TX4bCzRhebDCRC3QzXgJsLRKB2V/Oof7HXg==} - engines: {node: '>=0.10.0'} - - source-map-js@1.2.1: - resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==} - engines: {node: '>=0.10.0'} - - source-map-support@0.5.21: - resolution: {integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==} - - source-map@0.6.1: - resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==} - engines: {node: '>=0.10.0'} - - source-map@0.7.4: - resolution: {integrity: sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==} - engines: {node: '>= 8'} - - stream-browserify@3.0.0: - resolution: {integrity: sha512-H73RAHsVBapbim0tU2JwwOiXUj+fikfiaoYAKHF3VJfA0pe2BCzkhAHBlLG6REzE+2WNZcxOXjK7lkso+9euLA==} - - stream-http@3.2.0: - resolution: {integrity: sha512-Oq1bLqisTyK3TSCXpPbT4sdeYNdmyZJv1LxpEm2vu1ZhK89kSE5YXwZc3cWk0MagGaKriBh9mCFbVGtO+vY29A==} - - streamx@2.22.0: - resolution: {integrity: sha512-sLh1evHOzBy/iWRiR6d1zRcLao4gGZr3C1kzNz4fopCOKJb6xD9ub8Mpi9Mr1R6id5o43S+d93fI48UC5uM9aw==} - - string-width@4.2.3: - resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} - engines: {node: '>=8'} - - string_decoder@1.1.1: - resolution: {integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==} - - string_decoder@1.3.0: - resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==} - - strip-ansi@6.0.1: - resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} - engines: {node: '>=8'} - - strip-dirs@3.0.0: - resolution: {integrity: sha512-I0sdgcFTfKQlUPZyAqPJmSG3HLO9rWDFnxonnIbskYNM3DwFOeTNB5KzVq3dA1GdRAc/25b5Y7UO2TQfKWw4aQ==} - - strip-final-newline@2.0.0: - resolution: {integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==} - engines: {node: '>=6'} - - strip-json-comments@3.1.1: - resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} - engines: {node: '>=8'} - - strip-json-comments@5.0.1: - resolution: {integrity: sha512-0fk9zBqO67Nq5M/m45qHCJxylV/DhBlIOVExqgOMiCCrzrhU6tCibRXNqE3jwJLftzE9SNuZtYbpzcO+i9FiKw==} - engines: {node: '>=14.16'} - - strtok3@9.1.1: - resolution: {integrity: sha512-FhwotcEqjr241ZbjFzjlIYg6c5/L/s4yBGWSMvJ9UoExiSqL+FnFA/CaeZx17WGaZMS/4SOZp8wH18jSS4R4lw==} - engines: {node: '>=16'} - - style-search@0.1.0: - resolution: {integrity: sha512-Dj1Okke1C3uKKwQcetra4jSuk0DqbzbYtXipzFlFMZtowbF1x7BKJwB9AayVMyFARvU8EDrZdcax4At/452cAg==} - - stylelint-config-clean-order@7.0.0: - resolution: {integrity: sha512-R28w1xNliIbem3o+VIrNjAU8cMgxrGlDoXVqWW7lJ1OvSDsmNGj5aKSW6Xm7i5PK4E99T3Hs19BJFni5IbE56g==} - peerDependencies: - stylelint: '>=14' - - stylelint-config-recommended-scss@14.1.0: - resolution: {integrity: sha512-bhaMhh1u5dQqSsf6ri2GVWWQW5iUjBYgcHkh7SgDDn92ijoItC/cfO/W+fpXshgTQWhwFkP1rVcewcv4jaftRg==} - engines: {node: '>=18.12.0'} - peerDependencies: - postcss: ^8.3.3 - stylelint: ^16.6.1 - peerDependenciesMeta: - postcss: - optional: true - - stylelint-config-recommended@14.0.1: - resolution: {integrity: sha512-bLvc1WOz/14aPImu/cufKAZYfXs/A/owZfSMZ4N+16WGXLoX5lOir53M6odBxvhgmgdxCVnNySJmZKx73T93cg==} - engines: {node: '>=18.12.0'} - peerDependencies: - stylelint: ^16.1.0 - - stylelint-config-sass-guidelines@12.1.0: - resolution: {integrity: sha512-NTxEtVT6uNSqRvq+A3ScyKhjUrY/Z845TnpWEwnMgIPZ/+/Waa4+51r6OPuQRMu4XZS3D8DK1UaT4TWFBvuuAw==} - engines: {node: '>=18.12.0'} - peerDependencies: - postcss: ^8.4.21 - stylelint: ^16.1.0 - - stylelint-config-standard-scss@14.0.0: - resolution: {integrity: sha512-6Pa26D9mHyi4LauJ83ls3ELqCglU6VfCXchovbEqQUiEkezvKdv6VgsIoMy58i00c854wVmOw0k8W5FTpuaVqg==} - engines: {node: '>=18.12.0'} - peerDependencies: - postcss: ^8.3.3 - stylelint: ^16.11.0 - peerDependenciesMeta: - postcss: - optional: true - - stylelint-config-standard@36.0.1: - resolution: {integrity: sha512-8aX8mTzJ6cuO8mmD5yon61CWuIM4UD8Q5aBcWKGSf6kg+EC3uhB+iOywpTK4ca6ZL7B49en8yanOFtUW0qNzyw==} - engines: {node: '>=18.12.0'} - peerDependencies: - stylelint: ^16.1.0 - - stylelint-declaration-block-no-ignored-properties@2.8.0: - resolution: {integrity: sha512-Ws8Cav7Y+SPN0JsV407LrnNXWOrqGjxShf+37GBtnU/C58Syve9c0+I/xpLcFOosST3ternykn3Lp77f3ITnFw==} - engines: {node: '>=6'} - peerDependencies: - stylelint: ^7.0.0 || ^8.0.0 || ^9.0.0 || ^10.0.0 || ^11.0.0 || ^12.0.0 || ^13.0.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 - - stylelint-order@6.0.4: - resolution: {integrity: sha512-0UuKo4+s1hgQ/uAxlYU4h0o0HS4NiQDud0NAUNI0aa8FJdmYHA5ZZTFHiV5FpmE3071e9pZx5j0QpVJW5zOCUA==} - peerDependencies: - stylelint: ^14.0.0 || ^15.0.0 || ^16.0.1 - - stylelint-plugin-logical-css@1.2.3: - resolution: {integrity: sha512-yzSDrw4yyZJosgMablqqQzCeJmsPRAK/H7X1XzliQkYvoC/ZHBfHKos27dQEwwSLBUaYg+7nJ1ct7OlST4iqZA==} - engines: {node: '>=18.12.0'} - peerDependencies: - stylelint: ^14.0.0 || ^15.0.0 || ^16.0.0 - - stylelint-scss@6.11.1: - resolution: {integrity: sha512-e4rYo0UY+BIMtGeGanghrvHTjcryxgZbyFxUedp8dLFqC4P70aawNdYjRrQxbnKhu3BNr4+lt5e/53tcKXiwFA==} - engines: {node: '>=18.12.0'} - peerDependencies: - stylelint: ^16.0.2 - - stylelint@16.19.0: - resolution: {integrity: sha512-BJzc5mo/ez0H/ZSl3UbxGdkK/s0kFGsF5/k6IGu4z8wJ1qp49WrOS9RxswvcN6HMirt0g/iiJqOwLHTbWv49IQ==} - engines: {node: '>=18.12.0'} - hasBin: true - - supports-color@7.2.0: - resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} - engines: {node: '>=8'} - - supports-color@8.1.1: - resolution: {integrity: sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==} - engines: {node: '>=10'} - - supports-hyperlinks@3.2.0: - resolution: {integrity: sha512-zFObLMyZeEwzAoKCyu1B91U79K2t7ApXuQfo8OuxwXLDgcKxuwM+YvcbIhm6QWqz7mHUH1TVytR1PwVVjEuMig==} - engines: {node: '>=14.18'} - - supports-preserve-symlinks-flag@1.0.0: - resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} - engines: {node: '>= 0.4'} - - svg-tags@1.0.0: - resolution: {integrity: sha512-ovssysQTa+luh7A5Weu3Rta6FJlFBBbInjOh722LIt6klpU2/HtdUbszju/G4devcvk8PGt7FCLv5wftu3THUA==} - - sync-child-process@1.0.2: - resolution: {integrity: sha512-8lD+t2KrrScJ/7KXCSyfhT3/hRq78rC0wBFqNJXv3mZyn6hW2ypM05JmlSvtqRbeq6jqA94oHbxAr2vYsJ8vDA==} - engines: {node: '>=16.0.0'} - - sync-message-port@1.1.3: - resolution: {integrity: sha512-GTt8rSKje5FilG+wEdfCkOcLL7LWqpMlr2c3LRuKt/YXxcJ52aGSbGBAdI4L3aaqfrBt6y711El53ItyH1NWzg==} - engines: {node: '>=16.0.0'} - - systemjs@6.15.1: - resolution: {integrity: sha512-Nk8c4lXvMB98MtbmjX7JwJRgJOL8fluecYCfCeYBznwmpOs8Bf15hLM6z4z71EDAhQVrQrI+wt1aLWSXZq+hXA==} - - table@6.9.0: - resolution: {integrity: sha512-9kY+CygyYM6j02t5YFHbNz2FN5QmYGv9zAjVp4lCDjlCw7amdckXlEt/bjMhUIfj4ThGRE4gCUH5+yGnNuPo5A==} - engines: {node: '>=10.0.0'} - - tapable@2.2.1: - resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==} - engines: {node: '>=6'} - - tar-stream@3.1.7: - resolution: {integrity: sha512-qJj60CXt7IU1Ffyc3NJMjh6EkuCFej46zUqJ4J7pqYlThyd9bO0XBTmcOIhSzZJVWfsLks0+nle/j538YAW9RQ==} - - terser@5.36.0: - resolution: {integrity: sha512-IYV9eNMuFAV4THUspIRXkLakHnV6XO7FEdtKjf/mDyrnqUg9LnlOn6/RwRvM9SZjR4GUq8Nk8zj67FzVARr74w==} - engines: {node: '>=10'} - hasBin: true - - text-decoder@1.2.3: - resolution: {integrity: sha512-3/o9z3X0X0fTupwsYvR03pJ/DjWuqqrfwBgTQzdWDiQSm9KitAyz/9WqsT2JQW7KV2m+bC2ol/zqpW37NHxLaA==} - - through@2.3.8: - resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==} - - timers-browserify@2.0.12: - resolution: {integrity: sha512-9phl76Cqm6FhSX9Xe1ZUAMLtm1BLkKj2Qd5ApyWkXzsMRaA7dgr81kf4wJmQf/hAvg8EEyJxDo3du/0KlhPiKQ==} - engines: {node: '>=0.6.0'} - - tinyglobby@0.2.13: - resolution: {integrity: sha512-mEwzpUgrLySlveBwEVDMKk5B57bhLPYovRfPAXD5gA/98Opn0rCDj3GtLwFvCvH5RK9uPCExUROW5NjDwvqkxw==} - engines: {node: '>=12.0.0'} - - to-regex-range@5.0.1: - resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} - engines: {node: '>=8.0'} - - token-types@6.0.0: - resolution: {integrity: sha512-lbDrTLVsHhOMljPscd0yitpozq7Ga2M5Cvez5AjGg8GASBjtt6iERCAJ93yommPmz62fb45oFIXHEZ3u9bfJEA==} - engines: {node: '>=14.16'} - - ts-api-utils@2.1.0: - resolution: {integrity: sha512-CUgTZL1irw8u29bzrOD/nH85jqyc74D6SshFgujOIA7osm2Rz7dYH77agkx7H4FBNxDq7Cjf+IjaX/8zwFW+ZQ==} - engines: {node: '>=18.12'} - peerDependencies: - typescript: '>=4.8.4' - - ts-pattern@5.7.0: - resolution: {integrity: sha512-0/FvIG4g3kNkYgbNwBBW5pZBkfpeYQnH+2AA3xmjkCAit/DSDPKmgwC3fKof4oYUq6gupClVOJlFl+939VRBMg==} - - tsconfck@3.1.5: - resolution: {integrity: sha512-CLDfGgUp7XPswWnezWwsCRxNmgQjhYq3VXHM0/XIRxhVrKw0M1if9agzryh1QS3nxjCROvV+xWxoJO1YctzzWg==} - engines: {node: ^18 || >=20} - hasBin: true - peerDependencies: - typescript: ^5.0.0 - peerDependenciesMeta: - typescript: - optional: true - - tslib@2.8.1: - resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==} - - tty-browserify@0.0.1: - resolution: {integrity: sha512-C3TaO7K81YvjCgQH9Q1S3R3P3BtN3RIM8n+OvX4il1K1zgE8ZhI0op7kClgkxtutIE8hQrcrHBXvIheqKUUCxw==} - - type-check@0.4.0: - resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==} - engines: {node: '>= 0.8.0'} - - typescript-eslint@8.31.0: - resolution: {integrity: sha512-u+93F0sB0An8WEAPtwxVhFby573E8ckdjwUUQUj9QA4v8JAvgtoDdIyYR3XFwFHq2W1KJ1AurwJCO+w+Y1ixyQ==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - peerDependencies: - eslint: ^8.57.0 || ^9.0.0 - typescript: '>=4.8.4 <5.9.0' - - typescript@5.8.3: - resolution: {integrity: sha512-p1diW6TqL9L07nNxvRMM7hMMw4c5XOo/1ibL4aAIGmSAt9slTE1Xgw5KWuof2uTOvCg9BY7ZRi+GaF+7sfgPeQ==} - engines: {node: '>=14.17'} - hasBin: true - - uint8array-extras@1.4.0: - resolution: {integrity: sha512-ZPtzy0hu4cZjv3z5NW9gfKnNLjoz4y6uv4HlelAjDK7sY/xOkKZv9xK/WQpcsBB3jEybChz9DPC2U/+cusjJVQ==} - engines: {node: '>=18'} - - unbzip2-stream@1.4.3: - resolution: {integrity: sha512-mlExGW4w71ebDJviH16lQLtZS32VKqsSfk80GCfUlwT/4/hNRFsoscrF/c++9xinkMzECL1uL9DDwXqFWkruPg==} - - undici-types@6.21.0: - resolution: {integrity: sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==} - - unicode-canonical-property-names-ecmascript@2.0.1: - resolution: {integrity: sha512-dA8WbNeb2a6oQzAQ55YlT5vQAWGV9WXOsi3SskE3bcCdM0P4SDd+24zS/OCacdRq5BkdsRj9q3Pg6YyQoxIGqg==} - engines: {node: '>=4'} - - unicode-match-property-ecmascript@2.0.0: - resolution: {integrity: sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==} - engines: {node: '>=4'} - - unicode-match-property-value-ecmascript@2.2.0: - resolution: {integrity: sha512-4IehN3V/+kkr5YeSSDDQG8QLqO26XpL2XP3GQtqwlT/QYSECAwFztxVHjlbh0+gjJ3XmNLS0zDsbgs9jWKExLg==} - engines: {node: '>=4'} - - unicode-property-aliases-ecmascript@2.1.0: - resolution: {integrity: sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==} - engines: {node: '>=4'} - - update-browserslist-db@1.1.3: - resolution: {integrity: sha512-UxhIZQ+QInVdunkDAaiazvvT/+fXL5Osr0JZlJulepYu6Jd7qJtDZjlur0emRlT71EN3ScPoE7gvsuIKKNavKw==} - hasBin: true - peerDependencies: - browserslist: '>= 4.21.0' - - uri-js@4.4.1: - resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} - - url@0.11.4: - resolution: {integrity: sha512-oCwdVC7mTuWiPyjLUz/COz5TLk6wgp0RCsN+wHZ2Ekneac9w8uuV0njcbbie2ME+Vs+d6duwmYuR3HgQXs1fOg==} - engines: {node: '>= 0.4'} - - util-deprecate@1.0.2: - resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} - - util@0.12.5: - resolution: {integrity: sha512-kZf/K6hEIrWHI6XqOFUiiMa+79wE/D8Q+NCNAWclkyg3b4d2k7s0QGepNjiABc+aR3N1PAyHL7p6UcLY6LmrnA==} - - valibot@1.0.0: - resolution: {integrity: sha512-1Hc0ihzWxBar6NGeZv7fPLY0QuxFMyxwYR2sF1Blu7Wq7EnremwY2W02tit2ij2VJT8HcSkHAQqmFfl77f73Yw==} - peerDependencies: - typescript: '>=5' - peerDependenciesMeta: - typescript: - optional: true - - varint@6.0.0: - resolution: {integrity: sha512-cXEIW6cfr15lFv563k4GuVuW/fiwjknytD37jIOLSdSWuOI6WnO/oKwmP2FQTU2l01LP8/M5TSAJpzUaGe3uWg==} - - vite-plugin-manifest-sri@0.2.0: - resolution: {integrity: sha512-Zt5jt19xTIJ91LOuQTCtNG7rTFc5OziAjBz2H5NdCGqaOD1nxrWExLhcKW+W4/q8/jOPCg/n5ncYEQmqCxiGQQ==} - - vite-plugin-node-polyfills@0.23.0: - resolution: {integrity: sha512-4n+Ys+2bKHQohPBKigFlndwWQ5fFKwaGY6muNDMTb0fSQLyBzS+jjUNRZG9sKF0S/Go4ApG6LFnUGopjkILg3w==} - peerDependencies: - vite: ^2.0.0 || ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 - - vite-plugin-valibot-env@0.10.0: - resolution: {integrity: sha512-q/a+l8fRD2x7+gSD1nn25TojXI2qHwt9aGy0I6++D65Sabv3Rp70K/IPV554nWy67qcwpqfD1Q5vOFPa+zl5dw==} - engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0} - peerDependencies: - valibot: ^1.0.0 - vite: ^5.0.0 || ^6.0.0 - - vite-tsconfig-paths@5.1.4: - resolution: {integrity: sha512-cYj0LRuLV2c2sMqhqhGpaO3LretdtMn/BVX4cPLanIZuwwrkVl+lK84E/miEXkCHWXuq65rhNN4rXsBcOB3S4w==} - peerDependencies: - vite: '*' - peerDependenciesMeta: - vite: - optional: true - - vite@6.3.2: - resolution: {integrity: sha512-ZSvGOXKGceizRQIZSz7TGJ0pS3QLlVY/9hwxVh17W3re67je1RKYzFHivZ/t0tubU78Vkyb9WnHPENSBCzbckg==} - engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0} - hasBin: true - peerDependencies: - '@types/node': ^18.0.0 || ^20.0.0 || >=22.0.0 - jiti: '>=1.21.0' - less: '*' - lightningcss: ^1.21.0 - sass: '*' - sass-embedded: '*' - stylus: '*' - sugarss: '*' - terser: ^5.16.0 - tsx: ^4.8.1 - yaml: ^2.4.2 - peerDependenciesMeta: - '@types/node': - optional: true - jiti: - optional: true - less: - optional: true - lightningcss: - optional: true - sass: - optional: true - sass-embedded: - optional: true - stylus: - optional: true - sugarss: - optional: true - terser: - optional: true - tsx: - optional: true - yaml: - optional: true - - vm-browserify@1.1.2: - resolution: {integrity: sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ==} - - wcwidth@1.0.1: - resolution: {integrity: sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==} - - which-typed-array@1.1.19: - resolution: {integrity: sha512-rEvr90Bck4WZt9HHFC4DJMsjvu7x+r6bImz0/BrbWb7A2djJ8hnZMrWnHo9F8ssv0OMErasDhftrfROTyqSDrw==} - engines: {node: '>= 0.4'} - - which@1.3.1: - resolution: {integrity: sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==} - hasBin: true - - which@2.0.2: - resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} - engines: {node: '>= 8'} - hasBin: true - - word-wrap@1.2.5: - resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==} - engines: {node: '>=0.10.0'} - - wp-types@4.68.0: - resolution: {integrity: sha512-b4E861y0BzNUJSWH2i1/ArTISI87qdadEO0qBJRocJ0L95P8gaa7r4RXQHMIfBpFnQy0NToMrnN8Qb3rWP2Vjg==} - - write-file-atomic@5.0.1: - resolution: {integrity: sha512-+QU2zd6OTD8XWIJCbffaiQeH9U73qIqafo1x6V1snCWYGJf6cVE0cDR4D8xRzcEnfI21IFrUPzPGtcPf8AC+Rw==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - - xtend@4.0.2: - resolution: {integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==} - engines: {node: '>=0.4'} - - yallist@3.1.1: - resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==} - - yauzl@3.2.0: - resolution: {integrity: sha512-Ow9nuGZE+qp1u4JIPvg+uCiUr7xGQWdff7JQSk5VGYTAZMDe2q8lxJ10ygv10qmSj031Ty/6FNJpLO4o1Sgc+w==} - engines: {node: '>=12'} - - yocto-queue@0.1.0: - resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} - engines: {node: '>=10'} - - zod-validation-error@3.4.0: - resolution: {integrity: sha512-ZOPR9SVY6Pb2qqO5XHt+MkkTRxGXb4EVtnjc9JpXUOtUB1T9Ru7mZOT361AN3MsetVe7R0a1KZshJDZdgp9miQ==} - engines: {node: '>=18.0.0'} - peerDependencies: - zod: ^3.18.0 - - zod@3.24.3: - resolution: {integrity: sha512-HhY1oqzWCQWuUqvBFnsyrtZRhyPeR7SUGv+C4+MsisMuVfSPx8HpwWqH8tRahSlt6M3PiFAcoeFhZAqIXTxoSg==} - -snapshots: - - '@ampproject/remapping@2.3.0': - dependencies: - '@jridgewell/gen-mapping': 0.3.8 - '@jridgewell/trace-mapping': 0.3.25 - - '@babel/code-frame@7.26.2': - dependencies: - '@babel/helper-validator-identifier': 7.25.9 - js-tokens: 4.0.0 - picocolors: 1.1.1 - - '@babel/compat-data@7.26.8': {} - - '@babel/core@7.26.10': - dependencies: - '@ampproject/remapping': 2.3.0 - '@babel/code-frame': 7.26.2 - '@babel/generator': 7.27.0 - '@babel/helper-compilation-targets': 7.27.0 - '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.10) - '@babel/helpers': 7.27.0 - '@babel/parser': 7.27.0 - '@babel/template': 7.27.0 - '@babel/traverse': 7.27.0 - '@babel/types': 7.27.0 - convert-source-map: 2.0.0 - debug: 4.4.0 - gensync: 1.0.0-beta.2 - json5: 2.2.3 - semver: 6.3.1 - transitivePeerDependencies: - - supports-color - - '@babel/generator@7.27.0': - dependencies: - '@babel/parser': 7.27.0 - '@babel/types': 7.27.0 - '@jridgewell/gen-mapping': 0.3.8 - '@jridgewell/trace-mapping': 0.3.25 - jsesc: 3.1.0 - - '@babel/helper-annotate-as-pure@7.25.9': - dependencies: - '@babel/types': 7.27.0 - - '@babel/helper-compilation-targets@7.27.0': - dependencies: - '@babel/compat-data': 7.26.8 - '@babel/helper-validator-option': 7.25.9 - browserslist: 4.24.4 - lru-cache: 5.1.1 - semver: 6.3.1 - - '@babel/helper-create-class-features-plugin@7.27.0(@babel/core@7.26.10)': - dependencies: - '@babel/core': 7.26.10 - '@babel/helper-annotate-as-pure': 7.25.9 - '@babel/helper-member-expression-to-functions': 7.25.9 - '@babel/helper-optimise-call-expression': 7.25.9 - '@babel/helper-replace-supers': 7.26.5(@babel/core@7.26.10) - '@babel/helper-skip-transparent-expression-wrappers': 7.25.9 - '@babel/traverse': 7.27.0 - semver: 6.3.1 - transitivePeerDependencies: - - supports-color - - '@babel/helper-create-regexp-features-plugin@7.27.0(@babel/core@7.26.10)': - dependencies: - '@babel/core': 7.26.10 - '@babel/helper-annotate-as-pure': 7.25.9 - regexpu-core: 6.2.0 - semver: 6.3.1 - - '@babel/helper-define-polyfill-provider@0.6.4(@babel/core@7.26.10)': - dependencies: - '@babel/core': 7.26.10 - '@babel/helper-compilation-targets': 7.27.0 - '@babel/helper-plugin-utils': 7.26.5 - debug: 4.4.0 - lodash.debounce: 4.0.8 - resolve: 1.22.10 - transitivePeerDependencies: - - supports-color - - '@babel/helper-member-expression-to-functions@7.25.9': - dependencies: - '@babel/traverse': 7.27.0 - '@babel/types': 7.27.0 - transitivePeerDependencies: - - supports-color - - '@babel/helper-module-imports@7.25.9': - dependencies: - '@babel/traverse': 7.27.0 - '@babel/types': 7.27.0 - transitivePeerDependencies: - - supports-color - - '@babel/helper-module-transforms@7.26.0(@babel/core@7.26.10)': - dependencies: - '@babel/core': 7.26.10 - '@babel/helper-module-imports': 7.25.9 - '@babel/helper-validator-identifier': 7.25.9 - '@babel/traverse': 7.27.0 - transitivePeerDependencies: - - supports-color - - '@babel/helper-optimise-call-expression@7.25.9': - dependencies: - '@babel/types': 7.27.0 - - '@babel/helper-plugin-utils@7.26.5': {} - - '@babel/helper-remap-async-to-generator@7.25.9(@babel/core@7.26.10)': - dependencies: - '@babel/core': 7.26.10 - '@babel/helper-annotate-as-pure': 7.25.9 - '@babel/helper-wrap-function': 7.25.9 - '@babel/traverse': 7.27.0 - transitivePeerDependencies: - - supports-color - - '@babel/helper-replace-supers@7.26.5(@babel/core@7.26.10)': - dependencies: - '@babel/core': 7.26.10 - '@babel/helper-member-expression-to-functions': 7.25.9 - '@babel/helper-optimise-call-expression': 7.25.9 - '@babel/traverse': 7.27.0 - transitivePeerDependencies: - - supports-color - - '@babel/helper-skip-transparent-expression-wrappers@7.25.9': - dependencies: - '@babel/traverse': 7.27.0 - '@babel/types': 7.27.0 - transitivePeerDependencies: - - supports-color - - '@babel/helper-string-parser@7.25.9': {} - - '@babel/helper-validator-identifier@7.25.9': {} - - '@babel/helper-validator-option@7.25.9': {} - - '@babel/helper-wrap-function@7.25.9': - dependencies: - '@babel/template': 7.27.0 - '@babel/traverse': 7.27.0 - '@babel/types': 7.27.0 - transitivePeerDependencies: - - supports-color - - '@babel/helpers@7.27.0': - dependencies: - '@babel/template': 7.27.0 - '@babel/types': 7.27.0 - - '@babel/parser@7.27.0': - dependencies: - '@babel/types': 7.27.0 - - '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.25.9(@babel/core@7.26.10)': - dependencies: - '@babel/core': 7.26.10 - '@babel/helper-plugin-utils': 7.26.5 - '@babel/traverse': 7.27.0 - transitivePeerDependencies: - - supports-color - - '@babel/plugin-bugfix-safari-class-field-initializer-scope@7.25.9(@babel/core@7.26.10)': - dependencies: - '@babel/core': 7.26.10 - '@babel/helper-plugin-utils': 7.26.5 - - '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.25.9(@babel/core@7.26.10)': - dependencies: - '@babel/core': 7.26.10 - '@babel/helper-plugin-utils': 7.26.5 - - '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.25.9(@babel/core@7.26.10)': - dependencies: - '@babel/core': 7.26.10 - '@babel/helper-plugin-utils': 7.26.5 - '@babel/helper-skip-transparent-expression-wrappers': 7.25.9 - '@babel/plugin-transform-optional-chaining': 7.25.9(@babel/core@7.26.10) - transitivePeerDependencies: - - supports-color - - '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.25.9(@babel/core@7.26.10)': - dependencies: - '@babel/core': 7.26.10 - '@babel/helper-plugin-utils': 7.26.5 - '@babel/traverse': 7.27.0 - transitivePeerDependencies: - - supports-color - - '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.26.10)': - dependencies: - '@babel/core': 7.26.10 - - '@babel/plugin-syntax-import-assertions@7.26.0(@babel/core@7.26.10)': - dependencies: - '@babel/core': 7.26.10 - '@babel/helper-plugin-utils': 7.26.5 - - '@babel/plugin-syntax-import-attributes@7.26.0(@babel/core@7.26.10)': - dependencies: - '@babel/core': 7.26.10 - '@babel/helper-plugin-utils': 7.26.5 - - '@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.26.10)': - dependencies: - '@babel/core': 7.26.10 - '@babel/helper-create-regexp-features-plugin': 7.27.0(@babel/core@7.26.10) - '@babel/helper-plugin-utils': 7.26.5 - - '@babel/plugin-transform-arrow-functions@7.25.9(@babel/core@7.26.10)': - dependencies: - '@babel/core': 7.26.10 - '@babel/helper-plugin-utils': 7.26.5 - - '@babel/plugin-transform-async-generator-functions@7.26.8(@babel/core@7.26.10)': - dependencies: - '@babel/core': 7.26.10 - '@babel/helper-plugin-utils': 7.26.5 - '@babel/helper-remap-async-to-generator': 7.25.9(@babel/core@7.26.10) - '@babel/traverse': 7.27.0 - transitivePeerDependencies: - - supports-color - - '@babel/plugin-transform-async-to-generator@7.25.9(@babel/core@7.26.10)': - dependencies: - '@babel/core': 7.26.10 - '@babel/helper-module-imports': 7.25.9 - '@babel/helper-plugin-utils': 7.26.5 - '@babel/helper-remap-async-to-generator': 7.25.9(@babel/core@7.26.10) - transitivePeerDependencies: - - supports-color - - '@babel/plugin-transform-block-scoped-functions@7.26.5(@babel/core@7.26.10)': - dependencies: - '@babel/core': 7.26.10 - '@babel/helper-plugin-utils': 7.26.5 - - '@babel/plugin-transform-block-scoping@7.27.0(@babel/core@7.26.10)': - dependencies: - '@babel/core': 7.26.10 - '@babel/helper-plugin-utils': 7.26.5 - - '@babel/plugin-transform-class-properties@7.25.9(@babel/core@7.26.10)': - dependencies: - '@babel/core': 7.26.10 - '@babel/helper-create-class-features-plugin': 7.27.0(@babel/core@7.26.10) - '@babel/helper-plugin-utils': 7.26.5 - transitivePeerDependencies: - - supports-color - - '@babel/plugin-transform-class-static-block@7.26.0(@babel/core@7.26.10)': - dependencies: - '@babel/core': 7.26.10 - '@babel/helper-create-class-features-plugin': 7.27.0(@babel/core@7.26.10) - '@babel/helper-plugin-utils': 7.26.5 - transitivePeerDependencies: - - supports-color - - '@babel/plugin-transform-classes@7.25.9(@babel/core@7.26.10)': - dependencies: - '@babel/core': 7.26.10 - '@babel/helper-annotate-as-pure': 7.25.9 - '@babel/helper-compilation-targets': 7.27.0 - '@babel/helper-plugin-utils': 7.26.5 - '@babel/helper-replace-supers': 7.26.5(@babel/core@7.26.10) - '@babel/traverse': 7.27.0 - globals: 11.12.0 - transitivePeerDependencies: - - supports-color - - '@babel/plugin-transform-computed-properties@7.25.9(@babel/core@7.26.10)': - dependencies: - '@babel/core': 7.26.10 - '@babel/helper-plugin-utils': 7.26.5 - '@babel/template': 7.27.0 - - '@babel/plugin-transform-destructuring@7.25.9(@babel/core@7.26.10)': - dependencies: - '@babel/core': 7.26.10 - '@babel/helper-plugin-utils': 7.26.5 - - '@babel/plugin-transform-dotall-regex@7.25.9(@babel/core@7.26.10)': - dependencies: - '@babel/core': 7.26.10 - '@babel/helper-create-regexp-features-plugin': 7.27.0(@babel/core@7.26.10) - '@babel/helper-plugin-utils': 7.26.5 - - '@babel/plugin-transform-duplicate-keys@7.25.9(@babel/core@7.26.10)': - dependencies: - '@babel/core': 7.26.10 - '@babel/helper-plugin-utils': 7.26.5 - - '@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.25.9(@babel/core@7.26.10)': - dependencies: - '@babel/core': 7.26.10 - '@babel/helper-create-regexp-features-plugin': 7.27.0(@babel/core@7.26.10) - '@babel/helper-plugin-utils': 7.26.5 - - '@babel/plugin-transform-dynamic-import@7.25.9(@babel/core@7.26.10)': - dependencies: - '@babel/core': 7.26.10 - '@babel/helper-plugin-utils': 7.26.5 - - '@babel/plugin-transform-exponentiation-operator@7.26.3(@babel/core@7.26.10)': - dependencies: - '@babel/core': 7.26.10 - '@babel/helper-plugin-utils': 7.26.5 - - '@babel/plugin-transform-export-namespace-from@7.25.9(@babel/core@7.26.10)': - dependencies: - '@babel/core': 7.26.10 - '@babel/helper-plugin-utils': 7.26.5 - - '@babel/plugin-transform-for-of@7.26.9(@babel/core@7.26.10)': - dependencies: - '@babel/core': 7.26.10 - '@babel/helper-plugin-utils': 7.26.5 - '@babel/helper-skip-transparent-expression-wrappers': 7.25.9 - transitivePeerDependencies: - - supports-color - - '@babel/plugin-transform-function-name@7.25.9(@babel/core@7.26.10)': - dependencies: - '@babel/core': 7.26.10 - '@babel/helper-compilation-targets': 7.27.0 - '@babel/helper-plugin-utils': 7.26.5 - '@babel/traverse': 7.27.0 - transitivePeerDependencies: - - supports-color - - '@babel/plugin-transform-json-strings@7.25.9(@babel/core@7.26.10)': - dependencies: - '@babel/core': 7.26.10 - '@babel/helper-plugin-utils': 7.26.5 - - '@babel/plugin-transform-literals@7.25.9(@babel/core@7.26.10)': - dependencies: - '@babel/core': 7.26.10 - '@babel/helper-plugin-utils': 7.26.5 - - '@babel/plugin-transform-logical-assignment-operators@7.25.9(@babel/core@7.26.10)': - dependencies: - '@babel/core': 7.26.10 - '@babel/helper-plugin-utils': 7.26.5 - - '@babel/plugin-transform-member-expression-literals@7.25.9(@babel/core@7.26.10)': - dependencies: - '@babel/core': 7.26.10 - '@babel/helper-plugin-utils': 7.26.5 - - '@babel/plugin-transform-modules-amd@7.25.9(@babel/core@7.26.10)': - dependencies: - '@babel/core': 7.26.10 - '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.10) - '@babel/helper-plugin-utils': 7.26.5 - transitivePeerDependencies: - - supports-color - - '@babel/plugin-transform-modules-commonjs@7.26.3(@babel/core@7.26.10)': - dependencies: - '@babel/core': 7.26.10 - '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.10) - '@babel/helper-plugin-utils': 7.26.5 - transitivePeerDependencies: - - supports-color - - '@babel/plugin-transform-modules-systemjs@7.25.9(@babel/core@7.26.10)': - dependencies: - '@babel/core': 7.26.10 - '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.10) - '@babel/helper-plugin-utils': 7.26.5 - '@babel/helper-validator-identifier': 7.25.9 - '@babel/traverse': 7.27.0 - transitivePeerDependencies: - - supports-color - - '@babel/plugin-transform-modules-umd@7.25.9(@babel/core@7.26.10)': - dependencies: - '@babel/core': 7.26.10 - '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.10) - '@babel/helper-plugin-utils': 7.26.5 - transitivePeerDependencies: - - supports-color - - '@babel/plugin-transform-named-capturing-groups-regex@7.25.9(@babel/core@7.26.10)': - dependencies: - '@babel/core': 7.26.10 - '@babel/helper-create-regexp-features-plugin': 7.27.0(@babel/core@7.26.10) - '@babel/helper-plugin-utils': 7.26.5 - - '@babel/plugin-transform-new-target@7.25.9(@babel/core@7.26.10)': - dependencies: - '@babel/core': 7.26.10 - '@babel/helper-plugin-utils': 7.26.5 - - '@babel/plugin-transform-nullish-coalescing-operator@7.26.6(@babel/core@7.26.10)': - dependencies: - '@babel/core': 7.26.10 - '@babel/helper-plugin-utils': 7.26.5 - - '@babel/plugin-transform-numeric-separator@7.25.9(@babel/core@7.26.10)': - dependencies: - '@babel/core': 7.26.10 - '@babel/helper-plugin-utils': 7.26.5 - - '@babel/plugin-transform-object-rest-spread@7.25.9(@babel/core@7.26.10)': - dependencies: - '@babel/core': 7.26.10 - '@babel/helper-compilation-targets': 7.27.0 - '@babel/helper-plugin-utils': 7.26.5 - '@babel/plugin-transform-parameters': 7.25.9(@babel/core@7.26.10) - - '@babel/plugin-transform-object-super@7.25.9(@babel/core@7.26.10)': - dependencies: - '@babel/core': 7.26.10 - '@babel/helper-plugin-utils': 7.26.5 - '@babel/helper-replace-supers': 7.26.5(@babel/core@7.26.10) - transitivePeerDependencies: - - supports-color - - '@babel/plugin-transform-optional-catch-binding@7.25.9(@babel/core@7.26.10)': - dependencies: - '@babel/core': 7.26.10 - '@babel/helper-plugin-utils': 7.26.5 - - '@babel/plugin-transform-optional-chaining@7.25.9(@babel/core@7.26.10)': - dependencies: - '@babel/core': 7.26.10 - '@babel/helper-plugin-utils': 7.26.5 - '@babel/helper-skip-transparent-expression-wrappers': 7.25.9 - transitivePeerDependencies: - - supports-color - - '@babel/plugin-transform-parameters@7.25.9(@babel/core@7.26.10)': - dependencies: - '@babel/core': 7.26.10 - '@babel/helper-plugin-utils': 7.26.5 - - '@babel/plugin-transform-private-methods@7.25.9(@babel/core@7.26.10)': - dependencies: - '@babel/core': 7.26.10 - '@babel/helper-create-class-features-plugin': 7.27.0(@babel/core@7.26.10) - '@babel/helper-plugin-utils': 7.26.5 - transitivePeerDependencies: - - supports-color - - '@babel/plugin-transform-private-property-in-object@7.25.9(@babel/core@7.26.10)': - dependencies: - '@babel/core': 7.26.10 - '@babel/helper-annotate-as-pure': 7.25.9 - '@babel/helper-create-class-features-plugin': 7.27.0(@babel/core@7.26.10) - '@babel/helper-plugin-utils': 7.26.5 - transitivePeerDependencies: - - supports-color - - '@babel/plugin-transform-property-literals@7.25.9(@babel/core@7.26.10)': - dependencies: - '@babel/core': 7.26.10 - '@babel/helper-plugin-utils': 7.26.5 - - '@babel/plugin-transform-regenerator@7.27.0(@babel/core@7.26.10)': - dependencies: - '@babel/core': 7.26.10 - '@babel/helper-plugin-utils': 7.26.5 - regenerator-transform: 0.15.2 - - '@babel/plugin-transform-regexp-modifiers@7.26.0(@babel/core@7.26.10)': - dependencies: - '@babel/core': 7.26.10 - '@babel/helper-create-regexp-features-plugin': 7.27.0(@babel/core@7.26.10) - '@babel/helper-plugin-utils': 7.26.5 - - '@babel/plugin-transform-reserved-words@7.25.9(@babel/core@7.26.10)': - dependencies: - '@babel/core': 7.26.10 - '@babel/helper-plugin-utils': 7.26.5 - - '@babel/plugin-transform-shorthand-properties@7.25.9(@babel/core@7.26.10)': - dependencies: - '@babel/core': 7.26.10 - '@babel/helper-plugin-utils': 7.26.5 - - '@babel/plugin-transform-spread@7.25.9(@babel/core@7.26.10)': - dependencies: - '@babel/core': 7.26.10 - '@babel/helper-plugin-utils': 7.26.5 - '@babel/helper-skip-transparent-expression-wrappers': 7.25.9 - transitivePeerDependencies: - - supports-color - - '@babel/plugin-transform-sticky-regex@7.25.9(@babel/core@7.26.10)': - dependencies: - '@babel/core': 7.26.10 - '@babel/helper-plugin-utils': 7.26.5 - - '@babel/plugin-transform-template-literals@7.26.8(@babel/core@7.26.10)': - dependencies: - '@babel/core': 7.26.10 - '@babel/helper-plugin-utils': 7.26.5 - - '@babel/plugin-transform-typeof-symbol@7.27.0(@babel/core@7.26.10)': - dependencies: - '@babel/core': 7.26.10 - '@babel/helper-plugin-utils': 7.26.5 - - '@babel/plugin-transform-unicode-escapes@7.25.9(@babel/core@7.26.10)': - dependencies: - '@babel/core': 7.26.10 - '@babel/helper-plugin-utils': 7.26.5 - - '@babel/plugin-transform-unicode-property-regex@7.25.9(@babel/core@7.26.10)': - dependencies: - '@babel/core': 7.26.10 - '@babel/helper-create-regexp-features-plugin': 7.27.0(@babel/core@7.26.10) - '@babel/helper-plugin-utils': 7.26.5 - - '@babel/plugin-transform-unicode-regex@7.25.9(@babel/core@7.26.10)': - dependencies: - '@babel/core': 7.26.10 - '@babel/helper-create-regexp-features-plugin': 7.27.0(@babel/core@7.26.10) - '@babel/helper-plugin-utils': 7.26.5 - - '@babel/plugin-transform-unicode-sets-regex@7.25.9(@babel/core@7.26.10)': - dependencies: - '@babel/core': 7.26.10 - '@babel/helper-create-regexp-features-plugin': 7.27.0(@babel/core@7.26.10) - '@babel/helper-plugin-utils': 7.26.5 - - '@babel/preset-env@7.26.9(@babel/core@7.26.10)': - dependencies: - '@babel/compat-data': 7.26.8 - '@babel/core': 7.26.10 - '@babel/helper-compilation-targets': 7.27.0 - '@babel/helper-plugin-utils': 7.26.5 - '@babel/helper-validator-option': 7.25.9 - '@babel/plugin-bugfix-firefox-class-in-computed-class-key': 7.25.9(@babel/core@7.26.10) - '@babel/plugin-bugfix-safari-class-field-initializer-scope': 7.25.9(@babel/core@7.26.10) - '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.25.9(@babel/core@7.26.10) - '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.25.9(@babel/core@7.26.10) - '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.25.9(@babel/core@7.26.10) - '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.26.10) - '@babel/plugin-syntax-import-assertions': 7.26.0(@babel/core@7.26.10) - '@babel/plugin-syntax-import-attributes': 7.26.0(@babel/core@7.26.10) - '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.26.10) - '@babel/plugin-transform-arrow-functions': 7.25.9(@babel/core@7.26.10) - '@babel/plugin-transform-async-generator-functions': 7.26.8(@babel/core@7.26.10) - '@babel/plugin-transform-async-to-generator': 7.25.9(@babel/core@7.26.10) - '@babel/plugin-transform-block-scoped-functions': 7.26.5(@babel/core@7.26.10) - '@babel/plugin-transform-block-scoping': 7.27.0(@babel/core@7.26.10) - '@babel/plugin-transform-class-properties': 7.25.9(@babel/core@7.26.10) - '@babel/plugin-transform-class-static-block': 7.26.0(@babel/core@7.26.10) - '@babel/plugin-transform-classes': 7.25.9(@babel/core@7.26.10) - '@babel/plugin-transform-computed-properties': 7.25.9(@babel/core@7.26.10) - '@babel/plugin-transform-destructuring': 7.25.9(@babel/core@7.26.10) - '@babel/plugin-transform-dotall-regex': 7.25.9(@babel/core@7.26.10) - '@babel/plugin-transform-duplicate-keys': 7.25.9(@babel/core@7.26.10) - '@babel/plugin-transform-duplicate-named-capturing-groups-regex': 7.25.9(@babel/core@7.26.10) - '@babel/plugin-transform-dynamic-import': 7.25.9(@babel/core@7.26.10) - '@babel/plugin-transform-exponentiation-operator': 7.26.3(@babel/core@7.26.10) - '@babel/plugin-transform-export-namespace-from': 7.25.9(@babel/core@7.26.10) - '@babel/plugin-transform-for-of': 7.26.9(@babel/core@7.26.10) - '@babel/plugin-transform-function-name': 7.25.9(@babel/core@7.26.10) - '@babel/plugin-transform-json-strings': 7.25.9(@babel/core@7.26.10) - '@babel/plugin-transform-literals': 7.25.9(@babel/core@7.26.10) - '@babel/plugin-transform-logical-assignment-operators': 7.25.9(@babel/core@7.26.10) - '@babel/plugin-transform-member-expression-literals': 7.25.9(@babel/core@7.26.10) - '@babel/plugin-transform-modules-amd': 7.25.9(@babel/core@7.26.10) - '@babel/plugin-transform-modules-commonjs': 7.26.3(@babel/core@7.26.10) - '@babel/plugin-transform-modules-systemjs': 7.25.9(@babel/core@7.26.10) - '@babel/plugin-transform-modules-umd': 7.25.9(@babel/core@7.26.10) - '@babel/plugin-transform-named-capturing-groups-regex': 7.25.9(@babel/core@7.26.10) - '@babel/plugin-transform-new-target': 7.25.9(@babel/core@7.26.10) - '@babel/plugin-transform-nullish-coalescing-operator': 7.26.6(@babel/core@7.26.10) - '@babel/plugin-transform-numeric-separator': 7.25.9(@babel/core@7.26.10) - '@babel/plugin-transform-object-rest-spread': 7.25.9(@babel/core@7.26.10) - '@babel/plugin-transform-object-super': 7.25.9(@babel/core@7.26.10) - '@babel/plugin-transform-optional-catch-binding': 7.25.9(@babel/core@7.26.10) - '@babel/plugin-transform-optional-chaining': 7.25.9(@babel/core@7.26.10) - '@babel/plugin-transform-parameters': 7.25.9(@babel/core@7.26.10) - '@babel/plugin-transform-private-methods': 7.25.9(@babel/core@7.26.10) - '@babel/plugin-transform-private-property-in-object': 7.25.9(@babel/core@7.26.10) - '@babel/plugin-transform-property-literals': 7.25.9(@babel/core@7.26.10) - '@babel/plugin-transform-regenerator': 7.27.0(@babel/core@7.26.10) - '@babel/plugin-transform-regexp-modifiers': 7.26.0(@babel/core@7.26.10) - '@babel/plugin-transform-reserved-words': 7.25.9(@babel/core@7.26.10) - '@babel/plugin-transform-shorthand-properties': 7.25.9(@babel/core@7.26.10) - '@babel/plugin-transform-spread': 7.25.9(@babel/core@7.26.10) - '@babel/plugin-transform-sticky-regex': 7.25.9(@babel/core@7.26.10) - '@babel/plugin-transform-template-literals': 7.26.8(@babel/core@7.26.10) - '@babel/plugin-transform-typeof-symbol': 7.27.0(@babel/core@7.26.10) - '@babel/plugin-transform-unicode-escapes': 7.25.9(@babel/core@7.26.10) - '@babel/plugin-transform-unicode-property-regex': 7.25.9(@babel/core@7.26.10) - '@babel/plugin-transform-unicode-regex': 7.25.9(@babel/core@7.26.10) - '@babel/plugin-transform-unicode-sets-regex': 7.25.9(@babel/core@7.26.10) - '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.26.10) - babel-plugin-polyfill-corejs2: 0.4.13(@babel/core@7.26.10) - babel-plugin-polyfill-corejs3: 0.11.1(@babel/core@7.26.10) - babel-plugin-polyfill-regenerator: 0.6.4(@babel/core@7.26.10) - core-js-compat: 3.41.0 - semver: 6.3.1 - transitivePeerDependencies: - - supports-color - - '@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.26.10)': - dependencies: - '@babel/core': 7.26.10 - '@babel/helper-plugin-utils': 7.26.5 - '@babel/types': 7.27.0 - esutils: 2.0.3 - - '@babel/runtime@7.27.0': - dependencies: - regenerator-runtime: 0.14.1 - - '@babel/template@7.27.0': - dependencies: - '@babel/code-frame': 7.26.2 - '@babel/parser': 7.27.0 - '@babel/types': 7.27.0 - - '@babel/traverse@7.27.0': - dependencies: - '@babel/code-frame': 7.26.2 - '@babel/generator': 7.27.0 - '@babel/parser': 7.27.0 - '@babel/template': 7.27.0 - '@babel/types': 7.27.0 - debug: 4.4.0 - globals: 11.12.0 - transitivePeerDependencies: - - supports-color - - '@babel/types@7.27.0': - dependencies: - '@babel/helper-string-parser': 7.25.9 - '@babel/helper-validator-identifier': 7.25.9 - - '@better-typescript-lib/decorators@2.11.0(typescript@5.8.3)': - dependencies: - typescript: 5.8.3 - - '@better-typescript-lib/dom@2.11.0(typescript@5.8.3)': - dependencies: - typescript: 5.8.3 - - '@better-typescript-lib/es2015@2.11.0(typescript@5.8.3)': - dependencies: - typescript: 5.8.3 - - '@better-typescript-lib/es2016@2.11.0(typescript@5.8.3)': - dependencies: - typescript: 5.8.3 - - '@better-typescript-lib/es2017@2.11.0(typescript@5.8.3)': - dependencies: - typescript: 5.8.3 - - '@better-typescript-lib/es2018@2.11.0(typescript@5.8.3)': - dependencies: - typescript: 5.8.3 - - '@better-typescript-lib/es2019@2.11.0(typescript@5.8.3)': - dependencies: - typescript: 5.8.3 - - '@better-typescript-lib/es2020@2.11.0(typescript@5.8.3)': - dependencies: - typescript: 5.8.3 - - '@better-typescript-lib/es2021@2.11.0(typescript@5.8.3)': - dependencies: - typescript: 5.8.3 - - '@better-typescript-lib/es2022@2.11.0(typescript@5.8.3)': - dependencies: - typescript: 5.8.3 - - '@better-typescript-lib/es2023@2.11.0(typescript@5.8.3)': - dependencies: - typescript: 5.8.3 - - '@better-typescript-lib/es2024@2.11.0(typescript@5.8.3)': - dependencies: - typescript: 5.8.3 - - '@better-typescript-lib/es5@2.11.0(typescript@5.8.3)': - dependencies: - typescript: 5.8.3 - - '@better-typescript-lib/es6@2.11.0(typescript@5.8.3)': - dependencies: - typescript: 5.8.3 - - '@better-typescript-lib/esnext@2.11.0(typescript@5.8.3)': - dependencies: - typescript: 5.8.3 - - '@better-typescript-lib/scripthost@2.11.0(typescript@5.8.3)': - dependencies: - typescript: 5.8.3 - - '@better-typescript-lib/webworker@2.11.0(typescript@5.8.3)': - dependencies: - typescript: 5.8.3 - - '@biomejs/biome@1.9.4': - optionalDependencies: - '@biomejs/cli-darwin-arm64': 1.9.4 - '@biomejs/cli-darwin-x64': 1.9.4 - '@biomejs/cli-linux-arm64': 1.9.4 - '@biomejs/cli-linux-arm64-musl': 1.9.4 - '@biomejs/cli-linux-x64': 1.9.4 - '@biomejs/cli-linux-x64-musl': 1.9.4 - '@biomejs/cli-win32-arm64': 1.9.4 - '@biomejs/cli-win32-x64': 1.9.4 - - '@biomejs/cli-darwin-arm64@1.9.4': - optional: true - - '@biomejs/cli-darwin-x64@1.9.4': - optional: true - - '@biomejs/cli-linux-arm64-musl@1.9.4': - optional: true - - '@biomejs/cli-linux-arm64@1.9.4': - optional: true - - '@biomejs/cli-linux-x64-musl@1.9.4': - optional: true - - '@biomejs/cli-linux-x64@1.9.4': - optional: true - - '@biomejs/cli-win32-arm64@1.9.4': - optional: true - - '@biomejs/cli-win32-x64@1.9.4': - optional: true - - '@bufbuild/protobuf@2.2.5': {} - - '@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3)': - dependencies: - '@csstools/css-tokenizer': 3.0.3 - - '@csstools/css-tokenizer@3.0.3': {} - - '@csstools/media-query-list-parser@3.0.1(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3)': - dependencies: - '@csstools/css-parser-algorithms': 3.0.4(@csstools/css-tokenizer@3.0.3) - '@csstools/css-tokenizer': 3.0.3 - - '@csstools/media-query-list-parser@4.0.2(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3)': - dependencies: - '@csstools/css-parser-algorithms': 3.0.4(@csstools/css-tokenizer@3.0.3) - '@csstools/css-tokenizer': 3.0.3 - - '@csstools/selector-specificity@5.0.0(postcss-selector-parser@7.1.0)': - dependencies: - postcss-selector-parser: 7.1.0 - - '@dual-bundle/import-meta-resolve@4.1.0': {} - - '@esbuild/aix-ppc64@0.25.3': - optional: true - - '@esbuild/android-arm64@0.25.3': - optional: true - - '@esbuild/android-arm@0.25.3': - optional: true - - '@esbuild/android-x64@0.25.3': - optional: true - - '@esbuild/darwin-arm64@0.25.3': - optional: true - - '@esbuild/darwin-x64@0.25.3': - optional: true - - '@esbuild/freebsd-arm64@0.25.3': - optional: true - - '@esbuild/freebsd-x64@0.25.3': - optional: true - - '@esbuild/linux-arm64@0.25.3': - optional: true - - '@esbuild/linux-arm@0.25.3': - optional: true - - '@esbuild/linux-ia32@0.25.3': - optional: true - - '@esbuild/linux-loong64@0.25.3': - optional: true - - '@esbuild/linux-mips64el@0.25.3': - optional: true - - '@esbuild/linux-ppc64@0.25.3': - optional: true - - '@esbuild/linux-riscv64@0.25.3': - optional: true - - '@esbuild/linux-s390x@0.25.3': - optional: true - - '@esbuild/linux-x64@0.25.3': - optional: true - - '@esbuild/netbsd-arm64@0.25.3': - optional: true - - '@esbuild/netbsd-x64@0.25.3': - optional: true - - '@esbuild/openbsd-arm64@0.25.3': - optional: true - - '@esbuild/openbsd-x64@0.25.3': - optional: true - - '@esbuild/sunos-x64@0.25.3': - optional: true - - '@esbuild/win32-arm64@0.25.3': - optional: true - - '@esbuild/win32-ia32@0.25.3': - optional: true - - '@esbuild/win32-x64@0.25.3': - optional: true - - '@eslint-community/eslint-utils@4.6.1(eslint@9.25.1(jiti@2.4.2))': - dependencies: - eslint: 9.25.1(jiti@2.4.2) - eslint-visitor-keys: 3.4.3 - - '@eslint-community/regexpp@4.12.1': {} - - '@eslint/config-array@0.20.0': - dependencies: - '@eslint/object-schema': 2.1.6 - debug: 4.4.0 - minimatch: 3.1.2 - transitivePeerDependencies: - - supports-color - - '@eslint/config-helpers@0.2.1': {} - - '@eslint/core@0.13.0': - dependencies: - '@types/json-schema': 7.0.15 - - '@eslint/eslintrc@3.3.1': - dependencies: - ajv: 6.12.6 - debug: 4.4.0 - espree: 10.3.0 - globals: 14.0.0 - ignore: 5.3.2 - import-fresh: 3.3.1 - js-yaml: 4.1.0 - minimatch: 3.1.2 - strip-json-comments: 3.1.1 - transitivePeerDependencies: - - supports-color - - '@eslint/js@9.25.1': {} - - '@eslint/object-schema@2.1.6': {} - - '@eslint/plugin-kit@0.2.8': - dependencies: - '@eslint/core': 0.13.0 - levn: 0.4.1 - - '@humanfs/core@0.19.1': {} - - '@humanfs/node@0.16.6': - dependencies: - '@humanfs/core': 0.19.1 - '@humanwhocodes/retry': 0.3.1 - - '@humanwhocodes/module-importer@1.0.1': {} - - '@humanwhocodes/retry@0.3.1': {} - - '@humanwhocodes/retry@0.4.2': {} - - '@jridgewell/gen-mapping@0.3.8': - dependencies: - '@jridgewell/set-array': 1.2.1 - '@jridgewell/sourcemap-codec': 1.5.0 - '@jridgewell/trace-mapping': 0.3.25 - - '@jridgewell/resolve-uri@3.1.2': {} - - '@jridgewell/set-array@1.2.1': {} - - '@jridgewell/source-map@0.3.6': - dependencies: - '@jridgewell/gen-mapping': 0.3.8 - '@jridgewell/trace-mapping': 0.3.25 - - '@jridgewell/sourcemap-codec@1.5.0': {} - - '@jridgewell/trace-mapping@0.3.25': - dependencies: - '@jridgewell/resolve-uri': 3.1.2 - '@jridgewell/sourcemap-codec': 1.5.0 - - '@keyv/serialize@1.0.3': - dependencies: - buffer: 6.0.3 - - '@mobily/ts-belt@4.0.0-rc.5': {} - - '@napi-rs/nice-android-arm-eabi@1.0.1': - optional: true - - '@napi-rs/nice-android-arm64@1.0.1': - optional: true - - '@napi-rs/nice-darwin-arm64@1.0.1': - optional: true - - '@napi-rs/nice-darwin-x64@1.0.1': - optional: true - - '@napi-rs/nice-freebsd-x64@1.0.1': - optional: true - - '@napi-rs/nice-linux-arm-gnueabihf@1.0.1': - optional: true - - '@napi-rs/nice-linux-arm64-gnu@1.0.1': - optional: true - - '@napi-rs/nice-linux-arm64-musl@1.0.1': - optional: true - - '@napi-rs/nice-linux-ppc64-gnu@1.0.1': - optional: true - - '@napi-rs/nice-linux-riscv64-gnu@1.0.1': - optional: true - - '@napi-rs/nice-linux-s390x-gnu@1.0.1': - optional: true - - '@napi-rs/nice-linux-x64-gnu@1.0.1': - optional: true - - '@napi-rs/nice-linux-x64-musl@1.0.1': - optional: true - - '@napi-rs/nice-win32-arm64-msvc@1.0.1': - optional: true - - '@napi-rs/nice-win32-ia32-msvc@1.0.1': - optional: true - - '@napi-rs/nice-win32-x64-msvc@1.0.1': - optional: true - - '@napi-rs/nice@1.0.1': - optionalDependencies: - '@napi-rs/nice-android-arm-eabi': 1.0.1 - '@napi-rs/nice-android-arm64': 1.0.1 - '@napi-rs/nice-darwin-arm64': 1.0.1 - '@napi-rs/nice-darwin-x64': 1.0.1 - '@napi-rs/nice-freebsd-x64': 1.0.1 - '@napi-rs/nice-linux-arm-gnueabihf': 1.0.1 - '@napi-rs/nice-linux-arm64-gnu': 1.0.1 - '@napi-rs/nice-linux-arm64-musl': 1.0.1 - '@napi-rs/nice-linux-ppc64-gnu': 1.0.1 - '@napi-rs/nice-linux-riscv64-gnu': 1.0.1 - '@napi-rs/nice-linux-s390x-gnu': 1.0.1 - '@napi-rs/nice-linux-x64-gnu': 1.0.1 - '@napi-rs/nice-linux-x64-musl': 1.0.1 - '@napi-rs/nice-win32-arm64-msvc': 1.0.1 - '@napi-rs/nice-win32-ia32-msvc': 1.0.1 - '@napi-rs/nice-win32-x64-msvc': 1.0.1 - optional: true - - '@nodelib/fs.scandir@2.1.5': - dependencies: - '@nodelib/fs.stat': 2.0.5 - run-parallel: 1.2.0 - - '@nodelib/fs.stat@2.0.5': {} - - '@nodelib/fs.walk@1.2.8': - dependencies: - '@nodelib/fs.scandir': 2.1.5 - fastq: 1.19.1 - - '@oxlint/darwin-arm64@0.16.7': - optional: true - - '@oxlint/darwin-x64@0.16.7': - optional: true - - '@oxlint/linux-arm64-gnu@0.16.7': - optional: true - - '@oxlint/linux-arm64-musl@0.16.7': - optional: true - - '@oxlint/linux-x64-gnu@0.16.7': - optional: true - - '@oxlint/linux-x64-musl@0.16.7': - optional: true - - '@oxlint/win32-arm64@0.16.7': - optional: true - - '@oxlint/win32-x64@0.16.7': - optional: true - - '@parcel/watcher-android-arm64@2.5.1': - optional: true - - '@parcel/watcher-darwin-arm64@2.5.1': - optional: true - - '@parcel/watcher-darwin-x64@2.5.1': - optional: true - - '@parcel/watcher-freebsd-x64@2.5.1': - optional: true - - '@parcel/watcher-linux-arm-glibc@2.5.1': - optional: true - - '@parcel/watcher-linux-arm-musl@2.5.1': - optional: true - - '@parcel/watcher-linux-arm64-glibc@2.5.1': - optional: true - - '@parcel/watcher-linux-arm64-musl@2.5.1': - optional: true - - '@parcel/watcher-linux-x64-glibc@2.5.1': - optional: true - - '@parcel/watcher-linux-x64-musl@2.5.1': - optional: true - - '@parcel/watcher-win32-arm64@2.5.1': - optional: true - - '@parcel/watcher-win32-ia32@2.5.1': - optional: true - - '@parcel/watcher-win32-x64@2.5.1': - optional: true - - '@parcel/watcher@2.5.1': - dependencies: - detect-libc: 1.0.3 - is-glob: 4.0.3 - micromatch: 4.0.8 - node-addon-api: 7.1.1 - optionalDependencies: - '@parcel/watcher-android-arm64': 2.5.1 - '@parcel/watcher-darwin-arm64': 2.5.1 - '@parcel/watcher-darwin-x64': 2.5.1 - '@parcel/watcher-freebsd-x64': 2.5.1 - '@parcel/watcher-linux-arm-glibc': 2.5.1 - '@parcel/watcher-linux-arm-musl': 2.5.1 - '@parcel/watcher-linux-arm64-glibc': 2.5.1 - '@parcel/watcher-linux-arm64-musl': 2.5.1 - '@parcel/watcher-linux-x64-glibc': 2.5.1 - '@parcel/watcher-linux-x64-musl': 2.5.1 - '@parcel/watcher-win32-arm64': 2.5.1 - '@parcel/watcher-win32-ia32': 2.5.1 - '@parcel/watcher-win32-x64': 2.5.1 - optional: true - - '@prettier/plugin-php@0.22.4(prettier@3.5.3)': - dependencies: - linguist-languages: 7.29.0 - php-parser: 3.2.3 - prettier: 3.5.3 - - '@prettier/plugin-xml@3.4.1(prettier@3.5.3)': - dependencies: - '@xml-tools/parser': 1.0.11 - prettier: 3.5.3 - - '@reteps/dockerfmt@0.3.6': {} - - '@rollup/plugin-inject@5.0.5(rollup@4.40.0)': - dependencies: - '@rollup/pluginutils': 5.1.4(rollup@4.40.0) - estree-walker: 2.0.2 - magic-string: 0.30.17 - optionalDependencies: - rollup: 4.40.0 - - '@rollup/pluginutils@5.1.4(rollup@4.40.0)': - dependencies: - '@types/estree': 1.0.7 - estree-walker: 2.0.2 - picomatch: 4.0.2 - optionalDependencies: - rollup: 4.40.0 - - '@rollup/rollup-android-arm-eabi@4.40.0': - optional: true - - '@rollup/rollup-android-arm64@4.40.0': - optional: true - - '@rollup/rollup-darwin-arm64@4.40.0': - optional: true - - '@rollup/rollup-darwin-x64@4.40.0': - optional: true - - '@rollup/rollup-freebsd-arm64@4.40.0': - optional: true - - '@rollup/rollup-freebsd-x64@4.40.0': - optional: true - - '@rollup/rollup-linux-arm-gnueabihf@4.40.0': - optional: true - - '@rollup/rollup-linux-arm-musleabihf@4.40.0': - optional: true - - '@rollup/rollup-linux-arm64-gnu@4.40.0': - optional: true - - '@rollup/rollup-linux-arm64-musl@4.40.0': - optional: true - - '@rollup/rollup-linux-loongarch64-gnu@4.40.0': - optional: true - - '@rollup/rollup-linux-powerpc64le-gnu@4.40.0': - optional: true - - '@rollup/rollup-linux-riscv64-gnu@4.40.0': - optional: true - - '@rollup/rollup-linux-riscv64-musl@4.40.0': - optional: true - - '@rollup/rollup-linux-s390x-gnu@4.40.0': - optional: true - - '@rollup/rollup-linux-x64-gnu@4.40.0': - optional: true - - '@rollup/rollup-linux-x64-musl@4.40.0': - optional: true - - '@rollup/rollup-win32-arm64-msvc@4.40.0': - optional: true - - '@rollup/rollup-win32-ia32-msvc@4.40.0': - optional: true - - '@rollup/rollup-win32-x64-msvc@4.40.0': - optional: true - - '@sec-ant/readable-stream@0.4.1': {} - - '@sentry-internal/browser-utils@9.14.0': - dependencies: - '@sentry/core': 9.14.0 - - '@sentry-internal/feedback@9.14.0': - dependencies: - '@sentry/core': 9.14.0 - - '@sentry-internal/replay-canvas@9.14.0': - dependencies: - '@sentry-internal/replay': 9.14.0 - '@sentry/core': 9.14.0 - - '@sentry-internal/replay@9.14.0': - dependencies: - '@sentry-internal/browser-utils': 9.14.0 - '@sentry/core': 9.14.0 - - '@sentry/browser@9.14.0': - dependencies: - '@sentry-internal/browser-utils': 9.14.0 - '@sentry-internal/feedback': 9.14.0 - '@sentry-internal/replay': 9.14.0 - '@sentry-internal/replay-canvas': 9.14.0 - '@sentry/core': 9.14.0 - - '@sentry/core@9.14.0': {} - - '@sindresorhus/is@5.6.0': {} - - '@stylistic/stylelint-plugin@3.1.2(stylelint@16.19.0(typescript@5.8.3))': - dependencies: - '@csstools/css-parser-algorithms': 3.0.4(@csstools/css-tokenizer@3.0.3) - '@csstools/css-tokenizer': 3.0.3 - '@csstools/media-query-list-parser': 3.0.1(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3) - is-plain-object: 5.0.0 - postcss-selector-parser: 6.1.2 - postcss-value-parser: 4.2.0 - style-search: 0.1.0 - stylelint: 16.19.0(typescript@5.8.3) - - '@swan-io/boxed@3.2.0(typescript@5.8.3)': - optionalDependencies: - typescript: 5.8.3 - - '@swc/cli@0.7.3(@swc/core@1.9.1)(chokidar@4.0.3)': - dependencies: - '@swc/core': 1.9.1 - '@swc/counter': 0.1.3 - '@xhmikosr/bin-wrapper': 13.0.5 - commander: 8.3.0 - fast-glob: 3.3.3 - minimatch: 9.0.5 - piscina: 4.9.2 - semver: 7.7.1 - slash: 3.0.0 - source-map: 0.7.4 - optionalDependencies: - chokidar: 4.0.3 - - '@swc/core-darwin-arm64@1.9.1': - optional: true - - '@swc/core-darwin-x64@1.9.1': - optional: true - - '@swc/core-linux-arm-gnueabihf@1.9.1': - optional: true - - '@swc/core-linux-arm64-gnu@1.9.1': - optional: true - - '@swc/core-linux-arm64-musl@1.9.1': - optional: true - - '@swc/core-linux-x64-gnu@1.9.1': - optional: true - - '@swc/core-linux-x64-musl@1.9.1': - optional: true - - '@swc/core-win32-arm64-msvc@1.9.1': - optional: true - - '@swc/core-win32-ia32-msvc@1.9.1': - optional: true - - '@swc/core-win32-x64-msvc@1.9.1': - optional: true - - '@swc/core@1.9.1': - dependencies: - '@swc/counter': 0.1.3 - '@swc/types': 0.1.21 - optionalDependencies: - '@swc/core-darwin-arm64': 1.9.1 - '@swc/core-darwin-x64': 1.9.1 - '@swc/core-linux-arm-gnueabihf': 1.9.1 - '@swc/core-linux-arm64-gnu': 1.9.1 - '@swc/core-linux-arm64-musl': 1.9.1 - '@swc/core-linux-x64-gnu': 1.9.1 - '@swc/core-linux-x64-musl': 1.9.1 - '@swc/core-win32-arm64-msvc': 1.9.1 - '@swc/core-win32-ia32-msvc': 1.9.1 - '@swc/core-win32-x64-msvc': 1.9.1 - - '@swc/counter@0.1.3': {} - - '@swc/types@0.1.21': - dependencies: - '@swc/counter': 0.1.3 - - '@szmarczak/http-timer@5.0.1': - dependencies: - defer-to-connect: 2.0.1 - - '@tokenizer/token@0.3.0': {} - - '@types/eslint__js@9.14.0': - dependencies: - '@eslint/js': 9.25.1 - - '@types/estree@1.0.7': {} - - '@types/http-cache-semantics@4.0.4': {} - - '@types/json-schema@7.0.15': {} - - '@types/node@22.14.1': - dependencies: - undici-types: 6.21.0 - - '@types/trusted-types@2.0.7': {} - - '@typescript-eslint/eslint-plugin@8.31.0(@typescript-eslint/parser@8.31.0(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3))(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3)': - dependencies: - '@eslint-community/regexpp': 4.12.1 - '@typescript-eslint/parser': 8.31.0(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3) - '@typescript-eslint/scope-manager': 8.31.0 - '@typescript-eslint/type-utils': 8.31.0(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3) - '@typescript-eslint/utils': 8.31.0(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3) - '@typescript-eslint/visitor-keys': 8.31.0 - eslint: 9.25.1(jiti@2.4.2) - graphemer: 1.4.0 - ignore: 5.3.2 - natural-compare: 1.4.0 - ts-api-utils: 2.1.0(typescript@5.8.3) - typescript: 5.8.3 - transitivePeerDependencies: - - supports-color - - '@typescript-eslint/parser@8.31.0(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3)': - dependencies: - '@typescript-eslint/scope-manager': 8.31.0 - '@typescript-eslint/types': 8.31.0 - '@typescript-eslint/typescript-estree': 8.31.0(typescript@5.8.3) - '@typescript-eslint/visitor-keys': 8.31.0 - debug: 4.4.0 - eslint: 9.25.1(jiti@2.4.2) - typescript: 5.8.3 - transitivePeerDependencies: - - supports-color - - '@typescript-eslint/scope-manager@8.31.0': - dependencies: - '@typescript-eslint/types': 8.31.0 - '@typescript-eslint/visitor-keys': 8.31.0 - - '@typescript-eslint/type-utils@8.31.0(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3)': - dependencies: - '@typescript-eslint/typescript-estree': 8.31.0(typescript@5.8.3) - '@typescript-eslint/utils': 8.31.0(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3) - debug: 4.4.0 - eslint: 9.25.1(jiti@2.4.2) - ts-api-utils: 2.1.0(typescript@5.8.3) - typescript: 5.8.3 - transitivePeerDependencies: - - supports-color - - '@typescript-eslint/types@8.31.0': {} - - '@typescript-eslint/typescript-estree@8.31.0(typescript@5.8.3)': - dependencies: - '@typescript-eslint/types': 8.31.0 - '@typescript-eslint/visitor-keys': 8.31.0 - debug: 4.4.0 - fast-glob: 3.3.3 - is-glob: 4.0.3 - minimatch: 9.0.5 - semver: 7.7.1 - ts-api-utils: 2.1.0(typescript@5.8.3) - typescript: 5.8.3 - transitivePeerDependencies: - - supports-color - - '@typescript-eslint/utils@8.31.0(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3)': - dependencies: - '@eslint-community/eslint-utils': 4.6.1(eslint@9.25.1(jiti@2.4.2)) - '@typescript-eslint/scope-manager': 8.31.0 - '@typescript-eslint/types': 8.31.0 - '@typescript-eslint/typescript-estree': 8.31.0(typescript@5.8.3) - eslint: 9.25.1(jiti@2.4.2) - typescript: 5.8.3 - transitivePeerDependencies: - - supports-color - - '@typescript-eslint/visitor-keys@8.31.0': - dependencies: - '@typescript-eslint/types': 8.31.0 - eslint-visitor-keys: 4.2.0 - - '@vitejs/plugin-legacy@6.1.0(terser@5.36.0)(vite@6.3.2(@types/node@22.14.1)(jiti@2.4.2)(sass-embedded@1.87.0)(sass@1.80.6)(terser@5.36.0))': - dependencies: - '@babel/core': 7.26.10 - '@babel/preset-env': 7.26.9(@babel/core@7.26.10) - browserslist: 4.24.4 - browserslist-to-esbuild: 2.1.1(browserslist@4.24.4) - core-js: 3.41.0 - magic-string: 0.30.17 - regenerator-runtime: 0.14.1 - systemjs: 6.15.1 - terser: 5.36.0 - vite: 6.3.2(@types/node@22.14.1)(jiti@2.4.2)(sass-embedded@1.87.0)(sass@1.80.6)(terser@5.36.0) - transitivePeerDependencies: - - supports-color - - '@xhmikosr/archive-type@7.0.0': - dependencies: - file-type: 19.6.0 - - '@xhmikosr/bin-check@7.0.3': - dependencies: - execa: 5.1.1 - isexe: 2.0.0 - - '@xhmikosr/bin-wrapper@13.0.5': - dependencies: - '@xhmikosr/bin-check': 7.0.3 - '@xhmikosr/downloader': 15.0.1 - '@xhmikosr/os-filter-obj': 3.0.0 - bin-version-check: 5.1.0 - - '@xhmikosr/decompress-tar@8.0.1': - dependencies: - file-type: 19.6.0 - is-stream: 2.0.1 - tar-stream: 3.1.7 - - '@xhmikosr/decompress-tarbz2@8.0.2': - dependencies: - '@xhmikosr/decompress-tar': 8.0.1 - file-type: 19.6.0 - is-stream: 2.0.1 - seek-bzip: 2.0.0 - unbzip2-stream: 1.4.3 - - '@xhmikosr/decompress-targz@8.0.1': - dependencies: - '@xhmikosr/decompress-tar': 8.0.1 - file-type: 19.6.0 - is-stream: 2.0.1 - - '@xhmikosr/decompress-unzip@7.0.0': - dependencies: - file-type: 19.6.0 - get-stream: 6.0.1 - yauzl: 3.2.0 - - '@xhmikosr/decompress@10.0.1': - dependencies: - '@xhmikosr/decompress-tar': 8.0.1 - '@xhmikosr/decompress-tarbz2': 8.0.2 - '@xhmikosr/decompress-targz': 8.0.1 - '@xhmikosr/decompress-unzip': 7.0.0 - graceful-fs: 4.2.11 - make-dir: 4.0.0 - strip-dirs: 3.0.0 - - '@xhmikosr/downloader@15.0.1': - dependencies: - '@xhmikosr/archive-type': 7.0.0 - '@xhmikosr/decompress': 10.0.1 - content-disposition: 0.5.4 - defaults: 3.0.0 - ext-name: 5.0.0 - file-type: 19.6.0 - filenamify: 6.0.0 - get-stream: 6.0.1 - got: 13.0.0 - - '@xhmikosr/os-filter-obj@3.0.0': - dependencies: - arch: 3.0.0 - - '@xml-tools/parser@1.0.11': - dependencies: - chevrotain: 7.1.1 - - a11y-dialog@8.1.3: - dependencies: - focusable-selectors: 0.8.4 - - acorn-jsx@5.3.2(acorn@8.14.1): - dependencies: - acorn: 8.14.1 - - acorn@8.14.1: {} - - ajv@6.12.6: - dependencies: - fast-deep-equal: 3.1.3 - fast-json-stable-stringify: 2.1.0 - json-schema-traverse: 0.4.1 - uri-js: 4.4.1 - - ajv@8.17.1: - dependencies: - fast-deep-equal: 3.1.3 - fast-uri: 3.0.6 - json-schema-traverse: 1.0.0 - require-from-string: 2.0.2 - - ansi-regex@5.0.1: {} - - ansi-styles@4.3.0: - dependencies: - color-convert: 2.0.1 - - arch@3.0.0: {} - - argparse@2.0.1: {} - - array-union@2.1.0: {} - - asn1.js@4.10.1: - dependencies: - bn.js: 4.12.1 - inherits: 2.0.4 - minimalistic-assert: 1.0.1 - - assert@2.1.0: - dependencies: - call-bind: 1.0.8 - is-nan: 1.3.2 - object-is: 1.1.6 - object.assign: 4.1.7 - util: 0.12.5 - - astral-regex@2.0.0: {} - - available-typed-arrays@1.0.7: - dependencies: - possible-typed-array-names: 1.1.0 - - b4a@1.6.7: {} - - babel-plugin-polyfill-corejs2@0.4.13(@babel/core@7.26.10): - dependencies: - '@babel/compat-data': 7.26.8 - '@babel/core': 7.26.10 - '@babel/helper-define-polyfill-provider': 0.6.4(@babel/core@7.26.10) - semver: 6.3.1 - transitivePeerDependencies: - - supports-color - - babel-plugin-polyfill-corejs3@0.11.1(@babel/core@7.26.10): - dependencies: - '@babel/core': 7.26.10 - '@babel/helper-define-polyfill-provider': 0.6.4(@babel/core@7.26.10) - core-js-compat: 3.41.0 - transitivePeerDependencies: - - supports-color - - babel-plugin-polyfill-regenerator@0.6.4(@babel/core@7.26.10): - dependencies: - '@babel/core': 7.26.10 - '@babel/helper-define-polyfill-provider': 0.6.4(@babel/core@7.26.10) - transitivePeerDependencies: - - supports-color - - balanced-match@1.0.2: {} - - balanced-match@2.0.0: {} - - bare-events@2.5.4: - optional: true - - base64-js@1.5.1: {} - - better-typescript-lib@2.11.0(typescript@5.8.3): - dependencies: - '@typescript/lib-decorators': '@better-typescript-lib/decorators@2.11.0(typescript@5.8.3)' - '@typescript/lib-dom': '@better-typescript-lib/dom@2.11.0(typescript@5.8.3)' - '@typescript/lib-es2015': '@better-typescript-lib/es2015@2.11.0(typescript@5.8.3)' - '@typescript/lib-es2016': '@better-typescript-lib/es2016@2.11.0(typescript@5.8.3)' - '@typescript/lib-es2017': '@better-typescript-lib/es2017@2.11.0(typescript@5.8.3)' - '@typescript/lib-es2018': '@better-typescript-lib/es2018@2.11.0(typescript@5.8.3)' - '@typescript/lib-es2019': '@better-typescript-lib/es2019@2.11.0(typescript@5.8.3)' - '@typescript/lib-es2020': '@better-typescript-lib/es2020@2.11.0(typescript@5.8.3)' - '@typescript/lib-es2021': '@better-typescript-lib/es2021@2.11.0(typescript@5.8.3)' - '@typescript/lib-es2022': '@better-typescript-lib/es2022@2.11.0(typescript@5.8.3)' - '@typescript/lib-es2023': '@better-typescript-lib/es2023@2.11.0(typescript@5.8.3)' - '@typescript/lib-es2024': '@better-typescript-lib/es2024@2.11.0(typescript@5.8.3)' - '@typescript/lib-es5': '@better-typescript-lib/es5@2.11.0(typescript@5.8.3)' - '@typescript/lib-es6': '@better-typescript-lib/es6@2.11.0(typescript@5.8.3)' - '@typescript/lib-esnext': '@better-typescript-lib/esnext@2.11.0(typescript@5.8.3)' - '@typescript/lib-scripthost': '@better-typescript-lib/scripthost@2.11.0(typescript@5.8.3)' - '@typescript/lib-webworker': '@better-typescript-lib/webworker@2.11.0(typescript@5.8.3)' - typescript: 5.8.3 - - bin-version-check@5.1.0: - dependencies: - bin-version: 6.0.0 - semver: 7.7.1 - semver-truncate: 3.0.0 - - bin-version@6.0.0: - dependencies: - execa: 5.1.1 - find-versions: 5.1.0 - - bn.js@4.12.1: {} - - bn.js@5.2.1: {} - - brace-expansion@1.1.11: - dependencies: - balanced-match: 1.0.2 - concat-map: 0.0.1 - - brace-expansion@2.0.1: - dependencies: - balanced-match: 1.0.2 - - braces@3.0.3: - dependencies: - fill-range: 7.1.1 - - brorand@1.1.0: {} - - browser-resolve@2.0.0: - dependencies: - resolve: 1.22.10 - - browserify-aes@1.2.0: - dependencies: - buffer-xor: 1.0.3 - cipher-base: 1.0.6 - create-hash: 1.2.0 - evp_bytestokey: 1.0.3 - inherits: 2.0.4 - safe-buffer: 5.2.1 - - browserify-cipher@1.0.1: - dependencies: - browserify-aes: 1.2.0 - browserify-des: 1.0.2 - evp_bytestokey: 1.0.3 - - browserify-des@1.0.2: - dependencies: - cipher-base: 1.0.6 - des.js: 1.1.0 - inherits: 2.0.4 - safe-buffer: 5.2.1 - - browserify-rsa@4.1.1: - dependencies: - bn.js: 5.2.1 - randombytes: 2.1.0 - safe-buffer: 5.2.1 - - browserify-sign@4.2.3: - dependencies: - bn.js: 5.2.1 - browserify-rsa: 4.1.1 - create-hash: 1.2.0 - create-hmac: 1.1.7 - elliptic: 6.6.1 - hash-base: 3.0.5 - inherits: 2.0.4 - parse-asn1: 5.1.7 - readable-stream: 2.3.8 - safe-buffer: 5.2.1 - - browserify-zlib@0.2.0: - dependencies: - pako: 1.0.11 - - browserslist-to-esbuild@2.1.1(browserslist@4.24.4): - dependencies: - browserslist: 4.24.4 - meow: 13.2.0 - - browserslist@4.24.4: - dependencies: - caniuse-lite: 1.0.30001715 - electron-to-chromium: 1.5.140 - node-releases: 2.0.19 - update-browserslist-db: 1.1.3(browserslist@4.24.4) - - buffer-builder@0.2.0: {} - - buffer-crc32@0.2.13: {} - - buffer-from@1.1.2: {} - - buffer-xor@1.0.3: {} - - buffer@5.7.1: - dependencies: - base64-js: 1.5.1 - ieee754: 1.2.1 - - buffer@6.0.3: - dependencies: - base64-js: 1.5.1 - ieee754: 1.2.1 - - builtin-status-codes@3.0.0: {} - - cacheable-lookup@7.0.0: {} - - cacheable-request@10.2.14: - dependencies: - '@types/http-cache-semantics': 4.0.4 - get-stream: 6.0.1 - http-cache-semantics: 4.1.1 - keyv: 4.5.4 - mimic-response: 4.0.0 - normalize-url: 8.0.1 - responselike: 3.0.0 - - cacheable@1.8.10: - dependencies: - hookified: 1.8.2 - keyv: 5.3.3 - - call-bind-apply-helpers@1.0.2: - dependencies: - es-errors: 1.3.0 - function-bind: 1.1.2 - - call-bind@1.0.8: - dependencies: - call-bind-apply-helpers: 1.0.2 - es-define-property: 1.0.1 - get-intrinsic: 1.3.0 - set-function-length: 1.2.2 - - call-bound@1.0.4: - dependencies: - call-bind-apply-helpers: 1.0.2 - get-intrinsic: 1.3.0 - - callsites@3.1.0: {} - - caniuse-lite@1.0.30001715: {} - - chalk@4.1.2: - dependencies: - ansi-styles: 4.3.0 - supports-color: 7.2.0 - - chalk@5.4.1: {} - - chevrotain@7.1.1: - dependencies: - regexp-to-ast: 0.5.0 - - chokidar@4.0.3: - dependencies: - readdirp: 4.1.2 - optional: true - - cipher-base@1.0.6: - dependencies: - inherits: 2.0.4 - safe-buffer: 5.2.1 - - clone@1.0.4: - optional: true - - color-convert@2.0.1: - dependencies: - color-name: 1.1.4 - - color-name@1.1.4: {} - - colord@2.9.3: {} - - colorjs.io@0.5.2: {} - - commander@2.20.3: {} - - commander@6.2.1: {} - - commander@8.3.0: {} - - concat-map@0.0.1: {} - - console-browserify@1.2.0: {} - - constants-browserify@1.0.0: {} - - content-disposition@0.5.4: - dependencies: - safe-buffer: 5.2.1 - - convert-source-map@2.0.0: {} - - core-js-compat@3.41.0: - dependencies: - browserslist: 4.24.4 - - core-js@3.41.0: {} - - core-util-is@1.0.3: {} - - cosmiconfig@9.0.0(typescript@5.8.3): - dependencies: - env-paths: 2.2.1 - import-fresh: 3.3.1 - js-yaml: 4.1.0 - parse-json: 5.2.0 - optionalDependencies: - typescript: 5.8.3 - - create-ecdh@4.0.4: - dependencies: - bn.js: 4.12.1 - elliptic: 6.6.1 - - create-hash@1.2.0: - dependencies: - cipher-base: 1.0.6 - inherits: 2.0.4 - md5.js: 1.3.5 - ripemd160: 2.0.2 - sha.js: 2.4.11 - - create-hmac@1.1.7: - dependencies: - cipher-base: 1.0.6 - create-hash: 1.2.0 - inherits: 2.0.4 - ripemd160: 2.0.2 - safe-buffer: 5.2.1 - sha.js: 2.4.11 - - create-require@1.1.1: {} - - cross-spawn@7.0.6: - dependencies: - path-key: 3.1.1 - shebang-command: 2.0.0 - which: 2.0.2 - - crypto-browserify@3.12.1: - dependencies: - browserify-cipher: 1.0.1 - browserify-sign: 4.2.3 - create-ecdh: 4.0.4 - create-hash: 1.2.0 - create-hmac: 1.1.7 - diffie-hellman: 5.0.3 - hash-base: 3.0.5 - inherits: 2.0.4 - pbkdf2: 3.1.2 - public-encrypt: 4.0.3 - randombytes: 2.1.0 - randomfill: 1.0.4 - - css-functions-list@3.2.3: {} - - css-tree@3.1.0: - dependencies: - mdn-data: 2.12.2 - source-map-js: 1.2.1 - - cssesc@3.0.0: {} - - debug@4.4.0: - dependencies: - ms: 2.1.3 - - decompress-response@6.0.0: - dependencies: - mimic-response: 3.1.0 - - deep-is@0.1.4: {} - - defaults@1.0.4: - dependencies: - clone: 1.0.4 - optional: true - - defaults@3.0.0: {} - - defer-to-connect@2.0.1: {} - - define-data-property@1.1.4: - dependencies: - es-define-property: 1.0.1 - es-errors: 1.3.0 - gopd: 1.2.0 - - define-properties@1.2.1: - dependencies: - define-data-property: 1.1.4 - has-property-descriptors: 1.0.2 - object-keys: 1.1.1 - - des.js@1.1.0: - dependencies: - inherits: 2.0.4 - minimalistic-assert: 1.0.1 - - detect-libc@1.0.3: - optional: true - - diffie-hellman@5.0.3: - dependencies: - bn.js: 4.12.1 - miller-rabin: 4.0.1 - randombytes: 2.1.0 - - dir-glob@3.0.1: - dependencies: - path-type: 4.0.0 - - domain-browser@4.22.0: {} - - dunder-proto@1.0.1: - dependencies: - call-bind-apply-helpers: 1.0.2 - es-errors: 1.3.0 - gopd: 1.2.0 - - easy-table@1.2.0: - dependencies: - ansi-regex: 5.0.1 - optionalDependencies: - wcwidth: 1.0.1 - - electron-to-chromium@1.5.140: {} - - elliptic@6.6.1: - dependencies: - bn.js: 4.12.1 - brorand: 1.1.0 - hash.js: 1.1.7 - hmac-drbg: 1.0.1 - inherits: 2.0.4 - minimalistic-assert: 1.0.1 - minimalistic-crypto-utils: 1.0.1 - - emoji-regex@8.0.0: {} - - enhanced-resolve@5.18.1: - dependencies: - graceful-fs: 4.2.11 - tapable: 2.2.1 - - env-paths@2.2.1: {} - - error-ex@1.3.2: - dependencies: - is-arrayish: 0.2.1 - - es-define-property@1.0.1: {} - - es-errors@1.3.0: {} - - es-object-atoms@1.1.1: - dependencies: - es-errors: 1.3.0 - - esbuild@0.25.3: - optionalDependencies: - '@esbuild/aix-ppc64': 0.25.3 - '@esbuild/android-arm': 0.25.3 - '@esbuild/android-arm64': 0.25.3 - '@esbuild/android-x64': 0.25.3 - '@esbuild/darwin-arm64': 0.25.3 - '@esbuild/darwin-x64': 0.25.3 - '@esbuild/freebsd-arm64': 0.25.3 - '@esbuild/freebsd-x64': 0.25.3 - '@esbuild/linux-arm': 0.25.3 - '@esbuild/linux-arm64': 0.25.3 - '@esbuild/linux-ia32': 0.25.3 - '@esbuild/linux-loong64': 0.25.3 - '@esbuild/linux-mips64el': 0.25.3 - '@esbuild/linux-ppc64': 0.25.3 - '@esbuild/linux-riscv64': 0.25.3 - '@esbuild/linux-s390x': 0.25.3 - '@esbuild/linux-x64': 0.25.3 - '@esbuild/netbsd-arm64': 0.25.3 - '@esbuild/netbsd-x64': 0.25.3 - '@esbuild/openbsd-arm64': 0.25.3 - '@esbuild/openbsd-x64': 0.25.3 - '@esbuild/sunos-x64': 0.25.3 - '@esbuild/win32-arm64': 0.25.3 - '@esbuild/win32-ia32': 0.25.3 - '@esbuild/win32-x64': 0.25.3 - - escalade@3.2.0: {} - - escape-string-regexp@4.0.0: {} - - eslint-plugin-oxlint@0.16.7: - dependencies: - jsonc-parser: 3.3.1 - - eslint-plugin-perfectionist@4.12.1(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3): - dependencies: - '@typescript-eslint/types': 8.31.0 - '@typescript-eslint/utils': 8.31.0(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3) - eslint: 9.25.1(jiti@2.4.2) - natural-orderby: 5.0.0 - transitivePeerDependencies: - - supports-color - - typescript - - eslint-scope@8.3.0: - dependencies: - esrecurse: 4.3.0 - estraverse: 5.3.0 - - eslint-visitor-keys@3.4.3: {} - - eslint-visitor-keys@4.2.0: {} - - eslint@9.25.1(jiti@2.4.2): - dependencies: - '@eslint-community/eslint-utils': 4.6.1(eslint@9.25.1(jiti@2.4.2)) - '@eslint-community/regexpp': 4.12.1 - '@eslint/config-array': 0.20.0 - '@eslint/config-helpers': 0.2.1 - '@eslint/core': 0.13.0 - '@eslint/eslintrc': 3.3.1 - '@eslint/js': 9.25.1 - '@eslint/plugin-kit': 0.2.8 - '@humanfs/node': 0.16.6 - '@humanwhocodes/module-importer': 1.0.1 - '@humanwhocodes/retry': 0.4.2 - '@types/estree': 1.0.7 - '@types/json-schema': 7.0.15 - ajv: 6.12.6 - chalk: 4.1.2 - cross-spawn: 7.0.6 - debug: 4.4.0 - escape-string-regexp: 4.0.0 - eslint-scope: 8.3.0 - eslint-visitor-keys: 4.2.0 - espree: 10.3.0 - esquery: 1.6.0 - esutils: 2.0.3 - fast-deep-equal: 3.1.3 - file-entry-cache: 8.0.0 - find-up: 5.0.0 - glob-parent: 6.0.2 - ignore: 5.3.2 - imurmurhash: 0.1.4 - is-glob: 4.0.3 - json-stable-stringify-without-jsonify: 1.0.1 - lodash.merge: 4.6.2 - minimatch: 3.1.2 - natural-compare: 1.4.0 - optionator: 0.9.4 - optionalDependencies: - jiti: 2.4.2 - transitivePeerDependencies: - - supports-color - - espree@10.3.0: - dependencies: - acorn: 8.14.1 - acorn-jsx: 5.3.2(acorn@8.14.1) - eslint-visitor-keys: 4.2.0 - - esquery@1.6.0: - dependencies: - estraverse: 5.3.0 - - esrecurse@4.3.0: - dependencies: - estraverse: 5.3.0 - - estraverse@5.3.0: {} - - estree-walker@2.0.2: {} - - esutils@2.0.3: {} - - events@3.3.0: {} - - evp_bytestokey@1.0.3: - dependencies: - md5.js: 1.3.5 - safe-buffer: 5.2.1 - - execa@5.1.1: - dependencies: - cross-spawn: 7.0.6 - get-stream: 6.0.1 - human-signals: 2.1.0 - is-stream: 2.0.1 - merge-stream: 2.0.0 - npm-run-path: 4.0.1 - onetime: 5.1.2 - signal-exit: 3.0.7 - strip-final-newline: 2.0.0 - - ext-list@2.2.2: - dependencies: - mime-db: 1.54.0 - - ext-name@5.0.0: - dependencies: - ext-list: 2.2.2 - sort-keys-length: 1.0.1 - - fast-deep-equal@3.1.3: {} - - fast-fifo@1.3.2: {} - - fast-glob@3.3.3: - dependencies: - '@nodelib/fs.stat': 2.0.5 - '@nodelib/fs.walk': 1.2.8 - glob-parent: 5.1.2 - merge2: 1.4.1 - micromatch: 4.0.8 - - fast-json-stable-stringify@2.1.0: {} - - fast-levenshtein@2.0.6: {} - - fast-uri@3.0.6: {} - - fastest-levenshtein@1.0.16: {} - - fastq@1.19.1: - dependencies: - reusify: 1.1.0 - - fdir@6.4.4(picomatch@4.0.2): - optionalDependencies: - picomatch: 4.0.2 - - file-entry-cache@10.0.8: - dependencies: - flat-cache: 6.1.8 - - file-entry-cache@8.0.0: - dependencies: - flat-cache: 4.0.1 - - file-type@19.6.0: - dependencies: - get-stream: 9.0.1 - strtok3: 9.1.1 - token-types: 6.0.0 - uint8array-extras: 1.4.0 - - filename-reserved-regex@3.0.0: {} - - filenamify@6.0.0: - dependencies: - filename-reserved-regex: 3.0.0 - - fill-range@7.1.1: - dependencies: - to-regex-range: 5.0.1 - - find-up@5.0.0: - dependencies: - locate-path: 6.0.0 - path-exists: 4.0.0 - - find-versions@5.1.0: - dependencies: - semver-regex: 4.0.5 - - flat-cache@4.0.1: - dependencies: - flatted: 3.3.3 - keyv: 4.5.4 - - flat-cache@6.1.8: - dependencies: - cacheable: 1.8.10 - flatted: 3.3.3 - hookified: 1.8.2 - - flatted@3.3.3: {} - - focusable-selectors@0.8.4: {} - - for-each@0.3.5: - dependencies: - is-callable: 1.2.7 - - form-data-encoder@2.1.4: {} - - fsevents@2.3.3: - optional: true - - function-bind@1.1.2: {} - - gensync@1.0.0-beta.2: {} - - get-intrinsic@1.3.0: - dependencies: - call-bind-apply-helpers: 1.0.2 - es-define-property: 1.0.1 - es-errors: 1.3.0 - es-object-atoms: 1.1.1 - function-bind: 1.1.2 - get-proto: 1.0.1 - gopd: 1.2.0 - has-symbols: 1.1.0 - hasown: 2.0.2 - math-intrinsics: 1.1.0 - - get-proto@1.0.1: - dependencies: - dunder-proto: 1.0.1 - es-object-atoms: 1.1.1 - - get-stream@6.0.1: {} - - get-stream@9.0.1: - dependencies: - '@sec-ant/readable-stream': 0.4.1 - is-stream: 4.0.1 - - glob-parent@5.1.2: - dependencies: - is-glob: 4.0.3 - - glob-parent@6.0.2: - dependencies: - is-glob: 4.0.3 - - global-modules@2.0.0: - dependencies: - global-prefix: 3.0.0 - - global-prefix@3.0.0: - dependencies: - ini: 1.3.8 - kind-of: 6.0.3 - which: 1.3.1 - - globals@11.12.0: {} - - globals@14.0.0: {} - - globals@16.0.0: {} - - globby@11.1.0: - dependencies: - array-union: 2.1.0 - dir-glob: 3.0.1 - fast-glob: 3.3.3 - ignore: 5.3.2 - merge2: 1.4.1 - slash: 3.0.0 - - globjoin@0.1.4: {} - - globrex@0.1.2: {} - - gopd@1.2.0: {} - - got@13.0.0: - dependencies: - '@sindresorhus/is': 5.6.0 - '@szmarczak/http-timer': 5.0.1 - cacheable-lookup: 7.0.0 - cacheable-request: 10.2.14 - decompress-response: 6.0.0 - form-data-encoder: 2.1.4 - get-stream: 6.0.1 - http2-wrapper: 2.2.1 - lowercase-keys: 3.0.0 - p-cancelable: 3.0.0 - responselike: 3.0.0 - - graceful-fs@4.2.11: {} - - graphemer@1.4.0: {} - - has-flag@4.0.0: {} - - has-property-descriptors@1.0.2: - dependencies: - es-define-property: 1.0.1 - - has-symbols@1.1.0: {} - - has-tostringtag@1.0.2: - dependencies: - has-symbols: 1.1.0 - - hash-base@3.0.5: - dependencies: - inherits: 2.0.4 - safe-buffer: 5.2.1 - - hash.js@1.1.7: - dependencies: - inherits: 2.0.4 - minimalistic-assert: 1.0.1 - - hasown@2.0.2: - dependencies: - function-bind: 1.1.2 - - hmac-drbg@1.0.1: - dependencies: - hash.js: 1.1.7 - minimalistic-assert: 1.0.1 - minimalistic-crypto-utils: 1.0.1 - - hookified@1.8.2: {} - - html-tags@3.3.1: {} - - http-cache-semantics@4.1.1: {} - - http2-wrapper@2.2.1: - dependencies: - quick-lru: 5.1.1 - resolve-alpn: 1.2.1 - - https-browserify@1.0.0: {} - - human-signals@2.1.0: {} - - ieee754@1.2.1: {} - - ignore@5.3.2: {} - - ignore@7.0.3: {} - - immutable@4.3.7: - optional: true - - immutable@5.1.1: {} - - import-fresh@3.3.1: - dependencies: - parent-module: 1.0.1 - resolve-from: 4.0.0 - - imurmurhash@0.1.4: {} - - inherits@2.0.4: {} - - ini@1.3.8: {} - - inspect-with-kind@1.0.5: - dependencies: - kind-of: 6.0.3 - - is-arguments@1.2.0: - dependencies: - call-bound: 1.0.4 - has-tostringtag: 1.0.2 - - is-arrayish@0.2.1: {} - - is-callable@1.2.7: {} - - is-core-module@2.16.1: - dependencies: - hasown: 2.0.2 - - is-extglob@2.1.1: {} - - is-fullwidth-code-point@3.0.0: {} - - is-generator-function@1.1.0: - dependencies: - call-bound: 1.0.4 - get-proto: 1.0.1 - has-tostringtag: 1.0.2 - safe-regex-test: 1.1.0 - - is-glob@4.0.3: - dependencies: - is-extglob: 2.1.1 - - is-nan@1.3.2: - dependencies: - call-bind: 1.0.8 - define-properties: 1.2.1 - - is-number@7.0.0: {} - - is-plain-obj@1.1.0: {} - - is-plain-object@5.0.0: {} - - is-regex@1.2.1: - dependencies: - call-bound: 1.0.4 - gopd: 1.2.0 - has-tostringtag: 1.0.2 - hasown: 2.0.2 - - is-stream@2.0.1: {} - - is-stream@4.0.1: {} - - is-typed-array@1.1.15: - dependencies: - which-typed-array: 1.1.19 - - is-unicode-supported@2.1.0: {} - - isarray@1.0.0: {} - - isexe@2.0.0: {} - - isomorphic-timers-promises@1.0.1: {} - - jiti@2.4.2: {} - - js-tokens@4.0.0: {} - - js-yaml@4.1.0: - dependencies: - argparse: 2.0.1 - - jsesc@3.0.2: {} - - jsesc@3.1.0: {} - - json-buffer@3.0.1: {} - - json-parse-even-better-errors@2.3.1: {} - - json-schema-traverse@0.4.1: {} - - json-schema-traverse@1.0.0: {} - - json-stable-stringify-without-jsonify@1.0.1: {} - - json5@2.2.3: {} - - jsonc-parser@3.3.1: {} - - keyv@4.5.4: - dependencies: - json-buffer: 3.0.1 - - keyv@5.3.3: - dependencies: - '@keyv/serialize': 1.0.3 - - kind-of@6.0.3: {} - - knip@5.50.5(@types/node@22.14.1)(typescript@5.8.3): - dependencies: - '@nodelib/fs.walk': 1.2.8 - '@types/node': 22.14.1 - easy-table: 1.2.0 - enhanced-resolve: 5.18.1 - fast-glob: 3.3.3 - jiti: 2.4.2 - js-yaml: 4.1.0 - minimist: 1.2.8 - picocolors: 1.1.1 - picomatch: 4.0.2 - pretty-ms: 9.2.0 - smol-toml: 1.3.3 - strip-json-comments: 5.0.1 - typescript: 5.8.3 - zod: 3.24.3 - zod-validation-error: 3.4.0(zod@3.24.3) - - known-css-properties@0.35.0: {} - - known-css-properties@0.36.0: {} - - levn@0.4.1: - dependencies: - prelude-ls: 1.2.1 - type-check: 0.4.0 - - lines-and-columns@1.2.4: {} - - linguist-languages@7.29.0: {} - - lit-html@3.3.0: - dependencies: - '@types/trusted-types': 2.0.7 - - locate-path@6.0.0: - dependencies: - p-locate: 5.0.0 - - lodash.debounce@4.0.8: {} - - lodash.merge@4.6.2: {} - - lodash.truncate@4.4.2: {} - - loglevel-plugin-prefix@0.8.4: {} - - loglevel@1.9.2: {} - - lowercase-keys@3.0.0: {} - - lru-cache@5.1.1: - dependencies: - yallist: 3.1.1 - - magic-string@0.30.17: - dependencies: - '@jridgewell/sourcemap-codec': 1.5.0 - - make-dir@4.0.0: - dependencies: - semver: 7.7.1 - - math-intrinsics@1.1.0: {} - - mathml-tag-names@2.1.3: {} - - md5.js@1.3.5: - dependencies: - hash-base: 3.0.5 - inherits: 2.0.4 - safe-buffer: 5.2.1 - - mdn-data@2.12.2: {} - - mdn-data@2.21.0: {} - - meow@13.2.0: {} - - merge-stream@2.0.0: {} - - merge2@1.4.1: {} - - micromatch@4.0.8: - dependencies: - braces: 3.0.3 - picomatch: 2.3.1 - - miller-rabin@4.0.1: - dependencies: - bn.js: 4.12.1 - brorand: 1.1.0 - - mime-db@1.54.0: {} - - mimic-fn@2.1.0: {} - - mimic-response@3.1.0: {} - - mimic-response@4.0.0: {} - - minimalistic-assert@1.0.1: {} - - minimalistic-crypto-utils@1.0.1: {} - - minimatch@3.1.2: - dependencies: - brace-expansion: 1.1.11 - - minimatch@9.0.5: - dependencies: - brace-expansion: 2.0.1 - - minimist@1.2.8: {} - - ms@2.1.3: {} - - nanoid@3.3.11: {} - - natural-compare@1.4.0: {} - - natural-orderby@5.0.0: {} - - node-addon-api@7.1.1: - optional: true - - node-releases@2.0.19: {} - - node-stdlib-browser@1.3.1: - dependencies: - assert: 2.1.0 - browser-resolve: 2.0.0 - browserify-zlib: 0.2.0 - buffer: 5.7.1 - console-browserify: 1.2.0 - constants-browserify: 1.0.0 - create-require: 1.1.1 - crypto-browserify: 3.12.1 - domain-browser: 4.22.0 - events: 3.3.0 - https-browserify: 1.0.0 - isomorphic-timers-promises: 1.0.1 - os-browserify: 0.3.0 - path-browserify: 1.0.1 - pkg-dir: 5.0.0 - process: 0.11.10 - punycode: 1.4.1 - querystring-es3: 0.2.1 - readable-stream: 3.6.2 - stream-browserify: 3.0.0 - stream-http: 3.2.0 - string_decoder: 1.3.0 - timers-browserify: 2.0.12 - tty-browserify: 0.0.1 - url: 0.11.4 - util: 0.12.5 - vm-browserify: 1.1.2 - - normalize-path@3.0.0: {} - - normalize-url@8.0.1: {} - - npm-run-path@4.0.1: - dependencies: - path-key: 3.1.1 - - object-inspect@1.13.4: {} - - object-is@1.1.6: - dependencies: - call-bind: 1.0.8 - define-properties: 1.2.1 - - object-keys@1.1.1: {} - - object.assign@4.1.7: - dependencies: - call-bind: 1.0.8 - call-bound: 1.0.4 - define-properties: 1.2.1 - es-object-atoms: 1.1.1 - has-symbols: 1.1.0 - object-keys: 1.1.1 - - onetime@5.1.2: - dependencies: - mimic-fn: 2.1.0 - - optics-ts@2.4.1: {} - - optionator@0.9.4: - dependencies: - deep-is: 0.1.4 - fast-levenshtein: 2.0.6 - levn: 0.4.1 - prelude-ls: 1.2.1 - type-check: 0.4.0 - word-wrap: 1.2.5 - - os-browserify@0.3.0: {} - - oxlint@0.16.7: - optionalDependencies: - '@oxlint/darwin-arm64': 0.16.7 - '@oxlint/darwin-x64': 0.16.7 - '@oxlint/linux-arm64-gnu': 0.16.7 - '@oxlint/linux-arm64-musl': 0.16.7 - '@oxlint/linux-x64-gnu': 0.16.7 - '@oxlint/linux-x64-musl': 0.16.7 - '@oxlint/win32-arm64': 0.16.7 - '@oxlint/win32-x64': 0.16.7 - - p-cancelable@3.0.0: {} - - p-limit@3.1.0: - dependencies: - yocto-queue: 0.1.0 - - p-locate@5.0.0: - dependencies: - p-limit: 3.1.0 - - pako@1.0.11: {} - - parent-module@1.0.1: - dependencies: - callsites: 3.1.0 - - parse-asn1@5.1.7: - dependencies: - asn1.js: 4.10.1 - browserify-aes: 1.2.0 - evp_bytestokey: 1.0.3 - hash-base: 3.0.5 - pbkdf2: 3.1.2 - safe-buffer: 5.2.1 - - parse-json@5.2.0: - dependencies: - '@babel/code-frame': 7.26.2 - error-ex: 1.3.2 - json-parse-even-better-errors: 2.3.1 - lines-and-columns: 1.2.4 - - parse-ms@4.0.0: {} - - path-browserify@1.0.1: {} - - path-exists@4.0.0: {} - - path-key@3.1.1: {} - - path-parse@1.0.7: {} - - path-type@4.0.0: {} - - pbkdf2@3.1.2: - dependencies: - create-hash: 1.2.0 - create-hmac: 1.1.7 - ripemd160: 2.0.2 - safe-buffer: 5.2.1 - sha.js: 2.4.11 - - peek-readable@5.4.2: {} - - pend@1.2.0: {} - - php-parser@3.2.3: {} - - picocolors@1.1.1: {} - - picomatch@2.3.1: {} - - picomatch@4.0.2: {} - - piscina@4.9.2: - optionalDependencies: - '@napi-rs/nice': 1.0.1 - - pkg-dir@5.0.0: - dependencies: - find-up: 5.0.0 - - possible-typed-array-names@1.1.0: {} - - postcss-media-query-parser@0.2.3: {} - - postcss-resolve-nested-selector@0.1.6: {} - - postcss-safe-parser@7.0.1(postcss@8.5.3): - dependencies: - postcss: 8.5.3 - - postcss-scss@4.0.9(postcss@8.5.3): - dependencies: - postcss: 8.5.3 - - postcss-selector-parser@6.1.2: - dependencies: - cssesc: 3.0.0 - util-deprecate: 1.0.2 - - postcss-selector-parser@7.1.0: - dependencies: - cssesc: 3.0.0 - util-deprecate: 1.0.2 - - postcss-sorting@8.0.2(postcss@8.5.3): - dependencies: - postcss: 8.5.3 - - postcss-value-parser@4.2.0: {} - - postcss@8.5.3: - dependencies: - nanoid: 3.3.11 - picocolors: 1.1.1 - source-map-js: 1.2.1 - - prelude-ls@1.2.1: {} - - prettier-plugin-pkg@0.19.0(prettier@3.5.3): - dependencies: - prettier: 3.5.3 - - prettier-plugin-sh@0.17.2(prettier@3.5.3): - dependencies: - '@reteps/dockerfmt': 0.3.6 - prettier: 3.5.3 - sh-syntax: 0.5.7 - - prettier@3.5.3: {} - - pretty-ms@9.2.0: - dependencies: - parse-ms: 4.0.0 - - process-nextick-args@2.0.1: {} - - process@0.11.10: {} - - public-encrypt@4.0.3: - dependencies: - bn.js: 4.12.1 - browserify-rsa: 4.1.1 - create-hash: 1.2.0 - parse-asn1: 5.1.7 - randombytes: 2.1.0 - safe-buffer: 5.2.1 - - punycode@1.4.1: {} - - punycode@2.3.1: {} - - purify-ts@2.1.1: - dependencies: - '@types/json-schema': 7.0.15 - - qs@6.14.0: - dependencies: - side-channel: 1.1.0 - - querystring-es3@0.2.1: {} - - queue-microtask@1.2.3: {} - - quick-lru@5.1.1: {} - - randombytes@2.1.0: - dependencies: - safe-buffer: 5.2.1 - - randomfill@1.0.4: - dependencies: - randombytes: 2.1.0 - safe-buffer: 5.2.1 - - readable-stream@2.3.8: - dependencies: - core-util-is: 1.0.3 - inherits: 2.0.4 - isarray: 1.0.0 - process-nextick-args: 2.0.1 - safe-buffer: 5.1.2 - string_decoder: 1.1.1 - util-deprecate: 1.0.2 - - readable-stream@3.6.2: - dependencies: - inherits: 2.0.4 - string_decoder: 1.3.0 - util-deprecate: 1.0.2 - - readdirp@4.1.2: - optional: true - - regenerate-unicode-properties@10.2.0: - dependencies: - regenerate: 1.4.2 - - regenerate@1.4.2: {} - - regenerator-runtime@0.14.1: {} - - regenerator-transform@0.15.2: - dependencies: - '@babel/runtime': 7.27.0 - - regexp-to-ast@0.5.0: {} - - regexpu-core@6.2.0: - dependencies: - regenerate: 1.4.2 - regenerate-unicode-properties: 10.2.0 - regjsgen: 0.8.0 - regjsparser: 0.12.0 - unicode-match-property-ecmascript: 2.0.0 - unicode-match-property-value-ecmascript: 2.2.0 - - regjsgen@0.8.0: {} - - regjsparser@0.12.0: - dependencies: - jsesc: 3.0.2 - - require-from-string@2.0.2: {} - - resolve-alpn@1.2.1: {} - - resolve-from@4.0.0: {} - - resolve-from@5.0.0: {} - - resolve@1.22.10: - dependencies: - is-core-module: 2.16.1 - path-parse: 1.0.7 - supports-preserve-symlinks-flag: 1.0.0 - - responselike@3.0.0: - dependencies: - lowercase-keys: 3.0.0 - - reusify@1.1.0: {} - - ripemd160@2.0.2: - dependencies: - hash-base: 3.0.5 - inherits: 2.0.4 - - rollup@4.40.0: - dependencies: - '@types/estree': 1.0.7 - optionalDependencies: - '@rollup/rollup-android-arm-eabi': 4.40.0 - '@rollup/rollup-android-arm64': 4.40.0 - '@rollup/rollup-darwin-arm64': 4.40.0 - '@rollup/rollup-darwin-x64': 4.40.0 - '@rollup/rollup-freebsd-arm64': 4.40.0 - '@rollup/rollup-freebsd-x64': 4.40.0 - '@rollup/rollup-linux-arm-gnueabihf': 4.40.0 - '@rollup/rollup-linux-arm-musleabihf': 4.40.0 - '@rollup/rollup-linux-arm64-gnu': 4.40.0 - '@rollup/rollup-linux-arm64-musl': 4.40.0 - '@rollup/rollup-linux-loongarch64-gnu': 4.40.0 - '@rollup/rollup-linux-powerpc64le-gnu': 4.40.0 - '@rollup/rollup-linux-riscv64-gnu': 4.40.0 - '@rollup/rollup-linux-riscv64-musl': 4.40.0 - '@rollup/rollup-linux-s390x-gnu': 4.40.0 - '@rollup/rollup-linux-x64-gnu': 4.40.0 - '@rollup/rollup-linux-x64-musl': 4.40.0 - '@rollup/rollup-win32-arm64-msvc': 4.40.0 - '@rollup/rollup-win32-ia32-msvc': 4.40.0 - '@rollup/rollup-win32-x64-msvc': 4.40.0 - fsevents: 2.3.3 - - run-parallel@1.2.0: - dependencies: - queue-microtask: 1.2.3 - - rxjs@7.8.2: - dependencies: - tslib: 2.8.1 - - safe-buffer@5.1.2: {} - - safe-buffer@5.2.1: {} - - safe-regex-test@1.1.0: - dependencies: - call-bound: 1.0.4 - es-errors: 1.3.0 - is-regex: 1.2.1 - - sass-embedded-android-arm64@1.87.0: - optional: true - - sass-embedded-android-arm@1.87.0: - optional: true - - sass-embedded-android-ia32@1.87.0: - optional: true - - sass-embedded-android-riscv64@1.87.0: - optional: true - - sass-embedded-android-x64@1.87.0: - optional: true - - sass-embedded-darwin-arm64@1.87.0: - optional: true - - sass-embedded-darwin-x64@1.87.0: - optional: true - - sass-embedded-linux-arm64@1.87.0: - optional: true - - sass-embedded-linux-arm@1.87.0: - optional: true - - sass-embedded-linux-ia32@1.87.0: - optional: true - - sass-embedded-linux-musl-arm64@1.87.0: - optional: true - - sass-embedded-linux-musl-arm@1.87.0: - optional: true - - sass-embedded-linux-musl-ia32@1.87.0: - optional: true - - sass-embedded-linux-musl-riscv64@1.87.0: - optional: true - - sass-embedded-linux-musl-x64@1.87.0: - optional: true - - sass-embedded-linux-riscv64@1.87.0: - optional: true - - sass-embedded-linux-x64@1.87.0: - optional: true - - sass-embedded-win32-arm64@1.87.0: - optional: true - - sass-embedded-win32-ia32@1.87.0: - optional: true - - sass-embedded-win32-x64@1.87.0: - optional: true - - sass-embedded@1.87.0: - dependencies: - '@bufbuild/protobuf': 2.2.5 - buffer-builder: 0.2.0 - colorjs.io: 0.5.2 - immutable: 5.1.1 - rxjs: 7.8.2 - supports-color: 8.1.1 - sync-child-process: 1.0.2 - varint: 6.0.0 - optionalDependencies: - sass-embedded-android-arm: 1.87.0 - sass-embedded-android-arm64: 1.87.0 - sass-embedded-android-ia32: 1.87.0 - sass-embedded-android-riscv64: 1.87.0 - sass-embedded-android-x64: 1.87.0 - sass-embedded-darwin-arm64: 1.87.0 - sass-embedded-darwin-x64: 1.87.0 - sass-embedded-linux-arm: 1.87.0 - sass-embedded-linux-arm64: 1.87.0 - sass-embedded-linux-ia32: 1.87.0 - sass-embedded-linux-musl-arm: 1.87.0 - sass-embedded-linux-musl-arm64: 1.87.0 - sass-embedded-linux-musl-ia32: 1.87.0 - sass-embedded-linux-musl-riscv64: 1.87.0 - sass-embedded-linux-musl-x64: 1.87.0 - sass-embedded-linux-riscv64: 1.87.0 - sass-embedded-linux-x64: 1.87.0 - sass-embedded-win32-arm64: 1.87.0 - sass-embedded-win32-ia32: 1.87.0 - sass-embedded-win32-x64: 1.87.0 - - sass@1.80.6: - dependencies: - chokidar: 4.0.3 - immutable: 4.3.7 - source-map-js: 1.2.1 - optionalDependencies: - '@parcel/watcher': 2.5.1 - optional: true - - seek-bzip@2.0.0: - dependencies: - commander: 6.2.1 - - semver-regex@4.0.5: {} - - semver-truncate@3.0.0: - dependencies: - semver: 7.7.1 - - semver@6.3.1: {} - - semver@7.7.1: {} - - set-function-length@1.2.2: - dependencies: - define-data-property: 1.1.4 - es-errors: 1.3.0 - function-bind: 1.1.2 - get-intrinsic: 1.3.0 - gopd: 1.2.0 - has-property-descriptors: 1.0.2 - - setimmediate@1.0.5: {} - - sh-syntax@0.5.7: - dependencies: - tslib: 2.8.1 - - sha.js@2.4.11: - dependencies: - inherits: 2.0.4 - safe-buffer: 5.2.1 - - shebang-command@2.0.0: - dependencies: - shebang-regex: 3.0.0 - - shebang-regex@3.0.0: {} - - side-channel-list@1.0.0: - dependencies: - es-errors: 1.3.0 - object-inspect: 1.13.4 - - side-channel-map@1.0.1: - dependencies: - call-bound: 1.0.4 - es-errors: 1.3.0 - get-intrinsic: 1.3.0 - object-inspect: 1.13.4 - - side-channel-weakmap@1.0.2: - dependencies: - call-bound: 1.0.4 - es-errors: 1.3.0 - get-intrinsic: 1.3.0 - object-inspect: 1.13.4 - side-channel-map: 1.0.1 - - side-channel@1.1.0: - dependencies: - es-errors: 1.3.0 - object-inspect: 1.13.4 - side-channel-list: 1.0.0 - side-channel-map: 1.0.1 - side-channel-weakmap: 1.0.2 - - signal-exit@3.0.7: {} - - signal-exit@4.1.0: {} - - slash@3.0.0: {} - - slice-ansi@4.0.0: - dependencies: - ansi-styles: 4.3.0 - astral-regex: 2.0.0 - is-fullwidth-code-point: 3.0.0 - - smol-toml@1.3.3: {} - - sort-keys-length@1.0.1: - dependencies: - sort-keys: 1.1.2 - - sort-keys@1.1.2: - dependencies: - is-plain-obj: 1.1.0 - - source-map-js@1.2.1: {} - - source-map-support@0.5.21: - dependencies: - buffer-from: 1.1.2 - source-map: 0.6.1 - - source-map@0.6.1: {} - - source-map@0.7.4: {} - - stream-browserify@3.0.0: - dependencies: - inherits: 2.0.4 - readable-stream: 3.6.2 - - stream-http@3.2.0: - dependencies: - builtin-status-codes: 3.0.0 - inherits: 2.0.4 - readable-stream: 3.6.2 - xtend: 4.0.2 - - streamx@2.22.0: - dependencies: - fast-fifo: 1.3.2 - text-decoder: 1.2.3 - optionalDependencies: - bare-events: 2.5.4 - - string-width@4.2.3: - dependencies: - emoji-regex: 8.0.0 - is-fullwidth-code-point: 3.0.0 - strip-ansi: 6.0.1 - - string_decoder@1.1.1: - dependencies: - safe-buffer: 5.1.2 - - string_decoder@1.3.0: - dependencies: - safe-buffer: 5.2.1 - - strip-ansi@6.0.1: - dependencies: - ansi-regex: 5.0.1 - - strip-dirs@3.0.0: - dependencies: - inspect-with-kind: 1.0.5 - is-plain-obj: 1.1.0 - - strip-final-newline@2.0.0: {} - - strip-json-comments@3.1.1: {} - - strip-json-comments@5.0.1: {} - - strtok3@9.1.1: - dependencies: - '@tokenizer/token': 0.3.0 - peek-readable: 5.4.2 - - style-search@0.1.0: {} - - stylelint-config-clean-order@7.0.0(stylelint@16.19.0(typescript@5.8.3)): - dependencies: - stylelint: 16.19.0(typescript@5.8.3) - stylelint-order: 6.0.4(stylelint@16.19.0(typescript@5.8.3)) - - stylelint-config-recommended-scss@14.1.0(postcss@8.5.3)(stylelint@16.19.0(typescript@5.8.3)): - dependencies: - postcss-scss: 4.0.9(postcss@8.5.3) - stylelint: 16.19.0(typescript@5.8.3) - stylelint-config-recommended: 14.0.1(stylelint@16.19.0(typescript@5.8.3)) - stylelint-scss: 6.11.1(stylelint@16.19.0(typescript@5.8.3)) - optionalDependencies: - postcss: 8.5.3 - - stylelint-config-recommended@14.0.1(stylelint@16.19.0(typescript@5.8.3)): - dependencies: - stylelint: 16.19.0(typescript@5.8.3) - - stylelint-config-sass-guidelines@12.1.0(postcss@8.5.3)(stylelint@16.19.0(typescript@5.8.3)): - dependencies: - '@stylistic/stylelint-plugin': 3.1.2(stylelint@16.19.0(typescript@5.8.3)) - postcss: 8.5.3 - postcss-scss: 4.0.9(postcss@8.5.3) - stylelint: 16.19.0(typescript@5.8.3) - stylelint-scss: 6.11.1(stylelint@16.19.0(typescript@5.8.3)) - - stylelint-config-standard-scss@14.0.0(postcss@8.5.3)(stylelint@16.19.0(typescript@5.8.3)): - dependencies: - stylelint: 16.19.0(typescript@5.8.3) - stylelint-config-recommended-scss: 14.1.0(postcss@8.5.3)(stylelint@16.19.0(typescript@5.8.3)) - stylelint-config-standard: 36.0.1(stylelint@16.19.0(typescript@5.8.3)) - optionalDependencies: - postcss: 8.5.3 - - stylelint-config-standard@36.0.1(stylelint@16.19.0(typescript@5.8.3)): - dependencies: - stylelint: 16.19.0(typescript@5.8.3) - stylelint-config-recommended: 14.0.1(stylelint@16.19.0(typescript@5.8.3)) - - stylelint-declaration-block-no-ignored-properties@2.8.0(stylelint@16.19.0(typescript@5.8.3)): - dependencies: - stylelint: 16.19.0(typescript@5.8.3) - - stylelint-order@6.0.4(stylelint@16.19.0(typescript@5.8.3)): - dependencies: - postcss: 8.5.3 - postcss-sorting: 8.0.2(postcss@8.5.3) - stylelint: 16.19.0(typescript@5.8.3) - - stylelint-plugin-logical-css@1.2.3(stylelint@16.19.0(typescript@5.8.3)): - dependencies: - stylelint: 16.19.0(typescript@5.8.3) - - stylelint-scss@6.11.1(stylelint@16.19.0(typescript@5.8.3)): - dependencies: - css-tree: 3.1.0 - is-plain-object: 5.0.0 - known-css-properties: 0.35.0 - mdn-data: 2.21.0 - postcss-media-query-parser: 0.2.3 - postcss-resolve-nested-selector: 0.1.6 - postcss-selector-parser: 7.1.0 - postcss-value-parser: 4.2.0 - stylelint: 16.19.0(typescript@5.8.3) - - stylelint@16.19.0(typescript@5.8.3): - dependencies: - '@csstools/css-parser-algorithms': 3.0.4(@csstools/css-tokenizer@3.0.3) - '@csstools/css-tokenizer': 3.0.3 - '@csstools/media-query-list-parser': 4.0.2(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3) - '@csstools/selector-specificity': 5.0.0(postcss-selector-parser@7.1.0) - '@dual-bundle/import-meta-resolve': 4.1.0 - balanced-match: 2.0.0 - colord: 2.9.3 - cosmiconfig: 9.0.0(typescript@5.8.3) - css-functions-list: 3.2.3 - css-tree: 3.1.0 - debug: 4.4.0 - fast-glob: 3.3.3 - fastest-levenshtein: 1.0.16 - file-entry-cache: 10.0.8 - global-modules: 2.0.0 - globby: 11.1.0 - globjoin: 0.1.4 - html-tags: 3.3.1 - ignore: 7.0.3 - imurmurhash: 0.1.4 - is-plain-object: 5.0.0 - known-css-properties: 0.36.0 - mathml-tag-names: 2.1.3 - meow: 13.2.0 - micromatch: 4.0.8 - normalize-path: 3.0.0 - picocolors: 1.1.1 - postcss: 8.5.3 - postcss-resolve-nested-selector: 0.1.6 - postcss-safe-parser: 7.0.1(postcss@8.5.3) - postcss-selector-parser: 7.1.0 - postcss-value-parser: 4.2.0 - resolve-from: 5.0.0 - string-width: 4.2.3 - supports-hyperlinks: 3.2.0 - svg-tags: 1.0.0 - table: 6.9.0 - write-file-atomic: 5.0.1 - transitivePeerDependencies: - - supports-color - - typescript - - supports-color@7.2.0: - dependencies: - has-flag: 4.0.0 - - supports-color@8.1.1: - dependencies: - has-flag: 4.0.0 - - supports-hyperlinks@3.2.0: - dependencies: - has-flag: 4.0.0 - supports-color: 7.2.0 - - supports-preserve-symlinks-flag@1.0.0: {} - - svg-tags@1.0.0: {} - - sync-child-process@1.0.2: - dependencies: - sync-message-port: 1.1.3 - - sync-message-port@1.1.3: {} - - systemjs@6.15.1: {} - - table@6.9.0: - dependencies: - ajv: 8.17.1 - lodash.truncate: 4.4.2 - slice-ansi: 4.0.0 - string-width: 4.2.3 - strip-ansi: 6.0.1 - - tapable@2.2.1: {} - - tar-stream@3.1.7: - dependencies: - b4a: 1.6.7 - fast-fifo: 1.3.2 - streamx: 2.22.0 - - terser@5.36.0: - dependencies: - '@jridgewell/source-map': 0.3.6 - acorn: 8.14.1 - commander: 2.20.3 - source-map-support: 0.5.21 - - text-decoder@1.2.3: - dependencies: - b4a: 1.6.7 - - through@2.3.8: {} - - timers-browserify@2.0.12: - dependencies: - setimmediate: 1.0.5 - - tinyglobby@0.2.13: - dependencies: - fdir: 6.4.4(picomatch@4.0.2) - picomatch: 4.0.2 - - to-regex-range@5.0.1: - dependencies: - is-number: 7.0.0 - - token-types@6.0.0: - dependencies: - '@tokenizer/token': 0.3.0 - ieee754: 1.2.1 - - ts-api-utils@2.1.0(typescript@5.8.3): - dependencies: - typescript: 5.8.3 - - ts-pattern@5.7.0: {} - - tsconfck@3.1.5(typescript@5.8.3): - optionalDependencies: - typescript: 5.8.3 - - tslib@2.8.1: {} - - tty-browserify@0.0.1: {} - - type-check@0.4.0: - dependencies: - prelude-ls: 1.2.1 - - typescript-eslint@8.31.0(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3): - dependencies: - '@typescript-eslint/eslint-plugin': 8.31.0(@typescript-eslint/parser@8.31.0(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3))(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3) - '@typescript-eslint/parser': 8.31.0(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3) - '@typescript-eslint/utils': 8.31.0(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3) - eslint: 9.25.1(jiti@2.4.2) - typescript: 5.8.3 - transitivePeerDependencies: - - supports-color - - typescript@5.8.3: {} - - uint8array-extras@1.4.0: {} - - unbzip2-stream@1.4.3: - dependencies: - buffer: 5.7.1 - through: 2.3.8 - - undici-types@6.21.0: {} - - unicode-canonical-property-names-ecmascript@2.0.1: {} - - unicode-match-property-ecmascript@2.0.0: - dependencies: - unicode-canonical-property-names-ecmascript: 2.0.1 - unicode-property-aliases-ecmascript: 2.1.0 - - unicode-match-property-value-ecmascript@2.2.0: {} - - unicode-property-aliases-ecmascript@2.1.0: {} - - update-browserslist-db@1.1.3(browserslist@4.24.4): - dependencies: - browserslist: 4.24.4 - escalade: 3.2.0 - picocolors: 1.1.1 - - uri-js@4.4.1: - dependencies: - punycode: 2.3.1 - - url@0.11.4: - dependencies: - punycode: 1.4.1 - qs: 6.14.0 - - util-deprecate@1.0.2: {} - - util@0.12.5: - dependencies: - inherits: 2.0.4 - is-arguments: 1.2.0 - is-generator-function: 1.1.0 - is-typed-array: 1.1.15 - which-typed-array: 1.1.19 - - valibot@1.0.0(typescript@5.8.3): - optionalDependencies: - typescript: 5.8.3 - - varint@6.0.0: {} - - vite-plugin-manifest-sri@0.2.0: {} - - vite-plugin-node-polyfills@0.23.0(rollup@4.40.0)(vite@6.3.2(@types/node@22.14.1)(jiti@2.4.2)(sass-embedded@1.87.0)(sass@1.80.6)(terser@5.36.0)): - dependencies: - '@rollup/plugin-inject': 5.0.5(rollup@4.40.0) - node-stdlib-browser: 1.3.1 - vite: 6.3.2(@types/node@22.14.1)(jiti@2.4.2)(sass-embedded@1.87.0)(sass@1.80.6)(terser@5.36.0) - transitivePeerDependencies: - - rollup - - vite-plugin-valibot-env@0.10.0(valibot@1.0.0(typescript@5.8.3))(vite@6.3.2(@types/node@22.14.1)(jiti@2.4.2)(sass-embedded@1.87.0)(sass@1.80.6)(terser@5.36.0)): - dependencies: - is-unicode-supported: 2.1.0 - valibot: 1.0.0(typescript@5.8.3) - vite: 6.3.2(@types/node@22.14.1)(jiti@2.4.2)(sass-embedded@1.87.0)(sass@1.80.6)(terser@5.36.0) - - vite-tsconfig-paths@5.1.4(typescript@5.8.3)(vite@6.3.2(@types/node@22.14.1)(jiti@2.4.2)(sass-embedded@1.87.0)(sass@1.80.6)(terser@5.36.0)): - dependencies: - debug: 4.4.0 - globrex: 0.1.2 - tsconfck: 3.1.5(typescript@5.8.3) - optionalDependencies: - vite: 6.3.2(@types/node@22.14.1)(jiti@2.4.2)(sass-embedded@1.87.0)(sass@1.80.6)(terser@5.36.0) - transitivePeerDependencies: - - supports-color - - typescript - - vite@6.3.2(@types/node@22.14.1)(jiti@2.4.2)(sass-embedded@1.87.0)(sass@1.80.6)(terser@5.36.0): - dependencies: - esbuild: 0.25.3 - fdir: 6.4.4(picomatch@4.0.2) - picomatch: 4.0.2 - postcss: 8.5.3 - rollup: 4.40.0 - tinyglobby: 0.2.13 - optionalDependencies: - '@types/node': 22.14.1 - fsevents: 2.3.3 - jiti: 2.4.2 - sass: 1.80.6 - sass-embedded: 1.87.0 - terser: 5.36.0 - - vm-browserify@1.1.2: {} - - wcwidth@1.0.1: - dependencies: - defaults: 1.0.4 - optional: true - - which-typed-array@1.1.19: - dependencies: - available-typed-arrays: 1.0.7 - call-bind: 1.0.8 - call-bound: 1.0.4 - for-each: 0.3.5 - get-proto: 1.0.1 - gopd: 1.2.0 - has-tostringtag: 1.0.2 - - which@1.3.1: - dependencies: - isexe: 2.0.0 - - which@2.0.2: - dependencies: - isexe: 2.0.0 - - word-wrap@1.2.5: {} - - wp-types@4.68.0: - dependencies: - typescript: 5.8.3 - - write-file-atomic@5.0.1: - dependencies: - imurmurhash: 0.1.4 - signal-exit: 4.1.0 - - xtend@4.0.2: {} - - yallist@3.1.1: {} - - yauzl@3.2.0: - dependencies: - buffer-crc32: 0.2.13 - pend: 1.2.0 - - yocto-queue@0.1.0: {} - - zod-validation-error@3.4.0(zod@3.24.3): - dependencies: - zod: 3.24.3 - - zod@3.24.3: {} diff --git a/psalm.xml b/psalm.xml index 8c82abe2..0746c4bc 100755 --- a/psalm.xml +++ b/psalm.xml @@ -1,4 +1,4 @@ - + - - - - - - - - - - - - - + + + + + + + + + + + + + diff --git a/tests/capture.spec.ts b/tests/capture.spec.ts new file mode 100644 index 00000000..0ce1cea2 --- /dev/null +++ b/tests/capture.spec.ts @@ -0,0 +1,53 @@ +import { expect, type Page, test } from "@playwright/test"; + +type TestPage = { + pageName: string; + url: string; +}; + +const genTimestamp = (): string => + Intl.DateTimeFormat("sv-SE", { + dateStyle: "short", + }).format(Date.now()); + +const takeFullPageScreenshot = async (page: Page, name: string): Promise => { + await page.screenshot({ fullPage: false, path: `captures/${name}`, type: "png" }); +}; + +// TODO: Faire des tests spécifiques pour chaque page, que l'on puisse attendre que toutes les images dans la vue soient chargées, et prendre des captures à différentes positions dans la page. + +Array.from([ + { + pageName: "home", + url: "https://haikuatelier.gcch.local/", + }, + { + pageName: "shop", + url: "https://haikuatelier.gcch.local/shop/", + }, + { + pageName: "about", + url: "https://haikuatelier.gcch.local/about/", + }, + { + pageName: "category", + url: "https://haikuatelier.gcch.local/product-category/rings/", + }, + { + pageName: "product", + url: "https://haikuatelier.gcch.local/product/fuyou-long-earrings-silver/", + }, +]).forEach(({ pageName, url }) => { + test(pageName, async ({ page }, testInfo) => { + await page.goto(url); + + const projectName = testInfo.project.name; + const timestamp: string = genTimestamp(); + const viewport = page.viewportSize(); + + const captureName = `${pageName}/${projectName}-${viewport?.width}-${viewport?.height} ${timestamp}.png`; + + await takeFullPageScreenshot(page, captureName); + await expect(page).toHaveURL(url); + }); +}); diff --git a/vite.config.js b/vite.config.js index 641ae707..2f5a2707 100755 --- a/vite.config.js +++ b/vite.config.js @@ -4,6 +4,7 @@ import { resolve } from "node:path"; import process from "node:process"; import * as v from "valibot"; import { defineConfig, loadEnv } from "vite"; +import { compression } from "vite-plugin-compression2"; import manifestSRI from "vite-plugin-manifest-sri"; import { nodePolyfills } from "vite-plugin-node-polyfills"; import valibot from "vite-plugin-valibot-env"; @@ -16,13 +17,40 @@ const SRC_TYPESCRIPT_PATHS = new fdir() .crawl(`web/app/themes/${SLUG_THEME}/src/scripts`) .withPromise(); -/* Voir le fichier vite.env.d.ts */ +// Voir le fichier vite.env.d.ts. const SCHEMA_ENVIRONNEMENT = v.object({ VITE_GLITCHTIP_NSD: v.pipe(v.string(), v.url(), v.readonly()), VITE_MODE: v.pipe(v.string(), v.readonly()), VITE_URL: v.pipe(v.string(), v.nonEmpty(), v.url(), v.readonly()), }); +const basePlugins = [ + // Permet de valider les variables d'environnements définies à partir d'un schéma Valibot + valibot(SCHEMA_ENVIRONNEMENT), + manifestSRI({ algorithms: ["sha512"] }), + nodePolyfills({ + include: [], + protocolImports: true, + }), +]; +// Les extensions activées en production. +const prodPlugins = [ + legacy({ + modernPolyfills: true, + modernTargets: + "chrome >0 and last 3 years, edge >0 and last 3 years, safari >0 and last 3 years, firefox >0 and last 3 years, and_chr >0 and last 3 years, and_ff >0 and last 3 years, ios >0 and last 3 years", + renderLegacyChunks: true, + }), + compression({ + algorithms: [ + "brotliCompress", + "gzip", + "zstandard", + ], + threshold: 1000, + }), +]; + export default defineConfig(async ({ mode }) => { const env = loadEnv(mode, process.cwd(), "VITE"); @@ -31,9 +59,9 @@ export default defineConfig(async ({ mode }) => { build: { assetsDir: ".", emptyOutDir: true, - /* Génère un fichier manifeste dans outDir */ + // Génère un fichier manifeste dans outDir. manifest: true, - minify: env.VITE_MODE === "production", + minify: env["VITE_MODE"] === "production", outDir: resolve("./web/app/themes/haiku-atelier-2024/assets/js"), reportCompressedSize: true, rollupOptions: { @@ -41,31 +69,17 @@ export default defineConfig(async ({ mode }) => { output: { assetFileNames: "[name].[hash].[extname]", chunkFileNames: "[name].[hash].js", - compact: env.VITE_MODE === "production", + compact: env["VITE_MODE"] === "production", entryFileNames: "[name].js", validate: true, }, - treeshake: "smallest", + treeshake: true, }, - sourcemap: env.VITE_MODE === "production", + sourcemap: env["VITE_MODE"] === "production", target: "es2020", write: true, }, - mode: env.VITE_MODE ?? "development", - plugins: [ - // Permet de valider les variables d'environnements définies à partir d'un schéma Valibot - valibot(SCHEMA_ENVIRONNEMENT), - manifestSRI({ algorithms: ["sha512"] }), - nodePolyfills({ - include: [], - protocolImports: true, - }), - legacy({ - modernPolyfills: true, - modernTargets: - "chrome >0 and last 3 years, edge >0 and last 3 years, safari >0 and last 3 years, firefox >0 and last 3 years, and_chr >0 and last 3 years, and_ff >0 and last 3 years, ios >0 and last 3 years", - renderLegacyChunks: false, - }), - ], + mode: env["VITE_MODE"] ?? "production", + plugins: env["VITE_MODE"] === "production" ? [...basePlugins, ...prodPlugins] : [...basePlugins], }; }); diff --git a/web/app/db.php b/web/app/db.php deleted file mode 120000 index 73510b50..00000000 --- a/web/app/db.php +++ /dev/null @@ -1 +0,0 @@ -/var/www/html/web/app/plugins/query-monitor/wp-content/db.php \ No newline at end of file diff --git a/web/app/languages/admin-en_GB.l10n.php b/web/app/languages/admin-en_GB.l10n.php old mode 100755 new mode 100644 index faac9990..5efa4fcb --- a/web/app/languages/admin-en_GB.l10n.php +++ b/web/app/languages/admin-en_GB.l10n.php @@ -1,7 +1,7 @@ 'GlotPress/4.0.1','translation-revision-date'=>'2024-11-14 20:17:10+0000','plural-forms'=>'nplurals=2; plural=n != 1;','project-id-version'=>'WordPress - 6.7.x - Development - Administration','language'=>'en_GB','messages'=>['start of week1'=>'1','default GMT offset or timezone string0'=>'Europe/London','If a dependent plugin is missing some dependencies, its activation button will be disabled until the required dependencies are activated.'=>'If a dependent plugin is missing some dependencies, its activation button will be disabled until the required dependencies are activated.','If a required plugin is deleted, a notice will be displayed on the Plugin administration screen informing the user that there is some missing dependencies to install and/or activate. Additionally, each plugin whose dependencies are not met will have an error notice on their plugin row.'=>'If a required plugin is deleted, a notice will be displayed on the Plugin administration screen informing the user that there is some missing dependencies to install and/or activate. Additionally, each plugin whose dependencies are not met will have an error notice on their plugin row.','Plugin Dependencies aims to make the process of installing and activating add-ons (dependents) and the plugins they rely on (dependencies) consistent and easy.'=>'Plugin Dependencies aims to make the process of installing and activating add-ons (dependents) and the plugins they rely on (dependencies) consistent and easy.','Dependencies'=>'Dependencies','Comments to display at the top of each page'=>'Comments to display at the top of each page','Comments page to display by default'=>'Comments page to display by default','Top level comments per page'=>'Top level comments per page','Break comments into pages'=>'Break comments into pages','Comment Pagination'=>'Comment Pagination','Number of levels for threaded (nested) comments'=>'Number of levels for threaded (nested) comments','Enable threaded (nested) comments'=>'Enable threaded (nested) comments','Close comments when post is how many days old'=>'Close comments when post is how many days old','Automatically close comments on old posts'=>'Automatically close comments on old posts','Menu order updated'=>'Menu order updated','Menu parent updated'=>'Menu parent updated','Change revision by using the left and right arrow keys'=>'Change revision by using the left and right arrow keys','Select a revision'=>'Select a revision','A directory could not be read.'=>'A directory could not be read.','Database Extension'=>'Database Extension','Empty value'=>'Empty value','Max simultaneous file uploads'=>'Max simultaneous file uploads','Menu Order'=>'Menu Order','Menu Parent'=>'Menu Parent','Skip to Editor'=>'Skip to Editor','WordPress %s Field Guide'=>'WordPress %s Field Guide','WordPress %s Release Notes'=>'WordPress %s Release Notes','65+ accessibility fixes and enhancements focus on foundational aspects of the WordPress experience, from improving user interface components and keyboard navigation in the Editor, to an accessible heading on WordPress login screens and clearer labeling throughout.'=>'65+ accessibility fixes and enhancements focus on foundational aspects of the WordPress experience, from improving user interface components and keyboard navigation in the Editor, to an accessible heading on WordPress log-in screens and clearer labeling throughout.','WordPress 6.7 delivers important performance updates, including faster pattern loading, optimized previews in the data views component, improved PHP 8+ support and removal of deprecated code, auto sizes for lazy-loaded images, and more efficient tag processing in the HTML API.'=>'WordPress 6.7 delivers important performance updates, including faster pattern loading, optimised previews in the data views component, improved PHP 8+ support and removal of deprecated code, auto sizes for lazy-loaded images, and more efficient tag processing in the HTML API.','Create, edit, remove, and apply font size presets with the next addition to the Styles interface. Override theme defaults or create your own custom font size, complete with fluid typography for responsive font scaling. Get into the details!'=>'Create, edit, remove, and apply font size presets with the next addition to the Styles interface. Override theme defaults or create your own custom font size, complete with fluid typography for responsive font scaling. Get into the details!','New style section, new possibilities'=>'New style section, new possibilities','Embrace your inner font nerd'=>'Embrace your inner font nerd','This feature introduces a new UI for connecting blocks to custom fields, putting control of dynamic content directly in the editor. Link blocks with fields in just a few clicks, enhancing flexibility and efficiency when building. Your clients will love you—as if they didn’t already.'=>'This feature introduces a new UI for connecting blocks to custom fields, putting control of dynamic content directly in the editor. Link blocks with fields in just a few clicks, enhancing flexibility and efficiency when building. Your clients will love you—as if they didn’t already.','A streamlined way to create dynamic content'=>'A streamlined way to create dynamic content','Connect blocks and custom fields with no hassle (or code)'=>'Connect blocks and custom fields with no hassle (or code)','Edit and arrange entire sections of your content like never before. A broader view of your site lets you add, edit, shuffle, or remove patterns to your liking. Embrace your inner architect.'=>'Edit and arrange entire sections of your content like never before. A broader view of your site lets you add, edit, shuffle, or remove patterns to your liking. Embrace your inner architect.','Explore your content from a new perspective'=>'Explore your content from a new perspective','Get the big picture with Zoom Out'=>'Get the big picture with Zoom Out','Twenty Twenty-Five offers a flexible, design-focused theme that lets you build stunning sites with ease. Tailor your aesthetic with an array of style options, block patterns, and color palettes. Pared down to the essentials, this is a theme that can truly grow with you.'=>'Twenty Twenty-Five offers a flexible, design-focused theme that lets you build stunning sites with ease. Tailor your aesthetic with an array of style options, block patterns, and colour palettes. Pared down to the essentials, this is a theme that can truly grow with you.','Endless possibility without complexity'=>'Endless possibility without complexity','WordPress 6.7 debuts the modern Twenty Twenty-Five theme, offering ultimate design flexibility for any blog at any scale. Control your site typography like never before with new font management features. The new Zoom Out feature lets you design your site with a macro view, stepping back from the details to bring the big picture to life.'=>'WordPress 6.7 debuts the modern Twenty Twenty-Five theme, offering ultimate design flexibility for any blog at any scale. Control your site typography like never before with new font management features. The new Zoom Out feature lets you design your site with a macro view, stepping back from the details to bring the big picture to life.','The directory does not exist.'=>'The directory does not exist.','Common Errors'=>'Common Errors','Documentation on Editing Files'=>'Documentation on Editing Files','Documentation on Editing Plugins'=>'Documentation on Editing Plugins','https://developer.wordpress.org/plugins/settings/settings-api/'=>'https://developer.wordpress.org/plugins/settings/settings-api/','The %1$s setting is unregistered. Unregistered settings are deprecated. See documentation on the Settings API.'=>'The %1$s setting is unregistered. Unregistered settings are deprecated. See documentation on the Settings API.','https://developer.wordpress.org/advanced-administration/wordpress/update-services/'=>'https://developer.wordpress.org/advanced-administration/wordpress/update-services/','https://developer.wordpress.org/advanced-administration/wordpress/feeds/'=>'https://developer.wordpress.org/advanced-administration/wordpress/feeds/','Documentation on Nginx configuration.'=>'Documentation on Nginx configuration.','https://developer.wordpress.org/advanced-administration/server/wordpress-in-directory/'=>'https://developer.wordpress.org/advanced-administration/server/wordpress-in-directory/','Documentation on Site Management'=>'Documentation on Site Management','Type of relationnone'=>'none','No URL Provided.'=>'No URL provided.','https://developer.wordpress.org/advanced-administration/server/file-permissions/'=>'https://developer.wordpress.org/advanced-administration/server/file-permissions/','Package not available.'=>'Package not available.','Autoloaded options'=>'Autoloaded options','More info about optimizing autoloaded options'=>'More info about optimising autoloaded options','https://developer.wordpress.org/advanced-administration/performance/optimization/#autoloaded-options'=>'https://developer.wordpress.org/advanced-administration/performance/optimization/#autoloaded-options','Your site has %1$s autoloaded options (size: %2$s) in the options table, which could cause your site to be slow. You can review the options being autoloaded in your database and remove any options that are no longer needed by your site.'=>'Your site has %1$s autoloaded options (size: %2$s) in the options table, which could cause your site to be slow. You can review the options being autoloaded in your database and remove any options that are no longer needed by your site.','Autoloaded options could affect performance'=>'Autoloaded options could affect performance','Your site has %1$s autoloaded options (size: %2$s) in the options table, which is acceptable.'=>'Your site has %1$s autoloaded options (size: %2$s) in the options table, which is acceptable.','Autoloaded options are acceptable'=>'Autoloaded options are acceptable','Autoloaded options are configuration settings for plugins and themes that are automatically loaded with every page load in WordPress. Having too many autoloaded options can slow down your site.'=>'Autoloaded options are configuration settings for plugins and themes that are automatically loaded with every page load in WordPress. Having too many autoloaded options can slow down your site.','https://developer.wordpress.org/advanced-administration/performance/optimization/#persistent-object-cache'=>'https://developer.wordpress.org/advanced-administration/performance/optimization/#persistent-object-cache','https://developer.wordpress.org/advanced-administration/performance/optimization/#caching'=>'https://developer.wordpress.org/advanced-administration/performance/optimization/#caching','Fonts directory size'=>'Fonts directory size','Fonts directory location'=>'Fonts directory location','The fonts directory'=>'The fonts directory','The following plugins failed to update. If there was a fatal error in the update, the previously installed version has been restored.'=>'The following plugins failed to update. If there was a fatal error in the update, the previously installed version has been restored.','The update for \'%s\' contained a fatal error. The previously installed version has been restored.'=>'The update for \'%s\' contained a fatal error. The previously installed version has been restored.','The update for \'%s\' contained a fatal error. The previously installed version could not be restored.'=>'The update for \'%s\' contained a fatal error. The previously installed version could not be restored.','https://developer.wordpress.org/advanced-administration/security/backup/'=>'https://developer.wordpress.org/advanced-administration/security/backup/','If you are a plugin author, you can learn more about how to add the Personal Data Exporter to a plugin.'=>'If you are a plugin author, you can learn more about how to add the Personal Data Exporter to a plugin.','If you are a plugin author, you can learn more about how to add the Personal Data Eraser to a plugin.'=>'If you are a plugin author, you can learn more about how to add the Personal Data Eraser to a plugin.','See everything new'=>'See everything new','https://wordpress.org/download/releases/6-7/'=>'https://wordpress.org/download/releases/6-7/','For a comprehensive overview of all the new features and enhancements in WordPress %s, please visit the feature-showcase website.'=>'For a comprehensive overview of all the new features and enhancements in WordPress %s, please visit the feature-showcase website.','And much more'=>'And much more','patterns menu itemPatterns'=>'Patterns','Change Site Icon'=>'Change site icon','
Error: %1$s requires %2$d plugin to be installed and activated: %3$s.'=>'Error: %1$s requires %2$d plugin to be installed and activated: %3$s.' . "\0" . 'Error: %1$s requires %2$d plugins to be installed and activated: %3$s.','pluginUpdate Now'=>'Update now','themeInstall Now'=>'Install now','This plugin cannot be activated because required plugins are missing or inactive.'=>'This plugin cannot be activated because required plugins are missing or inactive.','This plugin is active but may not function correctly because required plugins are missing or inactive.'=>'This plugin is active but may not function correctly because required plugins are missing or inactive.','Requires: %s'=>'Requires: %s','Required by: %s'=>'Required by: %s','Note: This plugin cannot be deactivated or deleted until the plugins that require it are deactivated or deleted.'=>'Note: this plugin cannot be deactivated or deleted until the plugins that require it are deactivated or deleted.','You cannot deactivate this plugin as other plugins depend on it.'=>'You cannot deactivate this plugin as other plugins depend on it.','You cannot delete this plugin as other plugins require it.'=>'You cannot delete this plugin as other plugins require it.','You cannot activate this plugin as it has unmet requirements.'=>'You cannot activate this plugin as it has unmet requirements.','You cannot deactivate this plugin as other plugins require it.'=>'You cannot deactivate this plugin as other plugins require it.','pluginDeactivate'=>'Deactivate','pluginNetwork Deactivate'=>'Network deactivate','pluginActivate'=>'Activate','Additional plugins are required'=>'Additional plugins are required','Site ID'=>'Site ID','The PHP version on your server is %1$s, however the new theme version requires %2$s.'=>'The PHP version on your server is %1$s, however the new theme version requires %2$s.','Your WordPress version is %1$s, however the new theme version requires %2$s.'=>'Your WordPress version is %1$s, however the new theme version requires %2$s.','pluginNetwork Activate'=>'Network activate','%s is already active.'=>'%s is already active.','pluginInstall Now'=>'Install now','Created by a worldwide team of passionate individuals'=>'Created by a worldwide team of passionate individuals','Accessibility improvements'=>'Accessibility improvements','Performance updates'=>'Performance updates','Only .zip archives may be uploaded.'=>'Only .zip archives may be uploaded.','The block widgets require JavaScript. Please enable JavaScript in your browser settings, or activate the Classic Widgets plugin.'=>'The block widgets require JavaScript. Please enable JavaScript in your browser settings, or activate the Classic Widgets plugin.','The block editor requires JavaScript. Please enable JavaScript in your browser settings, or install the Classic Editor plugin.'=>'The block editor requires JavaScript. Please enable JavaScript in your browser settings, or install the Classic Editor plugin.','The block editor requires JavaScript. Please enable JavaScript in your browser settings, or activate the Classic Editor plugin.'=>'The block editor requires JavaScript. Please enable JavaScript in your browser settings, or activate the Classic Editor plugin.','Add New Site'=>'Add New Site','Add New Plugin'=>'Add New Plugin','Rotate 180°'=>'Rotate 180°','Rotate 90° right'=>'Rotate 90° right','Rotate 90° left'=>'Rotate 90° left','%s pattern moved to the Trash.'=>'%s pattern moved to the Bin.' . "\0" . '%s patterns moved to the Bin.','%s pattern permanently deleted.'=>'%s pattern permanently deleted.' . "\0" . '%s patterns permanently deleted.','%s pattern updated.'=>'%s pattern updated.' . "\0" . '%s patterns updated.','When using Bulk Edit, you can change the metadata (categories, author, etc.) for all selected posts at once. To remove a post from the grouping, just click the %sremove button next to its name in the Bulk Edit area that appears.'=>'When using Bulk Edit, you can change the metadata (categories, author, etc.) for all selected posts at once. To remove a post from the grouping, just click the %sremove button next to its name in the Bulk Edit area that appears.','Read the WordPress %s Release Notes for information on installation, enhancements, fixed issues, release contributors, learning resources, and the list of file changes.'=>'Read the WordPress %s Release Notes for information on installation, enhancements, fixed issues, release contributors, learning resources, and the list of file changes.','Explore the WordPress %s Field Guide. Learn about the changes in this release with detailed developer notes to help you build with WordPress.'=>'Explore the WordPress %s Field Guide. Learn about the changes in this release with detailed developer notes to help you build with WordPress.','Invalid URL format.'=>'Invalid URL format.','The PHP version on your server is %1$s, however the new plugin version requires %2$s.'=>'The PHP version on your server is %1$s, however the new plugin version requires %2$s.','Your WordPress version is %1$s, however the new plugin version requires %2$s.'=>'Your WordPress version is %1$s, however the new plugin version requires %2$s.','https://make.wordpress.org/contribute/'=>'https://make.wordpress.org/contribute/','Updates may take several minutes to complete. If there is no feedback after 5 minutes, or if there are errors please refer to the Help section above.'=>'Updates may take several minutes to complete. If there is no feedback after 5 minutes, or if there are errors please refer to the Help section above.','Restore Plugin or Theme'=>'Restore Plugin or Theme','On systems with fewer resources, this may lead to server timeouts or resource limits being reached. If you encounter an issue during the update process, please create a support forum topic and reference Rollback in the issue title.'=>'On systems with fewer resources, this may lead to server timeouts or resource limits being reached. If you encounter an issue during the update process, please create a support forum topic and reference Rollback in the issue title.','This feature will create a temporary backup of a plugin or theme before it is upgraded. This backup is used to restore the plugin or theme back to its previous state if there is an error during the update process.'=>'This feature will create a temporary backup of a plugin or theme before it is upgraded. This backup is used to restore the plugin or theme back to its previous state if there is an error during the update process.','The site editor requires JavaScript. Please enable JavaScript in your browser settings.'=>'The site editor requires JavaScript. Please enable JavaScript in your browser settings.','https://wordpress.org/documentation/article/customize-permalinks/'=>'https://wordpress.org/documentation/article/customize-permalinks/','In a few words, explain what this site is about. Example: “%s.”'=>'In a few words, explain what this site is about. Example: “%s.”','Note: Discouraging search engines does not block access to your site — it is up to search engines to honor your request.'=>'Note: Discouraging search engines does not block access to your site — it is up to search engines to honor your request.','New custom field name'=>'New custom field name','Search Media:'=>'Search Media:','Clear Crop'=>'Clear Crop','Apply Crop'=>'Apply Crop','vertical start position'=>'vertical start position','horizontal start position'=>'horizontal start position','Starting Coordinates:'=>'Starting Coordinates:','Crop Image'=>'Crop Image','Images cannot be scaled to a size larger than the original.'=>'Images cannot be scaled to a size larger than the original.','Save Edits'=>'Save Edits','Cancel Editing'=>'Cancel Editing','Could not create the destination directory.'=>'Could not create the destination directory.','Table ordered by E-mail.'=>'Table ordered by Email.','Table ordered by Username.'=>'Table ordered by Username.','Could not delete the temporary backup directory for %s.'=>'Could not delete the temporary backup directory for %s.','Could not restore the original version of %s.'=>'Could not restore the original version of %s.','Could not move the old version to the %s directory.'=>'Could not move the old version to the %s directory.','Could not create the %s directory.'=>'Could not create the %s directory.','Table ordered by Links.'=>'Table ordered by Links.','Table ordered by Posts Count.'=>'Table ordered by Posts Count.','Table ordered by Slug.'=>'Table ordered by Slug.','Table ordered by Description.'=>'Table ordered by Description.','Table ordered hierarchically.'=>'Table ordered hierarchically.','Available disk space'=>'Available disk space','Plugin and theme temporary backup directory access'=>'Plugin and theme temporary backup directory access','The %1$s directory does not exist, and the server does not have write permissions in %2$s to create it. This directory is used for plugin and theme updates. Please make sure the server has write permissions in %2$s.'=>'The %1$s directory does not exist, and the server does not have write permissions in %2$s to create it. This directory is used for plugin and theme updates. Please make sure the server has write permissions in %2$s.','The upgrade directory cannot be created'=>'The upgrade directory cannot be created','The %s directory exists but is not writable. This directory is used for plugin and theme updates. Please make sure the server has write permissions to this directory.'=>'The %s directory exists but is not writable. This directory is used for plugin and theme updates. Please make sure the server has write permissions to this directory.','The upgrade directory exists but is not writable'=>'The upgrade directory exists but is not writable','The %s directory exists but is not writable. This directory is used to improve the stability of plugin and theme updates. Please make sure the server has write permissions to this directory.'=>'The %s directory exists but is not writable. This directory is used to improve the stability of plugin and theme updates. Please make sure the server has write permissions to this directory.','The temporary backup directory exists but is not writable'=>'The temporary backup directory exists but is not writable','The %s directory exists but is not writable. This directory is used to improve the stability of theme updates. Please make sure the server has write permissions to this directory.'=>'The %s directory exists but is not writable. This directory is used to improve the stability of theme updates. Please make sure the server has write permissions to this directory.','Theme temporary backup directory exists but is not writable'=>'Theme temporary backup directory exists but is not writable','The %s directory exists but is not writable. This directory is used to improve the stability of plugin updates. Please make sure the server has write permissions to this directory.'=>'The %s directory exists but is not writable. This directory is used to improve the stability of plugin updates. Please make sure the server has write permissions to this directory.','Plugin temporary backup directory exists but is not writable'=>'Plugin temporary backup directory exists but is not writable','The %1$s and %2$s directories exist but are not writable. These directories are used to improve the stability of plugin updates. Please make sure the server has write permissions to these directories.'=>'The %1$s and %2$s directories exist but are not writable. These directories are used to improve the stability of plugin updates. Please make sure the server has write permissions to these directories.','Plugin and theme temporary backup directories exist but are not writable'=>'Plugin and theme temporary backup directories exist but are not writable','The %s directory cannot be located.'=>'The %s directory cannot be located.','The %s directory used to improve the stability of plugin and theme updates is writable.'=>'The %s directory used to improve the stability of plugin and theme updates is writable.','Plugin and theme temporary backup directory is writable'=>'Plugin and theme temporary backup directory is writable','Could not determine available disk space for updates.'=>'Could not determine available disk space for updates.','Available disk space is critically low, less than %s available. Proceed with caution, updates may fail.'=>'Available disk space is critically low, less than %s available. Proceed with caution, updates may fail.','Available disk space is low, less than %s available.'=>'Available disk space is low, less than %s available.','%s available disk space was detected, update routines can be performed safely.'=>'%s available disk space was detected, update routines can be performed safely.','Disk space available to safely perform updates'=>'Disk space available to safely perform updates','Table ordered by Hierarchical Menu Order and Title.'=>'Table ordered by Hierarchical Menu Order and Title.','Table ordered by Title.'=>'Table ordered by Title.','Table ordered by Date.'=>'Table ordered by Date.','Table ordered by Comments.'=>'Table ordered by Comments.','Table ordered by Uploaded To.'=>'Table ordered by Uploaded To.','Table ordered by Author.'=>'Table ordered by Author.','Table ordered by File Name.'=>'Table ordered by File Name.','Descending.'=>'Descending.','Ascending.'=>'Ascending.','Sort descending.'=>'Sort descending.','Sort ascending.'=>'Sort ascending.','Table ordered by Rating.'=>'Table ordered by Rating.','Table ordered by Visibility.'=>'Table ordered by Visibility.','Table ordered by URL.'=>'Table ordered by URL.','Table ordered by Name.'=>'Table ordered by Name.','Current Server time'=>'Current Server time','Current UTC time'=>'Current UTC time','Current time'=>'Current time','Ordered by Comment Date, descending.'=>'Ordered by Comment Date, descending.','Table ordered by Post Replied To.'=>'Table ordered by Post Replied To.','Table ordered by Comment Author.'=>'Table ordered by Comment Author.','Attempting to restore the previous version.'=>'Attempting to restore the previous version.','More details.'=>'More details.','Find your team →'=>'Find your team →','Finding the area that aligns with your skills and interests is the first step toward meaningful contribution. With more than 20 Make WordPress teams working on different parts of the open source WordPress project, there’s a place for everyone, no matter what your skill set is.'=>'Finding the area that aligns with your skills and interests is the first step toward meaningful contribution. With more than 20 Make WordPress teams working on different parts of the open source WordPress project, there’s a place for everyone, no matter what your skill set is.','Shape the future of the web with WordPress'=>'Shape the future of the web with WordPress','WordPress app: Kotlin, Java, Swift, Objective-C, Vue, Python, and TypeScript.'=>'WordPress app: Kotlin, Java, Swift, Objective-C, Vue, Python, and TypeScript.','WordPress Core and Block Editor: HTML, CSS, PHP, SQL, JavaScript, and React.'=>'WordPress Core and Block Editor: HTML, CSS, PHP, SQL, JavaScript, and React.','WordPress embraces new technologies, while being committed to backward compatibility. The WordPress project uses the following languages and libraries:'=>'WordPress embraces new technologies, while being committed to backward compatibility. The WordPress project uses the following languages and libraries:','Contribute to the code, improve the UX, and test the WordPress app.'=>'Contribute to the code, improve the UX, and test the WordPress app.','Write and submit patches to fix bugs or help build new features.'=>'Write and submit patches to fix bugs or help build new features.','Test new releases and proposed features for the Block Editor.'=>'Test new releases and proposed features for the Block Editor.','Find and report bugs in the WordPress core software.'=>'Find and report bugs in the WordPress core software.','If you do code, or want to learn how, you can contribute technically in numerous ways:'=>'If you do code, or want to learn how, you can contribute technically in numerous ways:','Code-based contribution'=>'Code-based contribution','Explore ways to reduce the environmental impact of websites.'=>'Explore ways to reduce the environmental impact of websites.','Edit videos and add captions to WordPress.tv.'=>'Edit videos and add captions to WordPress.tv.','Lend your creative imagination to the WordPress UI design.'=>'Lend your creative imagination to the WordPress UI design.','Organize or participate in local Meetups and WordCamps.'=>'Organize or participate in local Meetups and WordCamps.','Curate submissions or take photos for the Photo Directory.'=>'Curate submissions or take photos for the Photo Directory.','Promote the WordPress project to your community.'=>'Promote the WordPress project to your community.','Create and improve WordPress educational materials.'=>'Create and improve WordPress educational materials.','Translate WordPress into your local language.'=>'Translate WordPress into your local language.','Write or improve documentation for WordPress.'=>'Write or improve documentation for WordPress.','Share your knowledge in the WordPress support forums.'=>'Share your knowledge in the WordPress support forums.','WordPress may thrive on technical contributions, but you don’t have to code to contribute. Here are some of the ways you can make an impact without writing a single line of code:'=>'WordPress may thrive on technical contributions, but you don’t have to code to contribute. Here are some of the ways you can make an impact without writing a single line of code:','No-code contribution'=>'No-code contribution','Grow your network and make friends.'=>'Grow your network and make friends.','Apply your skills or learn new ones.'=>'Apply your skills or learn new ones.','Be part of a global open source community.'=>'Be part of a global open source community.','Join the diverse WordPress contributor community and connect with other people who are passionate about maintaining a free and open web.'=>'Join the diverse WordPress contributor community and connect with other people who are passionate about maintaining a free and open web.','Do you use WordPress for work, for personal projects, or even just for fun? You can help shape the long-term success of the open source project that powers millions of websites around the world.'=>'Do you use WordPress for work, for personal projects, or even just for fun? You can help shape the long-term success of the open source project that powers millions of websites around the world.','Be the future of WordPress'=>'Be the future of WordPress','Learn WordPress is a free resource for new and experienced WordPress users. Learn is stocked with how-to videos on using various features in WordPress, interactive workshops for exploring topics in-depth, and lesson plans for diving deep into specific areas of WordPress.'=>'Learn WordPress is a free resource for new and experienced WordPress users. Learn is stocked with how-to videos on using various features in WordPress, interactive workshops for exploring topics in-depth, and lesson plans for diving deep into specific areas of WordPress.','Support forums'=>'Support forums','Documentation on Widgets'=>'Documentation on Widgets','View takes you to a public author archive which lists all the posts published by the user.'=>'View takes you to a public author archive which lists all the posts published by the user.','Download file downloads the original media file to your device.'=>'Download file downloads the original media file to your device.','site editor title tagEditor'=>'Editor','Documentation on Auto-updates'=>'Documentation on Auto-updates','Documentation on date and time formatting.'=>'Documentation on date and time formatting.','You can set the language, and WordPress will automatically download and install the translation files (available if your filesystem is writable).'=>'You can set the language, and WordPress will automatically download and install the translation files (available if your filesystem is writable).','If you want site visitors to be able to register themselves, check the membership box. If you want the site administrator to register every new user, leave the box unchecked. In either case, you can set a default user role for all new users.'=>'If you want site visitors to be able to register themselves, check the membership box. If you want the site administrator to register every new user, leave the box unchecked. In either case, you can set a default user role for all new users.','Both WordPress URL and site URL can start with either %1$s or %2$s. A URL starting with %2$s requires an SSL certificate, so be sure that you have one before changing to %2$s. With %2$s, a padlock will appear next to the address in the browser address bar. Both %2$s and the padlock signal that your site meets some basic security requirements, which can build trust with your visitors and with search engines.'=>'Both WordPress URL and site URL can start with either %1$s or %2$s. A URL starting with %2$s requires an SSL certificate, so be sure that you have one before changing to %2$s. With %2$s, a padlock will appear next to the address in the browser address bar. Both %2$s and the padlock signal that your site meets some basic security requirements, which can build trust with your visitors and with search engines.','Though the terms refer to two different concepts, in practice, they can be the same address or different. For example, you can have the core WordPress installation files in the root directory (https://example.com), in which case the two URLs would be the same. Or the WordPress files can be in a subdirectory (https://example.com/wordpress). In that case, the WordPress URL and the site URL would be different.'=>'Though the terms refer to two different concepts, in practice, they can be the same address or different. For example, you can have the core WordPress installation files in the root directory (https://example.com), in which case the two URLs would be the same. Or the WordPress files can be in a subdirectory (https://example.com/wordpress). In that case, the WordPress URL and the site URL would be different.','Two terms you will want to know are the WordPress URL and the site URL. The WordPress URL is where the core WordPress installation files are, and the site URL is the address a visitor uses in the browser to go to your site.'=>'Two terms you will want to know are the WordPress URL and the site URL. The WordPress URL is where the core WordPress installation files are, and the site URL is the address a visitor uses in the browser to go to your site.','RoboHash (Generated)'=>'RoboHash (Generated)','site editor menu itemEditor'=>'Editor','Allow trackbacks and pingbacks'=>'Allow trackbacks and pingbacks','https://wordpress.org/documentation/article/assign-custom-fields/'=>'https://wordpress.org/documentation/article/assign-custom-fields/','https://wordpress.org/documentation/article/what-is-an-excerpt-classic-editor/'=>'https://wordpress.org/documentation/article/what-is-an-excerpt-classic-editor/','%s expects a non-empty string.'=>'%s expects a non-empty string.','The destination directory already exists and could not be removed.'=>'The destination directory already exists and could not be removed.','The destination folder already exists.'=>'The destination folder already exists.','The source and destination are the same.'=>'The source and destination are the same.','Expand or collapse the elements by clicking on their headings, and arrange them by dragging their headings or by clicking on the up and down arrows.'=>'Expand or collapse the elements by clicking on their headings, and arrange them by dragging their headings or by clicking on the up and down arrows.','Download “%s”'=>'Download “%s”','The "%s" argument must be a non-empty string.'=>'The "%s" argument must be a non-empty string.','Documentation on Writing and Editing Posts'=>'Documentation on Writing and Editing Posts','Documentation on Keyboard Shortcuts'=>'Documentation on Keyboard Shortcuts','Documentation on Comment Spam'=>'Documentation on Comment Spam','Documentation on Customizer'=>'Documentation on Customiser','https://wordpress.org/download/'=>'https://en-gb.wordpress.org/download/','This is the final release of WordPress %s'=>'This is the final release of WordPress %s','Site Editor'=>'Site Editor','Send password reset sends the user an email with a link to set a new password.'=>'Send password reset sends the user an email with a link to set a new password.','https://developer.wordpress.org/apis/wp-config-php/#wp-environment-type'=>'https://developer.wordpress.org/apis/wp-config-php/#wp-environment-type','Copy URL copies the URL for the media file to your clipboard.'=>'Copy URL copies the URL for the media file to your clipboard.','View will take you to a public display page for that file.'=>'View will take you to a public display page for that file.','Delete Permanently will delete the file from the media library (as well as from any posts to which it is currently attached).'=>'Delete Permanently will delete the file from the media library (as well as from any posts to which it is currently attached).','Edit takes you to a simple screen to edit that individual file’s metadata. You can also reach that screen by clicking on the media file name or thumbnail.'=>'Edit takes you to a simple screen to edit that individual file’s metadata. You can also reach that screen by clicking on the media file name or thumbnail.','Hovering over a row reveals action links that allow you to manage media items. You can perform the following actions:'=>'Hovering over a row reveals action links that allow you to manage media items. You can perform the following actions:','themesBlock Themes'=>'Block Themes','Documentation on Block Themes'=>'Documentation on Block Themes','Block themes'=>'Block themes','With a block theme, you can place and edit blocks without affecting your content by customizing or creating new templates.'=>'With a block theme, you can place and edit blocks without affecting your content by customising or creating new templates.','A block theme is a theme that uses blocks for all parts of a site including navigation menus, header, content, and site footer. These themes are built for the features that allow you to edit and customize all parts of your site.'=>'A block theme is a theme that uses blocks for all parts of a site including navigation menus, header, content, and site footer. These themes are built for the features that allow you to edit and customise all parts of your site.','Recommended items are considered beneficial to your site, although not as important to prioritize as a critical issue, they may include improvements to things such as; Performance, user experience, and more.'=>'Recommended items are considered beneficial to your site, although not as important to prioritise as a critical issue, they may include improvements to things such as; Performance, user experience, and more.','Critical issues are items that may have a high impact on your sites performance or security, and resolving these issues should be prioritized.'=>'Critical issues are items that may have a high impact on your sites performance or security, and resolving these issues should be prioritised.','The theme you are currently using is not compatible with the Site Editor.'=>'The theme you are currently using is not compatible with the Site Editor.','Configuration rules for %s:'=>'Configuration rules for %s:','Customize permalink structure by selecting available tags'=>'Customise permalink structure by selecting available tags','Select the permalink structure for your website. Including the %s tag makes links easy to understand, and can help your posts rank higher in search engines.'=>'Select the permalink structure for your website. Including the %s tag makes links easy to understand, and can help your posts rank higher in search engines.','%s removed from permalink structure'=>'%s removed from permalink structure','Site Health %s'=>'Site Health %s','Theme Styles & Block Settings'=>'Theme Styles & Block Settings','The minimum recommended version of PHP is %s.'=>'The minimum recommended version of PHP is %s.','PHP is one of the programming languages used to build WordPress. Newer versions of PHP receive regular security updates and may increase your site’s performance.'=>'PHP is one of the programming languages used to build WordPress. Newer versions of PHP receive regular security updates and may increase your site’s performance.','Your site is running on an outdated version of PHP (%s), which soon will not be supported by WordPress. Ensure that PHP is updated on your server as soon as possible. Otherwise you will not be able to upgrade WordPress.'=>'Your site is running on an outdated version of PHP (%s), which soon will not be supported by WordPress. Ensure that PHP is updated on your server as soon as possible. Otherwise you will not be able to upgrade WordPress.','Your site is running on an outdated version of PHP (%s), which does not receive security updates and soon will not be supported by WordPress. Ensure that PHP is updated on your server as soon as possible. Otherwise you will not be able to upgrade WordPress.'=>'Your site is running on an outdated version of PHP (%s), which does not receive security updates and soon will not be supported by WordPress. Ensure that PHP is updated on your server as soon as possible. Otherwise you will not be able to upgrade WordPress.','Persistent object cache'=>'Persistent object cache','Page cache'=>'Page cache','You should use a persistent object cache'=>'You should use a persistent object cache','Your host appears to support the following object caching services: %s.'=>'Your host appears to support the following object caching services: %s.','Your hosting provider can tell you if a persistent object cache can be enabled on your site.'=>'Your hosting provider can tell you if a persistent object cache can be enabled on your site.','A persistent object cache is not required'=>'A persistent object cache is not required','Learn more about persistent object caching.'=>'Learn more about persistent object caching.','A persistent object cache makes your site’s database more efficient, resulting in faster load times because WordPress can retrieve your site’s content and settings much more quickly.'=>'A persistent object cache makes your site’s database more efficient, resulting in faster load times because WordPress can retrieve your site’s content and settings much more quickly.','A persistent object cache is being used'=>'A persistent object cache is being used','A page cache plugin was not detected.'=>'A page cache plugin was not detected.','A page cache plugin was detected.'=>'A page cache plugin was detected.','There was %d client caching response header detected:'=>'There was %d client caching response header detected:' . "\0" . 'There were %d client caching response headers detected:','No client caching response headers were detected.'=>'No client caching response headers were detected.','Median server response time was %1$s milliseconds. It should be less than the recommended %2$s milliseconds threshold.'=>'Median server response time was %1$s milliseconds. It should be less than the recommended %2$s milliseconds threshold.','Median server response time was %1$s milliseconds. This is less than the recommended %2$s milliseconds threshold.'=>'Median server response time was %1$s milliseconds. This is less than the recommended %2$s milliseconds threshold.','Server response time could not be determined. Verify that loopback requests are working.'=>'Server response time could not be determined. Verify that loopback requests are working.','Page cache is detected but the server response time is still slow'=>'Page cache is detected but the server response time is still slow','Page cache is not detected and the server response time is slow'=>'Page cache is not detected and the server response time is slow','Page cache is detected and the server response time is good'=>'Page cache is detected and the server response time is good','Page cache is not detected but the server response time is OK'=>'Page cache is not detected but the server response time is OK','Unable to detect page cache due to possible loopback request problem. Please verify that the loopback request test is passing. Error: %1$s (Code: %2$s)'=>'Unable to detect page cache due to possible loopback request problem. Please verify that the loopback request test is passing. Error: %1$s (Code: %2$s)','Unable to detect the presence of page cache'=>'Unable to detect the presence of page cache','Learn more about page cache'=>'Learn more about page cache','Page cache is detected by looking for an active page cache plugin as well as making three requests to the homepage and looking for one or more of the following HTTP client caching response headers:'=>'Page cache is detected by looking for an active page cache plugin as well as making three requests to the homepage and looking for one or more of the following HTTP client caching response headers:','Page cache enhances the speed and performance of your site by saving and serving static pages instead of calling for a page every time a user visits.'=>'Page cache enhances the speed and performance of your site by saving and serving static pages instead of calling for a page every time a user visits.','If you are still seeing this warning after having tried the actions below, you may need to contact your hosting provider for further assistance.'=>'If you are still seeing this warning after having tried the actions below, you may need to contact your hosting provider for further assistance.','The Authorization header is used by third-party applications you have approved for this site. Without this header, those apps cannot connect to your site.'=>'The Authorization header is used by third-party applications you have approved for this site. Without this header, those apps cannot connect to your site.','When testing the REST API, an unexpected result was returned:'=>'When testing the REST API, an unexpected result was returned:','REST API Response: (%1$s) %2$s'=>'REST API Response: (%1$s) %2$s','REST API Endpoint: %s'=>'REST API Endpoint: %s','When testing the REST API, an error was encountered:'=>'When testing the REST API, an error was encountered:','Your site is running on an outdated version of PHP (%s), which does not receive security updates. It should be updated.'=>'Your site is running on an outdated version of PHP (%s), which does not receive security updates. It should be updated.','Your site is running on an outdated version of PHP (%s), which does not receive security updates and soon will not be supported by WordPress.'=>'Your site is running on an outdated version of PHP (%s), which does not receive security updates and soon will not be supported by WordPress.','Requirements'=>'Requirements','Your site is running on an outdated version of PHP (%s), which soon will not be supported by WordPress.'=>'Your site is running on an outdated version of PHP (%s), which soon will not be supported by WordPress.','PHP is one of the programming languages used to build WordPress. Newer versions of PHP receive regular security updates and may increase your site’s performance. The minimum recommended version of PHP is %s.'=>'PHP is one of the programming languages used to build WordPress. Newer versions of PHP receive regular security updates and may increase your site’s performance. The minimum recommended version of PHP is %s.','Your site does not have any installed themes.'=>'Your site does not have any installed themes.','Your site does not have any active plugins.'=>'Your site does not have any active plugins.','Another attempt will be made with the next release.'=>'Another attempt will be made with the next release.','The %1$s constant is defined as %2$s'=>'The %1$s constant is defined as %2$s','The %1$s argument must be a non-empty string for %2$s.'=>'The %1$s argument must be a non-empty string for %2$s.','The %s argument must be an array.'=>'The %s argument must be an array.','- %1$s version %2$s%3$s'=>'- %1$s version %2$s%3$s','- %1$s (from version %2$s to %3$s)%4$s'=>'- %1$s (from version %2$s to %3$s)%4$s','Reach out to WordPress Core developers to ensure you\'ll never have this problem again.'=>'Reach out to WordPress Core developers to ensure you\'ll never have this problem again.','Important! Your version of WordPress (%1$s) will stop receiving security updates in the near future. To keep your site secure, please update to the latest version of WordPress.'=>'Important! Your version of WordPress (%1$s) will stop receiving security updates in the near future. To keep your site secure, please update to the latest version of WordPress.','Important! Your version of WordPress (%1$s) is no longer supported, you will not receive any security updates for your website. To keep your site secure, please update to the latest version of WordPress.'=>'Important! Your version of WordPress (%1$s) is no longer supported, you will not receive any security updates for your website. To keep your site secure, please update to the latest version of WordPress.','https://make.wordpress.org/core/wordpress-%s-field-guide/'=>'https://make.wordpress.org/core/wordpress-%s-field-guide/','Learn more about WordPress %s'=>'Learn more about WordPress %s','Please type your comment text.'=>'Please type your comment text.','You cannot remove users.'=>'You cannot remove users.','Application passwords grant access to the %2$s site on the network as you have Super Admin rights.'=>'Application passwords grant access to the %2$s site on the network as you have Super Admin rights.' . "\0" . 'Application passwords grant access to all %2$s sites on the network as you have Super Admin rights.','WordPress has been updated! Next and final step is to update your database to the newest version.'=>'WordPress has been updated! Next and final step is to update your database to the newest version.','Documentation on Managing Themes'=>'Documentation on Managing Themes','This information is being used to create a %s file.'=>'This information is being used to create a %s file.','Welcome to WordPress. Before getting started, you will need to know the following items.'=>'Welcome to WordPress. Before getting started, you will need to know the following items.','Settings save failed.'=>'Settings save failed.','After your Privacy Policy page is set, you should edit it.'=>'After your Privacy Policy page is set, you should edit it.','Error: Your %1$s file is not writable, so updating it automatically was not possible. These are the mod_rewrite rules you should have in your %1$s file. Click in the field and press %3$s (or %4$s on Mac) to select all.'=>'Error: Your %1$s file is not writable, so updating it automatically was not possible. These are the mod_rewrite rules you should have in your %1$s file. Click in the field and press %3$s (or %4$s on Mac) to select all.','Error: Your %1$s file is not writable, so updating it automatically was not possible. This is the URL rewrite rule you should have in your %1$s file. Click in the field and press %3$s (or %4$s on Mac) to select all. Then insert this rule inside of the %5$s element in %1$s file.'=>'Error: Your %1$s file is not writable, so updating it automatically was not possible. This is the URL rewrite rule you should have in your %1$s file. Click in the field and press %3$s (or %4$s on Mac) to select all. Then insert this rule inside of the %5$s element in %1$s file.','An avatar is an image that can be associated with a user across multiple websites. In this area, you can choose to display avatars of users who interact with the site.'=>'An avatar is an image that can be associated with a user across multiple websites. In this area, you can choose to display avatars of users who interact with the site.','Change Permalink Structure'=>'Change Permalink Structure','Howdy ###USERNAME###, +return ['x-generator'=>'GlotPress/4.0.1','translation-revision-date'=>'2025-05-25 12:26:44+0000','plural-forms'=>'nplurals=2; plural=n != 1;','project-id-version'=>'WordPress - 6.8.x - Development - Administration','language'=>'en_GB','messages'=>['start of week1'=>'1','default GMT offset or timezone string0'=>'Europe/London','Speculative loading speeds up navigation by preloading links before users navigate to them, bcrypt hashing strengthens password security automatically, and database optimizations improve performance.'=>'Speculative loading speeds up navigation by preloading links before users navigate to them, bcrypt hashing strengthens password security automatically, and database optimisations improve performance.','You cannot upgrade because WordPress %2$s requires the %3$s PHP extension.'=>'You cannot upgrade because WordPress %2$s requires the %3$s PHP extension.','An error occurred while deleting the theme.'=>'An error occurred while deleting the theme.','Add Theme'=>'Add Theme','WordPress.org takes privacy and transparency very seriously. To learn more about what data is collected, and how it is used, please visit the WordPress.org Privacy Policy.'=>'WordPress.org takes privacy and transparency very seriously. To learn more about what data is collected, and how it is used, please visit the WordPress.org Privacy Policy.','WordPress.org takes privacy and transparency very seriously'=>'WordPress.org takes privacy and transparency very seriously','File: %s'=>'File: %s','Add User'=>'Add User','Add Plugin'=>'Add Plugin','design menu itemDesign'=>'Design','Collapse Main Menu'=>'Collapse Main Menu','Invalid item ID. You can view all media items in the Media Library.'=>'Invalid item ID. You can view all media items in the Media Library.','An error occurred during the upload process.'=>'An error occurred during the upload process.','You cannot install because WordPress %2$s requires the %3$s PHP extension.'=>'You cannot install because WordPress %2$s requires the %3$s PHP extension.','Add Custom Field:'=>'Add Custom Field:','An error occurred while loading the comparison. Please refresh the page and try again.'=>'An error occurred while loading the comparison. Please refresh the page and try again.','+ Add Category'=>'+ Add Category','Does not exist'=>'Does not exist','robots.txt'=>'robots.txt','WordPress cannot dynamically serve a %s file due to a lack of rewrite rule support'=>'WordPress cannot dynamically serve a %s file due to a lack of rewrite rule support','Your site is using the dynamic %s file which is generated by WordPress.'=>'Your site is using the dynamic %s file which is generated by WordPress.','There is a static %s file in your installation folder. WordPress cannot dynamically serve one.'=>'There is a static %s file in your installation folder. WordPress cannot dynamically serve one.','The active theme does not support uploading a custom header image. Please ensure your theme supports custom headers and try again.'=>'The active theme does not support uploading a custom header image. Please ensure your theme supports custom headers and try again.','An error occurred while processing your header image.'=>'An error occurred while processing your header image.','Please try again or start a new changeset. This changeset cannot be further modified.'=>'Please try again or start a new changeset. This changeset cannot be further modified.','An error occurred while saving your changeset.'=>'An error occurred while saving your changeset.','Triage Lead'=>'Triage Lead','Tech Lead'=>'Tech Lead','Default Theme Development Lead'=>'Default Theme Development Lead','Default Theme Design Lead'=>'Default Theme Design Lead','Performance Lead'=>'Performance Lead','Design Lead'=>'Design Lead','Test Lead'=>'Test Lead','Documentation Lead'=>'Documentation Lead','Editor Triage Lead'=>'Editor Triage Lead','Editor Tech Lead'=>'Editor Tech Lead','Core Triage Lead'=>'Core Triage Lead','Core Tech Lead'=>'Core Tech Lead','Minor Release Lead'=>'Minor Release Lead','Release Coordination'=>'Release Coordination','WordPress 6.8 packs a wide range of performance fixes and enhancements to speed up everything from editing to browsing. Beyond speculative loading, WordPress 6.8 pays special attention to the block editor, block type registration, and query caching. Plus, imagine never waiting longer than 50 milliseconds—for any interaction. In WordPress 6.8, the Interactivity API takes a first step toward that goal.'=>'WordPress 6.8 packs a wide range of performance fixes and enhancements to speed up everything from editing to browsing. Beyond speculative loading, WordPress 6.8 pays special attention to the block editor, block type registration, and query caching. Plus, imagine never waiting longer than 50 milliseconds—for any interaction. In WordPress 6.8, the Interactivity API takes a first step toward that goal.','Work continues on optimizing cache key generation in the WP_Query class. The goal is, as ever, to boost your site’s performance, in this case by taking some more of the load off your database. This is especially good if you get a lot of traffic.'=>'Work continues on optimising cache key generation in the WP_Query class. The goal is, as ever, to boost your site’s performance, in this case by taking some more of the load off your database. This is especially good if you get a lot of traffic.','Take a load off the database'=>'Take a load off the database','100+ accessibility fixes and enhancements touch a broad spectrum of the WordPress experience. This release includes fixes to every bundled theme, improvements to the navigation menu management, the customizer, and simplified labeling. The Block Editor has over 70 improvements to blocks, DataViews, and to its overall user experience.'=>'100+ accessibility fixes and enhancements touch a broad spectrum of the WordPress experience. This release includes fixes to every bundled theme, improvements to the navigation menu management, the Customiser, and simplified labelling. The block editor has over 70 improvements to blocks, DataViews, and to its overall user experience.','Now passwords are harder to crack with bcrypt hashing, which takes a lot more computing power to break. This strengthens overall security, as do other encryption improvements across WordPress. You don’t need to do anything—everything updates automatically.'=>'Now passwords are harder to crack with bcrypt hashing, which takes a lot more computing power to break. This strengthens overall security, as do other encryption improvements across WordPress. You don’t need to do anything—everything updates automatically.','Stronger password security with bcrypt'=>'Stronger password security with bcrypt','In WordPress 6.8, pages load faster than ever. When you or your user hovers over or clicks a link, WordPress may preload the next page, for a smoother, near-instant experience. The system balances speed and efficiency, and you can control how it works, with a plugin or your own code. This feature only works in modern browsers—older ones will simply ignore it without any impact.'=>'In WordPress 6.8, pages load faster than ever. When you or your user hovers over or clicks a link, WordPress may preload the next page, for a smoother, near-instant experience. The system balances speed and efficiency, and you can control how it works, with a plugin or your own code. This feature only works in modern browsers—older ones will simply ignore it without any impact.','Near-instant page loads, thanks to Speculative Loading'=>'Near-instant page loads, thanks to Speculative Loading','Easier ways to see your options in Data Views, and you can exclude sticky posts from the Query Loop. Plus, you’ll find lots of little improvements in the editor that smooth your way through everything you build.'=>'Easier ways to see your options in Data Views, and you can exclude sticky posts from the Query Loop. Plus, you’ll find lots of little improvements in the editor that smooth your way through everything you build.','Plus, now you can see it in Classic themes that have editor-styles or a theme.json file. Find the Style Book under Appearance > Design and use it to preview your theme’s evolution, as you edit CSS or make changes in the Customizer.'=>'Plus, now you can see it in Classic themes that have editor-styles or a theme.json file. Find the Style Book under Appearance > Design and use it to preview your theme’s evolution, as you edit CSS or make changes in the Customiser.','Plus, now you can see it in Classic themes that have editor-styles or a theme.json file. Find the Style Book under Appearance > Design and use it to preview your theme’s evolution, as you edit CSS or make changes in the Customizer.'=>'Plus, now you can see it in Classic themes that have editor-styles or a theme.json file. Find the Style Book under Appearance > Design and use it to preview your theme’s evolution, as you edit CSS or make changes in the Customiser.','The Style Book has a new, structured layout and clearer labels, to make it even easier to edit colors, typography—almost all your site styles—in one place.'=>'The Style Book has a new, structured layout and clearer labels, to make it even easier to edit colours, typography—almost all your site styles—in one place.','The Style Book gets a cleaner look—and a few new tricks'=>'The Style Book gets a cleaner look—and a few new tricks','The Style Book now has a structured layout and works with Classic themes, giving you more control over global styles.'=>'The Style Book now has a structured layout and works with Classic themes, giving you more control over global styles.','WordPress 6.8 polishes and refines the tools you use every day, making your site faster, more secure, and easier to manage.'=>'WordPress 6.8 polishes and refines the tools you use every day, making your site faster, more secure, and easier to manage.','A release polished to a high sheen.'=>'A release polished to a high sheen.','If a dependent plugin is missing some dependencies, its activation button will be disabled until the required dependencies are activated.'=>'If a dependent plugin is missing some dependencies, its activation button will be disabled until the required dependencies are activated.','If a required plugin is deleted, a notice will be displayed on the Plugin administration screen informing the user that there is some missing dependencies to install and/or activate. Additionally, each plugin whose dependencies are not met will have an error notice on their plugin row.'=>'If a required plugin is deleted, a notice will be displayed on the Plugin administration screen informing the user that there is some missing dependencies to install and/or activate. Additionally, each plugin whose dependencies are not met will have an error notice on their plugin row.','Plugin Dependencies aims to make the process of installing and activating add-ons (dependents) and the plugins they rely on (dependencies) consistent and easy.'=>'Plugin Dependencies aims to make the process of installing and activating add-ons (dependents) and the plugins they rely on (dependencies) consistent and easy.','Dependencies'=>'Dependencies','Comments to display at the top of each page'=>'Comments to display at the top of each page','Comments page to display by default'=>'Comments page to display by default','Top level comments per page'=>'Top level comments per page','Break comments into pages'=>'Break comments into pages','Comment Pagination'=>'Comment Pagination','Number of levels for threaded (nested) comments'=>'Number of levels for threaded (nested) comments','Enable threaded (nested) comments'=>'Enable threaded (nested) comments','Close comments when post is how many days old'=>'Close comments when post is how many days old','Automatically close comments on old posts'=>'Automatically close comments on old posts','Menu order updated'=>'Menu order updated','Menu parent updated'=>'Menu parent updated','Change revision by using the left and right arrow keys'=>'Change revision by using the left and right arrow keys','Select a revision'=>'Select a revision','A directory could not be read.'=>'A directory could not be read.','Database Extension'=>'Database Extension','Empty value'=>'Empty value','Max simultaneous file uploads'=>'Max simultaneous file uploads','Menu Order'=>'Menu Order','Menu Parent'=>'Menu Parent','Skip to Editor'=>'Skip to Editor','WordPress %s Field Guide'=>'WordPress %s Field Guide','WordPress %s Release Notes'=>'WordPress %s Release Notes','The directory does not exist.'=>'The directory does not exist.','Common Errors'=>'Common Errors','Documentation on Editing Files'=>'Documentation on Editing Files','Documentation on Editing Plugins'=>'Documentation on Editing Plugins','https://developer.wordpress.org/plugins/settings/settings-api/'=>'https://developer.wordpress.org/plugins/settings/settings-api/','The %1$s setting is unregistered. Unregistered settings are deprecated. See documentation on the Settings API.'=>'The %1$s setting is unregistered. Unregistered settings are deprecated. See documentation on the Settings API.','https://developer.wordpress.org/advanced-administration/wordpress/update-services/'=>'https://developer.wordpress.org/advanced-administration/wordpress/update-services/','https://developer.wordpress.org/advanced-administration/wordpress/feeds/'=>'https://developer.wordpress.org/advanced-administration/wordpress/feeds/','Documentation on Nginx configuration.'=>'Documentation on Nginx configuration.','https://developer.wordpress.org/advanced-administration/server/wordpress-in-directory/'=>'https://developer.wordpress.org/advanced-administration/server/wordpress-in-directory/','Documentation on Site Management'=>'Documentation on Site Management','Type of relationnone'=>'none','No URL Provided.'=>'No URL provided.','https://developer.wordpress.org/advanced-administration/server/file-permissions/'=>'https://developer.wordpress.org/advanced-administration/server/file-permissions/','Package not available.'=>'Package not available.','Autoloaded options'=>'Autoloaded options','More info about optimizing autoloaded options'=>'More info about optimising autoloaded options','https://developer.wordpress.org/advanced-administration/performance/optimization/#autoloaded-options'=>'https://developer.wordpress.org/advanced-administration/performance/optimization/#autoloaded-options','Your site has %1$s autoloaded options (size: %2$s) in the options table, which could cause your site to be slow. You can review the options being autoloaded in your database and remove any options that are no longer needed by your site.'=>'Your site has %1$s autoloaded options (size: %2$s) in the options table, which could cause your site to be slow. You can review the options being autoloaded in your database and remove any options that are no longer needed by your site.','Autoloaded options could affect performance'=>'Autoloaded options could affect performance','Your site has %1$s autoloaded options (size: %2$s) in the options table, which is acceptable.'=>'Your site has %1$s autoloaded options (size: %2$s) in the options table, which is acceptable.','Autoloaded options are acceptable'=>'Autoloaded options are acceptable','Autoloaded options are configuration settings for plugins and themes that are automatically loaded with every page load in WordPress. Having too many autoloaded options can slow down your site.'=>'Autoloaded options are configuration settings for plugins and themes that are automatically loaded with every page load in WordPress. Having too many autoloaded options can slow down your site.','https://developer.wordpress.org/advanced-administration/performance/optimization/#persistent-object-cache'=>'https://developer.wordpress.org/advanced-administration/performance/optimization/#persistent-object-cache','https://developer.wordpress.org/advanced-administration/performance/optimization/#caching'=>'https://developer.wordpress.org/advanced-administration/performance/optimization/#caching','Fonts directory size'=>'Fonts directory size','Fonts directory location'=>'Fonts directory location','The fonts directory'=>'The fonts directory','The following plugins failed to update. If there was a fatal error in the update, the previously installed version has been restored.'=>'The following plugins failed to update. If there was a fatal error in the update, the previously installed version has been restored.','The update for \'%s\' contained a fatal error. The previously installed version has been restored.'=>'The update for \'%s\' contained a fatal error. The previously installed version has been restored.','The update for \'%s\' contained a fatal error. The previously installed version could not be restored.'=>'The update for \'%s\' contained a fatal error. The previously installed version could not be restored.','https://developer.wordpress.org/advanced-administration/security/backup/'=>'https://developer.wordpress.org/advanced-administration/security/backup/','If you are a plugin author, you can learn more about how to add the Personal Data Exporter to a plugin.'=>'If you are a plugin author, you can learn more about how to add the Personal Data Exporter to a plugin.','If you are a plugin author, you can learn more about how to add the Personal Data Eraser to a plugin.'=>'If you are a plugin author, you can learn more about how to add the Personal Data Eraser to a plugin.','See everything new'=>'See everything new','https://wordpress.org/download/releases/6-8/'=>'https://wordpress.org/download/releases/6-8/','For a comprehensive overview of all the new features and enhancements in WordPress %s, please visit the feature-showcase website.'=>'For a comprehensive overview of all the new features and enhancements in WordPress %s, please visit the feature-showcase website.','And much more'=>'And much more','patterns menu itemPatterns'=>'Patterns','Change Site Icon'=>'Change site icon','Error: %1$s requires %2$d plugin to be installed and activated: %3$s.'=>'Error: %1$s requires %2$d plugin to be installed and activated: %3$s.' . "\0" . 'Error: %1$s requires %2$d plugins to be installed and activated: %3$s.','pluginUpdate Now'=>'Update now','themeInstall Now'=>'Install now','This plugin cannot be activated because required plugins are missing or inactive.'=>'This plugin cannot be activated because required plugins are missing or inactive.','This plugin is active but may not function correctly because required plugins are missing or inactive.'=>'This plugin is active but may not function correctly because required plugins are missing or inactive.','Requires: %s'=>'Requires: %s','Required by: %s'=>'Required by: %s','Note: This plugin cannot be deactivated or deleted until the plugins that require it are deactivated or deleted.'=>'Note: this plugin cannot be deactivated or deleted until the plugins that require it are deactivated or deleted.','You cannot deactivate this plugin as other plugins depend on it.'=>'You cannot deactivate this plugin as other plugins depend on it.','You cannot delete this plugin as other plugins require it.'=>'You cannot delete this plugin as other plugins require it.','You cannot activate this plugin as it has unmet requirements.'=>'You cannot activate this plugin as it has unmet requirements.','You cannot deactivate this plugin as other plugins require it.'=>'You cannot deactivate this plugin as other plugins require it.','pluginDeactivate'=>'Deactivate','pluginNetwork Deactivate'=>'Network deactivate','pluginActivate'=>'Activate','Additional plugins are required'=>'Additional plugins are required','Site ID'=>'Site ID','The PHP version on your server is %1$s, however the new theme version requires %2$s.'=>'The PHP version on your server is %1$s, however the new theme version requires %2$s.','Your WordPress version is %1$s, however the new theme version requires %2$s.'=>'Your WordPress version is %1$s, however the new theme version requires %2$s.','pluginNetwork Activate'=>'Network activate','%s is already active.'=>'%s is already active.','pluginInstall Now'=>'Install now','Created by a worldwide team of passionate individuals'=>'Created by a worldwide team of passionate individuals','Accessibility improvements'=>'Accessibility improvements','Performance updates'=>'Performance updates','Only .zip archives may be uploaded.'=>'Only .zip archives may be uploaded.','The block widgets require JavaScript. Please enable JavaScript in your browser settings, or activate the Classic Widgets plugin.'=>'The block widgets require JavaScript. Please enable JavaScript in your browser settings, or activate the Classic Widgets plugin.','The block editor requires JavaScript. Please enable JavaScript in your browser settings, or install the Classic Editor plugin.'=>'The block editor requires JavaScript. Please enable JavaScript in your browser settings, or install the Classic Editor plugin.','The block editor requires JavaScript. Please enable JavaScript in your browser settings, or activate the Classic Editor plugin.'=>'The block editor requires JavaScript. Please enable JavaScript in your browser settings, or activate the Classic Editor plugin.','Add New Site'=>'Add New Site','Rotate 180°'=>'Rotate 180°','Rotate 90° right'=>'Rotate 90° right','Rotate 90° left'=>'Rotate 90° left','%s pattern moved to the Trash.'=>'%s pattern moved to the Bin.' . "\0" . '%s patterns moved to the Bin.','%s pattern permanently deleted.'=>'%s pattern permanently deleted.' . "\0" . '%s patterns permanently deleted.','%s pattern updated.'=>'%s pattern updated.' . "\0" . '%s patterns updated.','When using Bulk Edit, you can change the metadata (categories, author, etc.) for all selected posts at once. To remove a post from the grouping, just click the %sremove button next to its name in the Bulk Edit area that appears.'=>'When using Bulk Edit, you can change the metadata (categories, author, etc.) for all selected posts at once. To remove a post from the grouping, just click the %sremove button next to its name in the Bulk Edit area that appears.','Read the WordPress %s Release Notes for information on installation, enhancements, fixed issues, release contributors, learning resources, and the list of file changes.'=>'Read the WordPress %s Release Notes for information on installation, enhancements, fixed issues, release contributors, learning resources, and the list of file changes.','Explore the WordPress %s Field Guide. Learn about the changes in this release with detailed developer notes to help you build with WordPress.'=>'Explore the WordPress %s Field Guide. Learn about the changes in this release with detailed developer notes to help you build with WordPress.','Invalid URL format.'=>'Invalid URL format.','The PHP version on your server is %1$s, however the new plugin version requires %2$s.'=>'The PHP version on your server is %1$s, however the new plugin version requires %2$s.','Your WordPress version is %1$s, however the new plugin version requires %2$s.'=>'Your WordPress version is %1$s, however the new plugin version requires %2$s.','https://wordpress.org/support/wordpress-version/version-%s/'=>'https://wordpress.org/support/wordpress-version/version-%s/','https://make.wordpress.org/contribute/'=>'https://make.wordpress.org/contribute/','Updates may take several minutes to complete. If there is no feedback after 5 minutes, or if there are errors please refer to the Help section above.'=>'Updates may take several minutes to complete. If there is no feedback after 5 minutes, or if there are errors please refer to the Help section above.','Restore Plugin or Theme'=>'Restore Plugin or Theme','On systems with fewer resources, this may lead to server timeouts or resource limits being reached. If you encounter an issue during the update process, please create a support forum topic and reference Rollback in the issue title.'=>'On systems with fewer resources, this may lead to server timeouts or resource limits being reached. If you encounter an issue during the update process, please create a support forum topic and reference Rollback in the issue title.','This feature will create a temporary backup of a plugin or theme before it is upgraded. This backup is used to restore the plugin or theme back to its previous state if there is an error during the update process.'=>'This feature will create a temporary backup of a plugin or theme before it is upgraded. This backup is used to restore the plugin or theme back to its previous state if there is an error during the update process.','The site editor requires JavaScript. Please enable JavaScript in your browser settings.'=>'The site editor requires JavaScript. Please enable JavaScript in your browser settings.','https://wordpress.org/documentation/article/customize-permalinks/'=>'https://wordpress.org/documentation/article/customize-permalinks/','In a few words, explain what this site is about. Example: “%s.”'=>'In a few words, explain what this site is about. Example: “%s.”','Note: Discouraging search engines does not block access to your site — it is up to search engines to honor your request.'=>'Note: Discouraging search engines does not block access to your site — it is up to search engines to honor your request.','New custom field name'=>'New custom field name','Search Media:'=>'Search Media:','Clear Crop'=>'Clear Crop','Apply Crop'=>'Apply Crop','vertical start position'=>'vertical start position','horizontal start position'=>'horizontal start position','Starting Coordinates:'=>'Starting Coordinates:','Crop Image'=>'Crop Image','Images cannot be scaled to a size larger than the original.'=>'Images cannot be scaled to a size larger than the original.','Save Edits'=>'Save Edits','Cancel Editing'=>'Cancel Editing','Could not create the destination directory.'=>'Could not create the destination directory.','Table ordered by E-mail.'=>'Table ordered by Email.','Table ordered by Username.'=>'Table ordered by Username.','Could not delete the temporary backup directory for %s.'=>'Could not delete the temporary backup directory for %s.','Could not restore the original version of %s.'=>'Could not restore the original version of %s.','Could not move the old version to the %s directory.'=>'Could not move the old version to the %s directory.','Could not create the %s directory.'=>'Could not create the %s directory.','Table ordered by Links.'=>'Table ordered by Links.','Table ordered by Posts Count.'=>'Table ordered by Posts Count.','Table ordered by Slug.'=>'Table ordered by Slug.','Table ordered by Description.'=>'Table ordered by Description.','Table ordered hierarchically.'=>'Table ordered hierarchically.','Available disk space'=>'Available disk space','Plugin and theme temporary backup directory access'=>'Plugin and theme temporary backup directory access','The %1$s directory does not exist, and the server does not have write permissions in %2$s to create it. This directory is used for plugin and theme updates. Please make sure the server has write permissions in %2$s.'=>'The %1$s directory does not exist, and the server does not have write permissions in %2$s to create it. This directory is used for plugin and theme updates. Please make sure the server has write permissions in %2$s.','The upgrade directory cannot be created'=>'The upgrade directory cannot be created','The %s directory exists but is not writable. This directory is used for plugin and theme updates. Please make sure the server has write permissions to this directory.'=>'The %s directory exists but is not writable. This directory is used for plugin and theme updates. Please make sure the server has write permissions to this directory.','The upgrade directory exists but is not writable'=>'The upgrade directory exists but is not writable','The %s directory exists but is not writable. This directory is used to improve the stability of plugin and theme updates. Please make sure the server has write permissions to this directory.'=>'The %s directory exists but is not writable. This directory is used to improve the stability of plugin and theme updates. Please make sure the server has write permissions to this directory.','The temporary backup directory exists but is not writable'=>'The temporary backup directory exists but is not writable','The %s directory exists but is not writable. This directory is used to improve the stability of theme updates. Please make sure the server has write permissions to this directory.'=>'The %s directory exists but is not writable. This directory is used to improve the stability of theme updates. Please make sure the server has write permissions to this directory.','Theme temporary backup directory exists but is not writable'=>'Theme temporary backup directory exists but is not writable','The %s directory exists but is not writable. This directory is used to improve the stability of plugin updates. Please make sure the server has write permissions to this directory.'=>'The %s directory exists but is not writable. This directory is used to improve the stability of plugin updates. Please make sure the server has write permissions to this directory.','Plugin temporary backup directory exists but is not writable'=>'Plugin temporary backup directory exists but is not writable','The %1$s and %2$s directories exist but are not writable. These directories are used to improve the stability of plugin updates. Please make sure the server has write permissions to these directories.'=>'The %1$s and %2$s directories exist but are not writable. These directories are used to improve the stability of plugin updates. Please make sure the server has write permissions to these directories.','Plugin and theme temporary backup directories exist but are not writable'=>'Plugin and theme temporary backup directories exist but are not writable','The %s directory cannot be located.'=>'The %s directory cannot be located.','The %s directory used to improve the stability of plugin and theme updates is writable.'=>'The %s directory used to improve the stability of plugin and theme updates is writable.','Plugin and theme temporary backup directory is writable'=>'Plugin and theme temporary backup directory is writable','Could not determine available disk space for updates.'=>'Could not determine available disk space for updates.','Available disk space is critically low, less than %s available. Proceed with caution, updates may fail.'=>'Available disk space is critically low, less than %s available. Proceed with caution, updates may fail.','Available disk space is low, less than %s available.'=>'Available disk space is low, less than %s available.','%s available disk space was detected, update routines can be performed safely.'=>'%s available disk space was detected, update routines can be performed safely.','Disk space available to safely perform updates'=>'Disk space available to safely perform updates','Table ordered by Hierarchical Menu Order and Title.'=>'Table ordered by Hierarchical Menu Order and Title.','Table ordered by Title.'=>'Table ordered by Title.','Table ordered by Date.'=>'Table ordered by Date.','Table ordered by Comments.'=>'Table ordered by Comments.','Table ordered by Uploaded To.'=>'Table ordered by Uploaded To.','Table ordered by Author.'=>'Table ordered by Author.','Table ordered by File Name.'=>'Table ordered by File Name.','Descending.'=>'Descending.','Ascending.'=>'Ascending.','Sort descending.'=>'Sort descending.','Sort ascending.'=>'Sort ascending.','Table ordered by Rating.'=>'Table ordered by Rating.','Table ordered by Visibility.'=>'Table ordered by Visibility.','Table ordered by URL.'=>'Table ordered by URL.','Table ordered by Name.'=>'Table ordered by Name.','Current Server time'=>'Current Server time','Current UTC time'=>'Current UTC time','Current time'=>'Current time','Ordered by Comment Date, descending.'=>'Ordered by Comment Date, descending.','Table ordered by Post Replied To.'=>'Table ordered by Post Replied To.','Table ordered by Comment Author.'=>'Table ordered by Comment Author.','Attempting to restore the previous version.'=>'Attempting to restore the previous version.','More details.'=>'More details.','Find your team →'=>'Find your team →','Finding the area that aligns with your skills and interests is the first step toward meaningful contribution. With more than 20 Make WordPress teams working on different parts of the open source WordPress project, there’s a place for everyone, no matter what your skill set is.'=>'Finding the area that aligns with your skills and interests is the first step toward meaningful contribution. With more than 20 Make WordPress teams working on different parts of the open source WordPress project, there’s a place for everyone, no matter what your skill set is.','Shape the future of the web with WordPress'=>'Shape the future of the web with WordPress','WordPress app: Kotlin, Java, Swift, Objective-C, Vue, Python, and TypeScript.'=>'WordPress app: Kotlin, Java, Swift, Objective-C, Vue, Python, and TypeScript.','WordPress Core and Block Editor: HTML, CSS, PHP, SQL, JavaScript, and React.'=>'WordPress Core and Block Editor: HTML, CSS, PHP, SQL, JavaScript, and React.','WordPress embraces new technologies, while being committed to backward compatibility. The WordPress project uses the following languages and libraries:'=>'WordPress embraces new technologies, while being committed to backward compatibility. The WordPress project uses the following languages and libraries:','Contribute to the code, improve the UX, and test the WordPress app.'=>'Contribute to the code, improve the UX, and test the WordPress app.','Write and submit patches to fix bugs or help build new features.'=>'Write and submit patches to fix bugs or help build new features.','Test new releases and proposed features for the Block Editor.'=>'Test new releases and proposed features for the Block Editor.','Find and report bugs in the WordPress core software.'=>'Find and report bugs in the WordPress core software.','If you do code, or want to learn how, you can contribute technically in numerous ways:'=>'If you do code, or want to learn how, you can contribute technically in numerous ways:','Code-based contribution'=>'Code-based contribution','Explore ways to reduce the environmental impact of websites.'=>'Explore ways to reduce the environmental impact of websites.','Edit videos and add captions to WordPress.tv.'=>'Edit videos and add captions to WordPress.tv.','Lend your creative imagination to the WordPress UI design.'=>'Lend your creative imagination to the WordPress UI design.','Organize or participate in local Meetups and WordCamps.'=>'Organize or participate in local Meetups and WordCamps.','Curate submissions or take photos for the Photo Directory.'=>'Curate submissions or take photos for the Photo Directory.','Promote the WordPress project to your community.'=>'Promote the WordPress project to your community.','Create and improve WordPress educational materials.'=>'Create and improve WordPress educational materials.','Translate WordPress into your local language.'=>'Translate WordPress into your local language.','Write or improve documentation for WordPress.'=>'Write or improve documentation for WordPress.','Share your knowledge in the WordPress support forums.'=>'Share your knowledge in the WordPress support forums.','WordPress may thrive on technical contributions, but you don’t have to code to contribute. Here are some of the ways you can make an impact without writing a single line of code:'=>'WordPress may thrive on technical contributions, but you don’t have to code to contribute. Here are some of the ways you can make an impact without writing a single line of code:','No-code contribution'=>'No-code contribution','Grow your network and make friends.'=>'Grow your network and make friends.','Apply your skills or learn new ones.'=>'Apply your skills or learn new ones.','Be part of a global open source community.'=>'Be part of a global open source community.','Join the diverse WordPress contributor community and connect with other people who are passionate about maintaining a free and open web.'=>'Join the diverse WordPress contributor community and connect with other people who are passionate about maintaining a free and open web.','Do you use WordPress for work, for personal projects, or even just for fun? You can help shape the long-term success of the open source project that powers millions of websites around the world.'=>'Do you use WordPress for work, for personal projects, or even just for fun? You can help shape the long-term success of the open source project that powers millions of websites around the world.','Be the future of WordPress'=>'Be the future of WordPress','Learn WordPress is a free resource for new and experienced WordPress users. Learn is stocked with how-to videos on using various features in WordPress, interactive workshops for exploring topics in-depth, and lesson plans for diving deep into specific areas of WordPress.'=>'Learn WordPress is a free resource for new and experienced WordPress users. Learn is stocked with how-to videos on using various features in WordPress, interactive workshops for exploring topics in-depth, and lesson plans for diving deep into specific areas of WordPress.','Support forums'=>'Support forums','Documentation on Widgets'=>'Documentation on Widgets','View takes you to a public author archive which lists all the posts published by the user.'=>'View takes you to a public author archive which lists all the posts published by the user.','Download file downloads the original media file to your device.'=>'Download file downloads the original media file to your device.','site editor title tagEditor'=>'Editor','Documentation on Auto-updates'=>'Documentation on Auto-updates','Documentation on date and time formatting.'=>'Documentation on date and time formatting.','You can set the language, and WordPress will automatically download and install the translation files (available if your filesystem is writable).'=>'You can set the language, and WordPress will automatically download and install the translation files (available if your filesystem is writable).','If you want site visitors to be able to register themselves, check the membership box. If you want the site administrator to register every new user, leave the box unchecked. In either case, you can set a default user role for all new users.'=>'If you want site visitors to be able to register themselves, check the membership box. If you want the site administrator to register every new user, leave the box unchecked. In either case, you can set a default user role for all new users.','Both WordPress URL and site URL can start with either %1$s or %2$s. A URL starting with %2$s requires an SSL certificate, so be sure that you have one before changing to %2$s. With %2$s, a padlock will appear next to the address in the browser address bar. Both %2$s and the padlock signal that your site meets some basic security requirements, which can build trust with your visitors and with search engines.'=>'Both WordPress URL and site URL can start with either %1$s or %2$s. A URL starting with %2$s requires an SSL certificate, so be sure that you have one before changing to %2$s. With %2$s, a padlock will appear next to the address in the browser address bar. Both %2$s and the padlock signal that your site meets some basic security requirements, which can build trust with your visitors and with search engines.','Though the terms refer to two different concepts, in practice, they can be the same address or different. For example, you can have the core WordPress installation files in the root directory (https://example.com), in which case the two URLs would be the same. Or the WordPress files can be in a subdirectory (https://example.com/wordpress). In that case, the WordPress URL and the site URL would be different.'=>'Though the terms refer to two different concepts, in practice, they can be the same address or different. For example, you can have the core WordPress installation files in the root directory (https://example.com), in which case the two URLs would be the same. Or the WordPress files can be in a subdirectory (https://example.com/wordpress). In that case, the WordPress URL and the site URL would be different.','Two terms you will want to know are the WordPress URL and the site URL. The WordPress URL is where the core WordPress installation files are, and the site URL is the address a visitor uses in the browser to go to your site.'=>'Two terms you will want to know are the WordPress URL and the site URL. The WordPress URL is where the core WordPress installation files are, and the site URL is the address a visitor uses in the browser to go to your site.','RoboHash (Generated)'=>'RoboHash (Generated)','site editor menu itemEditor'=>'Editor','Allow trackbacks and pingbacks'=>'Allow trackbacks and pingbacks','https://wordpress.org/documentation/article/assign-custom-fields/'=>'https://wordpress.org/documentation/article/assign-custom-fields/','https://wordpress.org/documentation/article/what-is-an-excerpt-classic-editor/'=>'https://wordpress.org/documentation/article/what-is-an-excerpt-classic-editor/','%s expects a non-empty string.'=>'%s expects a non-empty string.','The destination directory already exists and could not be removed.'=>'The destination directory already exists and could not be removed.','The destination folder already exists.'=>'The destination folder already exists.','The source and destination are the same.'=>'The source and destination are the same.','Expand or collapse the elements by clicking on their headings, and arrange them by dragging their headings or by clicking on the up and down arrows.'=>'Expand or collapse the elements by clicking on their headings, and arrange them by dragging their headings or by clicking on the up and down arrows.','Download “%s”'=>'Download “%s”','The "%s" argument must be a non-empty string.'=>'The "%s" argument must be a non-empty string.','Documentation on Writing and Editing Posts'=>'Documentation on Writing and Editing Posts','Documentation on Keyboard Shortcuts'=>'Documentation on Keyboard Shortcuts','Documentation on Comment Spam'=>'Documentation on Comment Spam','Documentation on Customizer'=>'Documentation on Customiser','https://wordpress.org/download/'=>'https://en-gb.wordpress.org/download/','This is the final release of WordPress %s'=>'This is the final release of WordPress %s','Site Editor'=>'Site Editor','Send password reset sends the user an email with a link to set a new password.'=>'Send password reset sends the user an email with a link to set a new password.','https://developer.wordpress.org/apis/wp-config-php/#wp-environment-type'=>'https://developer.wordpress.org/apis/wp-config-php/#wp-environment-type','Copy URL copies the URL for the media file to your clipboard.'=>'Copy URL copies the URL for the media file to your clipboard.','View will take you to a public display page for that file.'=>'View will take you to a public display page for that file.','Delete Permanently will delete the file from the media library (as well as from any posts to which it is currently attached).'=>'Delete Permanently will delete the file from the media library (as well as from any posts to which it is currently attached).','Edit takes you to a simple screen to edit that individual file’s metadata. You can also reach that screen by clicking on the media file name or thumbnail.'=>'Edit takes you to a simple screen to edit that individual file’s metadata. You can also reach that screen by clicking on the media file name or thumbnail.','Hovering over a row reveals action links that allow you to manage media items. You can perform the following actions:'=>'Hovering over a row reveals action links that allow you to manage media items. You can perform the following actions:','themesBlock Themes'=>'Block Themes','Documentation on Block Themes'=>'Documentation on Block Themes','Block themes'=>'Block themes','With a block theme, you can place and edit blocks without affecting your content by customizing or creating new templates.'=>'With a block theme, you can place and edit blocks without affecting your content by customising or creating new templates.','A block theme is a theme that uses blocks for all parts of a site including navigation menus, header, content, and site footer. These themes are built for the features that allow you to edit and customize all parts of your site.'=>'A block theme is a theme that uses blocks for all parts of a site including navigation menus, header, content, and site footer. These themes are built for the features that allow you to edit and customise all parts of your site.','Recommended items are considered beneficial to your site, although not as important to prioritize as a critical issue, they may include improvements to things such as; Performance, user experience, and more.'=>'Recommended items are considered beneficial to your site, although not as important to prioritise as a critical issue, they may include improvements to things such as; Performance, user experience, and more.','Critical issues are items that may have a high impact on your sites performance or security, and resolving these issues should be prioritized.'=>'Critical issues are items that may have a high impact on your sites performance or security, and resolving these issues should be prioritised.','Configuration rules for %s:'=>'Configuration rules for %s:','Customize permalink structure by selecting available tags'=>'Customise permalink structure by selecting available tags','Select the permalink structure for your website. Including the %s tag makes links easy to understand, and can help your posts rank higher in search engines.'=>'Select the permalink structure for your website. Including the %s tag makes links easy to understand, and can help your posts rank higher in search engines.','%s removed from permalink structure'=>'%s removed from permalink structure','Site Health %s'=>'Site Health %s','Theme Styles & Block Settings'=>'Theme Styles & Block Settings','The minimum recommended version of PHP is %s.'=>'The minimum recommended version of PHP is %s.','PHP is one of the programming languages used to build WordPress. Newer versions of PHP receive regular security updates and may increase your site’s performance.'=>'PHP is one of the programming languages used to build WordPress. Newer versions of PHP receive regular security updates and may increase your site’s performance.','Your site is running on an outdated version of PHP (%s), which soon will not be supported by WordPress. Ensure that PHP is updated on your server as soon as possible. Otherwise you will not be able to upgrade WordPress.'=>'Your site is running on an outdated version of PHP (%s), which soon will not be supported by WordPress. Ensure that PHP is updated on your server as soon as possible. Otherwise you will not be able to upgrade WordPress.','Your site is running on an outdated version of PHP (%s), which does not receive security updates and soon will not be supported by WordPress. Ensure that PHP is updated on your server as soon as possible. Otherwise you will not be able to upgrade WordPress.'=>'Your site is running on an outdated version of PHP (%s), which does not receive security updates and soon will not be supported by WordPress. Ensure that PHP is updated on your server as soon as possible. Otherwise you will not be able to upgrade WordPress.','Persistent object cache'=>'Persistent object cache','Page cache'=>'Page cache','You should use a persistent object cache'=>'You should use a persistent object cache','Your host appears to support the following object caching services: %s.'=>'Your host appears to support the following object caching services: %s.','Your hosting provider can tell you if a persistent object cache can be enabled on your site.'=>'Your hosting provider can tell you if a persistent object cache can be enabled on your site.','A persistent object cache is not required'=>'A persistent object cache is not required','Learn more about persistent object caching.'=>'Learn more about persistent object caching.','A persistent object cache makes your site’s database more efficient, resulting in faster load times because WordPress can retrieve your site’s content and settings much more quickly.'=>'A persistent object cache makes your site’s database more efficient, resulting in faster load times because WordPress can retrieve your site’s content and settings much more quickly.','A persistent object cache is being used'=>'A persistent object cache is being used','A page cache plugin was not detected.'=>'A page cache plugin was not detected.','A page cache plugin was detected.'=>'A page cache plugin was detected.','There was %d client caching response header detected:'=>'There was %d client caching response header detected:' . "\0" . 'There were %d client caching response headers detected:','No client caching response headers were detected.'=>'No client caching response headers were detected.','Median server response time was %1$s milliseconds. It should be less than the recommended %2$s milliseconds threshold.'=>'Median server response time was %1$s milliseconds. It should be less than the recommended %2$s milliseconds threshold.','Median server response time was %1$s milliseconds. This is less than the recommended %2$s milliseconds threshold.'=>'Median server response time was %1$s milliseconds. This is less than the recommended %2$s milliseconds threshold.','Server response time could not be determined. Verify that loopback requests are working.'=>'Server response time could not be determined. Verify that loopback requests are working.','Page cache is detected but the server response time is still slow'=>'Page cache is detected but the server response time is still slow','Page cache is not detected and the server response time is slow'=>'Page cache is not detected and the server response time is slow','Page cache is detected and the server response time is good'=>'Page cache is detected and the server response time is good','Page cache is not detected but the server response time is OK'=>'Page cache is not detected but the server response time is OK','Unable to detect page cache due to possible loopback request problem. Please verify that the loopback request test is passing. Error: %1$s (Code: %2$s)'=>'Unable to detect page cache due to possible loopback request problem. Please verify that the loopback request test is passing. Error: %1$s (Code: %2$s)','Unable to detect the presence of page cache'=>'Unable to detect the presence of page cache','Learn more about page cache'=>'Learn more about page cache','Page cache is detected by looking for an active page cache plugin as well as making three requests to the homepage and looking for one or more of the following HTTP client caching response headers:'=>'Page cache is detected by looking for an active page cache plugin as well as making three requests to the homepage and looking for one or more of the following HTTP client caching response headers:','Page cache enhances the speed and performance of your site by saving and serving static pages instead of calling for a page every time a user visits.'=>'Page cache enhances the speed and performance of your site by saving and serving static pages instead of calling for a page every time a user visits.','If you are still seeing this warning after having tried the actions below, you may need to contact your hosting provider for further assistance.'=>'If you are still seeing this warning after having tried the actions below, you may need to contact your hosting provider for further assistance.','The Authorization header is used by third-party applications you have approved for this site. Without this header, those apps cannot connect to your site.'=>'The Authorization header is used by third-party applications you have approved for this site. Without this header, those apps cannot connect to your site.','When testing the REST API, an unexpected result was returned:'=>'When testing the REST API, an unexpected result was returned:','REST API Response: (%1$s) %2$s'=>'REST API Response: (%1$s) %2$s','REST API Endpoint: %s'=>'REST API Endpoint: %s','When testing the REST API, an error was encountered:'=>'When testing the REST API, an error was encountered:','Your site is running on an outdated version of PHP (%s), which does not receive security updates. It should be updated.'=>'Your site is running on an outdated version of PHP (%s), which does not receive security updates. It should be updated.','Your site is running on an outdated version of PHP (%s), which does not receive security updates and soon will not be supported by WordPress.'=>'Your site is running on an outdated version of PHP (%s), which does not receive security updates and soon will not be supported by WordPress.','Requirements'=>'Requirements','Your site is running on an outdated version of PHP (%s), which soon will not be supported by WordPress.'=>'Your site is running on an outdated version of PHP (%s), which soon will not be supported by WordPress.','PHP is one of the programming languages used to build WordPress. Newer versions of PHP receive regular security updates and may increase your site’s performance. The minimum recommended version of PHP is %s.'=>'PHP is one of the programming languages used to build WordPress. Newer versions of PHP receive regular security updates and may increase your site’s performance. The minimum recommended version of PHP is %s.','Your site does not have any installed themes.'=>'Your site does not have any installed themes.','Your site does not have any active plugins.'=>'Your site does not have any active plugins.','Another attempt will be made with the next release.'=>'Another attempt will be made with the next release.','The %1$s constant is defined as %2$s'=>'The %1$s constant is defined as %2$s','The %1$s argument must be a non-empty string for %2$s.'=>'The %1$s argument must be a non-empty string for %2$s.','The %s argument must be an array.'=>'The %s argument must be an array.','- %1$s version %2$s%3$s'=>'- %1$s version %2$s%3$s','- %1$s (from version %2$s to %3$s)%4$s'=>'- %1$s (from version %2$s to %3$s)%4$s','Reach out to WordPress Core developers to ensure you\'ll never have this problem again.'=>'Reach out to WordPress Core developers to ensure you\'ll never have this problem again.','Important! Your version of WordPress (%1$s) will stop receiving security updates in the near future. To keep your site secure, please update to the latest version of WordPress.'=>'Important! Your version of WordPress (%1$s) will stop receiving security updates in the near future. To keep your site secure, please update to the latest version of WordPress.','Important! Your version of WordPress (%1$s) is no longer supported, you will not receive any security updates for your website. To keep your site secure, please update to the latest version of WordPress.'=>'Important! Your version of WordPress (%1$s) is no longer supported, you will not receive any security updates for your website. To keep your site secure, please update to the latest version of WordPress.','https://make.wordpress.org/core/wordpress-%s-field-guide/'=>'https://make.wordpress.org/core/wordpress-%s-field-guide/','Learn more about WordPress %s'=>'Learn more about WordPress %s','Please type your comment text.'=>'Please type your comment text.','You cannot remove users.'=>'You cannot remove users.','Application passwords grant access to the %2$s site on the network as you have Super Admin rights.'=>'Application passwords grant access to the %2$s site on the network as you have Super Admin rights.' . "\0" . 'Application passwords grant access to all %2$s sites on the network as you have Super Admin rights.','WordPress has been updated! Next and final step is to update your database to the newest version.'=>'WordPress has been updated! Next and final step is to update your database to the newest version.','Documentation on Managing Themes'=>'Documentation on Managing Themes','This information is being used to create a %s file.'=>'This information is being used to create a %s file.','Welcome to WordPress. Before getting started, you will need to know the following items.'=>'Welcome to WordPress. Before getting started, you will need to know the following items.','Settings save failed.'=>'Settings save failed.','After your Privacy Policy page is set, you should edit it.'=>'After your Privacy Policy page is set, you should edit it.','Error: Your %1$s file is not writable, so updating it automatically was not possible. These are the mod_rewrite rules you should have in your %1$s file. Click in the field and press %3$s (or %4$s on Mac) to select all.'=>'Error: Your %1$s file is not writable, so updating it automatically was not possible. These are the mod_rewrite rules you should have in your %1$s file. Click in the field and press %3$s (or %4$s on Mac) to select all.','Error: Your %1$s file is not writable, so updating it automatically was not possible. This is the URL rewrite rule you should have in your %1$s file. Click in the field and press %3$s (or %4$s on Mac) to select all. Then insert this rule inside of the %5$s element in %1$s file.'=>'Error: Your %1$s file is not writable, so updating it automatically was not possible. This is the URL rewrite rule you should have in your %1$s file. Click in the field and press %3$s (or %4$s on Mac) to select all. Then insert this rule inside of the %5$s element in %1$s file.','An avatar is an image that can be associated with a user across multiple websites. In this area, you can choose to display avatars of users who interact with the site.'=>'An avatar is an image that can be associated with a user across multiple websites. In this area, you can choose to display avatars of users who interact with the site.','Change Permalink Structure'=>'Change Permalink Structure','Howdy, -Someone with administrator capabilities recently requested to have the +A site administrator (###USERNAME###) recently requested to have the administration email address changed on this site: ###SITEURL### @@ -15,9 +15,9 @@ This email has been sent to ###EMAIL### Regards, All at ###SITENAME### -###SITEURL###'=>'Howdy ###USERNAME###, +###SITEURL###'=>'Hi, -Someone with administrator capabilities recently requested to have the +A site administrator (###USERNAME###) recently requested to have the administration email address changed on this site: ###SITEURL### @@ -31,11 +31,11 @@ This email has been sent to ###EMAIL### Regards, All at ###SITENAME### -###SITEURL###','Where your data is sent'=>'Where your data is sent','Copy “%s” URL to clipboard'=>'Copy “%s” URL to clipboard','Some data that describes the error your site encountered has been put together.'=>'Some data that describes the error your site encountered has been put together.','An attempt was made, but your site could not be updated automatically.'=>'An attempt was made, but your site could not be updated automatically.','themeActive'=>'Active','The update cannot be installed because some files could not be copied. This is usually due to inconsistent file permissions.'=>'The update cannot be installed because some files could not be copied. This is usually due to inconsistent file permissions.','Media — A list of URLs for media files the user uploads.'=>'Media — A list of URLs for media files the user uploads.','Community Events Location — The IP Address of the user, which populates the Upcoming Community Events dashboard widget with relevant information.'=>'Community Events Location — The IP Address of the user, which populates the Upcoming Community Events dashboard widget with relevant information.','WordPress collects (but never publishes) a limited amount of data from registered users who have logged in to the site. Generally, these users are people who contribute to the site in some way -- content, store management, and so on. With rare exceptions, these users do not include occasional visitors who might have registered to comment on articles or buy products. The data WordPress retains can include:'=>'WordPress collects (but never publishes) a limited amount of data from registered users who have logged in to the site. Generally, these users are people who contribute to the site in some way -- content, store management, and so on. With rare exceptions, these users do not include occasional visitors who might have registered to comment on articles or buy products. The data WordPress retains can include:','Note: Since this tool only gathers data from WordPress and participating plugins, you may need to do more to comply with export requests. For example, you should also send the requester some of the data collected from or stored with the 3rd party services your organization uses.'=>'Note: Since this tool only gathers data from WordPress and participating plugins, you may need to do more to comply with export requests. For example, you should also send the requester some of the data collected from or stored with the 3rd party services your organisation uses.','Privacy Laws around the world require businesses and online services to provide an export of some of the data they collect about an individual, and to deliver that export on request. The rights those laws enshrine are sometimes called the "Right of Data Portability". It allows individuals to obtain and reuse their personal data for their own purposes across different services. It allows them to move, copy or transfer personal data easily from one IT environment to another.'=>'Privacy Laws around the world require businesses and online services to provide an export of some of the data they collect about an individual, and to deliver that export on request. The rights those laws enshrine are sometimes called the "Right of Data Portability". It allows individuals to obtain and reuse their personal data for their own purposes across different services. It allows them to move, copy, or transfer personal data easily from one IT environment to another.','Comments — WordPress does not delete comments. The software does anonymize (but, again, never publishes) the associated Email Address, IP Address, and User Agent (Browser/OS).'=>'Comments — WordPress does not delete comments. The software does anonymise (but, again, never publishes) the associated Email Address, IP Address, and User Agent (Browser/OS).','WordPress collects (but never publishes) a limited amount of data from logged-in users but then deletes it or anonymizes it. That data can include:'=>'WordPress collects (but never publishes) a limited amount of data from logged-in users but then deletes it or anonymises it. That data can include:','Note: As this tool only gathers data from WordPress and participating plugins, you may need to do more to comply with erasure requests. For example, you are also responsible for ensuring that data collected by or stored with the 3rd party services your organization uses gets deleted.'=>'Note: As this tool only gathers data from WordPress and participating plugins, you may need to do more to comply with erasure requests. For example, you are also responsible for ensuring that data collected by or stored with the 3rd party services your organisation uses gets deleted.','Privacy Laws around the world require businesses and online services to delete, anonymize, or forget the data they collect about an individual. The rights those laws enshrine are sometimes called the "Right to be Forgotten".'=>'Privacy Laws around the world require businesses and online services to delete, anonymise, or forget the data they collect about an individual. The rights those laws enshrine are sometimes called the "Right to be Forgotten".','This screen is where you manage requests to erase personal data.'=>'This screen is where you manage requests to erase personal data.','This post is being backed up in your browser, just in case.'=>'This post is being backed up in your browser, just in case.','This will grant access to the %2$s site on the network as you have Super Admin rights.'=>'This will grant access to the %2$s site on the network as you have Super Admin rights.' . "\0" . 'This will grant access to all %2$s sites on the network as you have Super Admin rights.','Learn about block themes'=>'Learn about block themes','There is a new kind of WordPress theme, called a block theme, that lets you build the site you’ve always wanted — with blocks and styles.'=>'There is a new kind of WordPress theme, called a block theme, that lets you build the site you’ve always wanted — with blocks and styles.','Discover a new way to build your site.'=>'Discover a new way to build your site.','Tweak your site, or give it a whole new look! Get creative — how about a new color palette or font?'=>'Tweak your site, or give it a whole new look! Get creative – how about a new colour palette or font?','Switch up your site’s look & feel with Styles'=>'Switch up your site’s look & feel with Styles','Open the Customizer'=>'Open the Customiser','Configure your site’s logo, header, menus, and more in the Customizer.'=>'Configure your site’s logo, header, menus, and more in the Customiser.','Start Customizing'=>'Start customising','Open site editor'=>'Open site editor','Design everything on your site — from the header down to the footer, all using blocks and patterns.'=>'Design everything on your site – from the header down to the footer, all using blocks and patterns.','Customize your entire site with block themes'=>'Customise your entire site with block themes','Add a new page'=>'Add a new page','Block patterns are pre-configured block layouts. Use them to get inspired or create new pages in a flash.'=>'Block patterns are pre-configured block layouts. Use them to get inspired or create new pages in a flash.','Author rich content with blocks and patterns'=>'Author rich content with blocks and patterns','Learn more about the %s version.'=>'Learn more about the %s version.','WordPress is free and open source software'=>'WordPress is free and open-source software','Plugin File Editor'=>'Plugin file editor','Theme File Editor'=>'Theme file editor','If this is a development website, you can set the environment type accordingly to enable application passwords.'=>'If this is a development website, you can set the environment type accordingly to enable application passwords.','The application password feature requires HTTPS, which is not enabled on this site.'=>'The application password feature requires HTTPS, which is not enabled on this site.','g:i a T'=>'H:i T','Documentation on Editing Themes'=>'Documentation on Editing Themes','Documentation on Site Health tool'=>'Documentation on Site Health tool','In the Info tab, you will find all the details about the configuration of your WordPress site, server, and database. There is also an export feature that allows you to copy all of the information about your site to the clipboard, to help solve problems on your site when obtaining support.'=>'In the Info tab, you will find all the details about the configuration of your WordPress site, server, and database. There is also an export feature that allows you to copy all of the information about your site to the clipboard, to help solve problems on your site when obtaining support.','In the Status tab, you can see critical information about your WordPress configuration, along with anything else that requires your attention.'=>'In the status tab, you can see critical information about your WordPress configuration, along with anything else that requires your attention.','This screen allows you to obtain a health diagnosis of your site, and displays an overall rating of the status of your installation.'=>'This screen allows you to obtain a health diagnosis of your site, and displays an overall rating of the status of your installation.','Documentation on Privacy Settings'=>'Documentation on Privacy Settings','This screen includes suggestions to help you write your own privacy policy. However, it is your responsibility to use these resources correctly, to provide the information required by your privacy policy, and to keep this information current and accurate.'=>'This screen includes suggestions to help you write your own privacy policy. However, it is your responsibility to use these resources correctly, to provide the information required by your privacy policy, and to keep this information current and accurate.','The Privacy screen lets you either build a new privacy-policy page or choose one you already have to show.'=>'The privacy screen lets you either build a new privacy policy page or choose one you already have to show.','Individual posts may override these settings. Changes here will only be applied to new posts.'=>'Individual posts may override these settings. Changes here will only be applied to new posts.','Menu item moved to the top'=>'Menu item moved to the top','Menu item removed'=>'Menu item removed','The Dashboard is the first place you will come to every time you log into your site. It is where you will find all your WordPress tools. If you need help, just click the “Help” tab above the screen title.'=>'The dashboard is the first place you will come to, every time you log into your site. It is where you will find all your WordPress tools. If you need help, just click the “Help” tab above the screen title.','Welcome to your WordPress Dashboard!'=>'Welcome to your WordPress dashboard!','The application ID must be a UUID.'=>'The application ID must be a UUID.','Select location'=>'Select location','Visit plugin site for %s'=>'Visit plugin site for %s','pluginCannot Activate'=>'Cannot activate','Max connections number'=>'Maximum connections number','Max allowed packet size'=>'Maximum allowed packet size','Your website appears to use Basic Authentication, which is not currently compatible with application passwords.'=>'Your website appears to use basic authentication, which is not currently compatible with application passwords.','%1$s “%2$s”'=>'%1$s “%2$s”','Template Editing'=>'Template Editing','WordPress comes with some awesome, worldview-changing rights courtesy of its license, the GPL.'=>'WordPress comes with some awesome, worldview-changing rights courtesy of its licence, the GPL.','Want to see your name in lights on this page?'=>'Want to see your name in lights on this page?','Get involved in WordPress.'=>'Get involved in WordPress.','WordPress is created by a worldwide team of passionate individuals.'=>'WordPress is created by a worldwide team of passionate individuals.','%s plugin deactivated during WordPress upgrade.'=>'%s plugin deactivated during WordPress upgrade.','%1$s %2$s was deactivated due to incompatibility with WordPress %3$s.'=>'%1$s %2$s was deactivated due to incompatibility with WordPress %3$s.','%1$s %2$s was deactivated due to incompatibility with WordPress %3$s, please upgrade to %1$s %4$s or later.'=>'%1$s %2$s was deactivated due to incompatibility with WordPress %3$s, please upgrade to %1$s %4$s or later.','We take privacy and transparency very seriously'=>'We take privacy and transparency very seriously','The Four Freedoms'=>'The Four Freedoms','themeDelete %s'=>'Delete %s','themeLive Preview %s'=>'Live Preview %s','themeCustomize %s'=>'Customise %s','themeView Theme Details for %s'=>'View theme details for %s','Toggle extra menu items'=>'Toggle extra menu items','Site Health - %s'=>'Site health – %s','You need to make the file %1$s writable before you can save your changes. See Changing File Permissions for more information.'=>'You need to make the file %1$s writable before you can save your changes. See Changing file permissions for more information.','Rewrite rules:'=>'Rewrite rules:','List of menu items selected for deletion:'=>'List of menu items selected for deletion:','Remove Selected Items'=>'Remove selected items','Bulk Select'=>'Bulk select','Deleted menu item: %s.'=>'Deleted menu item: %s.','item %s'=>'item %s','Themes %s'=>'Themes %s','Unable to encode the personal data for export. Error: %s'=>'Unable to encode the personal data for export. Error: %s','The %s post meta must be an array.'=>'The %s post meta must be an array.','Your site’s health is looking good, but there is still one thing you can do to improve its performance and security.'=>'Your site’s health is looking good, but there is still one thing you can do to improve its performance and security.','Your site has a critical issue that should be addressed as soon as possible to improve its performance and security.'=>'Your site has a critical issue that should be addressed as soon as possible to improve its performance and security.','Learn how to browse happy'=>'Learn how to browse happy','Internet Explorer does not give you the best WordPress experience. Switch to Microsoft Edge, or another more modern browser to get the most from your site.'=>'Internet Explorer does not give you the best WordPress experience. Switch to Microsoft Edge, or another more modern browser to get the most from your site.','GD supported file formats'=>'GD supported file formats','Unable to determine'=>'Unable to determine','ImageMagick supported file formats'=>'ImageMagick-supported file formats','Imagick version'=>'Imagick version','themeUploaded'=>'Uploaded','pluginReplace current with uploaded'=>'Replace current with uploaded','pluginUploaded'=>'Uploaded','pluginCurrent'=>'Current','Please activate the Link Manager plugin to use the link manager.'=>'Please activate the Link Manager plugin to use the link manager.','Create a new Privacy Policy page'=>'Create a new Privacy Policy page','Send personal data export confirmation email.'=>'Send personal data export confirmation email.','This tool helps site owners comply with local laws and regulations by exporting known data for a given user in a .zip file.'=>'This tool helps site owners comply with local laws and regulations by exporting known data for a given user in a .zip file.','Documentation on Export Personal Data'=>'Documentation on Export Personal Data','Many plugins may collect or store personal data either in the WordPress database or remotely. Any Export Personal Data request should include data from plugins as well.'=>'Many plugins may collect or store personal data, either in the WordPress database or remotely. Any Export Personal Data request should include data from plugins as well.','If you are not sure, check the plugin documentation or contact the plugin author to see if the plugin collects data and if it supports the Data Exporter tool. This information may be available in the Privacy Policy Guide.'=>'If you are not sure, check the plugin documentation, or contact the plugin author to see if the plugin collects data and if it supports the Data Exporter tool. This information may be available in the Privacy Policy Guide.','Comments — For user comments, Email Address, IP Address, User Agent (Browser/OS), Date/Time, Comment Content, and Content URL.'=>'Comments — For user comments, Email Address, IP Address, User Agent (Browser/OS), Date/Time, Comment Content, and Content URL.','This screen is where you manage requests for an export of personal data.'=>'This screen is where you manage requests for an export of personal data.','Site URLs could not be switched to HTTPS.'=>'Site URLs could not be switched to HTTPS.','Site URLs switched to HTTPS.'=>'Site URLs switched to HTTPS.','It looks like HTTPS is not supported for your website at this point.'=>'It looks like HTTPS is not supported for your website, at this point.','Sorry, you are not allowed to update this site to HTTPS.'=>'Sorry, you are not allowed to update this site to HTTPS.','Password reset links sent to %s user.'=>'Password reset links sent to %s user.' . "\0" . 'Password reset links sent to %s users.','Password reset link sent.'=>'Password reset link sent.','Send %s a link to reset their password. This will not change their password, nor will it force a change.'=>'Send %s a link to reset their password. This will not change their password, nor will it force a change.','Send Reset Link'=>'Send Reset Link','Policies'=>'Policies','The Privacy Settings require JavaScript.'=>'The Privacy Settings require JavaScript.','Privacy SettingsPolicy Guide'=>'Policy Guide','Privacy SettingsSettings'=>'Settings','Re-install version %s'=>'Re-install version %s','Update to latest %s nightly'=>'Update to latest %s nightly','Send personal data erasure confirmation email.'=>'Send personal data erasure confirmation email.','Confirmation email'=>'Confirmation email','This tool helps site owners comply with local laws and regulations by deleting or anonymizing known data for a given user.'=>'This tool helps site owners comply with local laws and regulations by deleting or anonymising known data for a given user.','Documentation on Erase Personal Data'=>'Documentation on Erase Personal Data','Many plugins may collect or store personal data either in the WordPress database or remotely. Any Erase Personal Data request should delete data from plugins as well.'=>'Many plugins may collect or store personal data, either in the WordPress database or remotely. Any Erase Personal Data request should delete data from plugins as well.','Plugin Data'=>'Plugin Data','If you are not sure, check the plugin documentation or contact the plugin author to see if the plugin collects data and if it supports the Data Eraser tool. This information may be available in the Privacy Policy Guide.'=>'If you are not sure, check the plugin documentation or contact the plugin author to see if the plugin collects data and if it supports the Data Eraser tool. This information may be available in the Privacy Policy Guide.','Media — A list of URLs for all media file uploads made by the user.'=>'Media – a list of URLs for all media file uploads made by the user.','Session Tokens — User login information, IP Addresses, Expiration Date, User Agent (Browser/OS), and Last Login.'=>'Session Tokens – user login information, IP Addresses, Expiration Date, User Agent (Browser/OS), and Last Login.','Community Events Location — The IP Address of the user which is used for the Upcoming Community Events shown in the dashboard widget.'=>'Community Events Location – the IP Address of the user which is used for the Upcoming Community Events shown in the dashboard widget.','Profile Information — user email address, username, display name, nickname, first name, last name, description/bio, and registration date.'=>'Profile Information – user email address, username, display name, nickname, first name, last name, description/bio, and registration date.','Default Data'=>'Default Data','The tool associates data stored in WordPress with a supplied email address, including profile data and comments.'=>'The tool associates data stored in WordPress with a supplied email address, including profile data and comments.','https://make.wordpress.org/community/organize-event-landing-page/'=>'https://make.wordpress.org/community/organize-event-landing-page/','Want more events? Help organize the next one!'=>'Want more events? Help organise the next one!','A password reset link was emailed to %s.'=>'A password reset link was emailed to %s.','Cannot send password reset, permission denied.'=>'Cannot send password reset, permission denied.','The setting for %1$s is currently configured as 0, this could cause some problems when trying to upload files through plugin or theme features that rely on various upload methods. It is recommended to configure this setting to a fixed value, ideally matching the value of %2$s, as some upload methods read the value 0 as either unlimited, or disabled.'=>'The setting for %1$s is currently configured as 0, this could cause some problems when trying to upload files through plugin or theme features that rely on various upload methods. It is recommended to configure this setting to a fixed value, ideally matching the value of %2$s, as some upload methods read the value 0 as either unlimited, or disabled.','Talk to your web host about supporting HTTPS for your website.'=>'Talk to your web host about supporting HTTPS for your website.','Update your site to use HTTPS'=>'Update your site to use HTTPS','However, your WordPress Address is currently controlled by a PHP constant and therefore cannot be updated. You need to edit your %1$s and remove or update the definitions of %2$s and %3$s.'=>'However, your WordPress Address is currently controlled by a PHP constant and therefore cannot be updated. You need to edit your %1$s and remove or update the definitions of %2$s and %3$s.','HTTPS is already supported for your website.'=>'HTTPS is already supported for your website.','Your WordPress Address and Site Address are not set up to use HTTPS.'=>'Your WordPress Address and Site Address are not set up to use HTTPS.','You are accessing this website using HTTPS, but your WordPress Address and Site Address are not set up to use HTTPS by default.'=>'You are accessing this website using HTTPS, but your WordPress Address and Site Address are not set up to use HTTPS by default.','Your Site Address is not set up to use HTTPS.'=>'Your Site Address is not set up to use HTTPS.','Learn more about debugging in WordPress.'=>'Learn more about debugging in WordPress.','Added'=>'Added','Send password reset'=>'Send password reset','Contact information'=>'Contact information','Copy suggested policy text to clipboard'=>'Copy suggested policy text to clipboard','Directory listing failed.'=>'Directory listing failed.','Search Results'=>'Search Results','Invalid request ID when processing personal data to erase.'=>'Invalid request ID when processing personal data to erase.','Invalid request ID when merging personal data to export.'=>'Invalid request ID when merging personal data to export.','Unable to archive the personal data export file (HTML format).'=>'Unable to archive the personal data export file (HTML format).','Unable to archive the personal data export file (JSON format).'=>'Unable to archive the personal data export file (JSON format).','Unable to open personal data export (HTML report) for writing.'=>'Unable to open personal data export (HTML report) for writing.','Unable to create personal data export folder.'=>'Unable to create personal data export folder.','Request added successfully.'=>'Request added successfully.','Invalid personal data action.'=>'Invalid personal data action.','Unable to initiate confirmation for personal data request.'=>'Unable to initiate confirmation for personal data request.','Your site is running on an outdated version of PHP (%s), which should be updated.'=>'Your site is running on an outdated version of PHP (%s), which should be updated.','PHP Update Recommended'=>'PHP Update Recommended','Your website appears to use Basic Authentication, which is not currently compatible with Application Passwords.'=>'Your website appears to use Basic Authentication, which is not currently compatible with Application Passwords.','https://developer.wordpress.org/rest-api/frequently-asked-questions/#why-is-authentication-not-working'=>'https://developer.wordpress.org/rest-api/frequently-asked-questions/#why-is-authentication-not-working','This site appears to be under version control. Automatic updates are disabled.'=>'This site appears to be under version control. Automatic updates are disabled.','You are using a development version of WordPress.'=>'You are using a development version of WordPress.','You can update to the latest nightly build manually:'=>'You can update to the latest nightly build manually:','Enable automatic updates for all new versions of WordPress.'=>'Enable automatic updates for all new versions of WordPress.','Switch to automatic updates for maintenance and security releases only.'=>'Switch to automatic updates for maintenance and security releases only.','Current version: %s'=>'Current version: %s','This site will not receive automatic updates for new versions of WordPress.'=>'This site will not receive automatic updates for new versions of WordPress.','This site is automatically kept up to date with maintenance and security releases of WordPress only.'=>'This site is automatically kept up to date with maintenance and security releases of WordPress only.','This site is automatically kept up to date with each new version of WordPress.'=>'This site is automatically kept up to date with each new version of WordPress.','WordPress will only receive automatic security and maintenance releases from now on.'=>'WordPress will only receive automatic security and maintenance releases from now on.','Automatic updates for all WordPress versions have been enabled. Thank you!'=>'Automatic updates for all WordPress versions have been enabled. Thank you!','Site Health Status — Informs you of any potential issues that should be addressed to improve the performance or security of your website.'=>'Site Health Status – Informs you of any potential issues that should be addressed to improve the performance or security of your website.','Your new password for %s is:'=>'Your new password for %s is:','Add New Application Password'=>'Add New Application Password','Required to create an Application Password, but not to update the user.'=>'Required to create an Application Password, but not to update the user.','Go to Updates'=>'Go to Updates','← Go to Users'=>'← Go to Users','← Go to editor'=>'← Go to editor','Go to Plugin Installer'=>'Go to Plugin Installer','Go to Importers'=>'Go to Importers','Go to Theme Installer'=>'Go to Theme Installer','Go to top'=>'Go to top','%s could not be located. Please try another nearby city. For example: Kansas City; Springfield; Portland.'=>'%s could not be located. Please try another nearby city. For example: Kansas City; Springfield; Portland.','You will be returned to the WordPress Dashboard, and no changes will be made.'=>'You will be returned to the WordPress Dashboard, and no changes will be made.','No, I do not approve of this connection'=>'No, I do not approve of this connection','You will be given a password to manually enter into the application in question.'=>'You will be given a password to manually enter into the application in question.','You will be sent to %s'=>'You will be sent to %s','Yes, I approve of this connection'=>'Yes, I approve of this connection','This will grant access to the %2$s site in this installation that you have permissions on.'=>'This will grant access to the %2$s site in this installation on which you have permissions.' . "\0" . 'This will grant access to all %2$s sites in this installation on which you have permissions.','Would you like to give this application access to your account? You should only do this if you trust the application in question.'=>'Would you like to give this application access to your account? You should only do this if you trust the application in question.','Would you like to give the application identifying itself as %s access to your account? You should only do this if you trust the application in question.'=>'Would you like to give the application identifying itself as %s access to your account? You should only do this if you trust the application in question.','An application would like to connect to your account.'=>'An application would like to connect to your account.','Cannot Authorize Application'=>'Cannot Authorise Application','The Authorize Application request is not allowed.'=>'The Authorise Application request is not allowed.','Authorize Application'=>'Authorise Application','Be sure to save this in a safe location. You will not be able to retrieve it.'=>'Be sure to save this in a safe location. You will not be able to retrieve it.','New Application Password Name'=>'New Application Password Name','Application passwords grant access to the %2$s site in this installation that you have permissions on.'=>'Application passwords grant access to the %2$s site in this installation on which you have permissions.' . "\0" . 'Application passwords grant access to all %2$s sites in this installation on which you have permissions.','Application passwords allow authentication via non-interactive systems, such as XML-RPC or the REST API, without providing your actual password. Application passwords can be easily revoked. They cannot be used for traditional logins to your website.'=>'Application passwords allow authentication via non-interactive systems, such as XML-RPC or the REST API, without providing your actual password. Application passwords can be easily revoked. They cannot be used for traditional logins to your website.','Application Passwords'=>'Application Passwords','Type the new password again.'=>'Type the new password again.','Set New Password'=>'Set New Password','Type the password again.'=>'Type the password again.','You can update from WordPress %1$s to WordPress %3$s manually:'=>'You can update from WordPress %1$s to WordPress %3$s manually:','Revoke all application passwords'=>'Revoke all application passwords','Revoke "%s"'=>'Revoke "%s"','Revoke'=>'Revoke','Last IP'=>'Last IP','Last Used'=>'Last Used','The Site Health check for %1$s has been replaced with %2$s.'=>'The Site Health check for %1$s has been replaced with %2$s.','Erase personal data'=>'Erase personal data','- %1$s (from version %2$s to %3$s)'=>'– %1$s (from version %2$s to %3$s)','Current Header Video'=>'Current Header Video','Authorization header'=>'Authorisation header','Learn how to configure the Authorization header.'=>'Learn how to configure the Authorisation header.','Flush permalinks'=>'Flush permalinks','The authorization header is invalid'=>'The authorisation header is invalid','The authorization header is missing'=>'The authorisation header is missing','The Authorization header is working as expected'=>'The authorisation header is working as expected','Some screen elements can be shown or hidden by using the checkboxes.'=>'Some screen elements can be shown or hidden by using the checkboxes.','Screen elements'=>'Screen elements','The URL must be served over a secure connection.'=>'The URL must be served over a secure connection.','If you request a password reset, your IP address will be included in the reset email.'=>'If you request a password reset, your IP address will be included in the reset email.','No plugins found for: %s.'=>'No plugins found for: %s.','Complete request'=>'Complete request','Mark export request for “%s” as completed.'=>'Mark export request for “%s” as completed.','%d request deleted successfully.'=>'%d request deleted successfully.' . "\0" . '%d requests deleted successfully.','%d request failed to delete.'=>'%d request failed to delete.' . "\0" . '%d requests failed to delete.','%d request marked as complete.'=>'%d request marked as complete.' . "\0" . '%d requests marked as complete.','%d confirmation request re-sent successfully.'=>'%d confirmation request resent successfully.' . "\0" . '%d confirmation requests resent successfully.','%d confirmation request failed to resend.'=>'%d confirmation request failed to resend.' . "\0" . '%d confirmation requests failed to resend.','Mark requests as completed'=>'Mark requests as completed','Next steps'=>'Next steps','Unable to open personal data export file (archive) for writing.'=>'Unable to open personal data export file (archive) for writing.','Unable to open personal data export file (JSON report) for writing.'=>'Unable to open personal data export file (JSON report) for writing.','Unable to protect personal data export folder from browsing.'=>'Unable to protect personal data export folder from browsing.','Invalid email address when generating personal data export file.'=>'Invalid email address when generating personal data export file.','Invalid request ID when generating personal data export file.'=>'Invalid request ID when generating personal data export file.','Unable to generate personal data export file. ZipArchive not available.'=>'Unable to generate personal data export file. ZipArchive not available.','Search results for: %s'=>'Search results for: %s','Note that even when set to discourage search engines, your site is still visible on the web and not all search engines adhere to this directive.'=>'Note that even when set to discourage search engines, your site is still visible on the web and not all search engines adhere to this directive.','You can choose whether or not your site will be crawled by robots, ping services, and spiders. If you want those services to ignore your site, click the checkbox next to “Discourage search engines from indexing this site” and click the Save Changes button at the bottom of the screen.'=>'You can choose whether or not your site will be crawled by robots, ping services, and spiders. If you want those services to ignore your site, click the checkbox next to “Discourage search engines from indexing this site” and click the Save Changes button at the bottom of the screen.','The "%1$s" value is smaller than "%2$s"'=>'The "%1$s" value is smaller than "%2$s"','Environment type'=>'Environment type','Auto-updates are only available for plugins recognized by WordPress.org, or that include a compatible update system.'=>'Auto-updates are only available for plugins recognised by WordPress.org, or that include a compatible update system.','Update Incompatible'=>'Update Incompatible','This update does not work with your version of WordPress.'=>'This update does not work with your version of WordPress.','This update does not work with your versions of WordPress and PHP.'=>'This update does not work with your versions of WordPress and PHP.','Disallowed Comment Keys'=>'Disallowed Comment Keys','Plugin and theme auto-updates'=>'Plugin and theme auto-updates','There appear to be no issues with plugin and theme auto-updates.'=>'There appear to be no issues with plugin and theme auto-updates.','Auto-updates for themes appear to be disabled. This will prevent your site from receiving new versions automatically when available.'=>'Auto-updates for themes appear to be disabled. This will prevent your site from receiving new versions automatically when available.','Auto-updates for plugins appear to be disabled. This will prevent your site from receiving new versions automatically when available.'=>'Auto-updates for plugins appear to be disabled. This will prevent your site from receiving new versions automatically when available.','Auto-updates for plugins and themes appear to be disabled. This will prevent your site from receiving new versions automatically when available.'=>'Auto-updates for plugins and themes appear to be disabled. This will prevent your site from receiving new versions automatically when available.','Auto-updates for plugins and/or themes appear to be disabled, but settings are still set to be displayed. This could cause auto-updates to not work as expected.'=>'Auto-updates for plugins and/or themes appear to be disabled, but settings are still set to be displayed. This could cause auto-updates to not work as expected.','Your site may have problems auto-updating plugins and themes'=>'Your site may have problems auto-updating plugins and themes','Plugin and theme auto-updates ensure that the latest versions are always installed.'=>'Plugin and theme auto-updates ensure that the latest versions are always installed.','Plugin and theme auto-updates appear to be configured correctly'=>'Plugin and theme auto-updates appear to be configured correctly','themeActivate “%s”'=>'Activate “%s”','Sorry, you are not allowed to modify plugins.'=>'Sorry, you are not allowed to modify plugins.','The setting for %1$s is smaller than %2$s, this could cause some problems when trying to upload files.'=>'The setting for %1$s is smaller than %2$s, this could cause some problems when trying to upload files.','%1$s is set to %2$s. You won\'t be able to upload files on your site.'=>'%1$s is set to %2$s. You won\'t be able to upload files on your site.','The %s function has been disabled, some media settings are unavailable because of this.'=>'The %s function has been disabled, some media settings are unavailable because of this.','The %1$s directive in %2$s determines if uploading files is allowed on your site.'=>'The %1$s directive in %2$s determines if uploading files is allowed on your site.','Files can be uploaded'=>'Files can be uploaded','Max effective file size'=>'Maximum effective file size','Max size of an uploaded file'=>'Maximum size of an uploaded file','Max size of post data allowed'=>'Maximum size of post data allowed','File uploads'=>'File uploads','File upload settings'=>'File upload settings','themeCannot Install %s'=>'Cannot Install %s','pluginInstall %s'=>'Install %s','themeInstall %s'=>'Install %s','themeUpdate %s now'=>'Update %s now','- %1$s version %2$s'=>'– %1$s version %2$s','themeActivated'=>'Activated','Sorry, you are not allowed to enable themes automatic updates.'=>'Sorry, you are not allowed to enable themes automatic updates.','This plugin is already installed.'=>'This plugin is already installed.','pluginUpdate %s now'=>'Update %s now','pluginInstall %s now'=>'Install %s now','Dismiss this notice.'=>'Dismiss this notice.','themeCannot Activate %s'=>'Cannot Activate %s','Theme will no longer be auto-updated.'=>'Theme will no longer be auto-updated.','Theme will be auto-updated.'=>'Theme will be auto-updated.','Auto-updates can be enabled or disabled for each individual theme. Themes with auto-updates enabled will display the estimated date of the next auto-update. Auto-updates depends on the WP-Cron task scheduling system.'=>'Auto-updates can be enabled or disabled for each individual theme. Themes with auto-updates enabled will display the estimated date of the next auto-update. Auto-updates depend on the WP-Cron task scheduling system.','Sorry, you are not allowed to disable themes automatic updates.'=>'Sorry, you are not allowed to disable themes automatic updates.','Sorry, you are not allowed to manage plugins automatic updates.'=>'Sorry, you are not allowed to manage plugins automatic updates.','Error in deleting the item.'=>'Error in deleting the item.','Error in restoring the item from Trash.'=>'Error in restoring the item from Bin.','Error in moving the item to Trash.'=>'Error in moving the item to Bin.','Selected plugins will no longer be auto-updated.'=>'Selected plugins will no longer be auto-updated.','Selected plugins will be auto-updated.'=>'Selected plugins will be auto-updated.','Plugin will no longer be auto-updated.'=>'Plugin will no longer be auto-updated.','Plugin will be auto-updated.'=>'Plugin will be auto-updated.','Auto-updates can be enabled or disabled for each individual plugin. Plugins with auto-updates enabled will display the estimated date of the next auto-update. Auto-updates depends on the WP-Cron task scheduling system.'=>'Auto-updates can be enabled or disabled for each individual plugin. Plugins with auto-updates enabled will display the estimated date of the next auto-update. Auto-updates depend on the WP-Cron task scheduling system.','Please connect to your network admin to manage plugins automatic updates.'=>'Please connect to your network admin to manage plugins automatic updates.','The admin email verification page will reappear after %s.'=>'The admin email verification page will reappear after %s.','Auto-updates'=>'Auto-updates','Please note: Third-party themes and plugins, or custom code, may override WordPress scheduling.'=>'Please note: third-party themes and plugins, or custom code, may override WordPress scheduling.','Auto-updates can be enabled or disabled for WordPress major versions and for each individual theme or plugin. Themes or plugins with auto-updates enabled will display the estimated date of the next auto-update. Auto-updates depends on the WP-Cron task scheduling system.'=>'Auto-updates can be enabled or disabled for WordPress major versions and for each individual theme or plugin. Themes or plugins with auto-updates enabled will display the estimated date of the next auto-update. Auto-updates depends on the WP-Cron task scheduling system.','Important: Before updating, please back up your database and files. For help with updates, visit the Updating WordPress documentation page.'=>'Important: before updating, please back up your database and files. For help with updates, visit the Updating WordPress documentation page.','themeCannot Activate'=>'Cannot Activate','You cannot edit this comment because the associated post is in the Trash. Please restore the post first, then try again.'=>'You cannot edit this comment because the associated post is in the Bin. Please restore the post first, then try again.','media itemSuccess'=>'Success','pluginError: Current WordPress version (%1$s) does not meet minimum requirements for %2$s. The plugin requires WordPress %3$s.'=>'Error: current WordPress version (%1$s) does not meet the minimum requirements for %2$s. The plugin requires WordPress %3$s.','pluginError: Current PHP version (%1$s) does not meet minimum requirements for %2$s. The plugin requires PHP %3$s.'=>'Error: current PHP version (%1$s) does not meet the minimum requirements for %2$s. The plugin requires PHP %3$s.','pluginError: Current versions of WordPress (%1$s) and PHP (%2$s) do not meet minimum requirements for %3$s. The plugin requires WordPress %4$s and PHP %5$s.'=>'Error: current versions of WordPress (%1$s) and PHP (%2$s) do not meet the minimum requirements for %3$s. The plugin requires WordPress %4$s and PHP %5$s.','Invalid data. The item does not exist.'=>'Invalid data. The item does not exist.','Invalid data. Unknown type.'=>'Invalid data. Unknown type.','Invalid data. Unknown state.'=>'Invalid data. Unknown state.','Invalid data. No selected item.'=>'Invalid data. No selected item.','You cannot reply to a comment on a draft post.'=>'You cannot reply to a comment on a draft post.','To manage themes on your site, visit the Themes page: %s'=>'To manage themes on your site, visit the Themes page: %s','To manage plugins on your site, visit the Plugins page: %s'=>'To manage plugins on your site, visit the Plugins page: %s','These themes are now up to date:'=>'These themes are now up to date:','These plugins are now up to date:'=>'These plugins are now up to date:','These themes failed to update:'=>'These themes failed to update:','Please check your site now. It’s possible that everything is working. If there are updates available, you should update.'=>'Please check your site now. It’s possible that everything is working. If there are updates available, you should update.','Howdy! Themes failed to update on your site at %s.'=>'Hi! Themes failed to update on your site at %s.','[%s] Some themes have failed to update'=>'[%s] Some themes have failed to update','Howdy! Plugins failed to update on your site at %s.'=>'Hi! Plugins failed to update on your site at %s.','[%s] Some plugins have failed to update'=>'[%s] Some plugins have failed to update','Howdy! Plugins and themes failed to update on your site at %s.'=>'Hi! Plugins and themes failed to update on your site at %s.','[%s] Some plugins and themes have failed to update'=>'[%s] Some plugins and themes have failed to update','Howdy! Some themes have automatically updated to their latest versions on your site at %s. No further action is needed on your part.'=>'Hi! Some themes have automatically updated to their latest versions on your site at %s. No further action is needed on your part.','[%s] Some themes were automatically updated'=>'[%s] Some themes were automatically updated','Howdy! Some plugins have automatically updated to their latest versions on your site at %s. No further action is needed on your part.'=>'Hi! Some plugins have automatically updated to their latest versions on your site at %s. No further action is needed on your part.','[%s] Some plugins were automatically updated'=>'[%s] Some plugins were automatically updated','Howdy! Some plugins and themes have automatically updated to their latest versions on your site at %s. No further action is needed on your part.'=>'Hi! Some plugins and themes have automatically updated to their latest versions on your site at %s. No further action is needed on your part.','[%s] Some plugins and themes have automatically updated'=>'[%s] Some plugins and themes have automatically updated','Move %s box down'=>'Move %s box down','Move %s box up'=>'Move %s box up','commentNot spam'=>'Not spam','PHP Sessions'=>'PHP Sessions','A PHP session was created by a %1$s function call. This interferes with REST API and loopback requests. The session should be closed by %2$s before making any HTTP requests.'=>'A PHP session was created by a %1$s function call. This interferes with REST API and loopback requests. The session should be closed by %2$s before making any HTTP requests.','An active PHP session was detected'=>'An active PHP session was detected','PHP sessions created by a %1$s function call may interfere with REST API and loopback requests. An active session should be closed by %2$s before making any HTTP requests.'=>'PHP sessions created by a %1$s function call may interfere with REST API and loopback requests. An active session should be closed by %2$s before making any HTTP requests.','No PHP sessions detected'=>'No PHP sessions detected','Extended view'=>'Extended view','Compact view'=>'Compact view','Error: Passwords do not match. Please enter the same password in both password fields.'=>'Error: Passwords do not match. Please enter the same password in both password fields.','post action/button labelSchedule'=>'Schedule','No plugins found. Try a different search.'=>'No plugins found. Try a different search.','Automatic update scheduled in %s.'=>'Automatic update scheduled in %s.','Automatic update overdue by %s. There may be a problem with WP-Cron.'=>'Automatic update overdue by %s. There may be a problem with WP-Cron.','Automatic update not scheduled. There may be a problem with WP-Cron.'=>'Automatic update not scheduled. There may be a problem with WP-Cron.','You are updating a plugin. Be sure to back up your database and files first.'=>'You are updating a plugin. Be sure to back up your database and files first.','You are uploading an older version of a current plugin. You can continue to install the older version, but be sure to back up your database and files first.'=>'You are uploading an older version of a current plugin. You can continue to install the older version, but be sure to back up your database and files first.','Your WordPress version is %1$s, however the uploaded plugin requires %2$s.'=>'Your WordPress version is %1$s, however the uploaded plugin requires %2$s.','The PHP version on your server is %1$s, however the uploaded plugin requires %2$s.'=>'The PHP version on your server is %1$s, however the uploaded plugin requires %2$s.','The plugin cannot be updated due to the following:'=>'The plugin cannot be updated due to the following:','Plugin name'=>'Plugin name','Theme downgraded successfully.'=>'Theme downgraded successfully.','Theme downgrade failed.'=>'Theme downgrade failed.','Downgrading the theme…'=>'Downgrading the theme…','Updating the theme…'=>'Updating the theme…','The active theme has the following error: "%s".'=>'The active theme has the following error: "%s".','Enable auto-updates'=>'Enable auto-updates','Disable auto-updates'=>'Disable auto-updates','Disable Auto-updates'=>'Disable Auto-updates','Enable Auto-updates'=>'Enable Auto-updates','Auto-updates Disabled (%s)'=>'Auto-updates Disabled (%s)' . "\0" . 'Auto-updates Disabled (%s)','Auto-updates Enabled (%s)'=>'Auto-updates Enabled (%s)' . "\0" . 'Auto-updates Enabled (%s)','Automatic Updates'=>'Automatic Updates','No plugins are currently available.'=>'No plugins are currently available.','Restore original image'=>'Restore original image','The uploaded file has expired. Please go back and upload it again.'=>'The uploaded file has expired. Please go back and upload it again.','Cancel and go back'=>'Cancel and go back','themeReplace active with uploaded'=>'Replace active with uploaded','You are updating a theme. Be sure to back up your database and files first.'=>'You are updating a theme. Be sure to back up your database and files first.','You are uploading an older version of the active theme. You can continue to install the older version, but be sure to back up your database and files first.'=>'You are uploading an older version of the active theme. You can continue to install the older version, but be sure to back up your database and files first.','Your WordPress version is %1$s, however the uploaded theme requires %2$s.'=>'Your WordPress version is %1$s, however the uploaded theme requires %2$s.','The PHP version on your server is %1$s, however the uploaded theme requires %2$s.'=>'The PHP version on your server is %1$s, however the uploaded theme requires %2$s.','The theme cannot be updated due to the following:'=>'The theme cannot be updated due to the following:','(not found)'=>'(not found)','Required PHP version'=>'Required PHP version','Required WordPress version'=>'Required WordPress version','Theme name'=>'Theme name','themeCannot Install'=>'Cannot Install','Block Editor Patterns'=>'Block Editor Patterns','Plugin downgraded successfully.'=>'Plugin downgraded successfully.','Plugin downgrade failed.'=>'Plugin downgrade failed.','Downgrading the plugin…'=>'Downgrading the plugin…','Updating the plugin…'=>'Updating the plugin…','Could not remove the current plugin.'=>'Could not remove the current plugin.','Removing the current plugin…'=>'Removing the current plugin…','Auto-update'=>'Auto-update','Auto-updates disabled'=>'Auto-updates disabled','Auto-updates enabled'=>'Auto-updates enabled','Are pretty permalinks supported?'=>'Are pretty permalinks supported?','PHP memory limit (only for admin screens)'=>'PHP memory limit (only for admin screens)','Is this site discouraging search engines?'=>'Is this site discouraging search engines?','Wide Blocks'=>'Wide Blocks','Block Editor Styles'=>'Block Editor Styles','Spam'=>'Spam','Unable to write to %s file.'=>'Unable to write to %s file.','Error: The %s options page is not in the allowed options list.'=>'Error: The %s options page is not in the allowed options list.','Error:'=>'Error:','You should update your %s file now.'=>'You should update your %s file now.','This localized version contains both the translation and various other localization fixes.'=>'This localised version contains both the translation and various other localisation fixes.','Take a look at the %1$d item on the Site Health screen.'=>'Take a look at the %1$d item on the Site Health screen.' . "\0" . 'Take a look at the %1$d items on the Site Health screen.','Your site’s health is looking good, but there are still some things you can do to improve its performance and security.'=>'Your site’s health is looking good, but there are still some things you can do to improve its performance and security.','Great job! Your site currently passes all site health checks.'=>'Great job! Your site currently passes all site health checks.','Your site has critical issues that should be addressed as soon as possible to improve its performance and security.'=>'Your site has critical issues that should be addressed as soon as possible to improve its performance and security.','Site health checks will automatically run periodically to gather information about your site. You can also visit the Site Health screen to gather information about your site now.'=>'Site health checks will automatically run periodically to gather information about your site. You can also visit the Site Health screen to gather information about your site now.','No information yet…'=>'No information yet…','The uploaded file exceeds the %1$s directive in %2$s.'=>'The uploaded file exceeds the %1$s directive in %2$s.','No comments found in Trash.'=>'No comments found in Bin.','File is empty. Please upload something more substantial. This error could also be caused by uploads being disabled in your %1$s file or by %2$s being defined as smaller than %3$s in %1$s.'=>'File is empty. Please upload something more substantial. This error could also be caused by uploads being disabled in your %1$s file or by %2$s being defined as smaller than %3$s in %1$s.','A test is unavailable'=>'A test is unavailable','Error: %1$s (%2$s)'=>'Error: %1$s (%2$s)','Your site is running on an older version of PHP (%s), which should be updated'=>'Your site is running on an older version of PHP (%s), which should be updated','Your site is running on an older version of PHP (%s)'=>'Your site is running on an older version of PHP (%s)','Your site is running a recommended version of PHP (%s)'=>'Your site is running a recommended version of PHP (%s)','No media files found in Trash.'=>'No media files found in Bin.','%1$s %2$d – %3$s %4$d, %5$d'=>'%1$s %2$d – %3$s %4$d, %5$d','upcoming events year formatY'=>'Y','upcoming events day formatj'=>'j','%1$s %2$d–%3$d, %4$d'=>'%1$s %2$d–%3$d, %4$d','upcoming events month formatF'=>'F','Resend confirmation requests'=>'Resend confirmation requests','Delete requests'=>'Delete requests','Table prefix'=>'Table prefix','PHP Default Timezone'=>'PHP Default Time Zone','PHP default timezone was changed after WordPress loading by a %s function call. This interferes with correct calculations of dates and times.'=>'PHP default time zone was changed after WordPress loading by a %s function call. This interferes with correct calculations of dates and times.','PHP default timezone is invalid'=>'PHP default time zone is invalid','PHP default timezone was configured by WordPress on loading. This is necessary for correct calculations of dates and times.'=>'PHP default time zone was configured by WordPress on loading. This is necessary for correct calculations of dates and times.','PHP default timezone is valid'=>'PHP default time zone is valid','The seventh parameter passed to %s should be numeric representing menu position.'=>'The seventh parameter passed to %s should be numeric representing menu position.','The update cannot be installed because WordPress %1$s requires the %2$s PHP extension.'=>'The update cannot be installed because WordPress %1$s requires the %2$s PHP extension.','https://wordpress.org/about/stats/'=>'https://en-gb.wordpress.org/about/stats/','Documentation on Export'=>'Documentation on Export','Documentation on Installing Plugins'=>'Documentation on Installing Plugins','Documentation on Managing Pages'=>'Documentation on Managing Pages','Documentation on Managing Posts'=>'Documentation on Managing Posts','Documentation on Discussion Settings'=>'Documentation on Discussion Settings','Documentation on Adding New Themes'=>'Documentation on Adding New Themes','Documentation on Uploading Media Files'=>'Documentation on Uploading Media Files','Descriptions of Roles and Capabilities'=>'Descriptions of Roles and Capabilities','Documentation on Managing Users'=>'Documentation on Managing Users','Documentation on User Profiles'=>'Documentation on User Profiles','Documentation on Media Settings'=>'Documentation on Media Settings','Documentation on Import'=>'Documentation on Import','Documentation on Tools'=>'Documentation on Tools','This page allows direct access to your site settings. You can break things here. Please be cautious!'=>'This page allows direct access to your site settings. You can break things here. Please be cautious!','Format — Post Formats designate how your theme will display a specific post. For example, you could have a standard blog post with a title and paragraphs, or a short aside that omits the title and contains a short text blurb. Your theme could enable all or some of 10 possible formats. Learn more about each post format.'=>'Format – Post Formats designate how your theme will display a specific post. For example, you could have a standard blog post with a title and paragraphs, or a short aside that omits the title and contains a short text blurb. Your theme could enable all or some of ten possible formats. Learn more about each post format.','Documentation on Editing Pages'=>'Documentation on Editing Pages','Documentation on Adding New Pages'=>'Documentation on Adding New Pages','Documentation on Media Library'=>'Documentation on Media Library','Revisions Management'=>'Revisions Management','Documentation on Edit Media'=>'Documentation on Edit Media','Documentation on Managing Plugins'=>'Documentation on Managing Plugins','Documentation on Dashboard'=>'Documentation on Dashboard','Documentation on Adding New Users'=>'Documentation on Adding New Users','This page can show you every detail about the configuration of your WordPress website. For any improvements that could be made, see the Site Health Status page.'=>'This page can show you every detail about the configuration of your WordPress website. For any improvements that could be made, see the Site Health Status page.','Results are still loading…'=>'Results are still loading…','Documentation on Using Permalinks'=>'Documentation on Using Permalinks','Documentation on Permalinks Settings'=>'Documentation on Permalinks Settings','Documentation on Updating WordPress'=>'Documentation on Updating WordPress','Documentation on Menus'=>'Documentation on Menus','Documentation on Writing Plugins'=>'Documentation on Writing Plugins','Documentation on Template Tags'=>'Documentation on Template Tags','Documentation on Using Themes'=>'Documentation on Using Themes','Documentation on Theme Development'=>'Documentation on Theme Development','Documentation on Comments'=>'Documentation on Comments','Universal time is %s.'=>'Universal time is %s.','Choose either a city in the same timezone as you or a %s (Coordinated Universal Time) time offset.'=>'Choose either a city in the same time zone as you or a %s (Coordinated Universal Time) time offset.','Administration Email Address'=>'Administration Email Address','Documentation on General Settings'=>'Documentation on General Settings','You need to make this file writable before you can save your changes. See Changing File Permissions for more information.'=>'You need to make this file writable before you can save your changes. See Changing File Permissions for more information.','Upload failed. Please reload and try again.'=>'Upload failed. Please reload and try again.','Data erasure has failed.'=>'Data erasure has failed.','Erasure completed.'=>'Erasure completed.','The attached file cannot be found.'=>'The attached file cannot be found.','page labelPrivacy Policy Page'=>'Privacy Policy Page','page labelPosts Page'=>'Posts Page','page labelFront Page'=>'Front Page','post statusSticky'=>'Sticky','post statusCustomization Draft'=>'Customisation Draft','post statusPassword protected'=>'Password protected','The scheduled event, %s, is late to run. Your site still works, but this may indicate that scheduling posts or automated updates may not work as intended.'=>'The scheduled event, %s, is late to run. Your site still works, but this may indicate that scheduling posts or automated updates may not work as intended.','A scheduled event is late'=>'A scheduled event is late','An HTTPS connection is a more secure way of browsing the web. Many services now have HTTPS as a requirement. HTTPS allows you to take advantage of new features that can increase site speed, improve search rankings, and gain the trust of your visitors by helping to protect their online privacy.'=>'An HTTPS connection is a more secure way of browsing the web. Many services now have HTTPS as a requirement. HTTPS allows you to take advantage of new features that can increase site speed, improve search rankings, and gain the trust of your visitors by helping to protect their online privacy.','Your version of WordPress (%s) is up to date'=>'Your version of WordPress (%s) is up to date','https://wordpress.org/documentation/article/introduction-to-blogging/#managing-comments'=>'https://wordpress.org/documentation/article/introduction-to-blogging/#managing-comments','https://wordpress.org/documentation/article/introduction-to-blogging/#comments'=>'https://wordpress.org/documentation/article/introduction-to-blogging/#comments','https://wordpress.org/documentation/article/block-themes/'=>'https://wordpress.org/documentation/article/block-themes/','Publish on: %s'=>'Publish on: %s','Schedule for: %s'=>'Schedule for: %s','Published on: %s'=>'Published on: %s','Scheduled for: %s'=>'Scheduled for: %s','publish box time formatH:i'=>'H:i','publish box date formatM j, Y'=>'j F Y','The directives (lines) between "BEGIN %1$s" and "END %1$s" are +###SITEURL###','Where your data is sent'=>'Where your data is sent','Copy “%s” URL to clipboard'=>'Copy “%s” URL to clipboard','Some data that describes the error your site encountered has been put together.'=>'Some data that describes the error your site encountered has been put together.','An attempt was made, but your site could not be updated automatically.'=>'An attempt was made, but your site could not be updated automatically.','The update cannot be installed because some files could not be copied. This is usually due to inconsistent file permissions.'=>'The update cannot be installed because some files could not be copied. This is usually due to inconsistent file permissions.','Media — A list of URLs for media files the user uploads.'=>'Media — A list of URLs for media files the user uploads.','Community Events Location — The IP Address of the user, which populates the Upcoming Community Events dashboard widget with relevant information.'=>'Community Events Location — The IP Address of the user, which populates the Upcoming Community Events dashboard widget with relevant information.','WordPress collects (but never publishes) a limited amount of data from registered users who have logged in to the site. Generally, these users are people who contribute to the site in some way -- content, store management, and so on. With rare exceptions, these users do not include occasional visitors who might have registered to comment on articles or buy products. The data WordPress retains can include:'=>'WordPress collects (but never publishes) a limited amount of data from registered users who have logged in to the site. Generally, these users are people who contribute to the site in some way -- content, store management, and so on. With rare exceptions, these users do not include occasional visitors who might have registered to comment on articles or buy products. The data WordPress retains can include:','Note: Since this tool only gathers data from WordPress and participating plugins, you may need to do more to comply with export requests. For example, you should also send the requester some of the data collected from or stored with the 3rd party services your organization uses.'=>'Note: Since this tool only gathers data from WordPress and participating plugins, you may need to do more to comply with export requests. For example, you should also send the requester some of the data collected from or stored with the 3rd party services your organisation uses.','Privacy Laws around the world require businesses and online services to provide an export of some of the data they collect about an individual, and to deliver that export on request. The rights those laws enshrine are sometimes called the "Right of Data Portability". It allows individuals to obtain and reuse their personal data for their own purposes across different services. It allows them to move, copy or transfer personal data easily from one IT environment to another.'=>'Privacy Laws around the world require businesses and online services to provide an export of some of the data they collect about an individual, and to deliver that export on request. The rights those laws enshrine are sometimes called the "Right of Data Portability". It allows individuals to obtain and reuse their personal data for their own purposes across different services. It allows them to move, copy, or transfer personal data easily from one IT environment to another.','Comments — WordPress does not delete comments. The software does anonymize (but, again, never publishes) the associated Email Address, IP Address, and User Agent (Browser/OS).'=>'Comments — WordPress does not delete comments. The software does anonymise (but, again, never publishes) the associated Email Address, IP Address, and User Agent (Browser/OS).','WordPress collects (but never publishes) a limited amount of data from logged-in users but then deletes it or anonymizes it. That data can include:'=>'WordPress collects (but never publishes) a limited amount of data from logged-in users but then deletes it or anonymises it. That data can include:','Note: As this tool only gathers data from WordPress and participating plugins, you may need to do more to comply with erasure requests. For example, you are also responsible for ensuring that data collected by or stored with the 3rd party services your organization uses gets deleted.'=>'Note: As this tool only gathers data from WordPress and participating plugins, you may need to do more to comply with erasure requests. For example, you are also responsible for ensuring that data collected by or stored with the 3rd party services your organisation uses gets deleted.','Privacy Laws around the world require businesses and online services to delete, anonymize, or forget the data they collect about an individual. The rights those laws enshrine are sometimes called the "Right to be Forgotten".'=>'Privacy Laws around the world require businesses and online services to delete, anonymise, or forget the data they collect about an individual. The rights those laws enshrine are sometimes called the "Right to be Forgotten".','This screen is where you manage requests to erase personal data.'=>'This screen is where you manage requests to erase personal data.','This post is being backed up in your browser, just in case.'=>'This post is being backed up in your browser, just in case.','This will grant access to the %2$s site on the network as you have Super Admin rights.'=>'This will grant access to the %2$s site on the network as you have Super Admin rights.' . "\0" . 'This will grant access to all %2$s sites on the network as you have Super Admin rights.','Learn about block themes'=>'Learn about block themes','There is a new kind of WordPress theme, called a block theme, that lets you build the site you’ve always wanted — with blocks and styles.'=>'There is a new kind of WordPress theme, called a block theme, that lets you build the site you’ve always wanted — with blocks and styles.','Discover a new way to build your site.'=>'Discover a new way to build your site.','Edit styles'=>'Edit styles','Tweak your site, or give it a whole new look! Get creative — how about a new color palette or font?'=>'Tweak your site, or give it a whole new look! Get creative – how about a new colour palette or font?','Switch up your site’s look & feel with Styles'=>'Switch up your site’s look & feel with Styles','Open the Customizer'=>'Open the Customiser','Configure your site’s logo, header, menus, and more in the Customizer.'=>'Configure your site’s logo, header, menus, and more in the Customiser.','Start Customizing'=>'Start customising','Open site editor'=>'Open site editor','Design everything on your site — from the header down to the footer, all using blocks and patterns.'=>'Design everything on your site – from the header down to the footer, all using blocks and patterns.','Customize your entire site with block themes'=>'Customise your entire site with block themes','Add a new page'=>'Add a new page','Block patterns are pre-configured block layouts. Use them to get inspired or create new pages in a flash.'=>'Block patterns are pre-configured block layouts. Use them to get inspired or create new pages in a flash.','Author rich content with blocks and patterns'=>'Author rich content with blocks and patterns','Learn more about the %s version.'=>'Learn more about the %s version.','WordPress is free and open source software'=>'WordPress is free and open-source software','Plugin File Editor'=>'Plugin file editor','Theme File Editor'=>'Theme file editor','If this is a development website, you can set the environment type accordingly to enable application passwords.'=>'If this is a development website, you can set the environment type accordingly to enable application passwords.','The application password feature requires HTTPS, which is not enabled on this site.'=>'The application password feature requires HTTPS, which is not enabled on this site.','g:i a T'=>'H:i T','Documentation on Editing Themes'=>'Documentation on Editing Themes','Documentation on Site Health tool'=>'Documentation on Site Health tool','In the Info tab, you will find all the details about the configuration of your WordPress site, server, and database. There is also an export feature that allows you to copy all of the information about your site to the clipboard, to help solve problems on your site when obtaining support.'=>'In the Info tab, you will find all the details about the configuration of your WordPress site, server, and database. There is also an export feature that allows you to copy all of the information about your site to the clipboard, to help solve problems on your site when obtaining support.','In the Status tab, you can see critical information about your WordPress configuration, along with anything else that requires your attention.'=>'In the status tab, you can see critical information about your WordPress configuration, along with anything else that requires your attention.','This screen allows you to obtain a health diagnosis of your site, and displays an overall rating of the status of your installation.'=>'This screen allows you to obtain a health diagnosis of your site, and displays an overall rating of the status of your installation.','Documentation on Privacy Settings'=>'Documentation on Privacy Settings','This screen includes suggestions to help you write your own privacy policy. However, it is your responsibility to use these resources correctly, to provide the information required by your privacy policy, and to keep this information current and accurate.'=>'This screen includes suggestions to help you write your own privacy policy. However, it is your responsibility to use these resources correctly, to provide the information required by your privacy policy, and to keep this information current and accurate.','The Privacy screen lets you either build a new privacy-policy page or choose one you already have to show.'=>'The privacy screen lets you either build a new privacy policy page or choose one you already have to show.','Individual posts may override these settings. Changes here will only be applied to new posts.'=>'Individual posts may override these settings. Changes here will only be applied to new posts.','Menu item moved to the top'=>'Menu item moved to the top','Menu item removed'=>'Menu item removed','The Dashboard is the first place you will come to every time you log into your site. It is where you will find all your WordPress tools. If you need help, just click the “Help” tab above the screen title.'=>'The dashboard is the first place you will come to, every time you log into your site. It is where you will find all your WordPress tools. If you need help, just click the “Help” tab above the screen title.','Welcome to your WordPress Dashboard!'=>'Welcome to your WordPress dashboard!','The application ID must be a UUID.'=>'The application ID must be a UUID.','Select location'=>'Select location','Visit plugin site for %s'=>'Visit plugin site for %s','pluginCannot Activate'=>'Cannot activate','Max connections number'=>'Maximum connections number','Max allowed packet size'=>'Maximum allowed packet size','Your website appears to use Basic Authentication, which is not currently compatible with application passwords.'=>'Your website appears to use basic authentication, which is not currently compatible with application passwords.','%1$s “%2$s”'=>'%1$s “%2$s”','Template Editing'=>'Template Editing','WordPress comes with some awesome, worldview-changing rights courtesy of its license, the GPL.'=>'WordPress comes with some awesome, worldview-changing rights courtesy of its licence, the GPL.','Want to see your name in lights on this page?'=>'Want to see your name in lights on this page?','Get involved in WordPress.'=>'Get involved in WordPress.','WordPress is created by a worldwide team of passionate individuals.'=>'WordPress is created by a worldwide team of passionate individuals.','%s plugin deactivated during WordPress upgrade.'=>'%s plugin deactivated during WordPress upgrade.','%1$s %2$s was deactivated due to incompatibility with WordPress %3$s.'=>'%1$s %2$s was deactivated due to incompatibility with WordPress %3$s.','%1$s %2$s was deactivated due to incompatibility with WordPress %3$s, please upgrade to %1$s %4$s or later.'=>'%1$s %2$s was deactivated due to incompatibility with WordPress %3$s, please upgrade to %1$s %4$s or later.','The Four Freedoms'=>'The Four Freedoms','themeDelete %s'=>'Delete %s','themeLive Preview %s'=>'Live Preview %s','themeCustomize %s'=>'Customise %s','themeView Theme Details for %s'=>'View theme details for %s','Toggle extra menu items'=>'Toggle extra menu items','Site Health - %s'=>'Site health – %s','You need to make the file %1$s writable before you can save your changes. See Changing File Permissions for more information.'=>'You need to make the file %1$s writable before you can save your changes. See Changing file permissions for more information.','Rewrite rules:'=>'Rewrite rules:','List of menu items selected for deletion:'=>'List of menu items selected for deletion:','Remove Selected Items'=>'Remove selected items','Bulk Select'=>'Bulk select','Deleted menu item: %s.'=>'Deleted menu item: %s.','item %s'=>'item %s','Themes %s'=>'Themes %s','Unable to encode the personal data for export. Error: %s'=>'Unable to encode the personal data for export. Error: %s','The %s post meta must be an array.'=>'The %s post meta must be an array.','Your site’s health is looking good, but there is still one thing you can do to improve its performance and security.'=>'Your site’s health is looking good, but there is still one thing you can do to improve its performance and security.','Your site has a critical issue that should be addressed as soon as possible to improve its performance and security.'=>'Your site has a critical issue that should be addressed as soon as possible to improve its performance and security.','Learn how to browse happy'=>'Learn how to browse happy','Internet Explorer does not give you the best WordPress experience. Switch to Microsoft Edge, or another more modern browser to get the most from your site.'=>'Internet Explorer does not give you the best WordPress experience. Switch to Microsoft Edge, or another more modern browser to get the most from your site.','GD supported file formats'=>'GD supported file formats','Unable to determine'=>'Unable to determine','ImageMagick supported file formats'=>'ImageMagick-supported file formats','Imagick version'=>'Imagick version','themeUploaded'=>'Uploaded','pluginReplace current with uploaded'=>'Replace current with uploaded','pluginUploaded'=>'Uploaded','pluginCurrent'=>'Current','Please activate the Link Manager plugin to use the link manager.'=>'Please activate the Link Manager plugin to use the link manager.','Create a new Privacy Policy page'=>'Create a new Privacy Policy page','Send personal data export confirmation email.'=>'Send personal data export confirmation email.','This tool helps site owners comply with local laws and regulations by exporting known data for a given user in a .zip file.'=>'This tool helps site owners comply with local laws and regulations by exporting known data for a given user in a .zip file.','Documentation on Export Personal Data'=>'Documentation on Export Personal Data','Many plugins may collect or store personal data either in the WordPress database or remotely. Any Export Personal Data request should include data from plugins as well.'=>'Many plugins may collect or store personal data, either in the WordPress database or remotely. Any Export Personal Data request should include data from plugins as well.','If you are not sure, check the plugin documentation or contact the plugin author to see if the plugin collects data and if it supports the Data Exporter tool. This information may be available in the Privacy Policy Guide.'=>'If you are not sure, check the plugin documentation, or contact the plugin author to see if the plugin collects data and if it supports the Data Exporter tool. This information may be available in the Privacy Policy Guide.','Comments — For user comments, Email Address, IP Address, User Agent (Browser/OS), Date/Time, Comment Content, and Content URL.'=>'Comments — For user comments, Email Address, IP Address, User Agent (Browser/OS), Date/Time, Comment Content, and Content URL.','This screen is where you manage requests for an export of personal data.'=>'This screen is where you manage requests for an export of personal data.','Site URLs could not be switched to HTTPS.'=>'Site URLs could not be switched to HTTPS.','Site URLs switched to HTTPS.'=>'Site URLs switched to HTTPS.','It looks like HTTPS is not supported for your website at this point.'=>'It looks like HTTPS is not supported for your website, at this point.','Sorry, you are not allowed to update this site to HTTPS.'=>'Sorry, you are not allowed to update this site to HTTPS.','Password reset links sent to %s user.'=>'Password reset links sent to %s user.' . "\0" . 'Password reset links sent to %s users.','Password reset link sent.'=>'Password reset link sent.','Send %s a link to reset their password. This will not change their password, nor will it force a change.'=>'Send %s a link to reset their password. This will not change their password, nor will it force a change.','Send Reset Link'=>'Send Reset Link','Policies'=>'Policies','The Privacy Settings require JavaScript.'=>'The Privacy Settings require JavaScript.','Privacy SettingsPolicy Guide'=>'Policy Guide','Privacy SettingsSettings'=>'Settings','Re-install version %s'=>'Re-install version %s','Update to latest %s nightly'=>'Update to latest %s nightly','Send personal data erasure confirmation email.'=>'Send personal data erasure confirmation email.','Confirmation email'=>'Confirmation email','This tool helps site owners comply with local laws and regulations by deleting or anonymizing known data for a given user.'=>'This tool helps site owners comply with local laws and regulations by deleting or anonymising known data for a given user.','Documentation on Erase Personal Data'=>'Documentation on Erase Personal Data','Many plugins may collect or store personal data either in the WordPress database or remotely. Any Erase Personal Data request should delete data from plugins as well.'=>'Many plugins may collect or store personal data, either in the WordPress database or remotely. Any Erase Personal Data request should delete data from plugins as well.','Plugin Data'=>'Plugin Data','If you are not sure, check the plugin documentation or contact the plugin author to see if the plugin collects data and if it supports the Data Eraser tool. This information may be available in the Privacy Policy Guide.'=>'If you are not sure, check the plugin documentation or contact the plugin author to see if the plugin collects data and if it supports the Data Eraser tool. This information may be available in the Privacy Policy Guide.','Media — A list of URLs for all media file uploads made by the user.'=>'Media – a list of URLs for all media file uploads made by the user.','Session Tokens — User login information, IP Addresses, Expiration Date, User Agent (Browser/OS), and Last Login.'=>'Session Tokens – user login information, IP Addresses, Expiration Date, User Agent (Browser/OS), and Last Login.','Community Events Location — The IP Address of the user which is used for the Upcoming Community Events shown in the dashboard widget.'=>'Community Events Location – the IP Address of the user which is used for the Upcoming Community Events shown in the dashboard widget.','Profile Information — user email address, username, display name, nickname, first name, last name, description/bio, and registration date.'=>'Profile Information – user email address, username, display name, nickname, first name, last name, description/bio, and registration date.','Default Data'=>'Default Data','The tool associates data stored in WordPress with a supplied email address, including profile data and comments.'=>'The tool associates data stored in WordPress with a supplied email address, including profile data and comments.','https://make.wordpress.org/community/organize-event-landing-page/'=>'https://make.wordpress.org/community/organize-event-landing-page/','Want more events? Help organize the next one!'=>'Want more events? Help organise the next one!','A password reset link was emailed to %s.'=>'A password reset link was emailed to %s.','Cannot send password reset, permission denied.'=>'Cannot send password reset, permission denied.','The setting for %1$s is currently configured as 0, this could cause some problems when trying to upload files through plugin or theme features that rely on various upload methods. It is recommended to configure this setting to a fixed value, ideally matching the value of %2$s, as some upload methods read the value 0 as either unlimited, or disabled.'=>'The setting for %1$s is currently configured as 0, this could cause some problems when trying to upload files through plugin or theme features that rely on various upload methods. It is recommended to configure this setting to a fixed value, ideally matching the value of %2$s, as some upload methods read the value 0 as either unlimited, or disabled.','Talk to your web host about supporting HTTPS for your website.'=>'Talk to your web host about supporting HTTPS for your website.','Update your site to use HTTPS'=>'Update your site to use HTTPS','However, your WordPress Address is currently controlled by a PHP constant and therefore cannot be updated. You need to edit your %1$s and remove or update the definitions of %2$s and %3$s.'=>'However, your WordPress Address is currently controlled by a PHP constant and therefore cannot be updated. You need to edit your %1$s and remove or update the definitions of %2$s and %3$s.','HTTPS is already supported for your website.'=>'HTTPS is already supported for your website.','Your WordPress Address and Site Address are not set up to use HTTPS.'=>'Your WordPress Address and Site Address are not set up to use HTTPS.','You are accessing this website using HTTPS, but your WordPress Address and Site Address are not set up to use HTTPS by default.'=>'You are accessing this website using HTTPS, but your WordPress Address and Site Address are not set up to use HTTPS by default.','Your Site Address is not set up to use HTTPS.'=>'Your Site Address is not set up to use HTTPS.','Learn more about debugging in WordPress.'=>'Learn more about debugging in WordPress.','Added'=>'Added','Send password reset'=>'Send password reset','Contact information'=>'Contact information','Copy suggested policy text to clipboard'=>'Copy suggested policy text to clipboard','Directory listing failed.'=>'Directory listing failed.','Search Results'=>'Search Results','Invalid request ID when processing personal data to erase.'=>'Invalid request ID when processing personal data to erase.','Invalid request ID when merging personal data to export.'=>'Invalid request ID when merging personal data to export.','Unable to archive the personal data export file (HTML format).'=>'Unable to archive the personal data export file (HTML format).','Unable to archive the personal data export file (JSON format).'=>'Unable to archive the personal data export file (JSON format).','Unable to open personal data export (HTML report) for writing.'=>'Unable to open personal data export (HTML report) for writing.','Unable to create personal data export folder.'=>'Unable to create personal data export folder.','Request added successfully.'=>'Request added successfully.','Invalid personal data action.'=>'Invalid personal data action.','Unable to initiate confirmation for personal data request.'=>'Unable to initiate confirmation for personal data request.','Your site is running on an outdated version of PHP (%s), which should be updated.'=>'Your site is running on an outdated version of PHP (%s), which should be updated.','PHP Update Recommended'=>'PHP Update Recommended','Your website appears to use Basic Authentication, which is not currently compatible with Application Passwords.'=>'Your website appears to use Basic Authentication, which is not currently compatible with Application Passwords.','https://developer.wordpress.org/rest-api/frequently-asked-questions/#why-is-authentication-not-working'=>'https://developer.wordpress.org/rest-api/frequently-asked-questions/#why-is-authentication-not-working','This site appears to be under version control. Automatic updates are disabled.'=>'This site appears to be under version control. Automatic updates are disabled.','You are using a development version of WordPress.'=>'You are using a development version of WordPress.','You can update to the latest nightly build manually:'=>'You can update to the latest nightly build manually:','Enable automatic updates for all new versions of WordPress.'=>'Enable automatic updates for all new versions of WordPress.','Switch to automatic updates for maintenance and security releases only.'=>'Switch to automatic updates for maintenance and security releases only.','Current version: %s'=>'Current version: %s','This site will not receive automatic updates for new versions of WordPress.'=>'This site will not receive automatic updates for new versions of WordPress.','This site is automatically kept up to date with maintenance and security releases of WordPress only.'=>'This site is automatically kept up to date with maintenance and security releases of WordPress only.','This site is automatically kept up to date with each new version of WordPress.'=>'This site is automatically kept up to date with each new version of WordPress.','WordPress will only receive automatic security and maintenance releases from now on.'=>'WordPress will only receive automatic security and maintenance releases from now on.','Automatic updates for all WordPress versions have been enabled. Thank you!'=>'Automatic updates for all WordPress versions have been enabled. Thank you!','Site Health Status — Informs you of any potential issues that should be addressed to improve the performance or security of your website.'=>'Site Health Status – Informs you of any potential issues that should be addressed to improve the performance or security of your website.','Your new password for %s is:'=>'Your new password for %s is:','Add Application Password'=>'Add Application Password','Required to create an Application Password, but not to update the user.'=>'Required to create an Application Password, but not to update the user.','Go to Updates'=>'Go to Updates','← Go to Users'=>'← Go to Users','← Go to editor'=>'← Go to editor','Go to Plugin Installer'=>'Go to Plugin Installer','Go to Importers'=>'Go to Importers','Go to Theme Installer'=>'Go to Theme Installer','Go to top'=>'Go to top','%s could not be located. Please try another nearby city. For example: Kansas City; Springfield; Portland.'=>'%s could not be located. Please try another nearby city. For example: Kansas City; Springfield; Portland.','You will be returned to the WordPress Dashboard, and no changes will be made.'=>'You will be returned to the WordPress Dashboard, and no changes will be made.','No, I do not approve of this connection'=>'No, I do not approve of this connection','You will be given a password to manually enter into the application in question.'=>'You will be given a password to manually enter into the application in question.','You will be sent to %s'=>'You will be sent to %s','Yes, I approve of this connection'=>'Yes, I approve of this connection','This will grant access to the %2$s site in this installation that you have permissions on.'=>'This will grant access to the %2$s site in this installation on which you have permissions.' . "\0" . 'This will grant access to all %2$s sites in this installation on which you have permissions.','Would you like to give this application access to your account? You should only do this if you trust the application in question.'=>'Would you like to give this application access to your account? You should only do this if you trust the application in question.','Would you like to give the application identifying itself as %s access to your account? You should only do this if you trust the application in question.'=>'Would you like to give the application identifying itself as %s access to your account? You should only do this if you trust the application in question.','An application would like to connect to your account.'=>'An application would like to connect to your account.','Cannot Authorize Application'=>'Cannot Authorise Application','The Authorize Application request is not allowed.'=>'The Authorise Application request is not allowed.','Authorize Application'=>'Authorise Application','Be sure to save this in a safe location. You will not be able to retrieve it.'=>'Be sure to save this in a safe location. You will not be able to retrieve it.','New Application Password Name'=>'New Application Password Name','Application passwords grant access to the %2$s site in this installation that you have permissions on.'=>'Application passwords grant access to the %2$s site in this installation on which you have permissions.' . "\0" . 'Application passwords grant access to all %2$s sites in this installation on which you have permissions.','Application passwords allow authentication via non-interactive systems, such as XML-RPC or the REST API, without providing your actual password. Application passwords can be easily revoked. They cannot be used for traditional logins to your website.'=>'Application passwords allow authentication via non-interactive systems, such as XML-RPC or the REST API, without providing your actual password. Application passwords can be easily revoked. They cannot be used for traditional logins to your website.','Application Passwords'=>'Application Passwords','Type the new password again.'=>'Type the new password again.','Set New Password'=>'Set New Password','Type the password again.'=>'Type the password again.','You can update from WordPress %1$s to WordPress %3$s manually:'=>'You can update from WordPress %1$s to WordPress %3$s manually:','Revoke all application passwords'=>'Revoke all application passwords','Revoke "%s"'=>'Revoke "%s"','Revoke'=>'Revoke','Last IP'=>'Last IP','Last Used'=>'Last Used','The Site Health check for %1$s has been replaced with %2$s.'=>'The Site Health check for %1$s has been replaced with %2$s.','Erase personal data'=>'Erase personal data','- %1$s (from version %2$s to %3$s)'=>'– %1$s (from version %2$s to %3$s)','Current Header Video'=>'Current Header Video','Authorization header'=>'Authorisation header','Learn how to configure the Authorization header.'=>'Learn how to configure the Authorisation header.','Flush permalinks'=>'Flush permalinks','The authorization header is invalid'=>'The authorisation header is invalid','The authorization header is missing'=>'The authorisation header is missing','The Authorization header is working as expected'=>'The authorisation header is working as expected','Some screen elements can be shown or hidden by using the checkboxes.'=>'Some screen elements can be shown or hidden by using the checkboxes.','Screen elements'=>'Screen elements','The URL must be served over a secure connection.'=>'The URL must be served over a secure connection.','If you request a password reset, your IP address will be included in the reset email.'=>'If you request a password reset, your IP address will be included in the reset email.','No plugins found for: %s.'=>'No plugins found for: %s.','Complete request'=>'Complete request','Mark export request for “%s” as completed.'=>'Mark export request for “%s” as completed.','%d request deleted successfully.'=>'%d request deleted successfully.' . "\0" . '%d requests deleted successfully.','%d request failed to delete.'=>'%d request failed to delete.' . "\0" . '%d requests failed to delete.','%d request marked as complete.'=>'%d request marked as complete.' . "\0" . '%d requests marked as complete.','%d confirmation request re-sent successfully.'=>'%d confirmation request resent successfully.' . "\0" . '%d confirmation requests resent successfully.','%d confirmation request failed to resend.'=>'%d confirmation request failed to resend.' . "\0" . '%d confirmation requests failed to resend.','Mark requests as completed'=>'Mark requests as completed','Next steps'=>'Next steps','Unable to open personal data export file (archive) for writing.'=>'Unable to open personal data export file (archive) for writing.','Unable to open personal data export file (JSON report) for writing.'=>'Unable to open personal data export file (JSON report) for writing.','Unable to protect personal data export folder from browsing.'=>'Unable to protect personal data export folder from browsing.','Invalid email address when generating personal data export file.'=>'Invalid email address when generating personal data export file.','Invalid request ID when generating personal data export file.'=>'Invalid request ID when generating personal data export file.','Unable to generate personal data export file. ZipArchive not available.'=>'Unable to generate personal data export file. ZipArchive not available.','Search results for: %s'=>'Search results for: %s','Note that even when set to discourage search engines, your site is still visible on the web and not all search engines adhere to this directive.'=>'Note that even when set to discourage search engines, your site is still visible on the web and not all search engines adhere to this directive.','You can choose whether or not your site will be crawled by robots, ping services, and spiders. If you want those services to ignore your site, click the checkbox next to “Discourage search engines from indexing this site” and click the Save Changes button at the bottom of the screen.'=>'You can choose whether or not your site will be crawled by robots, ping services, and spiders. If you want those services to ignore your site, click the checkbox next to “Discourage search engines from indexing this site” and click the Save Changes button at the bottom of the screen.','The "%1$s" value is smaller than "%2$s"'=>'The "%1$s" value is smaller than "%2$s"','Environment type'=>'Environment type','Auto-updates are only available for plugins recognized by WordPress.org, or that include a compatible update system.'=>'Auto-updates are only available for plugins recognised by WordPress.org, or that include a compatible update system.','Update Incompatible'=>'Update Incompatible','This update does not work with your version of WordPress.'=>'This update does not work with your version of WordPress.','This update does not work with your versions of WordPress and PHP.'=>'This update does not work with your versions of WordPress and PHP.','Disallowed Comment Keys'=>'Disallowed Comment Keys','Plugin and theme auto-updates'=>'Plugin and theme auto-updates','There appear to be no issues with plugin and theme auto-updates.'=>'There appear to be no issues with plugin and theme auto-updates.','Auto-updates for themes appear to be disabled. This will prevent your site from receiving new versions automatically when available.'=>'Auto-updates for themes appear to be disabled. This will prevent your site from receiving new versions automatically when available.','Auto-updates for plugins appear to be disabled. This will prevent your site from receiving new versions automatically when available.'=>'Auto-updates for plugins appear to be disabled. This will prevent your site from receiving new versions automatically when available.','Auto-updates for plugins and themes appear to be disabled. This will prevent your site from receiving new versions automatically when available.'=>'Auto-updates for plugins and themes appear to be disabled. This will prevent your site from receiving new versions automatically when available.','Auto-updates for plugins and/or themes appear to be disabled, but settings are still set to be displayed. This could cause auto-updates to not work as expected.'=>'Auto-updates for plugins and/or themes appear to be disabled, but settings are still set to be displayed. This could cause auto-updates to not work as expected.','Your site may have problems auto-updating plugins and themes'=>'Your site may have problems auto-updating plugins and themes','Plugin and theme auto-updates ensure that the latest versions are always installed.'=>'Plugin and theme auto-updates ensure that the latest versions are always installed.','Plugin and theme auto-updates appear to be configured correctly'=>'Plugin and theme auto-updates appear to be configured correctly','themeActivate “%s”'=>'Activate “%s”','Sorry, you are not allowed to modify plugins.'=>'Sorry, you are not allowed to modify plugins.','The setting for %1$s is smaller than %2$s, this could cause some problems when trying to upload files.'=>'The setting for %1$s is smaller than %2$s, this could cause some problems when trying to upload files.','%1$s is set to %2$s. You won\'t be able to upload files on your site.'=>'%1$s is set to %2$s. You won\'t be able to upload files on your site.','The %s function has been disabled, some media settings are unavailable because of this.'=>'The %s function has been disabled, some media settings are unavailable because of this.','The %1$s directive in %2$s determines if uploading files is allowed on your site.'=>'The %1$s directive in %2$s determines if uploading files is allowed on your site.','Files can be uploaded'=>'Files can be uploaded','Max effective file size'=>'Maximum effective file size','Max size of an uploaded file'=>'Maximum size of an uploaded file','Max size of post data allowed'=>'Maximum size of post data allowed','File uploads'=>'File uploads','File upload settings'=>'File upload settings','themeCannot Install %s'=>'Cannot Install %s','pluginInstall %s'=>'Install %s','themeInstall %s'=>'Install %s','themeUpdate %s now'=>'Update %s now','- %1$s version %2$s'=>'– %1$s version %2$s','themeActivated'=>'Activated','Sorry, you are not allowed to enable themes automatic updates.'=>'Sorry, you are not allowed to enable themes automatic updates.','This plugin is already installed.'=>'This plugin is already installed.','pluginUpdate %s now'=>'Update %s now','pluginInstall %s now'=>'Install %s now','Dismiss this notice.'=>'Dismiss this notice.','themeCannot Activate %s'=>'Cannot Activate %s','Theme will no longer be auto-updated.'=>'Theme will no longer be auto-updated.','Theme will be auto-updated.'=>'Theme will be auto-updated.','Auto-updates can be enabled or disabled for each individual theme. Themes with auto-updates enabled will display the estimated date of the next auto-update. Auto-updates depends on the WP-Cron task scheduling system.'=>'Auto-updates can be enabled or disabled for each individual theme. Themes with auto-updates enabled will display the estimated date of the next auto-update. Auto-updates depend on the WP-Cron task scheduling system.','Sorry, you are not allowed to disable themes automatic updates.'=>'Sorry, you are not allowed to disable themes automatic updates.','Sorry, you are not allowed to manage plugins automatic updates.'=>'Sorry, you are not allowed to manage plugins automatic updates.','Error in deleting the item.'=>'Error in deleting the item.','Error in restoring the item from Trash.'=>'Error in restoring the item from Bin.','Error in moving the item to Trash.'=>'Error in moving the item to Bin.','Selected plugins will no longer be auto-updated.'=>'Selected plugins will no longer be auto-updated.','Selected plugins will be auto-updated.'=>'Selected plugins will be auto-updated.','Plugin will no longer be auto-updated.'=>'Plugin will no longer be auto-updated.','Plugin will be auto-updated.'=>'Plugin will be auto-updated.','Auto-updates can be enabled or disabled for each individual plugin. Plugins with auto-updates enabled will display the estimated date of the next auto-update. Auto-updates depends on the WP-Cron task scheduling system.'=>'Auto-updates can be enabled or disabled for each individual plugin. Plugins with auto-updates enabled will display the estimated date of the next auto-update. Auto-updates depend on the WP-Cron task scheduling system.','Please connect to your network admin to manage plugins automatic updates.'=>'Please connect to your network admin to manage plugins automatic updates.','The admin email verification page will reappear after %s.'=>'The admin email verification page will reappear after %s.','Auto-updates'=>'Auto-updates','Please note: Third-party themes and plugins, or custom code, may override WordPress scheduling.'=>'Please note: third-party themes and plugins, or custom code, may override WordPress scheduling.','Auto-updates can be enabled or disabled for WordPress major versions and for each individual theme or plugin. Themes or plugins with auto-updates enabled will display the estimated date of the next auto-update. Auto-updates depends on the WP-Cron task scheduling system.'=>'Auto-updates can be enabled or disabled for WordPress major versions and for each individual theme or plugin. Themes or plugins with auto-updates enabled will display the estimated date of the next auto-update. Auto-updates depends on the WP-Cron task scheduling system.','Important: Before updating, please back up your database and files. For help with updates, visit the Updating WordPress documentation page.'=>'Important: before updating, please back up your database and files. For help with updates, visit the Updating WordPress documentation page.','themeCannot Activate'=>'Cannot Activate','You cannot edit this comment because the associated post is in the Trash. Please restore the post first, then try again.'=>'You cannot edit this comment because the associated post is in the Bin. Please restore the post first, then try again.','media itemSuccess'=>'Success','pluginError: Current WordPress version (%1$s) does not meet minimum requirements for %2$s. The plugin requires WordPress %3$s.'=>'Error: current WordPress version (%1$s) does not meet the minimum requirements for %2$s. The plugin requires WordPress %3$s.','pluginError: Current PHP version (%1$s) does not meet minimum requirements for %2$s. The plugin requires PHP %3$s.'=>'Error: current PHP version (%1$s) does not meet the minimum requirements for %2$s. The plugin requires PHP %3$s.','pluginError: Current versions of WordPress (%1$s) and PHP (%2$s) do not meet minimum requirements for %3$s. The plugin requires WordPress %4$s and PHP %5$s.'=>'Error: current versions of WordPress (%1$s) and PHP (%2$s) do not meet the minimum requirements for %3$s. The plugin requires WordPress %4$s and PHP %5$s.','Invalid data. The item does not exist.'=>'Invalid data. The item does not exist.','Invalid data. Unknown type.'=>'Invalid data. Unknown type.','Invalid data. Unknown state.'=>'Invalid data. Unknown state.','Invalid data. No selected item.'=>'Invalid data. No selected item.','You cannot reply to a comment on a draft post.'=>'You cannot reply to a comment on a draft post.','To manage themes on your site, visit the Themes page: %s'=>'To manage themes on your site, visit the Themes page: %s','To manage plugins on your site, visit the Plugins page: %s'=>'To manage plugins on your site, visit the Plugins page: %s','These themes are now up to date:'=>'These themes are now up to date:','These plugins are now up to date:'=>'These plugins are now up to date:','These themes failed to update:'=>'These themes failed to update:','Please check your site now. It’s possible that everything is working. If there are updates available, you should update.'=>'Please check your site now. It’s possible that everything is working. If there are updates available, you should update.','Howdy! Themes failed to update on your site at %s.'=>'Hi! Themes failed to update on your site at %s.','[%s] Some themes have failed to update'=>'[%s] Some themes have failed to update','Howdy! Plugins failed to update on your site at %s.'=>'Hi! Plugins failed to update on your site at %s.','[%s] Some plugins have failed to update'=>'[%s] Some plugins have failed to update','Howdy! Plugins and themes failed to update on your site at %s.'=>'Hi! Plugins and themes failed to update on your site at %s.','[%s] Some plugins and themes have failed to update'=>'[%s] Some plugins and themes have failed to update','Howdy! Some themes have automatically updated to their latest versions on your site at %s. No further action is needed on your part.'=>'Hi! Some themes have automatically updated to their latest versions on your site at %s. No further action is needed on your part.','[%s] Some themes were automatically updated'=>'[%s] Some themes were automatically updated','Howdy! Some plugins have automatically updated to their latest versions on your site at %s. No further action is needed on your part.'=>'Hi! Some plugins have automatically updated to their latest versions on your site at %s. No further action is needed on your part.','[%s] Some plugins were automatically updated'=>'[%s] Some plugins were automatically updated','Howdy! Some plugins and themes have automatically updated to their latest versions on your site at %s. No further action is needed on your part.'=>'Hi! Some plugins and themes have automatically updated to their latest versions on your site at %s. No further action is needed on your part.','[%s] Some plugins and themes have automatically updated'=>'[%s] Some plugins and themes have automatically updated','Move %s box down'=>'Move %s box down','Move %s box up'=>'Move %s box up','commentNot spam'=>'Not spam','PHP Sessions'=>'PHP Sessions','A PHP session was created by a %1$s function call. This interferes with REST API and loopback requests. The session should be closed by %2$s before making any HTTP requests.'=>'A PHP session was created by a %1$s function call. This interferes with REST API and loopback requests. The session should be closed by %2$s before making any HTTP requests.','An active PHP session was detected'=>'An active PHP session was detected','PHP sessions created by a %1$s function call may interfere with REST API and loopback requests. An active session should be closed by %2$s before making any HTTP requests.'=>'PHP sessions created by a %1$s function call may interfere with REST API and loopback requests. An active session should be closed by %2$s before making any HTTP requests.','No PHP sessions detected'=>'No PHP sessions detected','Extended view'=>'Extended view','Compact view'=>'Compact view','Error: Passwords do not match. Please enter the same password in both password fields.'=>'Error: Passwords do not match. Please enter the same password in both password fields.','post action/button labelSchedule'=>'Schedule','No plugins found. Try a different search.'=>'No plugins found. Try a different search.','Automatic update scheduled in %s.'=>'Automatic update scheduled in %s.','Automatic update overdue by %s. There may be a problem with WP-Cron.'=>'Automatic update overdue by %s. There may be a problem with WP-Cron.','Automatic update not scheduled. There may be a problem with WP-Cron.'=>'Automatic update not scheduled. There may be a problem with WP-Cron.','You are updating a plugin. Be sure to back up your database and files first.'=>'You are updating a plugin. Be sure to back up your database and files first.','You are uploading an older version of a current plugin. You can continue to install the older version, but be sure to back up your database and files first.'=>'You are uploading an older version of a current plugin. You can continue to install the older version, but be sure to back up your database and files first.','Your WordPress version is %1$s, however the uploaded plugin requires %2$s.'=>'Your WordPress version is %1$s, however the uploaded plugin requires %2$s.','The PHP version on your server is %1$s, however the uploaded plugin requires %2$s.'=>'The PHP version on your server is %1$s, however the uploaded plugin requires %2$s.','The plugin cannot be updated due to the following:'=>'The plugin cannot be updated due to the following:','Plugin name'=>'Plugin name','Theme downgraded successfully.'=>'Theme downgraded successfully.','Theme downgrade failed.'=>'Theme downgrade failed.','Downgrading the theme…'=>'Downgrading the theme…','Updating the theme…'=>'Updating the theme…','The active theme has the following error: "%s".'=>'The active theme has the following error: "%s".','Enable auto-updates'=>'Enable auto-updates','Disable auto-updates'=>'Disable auto-updates','Disable Auto-updates'=>'Disable Auto-updates','Enable Auto-updates'=>'Enable Auto-updates','Auto-updates Disabled (%s)'=>'Auto-updates Disabled (%s)' . "\0" . 'Auto-updates Disabled (%s)','Auto-updates Enabled (%s)'=>'Auto-updates Enabled (%s)' . "\0" . 'Auto-updates Enabled (%s)','Automatic Updates'=>'Automatic Updates','No plugins are currently available.'=>'No plugins are currently available.','Restore original image'=>'Restore original image','The uploaded file has expired. Please go back and upload it again.'=>'The uploaded file has expired. Please go back and upload it again.','Cancel and go back'=>'Cancel and go back','themeReplace installed with uploaded'=>'Replace installed with uploaded','You are updating a theme. Be sure to back up your database and files first.'=>'You are updating a theme. Be sure to back up your database and files first.','You are uploading an older version of the installed theme. You can continue to install the older version, but be sure to back up your database and files first.'=>'You are uploading an older version of the installed theme. You can continue to install the older version, but be sure to back up your database and files first.','Your WordPress version is %1$s, however the uploaded theme requires %2$s.'=>'Your WordPress version is %1$s, however the uploaded theme requires %2$s.','The PHP version on your server is %1$s, however the uploaded theme requires %2$s.'=>'The PHP version on your server is %1$s, however the uploaded theme requires %2$s.','The theme cannot be updated due to the following:'=>'The theme cannot be updated due to the following:','(not found)'=>'(not found)','Required PHP version'=>'Required PHP version','Required WordPress version'=>'Required WordPress version','Theme name'=>'Theme name','themeCannot Install'=>'Cannot Install','Block Editor Patterns'=>'Block Editor Patterns','Plugin downgraded successfully.'=>'Plugin downgraded successfully.','Plugin downgrade failed.'=>'Plugin downgrade failed.','Downgrading the plugin…'=>'Downgrading the plugin…','Updating the plugin…'=>'Updating the plugin…','Could not remove the current plugin.'=>'Could not remove the current plugin.','Removing the current plugin…'=>'Removing the current plugin…','Auto-update'=>'Auto-update','Auto-updates disabled'=>'Auto-updates disabled','Auto-updates enabled'=>'Auto-updates enabled','Are pretty permalinks supported?'=>'Are pretty permalinks supported?','PHP memory limit (only for admin screens)'=>'PHP memory limit (only for admin screens)','Is this site discouraging search engines?'=>'Is this site discouraging search engines?','Wide Blocks'=>'Wide Blocks','Block Editor Styles'=>'Block Editor Styles','Spam'=>'Spam','Unable to write to %s file.'=>'Unable to write to %s file.','Error: The %s options page is not in the allowed options list.'=>'Error: The %s options page is not in the allowed options list.','Error:'=>'Error:','You should update your %s file now.'=>'You should update your %s file now.','This localized version contains both the translation and various other localization fixes.'=>'This localised version contains both the translation and various other localisation fixes.','Take a look at the %1$d item on the Site Health screen.'=>'Take a look at the %1$d item on the Site Health screen.' . "\0" . 'Take a look at the %1$d items on the Site Health screen.','Your site’s health is looking good, but there are still some things you can do to improve its performance and security.'=>'Your site’s health is looking good, but there are still some things you can do to improve its performance and security.','Great job! Your site currently passes all site health checks.'=>'Great job! Your site currently passes all site health checks.','Your site has critical issues that should be addressed as soon as possible to improve its performance and security.'=>'Your site has critical issues that should be addressed as soon as possible to improve its performance and security.','Site health checks will automatically run periodically to gather information about your site. You can also visit the Site Health screen to gather information about your site now.'=>'Site health checks will automatically run periodically to gather information about your site. You can also visit the Site Health screen to gather information about your site now.','No information yet…'=>'No information yet…','The uploaded file exceeds the %1$s directive in %2$s.'=>'The uploaded file exceeds the %1$s directive in %2$s.','No comments found in Trash.'=>'No comments found in Bin.','File is empty. Please upload something more substantial. This error could also be caused by uploads being disabled in your %1$s file or by %2$s being defined as smaller than %3$s in %1$s.'=>'File is empty. Please upload something more substantial. This error could also be caused by uploads being disabled in your %1$s file or by %2$s being defined as smaller than %3$s in %1$s.','A test is unavailable'=>'A test is unavailable','Error: %1$s (%2$s)'=>'Error: %1$s (%2$s)','Your site is running on an older version of PHP (%s), which should be updated'=>'Your site is running on an older version of PHP (%s), which should be updated','Your site is running on an older version of PHP (%s)'=>'Your site is running on an older version of PHP (%s)','Your site is running a recommended version of PHP (%s)'=>'Your site is running a recommended version of PHP (%s)','No media files found in Trash.'=>'No media files found in Bin.','%1$s %2$d – %3$s %4$d, %5$d'=>'%1$s %2$d – %3$s %4$d, %5$d','upcoming events year formatY'=>'Y','upcoming events day formatj'=>'j','%1$s %2$d–%3$d, %4$d'=>'%1$s %2$d–%3$d, %4$d','upcoming events month formatF'=>'F','Resend confirmation requests'=>'Resend confirmation requests','Delete requests'=>'Delete requests','Table prefix'=>'Table prefix','PHP Default Timezone'=>'PHP Default Time Zone','PHP default timezone was changed after WordPress loading by a %s function call. This interferes with correct calculations of dates and times.'=>'PHP default time zone was changed after WordPress loading by a %s function call. This interferes with correct calculations of dates and times.','PHP default timezone is invalid'=>'PHP default time zone is invalid','PHP default timezone was configured by WordPress on loading. This is necessary for correct calculations of dates and times.'=>'PHP default time zone was configured by WordPress on loading. This is necessary for correct calculations of dates and times.','PHP default timezone is valid'=>'PHP default time zone is valid','The seventh parameter passed to %s should be numeric representing menu position.'=>'The seventh parameter passed to %s should be numeric representing menu position.','The update cannot be installed because WordPress %1$s requires the %2$s PHP extension.'=>'The update cannot be installed because WordPress %1$s requires the %2$s PHP extension.','https://wordpress.org/about/stats/'=>'https://en-gb.wordpress.org/about/stats/','Documentation on Export'=>'Documentation on Export','Documentation on Installing Plugins'=>'Documentation on Installing Plugins','Documentation on Managing Pages'=>'Documentation on Managing Pages','Documentation on Managing Posts'=>'Documentation on Managing Posts','Documentation on Discussion Settings'=>'Documentation on Discussion Settings','Documentation on Adding New Themes'=>'Documentation on Adding New Themes','Documentation on Uploading Media Files'=>'Documentation on Uploading Media Files','Descriptions of Roles and Capabilities'=>'Descriptions of Roles and Capabilities','Documentation on Managing Users'=>'Documentation on Managing Users','Documentation on User Profiles'=>'Documentation on User Profiles','Documentation on Media Settings'=>'Documentation on Media Settings','Documentation on Import'=>'Documentation on Import','Documentation on Tools'=>'Documentation on Tools','This page allows direct access to your site settings. You can break things here. Please be cautious!'=>'This page allows direct access to your site settings. You can break things here. Please be cautious!','Format — Post Formats designate how your theme will display a specific post. For example, you could have a standard blog post with a title and paragraphs, or a short aside that omits the title and contains a short text blurb. Your theme could enable all or some of 10 possible formats. Learn more about each post format.'=>'Format – Post Formats designate how your theme will display a specific post. For example, you could have a standard blog post with a title and paragraphs, or a short aside that omits the title and contains a short text blurb. Your theme could enable all or some of ten possible formats. Learn more about each post format.','Documentation on Editing Pages'=>'Documentation on Editing Pages','Documentation on Adding New Pages'=>'Documentation on Adding New Pages','Documentation on Media Library'=>'Documentation on Media Library','Revisions Management'=>'Revisions Management','Documentation on Edit Media'=>'Documentation on Edit Media','Documentation on Managing Plugins'=>'Documentation on Managing Plugins','Documentation on Dashboard'=>'Documentation on Dashboard','Documentation on Adding New Users'=>'Documentation on Adding New Users','This page can show you every detail about the configuration of your WordPress website. For any improvements that could be made, see the Site Health Status page.'=>'This page can show you every detail about the configuration of your WordPress website. For any improvements that could be made, see the Site Health Status page.','Results are still loading…'=>'Results are still loading…','Documentation on Using Permalinks'=>'Documentation on Using Permalinks','Documentation on Permalinks Settings'=>'Documentation on Permalinks Settings','Documentation on Updating WordPress'=>'Documentation on Updating WordPress','Documentation on Menus'=>'Documentation on Menus','Documentation on Writing Plugins'=>'Documentation on Writing Plugins','Documentation on Template Tags'=>'Documentation on Template Tags','Documentation on Using Themes'=>'Documentation on Using Themes','Documentation on Theme Development'=>'Documentation on Theme Development','Documentation on Comments'=>'Documentation on Comments','Universal time is %s.'=>'Universal time is %s.','Choose either a city in the same timezone as you or a %s (Coordinated Universal Time) time offset.'=>'Choose either a city in the same time zone as you or a %s (Coordinated Universal Time) time offset.','Administration Email Address'=>'Administration Email Address','Documentation on General Settings'=>'Documentation on General Settings','You need to make this file writable before you can save your changes. See Changing File Permissions for more information.'=>'You need to make this file writable before you can save your changes. See Changing File Permissions for more information.','Upload failed. Please reload and try again.'=>'Upload failed. Please reload and try again.','Data erasure has failed.'=>'Data erasure has failed.','Erasure completed.'=>'Erasure completed.','The attached file cannot be found.'=>'The attached file cannot be found.','page labelPrivacy Policy Page'=>'Privacy Policy Page','page labelPosts Page'=>'Posts Page','page labelFront Page'=>'Front Page','post statusSticky'=>'Sticky','post statusCustomization Draft'=>'Customisation Draft','post statusPassword protected'=>'Password protected','The scheduled event, %s, is late to run. Your site still works, but this may indicate that scheduling posts or automated updates may not work as intended.'=>'The scheduled event, %s, is late to run. Your site still works, but this may indicate that scheduling posts or automated updates may not work as intended.','A scheduled event is late'=>'A scheduled event is late','An HTTPS connection is a more secure way of browsing the web. Many services now have HTTPS as a requirement. HTTPS allows you to take advantage of new features that can increase site speed, improve search rankings, and gain the trust of your visitors by helping to protect their online privacy.'=>'An HTTPS connection is a more secure way of browsing the web. Many services now have HTTPS as a requirement. HTTPS allows you to take advantage of new features that can increase site speed, improve search rankings, and gain the trust of your visitors by helping to protect their online privacy.','Your version of WordPress (%s) is up to date'=>'Your version of WordPress (%s) is up to date','https://wordpress.org/documentation/article/introduction-to-blogging/#managing-comments'=>'https://wordpress.org/documentation/article/introduction-to-blogging/#managing-comments','https://wordpress.org/documentation/article/introduction-to-blogging/#comments'=>'https://wordpress.org/documentation/article/introduction-to-blogging/#comments','https://wordpress.org/documentation/article/block-themes/'=>'https://wordpress.org/documentation/article/block-themes/','Publish on: %s'=>'Publish on: %s','Schedule for: %s'=>'Schedule for: %s','Published on: %s'=>'Published on: %s','Scheduled for: %s'=>'Scheduled for: %s','publish box time formatH:i'=>'H:i','publish box date formatM j, Y'=>'j F Y','The directives (lines) between "BEGIN %1$s" and "END %1$s" are dynamically generated, and should only be modified via WordPress filters. Any changes to the directives between these markers will be overwritten.'=>'The directives (lines) between "BEGIN %1$s" and "END %1$s" are dynamically generated, and should only be modified via WordPress filters. -Any changes to the directives between these markers will be overwritten.','All automatic updates are disabled.'=>'All automatic updates are disabled.','Database collation'=>'Database collation','Database charset'=>'Database charset','Inactive Themes'=>'Inactive Themes','Parent Theme'=>'Parent Theme','Drop-ins are single files, found in the %s directory, that replace or enhance WordPress features in ways that are not possible for traditional plugins.'=>'Drop-ins are single files, found in the %s directory, that replace or enhance WordPress features in ways that are not possible for traditional plugins.','personal data group descriptionOverview of export report.'=>'Overview of export report.','Documentation on Writing Settings'=>'Documentation on Writing Settings','Documentation on Tags'=>'Documentation on Tags','Documentation on Categories'=>'Documentation on Categories','Your theme determines how content is displayed in browsers. Learn more about feeds.'=>'Your theme determines how content is displayed in browsers. Learn more about feeds.','For each post in a feed, include'=>'For each post in a feed, include','Warning: these pages should not be the same as your Privacy Policy page!'=>'Warning: these pages should not be the same as your Privacy Policy page!','Documentation on Reading Settings'=>'Documentation on Reading Settings','[%s] Delete My Site'=>'[%s] Delete My Site','Allow people to submit comments on new posts'=>'Allow people to submit comments on new posts','Default post settings'=>'Default post settings','You can change your profile picture on Gravatar.'=>'You can change your profile picture on Gravatar.','Plugin resumed.'=>'Plugin resumed.','Selected plugins deactivated.'=>'Selected plugins deactivated.','Plugin deactivated.'=>'Plugin deactivated.','Selected plugins activated.'=>'Selected plugins activated.','Plugin activated.'=>'Plugin activated.','The selected plugins have been deleted.'=>'The selected plugins have been deleted.','The selected plugin has been deleted.'=>'The selected plugin has been deleted.','The plugin %1$s has been deactivated due to an error: %2$s'=>'The plugin %1$s has been deactivated due to an error: %2$s','If you need to tweak more than your theme’s CSS, you might want to try making a child theme.'=>'If you need to tweak more than your theme’s CSS, you might want to try making a child theme.','You appear to be making direct edits to your theme in the WordPress dashboard. It is not recommended! Editing your theme directly could break your site and your changes may be lost in future updates.'=>'You appear to be making direct edits to your theme in the WordPress dashboard. It is not recommended! Editing your theme directly could break your site and your changes may be lost in future updates.','draft_length10'=>'10','File does not exist! Please double check the name and try again.'=>'File does not exist! Please double check the name and try again.','%1$s needs to be a %2$s object.'=>'%1$s needs to be a %2$s object.','You are in recovery mode. This means there may be an error with a theme or plugin. To exit recovery mode, log out or use the Exit button. Exit Recovery Mode'=>'You are in recovery mode. This means there may be an error with a theme or plugin. To exit recovery mode, log out or use the Exit button. Exit Recovery Mode','Site HealthInfo'=>'Info','Site HealthStatus'=>'Status','Themes directory location'=>'Themes directory location','comment statusClosed'=>'Closed','%s critical issue'=>'%s critical issue' . "\0" . '%s critical issues','https://wordpress.org/documentation/article/updating-wordpress/'=>'https://wordpress.org/documentation/article/updating-wordpress/','Get help resolving this issue.'=>'Get help resolving this issue.','Learn more about what WordPress requires to run.'=>'Learn more about what WordPress requires to run.','https://wordpress.org/about/requirements/'=>'https://wordpress.org/about/requirements/','The SQL server is a required piece of software for the database WordPress uses to store all your site’s content and settings.'=>'The SQL server is a required piece of software for the database WordPress uses to store all your site’s content and settings.','PHP modules perform most of the tasks on the server that make your site run. Any changes to these must be made by your server administrator.'=>'PHP modules perform most of the tasks on the server that make your site run. Any changes to these must be made by your server administrator.','Manage your themes'=>'Manage your themes','Manage inactive plugins'=>'Manage inactive plugins','Update your plugins'=>'Update your plugins','Manage your plugins'=>'Manage your plugins','View Privacy Policy Guide.'=>'View Privacy Policy Guide.','User Language'=>'User Language','The value, %1$s, has either been enabled by %2$s or added to your configuration file. This will make errors display on the front end of your site.'=>'The value, %1$s, has either been enabled by %2$s or added to your configuration file. This will make errors display on the front end of your site.','[%s] Background Update Finished'=>'[%s] Background Update Finished','[%s] Background Update Failed'=>'[%s] Background Update Failed','Plugin could not be resumed because it triggered a fatal error.'=>'Plugin could not be resumed because it triggered a fatal error.','You should remove inactive themes'=>'You should remove inactive themes','Your site has 1 installed theme, and it is up to date.'=>'Your site has 1 installed theme, and it is up to date.','Your site has 1 active plugin, and it is up to date.'=>'Your site has 1 active plugin, and it is up to date.','Passed tests'=>'Passed tests','Sorry, you are not allowed to access site health information.'=>'Sorry, you are not allowed to access site health information.','Copy site info to clipboard'=>'Copy site info to clipboard','If you want to export a handy list of all the information on this page, you can use the button below to copy it to the clipboard. You can then paste it in a text file and save it to your device, or paste it in an email exchange with a support engineer or theme/plugin developer for example.'=>'If you want to export a handy list of all the information on this page, you can use the button below to copy it to the clipboard. You can then paste it in a text file and save it to your device, or paste it in an email exchange with a support engineer or theme/plugin developer for example.','The Site Health check requires JavaScript.'=>'The Site Health check requires JavaScript.','Site Health Info'=>'Site Health Info','This update does not work with your version of PHP.'=>'This update does not work with your version of PHP.','All formats'=>'All formats','Filter by post format'=>'Filter by post format','Go to the Plugins screen'=>'Go to the Plugins screen','The authenticity of %s could not be verified.'=>'The authenticity of %s could not be verified.','The authenticity of %s could not be verified as no signature was found.'=>'The authenticity of %s could not be verified as no signature was found.','The authenticity of %s could not be verified as signature verification is unavailable on this system.'=>'The authenticity of %s could not be verified as signature verification is unavailable on this system.','Eraser callback is not valid: %s.'=>'Eraser callback is not valid: %s.','Eraser does not include a callback: %s.'=>'Eraser does not include a callback: %s.','Sorry, you are not allowed to perform this action.'=>'Sorry, you are not allowed to perform this action.','HTTP requests have been blocked by the %1$s constant, with some allowed hosts: %2$s.'=>'HTTP requests have been blocked by the %1$s constant, with some allowed hosts: %2$s.','HTTP requests have been blocked by the %s constant, with no allowed hosts.'=>'HTTP requests have been blocked by the %s constant, with no allowed hosts.','You are using a %1$s drop-in which might mean that a %2$s database is not being used.'=>'You are using a %1$s drop-in which might mean that a %2$s database is not being used.','https://make.wordpress.org/hosting/handbook/handbook/server-environment/#php-extensions'=>'https://make.wordpress.org/hosting/handbook/handbook/server-environment/#php-extensions','The WordPress Hosting Team maintains a list of those modules, both recommended and required, in the team handbook%3$s.'=>'The WordPress Hosting Team maintains a list of those modules, both recommended and required, in the team handbook%3$s.','Performance'=>'Performance','Your site has %1$d inactive theme, other than %2$s, the default WordPress theme, and %3$s, your active theme.'=>'Your site has %1$d inactive theme, other than %2$s, the default WordPress theme, and %3$s, your active theme.' . "\0" . 'Your site has %1$d inactive themes, other than %2$s, the default WordPress theme, and %3$s, your active theme.','You should consider removing any unused themes to enhance your site’s security.'=>'You should consider removing any unused themes to enhance your site’s security.','Your site has %1$d inactive theme, other than %2$s, your active theme.'=>'Your site has %1$d inactive theme, other than %2$s, your active theme.' . "\0" . 'Your site has %1$d inactive themes, other than %2$s, your active theme.','Your site has %d inactive theme.'=>'Your site has %d inactive theme.' . "\0" . 'Your site has %d inactive themes.','Inactive plugins are tempting targets for attackers. If you are not going to use a plugin, you should consider removing it.'=>'Inactive plugins are tempting targets for attackers. If you are not going to use a plugin, you should consider removing it.','Your site has %d inactive plugin.'=>'Your site has %d inactive plugin.' . "\0" . 'Your site has %d inactive plugins.','Security'=>'Security','Erase personal data list'=>'Erase personal data list','Erase personal data list navigation'=>'Erase personal data list navigation','Filter erase personal data list'=>'Filter erase personal data list','Export personal data list'=>'Export personal data list','Export personal data list navigation'=>'Export personal data list navigation','Filter export personal data list'=>'Filter export personal data list','There is a new version of %1$s available, but it does not work with your version of PHP. View version %4$s details or learn more about updating PHP.'=>'There is a new version of %1$s available, but it does not work with your version of PHP. View version %4$s details or learn more about updating PHP.','This plugin failed to load properly and is paused during recovery mode.'=>'This plugin failed to load properly and is paused during recovery mode.','Go to the Themes screen'=>'Go to the Themes screen','Total size is not available. Some errors were encountered when determining the size of your installation.'=>'Total size is not available. Some errors were encountered when determining the size of your installation.','The size cannot be calculated. The directory is not accessible. Usually caused by invalid permissions.'=>'The size cannot be calculated. The directory is not accessible. Usually caused by invalid permissions.','The directory size calculation has timed out. Usually caused by a very large number of sub-directories and files.'=>'The directory size calculation has timed out. Usually caused by a very large number of sub-directories and files.','These settings alter where and how parts of WordPress are loaded.'=>'These settings alter where and how parts of WordPress are loaded.','%s item with no issues detected'=>'%s item with no issues detected' . "\0" . '%s items with no issues detected','%s recommended improvement'=>'%s recommended improvement' . "\0" . '%s recommended improvements','The site health check shows information about your WordPress configuration and items that may need your attention.'=>'The site health check shows information about your WordPress configuration and items that may need your attention.','Site Health Status'=>'Site Health Status','Everything is running smoothly here.'=>'Everything is running smoothly here.','Great job!'=>'Great job!','Secondary menu'=>'Secondary menu','The loopback request to your site completed successfully.'=>'The loopback request to your site completed successfully.','The loopback request returned an unexpected http status code, %d, it was not possible to determine if this will prevent features from working as expected.'=>'The loopback request returned an unexpected http status code, %d, it was not possible to determine if this will prevent features from working as expected.','The loopback request to your site failed, this means features relying on them are not currently working as expected.'=>'The loopback request to your site failed, this means features relying on them are not currently working as expected.','No scheduled events exist on this site.'=>'No scheduled events exist on this site.','REST API availability'=>'REST API availability','Loopback request'=>'Loopback request','Debugging enabled'=>'Debugging enabled','HTTP Requests'=>'HTTP Requests','Scheduled events'=>'Scheduled events','Secure communication'=>'Secure communication','HTTPS status'=>'HTTPS status','PHP Extensions'=>'PHP Extensions','Database Server version'=>'Database Server version','PHP Version'=>'PHP Version','Theme Versions'=>'Theme Versions','Plugin Versions'=>'Plugin Versions','WordPress Version'=>'WordPress Version','The REST API did not process the %s query parameter correctly.'=>'The REST API did not process the %s query parameter correctly.','The REST API did not behave correctly'=>'The REST API did not behave correctly','The REST API encountered an unexpected result'=>'The REST API encountered an unexpected result','The REST API encountered an error'=>'The REST API encountered an error','The REST API is one way that WordPress and other applications communicate with the server. For example, the block editor screen relies on the REST API to display and save your posts and pages.'=>'The REST API is one way that WordPress and other applications communicate with the server. For example, the block editor screen relies on the REST API to display and save your posts and pages.','The REST API is available'=>'The REST API is available','HTTP requests are partially blocked'=>'HTTP requests are partially blocked','HTTP requests are blocked'=>'HTTP requests are blocked','It is possible for site maintainers to block all, or some, communication to other sites and services. If set up incorrectly, this may prevent plugins and themes from working as intended.'=>'It is possible for site maintainers to block all, or some, communication to other sites and services. If set up incorrectly, this may prevent plugins and themes from working as intended.','HTTP requests seem to be working as expected'=>'HTTP requests seem to be working as expected','Your site could not complete a loopback request'=>'Your site could not complete a loopback request','Loopback requests are used to run scheduled events, and are also used by the built-in editors for themes and plugins to verify code stability.'=>'Loopback requests are used to run scheduled events, and are also used by the built-in editors for themes and plugins to verify code stability.','Your site can perform loopback requests'=>'Your site can perform loopback requests','Background updates may not be working properly'=>'Background updates may not be working properly','Background updates are not working as expected'=>'Background updates are not working as expected','Passed'=>'Passed','Background updates ensure that WordPress can auto-update if a security update is released for the version you are currently using.'=>'Background updates ensure that WordPress can auto-update if a security update is released for the version you are currently using.','Background updates are working'=>'Background updates are working','The scheduled event, %s, failed to run. Your site still works, but this may indicate that scheduling posts or automated updates may not work as intended.'=>'The scheduled event, %s, failed to run. Your site still works, but this may indicate that scheduling posts or automated updates may not work as intended.','A scheduled event has failed'=>'A scheduled event has failed','While trying to test your site’s scheduled events, the following error was returned: %s'=>'While trying to test your site’s scheduled events, the following error was returned: %s','It was not possible to check your scheduled events'=>'It was not possible to check your scheduled events','Scheduled events are what periodically looks for updates to plugins, themes and WordPress itself. It is also what makes sure scheduled posts are published on time. It may also be used by various plugins to make sure that planned actions are executed.'=>'Scheduled events are what periodically looks for updates to plugins, themes and WordPress itself. It is also what makes sure scheduled posts are published on time. It may also be used by various plugins to make sure that planned actions are executed.','Scheduled events are running'=>'Scheduled events are running','Talk to your web host about OpenSSL support for PHP.'=>'Talk to your web host about OpenSSL support for PHP.','Your site is unable to communicate securely with other services'=>'Your site is unable to communicate securely with other services','Your site can communicate securely with other services'=>'Your site can communicate securely with other services','Securely communicating between servers are needed for transactions such as fetching files, conducting sales on store sites, and much more.'=>'Securely communicating between servers are needed for transactions such as fetching files, conducting sales on store sites, and much more.','Learn more about why you should use HTTPS'=>'Learn more about why you should use HTTPS','Your website does not use HTTPS'=>'Your website does not use HTTPS','Your website is using an active HTTPS connection'=>'Your website is using an active HTTPS connection','You are accessing this website using HTTPS, but your Site Address is not set up to use HTTPS by default.'=>'You are accessing this website using HTTPS, but your Site Address is not set up to use HTTPS by default.','Your site is set to display errors to site visitors'=>'Your site is set to display errors to site visitors','The value, %s, has been added to this website’s configuration file. This means any errors on the site will be written to a file which is potentially available to all users.'=>'The value, %s, has been added to this website’s configuration file. This means any errors on the site will be written to a file which is potentially available to all users.','Your site is set to log errors to a potentially public file'=>'Your site is set to log errors to a potentially public file','Debug mode is often enabled to gather more details about an error or site failure, but may contain sensitive information which should not be available on a publicly available website.'=>'Debug mode is often enabled to gather more details about an error or site failure, but may contain sensitive information which should not be available on a publicly available website.','Your site is not set to output debug information'=>'Your site is not set to output debug information','Your site is unable to reach WordPress.org at %1$s, and returned the error: %2$s'=>'Your site is unable to reach WordPress.org at %1$s, and returned the error: %2$s','Could not reach WordPress.org'=>'Could not reach WordPress.org','Communicating with the WordPress servers is used to check for new versions, and to both install and update WordPress core, themes or plugins.'=>'Communicating with the WordPress servers is used to check for new versions, and to both install and update WordPress core, themes or plugins.','Can communicate with WordPress.org'=>'Can communicate with WordPress.org','WordPress requires %1$s version %2$s or higher. Contact your web hosting company to correct this.'=>'WordPress requires %1$s version %2$s or higher. Contact your web hosting company to correct this.','Severely outdated SQL server'=>'Severely outdated SQL server','For optimal performance and security reasons, you should consider running %1$s version %2$s or higher. Contact your web hosting company to correct this.'=>'For optimal performance and security reasons, you should consider running %1$s version %2$s or higher. Contact your web hosting company to correct this.','Outdated SQL server'=>'Outdated SQL server','SQL server is up to date'=>'SQL server is up to date','One or more required modules are missing'=>'One or more required modules are missing','One or more recommended modules are missing'=>'One or more recommended modules are missing','The optional module, %s, is not installed, or has been disabled.'=>'The optional module, %s, is not installed, or has been disabled.','The required module, %s, is not installed, or has been disabled.'=>'The required module, %s, is not installed, or has been disabled.','Error'=>'Error','Required and recommended modules are installed'=>'Required and recommended modules are installed','Your site does not have any default theme. Default themes are used by WordPress automatically if anything is wrong with your chosen theme.'=>'Your site does not have any default theme. Default themes are used by WordPress automatically if anything is wrong with your chosen theme.','Have a default theme available'=>'Have a default theme available','To enhance your site’s security, you should consider removing any themes you are not using. You should keep %1$s, the default WordPress theme, %2$s, your active theme, and %3$s, its parent theme.'=>'To enhance your site’s security, you should consider removing any themes you are not using. You should keep %1$s, the default WordPress theme, %2$s, your active theme, and %3$s, its parent theme.','To enhance your site’s security, you should consider removing any themes you are not using. You should keep your active theme, %1$s, and %2$s, its parent theme.'=>'To enhance your site’s security, you should consider removing any themes you are not using. You should keep your active theme, %1$s, and %2$s, its parent theme.','You should remove inactive plugins'=>'You should remove inactive plugins','Your site has %d installed theme, and it is up to date.'=>'Your site has %d installed theme, and it is up to date.' . "\0" . 'Your site has %d installed themes, and they are all up to date.','Your site has %d theme waiting to be updated.'=>'Your site has %d theme waiting to be updated.' . "\0" . 'Your site has %d themes waiting to be updated.','You have themes waiting to be updated'=>'You have themes waiting to be updated','Themes add your site’s look and feel. It’s important to keep them up to date, to stay consistent with your brand and keep your site secure.'=>'Themes add your site’s look and feel. It’s important to keep them up to date, to stay consistent with your brand and keep your site secure.','Your themes are all up to date'=>'Your themes are all up to date','Your site has %d active plugin, and it is up to date.'=>'Your site has %d active plugin, and it is up to date.' . "\0" . 'Your site has %d active plugins, and they are all up to date.','Your site has %d plugin waiting to be updated.'=>'Your site has %d plugin waiting to be updated.' . "\0" . 'Your site has %d plugins waiting to be updated.','You have plugins waiting to be updated'=>'You have plugins waiting to be updated','Plugins extend your site’s functionality with things like contact forms, ecommerce and much more. That means they have deep access to your site, so it’s vital to keep them up to date.'=>'Plugins extend your site’s functionality with things like contact forms, ecommerce and much more. That means they have deep access to your site, so it’s vital to keep them up to date.','Your plugins are all up to date'=>'Your plugins are all up to date','You are currently running the latest version of WordPress available, keep it up!'=>'You are currently running the latest version of WordPress available, keep it up!','A new minor update is available for your site. Because minor updates often address security, it’s important to install them.'=>'A new minor update is available for your site. Because minor updates often address security, it’s important to install them.','A new version of WordPress is available.'=>'A new version of WordPress is available.','Install the latest version of WordPress'=>'Install the latest version of WordPress','WordPress update available (%s)'=>'WordPress update available (%s)','Check for updates manually'=>'Check for updates manually','Unable to check if any new versions of WordPress are available.'=>'Unable to check if any new versions of WordPress are available.','WordPress security and maintenance releases are blocked by the %s filter.'=>'WordPress security and maintenance releases are blocked by the %s filter.','WordPress security and maintenance releases are blocked by %s.'=>'WordPress security and maintenance releases are blocked by %s.','WordPress development updates are blocked by the %s filter.'=>'WordPress development updates are blocked by the %s filter.','WordPress development updates are blocked by the %s constant.'=>'WordPress development updates are blocked by the %s constant.','All of your WordPress files are writable.'=>'All of your WordPress files are writable.','Some files are not writable by WordPress:'=>'Some files are not writable by WordPress:','This could mean that connections are failing to WordPress.org.'=>'This could mean that connections are failing to WordPress.org.','Couldn\'t retrieve a list of the checksums for WordPress %s.'=>'Couldn\'t retrieve a list of the checksums for WordPress %s.','Your installation of WordPress does not require FTP credentials to perform updates.'=>'Your installation of WordPress does not require FTP credentials to perform updates.','(Your site is performing updates over FTP due to file ownership. Talk to your hosting company.)'=>'(Your site is performing updates over FTP due to file ownership. Talk to your hosting company.)','Your installation of WordPress prompts for FTP credentials to perform updates.'=>'Your installation of WordPress prompts for FTP credentials to perform updates.','No version control systems were detected.'=>'No version control systems were detected.','The folder %1$s was detected as being under version control (%2$s).'=>'The folder %1$s was detected as being under version control (%2$s).','The folder %1$s was detected as being under version control (%2$s), but the %3$s filter is allowing updates.'=>'The folder %1$s was detected as being under version control (%2$s), but the %3$s filter is allowing updates.','A previous automatic background update could not occur.'=>'A previous automatic background update could not occur.','The error code was %s.'=>'The error code was %s.','When you\'ve been able to update using the "Update now" button on Dashboard > Updates, this error will be cleared for future update attempts.'=>'When you\'ve been able to update using the "Update now" button on Dashboard > Updates, this error will be cleared for future update attempts.','You would have received an email because of this.'=>'You would have received an email because of this.','A previous automatic background update ended with a critical failure, so updates are now disabled.'=>'A previous automatic background update ended with a critical failure, so updates are now disabled.','The %s filter is enabled.'=>'The %s filter is enabled.','A plugin has prevented updates by disabling %s.'=>'A plugin has prevented updates by disabling %s.','The must use plugins directory'=>'The must use plugins directory','Theme features'=>'Theme features','Parent theme'=>'Parent theme','Author website'=>'Author website','(Latest version: %s)'=>'(Latest version: %s)','Version %1$s by %2$s'=>'Version %1$s by %2$s','No version or author information is available.'=>'No version or author information is available.','Server version'=>'Server version','Your %s file contains only core WordPress features.'=>'Your %s file contains only core WordPress features.','Custom rules have been added to your %s file.'=>'Custom rules have been added to your %s file.','.htaccess rules'=>'.htaccess rules','Is the Imagick library available?'=>'Is the Imagick library available?','Is SUHOSIN installed?'=>'Is SUHOSIN installed?','cURL version'=>'cURL version','PHP post max size'=>'PHP post max size','Upload max filesize'=>'Upload max filesize','Max input time'=>'Max input time','PHP memory limit'=>'PHP memory limit','PHP time limit'=>'PHP time limit','PHP max input variables'=>'PHP max input variables','Unable to determine some settings, as the %s function has been disabled.'=>'Unable to determine some settings, as the %s function has been disabled.','Server settings'=>'Server settings','PHP SAPI'=>'PHP SAPI','(Does not support 64bit values)'=>'(Does not support 64bit values)','(Supports 64bit values)'=>'(Supports 64bit values)','PHP version'=>'PHP version','Unable to determine what web server software is used'=>'Unable to determine what web server software is used','Web server'=>'Web server','Unable to determine server architecture'=>'Unable to determine server architecture','Server architecture'=>'Server architecture','Ghostscript version'=>'Ghostscript version','Unable to determine if Ghostscript is installed'=>'Unable to determine if Ghostscript is installed','GD version'=>'GD version','Imagick Resource Limits'=>'Imagick Resource Limits','ImageMagick version string'=>'ImageMagick version string','ImageMagick version number'=>'ImageMagick version number','Not available'=>'Not available','Active editor'=>'Active editor','Total installation size'=>'Total installation size','Database size'=>'Database size','WordPress directory size'=>'WordPress directory size','WordPress directory location'=>'WordPress directory location','Plugins directory size'=>'Plugins directory size','Plugins directory location'=>'Plugins directory location','Themes directory size'=>'Themes directory size','Theme directory location'=>'Theme directory location','Uploads directory size'=>'Uploads directory size','Uploads directory location'=>'Uploads directory location','Unable to reach WordPress.org at %1$s: %2$s'=>'Unable to reach WordPress.org at %1$s: %2$s','WordPress.org is reachable'=>'WordPress.org is reachable','Communication with WordPress.org'=>'Communication with WordPress.org','Network count'=>'Network count','Site count'=>'Site count','User count'=>'User count','The themes directory'=>'The themes directory','The plugins directory'=>'The plugins directory','The uploads directory'=>'The uploads directory','The wp-content directory'=>'The wp-content directory','Not writable'=>'Not writable','Writable'=>'Writable','The main WordPress directory'=>'The main WordPress directory','Shows whether WordPress is able to write to the directories it needs access to.'=>'Shows whether WordPress is able to write to the directories it needs access to.','Filesystem Permissions'=>'File system permissions','Undefined'=>'Undefined','WordPress Constants'=>'WordPress constants','Database'=>'Database','The options shown below relate to your server setup. If changes are required, you may need your web host’s assistance.'=>'The options shown below relate to your server setup. If changes are required, you may need your web host’s assistance.','Server'=>'Server','Media Handling'=>'Media Handling','Inactive Plugins'=>'Inactive Plugins','Active Plugins'=>'Active Plugins','Must Use Plugins'=>'Must Use Plugins','Active Theme'=>'Active theme','Drop-ins'=>'Drop-ins','Directories and Sizes'=>'Directories and Sizes','Is this a multisite?'=>'Is this a multisite?','Default comment status'=>'Default comment status','Can anyone register on this site?'=>'Can anyone register on this site?','Is this site using HTTPS?'=>'Is this site using HTTPS?','No permalink structure set'=>'No permalink structure set','Permalink structure'=>'Permalink structure','Site URL'=>'Site URL','Home URL'=>'Home URL','Site Health'=>'Site Health','requestsAll (%s)'=>'All (%s)' . "\0" . 'All (%d)','Show comments cookies opt-in checkbox, allowing comment author cookies to be set'=>'Show comments cookies opt in checkbox, allowing comment author cookies to be set','Next theme'=>'Next theme','Previous theme'=>'Previous theme','If you change this, an email will be sent at your new address to confirm it. The new address will not become active until confirmed.'=>'If you change this, an email will be sent at your new address to confirm it. The new address will not become active until confirmed.','Theme resumed.'=>'Theme resumed.','Theme could not be resumed because it triggered a fatal error.'=>'Theme could not be resumed because it triggered a fatal error.','If you notice “headers already sent” messages, problems with syndication feeds or other issues, try deactivating or removing this plugin.'=>'If you notice “ headers already sent ” messages, problems with syndication feeds or other issues, try deactivating or removing this plugin.','The plugin generated %d character of unexpected output during activation.'=>'The plugin generated %d character of unexpected output during activation.' . "\0" . 'The plugin generated %d characters of unexpected output during activation.','Sorry, you are not allowed to resume this plugin.'=>'Sorry, you are not allowed to resume this plugin.','WordPress Events and News — Upcoming events near you as well as the latest news from the official WordPress project and the WordPress Planet.'=>'WordPress Events and News — Upcoming events near you as well as the latest news from the official WordPress project and the WordPress Planet.','You cannot update because WordPress %2$s requires MySQL version %3$s or higher. You are running version %4$s.'=>'You cannot update because WordPress %2$s requires MySQL version %3$s or higher. You are running version %4$s.','You cannot update because WordPress %2$s requires PHP version %3$s or higher. You are running version %4$s.'=>'You cannot update because WordPress %2$s requires PHP version %3$s or higher. You are running version %4$s.','Add menu items'=>'Add menu items','or create a new menu. Do not forget to save your changes!'=>'or create a new menu. Do not forget to save your changes!','Click the Save Menu button to save your changes.'=>'Click the Save Menu button to save your changes.','Edit your menu below, or create a new menu. Do not forget to save your changes!'=>'Edit your menu below, or create a new menu. Do not forget to save your changes!','Fill in the Menu Name and click the Create Menu button to create your first menu.'=>'Fill in the Menu Name and click the Create Menu button to create your first menu.','Create your first menu below.'=>'Create your first menu below.','You cannot install because WordPress %2$s requires MySQL version %3$s or higher. You are running version %4$s.'=>'You cannot install because WordPress %2$s requires MySQL version %3$s or higher. You are running version %4$s.','You cannot install because WordPress %2$s requires PHP version %3$s or higher. You are running version %4$s.'=>'You cannot install because WordPress %2$s requires PHP version %3$s or higher. You are running version %4$s.','Learn more about updating PHP'=>'Learn more about updating PHP','What is PHP and how does it affect my site?'=>'What is PHP and how does it affect my site?','PHP Update Required'=>'PHP Update Required','You can find more details and make changes on the Plugins screen.'=>'You can find more details and make changes on the Plugins screen.','One or more plugins failed to load properly.'=>'One or more plugins failed to load properly.','Could not resume the plugin.'=>'Could not resume the plugin.','Custom PHP fatal error handler.'=>'Custom PHP fatal error handler.','Custom PHP error message.'=>'Custom PHP error message.','Could not remove the old translation.'=>'Could not remove the old translation.','Removing the old version of the translation…'=>'Removing the old version of the translation…','Click here to update WordPress.'=>'Click here to update WordPress.','Error: This plugin requires a newer version of WordPress.'=>'ERROR: this plugin requires a newer version of WordPress.','Click here to learn more about updating PHP.'=>'Click here to learn more about updating PHP.','Error: This plugin requires a newer version of PHP.'=>'ERROR: this plugin requires a newer version of PHP.','Add widget: %s'=>'Add widget: %s','Add to: %s'=>'Add to: %s','Track %s.'=>'Track %s.','My Network'=>'My Network','This plugin does not work with your version of PHP.'=>'This plugin does not work with your version of PHP.','This plugin does not work with your version of WordPress.'=>'This plugin does not work with your version of WordPress.','This plugin does not work with your versions of WordPress and PHP.'=>'This plugin does not work with your versions of WordPress and PHP.','https://wordpress.org/documentation/wordpress-version/version-%s/'=>'https://wordpress.org/documentation/wordpress-version/version-%s/','Resume'=>'Resume','pluginResume %s'=>'Resume %s','You can find more details and make changes on the Themes screen.'=>'You can find more details and make changes on the Themes screen.','One or more themes failed to load properly.'=>'One or more themes failed to load properly.','Could not resume the theme.'=>'Could not resume the theme.','Deleting a category does not delete the posts in that category. Instead, posts that were only assigned to the deleted category are set to the default category %s. The default category cannot be deleted.'=>'Deleting a category does not delete the posts in that category. Instead, posts that were only assigned to the deleted category are set to the default category %s. The default category cannot be deleted.','The block widgets require JavaScript. Please enable JavaScript in your browser settings, or install the Classic Widgets plugin.'=>'The block widgets require JavaScript. Please enable JavaScript in your browser settings, or install the Classic Widgets plugin.','A post type mismatch has been detected.'=>'A post type mismatch has been detected.','A post ID mismatch has been detected.'=>'A post ID mismatch has been detected.','Please open the classic editor to use this meta box.'=>'Please open the Classic Editor plugin to use this meta box.','Please activate the Classic Editor plugin to use this meta box.'=>'Please activate the Classic Editor plugin to use this meta box.','Please install the Classic Editor plugin to use this meta box.'=>'Please install the Classic Editor plugin to use this meta box.','This meta box is not compatible with the block editor.'=>'This meta box is not compatible with the block editor.','To distribute copies of your modified versions to others.'=>'To distribute copies of your modified versions to others.','The 4th Freedom'=>'The Fourth Freedom','To redistribute.'=>'To redistribute.','The 3rd Freedom'=>'The Third Freedom','To study how the program works and change it to make it do what you wish.'=>'To study how the program works and change it to make it do what you wish.','The 2nd Freedom'=>'The Second Freedom','To run the program for any purpose.'=>'To run the program for any purpose.','The 1st Freedom'=>'The First Freedom','Created'=>'Created','Welcome to WordPress. This is your first post. Edit or delete it, then start writing!'=>'Welcome to WordPress. This is your first post. Edit or delete it, then start writing!','As a new WordPress user, you should go to your dashboard to delete this page and create new pages for your content. Have fun!'=>'As a new WordPress user, you should go to your dashboard to delete this page and create new pages for your content. Have fun!','The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.'=>'The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.','...or something like this:'=>'...or something like this:','Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like piña coladas. (And gettin\' caught in the rain.)'=>'Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like piña coladas. (And gettin\' caught in the rain.)','This is an example page. It\'s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:'=>'This is an example page. It\'s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:','Export “%s” as JSON'=>'Export “%s” as JSON','1 pattern not updated, somebody is editing it.'=>'1 pattern not updated, somebody is editing it.','%s pattern restored from the Trash.'=>'%s pattern restored from the Bin.' . "\0" . '%s patterns restored from the Bin.','Error: "Table Prefix" must not be empty.'=>'Error: "Table Prefix" must not be empty.','This meta box, from the %s plugin, is not compatible with the block editor.'=>'This meta box, from the %s plugin, is not compatible with the block editor.','personal data group labelAbout'=>'About','page titleAbout'=>'About','Edit or preview your Privacy Policy page content.'=>'Edit or preview your Privacy Policy page content.','Privacy Policy Page'=>'Privacy Policy Page','%s (Draft)'=>'%s (Draft)','Privacy Policy page updated successfully.'=>'Privacy Policy page updated successfully.','The suggested privacy policy content should be added by using the %s (or later) action. Please see the inline documentation.'=>'The suggested privacy policy content should be added by using the %s (or later) action. Please see the inline documentation.','The suggested privacy policy content should be added only in wp-admin by using the %s (or later) action.'=>'The suggested privacy policy content should be added only in wp-admin by using the %s (or later) action.','The suggested privacy policy text has changed. Please review the guide and update your privacy policy.'=>'The suggested privacy policy text has changed. Please review the guide and update your privacy policy.','There are no pages.'=>'There are no pages.','Need help putting together your new Privacy Policy page? Check out our privacy policy guide%3$s for recommendations on what content to include, along with policies suggested by your plugins and theme.'=>'Need help putting together your new Privacy Policy page? Check out our privacy policy guide%3$s for recommendations on what content to include, along with policies suggested by your plugins and theme.','Privacy Policy Guide'=>'Privacy Policy Guide','Visitor comments may be checked through an automated spam detection service.'=>'Visitor comments may be checked through an automated spam detection service.','In this subsection you should note what analytics package you use, how users can opt out of analytics tracking, and a link to your analytics provider’s privacy policy, if any.'=>'In this subsection you should note what analytics package you use, how users can opt out of analytics tracking, and a link to your analytics provider’s privacy policy, if any.','In this subsection you should note what information may be disclosed by users who can upload media files. All uploaded files are usually publicly accessible.'=>'In this subsection you should note what information may be disclosed by users who can upload media files. All uploaded files are usually publicly accessible.','In this subsection you should note what information is captured through comments. We have noted the data which WordPress collects by default.'=>'In this subsection you should note what information is captured through comments. We have noted the data which WordPress collects by default.','In this section you should note what personal data you collect from users and site visitors. This may include personal data, such as name, email address, personal account preferences; transactional data, such as purchase information; and technical data, such as information about cookies.'=>'In this section you should note what personal data you collect from users and site visitors. This may include personal data, such as name, email address, personal account preferences; transactional data, such as purchase information; and technical data, such as information about cookies.','Suggested text:'=>'Suggested text:','The template contains a suggestion of sections you most likely will need. Under each section heading, you will find a short summary of what information you should provide, which will help you to get started. Some sections include suggested policy content, others will have to be completed with information from your theme and plugins.'=>'The template contains a suggestion of sections you will most likely need. Under each section heading, you will find a short summary of what information you should provide, which will help you to get started. Some sections include suggested policy content, others will have to be completed with information from your theme and plugins.','Updated %s.'=>'Updated %s.','You deactivated this plugin on %s and may no longer need this policy.'=>'You deactivated this plugin on %s and may no longer need this policy.','Removed %s.'=>'Removed %s.','Introduction'=>'Introduction','Need help putting together your new Privacy Policy page? Check out our guide for recommendations on what content to include, along with policies suggested by your plugins and theme.'=>'Need help putting together your new Privacy Policy page? Check out our guide for recommendations on what content to include, along with policies suggested by your plugins and theme.','Erasing data...'=>'Erasing data...','Add Data Erasure Request'=>'Add Data Erasure Request','Send export link'=>'Send export link','If you are a member of a regulated industry, or if you are subject to additional privacy laws, you may be required to disclose that information here.'=>'If you are a member of a regulated industry, or if you are subject to additional privacy laws, you may be required to disclose that information here.','Industry regulatory disclosure requirements'=>'Industry regulatory disclosure requirements','If your website provides a service which includes automated decision making - for example, allowing customers to apply for credit, or aggregating their data into an advertising profile - you must note that this is taking place, and include information about how that information is used, what decisions are made with that aggregated data, and what rights users have over decisions made without human intervention.'=>'If your website provides a service which includes automated decision making – for example, allowing customers to apply for credit, or aggregating their data into an advertising profile – you must note that this is taking place, and include information about how that information is used, what decisions are made with that aggregated data, and what rights users have over decisions made without human intervention.','What automated decision making and/or profiling we do with user data'=>'What automated decision making and/or profiling we do with user data','If your website receives data about users from third parties, including advertisers, this information must be included within the section of your privacy policy dealing with third party data.'=>'If your website receives data about users from third parties, including advertisers, this information must be included within the section of your privacy policy dealing with third-party data.','What third parties we receive data from'=>'What third parties we receive data from','In this section you should explain what procedures you have in place to deal with data breaches, either potential or real, such as internal reporting systems, contact mechanisms, or bug bounties.'=>'In this section, you should explain what procedures you have in place to deal with data breaches, either potential or real, such as internal reporting systems, contact mechanisms, or bug bounties.','What data breach procedures we have in place'=>'What data breach procedures we have in place','In this section you should explain what measures you have taken to protect your users’ data. This could include technical measures such as encryption; security measures such as two factor authentication; and measures such as staff training in data protection. If you have carried out a Privacy Impact Assessment, you can mention it here too.'=>'In this section you should explain what measures you have taken to protect your users’ data. This could include technical measures such as encryption; security measures such as two-factor authentication; and measures such as staff training in data protection. If you have carried out a Privacy Impact Assessment, you can mention it here too.','How we protect your data'=>'How we protect your data','If you use your site for commercial purposes and you engage in more complex collection or processing of personal data, you should note the following information in your privacy policy in addition to the information we have already discussed.'=>'If you use your site for commercial purposes and you engage in more complex collection or processing of personal data, you should note the following information in your privacy policy in addition to the information we have already discussed.','Additional information'=>'Additional information','In this section you should provide a contact method for privacy-specific concerns. If you are required to have a Data Protection Officer, list their name and full contact details here as well.'=>'In this section, you should provide a contact method for privacy-specific concerns. If you are required to have a Data Protection Officer, list their name and full contact details here as well.','European data protection law requires data about European residents which is transferred outside the European Union to be safeguarded to the same standards as if the data was in Europe. So in addition to listing where data goes, you should describe how you ensure that these standards are met either by yourself or by your third party providers, whether that is through an agreement such as Privacy Shield, model clauses in your contracts, or binding corporate rules.'=>'European data protection law requires data about European residents which is transferred outside the European Union to be safeguarded to the same standards as if the data was in Europe. So in addition to listing where data goes, you should describe how you ensure that these standards are met either by yourself or by your third-party providers, whether that is through an agreement such as Privacy Shield, model clauses in your contracts, or binding corporate rules.','In this section you should list all transfers of your site data outside the European Union and describe the means by which that data is safeguarded to European data protection standards. This could include your web hosting, cloud storage, or other third party services.'=>'In this section, you should list all transfers of your site data outside the European Union and describe the means by which that data is safeguarded to European data protection standards. This could include your web hosting, cloud storage, or other third party services.','If you have an account on this site, or have left comments, you can request to receive an exported file of the personal data we hold about you, including any data you have provided to us. You can also request that we erase any personal data we hold about you. This does not include any data we are obliged to keep for administrative, legal, or security purposes.'=>'If you have an account on this site, or have left comments, you can request to receive an exported file of the personal data we hold about you, including any data you have provided to us. You can also request that we erase any personal data we hold about you. This does not include any data we are obliged to keep for administrative, legal, or security purposes.','In this section you should explain what rights your users have over their data and how they can invoke those rights.'=>'In this section, you should explain what rights your users have over their data and how they can invoke those rights.','What rights you have over your data'=>'What rights you have over your data','For users that register on our website (if any), we also store the personal information they provide in their user profile. All users can see, edit, or delete their personal information at any time (except they cannot change their username). Website administrators can also see and edit that information.'=>'For users that register on our website (if any), we also store the personal information they provide in their user profile. All users can see, edit, or delete their personal information at any time (except they cannot change their username). Website administrators can also see and edit that information.','If you leave a comment, the comment and its metadata are retained indefinitely. This is so we can recognize and approve any follow-up comments automatically instead of holding them in a moderation queue.'=>'If you leave a comment, the comment and its metadata are retained indefinitely. This is so we can recognise and approve any follow-up comments automatically instead of holding them in a moderation queue.','In this section you should explain how long you retain personal data collected or processed by the website. While it is your responsibility to come up with the schedule of how long you keep each dataset for and why you keep it, that information does need to be listed here. For example, you may want to say that you keep contact form entries for six months, analytics records for a year, and customer purchase records for ten years.'=>'In this section you should explain how long you retain personal data collected or processed by the website. While it is your responsibility to come up with the schedule of how long you keep each dataset and why you keep it, that information does need to be listed here. For example, you may want to say that you keep contact form entries for six months, analytics records for a year, and customer purchase records for ten years.','How long we retain your data'=>'How long we retain your data','By default WordPress does not share any personal data with anyone.'=>'By default WordPress does not share any personal data with anyone.','In this section you should name and list all third party providers with whom you share site data, including partners, cloud-based services, payment processors, and third party service providers, and note what data you share with them and why. Link to their own privacy policies if possible.'=>'In this section, you should name and list all third-party providers with whom you share site data, including partners, cloud-based services, payment processors, and third party service providers, and note what data you share with them and why. Link to their own privacy policies if possible.','Who we share your data with'=>'Who we share your data with','By default WordPress does not collect any analytics data. However, many web hosting accounts collect some anonymous analytics data. You may also have installed a WordPress plugin that provides analytics services. In that case, add information from that plugin here.'=>'By default, WordPress does not collect any analytics data. However, many web hosting accounts collect some anonymous analytics data. You may also have installed a WordPress plugin that provides analytics services. In that case, add information from that plugin here.','Analytics'=>'Analytics','These websites may collect data about you, use cookies, embed additional third-party tracking, and monitor your interaction with that embedded content, including tracking your interaction with the embedded content if you have an account and are logged in to that website.'=>'These websites may collect data about you, use cookies, embed additional third-party tracking, and monitor your interaction with that embedded content, including tracking your interaction with the embedded content if you have an account and are logged in to that website.','Articles on this site may include embedded content (e.g. videos, images, articles, etc.). Embedded content from other websites behaves in the exact same way as if the visitor has visited the other website.'=>'Articles on this site may include embedded content (e.g. videos, images, articles, etc.). Embedded content from other websites behaves in the exact same way as if the visitor has visited the other website.','Embedded content from other websites'=>'Embedded content from other websites','If you edit or publish an article, an additional cookie will be saved in your browser. This cookie includes no personal data and simply indicates the post ID of the article you just edited. It expires after 1 day.'=>'If you edit or publish an article, an additional cookie will be saved in your browser. This cookie includes no personal data and simply indicates the post ID of the article you just edited. It expires after 1 day.','When you log in, we will also set up several cookies to save your login information and your screen display choices. Login cookies last for two days, and screen options cookies last for a year. If you select "Remember Me", your login will persist for two weeks. If you log out of your account, the login cookies will be removed.'=>'When you log in, we will also set up several cookies to save your login information and your screen display choices. Login cookies last for two days, and screen options cookies last for a year. If you select "Remember Me", your login will persist for two weeks. If you log out of your account, the login cookies will be removed.','If you visit our login page, we will set a temporary cookie to determine if your browser accepts cookies. This cookie contains no personal data and is discarded when you close your browser.'=>'If you visit our login page, we will set a temporary cookie to determine if your browser accepts cookies. This cookie contains no personal data and is discarded when you close your browser.','If you leave a comment on our site you may opt-in to saving your name, email address and website in cookies. These are for your convenience so that you do not have to fill in your details again when you leave another comment. These cookies will last for one year.'=>'If you leave a comment on our site you may opt in to saving your name, email address and website in cookies. These are for your convenience so that you do not have to fill in your details again when you leave another comment. These cookies will last for one year.','In this subsection you should list the cookies your website uses, including those set by your plugins, social media, and analytics. We have provided the cookies which WordPress installs by default.'=>'In this subsection you should list the cookies your website uses, including those set by your plugins, social media, and analytics. We have provided the cookies which WordPress installs by default.','Cookies'=>'Cookies','An anonymized string created from your email address (also called a hash) may be provided to the Gravatar service to see if you are using it. The Gravatar service privacy policy is available here: https://automattic.com/privacy/. After approval of your comment, your profile picture is visible to the public in the context of your comment.'=>'An anonymised string created from your email address (also called a hash) may be provided to the Gravatar service to see if you are using it. The Gravatar service Privacy Policy is available here: https://automattic.com/privacy/. After approval of your comment, your profile picture is visible to the public in the context of your comment.','When visitors leave comments on the site we collect the data shown in the comments form, and also the visitor’s IP address and browser user agent string to help spam detection.'=>'When visitors leave comments on the site we collect the data shown in the comments form, and also the visitor’s IP address and browser user agent string to help spam detection.','By default, WordPress does not include a contact form. If you use a contact form plugin, use this subsection to note what personal data is captured when someone submits a contact form, and how long you keep it. For example, you may note that you keep contact form submissions for a certain period for customer service purposes, but you do not use the information submitted through them for marketing purposes.'=>'By default, WordPress does not include a contact form. If you use a contact form plugin, use this subsection to note what personal data is captured when someone submits a contact form, and how long you keep it. For example, you may note that you keep contact form submissions for a certain period for customer service purposes, but you do not use the information submitted through them for marketing purposes.','Contact forms'=>'Contact forms','If you upload images to the website, you should avoid uploading images with embedded location data (EXIF GPS) included. Visitors to the website can download and extract any location data from images on the website.'=>'If you upload images to the website, you should avoid uploading images with embedded location data (EXIF GPS) included. Visitors to the website can download and extract any location data from images on the website.','By default WordPress does not collect any personal data about visitors, and only collects the data shown on the User Profile screen from registered users. However some of your plugins may collect personal data. You should add the relevant information below.'=>'By default WordPress does not collect any personal data about visitors, and only collects the data shown on the User Profile screen from registered users. However some of your plugins may collect personal data. You should add the relevant information below.','Personal data is not just created by a user’s interactions with your site. Personal data is also generated from technical processes such as contact forms, comments, cookies, analytics, and third party embeds.'=>'Personal data is not just created by a user’s interactions with your site. Personal data is also generated from technical processes such as contact forms, comments, cookies, analytics, and third-party embeds.','In addition to listing what personal data you collect, you need to note why you collect it. These explanations must note either the legal basis for your data collection and retention or the active consent the user has given.'=>'In addition to listing what personal data you collect, you need to note why you collect it. These explanations must note either the legal basis for your data collection and retention or the active consent the user has given.','You should also note any collection and retention of sensitive personal data, such as data concerning health.'=>'You should also note any collection and retention of sensitive personal data, such as data concerning health.','What personal data we collect and why we collect it'=>'What personal data we collect and why we collect it','Our website address is: %s.'=>'Our website address is: %s.','The amount of information you may be required to show will vary depending on your local or national business regulations. You may, for example, be required to display a physical address, a registered address, or your company registration number.'=>'The amount of information you may be required to show will vary depending on your local or national business regulations. You may, for example, be required to display a physical address, a registered address, or your company registration number.','In this section you should note your site URL, as well as the name of the company, organization, or individual behind it, and some accurate contact information.'=>'In this section, you should note your site URL, as well as the name of the company, organisation, or individual behind it, and some accurate contact information.','Who we are'=>'Who we are','It is your responsibility to write a comprehensive privacy policy, to make sure it reflects all national and international legal requirements on privacy, and to keep your policy current and accurate.'=>'It is your responsibility to write a comprehensive privacy policy, to make sure it reflects all national and international legal requirements on privacy, and to keep your policy current and accurate.','Please edit your privacy policy content, making sure to delete the summaries, and adding any information from your theme and plugins. Once you publish your policy page, remember to add it to your navigation menu.'=>'Please edit your privacy policy content, making sure to delete the summaries, and adding any information from your theme and plugins. Once you publish your policy page, remember to add it to your navigation menu.','This text template will help you to create your website’s privacy policy.'=>'This text template will help you to create your website’s privacy policy.','As a website owner, you may need to follow national or international privacy laws. For example, you may need to create and display a privacy policy.'=>'As a website owner, you may need to follow national or international privacy laws. For example, you may need to create and display a privacy policy.','Force erasure has failed.'=>'Force erasure has failed.','Email could not be sent.'=>'Email could not be sent.','date/timeOn'=>'On','website URLAt URL'=>'At URL','website nameFor site'=>'For site','email addressReport generated for'=>'Report generated for','Exporter array at index %s does not include a friendly name.'=>'Exporter array at index %s does not include a friendly name.','Sorry, you are not allowed to erase personal data on this site.'=>'Sorry, you are not allowed to erase personal data on this site.','Sorry, you are not allowed to export personal data on this site.'=>'Sorry, you are not allowed to export personal data on this site.','Eraser index is out of range.'=>'Eraser index is out of range.','Missing eraser index.'=>'Missing eraser index.','Expected done (boolean) in response array from exporter: %s.'=>'Expected done (boolean) in response array from exporter: %s.','Expected data array in response array from exporter: %s.'=>'Expected data array in response array from exporter: %s.','Expected data in response array from exporter: %s.'=>'Expected data in response array from exporter: %s.','Expected response as an array from exporter: %s.'=>'Expected response as an array from exporter: %s.','Exporter callback is not a valid callback: %s.'=>'Exporter callback is not a valid callback: %s.','Exporter does not include a callback: %s.'=>'Exporter does not include a callback: %s.','Expected an array describing the exporter at index %s.'=>'Expected an array describing the exporter at index %s.','Exporter index is out of range.'=>'Exporter index is out of range.','Exporter index cannot be negative.'=>'Exporter index cannot be negative.','An exporter has improperly used the registration filter.'=>'An exporter has improperly used the registration filter.','Missing page index.'=>'Missing page index.','Missing exporter index.'=>'Missing exporter index.','Invalid request type.'=>'Invalid request type.','Use This Page'=>'Use This Page','Select a Privacy Policy page'=>'Select a Privacy Policy page','Change your Privacy Policy page'=>'Change your Privacy Policy page','Edit or view your Privacy Policy page content.'=>'Edit or view your Privacy Policy page content.','You should also review your privacy policy from time to time, especially after installing or updating any themes or plugins. There may be changes or new suggested information for you to consider adding to your policy.'=>'You should also review your privacy policy from time to time, especially after installing or updating any themes or plugins. There may be changes or new suggested information for you to consider adding to your policy.','However, it is your responsibility to use those resources correctly, to provide the information that your privacy policy requires, and to keep that information current and accurate.'=>'However, it is your responsibility to use those resources correctly, to provide the information that your privacy policy requires, and to keep that information current and accurate.','The new page will include help and suggestions for your privacy policy.'=>'The new page will include help and suggestions for your privacy policy.','If you already have a Privacy Policy page, please select it below. If not, please create one.'=>'If you already have a Privacy Policy page, please select it below. If not, please create one.','The currently selected Privacy Policy page is in the Trash. Please create or select a new Privacy Policy page or restore the current page.'=>'The currently selected Privacy Policy page is in the Bin. Please create or select a new Privacy Policy page or restore the current page.','The currently selected Privacy Policy page does not exist. Please create or select a new page.'=>'The currently selected Privacy Policy page does not exist. Please create or select a new page.','Unable to create a Privacy Policy page.'=>'Unable to create a Privacy Policy page.','privacy-policy'=>'privacy-policy','Privacy Policy page setting updated successfully. Remember to update your menus!'=>'Privacy Policy page setting updated successfully. Remember to update your menus!','Copy suggested policy text from %s.'=>'Copy suggested policy text from %s.','Howdy, +Any changes to the directives between these markers will be overwritten.','All automatic updates are disabled.'=>'All automatic updates are disabled.','Database collation'=>'Database collation','Database charset'=>'Database charset','Inactive Themes'=>'Inactive Themes','Parent Theme'=>'Parent Theme','Drop-ins are single files, found in the %s directory, that replace or enhance WordPress features in ways that are not possible for traditional plugins.'=>'Drop-ins are single files, found in the %s directory, that replace or enhance WordPress features in ways that are not possible for traditional plugins.','personal data group descriptionOverview of export report.'=>'Overview of export report.','Documentation on Writing Settings'=>'Documentation on Writing Settings','Documentation on Tags'=>'Documentation on Tags','Documentation on Categories'=>'Documentation on Categories','Your theme determines how content is displayed in browsers. Learn more about feeds.'=>'Your theme determines how content is displayed in browsers. Learn more about feeds.','For each post in a feed, include'=>'For each post in a feed, include','Warning: these pages should not be the same as your Privacy Policy page!'=>'Warning: these pages should not be the same as your Privacy Policy page!','Documentation on Reading Settings'=>'Documentation on Reading Settings','[%s] Delete My Site'=>'[%s] Delete My Site','Allow people to submit comments on new posts'=>'Allow people to submit comments on new posts','Default post settings'=>'Default post settings','You can change your profile picture on Gravatar.'=>'You can change your profile picture on Gravatar.','Plugin resumed.'=>'Plugin resumed.','Selected plugins deactivated.'=>'Selected plugins deactivated.','Plugin deactivated.'=>'Plugin deactivated.','Selected plugins activated.'=>'Selected plugins activated.','Plugin activated.'=>'Plugin activated.','The selected plugins have been deleted.'=>'The selected plugins have been deleted.','The selected plugin has been deleted.'=>'The selected plugin has been deleted.','The plugin %1$s has been deactivated due to an error: %2$s'=>'The plugin %1$s has been deactivated due to an error: %2$s','If you need to tweak more than your theme’s CSS, you might want to try making a child theme.'=>'If you need to tweak more than your theme’s CSS, you might want to try making a child theme.','You appear to be making direct edits to your theme in the WordPress dashboard. It is not recommended! Editing your theme directly could break your site and your changes may be lost in future updates.'=>'You appear to be making direct edits to your theme in the WordPress dashboard. It is not recommended! Editing your theme directly could break your site and your changes may be lost in future updates.','draft_length10'=>'10','File does not exist! Please double check the name and try again.'=>'File does not exist! Please double check the name and try again.','%1$s needs to be a %2$s object.'=>'%1$s needs to be a %2$s object.','You are in recovery mode. This means there may be an error with a theme or plugin. To exit recovery mode, log out or use the Exit button. Exit Recovery Mode'=>'You are in recovery mode. This means there may be an error with a theme or plugin. To exit recovery mode, log out or use the Exit button. Exit Recovery Mode','Site HealthInfo'=>'Info','Site HealthStatus'=>'Status','Themes directory location'=>'Themes directory location','comment statusClosed'=>'Closed','%s critical issue'=>'%s critical issue' . "\0" . '%s critical issues','https://wordpress.org/documentation/article/updating-wordpress/'=>'https://wordpress.org/documentation/article/updating-wordpress/','Get help resolving this issue.'=>'Get help resolving this issue.','Learn more about what WordPress requires to run.'=>'Learn more about what WordPress requires to run.','https://wordpress.org/about/requirements/'=>'https://wordpress.org/about/requirements/','The SQL server is a required piece of software for the database WordPress uses to store all your site’s content and settings.'=>'The SQL server is a required piece of software for the database WordPress uses to store all your site’s content and settings.','PHP modules perform most of the tasks on the server that make your site run. Any changes to these must be made by your server administrator.'=>'PHP modules perform most of the tasks on the server that make your site run. Any changes to these must be made by your server administrator.','Manage your themes'=>'Manage your themes','Manage inactive plugins'=>'Manage inactive plugins','Update your plugins'=>'Update your plugins','Manage your plugins'=>'Manage your plugins','View Privacy Policy Guide.'=>'View Privacy Policy Guide.','User Language'=>'User Language','The value, %1$s, has either been enabled by %2$s or added to your configuration file. This will make errors display on the front end of your site.'=>'The value, %1$s, has either been enabled by %2$s or added to your configuration file. This will make errors display on the front end of your site.','[%s] Background Update Finished'=>'[%s] Background Update Finished','[%s] Background Update Failed'=>'[%s] Background Update Failed','Plugin could not be resumed because it triggered a fatal error.'=>'Plugin could not be resumed because it triggered a fatal error.','You should remove inactive themes'=>'You should remove inactive themes','Your site has 1 installed theme, and it is up to date.'=>'Your site has 1 installed theme, and it is up to date.','Your site has 1 active plugin, and it is up to date.'=>'Your site has 1 active plugin, and it is up to date.','Passed tests'=>'Passed tests','Sorry, you are not allowed to access site health information.'=>'Sorry, you are not allowed to access site health information.','Copy site info to clipboard'=>'Copy site info to clipboard','If you want to export a handy list of all the information on this page, you can use the button below to copy it to the clipboard. You can then paste it in a text file and save it to your device, or paste it in an email exchange with a support engineer or theme/plugin developer for example.'=>'If you want to export a handy list of all the information on this page, you can use the button below to copy it to the clipboard. You can then paste it in a text file and save it to your device, or paste it in an email exchange with a support engineer or theme/plugin developer for example.','The Site Health check requires JavaScript.'=>'The Site Health check requires JavaScript.','Site Health Info'=>'Site Health Info','This update does not work with your version of PHP.'=>'This update does not work with your version of PHP.','All formats'=>'All formats','Filter by post format'=>'Filter by post format','Go to the Plugins screen'=>'Go to the Plugins screen','The authenticity of %s could not be verified.'=>'The authenticity of %s could not be verified.','The authenticity of %s could not be verified as no signature was found.'=>'The authenticity of %s could not be verified as no signature was found.','The authenticity of %s could not be verified as signature verification is unavailable on this system.'=>'The authenticity of %s could not be verified as signature verification is unavailable on this system.','Eraser callback is not valid: %s.'=>'Eraser callback is not valid: %s.','Eraser does not include a callback: %s.'=>'Eraser does not include a callback: %s.','Sorry, you are not allowed to perform this action.'=>'Sorry, you are not allowed to perform this action.','HTTP requests have been blocked by the %1$s constant, with some allowed hosts: %2$s.'=>'HTTP requests have been blocked by the %1$s constant, with some allowed hosts: %2$s.','HTTP requests have been blocked by the %s constant, with no allowed hosts.'=>'HTTP requests have been blocked by the %s constant, with no allowed hosts.','You are using a %1$s drop-in which might mean that a %2$s database is not being used.'=>'You are using a %1$s drop-in which might mean that a %2$s database is not being used.','https://make.wordpress.org/hosting/handbook/handbook/server-environment/#php-extensions'=>'https://make.wordpress.org/hosting/handbook/handbook/server-environment/#php-extensions','The WordPress Hosting Team maintains a list of those modules, both recommended and required, in the team handbook%3$s.'=>'The WordPress Hosting Team maintains a list of those modules, both recommended and required, in the team handbook%3$s.','Performance'=>'Performance','Your site has %1$d inactive theme, other than %2$s, the default WordPress theme, and %3$s, your active theme.'=>'Your site has %1$d inactive theme, other than %2$s, the default WordPress theme, and %3$s, your active theme.' . "\0" . 'Your site has %1$d inactive themes, other than %2$s, the default WordPress theme, and %3$s, your active theme.','You should consider removing any unused themes to enhance your site’s security.'=>'You should consider removing any unused themes to enhance your site’s security.','Your site has %1$d inactive theme, other than %2$s, your active theme.'=>'Your site has %1$d inactive theme, other than %2$s, your active theme.' . "\0" . 'Your site has %1$d inactive themes, other than %2$s, your active theme.','Your site has %d inactive theme.'=>'Your site has %d inactive theme.' . "\0" . 'Your site has %d inactive themes.','Inactive plugins are tempting targets for attackers. If you are not going to use a plugin, you should consider removing it.'=>'Inactive plugins are tempting targets for attackers. If you are not going to use a plugin, you should consider removing it.','Your site has %d inactive plugin.'=>'Your site has %d inactive plugin.' . "\0" . 'Your site has %d inactive plugins.','Security'=>'Security','Erase personal data list'=>'Erase personal data list','Erase personal data list navigation'=>'Erase personal data list navigation','Filter erase personal data list'=>'Filter erase personal data list','Export personal data list'=>'Export personal data list','Export personal data list navigation'=>'Export personal data list navigation','Filter export personal data list'=>'Filter export personal data list','There is a new version of %1$s available, but it does not work with your version of PHP. View version %4$s details or learn more about updating PHP.'=>'There is a new version of %1$s available, but it does not work with your version of PHP. View version %4$s details or learn more about updating PHP.','This plugin failed to load properly and is paused during recovery mode.'=>'This plugin failed to load properly and is paused during recovery mode.','Go to the Themes screen'=>'Go to the Themes screen','Total size is not available. Some errors were encountered when determining the size of your installation.'=>'Total size is not available. Some errors were encountered when determining the size of your installation.','The size cannot be calculated. The directory is not accessible. Usually caused by invalid permissions.'=>'The size cannot be calculated. The directory is not accessible. Usually caused by invalid permissions.','The directory size calculation has timed out. Usually caused by a very large number of sub-directories and files.'=>'The directory size calculation has timed out. Usually caused by a very large number of sub-directories and files.','These settings alter where and how parts of WordPress are loaded.'=>'These settings alter where and how parts of WordPress are loaded.','%s item with no issues detected'=>'%s item with no issues detected' . "\0" . '%s items with no issues detected','%s recommended improvement'=>'%s recommended improvement' . "\0" . '%s recommended improvements','The site health check shows information about your WordPress configuration and items that may need your attention.'=>'The site health check shows information about your WordPress configuration and items that may need your attention.','Site Health Status'=>'Site Health Status','Everything is running smoothly here.'=>'Everything is running smoothly here.','Great job!'=>'Great job!','Secondary menu'=>'Secondary menu','The loopback request to your site completed successfully.'=>'The loopback request to your site completed successfully.','The loopback request returned an unexpected http status code, %d, it was not possible to determine if this will prevent features from working as expected.'=>'The loopback request returned an unexpected http status code, %d, it was not possible to determine if this will prevent features from working as expected.','The loopback request to your site failed, this means features relying on them are not currently working as expected.'=>'The loopback request to your site failed, this means features relying on them are not currently working as expected.','No scheduled events exist on this site.'=>'No scheduled events exist on this site.','REST API availability'=>'REST API availability','Loopback request'=>'Loopback request','Debugging enabled'=>'Debugging enabled','HTTP Requests'=>'HTTP Requests','Scheduled events'=>'Scheduled events','Secure communication'=>'Secure communication','HTTPS status'=>'HTTPS status','PHP Extensions'=>'PHP Extensions','Database Server version'=>'Database Server version','PHP Version'=>'PHP Version','Theme Versions'=>'Theme Versions','Plugin Versions'=>'Plugin Versions','WordPress Version'=>'WordPress Version','The REST API did not process the %s query parameter correctly.'=>'The REST API did not process the %s query parameter correctly.','The REST API did not behave correctly'=>'The REST API did not behave correctly','The REST API encountered an unexpected result'=>'The REST API encountered an unexpected result','The REST API encountered an error'=>'The REST API encountered an error','The REST API is one way that WordPress and other applications communicate with the server. For example, the block editor screen relies on the REST API to display and save your posts and pages.'=>'The REST API is one way that WordPress and other applications communicate with the server. For example, the block editor screen relies on the REST API to display and save your posts and pages.','The REST API is available'=>'The REST API is available','HTTP requests are partially blocked'=>'HTTP requests are partially blocked','HTTP requests are blocked'=>'HTTP requests are blocked','It is possible for site maintainers to block all, or some, communication to other sites and services. If set up incorrectly, this may prevent plugins and themes from working as intended.'=>'It is possible for site maintainers to block all, or some, communication to other sites and services. If set up incorrectly, this may prevent plugins and themes from working as intended.','HTTP requests seem to be working as expected'=>'HTTP requests seem to be working as expected','Your site could not complete a loopback request'=>'Your site could not complete a loopback request','Loopback requests are used to run scheduled events, and are also used by the built-in editors for themes and plugins to verify code stability.'=>'Loopback requests are used to run scheduled events, and are also used by the built-in editors for themes and plugins to verify code stability.','Your site can perform loopback requests'=>'Your site can perform loopback requests','Background updates may not be working properly'=>'Background updates may not be working properly','Background updates are not working as expected'=>'Background updates are not working as expected','Passed'=>'Passed','Background updates ensure that WordPress can auto-update if a security update is released for the version you are currently using.'=>'Background updates ensure that WordPress can auto-update if a security update is released for the version you are currently using.','Background updates are working'=>'Background updates are working','The scheduled event, %s, failed to run. Your site still works, but this may indicate that scheduling posts or automated updates may not work as intended.'=>'The scheduled event, %s, failed to run. Your site still works, but this may indicate that scheduling posts or automated updates may not work as intended.','A scheduled event has failed'=>'A scheduled event has failed','While trying to test your site’s scheduled events, the following error was returned: %s'=>'While trying to test your site’s scheduled events, the following error was returned: %s','It was not possible to check your scheduled events'=>'It was not possible to check your scheduled events','Scheduled events are what periodically looks for updates to plugins, themes and WordPress itself. It is also what makes sure scheduled posts are published on time. It may also be used by various plugins to make sure that planned actions are executed.'=>'Scheduled events are what periodically looks for updates to plugins, themes and WordPress itself. It is also what makes sure scheduled posts are published on time. It may also be used by various plugins to make sure that planned actions are executed.','Scheduled events are running'=>'Scheduled events are running','Talk to your web host about OpenSSL support for PHP.'=>'Talk to your web host about OpenSSL support for PHP.','Your site is unable to communicate securely with other services'=>'Your site is unable to communicate securely with other services','Your site can communicate securely with other services'=>'Your site can communicate securely with other services','Securely communicating between servers are needed for transactions such as fetching files, conducting sales on store sites, and much more.'=>'Securely communicating between servers are needed for transactions such as fetching files, conducting sales on store sites, and much more.','Learn more about why you should use HTTPS'=>'Learn more about why you should use HTTPS','Your website does not use HTTPS'=>'Your website does not use HTTPS','Your website is using an active HTTPS connection'=>'Your website is using an active HTTPS connection','You are accessing this website using HTTPS, but your Site Address is not set up to use HTTPS by default.'=>'You are accessing this website using HTTPS, but your Site Address is not set up to use HTTPS by default.','Your site is set to display errors to site visitors'=>'Your site is set to display errors to site visitors','The value, %s, has been added to this website’s configuration file. This means any errors on the site will be written to a file which is potentially available to all users.'=>'The value, %s, has been added to this website’s configuration file. This means any errors on the site will be written to a file which is potentially available to all users.','Your site is set to log errors to a potentially public file'=>'Your site is set to log errors to a potentially public file','Debug mode is often enabled to gather more details about an error or site failure, but may contain sensitive information which should not be available on a publicly available website.'=>'Debug mode is often enabled to gather more details about an error or site failure, but may contain sensitive information which should not be available on a publicly available website.','Your site is not set to output debug information'=>'Your site is not set to output debug information','Your site is unable to reach WordPress.org at %1$s, and returned the error: %2$s'=>'Your site is unable to reach WordPress.org at %1$s, and returned the error: %2$s','Could not reach WordPress.org'=>'Could not reach WordPress.org','Communicating with the WordPress servers is used to check for new versions, and to both install and update WordPress core, themes or plugins.'=>'Communicating with the WordPress servers is used to check for new versions, and to both install and update WordPress core, themes or plugins.','Can communicate with WordPress.org'=>'Can communicate with WordPress.org','WordPress requires %1$s version %2$s or higher. Contact your web hosting company to correct this.'=>'WordPress requires %1$s version %2$s or higher. Contact your web hosting company to correct this.','Severely outdated SQL server'=>'Severely outdated SQL server','For optimal performance and security reasons, you should consider running %1$s version %2$s or higher. Contact your web hosting company to correct this.'=>'For optimal performance and security reasons, you should consider running %1$s version %2$s or higher. Contact your web hosting company to correct this.','Outdated SQL server'=>'Outdated SQL server','SQL server is up to date'=>'SQL server is up to date','One or more required modules are missing'=>'One or more required modules are missing','One or more recommended modules are missing'=>'One or more recommended modules are missing','The optional module, %s, is not installed, or has been disabled.'=>'The optional module, %s, is not installed, or has been disabled.','The required module, %s, is not installed, or has been disabled.'=>'The required module, %s, is not installed, or has been disabled.','Error'=>'Error','Required and recommended modules are installed'=>'Required and recommended modules are installed','Your site does not have any default theme. Default themes are used by WordPress automatically if anything is wrong with your chosen theme.'=>'Your site does not have any default theme. Default themes are used by WordPress automatically if anything is wrong with your chosen theme.','Have a default theme available'=>'Have a default theme available','To enhance your site’s security, you should consider removing any themes you are not using. You should keep %1$s, the default WordPress theme, %2$s, your active theme, and %3$s, its parent theme.'=>'To enhance your site’s security, you should consider removing any themes you are not using. You should keep %1$s, the default WordPress theme, %2$s, your active theme, and %3$s, its parent theme.','To enhance your site’s security, you should consider removing any themes you are not using. You should keep your active theme, %1$s, and %2$s, its parent theme.'=>'To enhance your site’s security, you should consider removing any themes you are not using. You should keep your active theme, %1$s, and %2$s, its parent theme.','You should remove inactive plugins'=>'You should remove inactive plugins','Your site has %d installed theme, and it is up to date.'=>'Your site has %d installed theme, and it is up to date.' . "\0" . 'Your site has %d installed themes, and they are all up to date.','Your site has %d theme waiting to be updated.'=>'Your site has %d theme waiting to be updated.' . "\0" . 'Your site has %d themes waiting to be updated.','You have themes waiting to be updated'=>'You have themes waiting to be updated','Themes add your site’s look and feel. It’s important to keep them up to date, to stay consistent with your brand and keep your site secure.'=>'Themes add your site’s look and feel. It’s important to keep them up to date, to stay consistent with your brand and keep your site secure.','Your themes are all up to date'=>'Your themes are all up to date','Your site has %d active plugin, and it is up to date.'=>'Your site has %d active plugin, and it is up to date.' . "\0" . 'Your site has %d active plugins, and they are all up to date.','Your site has %d plugin waiting to be updated.'=>'Your site has %d plugin waiting to be updated.' . "\0" . 'Your site has %d plugins waiting to be updated.','You have plugins waiting to be updated'=>'You have plugins waiting to be updated','Plugins extend your site’s functionality with things like contact forms, ecommerce and much more. That means they have deep access to your site, so it’s vital to keep them up to date.'=>'Plugins extend your site’s functionality with things like contact forms, ecommerce and much more. That means they have deep access to your site, so it’s vital to keep them up to date.','Your plugins are all up to date'=>'Your plugins are all up to date','You are currently running the latest version of WordPress available, keep it up!'=>'You are currently running the latest version of WordPress available, keep it up!','A new minor update is available for your site. Because minor updates often address security, it’s important to install them.'=>'A new minor update is available for your site. Because minor updates often address security, it’s important to install them.','A new version of WordPress is available.'=>'A new version of WordPress is available.','Install the latest version of WordPress'=>'Install the latest version of WordPress','WordPress update available (%s)'=>'WordPress update available (%s)','Check for updates manually'=>'Check for updates manually','Unable to check if any new versions of WordPress are available.'=>'Unable to check if any new versions of WordPress are available.','WordPress security and maintenance releases are blocked by the %s filter.'=>'WordPress security and maintenance releases are blocked by the %s filter.','WordPress security and maintenance releases are blocked by %s.'=>'WordPress security and maintenance releases are blocked by %s.','WordPress development updates are blocked by the %s filter.'=>'WordPress development updates are blocked by the %s filter.','WordPress development updates are blocked by the %s constant.'=>'WordPress development updates are blocked by the %s constant.','All of your WordPress files are writable.'=>'All of your WordPress files are writable.','Some files are not writable by WordPress:'=>'Some files are not writable by WordPress:','This could mean that connections are failing to WordPress.org.'=>'This could mean that connections are failing to WordPress.org.','Couldn\'t retrieve a list of the checksums for WordPress %s.'=>'Couldn\'t retrieve a list of the checksums for WordPress %s.','Your installation of WordPress does not require FTP credentials to perform updates.'=>'Your installation of WordPress does not require FTP credentials to perform updates.','(Your site is performing updates over FTP due to file ownership. Talk to your hosting company.)'=>'(Your site is performing updates over FTP due to file ownership. Talk to your hosting company.)','Your installation of WordPress prompts for FTP credentials to perform updates.'=>'Your installation of WordPress prompts for FTP credentials to perform updates.','No version control systems were detected.'=>'No version control systems were detected.','The folder %1$s was detected as being under version control (%2$s).'=>'The folder %1$s was detected as being under version control (%2$s).','The folder %1$s was detected as being under version control (%2$s), but the %3$s filter is allowing updates.'=>'The folder %1$s was detected as being under version control (%2$s), but the %3$s filter is allowing updates.','A previous automatic background update could not occur.'=>'A previous automatic background update could not occur.','The error code was %s.'=>'The error code was %s.','When you\'ve been able to update using the "Update now" button on Dashboard > Updates, this error will be cleared for future update attempts.'=>'When you\'ve been able to update using the "Update now" button on Dashboard > Updates, this error will be cleared for future update attempts.','You would have received an email because of this.'=>'You would have received an email because of this.','A previous automatic background update ended with a critical failure, so updates are now disabled.'=>'A previous automatic background update ended with a critical failure, so updates are now disabled.','The %s filter is enabled.'=>'The %s filter is enabled.','A plugin has prevented updates by disabling %s.'=>'A plugin has prevented updates by disabling %s.','The must use plugins directory'=>'The must use plugins directory','Theme features'=>'Theme features','Parent theme'=>'Parent theme','Author website'=>'Author website','(Latest version: %s)'=>'(Latest version: %s)','Version %1$s by %2$s'=>'Version %1$s by %2$s','No version or author information is available.'=>'No version or author information is available.','Server version'=>'Server version','Your %s file contains only core WordPress features.'=>'Your %s file contains only core WordPress features.','Custom rules have been added to your %s file.'=>'Custom rules have been added to your %s file.','.htaccess rules'=>'.htaccess rules','Is the Imagick library available?'=>'Is the Imagick library available?','Is SUHOSIN installed?'=>'Is SUHOSIN installed?','cURL version'=>'cURL version','PHP post max size'=>'PHP post max size','Upload max filesize'=>'Upload max filesize','Max input time'=>'Max input time','PHP memory limit'=>'PHP memory limit','PHP time limit'=>'PHP time limit','PHP max input variables'=>'PHP max input variables','Unable to determine some settings, as the %s function has been disabled.'=>'Unable to determine some settings, as the %s function has been disabled.','Server settings'=>'Server settings','PHP SAPI'=>'PHP SAPI','(Does not support 64bit values)'=>'(Does not support 64bit values)','(Supports 64bit values)'=>'(Supports 64bit values)','PHP version'=>'PHP version','Unable to determine what web server software is used'=>'Unable to determine what web server software is used','Web server'=>'Web server','Unable to determine server architecture'=>'Unable to determine server architecture','Server architecture'=>'Server architecture','Ghostscript version'=>'Ghostscript version','Unable to determine if Ghostscript is installed'=>'Unable to determine if Ghostscript is installed','GD version'=>'GD version','Imagick Resource Limits'=>'Imagick Resource Limits','ImageMagick version string'=>'ImageMagick version string','ImageMagick version number'=>'ImageMagick version number','Not available'=>'Not available','Active editor'=>'Active editor','Total installation size'=>'Total installation size','Database size'=>'Database size','WordPress directory size'=>'WordPress directory size','WordPress directory location'=>'WordPress directory location','Plugins directory size'=>'Plugins directory size','Plugins directory location'=>'Plugins directory location','Themes directory size'=>'Themes directory size','Theme directory location'=>'Theme directory location','Uploads directory size'=>'Uploads directory size','Uploads directory location'=>'Uploads directory location','Unable to reach WordPress.org at %1$s: %2$s'=>'Unable to reach WordPress.org at %1$s: %2$s','WordPress.org is reachable'=>'WordPress.org is reachable','Communication with WordPress.org'=>'Communication with WordPress.org','Network count'=>'Network count','Site count'=>'Site count','User count'=>'User count','The themes directory'=>'The themes directory','The plugins directory'=>'The plugins directory','The uploads directory'=>'The uploads directory','The wp-content directory'=>'The wp-content directory','Not writable'=>'Not writable','Writable'=>'Writable','The main WordPress directory'=>'The main WordPress directory','Shows whether WordPress is able to write to the directories it needs access to.'=>'Shows whether WordPress is able to write to the directories it needs access to.','Filesystem Permissions'=>'File system permissions','Undefined'=>'Undefined','WordPress Constants'=>'WordPress constants','Database'=>'Database','The options shown below relate to your server setup. If changes are required, you may need your web host’s assistance.'=>'The options shown below relate to your server setup. If changes are required, you may need your web host’s assistance.','Server'=>'Server','Media Handling'=>'Media Handling','Inactive Plugins'=>'Inactive Plugins','Active Plugins'=>'Active Plugins','Must Use Plugins'=>'Must Use Plugins','Active Theme'=>'Active theme','Drop-ins'=>'Drop-ins','Directories and Sizes'=>'Directories and Sizes','Is this a multisite?'=>'Is this a multisite?','Default comment status'=>'Default comment status','Can anyone register on this site?'=>'Can anyone register on this site?','Is this site using HTTPS?'=>'Is this site using HTTPS?','No permalink structure set'=>'No permalink structure set','Permalink structure'=>'Permalink structure','Site URL'=>'Site URL','Home URL'=>'Home URL','Site Health'=>'Site Health','requestsAll (%s)'=>'All (%s)' . "\0" . 'All (%d)','Show comments cookies opt-in checkbox, allowing comment author cookies to be set'=>'Show comments cookies opt in checkbox, allowing comment author cookies to be set','Next theme'=>'Next theme','Previous theme'=>'Previous theme','If you change this, an email will be sent at your new address to confirm it. The new address will not become active until confirmed.'=>'If you change this, an email will be sent at your new address to confirm it. The new address will not become active until confirmed.','Theme resumed.'=>'Theme resumed.','Theme could not be resumed because it triggered a fatal error.'=>'Theme could not be resumed because it triggered a fatal error.','If you notice “headers already sent” messages, problems with syndication feeds or other issues, try deactivating or removing this plugin.'=>'If you notice “ headers already sent ” messages, problems with syndication feeds or other issues, try deactivating or removing this plugin.','The plugin generated %d character of unexpected output during activation.'=>'The plugin generated %d character of unexpected output during activation.' . "\0" . 'The plugin generated %d characters of unexpected output during activation.','Sorry, you are not allowed to resume this plugin.'=>'Sorry, you are not allowed to resume this plugin.','WordPress Events and News — Upcoming events near you as well as the latest news from the official WordPress project and the WordPress Planet.'=>'WordPress Events and News — Upcoming events near you as well as the latest news from the official WordPress project and the WordPress Planet.','You cannot update because WordPress %2$s requires MySQL version %3$s or higher. You are running version %4$s.'=>'You cannot update because WordPress %2$s requires MySQL version %3$s or higher. You are running version %4$s.','You cannot update because WordPress %2$s requires PHP version %3$s or higher. You are running version %4$s.'=>'You cannot update because WordPress %2$s requires PHP version %3$s or higher. You are running version %4$s.','Add menu items'=>'Add menu items','or create a new menu. Do not forget to save your changes!'=>'or create a new menu. Do not forget to save your changes!','Click the Save Menu button to save your changes.'=>'Click the Save Menu button to save your changes.','Edit your menu below, or create a new menu. Do not forget to save your changes!'=>'Edit your menu below, or create a new menu. Do not forget to save your changes!','Fill in the Menu Name and click the Create Menu button to create your first menu.'=>'Fill in the Menu Name and click the Create Menu button to create your first menu.','Create your first menu below.'=>'Create your first menu below.','You cannot install because WordPress %2$s requires MySQL version %3$s or higher. You are running version %4$s.'=>'You cannot install because WordPress %2$s requires MySQL version %3$s or higher. You are running version %4$s.','You cannot install because WordPress %2$s requires PHP version %3$s or higher. You are running version %4$s.'=>'You cannot install because WordPress %2$s requires PHP version %3$s or higher. You are running version %4$s.','Learn more about updating PHP'=>'Learn more about updating PHP','What is PHP and how does it affect my site?'=>'What is PHP and how does it affect my site?','PHP Update Required'=>'PHP Update Required','You can find more details and make changes on the Plugins screen.'=>'You can find more details and make changes on the Plugins screen.','One or more plugins failed to load properly.'=>'One or more plugins failed to load properly.','Could not resume the plugin.'=>'Could not resume the plugin.','Custom PHP fatal error handler.'=>'Custom PHP fatal error handler.','Custom PHP error message.'=>'Custom PHP error message.','Could not remove the old translation.'=>'Could not remove the old translation.','Removing the old version of the translation…'=>'Removing the old version of the translation…','Click here to update WordPress.'=>'Click here to update WordPress.','Error: This plugin requires a newer version of WordPress.'=>'ERROR: this plugin requires a newer version of WordPress.','Click here to learn more about updating PHP.'=>'Click here to learn more about updating PHP.','Error: This plugin requires a newer version of PHP.'=>'ERROR: this plugin requires a newer version of PHP.','Add widget: %s'=>'Add widget: %s','Add to: %s'=>'Add to: %s','Track %s.'=>'Track %s.','My Network'=>'My Network','This plugin does not work with your version of PHP.'=>'This plugin does not work with your version of PHP.','This plugin does not work with your version of WordPress.'=>'This plugin does not work with your version of WordPress.','This plugin does not work with your versions of WordPress and PHP.'=>'This plugin does not work with your versions of WordPress and PHP.','https://wordpress.org/documentation/wordpress-version/version-%s/'=>'https://wordpress.org/documentation/wordpress-version/version-%s/','Resume'=>'Resume','pluginResume %s'=>'Resume %s','You can find more details and make changes on the Themes screen.'=>'You can find more details and make changes on the Themes screen.','One or more themes failed to load properly.'=>'One or more themes failed to load properly.','Could not resume the theme.'=>'Could not resume the theme.','Deleting a category does not delete the posts in that category. Instead, posts that were only assigned to the deleted category are set to the default category %s. The default category cannot be deleted.'=>'Deleting a category does not delete the posts in that category. Instead, posts that were only assigned to the deleted category are set to the default category %s. The default category cannot be deleted.','The block widgets require JavaScript. Please enable JavaScript in your browser settings, or install the Classic Widgets plugin.'=>'The block widgets require JavaScript. Please enable JavaScript in your browser settings, or install the Classic Widgets plugin.','A post type mismatch has been detected.'=>'A post type mismatch has been detected.','A post ID mismatch has been detected.'=>'A post ID mismatch has been detected.','Please open the classic editor to use this meta box.'=>'Please open the Classic Editor plugin to use this meta box.','Please activate the Classic Editor plugin to use this meta box.'=>'Please activate the Classic Editor plugin to use this meta box.','Please install the Classic Editor plugin to use this meta box.'=>'Please install the Classic Editor plugin to use this meta box.','This meta box is not compatible with the block editor.'=>'This meta box is not compatible with the block editor.','To distribute copies of your modified versions to others.'=>'To distribute copies of your modified versions to others.','The 4th Freedom'=>'The Fourth Freedom','To redistribute.'=>'To redistribute.','The 3rd Freedom'=>'The Third Freedom','To study how the program works and change it to make it do what you wish.'=>'To study how the program works and change it to make it do what you wish.','The 2nd Freedom'=>'The Second Freedom','To run the program for any purpose.'=>'To run the program for any purpose.','The 1st Freedom'=>'The First Freedom','Created'=>'Created','Welcome to WordPress. This is your first post. Edit or delete it, then start writing!'=>'Welcome to WordPress. This is your first post. Edit or delete it, then start writing!','As a new WordPress user, you should go to your dashboard to delete this page and create new pages for your content. Have fun!'=>'As a new WordPress user, you should go to your dashboard to delete this page and create new pages for your content. Have fun!','The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.'=>'The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.','...or something like this:'=>'...or something like this:','Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like piña coladas. (And gettin\' caught in the rain.)'=>'Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like piña coladas. (And gettin\' caught in the rain.)','This is an example page. It\'s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:'=>'This is an example page. It\'s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:','Export “%s” as JSON'=>'Export “%s” as JSON','1 pattern not updated, somebody is editing it.'=>'1 pattern not updated, somebody is editing it.','%s pattern restored from the Trash.'=>'%s pattern restored from the Bin.' . "\0" . '%s patterns restored from the Bin.','Error: "Table Prefix" must not be empty.'=>'Error: "Table Prefix" must not be empty.','This meta box, from the %s plugin, is not compatible with the block editor.'=>'This meta box, from the %s plugin, is not compatible with the block editor.','personal data group labelAbout'=>'About','page titleAbout'=>'About','Edit or preview your Privacy Policy page content.'=>'Edit or preview your Privacy Policy page content.','Privacy Policy Page'=>'Privacy Policy Page','%s (Draft)'=>'%s (Draft)','Privacy Policy page updated successfully.'=>'Privacy Policy page updated successfully.','The suggested privacy policy content should be added by using the %s (or later) action. Please see the inline documentation.'=>'The suggested privacy policy content should be added by using the %s (or later) action. Please see the inline documentation.','The suggested privacy policy content should be added only in wp-admin by using the %s (or later) action.'=>'The suggested privacy policy content should be added only in wp-admin by using the %s (or later) action.','The suggested privacy policy text has changed. Please review the guide and update your privacy policy.'=>'The suggested privacy policy text has changed. Please review the guide and update your privacy policy.','There are no pages.'=>'There are no pages.','Need help putting together your new Privacy Policy page? Check out the privacy policy guide%3$s for recommendations on what content to include, along with policies suggested by your plugins and theme.'=>'Need help putting together your new Privacy Policy page? Check out the Privacy Policy guide%3$s for recommendations on what content to include, along with policies suggested by your plugins and theme.','Privacy Policy Guide'=>'Privacy Policy Guide','Visitor comments may be checked through an automated spam detection service.'=>'Visitor comments may be checked through an automated spam detection service.','In this subsection you should note what analytics package you use, how users can opt out of analytics tracking, and a link to your analytics provider’s privacy policy, if any.'=>'In this subsection you should note what analytics package you use, how users can opt out of analytics tracking, and a link to your analytics provider’s privacy policy, if any.','In this subsection you should note what information may be disclosed by users who can upload media files. All uploaded files are usually publicly accessible.'=>'In this subsection you should note what information may be disclosed by users who can upload media files. All uploaded files are usually publicly accessible.','In this subsection you should note what information is captured through comments. We have noted the data which WordPress collects by default.'=>'In this subsection you should note what information is captured through comments. We have noted the data which WordPress collects by default.','In this section you should note what personal data you collect from users and site visitors. This may include personal data, such as name, email address, personal account preferences; transactional data, such as purchase information; and technical data, such as information about cookies.'=>'In this section you should note what personal data you collect from users and site visitors. This may include personal data, such as name, email address, personal account preferences; transactional data, such as purchase information; and technical data, such as information about cookies.','Suggested text:'=>'Suggested text:','The template contains a suggestion of sections you most likely will need. Under each section heading, you will find a short summary of what information you should provide, which will help you to get started. Some sections include suggested policy content, others will have to be completed with information from your theme and plugins.'=>'The template contains a suggestion of sections you will most likely need. Under each section heading, you will find a short summary of what information you should provide, which will help you to get started. Some sections include suggested policy content, others will have to be completed with information from your theme and plugins.','Updated %s.'=>'Updated %s.','You deactivated this plugin on %s and may no longer need this policy.'=>'You deactivated this plugin on %s and may no longer need this policy.','Removed %s.'=>'Removed %s.','Introduction'=>'Introduction','Need help putting together your new Privacy Policy page? Check out the guide for recommendations on what content to include, along with policies suggested by your plugins and theme.'=>'Need help putting together your new Privacy Policy page? Check out the guide for recommendations on what content to include, along with policies suggested by your plugins and theme.','Erasing data...'=>'Erasing data...','Add Data Erasure Request'=>'Add Data Erasure Request','Send export link'=>'Send export link','If you are a member of a regulated industry, or if you are subject to additional privacy laws, you may be required to disclose that information here.'=>'If you are a member of a regulated industry, or if you are subject to additional privacy laws, you may be required to disclose that information here.','Industry regulatory disclosure requirements'=>'Industry regulatory disclosure requirements','If your website provides a service which includes automated decision making - for example, allowing customers to apply for credit, or aggregating their data into an advertising profile - you must note that this is taking place, and include information about how that information is used, what decisions are made with that aggregated data, and what rights users have over decisions made without human intervention.'=>'If your website provides a service which includes automated decision making – for example, allowing customers to apply for credit, or aggregating their data into an advertising profile – you must note that this is taking place, and include information about how that information is used, what decisions are made with that aggregated data, and what rights users have over decisions made without human intervention.','What automated decision making and/or profiling we do with user data'=>'What automated decision making and/or profiling we do with user data','If your website receives data about users from third parties, including advertisers, this information must be included within the section of your privacy policy dealing with third party data.'=>'If your website receives data about users from third parties, including advertisers, this information must be included within the section of your privacy policy dealing with third-party data.','What third parties we receive data from'=>'What third parties we receive data from','In this section you should explain what procedures you have in place to deal with data breaches, either potential or real, such as internal reporting systems, contact mechanisms, or bug bounties.'=>'In this section, you should explain what procedures you have in place to deal with data breaches, either potential or real, such as internal reporting systems, contact mechanisms, or bug bounties.','What data breach procedures we have in place'=>'What data breach procedures we have in place','In this section you should explain what measures you have taken to protect your users’ data. This could include technical measures such as encryption; security measures such as two factor authentication; and measures such as staff training in data protection. If you have carried out a Privacy Impact Assessment, you can mention it here too.'=>'In this section you should explain what measures you have taken to protect your users’ data. This could include technical measures such as encryption; security measures such as two-factor authentication; and measures such as staff training in data protection. If you have carried out a Privacy Impact Assessment, you can mention it here too.','How we protect your data'=>'How we protect your data','If you use your site for commercial purposes and you engage in more complex collection or processing of personal data, you should note the following information in your privacy policy in addition to the information we have already discussed.'=>'If you use your site for commercial purposes and you engage in more complex collection or processing of personal data, you should note the following information in your privacy policy in addition to the information we have already discussed.','Additional information'=>'Additional information','In this section you should provide a contact method for privacy-specific concerns. If you are required to have a Data Protection Officer, list their name and full contact details here as well.'=>'In this section, you should provide a contact method for privacy-specific concerns. If you are required to have a Data Protection Officer, list their name and full contact details here as well.','European data protection law requires data about European residents which is transferred outside the European Union to be safeguarded to the same standards as if the data was in Europe. So in addition to listing where data goes, you should describe how you ensure that these standards are met either by yourself or by your third party providers, whether that is through an agreement such as Privacy Shield, model clauses in your contracts, or binding corporate rules.'=>'European data protection law requires data about European residents which is transferred outside the European Union to be safeguarded to the same standards as if the data was in Europe. So in addition to listing where data goes, you should describe how you ensure that these standards are met either by yourself or by your third-party providers, whether that is through an agreement such as Privacy Shield, model clauses in your contracts, or binding corporate rules.','In this section you should list all transfers of your site data outside the European Union and describe the means by which that data is safeguarded to European data protection standards. This could include your web hosting, cloud storage, or other third party services.'=>'In this section, you should list all transfers of your site data outside the European Union and describe the means by which that data is safeguarded to European data protection standards. This could include your web hosting, cloud storage, or other third party services.','If you have an account on this site, or have left comments, you can request to receive an exported file of the personal data we hold about you, including any data you have provided to us. You can also request that we erase any personal data we hold about you. This does not include any data we are obliged to keep for administrative, legal, or security purposes.'=>'If you have an account on this site, or have left comments, you can request to receive an exported file of the personal data we hold about you, including any data you have provided to us. You can also request that we erase any personal data we hold about you. This does not include any data we are obliged to keep for administrative, legal, or security purposes.','In this section you should explain what rights your users have over their data and how they can invoke those rights.'=>'In this section, you should explain what rights your users have over their data and how they can invoke those rights.','What rights you have over your data'=>'What rights you have over your data','For users that register on our website (if any), we also store the personal information they provide in their user profile. All users can see, edit, or delete their personal information at any time (except they cannot change their username). Website administrators can also see and edit that information.'=>'For users that register on our website (if any), we also store the personal information they provide in their user profile. All users can see, edit, or delete their personal information at any time (except they cannot change their username). Website administrators can also see and edit that information.','If you leave a comment, the comment and its metadata are retained indefinitely. This is so we can recognize and approve any follow-up comments automatically instead of holding them in a moderation queue.'=>'If you leave a comment, the comment and its metadata are retained indefinitely. This is so we can recognise and approve any follow-up comments automatically instead of holding them in a moderation queue.','In this section you should explain how long you retain personal data collected or processed by the website. While it is your responsibility to come up with the schedule of how long you keep each dataset for and why you keep it, that information does need to be listed here. For example, you may want to say that you keep contact form entries for six months, analytics records for a year, and customer purchase records for ten years.'=>'In this section you should explain how long you retain personal data collected or processed by the website. While it is your responsibility to come up with the schedule of how long you keep each dataset and why you keep it, that information does need to be listed here. For example, you may want to say that you keep contact form entries for six months, analytics records for a year, and customer purchase records for ten years.','How long we retain your data'=>'How long we retain your data','By default WordPress does not share any personal data with anyone.'=>'By default WordPress does not share any personal data with anyone.','In this section you should name and list all third party providers with whom you share site data, including partners, cloud-based services, payment processors, and third party service providers, and note what data you share with them and why. Link to their own privacy policies if possible.'=>'In this section, you should name and list all third-party providers with whom you share site data, including partners, cloud-based services, payment processors, and third party service providers, and note what data you share with them and why. Link to their own privacy policies if possible.','Who we share your data with'=>'Who we share your data with','By default WordPress does not collect any analytics data. However, many web hosting accounts collect some anonymous analytics data. You may also have installed a WordPress plugin that provides analytics services. In that case, add information from that plugin here.'=>'By default, WordPress does not collect any analytics data. However, many web hosting accounts collect some anonymous analytics data. You may also have installed a WordPress plugin that provides analytics services. In that case, add information from that plugin here.','Analytics'=>'Analytics','These websites may collect data about you, use cookies, embed additional third-party tracking, and monitor your interaction with that embedded content, including tracking your interaction with the embedded content if you have an account and are logged in to that website.'=>'These websites may collect data about you, use cookies, embed additional third-party tracking, and monitor your interaction with that embedded content, including tracking your interaction with the embedded content if you have an account and are logged in to that website.','Articles on this site may include embedded content (e.g. videos, images, articles, etc.). Embedded content from other websites behaves in the exact same way as if the visitor has visited the other website.'=>'Articles on this site may include embedded content (e.g. videos, images, articles, etc.). Embedded content from other websites behaves in the exact same way as if the visitor has visited the other website.','Embedded content from other websites'=>'Embedded content from other websites','If you edit or publish an article, an additional cookie will be saved in your browser. This cookie includes no personal data and simply indicates the post ID of the article you just edited. It expires after 1 day.'=>'If you edit or publish an article, an additional cookie will be saved in your browser. This cookie includes no personal data and simply indicates the post ID of the article you just edited. It expires after 1 day.','When you log in, we will also set up several cookies to save your login information and your screen display choices. Login cookies last for two days, and screen options cookies last for a year. If you select "Remember Me", your login will persist for two weeks. If you log out of your account, the login cookies will be removed.'=>'When you log in, we will also set up several cookies to save your login information and your screen display choices. Login cookies last for two days, and screen options cookies last for a year. If you select "Remember Me", your login will persist for two weeks. If you log out of your account, the login cookies will be removed.','If you visit our login page, we will set a temporary cookie to determine if your browser accepts cookies. This cookie contains no personal data and is discarded when you close your browser.'=>'If you visit our login page, we will set a temporary cookie to determine if your browser accepts cookies. This cookie contains no personal data and is discarded when you close your browser.','If you leave a comment on our site you may opt-in to saving your name, email address and website in cookies. These are for your convenience so that you do not have to fill in your details again when you leave another comment. These cookies will last for one year.'=>'If you leave a comment on our site you may opt in to saving your name, email address and website in cookies. These are for your convenience so that you do not have to fill in your details again when you leave another comment. These cookies will last for one year.','In this subsection you should list the cookies your website uses, including those set by your plugins, social media, and analytics. We have provided the cookies which WordPress installs by default.'=>'In this subsection you should list the cookies your website uses, including those set by your plugins, social media, and analytics. We have provided the cookies which WordPress installs by default.','Cookies'=>'Cookies','An anonymized string created from your email address (also called a hash) may be provided to the Gravatar service to see if you are using it. The Gravatar service privacy policy is available here: https://automattic.com/privacy/. After approval of your comment, your profile picture is visible to the public in the context of your comment.'=>'An anonymised string created from your email address (also called a hash) may be provided to the Gravatar service to see if you are using it. The Gravatar service Privacy Policy is available here: https://automattic.com/privacy/. After approval of your comment, your profile picture is visible to the public in the context of your comment.','When visitors leave comments on the site we collect the data shown in the comments form, and also the visitor’s IP address and browser user agent string to help spam detection.'=>'When visitors leave comments on the site we collect the data shown in the comments form, and also the visitor’s IP address and browser user agent string to help spam detection.','By default, WordPress does not include a contact form. If you use a contact form plugin, use this subsection to note what personal data is captured when someone submits a contact form, and how long you keep it. For example, you may note that you keep contact form submissions for a certain period for customer service purposes, but you do not use the information submitted through them for marketing purposes.'=>'By default, WordPress does not include a contact form. If you use a contact form plugin, use this subsection to note what personal data is captured when someone submits a contact form, and how long you keep it. For example, you may note that you keep contact form submissions for a certain period for customer service purposes, but you do not use the information submitted through them for marketing purposes.','Contact forms'=>'Contact forms','If you upload images to the website, you should avoid uploading images with embedded location data (EXIF GPS) included. Visitors to the website can download and extract any location data from images on the website.'=>'If you upload images to the website, you should avoid uploading images with embedded location data (EXIF GPS) included. Visitors to the website can download and extract any location data from images on the website.','By default WordPress does not collect any personal data about visitors, and only collects the data shown on the User Profile screen from registered users. However some of your plugins may collect personal data. You should add the relevant information below.'=>'By default WordPress does not collect any personal data about visitors, and only collects the data shown on the User Profile screen from registered users. However some of your plugins may collect personal data. You should add the relevant information below.','Personal data is not just created by a user’s interactions with your site. Personal data is also generated from technical processes such as contact forms, comments, cookies, analytics, and third party embeds.'=>'Personal data is not just created by a user’s interactions with your site. Personal data is also generated from technical processes such as contact forms, comments, cookies, analytics, and third-party embeds.','In addition to listing what personal data you collect, you need to note why you collect it. These explanations must note either the legal basis for your data collection and retention or the active consent the user has given.'=>'In addition to listing what personal data you collect, you need to note why you collect it. These explanations must note either the legal basis for your data collection and retention or the active consent the user has given.','You should also note any collection and retention of sensitive personal data, such as data concerning health.'=>'You should also note any collection and retention of sensitive personal data, such as data concerning health.','What personal data we collect and why we collect it'=>'What personal data we collect and why we collect it','Our website address is: %s.'=>'Our website address is: %s.','The amount of information you may be required to show will vary depending on your local or national business regulations. You may, for example, be required to display a physical address, a registered address, or your company registration number.'=>'The amount of information you may be required to show will vary depending on your local or national business regulations. You may, for example, be required to display a physical address, a registered address, or your company registration number.','In this section you should note your site URL, as well as the name of the company, organization, or individual behind it, and some accurate contact information.'=>'In this section, you should note your site URL, as well as the name of the company, organisation, or individual behind it, and some accurate contact information.','Who we are'=>'Who we are','It is your responsibility to write a comprehensive privacy policy, to make sure it reflects all national and international legal requirements on privacy, and to keep your policy current and accurate.'=>'It is your responsibility to write a comprehensive privacy policy, to make sure it reflects all national and international legal requirements on privacy, and to keep your policy current and accurate.','Please edit your privacy policy content, making sure to delete the summaries, and adding any information from your theme and plugins. Once you publish your policy page, remember to add it to your navigation menu.'=>'Please edit your privacy policy content, making sure to delete the summaries, and adding any information from your theme and plugins. Once you publish your policy page, remember to add it to your navigation menu.','This text template will help you to create your website’s privacy policy.'=>'This text template will help you to create your website’s privacy policy.','As a website owner, you may need to follow national or international privacy laws. For example, you may need to create and display a privacy policy.'=>'As a website owner, you may need to follow national or international privacy laws. For example, you may need to create and display a privacy policy.','Force erasure has failed.'=>'Force erasure has failed.','Email could not be sent.'=>'Email could not be sent.','date/timeOn'=>'On','website URLAt URL'=>'At URL','website nameFor site'=>'For site','email addressReport generated for'=>'Report generated for','Exporter array at index %s does not include a friendly name.'=>'Exporter array at index %s does not include a friendly name.','Sorry, you are not allowed to erase personal data on this site.'=>'Sorry, you are not allowed to erase personal data on this site.','Sorry, you are not allowed to export personal data on this site.'=>'Sorry, you are not allowed to export personal data on this site.','Eraser index is out of range.'=>'Eraser index is out of range.','Missing eraser index.'=>'Missing eraser index.','Expected done (boolean) in response array from exporter: %s.'=>'Expected done (boolean) in response array from exporter: %s.','Expected data array in response array from exporter: %s.'=>'Expected data array in response array from exporter: %s.','Expected data in response array from exporter: %s.'=>'Expected data in response array from exporter: %s.','Expected response as an array from exporter: %s.'=>'Expected response as an array from exporter: %s.','Exporter callback is not a valid callback: %s.'=>'Exporter callback is not a valid callback: %s.','Exporter does not include a callback: %s.'=>'Exporter does not include a callback: %s.','Expected an array describing the exporter at index %s.'=>'Expected an array describing the exporter at index %s.','Exporter index is out of range.'=>'Exporter index is out of range.','Exporter index cannot be negative.'=>'Exporter index cannot be negative.','An exporter has improperly used the registration filter.'=>'An exporter has improperly used the registration filter.','Missing page index.'=>'Missing page index.','Missing exporter index.'=>'Missing exporter index.','Invalid request type.'=>'Invalid request type.','Use This Page'=>'Use This Page','Select a Privacy Policy page'=>'Select a Privacy Policy page','Change your Privacy Policy page'=>'Change your Privacy Policy page','Edit or view your Privacy Policy page content.'=>'Edit or view your Privacy Policy page content.','You should also review your privacy policy from time to time, especially after installing or updating any themes or plugins. There may be changes or new suggested information for you to consider adding to your policy.'=>'You should also review your privacy policy from time to time, especially after installing or updating any themes or plugins. There may be changes or new suggested information for you to consider adding to your policy.','However, it is your responsibility to use those resources correctly, to provide the information that your privacy policy requires, and to keep that information current and accurate.'=>'However, it is your responsibility to use those resources correctly, to provide the information that your privacy policy requires, and to keep that information current and accurate.','The new page will include help and suggestions for your privacy policy.'=>'The new page will include help and suggestions for your privacy policy.','If you already have a Privacy Policy page, please select it below. If not, please create one.'=>'If you already have a Privacy Policy page, please select it below. If not, please create one.','The currently selected Privacy Policy page is in the Trash. Please create or select a new Privacy Policy page or restore the current page.'=>'The currently selected Privacy Policy page is in the Bin. Please create or select a new Privacy Policy page or restore the current page.','The currently selected Privacy Policy page does not exist. Please create or select a new page.'=>'The currently selected Privacy Policy page does not exist. Please create or select a new page.','Unable to create a Privacy Policy page.'=>'Unable to create a Privacy Policy page.','privacy-policy'=>'privacy-policy','Privacy Policy page setting updated successfully. Remember to update your menus!'=>'Privacy Policy page setting updated successfully. Remember to update your menus!','Copy suggested policy text from %s.'=>'Copy suggested policy text from %s.','Howdy, Your request for an export of personal data has been completed. You may download your personal data by clicking on the link below. For privacy @@ -57,11 +57,11 @@ so please download it before then. Regards, All at ###SITENAME### -###SITEURL###','Email sent.'=>'Email sent.','Sending email...'=>'Sending email...','Download personal data again'=>'Download personal data again','Unable to send personal data export email.'=>'Unable to send personal data export email.','[%s] Personal Data Export'=>'[%s] Personal Data Export','Invalid request ID when sending personal data export email.'=>'Invalid request ID when sending personal data export email.','Personal Data Export'=>'Personal Data Export','Personal Data Export for %s'=>'Personal Data Export for %s','A valid email address must be given.'=>'A valid email address must be given.','Force erase personal data'=>'Force erase personal data','Remove request'=>'Remove request','Waiting for confirmation'=>'Waiting for confirmation','Retry'=>'Retry','Downloading data...'=>'Downloading data...','Download personal data'=>'Download personal data','Requested'=>'Requested','Requester'=>'Requester','Send Request'=>'Send request','Username or email address'=>'Username or email address','Add Data Export Request'=>'Add Data Export Request','Confirmation request initiated successfully.'=>'Confirmation request initiated successfully.','Unable to add this request. A valid email address or username must be supplied.'=>'Unable to add this request. A valid email address or username must be supplied.','Confirmation request sent again successfully.'=>'Confirmation request sent again successfully.','Unable to initiate confirmation request.'=>'Unable to initiate confirmation request.','Invalid request ID.'=>'Invalid request ID.','Expected done flag in response array from %1$s eraser (index %2$d).'=>'Expected done flag in response array from %1$s eraser (index %2$d).','Expected messages key to reference an array in response array from %1$s eraser (index %2$d).'=>'Expected messages key to reference an array in response array from %1$s eraser (index %2$d).','Expected messages key in response array from %1$s eraser (index %2$d).'=>'Expected messages key in response array from %1$s eraser (index %2$d).','Expected items_retained key in response array from %1$s eraser (index %2$d).'=>'Expected items_retained key in response array from %1$s eraser (index %2$d).','Expected items_removed key in response array from %1$s eraser (index %2$d).'=>'Expected items_removed key in response array from %1$s eraser (index %2$d).','Did not receive array from %1$s eraser (index %2$d).'=>'Did not receive array from %1$s eraser (index %2$d).','Eraser array at index %d does not include a friendly name.'=>'Eraser array at index %d does not include a friendly name.','Expected an array describing the eraser at index %d.'=>'Expected an array describing the eraser at index %d.','Page index cannot be less than one.'=>'Page index cannot be less than one.','Eraser index cannot be less than one.'=>'Eraser index cannot be less than one.','Invalid email address in request.'=>'Invalid email address in request.','Requires PHP Version:'=>'Requires PHP:','This changeset cannot be further modified.'=>'This changeset cannot be further modified.','This data is used to provide general enhancements to WordPress, which includes helping to protect your site by finding and automatically installing new updates. It is also used to calculate statistics, such as those shown on the WordPress.org stats page.'=>'This data is used to provide general enhancements to WordPress, which includes helping to protect your site by finding and automatically installing new updates. It is also used to calculate statistics, such as those shown on the WordPress.org stats page.','There is no need to change your CSS here — you can edit and live preview CSS changes in the built-in CSS editor.'=>'There is no need to change your CSS here — you can edit and live preview CSS changes in the built-in CSS editor.','Did you know?'=>'Did you know?','Noteworthy Contributors'=>'Noteworthy Contributors','If you decide to go ahead with direct edits anyway, use a file manager to create a copy with a new name and hang on to the original. That way, you can re-enable a functional version if something goes wrong.'=>'If you decide to go ahead with direct edits anyway, use a file manager to create a copy with a new name and hang on to the original. That way, you can re-enable a functional version if something goes wrong.','If you absolutely have to make direct edits to this plugin, use a file manager to create a copy with a new name and hang on to the original. That way, you can re-enable a functional version if something goes wrong.'=>'If you absolutely have to make direct edits to this plugin, use a file manager to create a copy with a new name and hang on to the original. That way, you can re-enable a functional version if something goes wrong.','You appear to be making direct edits to your plugin in the WordPress dashboard. Editing plugins directly is not recommended as it may introduce incompatibilities that break your site and your changes may be lost in future updates.'=>'You appear to be making direct edits to your plugin in the WordPress dashboard. Editing plugins directly is not recommended, as it may introduce incompatibilities that break your site and your changes may be lost in future updates.','WordPress is not notifying any Update Services because of your site’s visibility settings.'=>'WordPress is not notifying any Update Services because of your site’s visibility settings.','Error: The root directory of your site is not writable, so creating a file automatically was not possible. This is the URL rewrite rule you should have in your %2$s file. Create a new file called %2$s in the root directory of your site. Click in the field and press %3$s (or %4$s on Mac) to select all. Then insert this code into the %2$s file.'=>'Error: The root directory of your site is not writable, so creating a file automatically was not possible. This is the URL rewrite rule you should have in your %2$s file. Create a new file called %2$s in the root directory of your site. Click in the field and press %3$s (or %4$s on Mac) to select all. Then insert this code into the %2$s file.','Enter the same address here unless you want your site home page to be different from your WordPress installation directory.'=>'Enter the same address here unless you want your site home page to be different from your WordPress installation directory.','We take privacy and transparency very seriously. To learn more about what data we collect, and how we use it, please visit our Privacy Policy.'=>'We take privacy and transparency very seriously. To learn more about what data we collect, and how we use it, please visit our Privacy Policy.','https://wordpress.org/about/license/'=>'https://en-gb.wordpress.org/about/license/','From time to time, your WordPress site may send data to WordPress.org — including, but not limited to — the version you are using, and a list of installed plugins and themes.'=>'From time to time, your WordPress site may send data to WordPress.org — including, but not limited to — the version you are using, and a list of installed plugins and themes.','Uploaded on: %s'=>'Uploaded on: %s','Downloading installation package from %s…'=>'Downloading installation package from %s…','Downloading translation from %s…'=>'Downloading translation from %s…','Downloading update from %s…'=>'Downloading update from %s…','Likely direct inclusion of %1$s in order to use %2$s. This is very wrong. Hook the %2$s call into the %3$s action instead.'=>'Likely direct inclusion of %1$s in order to use %2$s. This is very wrong. Hook the %2$s call into the %3$s action instead.','Customization Draft'=>'Customisation Draft','This draft comes from your unpublished customization changes. You can edit, but there is no need to publish now. It will be published automatically with those changes.'=>'This draft comes from your unpublished customisation changes. You can edit, but there is no need to publish now. It will be published automatically with those changes.','Theme Files'=>'Theme Files','folder'=>'folder','Unable to communicate back with site to check for fatal errors, so the PHP change was reverted. You will need to upload your PHP file change by some other means, such as by using SFTP.'=>'Unable to communicate back with site to check for fatal errors, so the PHP change was reverted. You will need to upload your PHP file change by some other means, such as by using SFTP.','Installation Required'=>'Installation Required','Could not fully remove the plugin %s.'=>'Could not fully remove the plugin %s.','User has been created, but could not be added to this site.'=>'User has been created, but could not be added to this site.','That user could not be added to this site.'=>'That user could not be added to this site.','Disable syntax highlighting when editing code'=>'Disable syntax highlighting when editing code','Syntax Highlighting'=>'Syntax Highlighting','Run the installation'=>'Run the installation','https://wordpress.org/about/privacy/'=>'https://en-gb.wordpress.org/about/privacy/','Press This is not available. Please contact your site administrator.'=>'Press This is not available. Please contact your site administrator.','Press This is not installed. Please install Press This from the main site.'=>'Press This is not installed. Please install Press This from the main site.','Activate Press This'=>'Activate Press This','I understand'=>'I understand','Heads up!'=>'Heads up!','Warning: Making changes to active plugins is not recommended.'=>'Warning: Making changes to active plugins is not recommended.','Selected file content:'=>'Selected file content:','There was an error while trying to update the file. You may need to fix something and try updating again.'=>'There was an error while trying to update the file. You may need to fix something and try updating again.','Homepage: %s'=>'Homepage: %s','Available tags:'=>'Available tags:','%s (already used in permalink structure)'=>'%s (already used in permalink structure)','%s added to permalink structure'=>'%s added to permalink structure','%s (A sanitized version of the author name.)'=>'%s (A sanitised version of the author name.)','%s (Category slug. Nested sub-categories appear as nested directories in the URL.)'=>'%s (Category slug. Nested sub-categories appear as nested directories in the URL.)','%s (The sanitized post title (slug).)'=>'%s (The sanitised post title (slug).)','%s (The unique ID of the post, for example 423.)'=>'%s (The unique ID of the post, for example 423.)','%s (Second of the minute, for example 33.)'=>'%s (Second of the minute, for example 33.)','%s (Minute of the hour, for example 43.)'=>'%s (Minute of the hour, for example 43.)','%s (Hour of the day, for example 15.)'=>'%s (Hour of the day, for example 15.)','%s (Day of the month, for example 28.)'=>'%s (Day of the month, for example 28.)','%s (Month of the year, for example 05.)'=>'%s (Month of the year, for example 05.)','%s (The year of the post, four digits, for example 2004.)'=>'%s (The year of the post, four digits, for example 2004.)','Theme Installation'=>'Theme Installation','%s is currently editing this post.'=>'%s is currently editing this post.','%s is currently editing this post. Do you want to take over?'=>'%s is currently editing this post. Do you want to take over?','Custom installation script.'=>'Custom installation script.','Active Installations:'=>'Active Installations:','Plugin Installation'=>'Plugin Installation','Settings — This page shows a list of all settings associated with this site. Some are created by WordPress and others are created by plugins you activate. Note that some fields are grayed out and say Serialized Data. You cannot modify these values due to the way the setting is stored in the database.'=>'Settings — This page shows a list of all settings associated with this site. Some are created by WordPress and others are created by plugins you activate. Note that some fields are greyed out and say Serialised Data. You cannot modify these values due to the way the setting is stored in the database.','Themes — This area shows themes that are not already enabled across the network. Enabling a theme in this menu makes it accessible to this site. It does not activate the theme, but allows it to show in the site’s Appearance menu. To enable a theme for the entire network, see the Network Themes screen.'=>'Themes — This area shows themes that are not already enabled across the network. Enabling a theme in this menu makes it accessible to this site. It does not activate the theme, but allows it to show in the site’s Appearance menu. To enable a theme for the entire network, see the Network Themes screen.','Users — This displays the users associated with this site. You can also change their role, reset their password, or remove them from the site. Removing the user from the site does not remove the user from the network.'=>'Users — This displays the users associated with this site. You can also change their role, reset their password, or remove them from the site. Removing the user from the site does not remove the user from the network.','Info — The site URL is rarely edited as this can cause the site to not work properly. The Registered date and Last Updated date are displayed. Network admins can mark a site as archived, spam, deleted and mature, to remove from public listings or disable.'=>'Info — The site URL is rarely edited as this can cause the site to not work properly. The Registered date and Last Updated date are displayed. Network admins can mark a site as archived, spam, deleted and mature, to remove from public listings or disable.','The menu is for editing information specific to individual sites, particularly if the admin area of a site is unavailable.'=>'The menu is for editing information specific to individual sites, particularly if the admin area of a site is unavailable.','Unable to write to file.'=>'Unable to write to file.','Your PHP code changes were not applied due to an error on line %1$s of file %2$s. Please fix and try saving again.'=>'Your PHP code changes were not applied due to an error on line %1$s of file %2$s. Please fix and try saving again.','Events and News dashboard widgethttps://wordpress.org/news/'=>'https://en-gb.wordpress.org/news/','Your Recent Drafts'=>'Your Recent Drafts','nameUnknown'=>'Unknown','View posts by %s'=>'View posts by %s','No description'=>'No description','%s Active Installations'=>'%s Active Installations','Theme installation failed.'=>'Theme installation failed.','Plugin installation failed.'=>'Plugin installation failed.','Activate Plugin & Go to Press This'=>'Activate Plugin and Go to Press This','Your scheduled changes just published'=>'Your scheduled changes just published','themeActivate'=>'Activate','Allow link notifications from other blogs (pingbacks and trackbacks) on new posts'=>'Allow link notifications from other blogs (pingbacks and trackbacks) on new posts','Collapse Main menu'=>'Collapse Main menu','pluginNetwork Activate %s'=>'Network Activate %s','pluginActivate %s'=>'Activate %s','No media files found.'=>'No media files found.','Run Importer'=>'Run Importer','Run %s'=>'Run %s','comment statusOpen'=>'Open','Image Rotation'=>'Image Rotation','There are no events scheduled near you at the moment. Would you like to organize a WordPress event?'=>'There are no events scheduled near you at the moment. Would you like to organise a WordPress event?','Edit User %s'=>'Edit User %s','Edit widget: %s'=>'Edit widget: %s','https://make.wordpress.org/community/handbook/meetup-organizer/welcome/'=>'https://make.wordpress.org/community/handbook/meetup-organizer/welcome/','There are no events scheduled near %1$s at the moment. Would you like to organize a WordPress event?'=>'There are no events scheduled near %1$s at the moment. Would you like to organise a WordPress event?','Attend an upcoming event near %s.'=>'Attend an upcoming event near %s.','Cincinnati'=>'London','City:'=>'City:','WordCamps'=>'WordCamps','Meetups'=>'Meetups','An error occurred. Please try again.'=>'An error occurred. Please try again.','WordPress Events and News'=>'WordPress Events and News','l, M j, Y'=>'l j F Y','Unknown API error.'=>'Unknown API error.','Invalid API response code (%d).'=>'Invalid API response code (%d).','Sorry, you are not allowed to delete users.'=>'Sorry, you are not allowed to delete users.','Sorry, you are not allowed to create users.'=>'Sorry, you are not allowed to create users.','short (~12 characters) label for hide controls buttonHide Controls'=>'Hide Controls','Expand Sidebar'=>'Expand Sidebar','Display location'=>'Display location','ID #%1$s: %2$s Sorry, you are not allowed to remove this user.'=>'ID #%1$s: %2$s Sorry, you are not allowed to remove this user.','You can select the language you wish to use while using the WordPress administration screen without affecting the language site visitors see.'=>'You can select the language you wish to use while using the WordPress administration screen without affecting the language site visitors see.','Edit Filters'=>'Edit Filters','Clear current filters'=>'Clear current filters','Select one or more Theme features to filter by'=>'Select one or more Theme features to filter by','(%s ratings)'=>'(%s ratings)','Current Background Image'=>'Current Background Image','Current Header Image'=>'Current Header Image','Set status'=>'Set status','“%s” is locked'=>'“%s” is locked','Active plugin installationsLess Than 10'=>'Less Than 10','Sorry, you are not allowed to attach files to this post.'=>'Sorry, you are not allowed to attach files to this post.','https://wordpress.org/plugins/'=>'https://en-gb.wordpress.org/plugins/','The Customizer allows you to preview changes to your site before publishing them. You can navigate to different pages on your site within the preview. Edit shortcuts are shown for some editable elements. The Customizer is intended for use with non-block themes.'=>'The Customiser allows you to preview changes to your site before publishing them. You can navigate to different pages on your site within the preview. Edit shortcuts are shown for some editable elements. The Customiser is intended for use with non-block themes.','Customize New Changes'=>'Customise New Changes','Background ScrollScroll'=>'Scroll','Background RepeatRepeat'=>'Repeat','Support'=>'Support','You can find new plugins to install by searching or browsing the directory right here in your own Plugins section.'=>'You can find new plugins to install by searching or browsing the directory right here in your own Plugins section.','Plugins hook into WordPress to extend its functionality with custom features. Plugins are developed independently from the core WordPress application by thousands of developers all over the world. All plugins in the official WordPress Plugin Directory are compatible with the license WordPress uses.'=>'Plugins hook into WordPress to extend its functionality with custom features. Plugins are developed independently from the core WordPress application by thousands of developers all over the world. All plugins in the official WordPress Plugin Directory are compatible with the licence WordPress uses.','Search plugins by:'=>'Search plugins by:','Import posts, pages, comments, custom fields, categories, and tags from a WordPress export file.'=>'Import posts, pages, comments, custom fields, categories, and tags from a WordPress export file.','Import posts & media from Tumblr using their API.'=>'Import posts & media from Tumblr using their API.','Import posts from an RSS feed.'=>'Import posts from an RSS feed.','Import posts and comments from a Movable Type or TypePad blog.'=>'Import posts and comments from a Movable Type or TypePad blog.','Import posts from LiveJournal using their API.'=>'Import posts from LiveJournal using their API.','Convert existing categories to tags or tags to categories, selectively.'=>'Convert existing categories to tags or tags to categories, selectively.','Import posts, comments, and users from a Blogger blog.'=>'Import posts, comments, and users from a Blogger blog.','pluginDeactivate %s'=>'Deactivate %s','pluginDelete %s'=>'Delete %s','pluginNetwork Deactivate %s'=>'Network Deactivate %s','By default, new users will receive an email letting them know they’ve been added as a user for your site. This email will also contain a password reset link. Uncheck the box if you do not want to send the new user a welcome email.'=>'By default, new users will receive an email letting them know they’ve been added as a user for your site. This email will also contain a password reset link. Uncheck the box if you do not want to send the new user a welcome email.','New users are automatically assigned a password, which they can change after logging in. You can view or edit the assigned password by clicking the Show Password button. The username cannot be changed once the user has been added.'=>'New users are automatically assigned a password, which they can change after logging in. You can view or edit the assigned password by clicking the Show Password button. The username cannot be changed once the user has been added.','plugin%s was successfully deleted.'=>'%s was successfully deleted.','The search for installed plugins will search for terms in their name, description, or author.'=>'The search for installed plugins will search for terms in their name, description, or author.','Custom Logo'=>'Custom Logo','Sorry, you are not allowed to remove users.'=>'Sorry, you are not allowed to remove users.','Sorry, you are not allowed to add users to this network.'=>'Sorry, you are not allowed to add users to this network.','Sorry, you are not allowed to edit this changeset.'=>'Sorry, you are not allowed to edit this changeset.','Sorry, you are not allowed to update themes for this site.'=>'Sorry, you are not allowed to update themes for this site.','Sorry, you are not allowed to update this site.'=>'Sorry, you are not allowed to update this site.','New version available. '=>'New version available. ','The Theme Installer screen requires JavaScript.'=>'The Theme Installer screen requires JavaScript.','Sorry, you are not allowed to edit templates for this site.'=>'Sorry, you are not allowed to edit templates for this site.','Error: "Table Prefix" is invalid.'=>'Error: "Table Prefix" is invalid.','Sorry, you are not allowed to deactivate plugins for this site.'=>'Sorry, you are not allowed to deactivate plugins for this site.','Sorry, you are not allowed to activate plugins for this site.'=>'Sorry, you are not allowed to activate plugins for this site.','Sorry, you are not allowed to edit plugins for this site.'=>'Sorry, you are not allowed to edit plugins for this site.','Sorry, you are not allowed to modify unregistered settings for this site.'=>'Sorry, you are not allowed to modify unregistered settings for this site.','Sorry, you are not allowed to manage options for this site.'=>'Sorry, you are not allowed to manage options for this site.','Manage with Live Preview'=>'Manage with Live Preview','Sorry, you are not allowed to delete this site.'=>'Sorry, you are not allowed to delete this site.','Sorry, you are not allowed to add links to this site.'=>'Sorry, you are not allowed to add links to this site.','Hi, this is a comment. +###SITEURL###','Email sent.'=>'Email sent.','Sending email...'=>'Sending email...','Download personal data again'=>'Download personal data again','Unable to send personal data export email.'=>'Unable to send personal data export email.','[%s] Personal Data Export'=>'[%s] Personal Data Export','Invalid request ID when sending personal data export email.'=>'Invalid request ID when sending personal data export email.','Personal Data Export'=>'Personal Data Export','Personal Data Export for %s'=>'Personal Data Export for %s','A valid email address must be given.'=>'A valid email address must be given.','Force erase personal data'=>'Force erase personal data','Remove request'=>'Remove request','Waiting for confirmation'=>'Waiting for confirmation','Retry'=>'Retry','Downloading data...'=>'Downloading data...','Download personal data'=>'Download personal data','Requested'=>'Requested','Requester'=>'Requester','Send Request'=>'Send request','Username or email address'=>'Username or email address','Add Data Export Request'=>'Add Data Export Request','Confirmation request initiated successfully.'=>'Confirmation request initiated successfully.','Unable to add this request. A valid email address or username must be supplied.'=>'Unable to add this request. A valid email address or username must be supplied.','Confirmation request sent again successfully.'=>'Confirmation request sent again successfully.','Unable to initiate confirmation request.'=>'Unable to initiate confirmation request.','Invalid request ID.'=>'Invalid request ID.','Expected done flag in response array from %1$s eraser (index %2$d).'=>'Expected done flag in response array from %1$s eraser (index %2$d).','Expected messages key to reference an array in response array from %1$s eraser (index %2$d).'=>'Expected messages key to reference an array in response array from %1$s eraser (index %2$d).','Expected messages key in response array from %1$s eraser (index %2$d).'=>'Expected messages key in response array from %1$s eraser (index %2$d).','Expected items_retained key in response array from %1$s eraser (index %2$d).'=>'Expected items_retained key in response array from %1$s eraser (index %2$d).','Expected items_removed key in response array from %1$s eraser (index %2$d).'=>'Expected items_removed key in response array from %1$s eraser (index %2$d).','Did not receive array from %1$s eraser (index %2$d).'=>'Did not receive array from %1$s eraser (index %2$d).','Eraser array at index %d does not include a friendly name.'=>'Eraser array at index %d does not include a friendly name.','Expected an array describing the eraser at index %d.'=>'Expected an array describing the eraser at index %d.','Page index cannot be less than one.'=>'Page index cannot be less than one.','Eraser index cannot be less than one.'=>'Eraser index cannot be less than one.','Invalid email address in request.'=>'Invalid email address in request.','Requires PHP Version:'=>'Requires PHP:','This data is used to provide general enhancements to WordPress, which includes helping to protect your site by finding and automatically installing new updates. It is also used to calculate statistics, such as those shown on the WordPress.org stats page.'=>'This data is used to provide general enhancements to WordPress, which includes helping to protect your site by finding and automatically installing new updates. It is also used to calculate statistics, such as those shown on the WordPress.org stats page.','There is no need to change your CSS here — you can edit and live preview CSS changes in the built-in CSS editor.'=>'There is no need to change your CSS here — you can edit and live preview CSS changes in the built-in CSS editor.','Did you know?'=>'Did you know?','Noteworthy Contributors'=>'Noteworthy Contributors','If you decide to go ahead with direct edits anyway, use a file manager to create a copy with a new name and hang on to the original. That way, you can re-enable a functional version if something goes wrong.'=>'If you decide to go ahead with direct edits anyway, use a file manager to create a copy with a new name and hang on to the original. That way, you can re-enable a functional version if something goes wrong.','If you absolutely have to make direct edits to this plugin, use a file manager to create a copy with a new name and hang on to the original. That way, you can re-enable a functional version if something goes wrong.'=>'If you absolutely have to make direct edits to this plugin, use a file manager to create a copy with a new name and hang on to the original. That way, you can re-enable a functional version if something goes wrong.','You appear to be making direct edits to your plugin in the WordPress dashboard. Editing plugins directly is not recommended as it may introduce incompatibilities that break your site and your changes may be lost in future updates.'=>'You appear to be making direct edits to your plugin in the WordPress dashboard. Editing plugins directly is not recommended, as it may introduce incompatibilities that break your site and your changes may be lost in future updates.','WordPress is not notifying any Update Services because of your site’s visibility settings.'=>'WordPress is not notifying any Update Services because of your site’s visibility settings.','Error: The root directory of your site is not writable, so creating a file automatically was not possible. This is the URL rewrite rule you should have in your %2$s file. Create a new file called %2$s in the root directory of your site. Click in the field and press %3$s (or %4$s on Mac) to select all. Then insert this code into the %2$s file.'=>'Error: The root directory of your site is not writable, so creating a file automatically was not possible. This is the URL rewrite rule you should have in your %2$s file. Create a new file called %2$s in the root directory of your site. Click in the field and press %3$s (or %4$s on Mac) to select all. Then insert this code into the %2$s file.','Enter the same address here unless you want your site home page to be different from your WordPress installation directory.'=>'Enter the same address here unless you want your site home page to be different from your WordPress installation directory.','https://wordpress.org/about/license/'=>'https://en-gb.wordpress.org/about/license/','From time to time, your WordPress site may send data to WordPress.org — including, but not limited to — the version you are using, and a list of installed plugins and themes.'=>'From time to time, your WordPress site may send data to WordPress.org — including, but not limited to — the version you are using, and a list of installed plugins and themes.','Uploaded on: %s'=>'Uploaded on: %s','Downloading installation package from %s…'=>'Downloading installation package from %s…','Downloading translation from %s…'=>'Downloading translation from %s…','Downloading update from %s…'=>'Downloading update from %s…','Likely direct inclusion of %1$s in order to use %2$s. This is very wrong. Hook the %2$s call into the %3$s action instead.'=>'Likely direct inclusion of %1$s in order to use %2$s. This is very wrong. Hook the %2$s call into the %3$s action instead.','Customization Draft'=>'Customisation Draft','This draft comes from your unpublished customization changes. You can edit, but there is no need to publish now. It will be published automatically with those changes.'=>'This draft comes from your unpublished customisation changes. You can edit, but there is no need to publish now. It will be published automatically with those changes.','Theme Files'=>'Theme Files','folder'=>'folder','Unable to communicate back with site to check for fatal errors, so the PHP change was reverted. You will need to upload your PHP file change by some other means, such as by using SFTP.'=>'Unable to communicate back with site to check for fatal errors, so the PHP change was reverted. You will need to upload your PHP file change by some other means, such as by using SFTP.','Installation Required'=>'Installation Required','Could not fully remove the plugin %s.'=>'Could not fully remove the plugin %s.','User has been created, but could not be added to this site.'=>'User has been created, but could not be added to this site.','That user could not be added to this site.'=>'That user could not be added to this site.','Disable syntax highlighting when editing code'=>'Disable syntax highlighting when editing code','Syntax Highlighting'=>'Syntax Highlighting','Run the installation'=>'Run the installation','https://wordpress.org/about/privacy/'=>'https://en-gb.wordpress.org/about/privacy/','Press This is not available. Please contact your site administrator.'=>'Press This is not available. Please contact your site administrator.','Press This is not installed. Please install Press This from the main site.'=>'Press This is not installed. Please install Press This from the main site.','Activate Press This'=>'Activate Press This','I understand'=>'I understand','Heads up!'=>'Heads up!','Warning: Making changes to active plugins is not recommended.'=>'Warning: Making changes to active plugins is not recommended.','Selected file content:'=>'Selected file content:','There was an error while trying to update the file. You may need to fix something and try updating again.'=>'There was an error while trying to update the file. You may need to fix something and try updating again.','Homepage: %s'=>'Homepage: %s','Available tags:'=>'Available tags:','%s (already used in permalink structure)'=>'%s (already used in permalink structure)','%s added to permalink structure'=>'%s added to permalink structure','%s (A sanitized version of the author name.)'=>'%s (A sanitised version of the author name.)','%s (Category slug. Nested sub-categories appear as nested directories in the URL.)'=>'%s (Category slug. Nested sub-categories appear as nested directories in the URL.)','%s (The sanitized post title (slug).)'=>'%s (The sanitised post title (slug).)','%s (The unique ID of the post, for example 423.)'=>'%s (The unique ID of the post, for example 423.)','%s (Second of the minute, for example 33.)'=>'%s (Second of the minute, for example 33.)','%s (Minute of the hour, for example 43.)'=>'%s (Minute of the hour, for example 43.)','%s (Hour of the day, for example 15.)'=>'%s (Hour of the day, for example 15.)','%s (Day of the month, for example 28.)'=>'%s (Day of the month, for example 28.)','%s (Month of the year, for example 05.)'=>'%s (Month of the year, for example 05.)','%s (The year of the post, four digits, for example 2004.)'=>'%s (The year of the post, four digits, for example 2004.)','Theme Installation'=>'Theme Installation','%s is currently editing this post.'=>'%s is currently editing this post.','%s is currently editing this post. Do you want to take over?'=>'%s is currently editing this post. Do you want to take over?','Custom installation script.'=>'Custom installation script.','Active Installations:'=>'Active Installations:','Plugin Installation'=>'Plugin Installation','Settings — This page shows a list of all settings associated with this site. Some are created by WordPress and others are created by plugins you activate. Note that some fields are grayed out and say Serialized Data. You cannot modify these values due to the way the setting is stored in the database.'=>'Settings — This page shows a list of all settings associated with this site. Some are created by WordPress and others are created by plugins you activate. Note that some fields are greyed out and say Serialised Data. You cannot modify these values due to the way the setting is stored in the database.','Themes — This area shows themes that are not already enabled across the network. Enabling a theme in this menu makes it accessible to this site. It does not activate the theme, but allows it to show in the site’s Appearance menu. To enable a theme for the entire network, see the Network Themes screen.'=>'Themes — This area shows themes that are not already enabled across the network. Enabling a theme in this menu makes it accessible to this site. It does not activate the theme, but allows it to show in the site’s Appearance menu. To enable a theme for the entire network, see the Network Themes screen.','Users — This displays the users associated with this site. You can also change their role, reset their password, or remove them from the site. Removing the user from the site does not remove the user from the network.'=>'Users — This displays the users associated with this site. You can also change their role, reset their password, or remove them from the site. Removing the user from the site does not remove the user from the network.','Info — The site URL is rarely edited as this can cause the site to not work properly. The Registered date and Last Updated date are displayed. Network admins can mark a site as archived, spam, deleted and mature, to remove from public listings or disable.'=>'Info — The site URL is rarely edited as this can cause the site to not work properly. The Registered date and Last Updated date are displayed. Network admins can mark a site as archived, spam, deleted and mature, to remove from public listings or disable.','The menu is for editing information specific to individual sites, particularly if the admin area of a site is unavailable.'=>'The menu is for editing information specific to individual sites, particularly if the admin area of a site is unavailable.','Unable to write to file.'=>'Unable to write to file.','Your PHP code changes were not applied due to an error on line %1$s of file %2$s. Please fix and try saving again.'=>'Your PHP code changes were not applied due to an error on line %1$s of file %2$s. Please fix and try saving again.','Events and News dashboard widgethttps://wordpress.org/news/'=>'https://en-gb.wordpress.org/news/','Your Recent Drafts'=>'Your Recent Drafts','nameUnknown'=>'Unknown','View posts by %s'=>'View posts by %s','No description'=>'No description','%s Active Installations'=>'%s Active Installations','Theme installation failed.'=>'Theme installation failed.','Plugin installation failed.'=>'Plugin installation failed.','Activate Plugin & Go to Press This'=>'Activate Plugin and Go to Press This','Your scheduled changes just published'=>'Your scheduled changes just published','themeActivate'=>'Activate','Allow link notifications from other blogs (pingbacks and trackbacks) on new posts'=>'Allow link notifications from other blogs (pingbacks and trackbacks) on new posts','pluginNetwork Activate %s'=>'Network Activate %s','pluginActivate %s'=>'Activate %s','No media files found.'=>'No media files found.','Run Importer'=>'Run Importer','Run %s'=>'Run %s','comment statusOpen'=>'Open','Image Rotation'=>'Image Rotation','There are no events scheduled near you at the moment. Would you like to organize a WordPress event?'=>'There are no events scheduled near you at the moment. Would you like to organise a WordPress event?','Edit User %s'=>'Edit User %s','Edit widget: %s'=>'Edit widget: %s','https://make.wordpress.org/community/handbook/meetup-organizer/welcome/'=>'https://make.wordpress.org/community/handbook/meetup-organizer/welcome/','There are no events scheduled near %1$s at the moment. Would you like to organize a WordPress event?'=>'There are no events scheduled near %1$s at the moment. Would you like to organise a WordPress event?','Attend an upcoming event near %s.'=>'Attend an upcoming event near %s.','Cincinnati'=>'London','City:'=>'City:','WordCamps'=>'WordCamps','Meetups'=>'Meetups','An error occurred. Please try again.'=>'An error occurred. Please try again.','WordPress Events and News'=>'WordPress Events and News','l, M j, Y'=>'l j F Y','Unknown API error.'=>'Unknown API error.','Invalid API response code (%d).'=>'Invalid API response code (%d).','Sorry, you are not allowed to delete users.'=>'Sorry, you are not allowed to delete users.','Sorry, you are not allowed to create users.'=>'Sorry, you are not allowed to create users.','short (~12 characters) label for hide controls buttonHide Controls'=>'Hide Controls','Expand Sidebar'=>'Expand Sidebar','Display location'=>'Display location','ID #%1$s: %2$s Sorry, you are not allowed to remove this user.'=>'ID #%1$s: %2$s Sorry, you are not allowed to remove this user.','You can select the language you wish to use while using the WordPress administration screen without affecting the language site visitors see.'=>'You can select the language you wish to use while using the WordPress administration screen without affecting the language site visitors see.','Edit Filters'=>'Edit Filters','Clear current filters'=>'Clear current filters','Select one or more Theme features to filter by'=>'Select one or more Theme features to filter by','(%s ratings)'=>'(%s ratings)','Current Background Image'=>'Current Background Image','Current Header Image'=>'Current Header Image','Set status'=>'Set status','“%s” is locked'=>'“%s” is locked','Active plugin installationsLess Than 10'=>'Less Than 10','Sorry, you are not allowed to attach files to this post.'=>'Sorry, you are not allowed to attach files to this post.','https://wordpress.org/plugins/'=>'https://en-gb.wordpress.org/plugins/','The Customizer allows you to preview changes to your site before publishing them. You can navigate to different pages on your site within the preview. Edit shortcuts are shown for some editable elements. The Customizer is intended for use with non-block themes.'=>'The Customiser allows you to preview changes to your site before publishing them. You can navigate to different pages on your site within the preview. Edit shortcuts are shown for some editable elements. The Customiser is intended for use with non-block themes.','Customize New Changes'=>'Customise New Changes','Background ScrollScroll'=>'Scroll','Background RepeatRepeat'=>'Repeat','You can find new plugins to install by searching or browsing the directory right here in your own Plugins section.'=>'You can find new plugins to install by searching or browsing the directory right here in your own Plugins section.','Plugins hook into WordPress to extend its functionality with custom features. Plugins are developed independently from the core WordPress application by thousands of developers all over the world. All plugins in the official WordPress Plugin Directory are compatible with the license WordPress uses.'=>'Plugins hook into WordPress to extend its functionality with custom features. Plugins are developed independently from the core WordPress application by thousands of developers all over the world. All plugins in the official WordPress Plugin Directory are compatible with the licence WordPress uses.','Search plugins by:'=>'Search plugins by:','Import posts, pages, comments, custom fields, categories, and tags from a WordPress export file.'=>'Import posts, pages, comments, custom fields, categories, and tags from a WordPress export file.','Import posts & media from Tumblr using their API.'=>'Import posts & media from Tumblr using their API.','Import posts from an RSS feed.'=>'Import posts from an RSS feed.','Import posts and comments from a Movable Type or TypePad blog.'=>'Import posts and comments from a Movable Type or TypePad blog.','Import posts from LiveJournal using their API.'=>'Import posts from LiveJournal using their API.','Convert existing categories to tags or tags to categories, selectively.'=>'Convert existing categories to tags or tags to categories, selectively.','Import posts, comments, and users from a Blogger blog.'=>'Import posts, comments, and users from a Blogger blog.','pluginDeactivate %s'=>'Deactivate %s','pluginDelete %s'=>'Delete %s','pluginNetwork Deactivate %s'=>'Network Deactivate %s','By default, new users will receive an email letting them know they’ve been added as a user for your site. This email will also contain a password reset link. Uncheck the box if you do not want to send the new user a welcome email.'=>'By default, new users will receive an email letting them know they’ve been added as a user for your site. This email will also contain a password reset link. Uncheck the box if you do not want to send the new user a welcome email.','New users are automatically assigned a password, which they can change after logging in. You can view or edit the assigned password by clicking the Show Password button. The username cannot be changed once the user has been added.'=>'New users are automatically assigned a password, which they can change after logging in. You can view or edit the assigned password by clicking the Show Password button. The username cannot be changed once the user has been added.','plugin%s was successfully deleted.'=>'%s was successfully deleted.','The search for installed plugins will search for terms in their name, description, or author.'=>'The search for installed plugins will search for terms in their name, description, or author.','Custom Logo'=>'Custom Logo','Sorry, you are not allowed to remove users.'=>'Sorry, you are not allowed to remove users.','Sorry, you are not allowed to add users to this network.'=>'Sorry, you are not allowed to add users to this network.','Sorry, you are not allowed to edit this changeset.'=>'Sorry, you are not allowed to edit this changeset.','Sorry, you are not allowed to update themes for this site.'=>'Sorry, you are not allowed to update themes for this site.','Sorry, you are not allowed to update this site.'=>'Sorry, you are not allowed to update this site.','New version available. '=>'New version available. ','The Theme Installer screen requires JavaScript.'=>'The Theme Installer screen requires JavaScript.','Sorry, you are not allowed to edit templates for this site.'=>'Sorry, you are not allowed to edit templates for this site.','Error: "Table Prefix" is invalid.'=>'Error: "Table Prefix" is invalid.','Sorry, you are not allowed to deactivate plugins for this site.'=>'Sorry, you are not allowed to deactivate plugins for this site.','Sorry, you are not allowed to activate plugins for this site.'=>'Sorry, you are not allowed to activate plugins for this site.','Sorry, you are not allowed to edit plugins for this site.'=>'Sorry, you are not allowed to edit plugins for this site.','Sorry, you are not allowed to modify unregistered settings for this site.'=>'Sorry, you are not allowed to modify unregistered settings for this site.','Sorry, you are not allowed to manage options for this site.'=>'Sorry, you are not allowed to manage options for this site.','Manage with Live Preview'=>'Manage with Live Preview','Sorry, you are not allowed to delete this site.'=>'Sorry, you are not allowed to delete this site.','Sorry, you are not allowed to add links to this site.'=>'Sorry, you are not allowed to add links to this site.','Hi, this is a comment. To get started with moderating, editing, and deleting comments, please visit the Comments screen in the dashboard. Commenter avatars come from Gravatar.'=>'Hi, this is a comment. To get started with moderating, editing, and deleting comments, please visit the Comments screen in the dashboard. -Commenter avatars come from Gravatar.','theme%s was successfully deleted.'=>'%s was successfully deleted.','WordPress %2$s is available! Please notify the site administrator.'=>'WordPress %2$s is available! Please notify the site administrator.','Please update WordPress now'=>'Please update WordPress now','WordPress %2$s is available! Please update now.'=>'WordPress %2$s is available! Please update now.','Portfolio'=>'Portfolio','Photography'=>'Photography','News'=>'News','Food & Drink'=>'Food & Drink','Entertainment'=>'Entertainment','Education'=>'Education','E-Commerce'=>'E-Commerce','Blog'=>'Blog','Footer Widgets'=>'Footer Widgets','Grid Layout'=>'Grid Layout','This will replace the current editor content with the last backup version. You can use undo and redo in the editor to get the old content back or to return to the restored version.'=>'This will replace the current editor content with the last backup version. You can use undo and redo in the editor to get the old content back or to return to the restored version.','Close media attachment panel'=>'Close media attachment panel','Info'=>'Info','Need help? Use the Help tab above the screen title.'=>'Need help? Use the Help tab above the screen title.','Sorry, you are not allowed to access this page.'=>'Sorry, you are not allowed to access this page.','Embed Footer Template'=>'Embed Footer Template','Embed Header Template'=>'Embed Header Template','Embed Content Template'=>'Embed Content Template','Embed 404 Template'=>'Embed 404 Template','Embed Template'=>'Embed Template','pluginActive'=>'Active','(Private post)'=>'(Private post)','Sorry, you are not allowed to edit the links for this site.'=>'Sorry, you are not allowed to edit the links for this site.','Sorry, you are not allowed to manage privacy options on this site.'=>'Sorry, you are not allowed to manage privacy options on this site.','Plugin could not be deleted.'=>'Plugin could not be deleted.','Sorry, you are not allowed to update plugins for this site.'=>'Sorry, you are not allowed to update plugins for this site.','Sorry, you are not allowed to activate plugins on this site.'=>'Sorry, you are not allowed to activate plugins on this site.','Theme could not be deleted.'=>'Theme could not be deleted.','Sorry, you are not allowed to delete themes on this site.'=>'Sorry, you are not allowed to delete themes on this site.','Sorry, you are not allowed to install themes on this site.'=>'Sorry, you are not allowed to install themes on this site.','No theme specified.'=>'No theme specified.','Sorry, you are not allowed to import content into this site.'=>'Sorry, you are not allowed to import content into this site.','Sorry, you are not allowed to export the content of this site.'=>'Sorry, you are not allowed to export the content of this site.','You can filter the list of posts by post status using the text links above the posts list to only show posts with that status. The default view is to show all posts.'=>'You can filter the list of posts by post status using the text links above the posts list to only show posts with that status. The default view is to show all posts.','Close the Customizer and go back to the previous page'=>'Close the Customiser and go back to the previous page','Sorry, you are not allowed to customize headers.'=>'Sorry, you are not allowed to customise headers.','Release Deputy'=>'Release Deputy','Release Design Lead'=>'Release Design Lead','Custom fields can be used to add extra metadata to a post that you can use in your theme.'=>'Custom fields can be used to add extra metadata to a post that you can use in your theme.','Trackbacks are a way to notify legacy blog systems that you’ve linked to them. If you link other WordPress sites, they’ll be notified automatically using pingbacks, no other action necessary.'=>'Trackbacks are a way to notify legacy blog systems that you’ve linked to them. If you link other WordPress sites, they’ll be notified automatically using pingbacks, no other action necessary.','Excerpts are optional hand-crafted summaries of your content that can be used in your theme. Learn more about manual excerpts.'=>'Excerpts are optional hand-crafted summaries of your content that can be used in your theme. Learn more about manual excerpts.','The Text mode allows you to enter HTML along with your post text. Note that <p> and <br> tags are converted to line breaks when switching to the Text editor to make it less cluttered. When you type, a single line break can be used instead of typing <br>, and two line breaks instead of paragraph tags. The line breaks are converted back to tags automatically.'=>'The Text mode allows you to enter HTML along with your post text. Note that <p> and <br> tags are converted to line breaks when switching to the Text editor to make it less cluttered. When you type, a single line break can be used instead of typing <br>, and two line breaks instead of paragraph tags. The line breaks are converted back to tags automatically.','Visual mode gives you an editor that is similar to a word processor. Click the Toolbar Toggle button to get a second row of controls.'=>'Visual mode gives you an editor that is similar to a word processor. Click the Toolbar Toggle button to get a second row of controls.','Error saving media file.'=>'Error saving media file.','%s media file restored from the Trash.'=>'%s media file restored from the Bin.' . "\0" . '%s media files restored from the Bin.','%s media file moved to the Trash.'=>'%s media file moved to the Bin.' . "\0" . '%s media files moved to the Bin.','%s media file permanently deleted.'=>'%s media file permanently deleted.' . "\0" . '%s media files permanently deleted.','%s media file detached.'=>'%s media file detached.' . "\0" . '%s media files detached.','Media file detached.'=>'Media file detached.','%s media file attached.'=>'%s media file attached.' . "\0" . '%s media files attached.','Media file attached.'=>'Media file attached.','Media file updated.'=>'Media file updated.','View %1$s version %2$s details'=>'View %1$s version %2$s details','dashboard%1$s, %2$s'=>'%1$s, %2$s','Publish — You can set the terms of publishing your post in the Publish box. For Status, Visibility, and Publish (immediately), click on the Edit link to reveal more options. Visibility includes options for password-protecting a post or making it stay at the top of your blog indefinitely (sticky). The Password protected option allows you to set an arbitrary password for each post. The Private option hides the post from everyone except editors and administrators. Publish (immediately) allows you to set a future or past date and time, so you can schedule a post to be published in the future or backdate a post.'=>'Publish — You can set the terms of publishing your post in the Publish box. For Status, Visibility, and Publish (immediately), click on the Edit link to reveal more options. Visibility includes options for password-protecting a post or making it stay at the top of your blog indefinitely (sticky). The Password protected option allows you to set an arbitrary password for each post. The Private option hides the post from everyone except editors and administrators. Publish (immediately) allows you to set a future or past date and time, so you can schedule a post to be published in the future or backdate a post.','There is a pending change of your email to %s.'=>'There is a pending change of your email to %s.','Error while saving the new email address. Please try again.'=>'Error while saving the new email address. Please try again.','You can narrow the list by file type/status or by date using the dropdown menus above the media table.'=>'You can narrow the list by file type/status or by date using the dropdown menus above the media table.','The following themes are installed but incomplete.'=>'The following themes are installed but incomplete.','New theme activated.'=>'New theme activated.','Settings saved and theme activated.'=>'Settings saved and theme activated.','https://wordpress.org/themes/'=>'https://en-gb.wordpress.org/themes/','Sorry, you are not allowed to delete that user.'=>'Sorry, you are not allowed to delete that user.','Your database password.'=>'Your database password.','Your database username.'=>'Your database username.','The name of the database you want to use with WordPress.'=>'The name of the database you want to use with WordPress.','plugin%1$s by %2$s'=>'%1$s by %2$s','%1$s by %2$s (will also delete its data)'=>'%1$s by %2$s (will also delete its data)','There is a pending change of the admin email to %s.'=>'There is a pending change of the admin email to %s.','WordPress has been installed. Thank you, and enjoy!'=>'WordPress has been installed. Thank you, and enjoy!','The constant %s cannot be defined when installing WordPress.'=>'The constant %s cannot be defined when installing WordPress.','Your %s file has an empty database table prefix, which is not supported.'=>'Your %s file has an empty database table prefix, which is not supported.','Dismiss the welcome panel'=>'Dismiss the welcome panel','Theme zip file'=>'Theme zip file','Attach to existing content'=>'Attach to existing content','Click the image to edit or update'=>'Click the image to edit or update','Reviews with %1$d star: %2$s. Opens in a new tab.'=>'Reviews with %1$d star: %2$s. Opens in a new tab.' . "\0" . 'Reviews with %1$d stars: %2$s. Opens in a new tab.','Read all reviews on WordPress.org or write your own!'=>'Read all reviews on WordPress.org or write your own!','Reviews'=>'Reviews','You are using a development version of WordPress. These feature plugins are also under development. Learn more.'=>'You are using a development version of WordPress. These feature plugins are also under development. Learn more.','Thumbnail Settings Help'=>'Thumbnail Settings Help','selection height'=>'selection height','selection width'=>'selection width','crop ratio height'=>'crop ratio height','crop ratio width'=>'crop ratio width','Image Crop Help'=>'Image Crop Help','scale height'=>'scale height','New dimensions:'=>'New dimensions:','Scale Image Help'=>'Scale Image Help','Single Page'=>'Single Page','Singular Template'=>'Singular Template','Date Template'=>'Date Template','Taxonomy Template'=>'Taxonomy Template','Dismiss the browser warning panel'=>'Dismiss the browser warning panel','View more comments'=>'View more comments','dashboard%1$s on %2$s %3$s'=>'%1$s on %2$s %3$s','View this comment'=>'View this comment','Another update is currently in progress.'=>'Another update is currently in progress.','Update progress'=>'Update progress','View “%s” archive'=>'View “%s” archive','Delete “%s”'=>'Delete “%s”','Quick edit “%s” inline'=>'Quick edit “%s” inline','Search for plugins in the WordPress Plugin Directory.'=>'Search for plugins in the WordPress Plugin Directory.','Restore “%s” from the Trash'=>'Restore “%s” from the Bin','Delete “%s” permanently'=>'Delete “%s” permanently','Move “%s” to the Trash'=>'Move “%s” to the Bin','Attach “%s” to existing content'=>'Attach “%s” to existing content','Detach from “%s”'=>'Detach from “%s”','“%s” (Edit)'=>'“%s” (Edit)','attachment filterTrash'=>'Bin','Quick edit this comment inline'=>'Quick edit this comment inline','Edit this comment'=>'Edit this comment','Restore this comment from the spam'=>'Restore this comment from the spam','user autocomplete result%1$s (%2$s)'=>'%1$s (%2$s)','The %s importer is invalid or is not installed.'=>'The %s importer is invalid or is not installed.','comment statusPending'=>'Pending','Suggested height is %s.'=>'Suggested height is %s.','Suggested width is %s.'=>'Suggested width is %s.','Images should be at least %s tall.'=>'Images should be at least %s tall.','%d pixels'=>'%d pixels','Images should be at least %s wide.'=>'Images should be at least %s wide.','Send the new user an email about their account'=>'Send the new user an email about their account','Send User Notification'=>'Send User Notification','menu location(Currently set to: %s)'=>'(Currently set to: %s)','Version %s addressed one security issue.'=>'Version %s addressed one security issue.','https://gravatar.com/'=>'https://gravatar.com/','Profile Picture'=>'Profile Picture','Maintenance and Security Releases'=>'Maintenance and Security Releases','Security Releases'=>'Security Releases','Maintenance Releases'=>'Maintenance Releases','Plain'=>'Plain','WordPress offers you the ability to create a custom URL structure for your permalinks and archives. Custom URL structures can improve the aesthetics, usability, and forward-compatibility of your links. A number of tags are available, and here are some examples to get you started.'=>'WordPress offers you the ability to create a custom URL structure for your permalinks and archives. Custom URL structures can improve the aesthetics, usability, and forward-compatibility of your links. A number of tags are available, and here are some examples to get you started.','Permalinks can contain useful information, such as the post date, title, or other elements. You can choose from any of the suggested permalink formats, or you can craft your own if you select Custom Structure.'=>'Permalinks can contain useful information, such as the post date, title, or other elements. You can choose from any of the suggested permalink formats, or you can craft your own if you select Custom Structure.','You can create the %s file manually and paste the following text into it.'=>'You can create the %s file manually and paste the following text into it.','You should be able to get this info from your web host, if %s does not work.'=>'You should be able to get this info from your web host, if %s does not work.','If for any reason this automatic file creation does not work, do not worry. All this does is fill in the database information to a configuration file. You may also simply open %1$s in a text editor, fill in your information, and save it as %2$s.'=>'If for any reason this automatic file creation does not work, do not worry. All this does is fill in the database information to a configuration file. You may also simply open %1$s in a text editor, fill in your information, and save it as %2$s.','Default is %s'=>'Default is %s','The language pack is missing either the %1$s, %2$s, or %3$s files.'=>'The language pack is missing either the %1$s, %2$s, or %3$s files.','The %s stylesheet does not contain a valid theme header.'=>'The %s stylesheet does not contain a valid theme header.','The theme is missing the %s stylesheet.'=>'The theme is missing the %s stylesheet.','If you have marked themes as favorites on WordPress.org, you can browse them here.'=>'If you have marked themes as favourites on WordPress.org, you can browse them here.','themesFavorites'=>'Favourites','Database repair results'=>'Database repair results','Allow automatic database repair'=>'Allow automatic database repair','Successful database connection'=>'Successful database connection','Set up your database connection'=>'Set up your database connection','Before getting started'=>'Before getting started','WordPress database repair'=>'WordPress database repair','Check secret keys'=>'Check secret keys','%s has been updated.'=>'%s has been updated.','The Walker class named %s does not exist.'=>'The Walker class named %s does not exist.','Requires %1$s in %2$s file.'=>'Requires %1$s in %2$s file.','Standard time begins on: %s.'=>'Standard time begins on: %s.','Daylight saving time begins on: %s.'=>'Daylight saving time begins on: %s.','You are about to delete %s.'=>'You are about to delete %s.','Files in the %s directory are executed automatically.'=>'Files in the %s directory are executed automatically.','This will clear all items from the inactive widgets list. You will not be able to restore any customizations.'=>'This will clear all items from the inactive widgets list. You will not be able to restore any customisations.','Clear Inactive Widgets'=>'Clear Inactive Widgets','One of the selected users is not a member of this site.'=>'One of the selected users is not a member of this site.','Users list'=>'Users list','Users list navigation'=>'Users list navigation','Filter users list'=>'Filter users list','Media items list'=>'Media items list','Media items list navigation'=>'Media items list navigation','Filter media items list'=>'Filter media items list','Install Parent Theme'=>'Install Parent Theme','Themes list'=>'Themes list','Filter themes list'=>'Filter themes list','All selected plugins are up to date.'=>'All selected plugins are up to date.','Plugins list'=>'Plugins list','Plugins list navigation'=>'Plugins list navigation','Filter plugins list'=>'Filter plugins list','Browsing %s (inactive)'=>'Browsing %s (inactive)','Editing %s (inactive)'=>'Editing %s (inactive)','Browsing %s (active)'=>'Browsing %s (active)','Editing %s (active)'=>'Editing %s (active)','Local time is %s.'=>'Local time is %s.','Links list'=>'Links list','Get Version %s'=>'Get Version %s','Toggle panel: %s'=>'Toggle panel: %s','Saving revision…'=>'Saving revision…','Edit permalink'=>'Edit permalink','The %1$s plugin header is deprecated. Use %2$s instead.'=>'The %1$s plugin header is deprecated. Use %2$s instead.','Warning'=>'Warning','Warning:'=>'Warning:','Once you hit “Confirm Deletion”, these users will be permanently removed.'=>'Once you hit “Confirm Deletion”, these users will be permanently removed.','Once you hit “Confirm Deletion”, the user will be permanently removed.'=>'Once you hit “Confirm Deletion”, the user will be permanently removed.','User has no sites or content and will be deleted.'=>'User has no sites or content and will be deleted.','Site: %s'=>'Site: %s','Select a user'=>'Select a user','What should be done with content owned by %s?'=>'What should be done with content owned by %s?','Warning! User cannot be deleted. The user %s is a network administrator.'=>'Warning! User cannot be deleted. The user %s is a network administrator.','Warning! User %s cannot be deleted.'=>'Warning! User %s cannot be deleted.','You have chosen to delete the following users from all networks and sites.'=>'You have chosen to delete the following users from all networks and sites.','You have chosen to delete the user from all networks and sites.'=>'You have chosen to delete the user from all networks and sites.','Invalid image URL.'=>'Invalid image URL.','Theme Header'=>'Theme Header','Theme Footer'=>'Theme Footer','M jS Y'=>'j F Y','From %1$s %2$s'=>'From %1$s %2$s','View all drafts'=>'View all drafts','no user rolesNone'=>'None','No role'=>'No role','An error occurred while updating %1$s: %2$s'=>'An error occurred while updating %1$s: %2$s','View mode'=>'View mode','%s column'=>'%s column' . "\0" . '%s columns','Additional settings'=>'Additional settings','Items list'=>'Items list','Items list navigation'=>'Items list navigation','Filter items list'=>'Filter items list','Network Only'=>'Network Only','Network Active'=>'Network Active','No pending comments'=>'No pending comments','Failed to initialize a SFTP subsystem session with the SSH2 Server %s'=>'Failed to initialise a SFTP subsystem session with the SSH2 Server %s','column nameSubmitted on'=>'Submitted on','commentsTrash (%s)'=>'Bin (%s)' . "\0" . 'Bin (%s)','commentsSpam (%s)'=>'Spam (%s)' . "\0" . 'Spam (%s)','commentsApproved (%s)'=>'Approved (%s)' . "\0" . 'Approved (%s)','commentsPending (%s)'=>'Pending (%s)' . "\0" . 'Pending (%s)','commentsAll (%s)'=>'All (%s)' . "\0" . 'All (%s)','User %s added'=>'User %s added','End date:'=>'End date:','Content to export'=>'Content to export','You can view posts in a simple title list or with an excerpt using the Screen Options tab.'=>'You can view posts in a simple title list or with an excerpt using the Screen Options tab.','Submitted on: %s'=>'Submitted on: %s','commentPermalink:'=>'Permalink:','Page draft updated.'=>'Page draft updated.','Page scheduled for: %s.'=>'Page scheduled for: %s.','Page submitted.'=>'Page submitted.','Post draft updated.'=>'Post draft updated.','Post scheduled for: %s.'=>'Post scheduled for: %s.','Post submitted.'=>'Post submitted.','View page'=>'View page','Preview page'=>'Preview page','Preview post'=>'Preview post','Comments list'=>'Comments list','Comments list navigation'=>'Comments list navigation','Filter comments list'=>'Filter comments list','In the Submitted on column, the date and time the comment was left on your site appears. Clicking on the date/time link will take you to that comment on your live site.'=>'In the Submitted on column, the date and time the comment was left on your site appears. Clicking on the date/time link will take you to that comment on your live site.','In the Comment column, hovering over any comment gives you options to approve, reply (and approve), quick edit, edit, spam mark, or trash that comment.'=>'In the Comment column, hovering over any comment gives you options to approve, reply (and approve), quick edit, edit, spam mark, or bin that comment.','Comments (%s)'=>'Comments (%s)','Comments (%1$s) on “%2$s”'=>'Comments (%1$s) on “%2$s”','Sorry, you are not allowed to modify themes.'=>'Sorry, you are not allowed to modify themes.','The active theme does not support a flexible sized header image.'=>'The active theme does not support a flexible sized header image.','The active theme does not support uploading a custom header image.'=>'The active theme does not support uploading a custom header image.','You are using the auto-generated password for your account. Would you like to change it?'=>'You are using the auto-generated password for your account. Would you like to change it?','You have specified this user for removal:'=>'You have specified this user for removal:','Log %s out of all locations.'=>'Log %s out of all locations.','Did you lose your phone or leave your account logged in at a public computer? You can log out everywhere else, and stay logged in here.'=>'Did you lose your phone or leave your account logged in at a public computer? You can log out everywhere else, and stay logged in here.','Log Out Everywhere Else'=>'Log Out Everywhere Else','Sessions'=>'Sessions','Cancel password change'=>'Cancel password change','Generate password'=>'Generate password','Account Management'=>'Account Management','You will need this password to log in. Please store it in a secure location.'=>'You will need this password to log in. Please store it in a secure location.','No approved comments'=>'No approved comments','%s pending comment'=>'%s pending comment' . "\0" . '%s pending comments','%s approved comment'=>'%s approved comment' . "\0" . '%s approved comments','Image could not be processed.'=>'Image could not be processed.','Confirm Password'=>'Confirm Password','Remove Site Icon'=>'Remove Site Icon','While you are editing your %1$s file, take a moment to make sure you have all 8 keys and that they are unique. You can generate these using the WordPress.org secret key service.'=>'While you are editing your %1$s file, take a moment to make sure you have all 8 keys and that they are unique. You can generate these using the WordPress.org secret key service.','Set as Site Icon'=>'Set as Site Icon','Choose a Site Icon'=>'Choose a Site Icon','Show more details'=>'Show more details','Your theme supports %s menu. Select which menu appears in each location.'=>'Your theme supports %s menu. Select which menu appears in each location.' . "\0" . 'Your theme supports %s menus. Select which menu appears in each location.','%s post by this author'=>'%s post by this author' . "\0" . '%s posts by this author','Live Preview “%s”'=>'Live Preview “%s”','last page'=>'last page','first page'=>'first page','In response to: %s'=>'In response to: %s','Date and time'=>'Date and time','You can also embed media from many popular websites including Twitter, YouTube, Flickr and others by pasting the media URL on its own line into the content of your post/page. Learn more about embeds.'=>'You can also embed media from many popular websites including Twitter, YouTube, Flickr and others by pasting the media URL on its own line into the content of your post/page. Learn more about embeds.','Documentation on Custom Background'=>'Documentation on Custom Background','Documentation on Link Categories'=>'Documentation on Link Categories','Documentation on Creating Links'=>'Documentation on Creating Links','Documentation on Managing Links'=>'Documentation on Managing Links','Documentation on Custom Header'=>'Documentation on Custom Header','Documentation on My Sites'=>'Documentation on My Sites','The theme you are currently using is not widget-aware, meaning that it has no sidebars that you are able to change. For information on making your theme widget-aware, please follow these instructions.'=>'The theme you are currently using is not widget-aware, meaning that it has no sidebars that you are able to change. For information on making your theme widget-aware, please follow these instructions.','When you publish a new post, WordPress automatically notifies the following site update services. For more about this, see the Update Services documentation article. Separate multiple service URLs with line breaks.'=>'When you publish a new post, WordPress automatically notifies the following site update services. For more about this, see the Update Services documentation article. Separate multiple service URLs with line breaks.','The character encoding of your site (UTF-8 is recommended)'=>'The character encoding of your site (UTF-8 is recommended)','example: www.wordpress.org'=>'example: www.wordpress.org','The search for installed themes will search for terms in their name, description, author, or tag.'=>'The search for installed themes will search for terms in their name, description, author, or tag.','Alternately, you can browse the themes that are Popular or Latest. When you find a theme you like, you can preview it or install it.'=>'Alternately, you can browse the themes that are popular or latest. When you find a theme you like, you can preview it or install it.','You can Search for themes by keyword, author, or tag, or can get more specific and search by criteria listed in the feature filter.'=>'You can Search for themes by keyword, author, or tag, or can get more specific and search by criteria listed in the feature filter.','Number of Themes found: %d'=>'Number of Themes found: %d','Custom time format:'=>'Custom time format:','enter a custom time format in the following field'=>'enter a custom time format in the following field','Custom date format:'=>'Custom date format:','enter a custom date format in the following field'=>'enter a custom date format in the following field','Plugins updated successfully.'=>'Plugins updated successfully.','Active plugin installations%s+ Million'=>'%s+ Million' . "\0" . '%s+ Million','XML Error: %1$s at line %2$s'=>'XML Error: %1$s at line %2$s','Main menu'=>'Main menu','Enter the location on the server where the public and private keys are located. If a passphrase is needed, enter that in the password field above.'=>'Enter the location on the server where the public and private keys are located. If a passphrase is needed, enter that in the password field above.','%s user deleted.'=>'%s user deleted.' . "\0" . '%s users deleted.','What should be done with content owned by these users?'=>'What should be done with content owned by these users?','You have specified these users for deletion:'=>'You have specified these users for deletion:','You are about to remove the following plugins:'=>'You are about to remove the following plugins:','These plugins may be active on other sites in the network.'=>'These plugins may be active on other sites in the network.','Delete Plugins'=>'Delete Plugins','1 page not updated, somebody is editing it.'=>'1 page not updated, somebody is editing it.','1 post not updated, somebody is editing it.'=>'1 post not updated, somebody is editing it.','You can log out of other devices, such as your phone or a public computer, by clicking the Log Out Everywhere Else button.'=>'You can log out of other devices, such as your phone or a public computer, by clicking the Log Out Everywhere Else button.','New translations are available.'=>'New translations are available.','This theme has not been rated yet.'=>'This theme has not been rated yet.','timezone date formatY-m-d H:i:s'=>'j F Y H:i','To add a custom link, expand the Custom Links section, enter a URL and link text, and click Add to Menu'=>'To add a custom link, expand the Custom Links section, enter a URL and link text, and click Add to Menu','Howdy ###USERNAME###, +Commenter avatars come from Gravatar.','theme%s was successfully deleted.'=>'%s was successfully deleted.','WordPress %2$s is available! Please notify the site administrator.'=>'WordPress %2$s is available! Please notify the site administrator.','Please update WordPress now'=>'Please update WordPress now','WordPress %2$s is available! Please update now.'=>'WordPress %2$s is available! Please update now.','Portfolio'=>'Portfolio','Photography'=>'Photography','News'=>'News','Food & Drink'=>'Food & Drink','Entertainment'=>'Entertainment','Education'=>'Education','E-Commerce'=>'E-Commerce','Blog'=>'Blog','Footer Widgets'=>'Footer Widgets','Grid Layout'=>'Grid Layout','This will replace the current editor content with the last backup version. You can use undo and redo in the editor to get the old content back or to return to the restored version.'=>'This will replace the current editor content with the last backup version. You can use undo and redo in the editor to get the old content back or to return to the restored version.','Close media attachment panel'=>'Close media attachment panel','Info'=>'Info','Need help? Use the Help tab above the screen title.'=>'Need help? Use the Help tab above the screen title.','Sorry, you are not allowed to access this page.'=>'Sorry, you are not allowed to access this page.','Embed Footer Template'=>'Embed Footer Template','Embed Header Template'=>'Embed Header Template','Embed Content Template'=>'Embed Content Template','Embed 404 Template'=>'Embed 404 Template','Embed Template'=>'Embed Template','pluginActive'=>'Active','(Private post)'=>'(Private post)','Sorry, you are not allowed to edit the links for this site.'=>'Sorry, you are not allowed to edit the links for this site.','Sorry, you are not allowed to manage privacy options on this site.'=>'Sorry, you are not allowed to manage privacy options on this site.','Plugin could not be deleted.'=>'Plugin could not be deleted.','Sorry, you are not allowed to update plugins for this site.'=>'Sorry, you are not allowed to update plugins for this site.','Sorry, you are not allowed to activate plugins on this site.'=>'Sorry, you are not allowed to activate plugins on this site.','Theme could not be deleted.'=>'Theme could not be deleted.','Sorry, you are not allowed to delete themes on this site.'=>'Sorry, you are not allowed to delete themes on this site.','Sorry, you are not allowed to install themes on this site.'=>'Sorry, you are not allowed to install themes on this site.','No theme specified.'=>'No theme specified.','Sorry, you are not allowed to import content into this site.'=>'Sorry, you are not allowed to import content into this site.','Sorry, you are not allowed to export the content of this site.'=>'Sorry, you are not allowed to export the content of this site.','You can filter the list of posts by post status using the text links above the posts list to only show posts with that status. The default view is to show all posts.'=>'You can filter the list of posts by post status using the text links above the posts list to only show posts with that status. The default view is to show all posts.','Close the Customizer and go back to the previous page'=>'Close the Customiser and go back to the previous page','Sorry, you are not allowed to customize headers.'=>'Sorry, you are not allowed to customise headers.','Release Deputy'=>'Release Deputy','Release Design Lead'=>'Release Design Lead','Editor improvements'=>'Editor improvements','Custom fields can be used to add extra metadata to a post that you can use in your theme.'=>'Custom fields can be used to add extra metadata to a post that you can use in your theme.','Trackbacks are a way to notify legacy blog systems that you’ve linked to them. If you link other WordPress sites, they’ll be notified automatically using pingbacks, no other action necessary.'=>'Trackbacks are a way to notify legacy blog systems that you’ve linked to them. If you link other WordPress sites, they’ll be notified automatically using pingbacks, no other action necessary.','Excerpts are optional hand-crafted summaries of your content that can be used in your theme. Learn more about manual excerpts.'=>'Excerpts are optional hand-crafted summaries of your content that can be used in your theme. Learn more about manual excerpts.','The Code mode allows you to enter HTML along with your post text. Note that <p> and <br> tags are converted to line breaks when switching to the Code editor to make it less cluttered. When you type, a single line break can be used instead of typing <br>, and two line breaks instead of paragraph tags. The line breaks are converted back to tags automatically.'=>'The Code mode allows you to enter HTML along with your post text. Note that <p> and <br> tags are converted to line breaks when switching to the code editor to make it less cluttered. When you type, a single line break can be used instead of typing <br>, and two line breaks instead of paragraph tags. The line breaks are converted back to tags automatically.','Visual mode gives you an editor that is similar to a word processor. Click the Toolbar Toggle button to get a second row of controls.'=>'Visual mode gives you an editor that is similar to a word processor. Click the Toolbar Toggle button to get a second row of controls.','Error saving media file.'=>'Error saving media file.','%s media file restored from the Trash.'=>'%s media file restored from the Bin.' . "\0" . '%s media files restored from the Bin.','%s media file moved to the Trash.'=>'%s media file moved to the Bin.' . "\0" . '%s media files moved to the Bin.','%s media file permanently deleted.'=>'%s media file permanently deleted.' . "\0" . '%s media files permanently deleted.','%s media file detached.'=>'%s media file detached.' . "\0" . '%s media files detached.','Media file detached.'=>'Media file detached.','%s media file attached.'=>'%s media file attached.' . "\0" . '%s media files attached.','Media file attached.'=>'Media file attached.','Media file updated.'=>'Media file updated.','View %1$s version %2$s details'=>'View %1$s version %2$s details','dashboard%1$s, %2$s'=>'%1$s, %2$s','Publish — You can set the terms of publishing your post in the Publish box. For Status, Visibility, and Publish (immediately), click on the Edit link to reveal more options. Visibility includes options for password-protecting a post or making it stay at the top of your blog indefinitely (sticky). The Password protected option allows you to set an arbitrary password for each post. The Private option hides the post from everyone except editors and administrators. Publish (immediately) allows you to set a future or past date and time, so you can schedule a post to be published in the future or backdate a post.'=>'Publish — You can set the terms of publishing your post in the Publish box. For Status, Visibility, and Publish (immediately), click on the Edit link to reveal more options. Visibility includes options for password-protecting a post or making it stay at the top of your blog indefinitely (sticky). The Password protected option allows you to set an arbitrary password for each post. The Private option hides the post from everyone except editors and administrators. Publish (immediately) allows you to set a future or past date and time, so you can schedule a post to be published in the future or backdate a post.','There is a pending change of your email to %s.'=>'There is a pending change of your email to %s.','Error while saving the new email address. Please try again.'=>'Error while saving the new email address. Please try again.','You can narrow the list by file type/status or by date using the dropdown menus above the media table.'=>'You can narrow the list by file type/status or by date using the dropdown menus above the media table.','The following themes are installed but incomplete.'=>'The following themes are installed but incomplete.','New theme activated.'=>'New theme activated.','Settings saved and theme activated.'=>'Settings saved and theme activated.','https://wordpress.org/themes/'=>'https://en-gb.wordpress.org/themes/','Sorry, you are not allowed to delete that user.'=>'Sorry, you are not allowed to delete that user.','Your database password.'=>'Your database password.','Your database username.'=>'Your database username.','The name of the database you want to use with WordPress.'=>'The name of the database you want to use with WordPress.','plugin%1$s by %2$s'=>'%1$s by %2$s','%1$s by %2$s (will also delete its data)'=>'%1$s by %2$s (will also delete its data)','There is a pending change of the admin email to %s.'=>'There is a pending change of the admin email to %s.','WordPress has been installed. Thank you, and enjoy!'=>'WordPress has been installed. Thank you, and enjoy!','The constant %s cannot be defined when installing WordPress.'=>'The constant %s cannot be defined when installing WordPress.','Your %s file has an empty database table prefix, which is not supported.'=>'Your %s file has an empty database table prefix, which is not supported.','Dismiss the welcome panel'=>'Dismiss the welcome panel','Theme zip file'=>'Theme zip file','Attach to existing content'=>'Attach to existing content','Click the image to edit or update'=>'Click the image to edit or update','Reviews with %1$d star: %2$s. Opens in a new tab.'=>'Reviews with %1$d star: %2$s. Opens in a new tab.' . "\0" . 'Reviews with %1$d stars: %2$s. Opens in a new tab.','Read all reviews on WordPress.org or write your own!'=>'Read all reviews on WordPress.org or write your own!','Reviews'=>'Reviews','You are using a development version of WordPress. These feature plugins are also under development. Learn more.'=>'You are using a development version of WordPress. These feature plugins are also under development. Learn more.','Thumbnail Settings Help'=>'Thumbnail Settings Help','selection height'=>'selection height','selection width'=>'selection width','crop ratio height'=>'crop ratio height','crop ratio width'=>'crop ratio width','Image Crop Help'=>'Image Crop Help','scale height'=>'scale height','New dimensions:'=>'New dimensions:','Scale Image Help'=>'Scale Image Help','Single Page'=>'Single Page','Singular Template'=>'Singular Template','Date Template'=>'Date Template','Taxonomy Template'=>'Taxonomy Template','Dismiss the browser warning panel'=>'Dismiss the browser warning panel','View more comments'=>'View more comments','dashboard%1$s on %2$s %3$s'=>'%1$s on %2$s %3$s','View this comment'=>'View this comment','Another update is currently in progress.'=>'Another update is currently in progress.','Update progress'=>'Update progress','View “%s” archive'=>'View “%s” archive','Delete “%s”'=>'Delete “%s”','Quick edit “%s” inline'=>'Quick edit “%s” inline','Search for plugins in the WordPress Plugin Directory.'=>'Search for plugins in the WordPress Plugin Directory.','Restore “%s” from the Trash'=>'Restore “%s” from the Bin','Delete “%s” permanently'=>'Delete “%s” permanently','Move “%s” to the Trash'=>'Move “%s” to the Bin','Attach “%s” to existing content'=>'Attach “%s” to existing content','Detach from “%s”'=>'Detach from “%s”','“%s” (Edit)'=>'“%s” (Edit)','attachment filterTrash'=>'Bin','Quick edit this comment inline'=>'Quick edit this comment inline','Edit this comment'=>'Edit this comment','Restore this comment from the spam'=>'Restore this comment from the spam','user autocomplete result%1$s (%2$s)'=>'%1$s (%2$s)','The %s importer is invalid or is not installed.'=>'The %s importer is invalid or is not installed.','comment statusPending'=>'Pending','Suggested height is %s.'=>'Suggested height is %s.','Suggested width is %s.'=>'Suggested width is %s.','Images should be at least %s tall.'=>'Images should be at least %s tall.','%d pixels'=>'%d pixels','Images should be at least %s wide.'=>'Images should be at least %s wide.','Send the new user an email about their account'=>'Send the new user an email about their account','Send User Notification'=>'Send User Notification','menu location(Currently set to: %s)'=>'(Currently set to: %s)','Version %s addressed one security issue.'=>'Version %s addressed one security issue.','https://gravatar.com/'=>'https://gravatar.com/','Profile Picture'=>'Profile Picture','Maintenance and Security Releases'=>'Maintenance and Security Releases','Security Releases'=>'Security Releases','Maintenance Releases'=>'Maintenance Releases','Plain'=>'Plain','WordPress offers you the ability to create a custom URL structure for your permalinks and archives. Custom URL structures can improve the aesthetics, usability, and forward-compatibility of your links. A number of tags are available, and here are some examples to get you started.'=>'WordPress offers you the ability to create a custom URL structure for your permalinks and archives. Custom URL structures can improve the aesthetics, usability, and forward-compatibility of your links. A number of tags are available, and here are some examples to get you started.','Permalinks can contain useful information, such as the post date, title, or other elements. You can choose from any of the suggested permalink formats, or you can craft your own if you select Custom Structure.'=>'Permalinks can contain useful information, such as the post date, title, or other elements. You can choose from any of the suggested permalink formats, or you can craft your own if you select Custom Structure.','You can create the %s file manually and paste the following text into it.'=>'You can create the %s file manually and paste the following text into it.','You should be able to get this info from your web host, if %s does not work.'=>'You should be able to get this info from your web host, if %s does not work.','If for any reason this automatic file creation does not work, do not worry. All this does is fill in the database information to a configuration file. You may also simply open %1$s in a text editor, fill in your information, and save it as %2$s.'=>'If for any reason this automatic file creation does not work, do not worry. All this does is fill in the database information to a configuration file. You may also simply open %1$s in a text editor, fill in your information, and save it as %2$s.','Default is %s'=>'Default is %s','The language pack is missing either the %1$s, %2$s, or %3$s files.'=>'The language pack is missing either the %1$s, %2$s, or %3$s files.','The %s stylesheet does not contain a valid theme header.'=>'The %s stylesheet does not contain a valid theme header.','The theme is missing the %s stylesheet.'=>'The theme is missing the %s stylesheet.','If you have marked themes as favorites on WordPress.org, you can browse them here.'=>'If you have marked themes as favourites on WordPress.org, you can browse them here.','themesFavorites'=>'Favourites','Database repair results'=>'Database repair results','Allow automatic database repair'=>'Allow automatic database repair','Successful database connection'=>'Successful database connection','Set up your database connection'=>'Set up your database connection','Before getting started'=>'Before getting started','WordPress database repair'=>'WordPress database repair','Check secret keys'=>'Check secret keys','%s has been updated.'=>'%s has been updated.','The Walker class named %s does not exist.'=>'The Walker class named %s does not exist.','Requires %1$s in %2$s file.'=>'Requires %1$s in %2$s file.','Standard time begins on: %s.'=>'Standard time begins on: %s.','Daylight saving time begins on: %s.'=>'Daylight saving time begins on: %s.','You are about to delete %s.'=>'You are about to delete %s.','Files in the %s directory are executed automatically.'=>'Files in the %s directory are executed automatically.','This will clear all items from the inactive widgets list. You will not be able to restore any customizations.'=>'This will clear all items from the inactive widgets list. You will not be able to restore any customisations.','Clear Inactive Widgets'=>'Clear Inactive Widgets','One of the selected users is not a member of this site.'=>'One of the selected users is not a member of this site.','Users list'=>'Users list','Users list navigation'=>'Users list navigation','Filter users list'=>'Filter users list','Media items list'=>'Media items list','Media items list navigation'=>'Media items list navigation','Filter media items list'=>'Filter media items list','Install Parent Theme'=>'Install Parent Theme','Themes list'=>'Themes list','Filter themes list'=>'Filter themes list','All selected plugins are up to date.'=>'All selected plugins are up to date.','Plugins list'=>'Plugins list','Plugins list navigation'=>'Plugins list navigation','Filter plugins list'=>'Filter plugins list','Browsing %s (inactive)'=>'Browsing %s (inactive)','Editing %s (inactive)'=>'Editing %s (inactive)','Browsing %s (active)'=>'Browsing %s (active)','Editing %s (active)'=>'Editing %s (active)','Local time is %s.'=>'Local time is %s.','Links list'=>'Links list','Get Version %s'=>'Get Version %s','Toggle panel: %s'=>'Toggle panel: %s','Saving revision…'=>'Saving revision…','Edit permalink'=>'Edit permalink','The %1$s plugin header is deprecated. Use %2$s instead.'=>'The %1$s plugin header is deprecated. Use %2$s instead.','Warning'=>'Warning','Warning:'=>'Warning:','Once you hit “Confirm Deletion”, these users will be permanently removed.'=>'Once you hit “Confirm Deletion”, these users will be permanently removed.','Once you hit “Confirm Deletion”, the user will be permanently removed.'=>'Once you hit “Confirm Deletion”, the user will be permanently removed.','User has no sites or content and will be deleted.'=>'User has no sites or content and will be deleted.','Site: %s'=>'Site: %s','Select a user'=>'Select a user','What should be done with content owned by %s?'=>'What should be done with content owned by %s?','Warning! User cannot be deleted. The user %s is a network administrator.'=>'Warning! User cannot be deleted. The user %s is a network administrator.','Warning! User %s cannot be deleted.'=>'Warning! User %s cannot be deleted.','You have chosen to delete the following users from all networks and sites.'=>'You have chosen to delete the following users from all networks and sites.','You have chosen to delete the user from all networks and sites.'=>'You have chosen to delete the user from all networks and sites.','Invalid image URL.'=>'Invalid image URL.','Theme Header'=>'Theme Header','Theme Footer'=>'Theme Footer','M jS Y'=>'j F Y','From %1$s %2$s'=>'From %1$s %2$s','View all drafts'=>'View all drafts','no user rolesNone'=>'None','No role'=>'No role','An error occurred while updating %1$s: %2$s'=>'An error occurred while updating %1$s: %2$s','View mode'=>'View mode','%s column'=>'%s column' . "\0" . '%s columns','Additional settings'=>'Additional settings','Items list'=>'Items list','Items list navigation'=>'Items list navigation','Filter items list'=>'Filter items list','Network Only'=>'Network Only','Network Active'=>'Network Active','No pending comments'=>'No pending comments','Failed to initialize a SFTP subsystem session with the SSH2 Server %s'=>'Failed to initialise a SFTP subsystem session with the SSH2 Server %s','column nameSubmitted on'=>'Submitted on','commentsTrash (%s)'=>'Bin (%s)' . "\0" . 'Bin (%s)','commentsSpam (%s)'=>'Spam (%s)' . "\0" . 'Spam (%s)','commentsApproved (%s)'=>'Approved (%s)' . "\0" . 'Approved (%s)','commentsPending (%s)'=>'Pending (%s)' . "\0" . 'Pending (%s)','commentsAll (%s)'=>'All (%s)' . "\0" . 'All (%s)','User %s added'=>'User %s added','End date:'=>'End date:','Content to export'=>'Content to export','You can view posts in a simple title list or with an excerpt using the Screen Options tab.'=>'You can view posts in a simple title list or with an excerpt using the Screen Options tab.','Submitted on: %s'=>'Submitted on: %s','commentPermalink:'=>'Permalink:','Page draft updated.'=>'Page draft updated.','Page scheduled for: %s.'=>'Page scheduled for: %s.','Page submitted.'=>'Page submitted.','Post draft updated.'=>'Post draft updated.','Post scheduled for: %s.'=>'Post scheduled for: %s.','Post submitted.'=>'Post submitted.','View page'=>'View page','Preview page'=>'Preview page','Preview post'=>'Preview post','Comments list'=>'Comments list','Comments list navigation'=>'Comments list navigation','Filter comments list'=>'Filter comments list','In the Submitted on column, the date and time the comment was left on your site appears. Clicking on the date/time link will take you to that comment on your live site.'=>'In the Submitted on column, the date and time the comment was left on your site appears. Clicking on the date/time link will take you to that comment on your live site.','In the Comment column, hovering over any comment gives you options to approve, reply (and approve), quick edit, edit, spam mark, or trash that comment.'=>'In the Comment column, hovering over any comment gives you options to approve, reply (and approve), quick edit, edit, spam mark, or bin that comment.','Comments (%s)'=>'Comments (%s)','Comments (%1$s) on “%2$s”'=>'Comments (%1$s) on “%2$s”','Sorry, you are not allowed to modify themes.'=>'Sorry, you are not allowed to modify themes.','The active theme does not support a flexible sized header image.'=>'The active theme does not support a flexible sized header image.','You are using the auto-generated password for your account. Would you like to change it?'=>'You are using the auto-generated password for your account. Would you like to change it?','You have specified this user for removal:'=>'You have specified this user for removal:','Log %s out of all locations.'=>'Log %s out of all locations.','Did you lose your phone or leave your account logged in at a public computer? You can log out everywhere else, and stay logged in here.'=>'Did you lose your phone or leave your account logged in at a public computer? You can log out everywhere else, and stay logged in here.','Log Out Everywhere Else'=>'Log Out Everywhere Else','Sessions'=>'Sessions','Cancel password change'=>'Cancel password change','Generate password'=>'Generate password','Account Management'=>'Account Management','You will need this password to log in. Please store it in a secure location.'=>'You will need this password to log in. Please store it in a secure location.','No approved comments'=>'No approved comments','%s pending comment'=>'%s pending comment' . "\0" . '%s pending comments','%s approved comment'=>'%s approved comment' . "\0" . '%s approved comments','Image could not be processed.'=>'Image could not be processed.','Confirm Password'=>'Confirm Password','Remove Site Icon'=>'Remove Site Icon','While you are editing your %1$s file, take a moment to make sure you have all 8 keys and that they are unique. You can generate these using the WordPress.org secret key service.'=>'While you are editing your %1$s file, take a moment to make sure you have all 8 keys and that they are unique. You can generate these using the WordPress.org secret key service.','Set as Site Icon'=>'Set as Site Icon','Choose a Site Icon'=>'Choose a Site Icon','Show more details'=>'Show more details','Your theme supports %s menu. Select which menu appears in each location.'=>'Your theme supports %s menu. Select which menu appears in each location.' . "\0" . 'Your theme supports %s menus. Select which menu appears in each location.','%s post by this author'=>'%s post by this author' . "\0" . '%s posts by this author','Live Preview “%s”'=>'Live Preview “%s”','last page'=>'last page','first page'=>'first page','In response to: %s'=>'In response to: %s','Date and time'=>'Date and time','You can also embed media from many popular websites including Twitter, YouTube, Flickr and others by pasting the media URL on its own line into the content of your post/page. Learn more about embeds.'=>'You can also embed media from many popular websites including Twitter, YouTube, Flickr and others by pasting the media URL on its own line into the content of your post/page. Learn more about embeds.','Documentation on Custom Background'=>'Documentation on Custom Background','Documentation on Link Categories'=>'Documentation on Link Categories','Documentation on Creating Links'=>'Documentation on Creating Links','Documentation on Managing Links'=>'Documentation on Managing Links','Documentation on Custom Header'=>'Documentation on Custom Header','Documentation on My Sites'=>'Documentation on My Sites','The theme you are currently using is not widget-aware, meaning that it has no sidebars that you are able to change. For information on making your theme widget-aware, please follow these instructions.'=>'The theme you are currently using is not widget-aware, meaning that it has no sidebars that you are able to change. For information on making your theme widget-aware, please follow these instructions.','When you publish a new post, WordPress automatically notifies the following site update services. For more about this, see the Update Services documentation article. Separate multiple service URLs with line breaks.'=>'When you publish a new post, WordPress automatically notifies the following site update services. For more about this, see the Update Services documentation article. Separate multiple service URLs with line breaks.','The character encoding of your site (UTF-8 is recommended)'=>'The character encoding of your site (UTF-8 is recommended)','example: www.wordpress.org'=>'example: www.wordpress.org','The search for installed themes will search for terms in their name, description, author, or tag.'=>'The search for installed themes will search for terms in their name, description, author, or tag.','Alternately, you can browse the themes that are Popular or Latest. When you find a theme you like, you can preview it or install it.'=>'Alternately, you can browse the themes that are popular or latest. When you find a theme you like, you can preview it or install it.','You can Search for themes by keyword, author, or tag, or can get more specific and search by criteria listed in the feature filter.'=>'You can Search for themes by keyword, author, or tag, or can get more specific and search by criteria listed in the feature filter.','Number of Themes found: %d'=>'Number of Themes found: %d','Custom time format:'=>'Custom time format:','enter a custom time format in the following field'=>'enter a custom time format in the following field','Custom date format:'=>'Custom date format:','enter a custom date format in the following field'=>'enter a custom date format in the following field','Plugins updated successfully.'=>'Plugins updated successfully.','Active plugin installations%s+ Million'=>'%s+ Million' . "\0" . '%s+ Million','XML Error: %1$s at line %2$s'=>'XML Error: %1$s at line %2$s','Main menu'=>'Main menu','Enter the location on the server where the public and private keys are located. If a passphrase is needed, enter that in the password field above.'=>'Enter the location on the server where the public and private keys are located. If a passphrase is needed, enter that in the password field above.','%s user deleted.'=>'%s user deleted.' . "\0" . '%s users deleted.','What should be done with content owned by these users?'=>'What should be done with content owned by these users?','You have specified these users for deletion:'=>'You have specified these users for deletion:','You are about to remove the following plugins:'=>'You are about to remove the following plugins:','These plugins may be active on other sites in the network.'=>'These plugins may be active on other sites in the network.','Delete Plugins'=>'Delete Plugins','1 page not updated, somebody is editing it.'=>'1 page not updated, somebody is editing it.','1 post not updated, somebody is editing it.'=>'1 post not updated, somebody is editing it.','You can log out of other devices, such as your phone or a public computer, by clicking the Log Out Everywhere Else button.'=>'You can log out of other devices, such as your phone or a public computer, by clicking the Log Out Everywhere Else button.','New translations are available.'=>'New translations are available.','This theme has not been rated yet.'=>'This theme has not been rated yet.','timezone date formatY-m-d H:i:s'=>'j F Y H:i','To add a custom link, expand the Custom Links section, enter a URL and link text, and click Add to Menu'=>'To add a custom link, expand the Custom Links section, enter a URL and link text, and click Add to Menu','Howdy ###USERNAME###, You recently clicked the \'Delete Site\' link on your site and filled in a form on that page. @@ -137,11 +137,11 @@ We hope you enjoy your new site. Thanks! --The WordPress Team https://wordpress.org/ -','You cannot delete a theme while it has an active child theme.'=>'You cannot delete a theme while it has an active child theme.','Mystery Person'=>'Mystery Person','Usernames can have only alphanumeric characters, spaces, underscores, hyphens, periods, and the @ symbol.'=>'Usernames can have only alphanumeric characters, spaces, underscores, hyphens, full stops, and the @ symbol.','Enable full-height editor and distraction-free functionality.'=>'Enable full-height editor and distraction-free functionality.','https://planet.wordpress.org/feed/'=>'https://planet.wordpress.org/feed/','https://planet.wordpress.org/'=>'https://planet.wordpress.org/','Untested with your version of WordPress'=>'Untested with your version of WordPress','All categories'=>'All categories','Filter by comment type'=>'Filter by comment type','%s has been logged out.'=>'%s has been logged out.','You are now logged out everywhere else.'=>'You are now logged out everywhere else.','Could not log out user sessions. Please try again.'=>'Could not log out user sessions. Please try again.','This preview is unavailable in the editor.'=>'This preview is unavailable in the editor.','You can insert media files by clicking the button above the post editor and following the directions. You can align or edit images using the inline formatting toolbar available in Visual mode.'=>'You can insert media files by clicking the button above the post editor and following the directions. You can align or edit images using the inline formatting toolbar available in Visual mode.','Post editor — Enter the text for your post. There are two modes of editing: Visual and Text. Choose the mode by clicking on the appropriate tab.'=>'Post editor — Enter the text for your post. There are two modes of editing: Visual and Text. Choose the mode by clicking on the appropriate tab.','You can now manage and live-preview Custom Header in the Customizer.'=>'You can now manage and live-preview Custom Header in the Customiser.','You can now manage and live-preview Custom Backgrounds in the Customizer.'=>'You can now manage and live-preview Custom Backgrounds in the Customiser.','Welcome panelWelcome'=>'Welcome','usersAll (%s)'=>'All (%s)' . "\0" . 'All (%s)','link nameName'=>'Name','If you like, you may enter custom structures for your category and tag URLs here. For example, using topics as your category base would make your category links like %s/topics/uncategorized/. If you leave these blank the defaults will be used.'=>'If you like, you may enter custom structures for your category and tag URLs here. For example, using topics as your category base would make your category links like %s/topics/uncategorised/. If you leave these blank the defaults will be used.','Release Lead'=>'Release Lead','Use the arrow buttons at the top of the dialog, or the left and right arrow keys on your keyboard, to navigate between media items quickly.'=>'Use the arrow buttons at the top of the dialog, or the left and right arrow keys on your keyboard, to navigate between media items quickly.','You can also delete individual items and access the extended edit screen from the details dialog.'=>'You can also delete individual items and access the extended edit screen from the details dialog.','Clicking an item will display an Attachment Details dialog, which allows you to preview media and make quick edits. Any changes you make to the attachment details will be automatically saved.'=>'Clicking an item will display an Attachment Details dialog, which allows you to preview media and make quick edits. Any changes you make to the attachment details will be automatically saved.','To delete media items, click the Bulk Select button at the top of the screen. Select any items you wish to delete, then click the Delete Selected button. Clicking the Cancel Selection button takes you back to viewing your media.'=>'To delete media items, click the Bulk Select button at the top of the screen. Select any items you wish to delete, then click the Delete Selected button. Clicking the Cancel Selection button takes you back to viewing your media.','You can view your media in a simple visual grid or a list with columns. Switch between these views using the icons to the left above the media.'=>'You can view your media in a simple visual grid or a list with columns. Switch between these views using the icons to the left above the media.','All the files you’ve uploaded are listed in the Media Library, with the most recent uploads listed first.'=>'All the files you’ve uploaded are listed in the Media Library, with the most recent uploads listed first.','If you just want to get an idea of what’s available, you can browse Featured and Popular plugins by using the links above the plugins list. These sections rotate regularly.'=>'If you just want to get an idea of what’s available, you can browse Featured and Popular plugins by using the links above the plugins list. These sections rotate regularly.','Browse Plugins'=>'Browse Plugins','Add Plugins'=>'Add Plugins','The %1$s constant in your %2$s file is no longer needed.'=>'The %1$s constant in your %2$s file is no longer needed.','Invalid translation type.'=>'Invalid translation type.','Welcome to the famous five-minute WordPress installation process! Just fill in the information below and you’ll be on your way to using the most extendable and powerful personal publishing platform in the world.'=>'Welcome to the famous five-minute WordPress installation process! Just fill in the information below and you’ll be on your way to using the most extendable and powerful personal publishing platform in the world.','Compatible with your version of WordPress'=>'Compatible with your version of WordPress','Incompatible with your version of WordPress'=>'Incompatible with your version of WordPress','%d star'=>'%d star' . "\0" . '%d stars','Select bulk action'=>'Select bulk action','Add the user without sending an email that requires their confirmation'=>'Add the user without sending an email that requires their confirmation','The grid view for the Media Library requires JavaScript. Switch to the list view.'=>'The grid view for the Media Library requires JavaScript. Switch to the list view.','Contributors'=>'Contributors','Donate to this plugin »'=>'Donate to this plugin »','Plugin installer section titleReviews'=>'Reviews','The WordPress team is willing to help you. Forward this email to %s and the team will work with you to make sure your site is working.'=>'The WordPress team is willing to help you. Forward this email to %s and the team will work with you to make sure your site is working.','themesRecently Updated'=>'Recently Updated','Number/count of itemsCount'=>'Count','View details'=>'View details','More Details'=>'More Details','Plugin installer group titleTools'=>'Tools','Plugin installer group titleSocial'=>'Social','Plugin installer group titlePerformance'=>'Performance','Plugin InstallerBeta Testing'=>'Beta Testing','%s failed to embed.'=>'%s failed to embed.','Filtering by:'=>'Filtering by:','Displayed on attachment pages.'=>'Displayed on attachment pages.','You can edit the image while preserving the thumbnail. For example, you may wish to have a square thumbnail that displays just a section of the image.'=>'You can edit the image while preserving the thumbnail. For example, you may wish to have a square thumbnail that displays just a section of the image.','Once you have made your selection, you can adjust it by entering the size in pixels. The minimum selection size is the thumbnail size as set in the Media settings.'=>'Once you have made your selection, you can adjust it by entering the size in pixels. The minimum selection size is the thumbnail size as set in the Media settings.','The aspect ratio is the relationship between the width and height. You can preserve the aspect ratio by holding down the shift key while resizing your selection. Use the input box to specify the aspect ratio, e.g. 1:1 (square), 4:3, 16:9, etc.'=>'The aspect ratio is the relationship between the width and height. You can preserve the aspect ratio by holding down the shift key while resizing your selection. Use the input box to specify the aspect ratio, e.g. 1:1 (square), 4:3, 16:9, etc.','To crop the image, click on it and drag to make your selection.'=>'To crop the image, click on it and drag to make your selection.','You can proportionally scale the original image. For best results, scaling should be done before you crop, flip, or rotate. Images can only be scaled down, not up.'=>'You can proportionally scale the original image. For best results, scaling should be done before you crop, flip, or rotate. Images can only be scaled down, not up.','Keyboard users: When you are working in the visual editor, you can use %s to access the toolbar.'=>'Keyboard users: When you are working in the visual editor, you can use %s to access the toolbar.','A red bar on the left means the comment is waiting for you to moderate it.'=>'A red bar on the left means the comment is waiting for you to moderate it.','All comment types'=>'All comment types','themesLatest'=>'Latest','themesPopular'=>'Popular','themesFeatured'=>'Featured','Attribute all content to:'=>'Attribute all content to:','Delete all content.'=>'Delete all content.','What should be done with content owned by this user?'=>'What should be done with content owned by this user?' . "\0" . 'What should be done with content owned by these users?','Delete brings you to the Delete Users screen for confirmation, where you can permanently remove a user from your site and delete their content. You can also delete multiple users at once by using bulk actions.'=>'Delete brings you to the Delete Users screen for confirmation, where you can permanently remove a user from your site and delete their content. You can also delete multiple users at once by using bulk actions.','Remove allows you to remove a user from your site. It does not delete their content. You can also remove multiple users at once by using bulk actions.'=>'Remove allows you to remove a user from your site. It does not delete their content. You can also remove multiple users at once by using bulk actions.','themeDetails & Preview'=>'Details & Preview','Search Themes'=>'Search Themes','Add Themes'=>'Add Themes','https://wordpress.org/support/forum/how-to-and-troubleshooting'=>'https://wordpress.org/support/forum/how-to-and-troubleshooting','At a Glance — Displays a summary of the content on your site and identifies which theme and version of WordPress you are using.'=>'At a Glance – Displays a summary of the content on your site and identifies which theme and version of WordPress you are using.','Box Controls — Click the title bar of the box to expand or collapse it. Some boxes added by plugins may have configurable content, and will show a “Configure” link in the title bar if you hover over it.'=>'Box Controls — Click the title bar of the box to expand or collapse it. Some boxes added by plugins may have configurable content, and will show a “Configure” link in the title bar if you hover over it.','Sorry, you are not allowed to resume this theme.'=>'Sorry, you are not allowed to resume this theme.','Edit date and time'=>'Edit date and time','Browse revisions'=>'Browse revisions','Edit visibility'=>'Edit visibility','Edit status'=>'Edit status','Support forums'=>'Support forums','Thank you for creating with WordPress.'=>'Thank you for creating with WordPress.','Translations — The files translating WordPress into your language are updated for you whenever any other updates occur. But if these files are out of date, you can click the “Update Translations” button.'=>'Translations — The files translating WordPress into your language are updated for you whenever any other updates occur. But if these files are out of date, you can click the “Update Translations” button.','In most cases, WordPress will automatically apply maintenance and security updates in the background for you.'=>'In most cases, WordPress will automatically apply maintenance and security updates in the background for you.','WordPress — Updating your WordPress installation is a simple one-click procedure: just click on the “Update now” button when you are notified that a new version is available.'=>'WordPress – updating your WordPress installation is a simple one-click procedure: just click on the “Update now” button when you are notified that a new version is available.','If an update is available, you᾿ll see a notification appear in the Toolbar and navigation menu.'=>'If an update is available, you᾿ll see a notification appear in the toolbar and navigation menu.','Themes and Plugins — To update individual themes or plugins from this screen, use the checkboxes to make your selection, then click on the appropriate “Update” button. To update all of your themes or plugins at once, you can check the box at the top of the section to select all before clicking the update button.'=>'Themes and Plugins — To update individual themes or plugins from this screen, use the checkboxes to make your selection, then click on the appropriate “Update” button. To update all of your themes or plugins at once, you can check the box at the top of the section to select all before clicking the update button.','On this screen, you can update to the latest version of WordPress, as well as update your themes, plugins, and translations from the WordPress.org repositories.'=>'On this screen, you can update to the latest version of WordPress, as well as update your themes, plugins, and translations from the WordPress.org repositories.','If you would like to see more themes to choose from, click on the “Add New Theme” button and you will be able to browse or search for additional themes from the WordPress Theme Directory. Themes in the WordPress Theme Directory are designed and developed by third parties, and are compatible with the license WordPress uses. Oh, and they are free!'=>'If you would like to see more themes to choose from, click on the “Add New Theme” button and you will be able to browse or search for additional themes from the WordPress Theme Directory. Themes in the WordPress Theme Directory are designed and developed by third parties, and are compatible with the licence WordPress uses. Oh, and they are free!','%1$s MB (%2$s%%) Space Used'=>'%1$s MB (%2$s%%) Space Used','%s MB Space Allowed'=>'%s MB Space Allowed','M jS'=>'j F','%s Page'=>'%s Page' . "\0" . '%s Pages','%s Post'=>'%s Post' . "\0" . '%s Posts','When this setting is in effect, a reminder is shown in the At a Glance box of the Dashboard that says, “Search engines discouraged”, to remind you that you have directed search engines to not crawl your site.'=>'When this setting is in effect, a reminder is shown in the At a Glance box of the Dashboard that says, “Search engines discouraged”, to remind you that you have directed search engines to not crawl your site.','At a Glance'=>'At a Glance','themeActive:'=>'Active:','Accessibility Ready'=>'Accessibility Ready','This is a child theme of %s.'=>'This is a child theme of %s.','When previewing on smaller monitors, you can use the collapse icon at the bottom of the left-hand pane. This will hide the pane, giving you more room to preview your site in the new theme. To bring the pane back, click on the collapse icon again.'=>'When previewing on smaller monitors, you can use the collapse icon at the bottom of the left-hand pane. This will hide the pane, giving you more room to preview your site in the new theme. To bring the pane back, click on the collapse icon again.','The theme being previewed is fully interactive — navigate to different pages to see how the theme handles posts, archives, and other page templates. The settings may differ depending on what theme features the theme being previewed supports. To accept the new settings and activate the theme all in one step, click the Activate & Publish button above the menu.'=>'The theme being previewed is fully interactive – navigate to different pages to see how the theme handles posts, archives, and other page templates. The settings may differ depending on what theme features the theme being previewed supports. To accept the new settings and activate the theme all in one step, click the Activate and Publish button above the menu.','Tap or hover on any theme then click the Live Preview button to see a live preview of that theme and change theme options in a separate, full-screen view. You can also find a Live Preview button at the bottom of the theme details screen. Any installed theme can be previewed and customized in this way.'=>'Tap or hover on any theme then click the Live Preview button to see a live preview of that theme and change theme options in a separate, full-screen view. You can also find a Live Preview button at the bottom of the theme details screen. Any installed theme can be previewed and customised in this way.','The active theme is displayed highlighted as the first theme.'=>'The active theme is displayed highlighted as the first theme.','Click Customize for the active theme or Live Preview for any other theme to see a live preview'=>'Click Customise for the active theme or Live Preview for any other theme to see a live preview','Click on the theme to see the theme name, version, author, description, tags, and the Delete link'=>'Click on the theme to see the theme name, version, author, description, tags, and the Delete link','Hover or tap to see Activate and Live Preview buttons'=>'Hover or tap to see Activate and Live Preview buttons','This screen is used for managing your installed themes. Aside from the default theme(s) included with your WordPress installation, themes are designed and developed by third parties.'=>'This screen is used for managing your installed themes. Aside from the default theme(s) included with your WordPress installation, themes are designed and developed by third parties.','To activate a widget drag it to a sidebar or click on it. To deactivate a widget and delete its settings, drag it back.'=>'To activate a widget drag it to a sidebar or click on it. To deactivate a widget and delete its settings, drag it back.','%s rating'=>'%s rating','%1$s rating based on %2$s rating'=>'%1$s rating based on %2$s rating' . "\0" . '%1$s rating based on %2$s ratings','This screen shows an individual user all of their sites in this network, and also allows that user to set a primary site. They can use the links under each site to visit either the front end or the dashboard for that site.'=>'This screen shows an individual user all of their sites in this network, and also allows that user to set a primary site. They can use the links under each site to visit either the front end or the dashboard for that site.','Error: [%1$s] %2$s'=>'ERROR: [%1$s] %2$s','Rollback Error: [%1$s] %2$s'=>'ROLLBACK ERROR: [%1$s] %2$s','The following translations failed to update:'=>'The following translations failed to update:','The following themes failed to update:'=>'The following themes failed to update:','The following plugins failed to update:'=>'The following plugins failed to update:','The following translations were successfully updated:'=>'The following translations were successfully updated:','The following themes were successfully updated:'=>'The following themes were successfully updated:','The following plugins were successfully updated:'=>'The following plugins were successfully updated:','Add Widget'=>'Add Widget','Show next theme'=>'Show next theme','Show previous theme'=>'Show previous theme','Update Available'=>'Update Available','Add New Theme'=>'Add New Theme','Are you sure you want to delete this theme? +','You cannot delete a theme while it has an active child theme.'=>'You cannot delete a theme while it has an active child theme.','Mystery Person'=>'Mystery Person','Usernames can have only alphanumeric characters, spaces, underscores, hyphens, periods, and the @ symbol.'=>'Usernames can have only alphanumeric characters, spaces, underscores, hyphens, full stops, and the @ symbol.','Enable full-height editor and distraction-free functionality.'=>'Enable full-height editor and distraction-free functionality.','https://planet.wordpress.org/feed/'=>'https://planet.wordpress.org/feed/','https://planet.wordpress.org/'=>'https://planet.wordpress.org/','Untested with your version of WordPress'=>'Untested with your version of WordPress','All categories'=>'All categories','Filter by comment type'=>'Filter by comment type','%s has been logged out.'=>'%s has been logged out.','You are now logged out everywhere else.'=>'You are now logged out everywhere else.','Could not log out user sessions. Please try again.'=>'Could not log out user sessions. Please try again.','This preview is unavailable in the editor.'=>'This preview is unavailable in the editor.','You can insert media files by clicking the button above the post editor and following the directions. You can align or edit images using the inline formatting toolbar available in Visual mode.'=>'You can insert media files by clicking the button above the post editor and following the directions. You can align or edit images using the inline formatting toolbar available in Visual mode.','Post editor — Enter the text for your post. There are two modes of editing: Visual and Code. Choose the mode by clicking on the appropriate tab.'=>'Post editor — Enter the text for your post. There are two modes of editing: Visual and Code. Choose the mode by clicking on the appropriate tab.','You can now manage and live-preview Custom Header in the Customizer.'=>'You can now manage and live-preview Custom Header in the Customiser.','You can now manage and live-preview Custom Backgrounds in the Customizer.'=>'You can now manage and live-preview Custom Backgrounds in the Customiser.','Welcome panelWelcome'=>'Welcome','usersAll (%s)'=>'All (%s)' . "\0" . 'All (%s)','link nameName'=>'Name','If you like, you may enter custom structures for your category and tag URLs here. For example, using topics as your category base would make your category links like %s/topics/uncategorized/. If you leave these blank the defaults will be used.'=>'If you like, you may enter custom structures for your category and tag URLs here. For example, using topics as your category base would make your category links like %s/topics/uncategorised/. If you leave these blank the defaults will be used.','Release Lead'=>'Release Lead','Use the arrow buttons at the top of the dialog, or the left and right arrow keys on your keyboard, to navigate between media items quickly.'=>'Use the arrow buttons at the top of the dialog, or the left and right arrow keys on your keyboard, to navigate between media items quickly.','You can also delete individual items and access the extended edit screen from the details dialog.'=>'You can also delete individual items and access the extended edit screen from the details dialog.','Clicking an item will display an Attachment Details dialog, which allows you to preview media and make quick edits. Any changes you make to the attachment details will be automatically saved.'=>'Clicking an item will display an Attachment Details dialog, which allows you to preview media and make quick edits. Any changes you make to the attachment details will be automatically saved.','To delete media items, click the Bulk Select button at the top of the screen. Select any items you wish to delete, then click the Delete Selected button. Clicking the Cancel Selection button takes you back to viewing your media.'=>'To delete media items, click the Bulk Select button at the top of the screen. Select any items you wish to delete, then click the Delete Selected button. Clicking the Cancel Selection button takes you back to viewing your media.','You can view your media in a simple visual grid or a list with columns. Switch between these views using the icons to the left above the media.'=>'You can view your media in a simple visual grid or a list with columns. Switch between these views using the icons to the left above the media.','All the files you’ve uploaded are listed in the Media Library, with the most recent uploads listed first.'=>'All the files you’ve uploaded are listed in the Media Library, with the most recent uploads listed first.','If you just want to get an idea of what’s available, you can browse Featured and Popular plugins by using the links above the plugins list. These sections rotate regularly.'=>'If you just want to get an idea of what’s available, you can browse Featured and Popular plugins by using the links above the plugins list. These sections rotate regularly.','Browse Plugins'=>'Browse Plugins','Add Plugins'=>'Add Plugins','The %1$s constant in your %2$s file is no longer needed.'=>'The %1$s constant in your %2$s file is no longer needed.','Invalid translation type.'=>'Invalid translation type.','Welcome to the famous five-minute WordPress installation process! Just fill in the information below and you’ll be on your way to using the most extendable and powerful personal publishing platform in the world.'=>'Welcome to the famous five-minute WordPress installation process! Just fill in the information below and you’ll be on your way to using the most extendable and powerful personal publishing platform in the world.','Compatible with your version of WordPress'=>'Compatible with your version of WordPress','Incompatible with your version of WordPress'=>'Incompatible with your version of WordPress','%d star'=>'%d star' . "\0" . '%d stars','Select bulk action'=>'Select bulk action','Add the user without sending an email that requires their confirmation'=>'Add the user without sending an email that requires their confirmation','The grid view for the Media Library requires JavaScript. Switch to the list view.'=>'The grid view for the Media Library requires JavaScript. Switch to the list view.','Contributors'=>'Contributors','Donate to this plugin »'=>'Donate to this plugin »','Plugin installer section titleReviews'=>'Reviews','The WordPress team is willing to help you. Forward this email to %s and the team will work with you to make sure your site is working.'=>'The WordPress team is willing to help you. Forward this email to %s and the team will work with you to make sure your site is working.','themesRecently Updated'=>'Recently Updated','Number/count of itemsCount'=>'Count','View details'=>'View details','More Details'=>'More Details','Plugin installer group titleTools'=>'Tools','Plugin installer group titleSocial'=>'Social','Plugin installer group titlePerformance'=>'Performance','Plugin InstallerBeta Testing'=>'Beta Testing','%s failed to embed.'=>'%s failed to embed.','Filtering by:'=>'Filtering by:','Displayed on attachment pages.'=>'Displayed on attachment pages.','You can edit the image while preserving the thumbnail. For example, you may wish to have a square thumbnail that displays just a section of the image.'=>'You can edit the image while preserving the thumbnail. For example, you may wish to have a square thumbnail that displays just a section of the image.','Once you have made your selection, you can adjust it by entering the size in pixels. The minimum selection size is the thumbnail size as set in the Media settings.'=>'Once you have made your selection, you can adjust it by entering the size in pixels. The minimum selection size is the thumbnail size as set in the Media settings.','The aspect ratio is the relationship between the width and height. You can preserve the aspect ratio by holding down the shift key while resizing your selection. Use the input box to specify the aspect ratio, e.g. 1:1 (square), 4:3, 16:9, etc.'=>'The aspect ratio is the relationship between the width and height. You can preserve the aspect ratio by holding down the shift key while resizing your selection. Use the input box to specify the aspect ratio, e.g. 1:1 (square), 4:3, 16:9, etc.','To crop the image, click on it and drag to make your selection.'=>'To crop the image, click on it and drag to make your selection.','You can proportionally scale the original image. For best results, scaling should be done before you crop, flip, or rotate. Images can only be scaled down, not up.'=>'You can proportionally scale the original image. For best results, scaling should be done before you crop, flip, or rotate. Images can only be scaled down, not up.','Keyboard users: When you are working in the visual editor, you can use %s to access the toolbar.'=>'Keyboard users: When you are working in the visual editor, you can use %s to access the toolbar.','A red bar on the left means the comment is waiting for you to moderate it.'=>'A red bar on the left means the comment is waiting for you to moderate it.','All comment types'=>'All comment types','themesLatest'=>'Latest','themesPopular'=>'Popular','themesFeatured'=>'Featured','Attribute all content to:'=>'Attribute all content to:','Delete all content.'=>'Delete all content.','What should be done with content owned by this user?'=>'What should be done with content owned by this user?' . "\0" . 'What should be done with content owned by these users?','Delete brings you to the Delete Users screen for confirmation, where you can permanently remove a user from your site and delete their content. You can also delete multiple users at once by using bulk actions.'=>'Delete brings you to the Delete Users screen for confirmation, where you can permanently remove a user from your site and delete their content. You can also delete multiple users at once by using bulk actions.','Remove allows you to remove a user from your site. It does not delete their content. You can also remove multiple users at once by using bulk actions.'=>'Remove allows you to remove a user from your site. It does not delete their content. You can also remove multiple users at once by using bulk actions.','themeDetails & Preview'=>'Details & Preview','Search Themes'=>'Search Themes','Add Themes'=>'Add Themes','https://wordpress.org/support/forum/how-to-and-troubleshooting'=>'https://wordpress.org/support/forum/how-to-and-troubleshooting','At a Glance — Displays a summary of the content on your site and identifies which theme and version of WordPress you are using.'=>'At a Glance – Displays a summary of the content on your site and identifies which theme and version of WordPress you are using.','Box Controls — Click the title bar of the box to expand or collapse it. Some boxes added by plugins may have configurable content, and will show a “Configure” link in the title bar if you hover over it.'=>'Box Controls — Click the title bar of the box to expand or collapse it. Some boxes added by plugins may have configurable content, and will show a “Configure” link in the title bar if you hover over it.','Sorry, you are not allowed to resume this theme.'=>'Sorry, you are not allowed to resume this theme.','Edit date and time'=>'Edit date and time','Browse revisions'=>'Browse revisions','Edit visibility'=>'Edit visibility','Edit status'=>'Edit status','Support forums'=>'Support forums','Thank you for creating with WordPress.'=>'Thank you for creating with WordPress.','Translations — The files translating WordPress into your language are updated for you whenever any other updates occur. But if these files are out of date, you can click the “Update Translations” button.'=>'Translations — The files translating WordPress into your language are updated for you whenever any other updates occur. But if these files are out of date, you can click the “Update Translations” button.','In most cases, WordPress will automatically apply maintenance and security updates in the background for you.'=>'In most cases, WordPress will automatically apply maintenance and security updates in the background for you.','WordPress — Updating your WordPress installation is a simple one-click procedure: just click on the “Update now” button when you are notified that a new version is available.'=>'WordPress – updating your WordPress installation is a simple one-click procedure: just click on the “Update now” button when you are notified that a new version is available.','If an update is available, you᾿ll see a notification appear in the Toolbar and navigation menu.'=>'If an update is available, you᾿ll see a notification appear in the toolbar and navigation menu.','Themes and Plugins — To update individual themes or plugins from this screen, use the checkboxes to make your selection, then click on the appropriate “Update” button. To update all of your themes or plugins at once, you can check the box at the top of the section to select all before clicking the update button.'=>'Themes and Plugins — To update individual themes or plugins from this screen, use the checkboxes to make your selection, then click on the appropriate “Update” button. To update all of your themes or plugins at once, you can check the box at the top of the section to select all before clicking the update button.','On this screen, you can update to the latest version of WordPress, as well as update your themes, plugins, and translations from the WordPress.org repositories.'=>'On this screen, you can update to the latest version of WordPress, as well as update your themes, plugins, and translations from the WordPress.org repositories.','If you would like to see more themes to choose from, click on the “Add Theme” button and you will be able to browse or search for additional themes from the WordPress Theme Directory. Themes in the WordPress Theme Directory are designed and developed by third parties, and are compatible with the license WordPress uses. Oh, and they are free!'=>'If you would like to see more themes to choose from, click on the “Add Theme” button and you will be able to browse or search for additional themes from the WordPress Theme Directory. Themes in the WordPress Theme Directory are designed and developed by third parties, and are compatible with the licence WordPress uses. Oh, and they are free!','%1$s MB (%2$s%%) Space Used'=>'%1$s MB (%2$s%%) Space Used','%s MB Space Allowed'=>'%s MB Space Allowed','M jS'=>'j F','%s Page'=>'%s Page' . "\0" . '%s Pages','%s Post'=>'%s Post' . "\0" . '%s Posts','When this setting is in effect, a reminder is shown in the At a Glance box of the Dashboard that says, “Search engines discouraged”, to remind you that you have directed search engines to not crawl your site.'=>'When this setting is in effect, a reminder is shown in the At a Glance box of the Dashboard that says, “Search engines discouraged”, to remind you that you have directed search engines to not crawl your site.','At a Glance'=>'At a Glance','themeActive:'=>'Active:','Accessibility Ready'=>'Accessibility Ready','This is a child theme of %s.'=>'This is a child theme of %s.','When previewing on smaller monitors, you can use the collapse icon at the bottom of the left-hand pane. This will hide the pane, giving you more room to preview your site in the new theme. To bring the pane back, click on the collapse icon again.'=>'When previewing on smaller monitors, you can use the collapse icon at the bottom of the left-hand pane. This will hide the pane, giving you more room to preview your site in the new theme. To bring the pane back, click on the collapse icon again.','The theme being previewed is fully interactive — navigate to different pages to see how the theme handles posts, archives, and other page templates. The settings may differ depending on what theme features the theme being previewed supports. To accept the new settings and activate the theme all in one step, click the Activate & Publish button above the menu.'=>'The theme being previewed is fully interactive – navigate to different pages to see how the theme handles posts, archives, and other page templates. The settings may differ depending on what theme features the theme being previewed supports. To accept the new settings and activate the theme all in one step, click the Activate and Publish button above the menu.','Tap or hover on any theme then click the Live Preview button to see a live preview of that theme and change theme options in a separate, full-screen view. You can also find a Live Preview button at the bottom of the theme details screen. Any installed theme can be previewed and customized in this way.'=>'Tap or hover on any theme then click the Live Preview button to see a live preview of that theme and change theme options in a separate, full-screen view. You can also find a Live Preview button at the bottom of the theme details screen. Any installed theme can be previewed and customised in this way.','The active theme is displayed highlighted as the first theme.'=>'The active theme is displayed highlighted as the first theme.','Click Customize for the active theme or Live Preview for any other theme to see a live preview'=>'Click Customise for the active theme or Live Preview for any other theme to see a live preview','Click on the theme to see the theme name, version, author, description, tags, and the Delete link'=>'Click on the theme to see the theme name, version, author, description, tags, and the Delete link','Hover or tap to see Activate and Live Preview buttons'=>'Hover or tap to see Activate and Live Preview buttons','This screen is used for managing your installed themes. Aside from the default theme(s) included with your WordPress installation, themes are designed and developed by third parties.'=>'This screen is used for managing your installed themes. Aside from the default theme(s) included with your WordPress installation, themes are designed and developed by third parties.','To activate a widget drag it to a sidebar or click on it. To deactivate a widget and delete its settings, drag it back.'=>'To activate a widget drag it to a sidebar or click on it. To deactivate a widget and delete its settings, drag it back.','%s rating'=>'%s rating','%1$s rating based on %2$s rating'=>'%1$s rating based on %2$s rating' . "\0" . '%1$s rating based on %2$s ratings','This screen shows an individual user all of their sites in this network, and also allows that user to set a primary site. They can use the links under each site to visit either the front end or the dashboard for that site.'=>'This screen shows an individual user all of their sites in this network, and also allows that user to set a primary site. They can use the links under each site to visit either the front end or the dashboard for that site.','Error: [%1$s] %2$s'=>'ERROR: [%1$s] %2$s','Rollback Error: [%1$s] %2$s'=>'ROLLBACK ERROR: [%1$s] %2$s','The following translations failed to update:'=>'The following translations failed to update:','The following themes failed to update:'=>'The following themes failed to update:','The following plugins failed to update:'=>'The following plugins failed to update:','The following translations were successfully updated:'=>'The following translations were successfully updated:','The following themes were successfully updated:'=>'The following themes were successfully updated:','The following plugins were successfully updated:'=>'The following plugins were successfully updated:','Add Widget'=>'Add Widget','Show next theme'=>'Show next theme','Show previous theme'=>'Show previous theme','Update Available'=>'Update Available','Are you sure you want to delete this theme? Click \'Cancel\' to go back, \'OK\' to confirm the delete.'=>'Are you sure you want to delete this theme? -Click \'Cancel\' to go back, \'OK\' to confirm the delete.','Unable to submit this form, please refresh and try again.'=>'Unable to submit this form, please refresh and try again.','Quick Draft — Allows you to create a new post and save it as a draft. Also displays links to the 3 most recent draft posts you\'ve started.'=>'Quick Draft — Allows you to create a new post and save it as a draft. Also displays links to the 3 most recent draft posts you\'ve started.','Activity — Shows the upcoming scheduled posts, recently published posts, and the most recent comments on your posts and allows you to moderate them.'=>'Activity — Shows the upcoming scheduled posts, recently published posts, and the most recent comments on your posts and allows you to moderate them.','Screen Options — Use the Screen Options tab to choose which Dashboard boxes to show.'=>'Screen Options — Use the Screen Options tab to choose which Dashboard boxes to show.','Manage Uploads'=>'Manage Uploads','Popular Plugin'=>'Popular Plugin','Tomorrow'=>'Tomorrow','No activity yet!'=>'No activity yet!','Recently Published'=>'Recently Published','Publishing Soon'=>'Publishing Soon','What’s on your mind?'=>'What’s on your mind?','WordPress %1$s running %2$s theme.'=>'WordPress %1$s running %2$s theme.','Quick Draft'=>'Quick Draft','Activity'=>'Activity','FAILED: %s'=>'FAILED: %s','SUCCESS: %s'=>'SUCCESS: %s','FAILED: WordPress failed to update to %s'=>'FAILED: WordPress failed to update to %s','SUCCESS: WordPress was successfully updated to %s'=>'SUCCESS: WordPress was successfully updated to %s','WordPress site: %s'=>'WordPress site: %s','Your site was running version %s.'=>'Your site was running version %s.','Your site at %1$s experienced a critical failure while trying to update WordPress to version %2$s.'=>'Your site at %1$s experienced a critical failure while trying to update WordPress to version %2$s.','WordPress %s is also now available.'=>'WordPress %s is also now available.','The update cannot be installed because your site is unable to copy some files. This is usually due to inconsistent file permissions.'=>'The update cannot be installed because your site is unable to copy some files. This is usually due to inconsistent file permissions.','Your translations are all up to date.'=>'Your translations are all up to date.','Translations'=>'Translations','Error code: %s'=>'Error code: %s','Your hosting company, support forum volunteers, or a friendly developer may be able to use this information to help you:'=>'Your hosting company, support forum volunteers, or a friendly developer may be able to use this information to help you:','The WordPress Team'=>'The WordPress Team','You also have some plugins or themes with updates available. Update them now:'=>'You also have some plugins or themes with updates available. Update them now:','If you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.'=>'If you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.','Keeping your site updated is important for security. It also makes the internet a safer place for you and your readers.'=>'Keeping your site updated is important for security. It also makes the internet a safer place for you and your readers.','Please check out your site now. It\'s possible that everything is working. If it says you need to update, you should do so:'=>'Please check out your site now. It\'s possible that everything is working. If it says you need to update, you should do so:','This means your site may be offline or broken. Don\'t panic; this can be fixed.'=>'This means your site may be offline or broken. Don\'t panic; this can be fixed.','Your site at %1$s experienced a critical failure while trying to update to the latest version of WordPress, %2$s.'=>'Your site at %1$s experienced a critical failure while trying to update to the latest version of WordPress, %2$s.','Updating is easy and only takes a few moments:'=>'Updating is easy and only takes a few moments:','Please update your site at %1$s to WordPress %2$s.'=>'Please update your site at %1$s to WordPress %2$s.','For more on version %s, see the About WordPress screen:'=>'For more on version %s, see the About WordPress screen:','No further action is needed on your part.'=>'No further action is needed on your part.','Howdy! Your site at %1$s has been updated automatically to WordPress %2$s.'=>'Hi! Your site at %1$s has been updated automatically to WordPress %2$s.','[%1$s] URGENT: Your site may be down due to a failed update'=>'[%1$s] URGENT: Your site may be down due to a failed update','[%1$s] WordPress %2$s is available. Please update!'=>'[%1$s] WordPress %2$s is available. Please update!','[%1$s] Your site has updated to WordPress %2$s'=>'[%1$s] Your site has updated to WordPress %2$s','Translations for %s'=>'Translations for %s','Updating translations for %1$s (%2$s)…'=>'Updating translations for %1$s (%2$s)…','Update Translations'=>'Update Translations','Background updates'=>'Background updates','There is not enough free disk space to complete the update.'=>'There is not enough free disk space to complete the update.','Updating plugin: %s'=>'Updating plugin: %s','Updating theme: %s'=>'Updating theme: %s','Translation updated successfully.'=>'Translation updated successfully.','Translation update failed.'=>'Translation update failed.','Some of your translations need updating. Sit tight for a few more seconds while they are updated as well.'=>'Some of your translations need updating. Sit tight for a few more seconds while they are updated as well.','Create a brand new user and add them to this site.'=>'Create a brand new user and add them to this site.','Upgrading to a newer version of the same theme will override changes made here. To avoid this, consider creating a child theme instead.'=>'Upgrading to a newer version of the same theme will override changes made here. To avoid this, consider creating a child theme instead.','The sizes listed below determine the maximum dimensions in pixels to use when adding an image to the Media Library.'=>'The sizes listed below determine the maximum dimensions in pixels to use when adding an image to the Media Library.','Comment must be manually approved'=>'Comment must be manually approved','Clicking the arrow to the right of any menu item in the editor will reveal a standard group of settings. Additional settings such as link target, CSS classes, link relationships, and link descriptions can be enabled and disabled via the Screen Options tab.'=>'Clicking the arrow to the right of any menu item in the editor will reveal a standard group of settings. Additional settings such as link target, CSS classes, link relationships, and link descriptions can be enabled and disabled via the Screen Options tab.','Menus can be displayed in locations defined by your theme, even used in sidebars by adding a “Navigation Menu” widget on the Widgets screen. If your theme does not support the navigation menus feature (the default themes, %2$s and %3$s, do), you can learn about adding this support by following the documentation link to the side.'=>'Menus can be displayed in locations defined by your theme, even used in sidebars by adding a “Navigation Menu” widget on the Widgets screen. If your theme does not support the navigation menus feature (the default themes, %2$s and %3$s, do), you can learn about adding this support by following the documentation link to the side.','Your theme does not natively support menus, but you can use them in sidebars by adding a “Navigation Menu” widget on the Widgets screen.'=>'Your theme does not natively support menus, but you can use them in sidebars by adding a “Navigation Menu” widget on the Widgets screen.','Sorry, that is not a valid email address. Email addresses look like username@example.com.'=>'Sorry, that is not a valid email address. Email addresses look like username@example.com.','You must provide an email address.'=>'You must provide an email address.','Your passwords do not match. Please try again.'=>'Your passwords do not match. Please try again.','The username you provided has invalid characters.'=>'The username you provided has invalid characters.','Please provide a valid username.'=>'Please provide a valid username.','Copying the required files…'=>'Copying the required files…','Preparing to install the latest version…'=>'Preparing to install the latest version…','This password will not be stored on the server.'=>'This password will not be stored on the server.','The checksum of the file (%1$s) does not match the expected checksum value (%2$s).'=>'The checksum of the file (%1$s) does not match the expected checksum value (%2$s).','WordPress %s'=>'WordPress %s','Updating to WordPress %s'=>'Updating to WordPress %s','Due to an error during updating, WordPress has been restored to your previous version.'=>'Due to an error during updating, WordPress has been restored to your previous version.','Looking for %1$s in %2$s'=>'Looking for %1$s in %2$s','%s page restored from the Trash.'=>'%s page restored from the Bin.' . "\0" . '%s pages restored from the Bin.','%s page moved to the Trash.'=>'%s page moved to the Bin.' . "\0" . '%s pages moved to the Bin.','%s page permanently deleted.'=>'%s page permanently deleted.' . "\0" . '%s pages permanently deleted.','%s page not updated, somebody is editing it.'=>'%s page not updated, somebody is editing it.' . "\0" . '%s pages not updated, somebody is editing them.','%s page updated.'=>'%s page updated.' . "\0" . '%s pages updated.','%s post restored from the Trash.'=>'%s post restored from the Bin.' . "\0" . '%s posts restored from the Bin.','%s post moved to the Trash.'=>'%s post moved to the Bin.' . "\0" . '%s posts moved to the Bin.','%s post permanently deleted.'=>'%s post permanently deleted.' . "\0" . '%s posts permanently deleted.','%s post not updated, somebody is editing it.'=>'%s post not updated, somebody is editing it.' . "\0" . '%s posts not updated, somebody is editing them.','Tags deleted.'=>'Tags deleted.','Tag not updated.'=>'Tag not updated.','Tag not added.'=>'Tag not added.','Tag updated.'=>'Tag updated.','Tag deleted.'=>'Tag deleted.','Tag added.'=>'Tag added.','Categories deleted.'=>'Categories deleted.','Category not updated.'=>'Category not updated.','Category not added.'=>'Category not added.','Category updated.'=>'Category updated.','Category deleted.'=>'Category deleted.','Category added.'=>'Category added.','Compare two different revisions by selecting the “Compare any two revisions” box to the side.'=>'Compare two different revisions by selecting the “Compare any two revisions” box to the side.','Compare any two revisions'=>'Compare any two revisions','Restore This Autosave'=>'Restore This Autosave','Current Revision by %s'=>'Current Revision by %s','Autosave by %s'=>'Autosave by %s','revisionsBrowse'=>'Browse','Revisions: %s'=>'Revisions: %s','"%s".'=>'"%s".','"%1$s" by %2$s.'=>'"%1$s" by %2$s.','"%1$s" from %2$s.'=>'"%1$s" from %2$s.','"%1$s" from %2$s by %3$s.'=>'"%1$s" from %2$s by %3$s.','Revision by %s'=>'Revision by %s','Connection lost. Saving has been disabled until you are reconnected.'=>'Connection lost. Saving has been disabled until you are reconnected.','Sorry, something went wrong. The requested comparison could not be loaded.'=>'Sorry, something went wrong. The requested comparison could not be loaded.','Repeat Password'=>'Repeat Password','Repeat New Password'=>'Repeat New Password','Add menu items from the column on the left.'=>'Add menu items from the column on the left.','Plugins extend and expand the functionality of WordPress. You may install plugins in the WordPress Plugin Directory right from here, or upload a plugin in .zip format by clicking the button at the top of this page.'=>'Plugins extend and expand the functionality of WordPress. You may install plugins in the WordPress Plugin Directory right from here, or upload a plugin in .zip format by clicking the button at the top of this page.','http://wordpress.org/plugins/hello-dolly/'=>'http://wordpress.org/plugins/hello-dolly/','The theme contains no files.'=>'The theme contains no files.','The package contains no files.'=>'The package contains no files.','To navigate between revisions, drag the slider handle left or right or use the Previous or Next buttons.'=>'To navigate between revisions, drag the slider handle left or right or use the Previous or Next buttons.','Loading…'=>'Loading…','This item has already been deleted.'=>'This item has already been deleted.','The item you are trying to restore from the Trash no longer exists.'=>'The item you are trying to restore from the Bin no longer exists.','The item you are trying to move to the Trash no longer exists.'=>'The item you are trying to move to the Bin no longer exists.','Drag the items into the order you prefer. Click the arrow on the right of the item to reveal additional configuration options.'=>'Drag the items into the order you prefer. Click the arrow on the right of the item to reveal additional configuration options.','If you have not yet created any menus, click the ’create a new menu’ link to get started'=>'If you have not yet created any menus, click the ’create a new menu’ link to get started','To restore a revision, click Restore This Revision.'=>'To restore a revision, click Restore This Revision.','From this screen you can review, compare, and restore revisions:'=>'From this screen you can review, compare, and restore revisions:','Revisions are saved copies of your post or page, which are periodically created as you update your content. The red text on the left shows the content that was removed. The green text on the right shows the content that was added.'=>'Revisions are saved copies of your post or page, which are periodically created as you update your content. The red text on the left shows the content that was removed. The green text on the right shows the content that was added.','This screen is used for managing your content revisions.'=>'This screen is used for managing your content revisions.','Followed by post revision infoTo:'=>'To:','Button label for a next revisionNext'=>'Next','Button label for a previous revisionPrevious'=>'Previous','Followed by post revision infoFrom:'=>'From:','menuUse new menu'=>'Use new menu','menuEdit'=>'Edit','Select a Menu'=>'Select a Menu','Assigned Menu'=>'Assigned Menu','Theme Location'=>'Theme Location','Manage Locations'=>'Manage Locations','Edit Menus'=>'Edit Menus','To add a new menu instead of assigning an existing one, click the ’Use new menu’ link. Your new menu will be automatically assigned to that theme location'=>'To add a new menu instead of assigning an existing one, click the ’Use new menu’ link. Your new menu will be automatically assigned to that theme location','To edit a menu currently assigned to a theme location, click the adjacent ’Edit’ link'=>'To edit a menu currently assigned to a theme location, click the adjacent ’Edit’ link','To assign menus to one or more theme locations, select a menu from each location’s dropdown. When you are finished, click Save Changes'=>'To assign menus to one or more theme locations, select a menu from each location’s dropdown. When you are finished, click Save Changes','This screen is used for globally assigning menus to locations defined by your theme.'=>'This screen is used for globally assigning menus to locations defined by your theme.','Editing Menus'=>'Editing Menus','Delete a menu item by expanding it and clicking the Remove link'=>'Delete a menu item by expanding it and clicking the Remove link','To reorganize menu items, drag and drop items with your mouse or use your keyboard. Drag or move a menu item a little to the right to make it a submenu'=>'To reorganise menu items, drag and drop items with your mouse or use your keyboard. Drag or move a menu item a little to the right to make it a submenu','Add one or several items at once by selecting the checkbox next to each item and clicking Add to Menu'=>'Add one or several items at once by selecting the checkbox next to each item and clicking Add to Menu','Each navigation menu may contain a mix of links to pages, categories, custom URLs or other content types. Menu links are added by selecting items from the expanding boxes in the left-hand column below.'=>'Each navigation menu may contain a mix of links to pages, categories, custom URLs or other content types. Menu links are added by selecting items from the expanding boxes in the left-hand column below.','Menu Management'=>'Menu Management','You can assign theme locations to individual menus by selecting the desired settings at the bottom of the menu editor. To assign menus to all theme locations at once, visit the Manage Locations tab at the top of the screen.'=>'You can assign theme locations to individual menus by selecting the desired settings at the bottom of the menu editor. To assign menus to all theme locations at once, visit the Manage Locations tab at the top of the screen.','To edit an existing menu, choose a menu from the dropdown and click Select'=>'To edit an existing menu, choose a menu from the dropdown and click Select','The menu management box at the top of the screen is used to control which menu is opened in the editor below.'=>'The menu management box at the top of the screen is used to control which menu is opened in the editor below.','Add, organize, and modify individual menu items'=>'Add, organise, and modify individual menu items','Create, edit, and delete menus'=>'Create, edit, and delete menus','From this screen you can:'=>'From this screen you can:','This screen is used for managing your navigation menus.'=>'This screen is used for managing your navigation menus.','Menu locations updated.'=>'Menu locations updated.','Your latest changes were saved as a revision.'=>'Your latest changes were saved as a revision.','Audio Codec:'=>'Audio Codec:','Audio Format:'=>'Audio Format:','Genre: %s.'=>'Genre: %s.','Track %1$s of %2$s.'=>'Track %1$s of %2$s.','Released: %d.'=>'Released: %d.','%1$s by %2$s.'=>'%1$s by %2$s.','Restore This Revision'=>'Restore This Revision','Denied: %s'=>'Denied: %s','Capabilities'=>'Capabilities','Menu Settings'=>'Menu Settings','Menu structure'=>'Menu structure','To the top'=>'To the top','Down one'=>'Down one','Up one'=>'Up one','Move'=>'Move','Draft created on %1$s at %2$s'=>'Draft created on %1$s at %2$s','You cannot move this item to the Trash. %s is currently editing.'=>'You cannot move this item to the Bin. %s is currently editing.','%s has taken over and is currently editing.'=>'%s has taken over and is currently editing.','Select a menu to edit:'=>'Select a menu to edit:','Thank you for Updating! Please visit the Upgrade Network page to update all your sites.'=>'Thank you for Updating! Please visit the Upgrade Network page to update all your sites.','All right, sparky! You’ve made it through this part of the installation. WordPress can now communicate with your database. If you are ready, time now to…'=>'All right, sunshine! You’ve made it through this part of the installation. WordPress can now communicate with your database. If you are ready, time now to…','Client version'=>'Client version','Auto add pages'=>'Auto add pages','Give your menu a name, then click Create Menu.'=>'Give your menu a name, then click Create Menu.','Edit your default menu by adding or removing items. Drag the items into the order you prefer. Click Create Menu to save your changes.'=>'Edit your default menu by adding or removing items. Drag the items into the order you prefer. Click Create Menu to save your changes.','Selected menus have been successfully deleted.'=>'Selected menus have been successfully deleted.','For PHP files, you can use the documentation dropdown to select from functions recognized in that file. Look Up takes you to a web page with reference material about that particular function.'=>'For PHP files, you can use the documentation dropdown to select from functions recognised in that file. Look Up takes you to a web page with reference material about that particular function.','Look Up'=>'Look Up','The documentation menu below the editor lists the PHP functions recognized in the plugin file. Clicking Look Up takes you to a web page about that particular function.'=>'The documentation menu below the editor lists the PHP functions recognised in the plugin file. Clicking Look Up takes you to a web page about that particular function.','%s is currently editing'=>'%s is currently editing','You can upload and insert media (images, audio, documents, etc.) by clicking the Add Media button. You can select from the images and files already uploaded to the Media Library, or upload new media to add to your page or post. To create an image gallery, select the images to add and click the “Create a new gallery” button.'=>'You can upload and insert media (images, audio, documents, etc.) by clicking the Add Media button. You can select from the images and files already uploaded to the Media Library, or upload new media to add to your page or post. To create an image gallery, select the images to add and click the “Create a new gallery” button.','Introducing Twenty Twenty-Five'=>'Introducing Twenty Twenty-Five','Image rotation is not supported by your web host.'=>'Image rotation is not supported by your web host.','If you are looking to use the link manager, please install the Link Manager plugin.'=>'If you are looking to use the link manager, please install the Link Manager plugin.','When changing themes, there is often some variation in the number and setup of widget areas/sidebars and sometimes these conflicts make the transition a bit less smooth. If you changed themes and seem to be missing widgets, scroll down on this screen to the Inactive Widgets area, where all of your widgets and their settings will have been saved.'=>'When changing themes, there is often some variation in the number and setup of widget areas/sidebars and sometimes these conflicts make the transition a bit less smooth. If you changed themes and seem to be missing widgets, scroll down on this screen to the Inactive Widgets area, where all of your widgets and their settings will have been saved.','Parent — Categories, unlike tags, can have a hierarchy. You might have a Jazz category, and under that have child categories for Bebop and Big Band. Totally optional. To create a subcategory, just choose another category from the Parent dropdown.'=>'Parent — Categories, unlike tags, can have a hierarchy. You might have a Jazz category, and under that have child categories for Bebop and Big Band. Totally optional. To create a subcategory, just choose another category from the Parent dropdown.','Several boxes on this screen contain settings for how your content will be published, including:'=>'Several boxes on this screen contain settings for how your content will be published, including:','Inserting Media'=>'Inserting Media','The title field and the big Post Editing Area are fixed in place, but you can reposition all the other boxes using drag and drop. You can also minimize or expand them by clicking the title bar of each box. Use the Screen Options tab to unhide more boxes (Excerpt, Send Trackbacks, Custom Fields, Discussion, Slug, Author) or to choose a 1- or 2-column layout for this screen.'=>'The title field and the big Post Editing Area are fixed in place, but you can reposition all the other boxes using drag and drop. You can also minimise or expand them by clicking the title bar of each box. Use the Screen Options tab to unhide more boxes (Excerpt, Send Trackbacks, Custom Fields, Discussion, Slug, Author) or to choose a 1- or 2-column layout for this screen.','Do not forget to click “Save Changes” when you are done!'=>'Do not forget to click “Save Changes” when you are done!','To use a background image, simply upload it or choose an image that has already been uploaded to your Media Library by clicking the “Choose Image” button. You can display a single instance of your image, or tile it to fill the screen. You can have your background fixed in place, so your site content moves on top of it, or you can have it scroll with your site.'=>'To use a background image, simply upload it or choose an image that has already been uploaded to your Media Library by clicking the “Choose Image” button. You can display a single instance of your image, or tile it to fill the screen. You can have your background fixed in place, so your site content moves on top of it, or you can have it scroll with your site.','You are using the multi-file uploader. Problems? Try the browser uploader instead.'=>'You are using the multi-file uploader. Problems? Try the browser uploader instead.','media itemEdit'=>'Edit','colorDefault: %s'=>'Default: %s','column nameUploaded to'=>'Uploaded to','The uploaded file is not a valid image. Please try again.'=>'The uploaded file is not a valid image. Please try again.','Choose a Custom Header'=>'Choose a Custom Header','Choose a Background Image'=>'Choose a Background Image','In the Header Text section of this page, you can choose whether to display this text or hide it. You can also choose a color for the text by clicking the Select Color button and either typing in a legitimate HTML hex value, e.g. “#ff0000” for red, or by choosing a color using the color picker.'=>'In the Header Text section of this page, you can choose whether to display this text or hide it. You can also choose a colour for the text by clicking the Select Colour button and either typing in a legitimate HTML hex value, e.g. “#ff0000” for red, or by choosing a colour using the colour picker.','You can also choose a background color by clicking the Select Color button and either typing in a legitimate HTML hex value, e.g. “#ff0000” for red, or by choosing a color using the color picker.'=>'You can also choose a background colour by clicking the Select Colour button and either typing in a legitimate HTML hex value, e.g. “#ff0000” for red, or by choosing a colour using the colour picker.','In the In response to column, there are three elements. The text is the name of the post that inspired the comment, and links to the post editor for that entry. The View Post link leads to that post on your live site. The small bubble with the number in it shows the number of approved comments that post has received. If there are pending comments, a red notification circle with the number of pending comments is displayed. Clicking the notification circle will filter the comments screen to show only pending comments on that post.'=>'In the In response to column, there are three elements. The text is the name of the post that inspired the comment, and links to the post editor for that entry. The View Post link leads to that post on your live site. The small bubble with the number in it shows the number of approved comments that post has received. If there are pending comments, a red notification circle with the number of pending comments is displayed. Clicking the notification circle will filter the comments screen to show only pending comments on that post.','ID #%1$s: %2$s'=>'ID #%1$s: %2$s','ID #%1$s: %2$s The current user will not be deleted.'=>'ID #%1$s: %2$s The current user will not be deleted.','Used: %1$s%% of %2$s'=>'Used: %1$s%% of %2$s','Please select an option.'=>'Please select an option.','After you’ve done that, click “Run the installation”.'=>'After you’ve done that, click “Run the installation”.','If you want to install a plugin that you’ve downloaded elsewhere, click the Upload Plugin button above the plugins list. You will be prompted to upload the .zip package, and once uploaded, you can activate the new plugin.'=>'If you want to install a plugin that you’ve downloaded elsewhere, click the Upload Plugin button above the plugins list. You will be prompted to upload the .zip package, and once uploaded, you can activate the new plugin.','You can also browse a user’s favorite plugins, by using the Favorites link above the plugins list and entering their WordPress.org username.'=>'You can also browse a user’s favourite plugins, by using the Favourites link above the plugins list and entering their WordPress.org username.','If you know what you are looking for, Search is your best bet. The Search screen has options to search the WordPress Plugin Directory for a particular Term, Author, or Tag. You can also search the directory by selecting popular tags. Tags in larger type mean more plugins have been labeled with that tag.'=>'If you know what you are looking for, Search is your best bet. The Search screen has options to search the WordPress Plugin Directory for a particular Term, Author, or Tag. You can also search the directory by selecting popular tags. Tags in larger type mean more plugins have been labeled with that tag.','It is up to search engines to honor this request.'=>'It is up to search engines to honour this request.','Discourage search engines from indexing this site'=>'Discourage search engines from indexing this site','Allow search engines to index this site'=>'Allow search engines to index this site','Search engine visibility'=>'Search engine visibility','Welcome to WordPress %1$s. You will be redirected to the About WordPress screen. If not, click here.'=>'Welcome to WordPress %1$s. You will be redirected to the About WordPress screen. If not, click here.','Get Favorites'=>'Get Favourites','Your WordPress.org username:'=>'Your WordPress.org username:','If you have marked plugins as favorites on WordPress.org, you can browse them here.'=>'If you have marked plugins as favourites on WordPress.org, you can browse them here.','Welcome to WordPress!'=>'Welcome to WordPress!','Search engines discouraged'=>'Search engines discouraged','This child theme requires its parent theme, %2$s.'=>'This child theme requires its parent theme, %2$s.','Plugin InstallerFavorites'=>'Favourites','To install the theme so you can preview it with your site’s content and customize its theme options, click the "Install" button at the top of the left-hand pane. The theme files will be downloaded to your website automatically. When this is complete, the theme is now available for activation, which you can do by clicking the "Activate" link, or by navigating to your Manage Themes screen and clicking the "Live Preview" link under any installed theme’s thumbnail image.'=>'To install the theme so you can preview it with your site’s content and customise its theme options, click the "Install" button at the top of the left-hand pane. The theme files will be downloaded to your website automatically. When this is complete, the theme is now available for activation, which you can do by clicking the "Activate" link, or by navigating to your Manage Themes screen and clicking the "Live Preview" link under any installed theme’s thumbnail image.','widgetAdd'=>'Add','widgetEdit'=>'Edit','Search by tag'=>'Search by tag','Search by author'=>'Search by author','Search by keyword'=>'Search by keyword','Type of search'=>'Type of search','Screen Options Tab'=>'Screen Options Tab','Contextual Help Tab'=>'Contextual Help Tab','Select comment'=>'Select comment','Tags can be selectively converted to categories using the tag to category converter.'=>'Tags can be selectively converted to categories using the tag to category converter.','You can delete Link Categories in the Bulk Action pull-down, but that action does not delete the links within the category. Instead, it moves them to the default Link Category.'=>'You can delete Link Categories in the Bulk Action pull-down, but that action does not delete the links within the category. Instead, it moves them to the default Link Category.','Creating a Page is very similar to creating a Post, and the screens can be customized in the same way using drag and drop, the Screen Options tab, and expanding/collapsing boxes as you choose. This screen also has the distraction-free writing space, available in both the Visual and Text modes via the Fullscreen buttons. The Page editor mostly works the same as the Post editor, but there are some Page-specific features in the Page Attributes box.'=>'Creating a Page is very similar to creating a Post, and the screens can be customised in the same way using drag and drop, the Screen Options tab, and expanding/collapsing boxes as you choose. This screen also has the distraction-free writing space, available in both the Visual and Text modes via the Fullscreen buttons. The Page editor mostly works the same as the Post editor, but there are some Page-specific features in the Page Attributes box.','You can select an image to be shown at the top of your site by uploading from your computer or choosing from your media library. After selecting an image you will be able to crop it.'=>'You can select an image to be shown at the top of your site by uploading from your computer or choosing from your media library. After selecting an image you will be able to crop it.','Skip to main content'=>'Skip to main content','You can set a custom image header for your site. Simply upload the image and crop it, and the new header will go live immediately. Alternatively, you can use an image that has already been uploaded to your Media Library by clicking the “Choose Image” button.'=>'You can set a custom image header for your site. Simply upload the image and crop it, and the new header will go live immediately. Alternatively, you can use an image that has already been uploaded to your Media Library by clicking the “Choose Image” button.','Skip Cropping, Publish Image as Is'=>'Skip Cropping, Publish Image as Is','Choose Image'=>'Choose Image','Or choose an image from your media library:'=>'Or choose an image from your media library:','Select Image'=>'Select Image','Collapse'=>'Collapse','If you do not want a header image to be displayed on your site at all, click the “Remove Header Image” button at the bottom of the Header Image section of this page. If you want to re-enable the header image later, you just have to select one of the other image options and click “Save Changes”.'=>'If you do not want a header image to be displayed on your site at all, click the “Remove Header Image” button at the bottom of the Header Image section of this page. If you want to re-enable the header image later, you just have to select one of the other image options and click “Save Changes”.','This theme is already installed and is up to date'=>'This theme is already installed and is up to date','pluginInstalled'=>'Installed','Previewing and Customizing'=>'Previewing and Customising','Previewing and Installing'=>'Previewing and Installing','Once you have generated a list of themes, you can preview and install any of them. Click on the thumbnail of the theme you are interested in previewing. It will open up in a full-screen Preview page to give you a better idea of how that theme will look.'=>'Once you have generated a list of themes, you can preview and install any of them. Click on the thumbnail of the theme you are interested in previewing. It will open up in a full-screen Preview page to give you a better idea of how that theme will look.','You are using the browser’s built-in file uploader. The WordPress uploader includes multiple file selection and drag and drop capability. Switch to the multi-file uploader.'=>'You are using the browser’s built-in file uploader. The WordPress uploader includes multiple file selection and drag and drop capability. Switch to the multi-file uploader.','Preview %s'=>'Preview %s','The Categories and Tags Converter link on this screen will take you to the Import screen, where that Converter is one of the plugins you can install. Once that plugin is installed, the Activate Plugin & Run Importer link will take you to a screen where you can choose to convert tags into categories or vice versa.'=>'The Categories and Tags Converter link on this screen will take you to the Import screen, where that Converter is one of the plugins you can install. Once that plugin is installed, the Activate Plugin & Run Importer link will take you to a screen where you can choose to convert tags into categories or vice versa.','Categories have hierarchy, meaning that you can nest sub-categories. Tags do not have hierarchy and cannot be nested. Sometimes people start out using one on their posts, then later realize that the other would work better for their content.'=>'Categories have hierarchy, meaning that you can nest sub-categories. Tags do not have hierarchy and cannot be nested. Sometimes people start out using one on their posts, then later realise that the other would work better for their content.','For most themes, the header text is your Site Title and Tagline, as defined in the General Settings section.'=>'For most themes, the header text is your Site Title and Tagline, as defined in the General Settings section.','If your theme has more than one default header image, or you have uploaded more than one custom header image, you have the option of having WordPress display a randomly different image on each page of your site. Click the “Random” radio button next to the Uploaded Images or Default Images section to enable this feature.'=>'If your theme has more than one default header image, or you have uploaded more than one custom header image, you have the option of having WordPress display a randomly different image on each page of your site. Click the “Random” radio button next to the Uploaded Images or Default Images section to enable this feature.','Some themes come with additional header images bundled. If you see multiple images displayed, select the one you would like and click the “Save Changes” button.'=>'Some themes come with additional header images bundled. If you see multiple images displayed, select the one you would like and click the “Save Changes” button.','You can choose from the theme’s default header images, or use one of your own. You can also customize how your Site Title and Tagline are displayed.'=>'You can choose from the theme’s default header images, or use one of your own. You can also customise how your Site Title and Tagline are displayed.','This screen is used to customize the header section of your theme.'=>'This screen is used to customise the header section of your theme.','Configuration Error'=>'Configuration Error','Revert to the Browser Uploader by clicking the link below the drag and drop box.'=>'Revert to the Browser Uploader by clicking the link below the drag and drop box.','User deleted.'=>'User deleted.' . "\0" . '%s users deleted.','Could not copy files. You may have run out of disk space.'=>'Could not copy files. You may have run out of disk space.','Find a theme based on specific features.'=>'Find a theme based on specific features.','Search for themes by keyword.'=>'Search for themes by keyword.','In all likelihood, these items were supplied to you by your web host. If you do not have this information, then you will need to contact them before you can continue. If you are ready…'=>'In all likelihood, these items were supplied to you by your web host. If you do not have this information, then you will need to contact them before you can continue. If you are ready…','This theme is broken.'=>'This theme is broken.','Set as header'=>'Set as header','Set as background'=>'Set as background','Customize “%s”'=>'Customise “%s”','(required)'=>'(required)','Edit Link'=>'Edit Link','Error: This email is already registered. Please choose another one.'=>'Error: This email is already registered. Please choose another one.','Error: Please enter a nickname.'=>'Error: Please enter a nickname.','https://wordpress.org/about/'=>'https://en-gb.wordpress.org/about/','Select All'=>'Select all','Public, Sticky'=>'Public, Sticky','Privately Published'=>'Privately Published','Save as Pending'=>'Save as Pending','Enter a link URL or click above for presets.'=>'Enter a link URL or click above for presets.','Link URL'=>'Link URL','No comments yet.'=>'No comments yet.','Version:'=>'Version:','Collapse Sidebar'=>'Collapse Sidebar','Plugin'=>'Plugin','All'=>'All','Word count: %s'=>'Word count: %s','Edit comment'=>'Edit comment','Preview:'=>'Preview:','E-mail'=>'Email','The parent theme could not be found. You will need to install the parent theme, %s, before you can use this child theme.'=>'The parent theme could not be found. You will need to install the parent theme, %s, before you can use this child theme.','Successfully installed the parent theme, %1$s %2$s.'=>'Successfully installed the parent theme, %1$s %2$s.','The parent theme, %1$s %2$s, is currently installed.'=>'The parent theme, %1$s %2$s, is currently installed.','Preparing to install %1$s %2$s…'=>'Preparing to install %1$s %2$s…','This theme requires a parent theme. Checking if it is installed…'=>'This theme requires a parent theme. Checking if it is installed…','Show header text with your image.'=>'Show header text with your image.','Header Text'=>'Header Text','There is a new version of %1$s available. View version %4$s details or update now.'=>'There is a new version of %1$s available. View version %4$s details or update now.','By %s.'=>'By %s.','Add Comment'=>'Add Comment','Add New Comment'=>'Add New Comment','http://ma.tt/'=>'https://ma.tt/','This is not just a plugin, it symbolizes the hope and enthusiasm of an entire generation summed up in two words sung most famously by Louis Armstrong: Hello, Dolly. When activated you will randomly see a lyric from Hello, Dolly in the upper right of your admin screen on every page.'=>'This is not just a plugin, it symbolises the hope and enthusiasm of an entire generation summed up in two words sung most famously by Louis Armstrong: Hello, Dolly. When activated you will randomly see a lyric from Hello, Dolly in the upper right of your admin screen on every page.','Hello Dolly'=>'Hello Dolly','Welcome — Shows links for some of the most common tasks when setting up a new site.'=>'Welcome — Shows links for some of the most common tasks when setting up a new site.','There is a new version of %1$s available. View version %4$s details. Automatic update is unavailable for this theme.'=>'There is a new version of %1$s available. View version %4$s details. Automatic update is unavailable for this theme.','HowdyWelcome'=>'Welcome','Delete My Site Permanently'=>'Delete My Site Permanently','I\'m sure I want to permanently delete my site, and I am aware I can never get it back or use %s again.'=>'I\'m sure I want to permanently delete my site, and I am aware I can never get it back or use %s again.','Remember, once deleted your site cannot be restored.'=>'Remember, once deleted your site cannot be restored.','If you do not want to use your %s site any more, you can delete it using the form below. When you click Delete My Site Permanently you will be sent an email with a link in it. Click on this link to delete your site.'=>'If you do not want to use your %s site any more, you can delete it using the form below. When you click Delete My Site Permanently you will be sent an email with a link in it. Click on this link to delete your site.','Thank you. Please check your email for a link to confirm your action. Your site will not be deleted until this link is clicked.'=>'Thank you. Please check your email for a link to confirm your action. Your site will not be deleted until this link is clicked.','Sorry, the link you clicked is stale. Please select another option.'=>'Sorry, the link you clicked is stale. Please select another option.','Thank you for using %s, your site has been deleted. Happy trails to you until we meet again.'=>'Thank you for using %s, your site has been deleted. Cheerio!','Primary Site'=>'Primary Site','British English'=>'UK English','American English'=>'US English','View Site'=>'View Site','Visit Dashboard'=>'Visit Dashboard','Your Sites'=>'Your Sites','If you reached this screen by accident and meant to visit one of your own sites, here are some shortcuts to help you find your way.'=>'If you reached this screen by accident and meant to visit one of your own sites, here are some shortcuts to help you find your way.','You attempted to access the "%1$s" dashboard, but you do not currently have privileges on this site. If you believe you should be able to access the "%1$s" dashboard, please contact your network administrator.'=>'You attempted to access the "%1$s" dashboard, but you do not currently have privileges on this site. If you believe you should be able to access the "%1$s" dashboard, please contact your network administrator.','MB (Leave blank for network default)'=>'MB (Leave blank for network default)','[%s] New Admin Email Address'=>'[%s] New Admin Email Address','Disabled'=>'Disabled','Paused (%s)'=>'Paused (%s)' . "\0" . 'Paused (%s)','Global Settings'=>'Global Settings','You must be a member of at least one site to use this page.'=>'You must be a member of at least one site to use this page.','The primary site you chose does not exist.'=>'The primary site you chose does not exist.','If you want to run multiple WordPress installations in a single database, change this.'=>'If you want to run multiple WordPress installations in a single database, change this.','Table Prefix'=>'Table Prefix','Database Host'=>'Database Host','example passwordpassword'=>'password','example usernameusername'=>'username','Database Name'=>'Database Name','Below you should enter your database connection details. If you are not sure about these, contact your host.'=>'Below you should enter your database connection details. If you are not sure about these, contact your host.','Let’s go!'=>'Let’s go!','Table prefix (if you want to run more than one WordPress in a single database)'=>'Table prefix (if you want to run more than one WordPress in a single database)','Database host'=>'Database host','Database password'=>'Database password','Database username'=>'Database username','Database name'=>'Database name','WordPress › Setup Configuration File'=>'WordPress › Setup Configuration File','The file %1$s already exists one level above your WordPress installation. If you need to reset any of the configuration items in this file, please delete it first. You may try installing now.'=>'The file %1$s already exists one level above your WordPress installation. If you need to reset any of the configuration items in this file, please delete it first. You may try installing now.','The file %1$s already exists. If you need to reset any of the configuration items in this file, please delete it first. You may try installing now.'=>'The file %1$s already exists. If you need to reset any of the configuration items in this file, please delete it first. You may try installing now.','Sorry, I need a %s file to work from. Please re-upload this file to your WordPress installation.'=>'Sorry, I need a %s file to work from. Please re-upload this file to your WordPress installation.','To allow use of this page to automatically repair database problems, please add the following line to your %s file. Once this line is added to your config, reload this page.'=>'To allow use of this page to automatically repair database problems, please add the following line to your %s file. Once this line is added to your config, reload this page.','No comments awaiting moderation.'=>'No comments awaiting moderation.','Plugin installer section titleOther Notes'=>'Other Notes','Plugin installer section titleChangelog'=>'Changelog','Plugin installer section titleScreenshots'=>'Screenshots','Plugin installer section titleFAQ'=>'FAQ','Plugin installer section titleInstallation'=>'Installation','Plugin installer section titleDescription'=>'Description','Plugin Homepage »'=>'Plugin Homepage »','You can export a file of your site’s content in order to import it into another installation or platform. The export file will be an XML file format called WXR. Posts, pages, comments, custom fields, categories, and tags can be included. You can choose for the WXR file to include only certain posts or pages by setting the dropdown filters to limit the export by category, author, date range by month, or publishing status.'=>'You can export a file of your site’s content in order to import it into another installation or platform. The export file will be an XML file format called WXR. Posts, pages, comments, custom fields, categories, and tags can be included. You can choose for the WXR file to include only certain posts or pages by setting the dropdown filters to limit the export by category, author, date range by month, or publishing status.','Failed to repair the %1$s table. Error: %2$s'=>'Failed to repair the %1$s table. Error: %2$s','New users will receive an email letting them know they’ve been added as a user for your site. This email will also contain their password. Check the box if you do not want the user to receive a welcome email.'=>'New users will receive an email letting them know they’ve been added as a user for your site. This email will also contain their password. Check the box if you do not want the user to receive a welcome email.','There are unsaved changes that will be lost. \'OK\' to continue, \'Cancel\' to return to the Image Editor.'=>'There are unsaved changes that will be lost. \'OK\' to continue, \'Cancel\' to return to the Image Editor.','Post via email settings allow you to send your WordPress installation an email with the content of your post. You must set up a secret email account with POP3 access to use this, and any mail received at this address will be posted, so it’s a good idea to keep this address very secret.'=>'Post via email settings allow you to send your WordPress installation an email with the content of your post. You must set up a secret email account with POP3 access to use this, and any mail received at this address will be posted, so it’s a good idea to keep this address very secret.','You can filter the list of users by User Role using the text links above the users list to show All, Administrator, Editor, Author, Contributor, or Subscriber. The default view is to show all users. Unused User Roles are not listed.'=>'You can filter the list of users by User Role using the text links above the users list to show All, Administrator, Editor, Author, Contributor, or Subscriber. The default view is to show all users. Unused User Roles are not listed.','In previous versions of WordPress, all importers were built-in. They have been turned into plugins since most people only use them once or infrequently.'=>'In previous versions of WordPress, all importers were built-in. They have been turned into plugins since most people only use them once or infrequently.','There is an autosave of this post that is more recent than the version below. View the autosave'=>'There is an autosave of this post that is more recent than the version below. View the autosave','Image could not be processed. Please go back and try again.'=>'Image could not be processed. Please go back and try again.','The active theme is broken. Reverting to the default theme.'=>'The active theme is broken. Reverting to the default theme.','WordPress can also attempt to optimize the database. This improves performance in some situations. Repairing and optimizing the database can take a long time and the database will be locked while optimizing.'=>'WordPress can also attempt to optimise the database. This improves performance in some situations. Repairing and optimising the database can take a long time and the database will be locked while optimising.','WordPress can automatically look for some common database problems and repair them. Repairing can take a while, so please be patient.'=>'WordPress can automatically look for some common database problems and repair them. Repairing can take a while, so please be patient.','Repairs complete. Please remove the following line from wp-config.php to prevent this page from being used by unauthorized users.'=>'Repairs complete. Please remove the following line from wp-config.php to prevent this page from being used by unauthorised users.','The %1$s table is not okay. It is reporting the following error: %2$s. WordPress will attempt to repair this table…'=>'The %1$s table is not okay. It is reporting the following error: %2$s. WordPress will attempt to repair this table…','Enter the email address or username of an existing user on this network to invite them to this site. That person will be sent an email asking them to confirm the invite.'=>'Enter the email address or username of an existing user on this network to invite them to this site. That person will be sent an email asking them to confirm the invite.','Enter the email address of an existing user on this network to invite them to this site. That person will be sent an email asking them to confirm the invite.'=>'Enter the email address of an existing user on this network to invite them to this site. That person will be sent an email asking them to confirm the invite.','Show Toolbar when viewing site'=>'Show toolbar when viewing site','For more information, see the release notes.'=>'For more information, see the release notes.','Version %1$s addressed some security issues and fixed %2$s bug.'=>'Version %1$s addressed some security issues and fixed %2$s bug.' . "\0" . 'Version %1$s addressed some security issues and fixed %2$s bugs.','Version %1$s addressed a security issue and fixed %2$s bug.'=>'Version %1$s addressed a security issue and fixed %2$s bug.' . "\0" . 'Version %1$s addressed a security issue and fixed %2$s bugs.','Version %1$s addressed %2$s bug.'=>'Version %1$s addressed %2$s bug.' . "\0" . 'Version %1$s addressed %2$s bugs.','Version %s addressed some security issues.'=>'Version %s addressed some security issues.','Maintenance and Security Release'=>'Maintenance and Security Release' . "\0" . 'Maintenance and Security Releases','Security Release'=>'Security Release' . "\0" . 'Security Releases','Maintenance Release'=>'Maintenance Release' . "\0" . 'Maintenance Releases','What’s New'=>'What’s New','This screen allows you to choose your permalink structure. You can choose from common settings or create custom URL structures.'=>'This screen allows you to choose your permalink structure. You can choose from common settings or create custom URL structures.','Welcome to WordPress %1$s. Learn more.'=>'Welcome to WordPress %1$s. Learn more.','You can upload media files here without creating a post first. This allows you to upload files to use with posts and pages later and/or to get a web link for a particular file that you can share. There are three options for uploading files:'=>'You can upload media files here without creating a post first. This allows you to upload files to use with posts and pages later and/or to get a web link for a particular file that you can share. There are three options for uploading files:','Adding Tags'=>'Adding Tags','Adding Categories'=>'Adding Categories','Troubleshooting'=>'Troubleshooting','How to Update'=>'How to Update','Once you’ve saved the download file, you can use the Import function in another WordPress installation to import the content from this site.'=>'Once you’ve saved the download file, you can use the Import function in another WordPress installation to import the content from this site.','Attaching Files'=>'Attaching Files','You can also edit or move multiple posts to the Trash at once. Select the posts you want to act on using the checkboxes, then select the action you want to take from the Bulk actions menu and click Apply.'=>'You can also edit or move multiple posts to the Bin at once. Select the posts you want to act on using the checkboxes, then select the action you want to take from the Bulk Actions menu and click Apply.','Available Actions'=>'Available Actions','You can customize the display of this screen’s contents in a number of ways:'=>'You can customise the display of this screen’s contents in a number of ways:','Screen Content'=>'Screen Content','This screen provides access to all of your posts. You can customize the display of this screen to suit your workflow.'=>'This screen provides access to all of your posts. You can customise the display of this screen to suit your workflow.','If the importer you need is not listed, search the plugin directory to see if an importer is available.'=>'If the importer you need is not listed, search the plugin directory to see if an importer is available.','Moderating Comments'=>'Moderating Comments','If you want to convert your categories to tags (or vice versa), use the Categories and Tags Converter available from the Import screen.'=>'If you want to convert your categories to tags (or vice versa), use the Categories and Tags Converter available from the Import screen.','Adding Plugins'=>'Adding Plugins','Adding Themes'=>'Adding Themes','Subscribers can read comments/comment/receive newsletters, etc. but cannot create regular site content.'=>'Subscribers can read comments/comment/receive newsletters, etc. but cannot create regular site content.','Authors can publish and manage their own posts, and are able to upload files.'=>'Authors can publish and manage their own posts, and are able to upload files.','Here is a basic overview of the different user roles and the permissions associated with each one:'=>'Here is a basic overview of the different user roles and the permissions associated with each one:','User Roles'=>'User Roles','Remember to click the Add New User button at the bottom of this screen when you are finished.'=>'Remember to click the Add New User button at the bottom of this screen when you are finished.','To add a new user to your site, fill in the form on this screen and click the Add New User button at the bottom.'=>'To add a new user to your site, fill in the form on this screen and click the Add New User button at the bottom.','Custom Structures'=>'Custom Structures','Common Settings'=>'Common Settings','Permalinks are the permanent URLs to your individual pages and blog posts, as well as your category and tag archives. A permalink is the web address used to link to your content. The URL to each post should be permanent, and never change — hence the name permalink.'=>'Permalinks are the permanent URLs to your individual pages and blog posts, as well as your category and tag archives. A permalink is the web address used to link to your content. The URL to each post should be permanent, and never change — hence the name permalink.','You can submit content in several different ways; this screen holds the settings for all of them. The top section controls the editor within the dashboard, while the rest control external publishing methods. For more information on any of these methods, use the documentation links.'=>'You can submit content in several different ways; this screen holds the settings for all of them. The top section controls the editor within the dashboard, while the rest control external publishing methods. For more information on any of these methods, use the documentation links.','Uploading Files allows you to choose the folder and path for storing your uploaded files.'=>'Uploading Files allows you to choose the folder and path for storing your uploaded files.','Installing themes on Multisite can only be done from the Network Admin section.'=>'Installing themes on Multisite can only be done from the Network Admin section.','If desired, WordPress will automatically alert various services of your new posts.'=>'If desired, WordPress will automatically alert various services of your new posts.','Post Via Email'=>'Post Via Email','This screen provides many options for controlling the management and display of comments and links to your posts/pages. So many, in fact, they will not all fit here! :) Use the documentation links to get information on what each discussion setting does.'=>'This screen provides many options for controlling the management and display of comments and links to your posts/pages. So many, in fact, they will not all fit here! :) Use the documentation links to get information on what each discussion setting does.','You can change your password, turn on keyboard shortcuts, change the color scheme of your WordPress administration screens, and turn off the WYSIWYG (Visual) editor, among other things. You can hide the Toolbar (formerly called the Admin Bar) from the front end of your site, however it cannot be disabled on the admin screens.'=>'You can change your password, turn on keyboard shortcuts, change the colour scheme of your WordPress administration screens, and turn off the WYSIWYG (Visual) editor, among other things. You can hide the toolbar (formerly called the Admin Bar) from the front end of your site, however it cannot be disabled on the admin screens.','This sidebar is no longer available and does not show anywhere on your site. Remove each of the widgets below to fully remove this inactive sidebar.'=>'This sidebar is no longer available and does not show anywhere on your site. Remove each of the widgets below to fully remove this inactive sidebar.','Inactive Sidebar (not used)'=>'Inactive Sidebar (not used)','Clicking Select Files opens a navigation window showing you files in your operating system. Selecting Open after clicking on the file you want activates a progress bar on the uploader screen.'=>'Clicking Select Files opens a navigation window showing you files in your operating system. Selecting Open after clicking on the file you want activates a progress bar on the uploader screen.','Drag and drop your files into the area below. Multiple files are allowed.'=>'Drag and drop your files into the area below. Multiple files are allowed.','You can assign keywords to your posts using tags. Unlike categories, tags have no hierarchy, meaning there is no relationship from one tag to another.'=>'You can assign keywords to your posts using tags. Unlike categories, tags have no hierarchy, meaning there is no relationship from one tag to another.','You can create groups of links by using Link Categories. Link Category names must be unique and Link Categories are separate from the categories you use for posts.'=>'You can create groups of links by using Link Categories. Link Category names must be unique and Link Categories are separate from the categories you use for posts.','Missing Widgets'=>'Missing Widgets','Removing and Reusing'=>'Removing and Reusing','If a media file has not been attached to any content, you will see that in the Uploaded To column, and can click on Attach to launch a small popup that will allow you to search for existing content and attach the file.'=>'If a media file has not been attached to any content, you will see that in the Uploaded To column, and can click on Attach to launch a small popup that will allow you to search for existing content and attach the file.','All the files you’ve uploaded are listed in the Media Library, with the most recent uploads listed first. You can use the Screen Options tab to customize the display of this screen.'=>'All the files you’ve uploaded are listed in the Media Library, with the most recent uploads listed first. You can use the Screen Options tab to customise the display of this screen.','You can also perform the same types of actions, including narrowing the list by using the filters, acting on a page using the action links that appear when you hover over a row, or using the Bulk actions menu to edit the metadata for multiple pages at once.'=>'You can also perform the same types of actions, including narrowing the list by using the filters, acting on a page using the action links that appear when you hover over a row, or using the Bulk Actions menu to edit the metadata for multiple pages at once.','Managing pages is very similar to managing posts, and the screens can be customized in the same way.'=>'Managing pages is very similar to managing posts, and the screens can be customised in the same way.','Pages are similar to posts in that they have a title, body text, and associated metadata, but they are different in that they are not part of the chronological blog stream, kind of like permanent posts. Pages are not categorized or tagged, but can have a hierarchy. You can nest pages under other pages by making one the “Parent” of the other, creating a group of pages.'=>'Pages are similar to posts in that they have a title, body text, and associated metadata, but they are different in that they are not part of the chronological blog stream, kind of like permanent posts. Pages are not categorised or tagged, but can have a hierarchy. You can nest pages under other pages by making one the “Parent” of the other, creating a group of pages.','Many people take advantage of keyboard shortcuts to moderate their comments more quickly. Use the link to the side to learn more.'=>'Many people take advantage of keyboard shortcuts to moderate their comments more quickly. Use the link to the side to learn more.','In the Author column, in addition to the author’s name, email address, and site URL, the commenter’s IP address is shown. Clicking on this link will show you all the comments made from this IP address.'=>'In the Author column, in addition to the author’s name, email address, and site URL, the commenter’s IP address is shown. Clicking on this link will show you all the comments made from this IP address.','You can manage comments made on your site similar to the way you manage posts and other content. This screen is customizable in the same ways as other management screens, and you can act on comments using the on-hover action links or the bulk actions.'=>'You can manage comments made on your site similar to the way you manage posts and other content. This screen is customisable in the same ways as other management screens, and you can act on comments using the on-hover action links or the bulk actions.','Links in the Toolbar at the top of the screen connect your dashboard and the front end of your site, and provide access to your profile and helpful WordPress information.'=>'Links in the toolbar at the top of the screen connect your dashboard and the front end of your site, and provide access to your profile and helpful WordPress information.','Deleting Links'=>'Deleting Links','Links may be separated into Link Categories; these are different than the categories used on your posts.'=>'Links may be separated into Link Categories; these are different than the categories used on your posts.','Learn more about WordPress %2$s.'=>'Learn more about WordPress %2$s.','Edit takes you to the editable profile screen for that user. You can also reach that screen by clicking on the username.'=>'Edit takes you to the editable profile screen for that user. You can also reach that screen by clicking on the username.','Hovering over a row in the users list will display action links that allow you to manage users. You can perform the following actions:'=>'Hovering over a row in the users list will display action links that allow you to manage users. You can perform the following actions:','You can view all posts made by a user by clicking on the number under the Posts column.'=>'You can view all posts made by a user by clicking on the number under the Posts column.','You can hide/display columns based on your needs and decide how many users to list per screen using the Screen Options tab.'=>'You can hide/display columns based on your needs and decide how many users to list per screen using the Screen Options tab.','Managing Pages'=>'Managing Pages','Preview will show you what your draft post will look like if you publish it. View will take you to your live site to view the post. Which link is available depends on your post’s status.'=>'Preview will show you what your draft post will look like if you publish it. View will take you to your live site to view the post. Which link is available depends on your post’s status.','Trash removes your post from this list and places it in the Trash, from which you can permanently delete it.'=>'Bin removes your post from this list and places it in the Bin, from which you can permanently delete it.','Quick Edit provides inline access to the metadata of your post, allowing you to update post details without leaving this screen.'=>'Quick Edit provides inline access to the metadata of your post, allowing you to update post details without leaving this screen.','Edit takes you to the editing screen for that post. You can also reach that screen by clicking on the post title.'=>'Edit takes you to the editing screen for that post. You can also reach that screen by clicking on the post title.','Because this is a multisite installation, you may add accounts that already exist on the Network by specifying a username or email, and defining a role. For more options, such as specifying a password, you have to be a Network Administrator and use the hover link under an existing user’s name to Edit the user profile under Network Admin > All Users.'=>'Because this is a multisite installation, you may add accounts that already exist on the Network by specifying a username or email, and defining a role. For more options, such as specifying a password, you have to be a Network Administrator and use the hover link under an existing user’s name to Edit the user profile under Network Admin > All Users.','Welcome to WordPress %s'=>'Welcome to WordPress %s','Go to Dashboard → Home'=>'Go to Dashboard → Home','Go to Dashboard → Updates'=>'Go to Dashboard → Updates','Profile updated.'=>'Profile updated.','Hi, +Click \'Cancel\' to go back, \'OK\' to confirm the delete.','Unable to submit this form, please refresh and try again.'=>'Unable to submit this form, please refresh and try again.','Quick Draft — Allows you to create a new post and save it as a draft. Also displays links to the 3 most recent draft posts you\'ve started.'=>'Quick Draft — Allows you to create a new post and save it as a draft. Also displays links to the 3 most recent draft posts you\'ve started.','Activity — Shows the upcoming scheduled posts, recently published posts, and the most recent comments on your posts and allows you to moderate them.'=>'Activity — Shows the upcoming scheduled posts, recently published posts, and the most recent comments on your posts and allows you to moderate them.','Screen Options — Use the Screen Options tab to choose which Dashboard boxes to show.'=>'Screen Options — Use the Screen Options tab to choose which Dashboard boxes to show.','Manage Uploads'=>'Manage Uploads','Popular Plugin'=>'Popular Plugin','Tomorrow'=>'Tomorrow','No activity yet!'=>'No activity yet!','Recently Published'=>'Recently Published','Publishing Soon'=>'Publishing Soon','What’s on your mind?'=>'What’s on your mind?','WordPress %1$s running %2$s theme.'=>'WordPress %1$s running %2$s theme.','Quick Draft'=>'Quick Draft','Activity'=>'Activity','FAILED: %s'=>'FAILED: %s','SUCCESS: %s'=>'SUCCESS: %s','FAILED: WordPress failed to update to %s'=>'FAILED: WordPress failed to update to %s','SUCCESS: WordPress was successfully updated to %s'=>'SUCCESS: WordPress was successfully updated to %s','WordPress site: %s'=>'WordPress site: %s','Your site was running version %s.'=>'Your site was running version %s.','Your site at %1$s experienced a critical failure while trying to update WordPress to version %2$s.'=>'Your site at %1$s experienced a critical failure while trying to update WordPress to version %2$s.','WordPress %s is also now available.'=>'WordPress %s is also now available.','The update cannot be installed because your site is unable to copy some files. This is usually due to inconsistent file permissions.'=>'The update cannot be installed because your site is unable to copy some files. This is usually due to inconsistent file permissions.','Your translations are all up to date.'=>'Your translations are all up to date.','Translations'=>'Translations','Error code: %s'=>'Error code: %s','Your hosting company, support forum volunteers, or a friendly developer may be able to use this information to help you:'=>'Your hosting company, support forum volunteers, or a friendly developer may be able to use this information to help you:','The WordPress Team'=>'The WordPress Team','You also have some plugins or themes with updates available. Update them now:'=>'You also have some plugins or themes with updates available. Update them now:','If you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.'=>'If you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.','Keeping your site updated is important for security. It also makes the internet a safer place for you and your readers.'=>'Keeping your site updated is important for security. It also makes the internet a safer place for you and your readers.','Please check out your site now. It\'s possible that everything is working. If it says you need to update, you should do so:'=>'Please check out your site now. It\'s possible that everything is working. If it says you need to update, you should do so:','This means your site may be offline or broken. Don\'t panic; this can be fixed.'=>'This means your site may be offline or broken. Don\'t panic; this can be fixed.','Your site at %1$s experienced a critical failure while trying to update to the latest version of WordPress, %2$s.'=>'Your site at %1$s experienced a critical failure while trying to update to the latest version of WordPress, %2$s.','Updating is easy and only takes a few moments:'=>'Updating is easy and only takes a few moments:','Please update your site at %1$s to WordPress %2$s.'=>'Please update your site at %1$s to WordPress %2$s.','For more on version %s, see the About WordPress screen:'=>'For more on version %s, see the About WordPress screen:','No further action is needed on your part.'=>'No further action is needed on your part.','Howdy! Your site at %1$s has been updated automatically to WordPress %2$s.'=>'Hi! Your site at %1$s has been updated automatically to WordPress %2$s.','[%1$s] URGENT: Your site may be down due to a failed update'=>'[%1$s] URGENT: Your site may be down due to a failed update','[%1$s] WordPress %2$s is available. Please update!'=>'[%1$s] WordPress %2$s is available. Please update!','[%1$s] Your site has updated to WordPress %2$s'=>'[%1$s] Your site has updated to WordPress %2$s','Translations for %s'=>'Translations for %s','Updating translations for %1$s (%2$s)…'=>'Updating translations for %1$s (%2$s)…','Update Translations'=>'Update Translations','Background updates'=>'Background updates','There is not enough free disk space to complete the update.'=>'There is not enough free disk space to complete the update.','Updating plugin: %s'=>'Updating plugin: %s','Updating theme: %s'=>'Updating theme: %s','Translation updated successfully.'=>'Translation updated successfully.','Translation update failed.'=>'Translation update failed.','Some of your translations need updating. Sit tight for a few more seconds while they are updated as well.'=>'Some of your translations need updating. Sit tight for a few more seconds while they are updated as well.','Create a brand new user and add them to this site.'=>'Create a brand new user and add them to this site.','Upgrading to a newer version of the same theme will override changes made here. To avoid this, consider creating a child theme instead.'=>'Upgrading to a newer version of the same theme will override changes made here. To avoid this, consider creating a child theme instead.','The sizes listed below determine the maximum dimensions in pixels to use when adding an image to the Media Library.'=>'The sizes listed below determine the maximum dimensions in pixels to use when adding an image to the Media Library.','Comment must be manually approved'=>'Comment must be manually approved','Clicking the arrow to the right of any menu item in the editor will reveal a standard group of settings. Additional settings such as link target, CSS classes, link relationships, and link descriptions can be enabled and disabled via the Screen Options tab.'=>'Clicking the arrow to the right of any menu item in the editor will reveal a standard group of settings. Additional settings such as link target, CSS classes, link relationships, and link descriptions can be enabled and disabled via the Screen Options tab.','Menus can be displayed in locations defined by your theme, even used in sidebars by adding a “Navigation Menu” widget on the Widgets screen. If your theme does not support the navigation menus feature (the default themes, %2$s and %3$s, do), you can learn about adding this support by following the documentation link to the side.'=>'Menus can be displayed in locations defined by your theme, even used in sidebars by adding a “Navigation Menu” widget on the Widgets screen. If your theme does not support the navigation menus feature (the default themes, %2$s and %3$s, do), you can learn about adding this support by following the documentation link to the side.','Your theme does not natively support menus, but you can use them in sidebars by adding a “Navigation Menu” widget on the Widgets screen.'=>'Your theme does not natively support menus, but you can use them in sidebars by adding a “Navigation Menu” widget on the Widgets screen.','Sorry, that is not a valid email address. Email addresses look like username@example.com.'=>'Sorry, that is not a valid email address. Email addresses look like username@example.com.','You must provide an email address.'=>'You must provide an email address.','Your passwords do not match. Please try again.'=>'Your passwords do not match. Please try again.','The username you provided has invalid characters.'=>'The username you provided has invalid characters.','Please provide a valid username.'=>'Please provide a valid username.','Copying the required files…'=>'Copying the required files…','Preparing to install the latest version…'=>'Preparing to install the latest version…','This password will not be stored on the server.'=>'This password will not be stored on the server.','The checksum of the file (%1$s) does not match the expected checksum value (%2$s).'=>'The checksum of the file (%1$s) does not match the expected checksum value (%2$s).','WordPress %s'=>'WordPress %s','Updating to WordPress %s'=>'Updating to WordPress %s','Due to an error during updating, WordPress has been restored to your previous version.'=>'Due to an error during updating, WordPress has been restored to your previous version.','Looking for %1$s in %2$s'=>'Looking for %1$s in %2$s','%s page restored from the Trash.'=>'%s page restored from the Bin.' . "\0" . '%s pages restored from the Bin.','%s page moved to the Trash.'=>'%s page moved to the Bin.' . "\0" . '%s pages moved to the Bin.','%s page permanently deleted.'=>'%s page permanently deleted.' . "\0" . '%s pages permanently deleted.','%s page not updated, somebody is editing it.'=>'%s page not updated, somebody is editing it.' . "\0" . '%s pages not updated, somebody is editing them.','%s page updated.'=>'%s page updated.' . "\0" . '%s pages updated.','%s post restored from the Trash.'=>'%s post restored from the Bin.' . "\0" . '%s posts restored from the Bin.','%s post moved to the Trash.'=>'%s post moved to the Bin.' . "\0" . '%s posts moved to the Bin.','%s post permanently deleted.'=>'%s post permanently deleted.' . "\0" . '%s posts permanently deleted.','%s post not updated, somebody is editing it.'=>'%s post not updated, somebody is editing it.' . "\0" . '%s posts not updated, somebody is editing them.','Tags deleted.'=>'Tags deleted.','Tag not updated.'=>'Tag not updated.','Tag not added.'=>'Tag not added.','Tag updated.'=>'Tag updated.','Tag deleted.'=>'Tag deleted.','Tag added.'=>'Tag added.','Categories deleted.'=>'Categories deleted.','Category not updated.'=>'Category not updated.','Category not added.'=>'Category not added.','Category updated.'=>'Category updated.','Category deleted.'=>'Category deleted.','Category added.'=>'Category added.','Compare two different revisions by selecting the “Compare any two revisions” box to the side.'=>'Compare two different revisions by selecting the “Compare any two revisions” box to the side.','Compare any two revisions'=>'Compare any two revisions','Restore This Autosave'=>'Restore This Autosave','Current Revision by %s'=>'Current Revision by %s','Autosave by %s'=>'Autosave by %s','revisionsBrowse'=>'Browse','Revisions: %s'=>'Revisions: %s','"%s".'=>'"%s".','"%1$s" by %2$s.'=>'"%1$s" by %2$s.','"%1$s" from %2$s.'=>'"%1$s" from %2$s.','"%1$s" from %2$s by %3$s.'=>'"%1$s" from %2$s by %3$s.','Revision by %s'=>'Revision by %s','Connection lost. Saving has been disabled until you are reconnected.'=>'Connection lost. Saving has been disabled until you are reconnected.','Repeat Password'=>'Repeat Password','Repeat New Password'=>'Repeat New Password','Add menu items from the column on the left.'=>'Add menu items from the column on the left.','Plugins extend and expand the functionality of WordPress. You may install plugins in the WordPress Plugin Directory right from here, or upload a plugin in .zip format by clicking the button at the top of this page.'=>'Plugins extend and expand the functionality of WordPress. You may install plugins in the WordPress Plugin Directory right from here, or upload a plugin in .zip format by clicking the button at the top of this page.','http://wordpress.org/plugins/hello-dolly/'=>'http://wordpress.org/plugins/hello-dolly/','The theme contains no files.'=>'The theme contains no files.','The package contains no files.'=>'The package contains no files.','To navigate between revisions, drag the slider handle left or right or use the Previous or Next buttons.'=>'To navigate between revisions, drag the slider handle left or right or use the Previous or Next buttons.','Loading…'=>'Loading…','This item has already been deleted.'=>'This item has already been deleted.','The item you are trying to restore from the Trash no longer exists.'=>'The item you are trying to restore from the Bin no longer exists.','The item you are trying to move to the Trash no longer exists.'=>'The item you are trying to move to the Bin no longer exists.','Drag the items into the order you prefer. Click the arrow on the right of the item to reveal additional configuration options.'=>'Drag the items into the order you prefer. Click the arrow on the right of the item to reveal additional configuration options.','If you have not yet created any menus, click the ’create a new menu’ link to get started'=>'If you have not yet created any menus, click the ’create a new menu’ link to get started','To restore a revision, click Restore This Revision.'=>'To restore a revision, click Restore This Revision.','From this screen you can review, compare, and restore revisions:'=>'From this screen you can review, compare, and restore revisions:','Revisions are saved copies of your post or page, which are periodically created as you update your content. The red text on the left shows the content that was removed. The green text on the right shows the content that was added.'=>'Revisions are saved copies of your post or page, which are periodically created as you update your content. The red text on the left shows the content that was removed. The green text on the right shows the content that was added.','This screen is used for managing your content revisions.'=>'This screen is used for managing your content revisions.','Followed by post revision infoTo:'=>'To:','Button label for a next revisionNext'=>'Next','Button label for a previous revisionPrevious'=>'Previous','Followed by post revision infoFrom:'=>'From:','menuUse new menu'=>'Use new menu','menuEdit'=>'Edit','Select a Menu'=>'Select a Menu','Assigned Menu'=>'Assigned Menu','Theme Location'=>'Theme Location','Manage Locations'=>'Manage Locations','Edit Menus'=>'Edit Menus','To add a new menu instead of assigning an existing one, click the ’Use new menu’ link. Your new menu will be automatically assigned to that theme location'=>'To add a new menu instead of assigning an existing one, click the ’Use new menu’ link. Your new menu will be automatically assigned to that theme location','To edit a menu currently assigned to a theme location, click the adjacent ’Edit’ link'=>'To edit a menu currently assigned to a theme location, click the adjacent ’Edit’ link','To assign menus to one or more theme locations, select a menu from each location’s dropdown. When you are finished, click Save Changes'=>'To assign menus to one or more theme locations, select a menu from each location’s dropdown. When you are finished, click Save Changes','This screen is used for globally assigning menus to locations defined by your theme.'=>'This screen is used for globally assigning menus to locations defined by your theme.','Editing Menus'=>'Editing Menus','Delete a menu item by expanding it and clicking the Remove link'=>'Delete a menu item by expanding it and clicking the Remove link','To reorganize menu items, drag and drop items with your mouse or use your keyboard. Drag or move a menu item a little to the right to make it a submenu'=>'To reorganise menu items, drag and drop items with your mouse or use your keyboard. Drag or move a menu item a little to the right to make it a submenu','Add one or several items at once by selecting the checkbox next to each item and clicking Add to Menu'=>'Add one or several items at once by selecting the checkbox next to each item and clicking Add to Menu','Each navigation menu may contain a mix of links to pages, categories, custom URLs or other content types. Menu links are added by selecting items from the expanding boxes in the left-hand column below.'=>'Each navigation menu may contain a mix of links to pages, categories, custom URLs or other content types. Menu links are added by selecting items from the expanding boxes in the left-hand column below.','Menu Management'=>'Menu Management','You can assign theme locations to individual menus by selecting the desired settings at the bottom of the menu editor. To assign menus to all theme locations at once, visit the Manage Locations tab at the top of the screen.'=>'You can assign theme locations to individual menus by selecting the desired settings at the bottom of the menu editor. To assign menus to all theme locations at once, visit the Manage Locations tab at the top of the screen.','To edit an existing menu, choose a menu from the dropdown and click Select'=>'To edit an existing menu, choose a menu from the dropdown and click Select','The menu management box at the top of the screen is used to control which menu is opened in the editor below.'=>'The menu management box at the top of the screen is used to control which menu is opened in the editor below.','Add, organize, and modify individual menu items'=>'Add, organise, and modify individual menu items','Create, edit, and delete menus'=>'Create, edit, and delete menus','From this screen you can:'=>'From this screen you can:','This screen is used for managing your navigation menus.'=>'This screen is used for managing your navigation menus.','Menu locations updated.'=>'Menu locations updated.','Your latest changes were saved as a revision.'=>'Your latest changes were saved as a revision.','Audio Codec:'=>'Audio Codec:','Audio Format:'=>'Audio Format:','Genre: %s.'=>'Genre: %s.','Track %1$s of %2$s.'=>'Track %1$s of %2$s.','Released: %d.'=>'Released: %d.','%1$s by %2$s.'=>'%1$s by %2$s.','Restore This Revision'=>'Restore This Revision','Denied: %s'=>'Denied: %s','Capabilities'=>'Capabilities','Menu Settings'=>'Menu Settings','Menu structure'=>'Menu structure','To the top'=>'To the top','Down one'=>'Down one','Up one'=>'Up one','Move'=>'Move','Draft created on %1$s at %2$s'=>'Draft created on %1$s at %2$s','You cannot move this item to the Trash. %s is currently editing.'=>'You cannot move this item to the Bin. %s is currently editing.','%s has taken over and is currently editing.'=>'%s has taken over and is currently editing.','Select a menu to edit:'=>'Select a menu to edit:','Thank you for Updating! Please visit the Upgrade Network page to update all your sites.'=>'Thank you for Updating! Please visit the Upgrade Network page to update all your sites.','All right, sparky! You’ve made it through this part of the installation. WordPress can now communicate with your database. If you are ready, time now to…'=>'All right, sunshine! You’ve made it through this part of the installation. WordPress can now communicate with your database. If you are ready, time now to…','Client version'=>'Client version','Auto add pages'=>'Auto add pages','Give your menu a name, then click Create Menu.'=>'Give your menu a name, then click Create Menu.','Edit your default menu by adding or removing items. Drag the items into the order you prefer. Click Create Menu to save your changes.'=>'Edit your default menu by adding or removing items. Drag the items into the order you prefer. Click Create Menu to save your changes.','Selected menus have been successfully deleted.'=>'Selected menus have been successfully deleted.','For PHP files, you can use the documentation dropdown to select from functions recognized in that file. Look Up takes you to a web page with reference material about that particular function.'=>'For PHP files, you can use the documentation dropdown to select from functions recognised in that file. Look Up takes you to a web page with reference material about that particular function.','Look Up'=>'Look Up','The documentation menu below the editor lists the PHP functions recognized in the plugin file. Clicking Look Up takes you to a web page about that particular function.'=>'The documentation menu below the editor lists the PHP functions recognised in the plugin file. Clicking Look Up takes you to a web page about that particular function.','%s is currently editing'=>'%s is currently editing','You can upload and insert media (images, audio, documents, etc.) by clicking the Add Media button. You can select from the images and files already uploaded to the Media Library, or upload new media to add to your page or post. To create an image gallery, select the images to add and click the “Create a new gallery” button.'=>'You can upload and insert media (images, audio, documents, etc.) by clicking the Add Media button. You can select from the images and files already uploaded to the Media Library, or upload new media to add to your page or post. To create an image gallery, select the images to add and click the “Create a new gallery” button.','Image rotation is not supported by your web host.'=>'Image rotation is not supported by your web host.','If you are looking to use the link manager, please install the Link Manager plugin.'=>'If you are looking to use the link manager, please install the Link Manager plugin.','When changing themes, there is often some variation in the number and setup of widget areas/sidebars and sometimes these conflicts make the transition a bit less smooth. If you changed themes and seem to be missing widgets, scroll down on this screen to the Inactive Widgets area, where all of your widgets and their settings will have been saved.'=>'When changing themes, there is often some variation in the number and setup of widget areas/sidebars and sometimes these conflicts make the transition a bit less smooth. If you changed themes and seem to be missing widgets, scroll down on this screen to the Inactive Widgets area, where all of your widgets and their settings will have been saved.','Parent — Categories, unlike tags, can have a hierarchy. You might have a Jazz category, and under that have child categories for Bebop and Big Band. Totally optional. To create a subcategory, just choose another category from the Parent dropdown.'=>'Parent — Categories, unlike tags, can have a hierarchy. You might have a Jazz category, and under that have child categories for Bebop and Big Band. Totally optional. To create a subcategory, just choose another category from the Parent dropdown.','Several boxes on this screen contain settings for how your content will be published, including:'=>'Several boxes on this screen contain settings for how your content will be published, including:','Inserting Media'=>'Inserting Media','The title field and the big Post Editing Area are fixed in place, but you can reposition all the other boxes using drag and drop. You can also minimize or expand them by clicking the title bar of each box. Use the Screen Options tab to unhide more boxes (Excerpt, Send Trackbacks, Custom Fields, Discussion, Slug, Author) or to choose a 1- or 2-column layout for this screen.'=>'The title field and the big Post Editing Area are fixed in place, but you can reposition all the other boxes using drag and drop. You can also minimise or expand them by clicking the title bar of each box. Use the Screen Options tab to unhide more boxes (Excerpt, Send Trackbacks, Custom Fields, Discussion, Slug, Author) or to choose a 1- or 2-column layout for this screen.','Do not forget to click “Save Changes” when you are done!'=>'Do not forget to click “Save Changes” when you are done!','To use a background image, simply upload it or choose an image that has already been uploaded to your Media Library by clicking the “Choose Image” button. You can display a single instance of your image, or tile it to fill the screen. You can have your background fixed in place, so your site content moves on top of it, or you can have it scroll with your site.'=>'To use a background image, simply upload it or choose an image that has already been uploaded to your Media Library by clicking the “Choose Image” button. You can display a single instance of your image, or tile it to fill the screen. You can have your background fixed in place, so your site content moves on top of it, or you can have it scroll with your site.','You are using the multi-file uploader. Problems? Try the browser uploader instead.'=>'You are using the multi-file uploader. Problems? Try the browser uploader instead.','media itemEdit'=>'Edit','colorDefault: %s'=>'Default: %s','column nameUploaded to'=>'Uploaded to','The uploaded file is not a valid image. Please try again.'=>'The uploaded file is not a valid image. Please try again.','Choose a Custom Header'=>'Choose a Custom Header','Choose a Background Image'=>'Choose a Background Image','In the Header Text section of this page, you can choose whether to display this text or hide it. You can also choose a color for the text by clicking the Select Color button and either typing in a legitimate HTML hex value, e.g. “#ff0000” for red, or by choosing a color using the color picker.'=>'In the Header Text section of this page, you can choose whether to display this text or hide it. You can also choose a colour for the text by clicking the Select Colour button and either typing in a legitimate HTML hex value, e.g. “#ff0000” for red, or by choosing a colour using the colour picker.','You can also choose a background color by clicking the Select Color button and either typing in a legitimate HTML hex value, e.g. “#ff0000” for red, or by choosing a color using the color picker.'=>'You can also choose a background colour by clicking the Select Colour button and either typing in a legitimate HTML hex value, e.g. “#ff0000” for red, or by choosing a colour using the colour picker.','In the In response to column, there are three elements. The text is the name of the post that inspired the comment, and links to the post editor for that entry. The View Post link leads to that post on your live site. The small bubble with the number in it shows the number of approved comments that post has received. If there are pending comments, a red notification circle with the number of pending comments is displayed. Clicking the notification circle will filter the comments screen to show only pending comments on that post.'=>'In the In response to column, there are three elements. The text is the name of the post that inspired the comment, and links to the post editor for that entry. The View Post link leads to that post on your live site. The small bubble with the number in it shows the number of approved comments that post has received. If there are pending comments, a red notification circle with the number of pending comments is displayed. Clicking the notification circle will filter the comments screen to show only pending comments on that post.','ID #%1$s: %2$s'=>'ID #%1$s: %2$s','ID #%1$s: %2$s The current user will not be deleted.'=>'ID #%1$s: %2$s The current user will not be deleted.','Used: %1$s%% of %2$s'=>'Used: %1$s%% of %2$s','Please select an option.'=>'Please select an option.','After you’ve done that, click “Run the installation”.'=>'After you’ve done that, click “Run the installation”.','If you want to install a plugin that you’ve downloaded elsewhere, click the Upload Plugin button above the plugins list. You will be prompted to upload the .zip package, and once uploaded, you can activate the new plugin.'=>'If you want to install a plugin that you’ve downloaded elsewhere, click the Upload Plugin button above the plugins list. You will be prompted to upload the .zip package, and once uploaded, you can activate the new plugin.','You can also browse a user’s favorite plugins, by using the Favorites link above the plugins list and entering their WordPress.org username.'=>'You can also browse a user’s favourite plugins, by using the Favourites link above the plugins list and entering their WordPress.org username.','If you know what you are looking for, Search is your best bet. The Search screen has options to search the WordPress Plugin Directory for a particular Term, Author, or Tag. You can also search the directory by selecting popular tags. Tags in larger type mean more plugins have been labeled with that tag.'=>'If you know what you are looking for, Search is your best bet. The Search screen has options to search the WordPress Plugin Directory for a particular Term, Author, or Tag. You can also search the directory by selecting popular tags. Tags in larger type mean more plugins have been labeled with that tag.','It is up to search engines to honor this request.'=>'It is up to search engines to honour this request.','Discourage search engines from indexing this site'=>'Discourage search engines from indexing this site','Allow search engines to index this site'=>'Allow search engines to index this site','Search engine visibility'=>'Search engine visibility','Welcome to WordPress %1$s. You will be redirected to the About WordPress screen. If not, click here.'=>'Welcome to WordPress %1$s. You will be redirected to the About WordPress screen. If not, click here.','Get Favorites'=>'Get Favourites','Your WordPress.org username:'=>'Your WordPress.org username:','If you have marked plugins as favorites on WordPress.org, you can browse them here.'=>'If you have marked plugins as favourites on WordPress.org, you can browse them here.','Welcome to WordPress!'=>'Welcome to WordPress!','Search engines discouraged'=>'Search engines discouraged','This child theme requires its parent theme, %2$s.'=>'This child theme requires its parent theme, %2$s.','Plugin InstallerFavorites'=>'Favourites','To install the theme so you can preview it with your site’s content and customize its theme options, click the "Install" button at the top of the left-hand pane. The theme files will be downloaded to your website automatically. When this is complete, the theme is now available for activation, which you can do by clicking the "Activate" link, or by navigating to your Manage Themes screen and clicking the "Live Preview" link under any installed theme’s thumbnail image.'=>'To install the theme so you can preview it with your site’s content and customise its theme options, click the "Install" button at the top of the left-hand pane. The theme files will be downloaded to your website automatically. When this is complete, the theme is now available for activation, which you can do by clicking the "Activate" link, or by navigating to your Manage Themes screen and clicking the "Live Preview" link under any installed theme’s thumbnail image.','widgetAdd'=>'Add','widgetEdit'=>'Edit','Search by tag'=>'Search by tag','Search by author'=>'Search by author','Search by keyword'=>'Search by keyword','Type of search'=>'Type of search','Screen Options Tab'=>'Screen Options Tab','Contextual Help Tab'=>'Contextual Help Tab','Select comment'=>'Select comment','Tags can be selectively converted to categories using the tag to category converter.'=>'Tags can be selectively converted to categories using the tag to category converter.','You can delete Link Categories in the Bulk Action pull-down, but that action does not delete the links within the category. Instead, it moves them to the default Link Category.'=>'You can delete Link Categories in the Bulk Action pull-down, but that action does not delete the links within the category. Instead, it moves them to the default Link Category.','Creating a Page is very similar to creating a Post, and the screens can be customized in the same way using drag and drop, the Screen Options tab, and expanding/collapsing boxes as you choose. This screen also has the distraction-free writing space, available in both the Visual and Code modes via the Fullscreen buttons. The Page editor mostly works the same as the Post editor, but there are some Page-specific features in the Page Attributes box.'=>'Creating a Page is very similar to creating a Post, and the screens can be customised in the same way using drag and drop, the Screen Options tab, and expanding/collapsing boxes as you choose. This screen also has the distraction-free writing space, available in both the Visual and Code modes via the Fullscreen buttons. The Page editor mostly works the same as the Post editor, but there are some Page-specific features in the Page Attributes box.','You can select an image to be shown at the top of your site by uploading from your computer or choosing from your media library. After selecting an image you will be able to crop it.'=>'You can select an image to be shown at the top of your site by uploading from your computer or choosing from your media library. After selecting an image you will be able to crop it.','Skip to main content'=>'Skip to main content','You can set a custom image header for your site. Simply upload the image and crop it, and the new header will go live immediately. Alternatively, you can use an image that has already been uploaded to your Media Library by clicking the “Choose Image” button.'=>'You can set a custom image header for your site. Simply upload the image and crop it, and the new header will go live immediately. Alternatively, you can use an image that has already been uploaded to your Media Library by clicking the “Choose Image” button.','Skip Cropping, Publish Image as Is'=>'Skip Cropping, Publish Image as Is','Choose Image'=>'Choose Image','Or choose an image from your media library:'=>'Or choose an image from your media library:','Select Image'=>'Select Image','Collapse'=>'Collapse','If you do not want a header image to be displayed on your site at all, click the “Remove Header Image” button at the bottom of the Header Image section of this page. If you want to re-enable the header image later, you just have to select one of the other image options and click “Save Changes”.'=>'If you do not want a header image to be displayed on your site at all, click the “Remove Header Image” button at the bottom of the Header Image section of this page. If you want to re-enable the header image later, you just have to select one of the other image options and click “Save Changes”.','pluginInstalled'=>'Installed','Previewing and Customizing'=>'Previewing and Customising','Previewing and Installing'=>'Previewing and Installing','Once you have generated a list of themes, you can preview and install any of them. Click on the thumbnail of the theme you are interested in previewing. It will open up in a full-screen Preview page to give you a better idea of how that theme will look.'=>'Once you have generated a list of themes, you can preview and install any of them. Click on the thumbnail of the theme you are interested in previewing. It will open up in a full-screen Preview page to give you a better idea of how that theme will look.','You are using the browser’s built-in file uploader. The WordPress uploader includes multiple file selection and drag and drop capability. Switch to the multi-file uploader.'=>'You are using the browser’s built-in file uploader. The WordPress uploader includes multiple file selection and drag and drop capability. Switch to the multi-file uploader.','The Categories and Tags Converter link on this screen will take you to the Import screen, where that Converter is one of the plugins you can install. Once that plugin is installed, the Activate Plugin & Run Importer link will take you to a screen where you can choose to convert tags into categories or vice versa.'=>'The Categories and Tags Converter link on this screen will take you to the Import screen, where that Converter is one of the plugins you can install. Once that plugin is installed, the Activate Plugin & Run Importer link will take you to a screen where you can choose to convert tags into categories or vice versa.','Categories have hierarchy, meaning that you can nest sub-categories. Tags do not have hierarchy and cannot be nested. Sometimes people start out using one on their posts, then later realize that the other would work better for their content.'=>'Categories have hierarchy, meaning that you can nest sub-categories. Tags do not have hierarchy and cannot be nested. Sometimes people start out using one on their posts, then later realise that the other would work better for their content.','For most themes, the header text is your Site Title and Tagline, as defined in the General Settings section.'=>'For most themes, the header text is your Site Title and Tagline, as defined in the General Settings section.','If your theme has more than one default header image, or you have uploaded more than one custom header image, you have the option of having WordPress display a randomly different image on each page of your site. Click the “Random” radio button next to the Uploaded Images or Default Images section to enable this feature.'=>'If your theme has more than one default header image, or you have uploaded more than one custom header image, you have the option of having WordPress display a randomly different image on each page of your site. Click the “Random” radio button next to the Uploaded Images or Default Images section to enable this feature.','Some themes come with additional header images bundled. If you see multiple images displayed, select the one you would like and click the “Save Changes” button.'=>'Some themes come with additional header images bundled. If you see multiple images displayed, select the one you would like and click the “Save Changes” button.','You can choose from the theme’s default header images, or use one of your own. You can also customize how your Site Title and Tagline are displayed.'=>'You can choose from the theme’s default header images, or use one of your own. You can also customise how your Site Title and Tagline are displayed.','This screen is used to customize the header section of your theme.'=>'This screen is used to customise the header section of your theme.','Configuration Error'=>'Configuration Error','Revert to the Browser Uploader by clicking the link below the drag and drop box.'=>'Revert to the Browser Uploader by clicking the link below the drag and drop box.','User deleted.'=>'User deleted.' . "\0" . '%s users deleted.','Could not copy files. You may have run out of disk space.'=>'Could not copy files. You may have run out of disk space.','Find a theme based on specific features.'=>'Find a theme based on specific features.','Search for themes by keyword.'=>'Search for themes by keyword.','In all likelihood, these items were supplied to you by your web host. If you do not have this information, then you will need to contact them before you can continue. If you are ready…'=>'In all likelihood, these items were supplied to you by your web host. If you do not have this information, then you will need to contact them before you can continue. If you are ready…','This theme is broken.'=>'This theme is broken.','Set as header'=>'Set as header','Set as background'=>'Set as background','Customize “%s”'=>'Customise “%s”','(required)'=>'(required)','Edit Link'=>'Edit Link','Error: This email is already registered. Please choose another one.'=>'Error: This email is already registered. Please choose another one.','Error: Please enter a nickname.'=>'Error: Please enter a nickname.','https://wordpress.org/about/'=>'https://en-gb.wordpress.org/about/','Select All'=>'Select all','Public, Sticky'=>'Public, Sticky','Privately Published'=>'Privately Published','Save as Pending'=>'Save as Pending','Enter a link URL or click above for presets.'=>'Enter a link URL or click above for presets.','Link URL'=>'Link URL','No comments yet.'=>'No comments yet.','Version:'=>'Version:','Collapse Sidebar'=>'Collapse Sidebar','Plugin'=>'Plugin','All'=>'All','Word count: %s'=>'Word count: %s','Edit comment'=>'Edit comment','Preview:'=>'Preview:','E-mail'=>'Email','The parent theme could not be found. You will need to install the parent theme, %s, before you can use this child theme.'=>'The parent theme could not be found. You will need to install the parent theme, %s, before you can use this child theme.','Successfully installed the parent theme, %1$s %2$s.'=>'Successfully installed the parent theme, %1$s %2$s.','The parent theme, %1$s %2$s, is currently installed.'=>'The parent theme, %1$s %2$s, is currently installed.','Preparing to install %1$s %2$s…'=>'Preparing to install %1$s %2$s…','This theme requires a parent theme. Checking if it is installed…'=>'This theme requires a parent theme. Checking if it is installed…','Show header text with your image.'=>'Show header text with your image.','Header Text'=>'Header Text','There is a new version of %1$s available. View version %4$s details or update now.'=>'There is a new version of %1$s available. View version %4$s details or update now.','By %s.'=>'By %s.','Add Comment'=>'Add Comment','http://ma.tt/'=>'https://ma.tt/','This is not just a plugin, it symbolizes the hope and enthusiasm of an entire generation summed up in two words sung most famously by Louis Armstrong: Hello, Dolly. When activated you will randomly see a lyric from Hello, Dolly in the upper right of your admin screen on every page.'=>'This is not just a plugin, it symbolises the hope and enthusiasm of an entire generation summed up in two words sung most famously by Louis Armstrong: Hello, Dolly. When activated you will randomly see a lyric from Hello, Dolly in the upper right of your admin screen on every page.','Hello Dolly'=>'Hello Dolly','Welcome — Shows links for some of the most common tasks when setting up a new site.'=>'Welcome — Shows links for some of the most common tasks when setting up a new site.','There is a new version of %1$s available. View version %4$s details. Automatic update is unavailable for this theme.'=>'There is a new version of %1$s available. View version %4$s details. Automatic update is unavailable for this theme.','HowdyWelcome'=>'Welcome','Delete My Site Permanently'=>'Delete My Site Permanently','I\'m sure I want to permanently delete my site, and I am aware I can never get it back or use %s again.'=>'I\'m sure I want to permanently delete my site, and I am aware I can never get it back or use %s again.','Remember, once deleted your site cannot be restored.'=>'Remember, once deleted your site cannot be restored.','If you do not want to use your %s site any more, you can delete it using the form below. When you click Delete My Site Permanently you will be sent an email with a link in it. Click on this link to delete your site.'=>'If you do not want to use your %s site any more, you can delete it using the form below. When you click Delete My Site Permanently you will be sent an email with a link in it. Click on this link to delete your site.','Thank you. Please check your email for a link to confirm your action. Your site will not be deleted until this link is clicked.'=>'Thank you. Please check your email for a link to confirm your action. Your site will not be deleted until this link is clicked.','Sorry, the link you clicked is stale. Please select another option.'=>'Sorry, the link you clicked is stale. Please select another option.','Thank you for using %s, your site has been deleted. Happy trails to you until we meet again.'=>'Thank you for using %s, your site has been deleted. Cheerio!','Primary Site'=>'Primary Site','British English'=>'UK English','American English'=>'US English','View Site'=>'View Site','Visit Dashboard'=>'Visit Dashboard','Your Sites'=>'Your Sites','If you reached this screen by accident and meant to visit one of your own sites, here are some shortcuts to help you find your way.'=>'If you reached this screen by accident and meant to visit one of your own sites, here are some shortcuts to help you find your way.','You attempted to access the "%1$s" dashboard, but you do not currently have privileges on this site. If you believe you should be able to access the "%1$s" dashboard, please contact your network administrator.'=>'You attempted to access the "%1$s" dashboard, but you do not currently have privileges on this site. If you believe you should be able to access the "%1$s" dashboard, please contact your network administrator.','MB (Leave blank for network default)'=>'MB (Leave blank for network default)','[%s] New Admin Email Address'=>'[%s] New Admin Email Address','Disabled'=>'Disabled','Paused (%s)'=>'Paused (%s)' . "\0" . 'Paused (%s)','Global Settings'=>'Global Settings','You must be a member of at least one site to use this page.'=>'You must be a member of at least one site to use this page.','The primary site you chose does not exist.'=>'The primary site you chose does not exist.','If you want to run multiple WordPress installations in a single database, change this.'=>'If you want to run multiple WordPress installations in a single database, change this.','Table Prefix'=>'Table Prefix','Database Host'=>'Database Host','example passwordpassword'=>'password','example usernameusername'=>'username','Database Name'=>'Database Name','Below you should enter your database connection details. If you are not sure about these, contact your host.'=>'Below you should enter your database connection details. If you are not sure about these, contact your host.','Let’s go!'=>'Let’s go!','Table prefix (if you want to run more than one WordPress in a single database)'=>'Table prefix (if you want to run more than one WordPress in a single database)','Database host'=>'Database host','Database password'=>'Database password','Database username'=>'Database username','Database name'=>'Database name','WordPress › Setup Configuration File'=>'WordPress › Setup Configuration File','The file %1$s already exists one level above your WordPress installation. If you need to reset any of the configuration items in this file, please delete it first. You may try installing now.'=>'The file %1$s already exists one level above your WordPress installation. If you need to reset any of the configuration items in this file, please delete it first. You may try installing now.','The file %1$s already exists. If you need to reset any of the configuration items in this file, please delete it first. You may try installing now.'=>'The file %1$s already exists. If you need to reset any of the configuration items in this file, please delete it first. You may try installing now.','Sorry, I need a %s file to work from. Please re-upload this file to your WordPress installation.'=>'Sorry, I need a %s file to work from. Please re-upload this file to your WordPress installation.','To allow use of this page to automatically repair database problems, please add the following line to your %s file. Once this line is added to your config, reload this page.'=>'To allow use of this page to automatically repair database problems, please add the following line to your %s file. Once this line is added to your config, reload this page.','No comments awaiting moderation.'=>'No comments awaiting moderation.','Plugin installer section titleOther Notes'=>'Other Notes','Plugin installer section titleChangelog'=>'Changelog','Plugin installer section titleScreenshots'=>'Screenshots','Plugin installer section titleFAQ'=>'FAQ','Plugin installer section titleInstallation'=>'Installation','Plugin installer section titleDescription'=>'Description','Plugin Homepage »'=>'Plugin Homepage »','You can export a file of your site’s content in order to import it into another installation or platform. The export file will be an XML file format called WXR. Posts, pages, comments, custom fields, categories, and tags can be included. You can choose for the WXR file to include only certain posts or pages by setting the dropdown filters to limit the export by category, author, date range by month, or publishing status.'=>'You can export a file of your site’s content in order to import it into another installation or platform. The export file will be an XML file format called WXR. Posts, pages, comments, custom fields, categories, and tags can be included. You can choose for the WXR file to include only certain posts or pages by setting the dropdown filters to limit the export by category, author, date range by month, or publishing status.','Failed to repair the %1$s table. Error: %2$s'=>'Failed to repair the %1$s table. Error: %2$s','New users will receive an email letting them know they’ve been added as a user for your site. This email will also contain their password. Check the box if you do not want the user to receive a welcome email.'=>'New users will receive an email letting them know they’ve been added as a user for your site. This email will also contain their password. Check the box if you do not want the user to receive a welcome email.','There are unsaved changes that will be lost. \'OK\' to continue, \'Cancel\' to return to the Image Editor.'=>'There are unsaved changes that will be lost. \'OK\' to continue, \'Cancel\' to return to the Image Editor.','Post via email settings allow you to send your WordPress installation an email with the content of your post. You must set up a secret email account with POP3 access to use this, and any mail received at this address will be posted, so it’s a good idea to keep this address very secret.'=>'Post via email settings allow you to send your WordPress installation an email with the content of your post. You must set up a secret email account with POP3 access to use this, and any mail received at this address will be posted, so it’s a good idea to keep this address very secret.','You can filter the list of users by User Role using the text links above the users list to show All, Administrator, Editor, Author, Contributor, or Subscriber. The default view is to show all users. Unused User Roles are not listed.'=>'You can filter the list of users by User Role using the text links above the users list to show All, Administrator, Editor, Author, Contributor, or Subscriber. The default view is to show all users. Unused User Roles are not listed.','In previous versions of WordPress, all importers were built-in. They have been turned into plugins since most people only use them once or infrequently.'=>'In previous versions of WordPress, all importers were built-in. They have been turned into plugins since most people only use them once or infrequently.','There is an autosave of this post that is more recent than the version below. View the autosave'=>'There is an autosave of this post that is more recent than the version below. View the autosave','Image could not be processed. Please go back and try again.'=>'Image could not be processed. Please go back and try again.','The active theme is broken. Reverting to the default theme.'=>'The active theme is broken. Reverting to the default theme.','WordPress can also attempt to optimize the database. This improves performance in some situations. Repairing and optimizing the database can take a long time and the database will be locked while optimizing.'=>'WordPress can also attempt to optimise the database. This improves performance in some situations. Repairing and optimising the database can take a long time and the database will be locked while optimising.','WordPress can automatically look for some common database problems and repair them. Repairing can take a while, so please be patient.'=>'WordPress can automatically look for some common database problems and repair them. Repairing can take a while, so please be patient.','Repairs complete. Please remove the following line from wp-config.php to prevent this page from being used by unauthorized users.'=>'Repairs complete. Please remove the following line from wp-config.php to prevent this page from being used by unauthorised users.','The %1$s table is not okay. It is reporting the following error: %2$s. WordPress will attempt to repair this table…'=>'The %1$s table is not okay. It is reporting the following error: %2$s. WordPress will attempt to repair this table…','Enter the email address or username of an existing user on this network to invite them to this site. That person will be sent an email asking them to confirm the invite.'=>'Enter the email address or username of an existing user on this network to invite them to this site. That person will be sent an email asking them to confirm the invite.','Enter the email address of an existing user on this network to invite them to this site. That person will be sent an email asking them to confirm the invite.'=>'Enter the email address of an existing user on this network to invite them to this site. That person will be sent an email asking them to confirm the invite.','Show Toolbar when viewing site'=>'Show toolbar when viewing site','For more information, see the release notes.'=>'For more information, see the release notes.','Version %1$s addressed some security issues and fixed %2$s bug.'=>'Version %1$s addressed some security issues and fixed %2$s bug.' . "\0" . 'Version %1$s addressed some security issues and fixed %2$s bugs.','Version %1$s addressed a security issue and fixed %2$s bug.'=>'Version %1$s addressed a security issue and fixed %2$s bug.' . "\0" . 'Version %1$s addressed a security issue and fixed %2$s bugs.','Version %1$s addressed %2$s bug.'=>'Version %1$s addressed %2$s bug.' . "\0" . 'Version %1$s addressed %2$s bugs.','Version %s addressed some security issues.'=>'Version %s addressed some security issues.','Maintenance and Security Release'=>'Maintenance and Security Release' . "\0" . 'Maintenance and Security Releases','Security Release'=>'Security Release' . "\0" . 'Security Releases','Maintenance Release'=>'Maintenance Release' . "\0" . 'Maintenance Releases','What’s New'=>'What’s New','This screen allows you to choose your permalink structure. You can choose from common settings or create custom URL structures.'=>'This screen allows you to choose your permalink structure. You can choose from common settings or create custom URL structures.','Welcome to WordPress %1$s. Learn more.'=>'Welcome to WordPress %1$s. Learn more.','You can upload media files here without creating a post first. This allows you to upload files to use with posts and pages later and/or to get a web link for a particular file that you can share. There are three options for uploading files:'=>'You can upload media files here without creating a post first. This allows you to upload files to use with posts and pages later and/or to get a web link for a particular file that you can share. There are three options for uploading files:','Adding Tags'=>'Adding Tags','Adding Categories'=>'Adding Categories','Troubleshooting'=>'Troubleshooting','How to Update'=>'How to Update','Once you’ve saved the download file, you can use the Import function in another WordPress installation to import the content from this site.'=>'Once you’ve saved the download file, you can use the Import function in another WordPress installation to import the content from this site.','Attaching Files'=>'Attaching Files','You can also edit or move multiple posts to the Trash at once. Select the posts you want to act on using the checkboxes, then select the action you want to take from the Bulk actions menu and click Apply.'=>'You can also edit or move multiple posts to the Bin at once. Select the posts you want to act on using the checkboxes, then select the action you want to take from the Bulk Actions menu and click Apply.','Available Actions'=>'Available Actions','You can customize the display of this screen’s contents in a number of ways:'=>'You can customise the display of this screen’s contents in a number of ways:','Screen Content'=>'Screen Content','This screen provides access to all of your posts. You can customize the display of this screen to suit your workflow.'=>'This screen provides access to all of your posts. You can customise the display of this screen to suit your workflow.','If the importer you need is not listed, search the plugin directory to see if an importer is available.'=>'If the importer you need is not listed, search the plugin directory to see if an importer is available.','Moderating Comments'=>'Moderating Comments','If you want to convert your categories to tags (or vice versa), use the Categories and Tags Converter available from the Import screen.'=>'If you want to convert your categories to tags (or vice versa), use the Categories and Tags Converter available from the Import screen.','Adding Plugins'=>'Adding Plugins','Adding Themes'=>'Adding Themes','Subscribers can read comments/comment/receive newsletters, etc. but cannot create regular site content.'=>'Subscribers can read comments/comment/receive newsletters, etc. but cannot create regular site content.','Authors can publish and manage their own posts, and are able to upload files.'=>'Authors can publish and manage their own posts, and are able to upload files.','Here is a basic overview of the different user roles and the permissions associated with each one:'=>'Here is a basic overview of the different user roles and the permissions associated with each one:','User Roles'=>'User Roles','Remember to click the Add User button at the bottom of this screen when you are finished.'=>'Remember to click the Add User button at the bottom of this screen when you are finished.','To add a new user to your site, fill in the form on this screen and click the Add User button at the bottom.'=>'To add a new user to your site, fill in the form on this screen and click the Add User button at the bottom.','Custom Structures'=>'Custom Structures','Common Settings'=>'Common Settings','Permalinks are the permanent URLs to your individual pages and blog posts, as well as your category and tag archives. A permalink is the web address used to link to your content. The URL to each post should be permanent, and never change — hence the name permalink.'=>'Permalinks are the permanent URLs to your individual pages and blog posts, as well as your category and tag archives. A permalink is the web address used to link to your content. The URL to each post should be permanent, and never change — hence the name permalink.','You can submit content in several different ways; this screen holds the settings for all of them. The top section controls the editor within the dashboard, while the rest control external publishing methods. For more information on any of these methods, use the documentation links.'=>'You can submit content in several different ways; this screen holds the settings for all of them. The top section controls the editor within the dashboard, while the rest control external publishing methods. For more information on any of these methods, use the documentation links.','Uploading Files allows you to choose the folder and path for storing your uploaded files.'=>'Uploading Files allows you to choose the folder and path for storing your uploaded files.','Installing themes on Multisite can only be done from the Network Admin section.'=>'Installing themes on Multisite can only be done from the Network Admin section.','If desired, WordPress will automatically alert various services of your new posts.'=>'If desired, WordPress will automatically alert various services of your new posts.','Post Via Email'=>'Post Via Email','This screen provides many options for controlling the management and display of comments and links to your posts/pages. So many, in fact, they will not all fit here! :) Use the documentation links to get information on what each discussion setting does.'=>'This screen provides many options for controlling the management and display of comments and links to your posts/pages. So many, in fact, they will not all fit here! :) Use the documentation links to get information on what each discussion setting does.','You can change your password, turn on keyboard shortcuts, change the color scheme of your WordPress administration screens, and turn off the WYSIWYG (Visual) editor, among other things. You can hide the Toolbar (formerly called the Admin Bar) from the front end of your site, however it cannot be disabled on the admin screens.'=>'You can change your password, turn on keyboard shortcuts, change the colour scheme of your WordPress administration screens, and turn off the WYSIWYG (Visual) editor, among other things. You can hide the toolbar (formerly called the Admin Bar) from the front end of your site, however it cannot be disabled on the admin screens.','This sidebar is no longer available and does not show anywhere on your site. Remove each of the widgets below to fully remove this inactive sidebar.'=>'This sidebar is no longer available and does not show anywhere on your site. Remove each of the widgets below to fully remove this inactive sidebar.','Inactive Sidebar (not used)'=>'Inactive Sidebar (not used)','Clicking Select Files opens a navigation window showing you files in your operating system. Selecting Open after clicking on the file you want activates a progress bar on the uploader screen.'=>'Clicking Select Files opens a navigation window showing you files in your operating system. Selecting Open after clicking on the file you want activates a progress bar on the uploader screen.','Drag and drop your files into the area below. Multiple files are allowed.'=>'Drag and drop your files into the area below. Multiple files are allowed.','You can assign keywords to your posts using tags. Unlike categories, tags have no hierarchy, meaning there is no relationship from one tag to another.'=>'You can assign keywords to your posts using tags. Unlike categories, tags have no hierarchy, meaning there is no relationship from one tag to another.','You can create groups of links by using Link Categories. Link Category names must be unique and Link Categories are separate from the categories you use for posts.'=>'You can create groups of links by using Link Categories. Link Category names must be unique and Link Categories are separate from the categories you use for posts.','Missing Widgets'=>'Missing Widgets','Removing and Reusing'=>'Removing and Reusing','If a media file has not been attached to any content, you will see that in the Uploaded To column, and can click on Attach to launch a small popup that will allow you to search for existing content and attach the file.'=>'If a media file has not been attached to any content, you will see that in the Uploaded To column, and can click on Attach to launch a small popup that will allow you to search for existing content and attach the file.','All the files you’ve uploaded are listed in the Media Library, with the most recent uploads listed first. You can use the Screen Options tab to customize the display of this screen.'=>'All the files you’ve uploaded are listed in the Media Library, with the most recent uploads listed first. You can use the Screen Options tab to customise the display of this screen.','You can also perform the same types of actions, including narrowing the list by using the filters, acting on a page using the action links that appear when you hover over a row, or using the Bulk actions menu to edit the metadata for multiple pages at once.'=>'You can also perform the same types of actions, including narrowing the list by using the filters, acting on a page using the action links that appear when you hover over a row, or using the Bulk Actions menu to edit the metadata for multiple pages at once.','Managing pages is very similar to managing posts, and the screens can be customized in the same way.'=>'Managing pages is very similar to managing posts, and the screens can be customised in the same way.','Pages are similar to posts in that they have a title, body text, and associated metadata, but they are different in that they are not part of the chronological blog stream, kind of like permanent posts. Pages are not categorized or tagged, but can have a hierarchy. You can nest pages under other pages by making one the “Parent” of the other, creating a group of pages.'=>'Pages are similar to posts in that they have a title, body text, and associated metadata, but they are different in that they are not part of the chronological blog stream, kind of like permanent posts. Pages are not categorised or tagged, but can have a hierarchy. You can nest pages under other pages by making one the “Parent” of the other, creating a group of pages.','Many people take advantage of keyboard shortcuts to moderate their comments more quickly. Use the link to the side to learn more.'=>'Many people take advantage of keyboard shortcuts to moderate their comments more quickly. Use the link to the side to learn more.','In the Author column, in addition to the author’s name, email address, and site URL, the commenter’s IP address is shown. Clicking on this link will show you all the comments made from this IP address.'=>'In the Author column, in addition to the author’s name, email address, and site URL, the commenter’s IP address is shown. Clicking on this link will show you all the comments made from this IP address.','You can manage comments made on your site similar to the way you manage posts and other content. This screen is customizable in the same ways as other management screens, and you can act on comments using the on-hover action links or the bulk actions.'=>'You can manage comments made on your site similar to the way you manage posts and other content. This screen is customisable in the same ways as other management screens, and you can act on comments using the on-hover action links or the bulk actions.','Links in the Toolbar at the top of the screen connect your dashboard and the front end of your site, and provide access to your profile and helpful WordPress information.'=>'Links in the toolbar at the top of the screen connect your dashboard and the front end of your site, and provide access to your profile and helpful WordPress information.','Deleting Links'=>'Deleting Links','Links may be separated into Link Categories; these are different than the categories used on your posts.'=>'Links may be separated into Link Categories; these are different than the categories used on your posts.','Learn more about WordPress %2$s.'=>'Learn more about WordPress %2$s.','Edit takes you to the editable profile screen for that user. You can also reach that screen by clicking on the username.'=>'Edit takes you to the editable profile screen for that user. You can also reach that screen by clicking on the username.','Hovering over a row in the users list will display action links that allow you to manage users. You can perform the following actions:'=>'Hovering over a row in the users list will display action links that allow you to manage users. You can perform the following actions:','You can view all posts made by a user by clicking on the number under the Posts column.'=>'You can view all posts made by a user by clicking on the number under the Posts column.','You can hide/display columns based on your needs and decide how many users to list per screen using the Screen Options tab.'=>'You can hide/display columns based on your needs and decide how many users to list per screen using the Screen Options tab.','Managing Pages'=>'Managing Pages','Preview will show you what your draft post will look like if you publish it. View will take you to your live site to view the post. Which link is available depends on your post’s status.'=>'Preview will show you what your draft post will look like if you publish it. View will take you to your live site to view the post. Which link is available depends on your post’s status.','Trash removes your post from this list and places it in the Trash, from which you can permanently delete it.'=>'Bin removes your post from this list and places it in the Bin, from which you can permanently delete it.','Quick Edit provides inline access to the metadata of your post, allowing you to update post details without leaving this screen.'=>'Quick Edit provides inline access to the metadata of your post, allowing you to update post details without leaving this screen.','Edit takes you to the editing screen for that post. You can also reach that screen by clicking on the post title.'=>'Edit takes you to the editing screen for that post. You can also reach that screen by clicking on the post title.','Because this is a multisite installation, you may add accounts that already exist on the Network by specifying a username or email, and defining a role. For more options, such as specifying a password, you have to be a Network Administrator and use the hover link under an existing user’s name to Edit the user profile under Network Admin > All Users.'=>'Because this is a multisite installation, you may add accounts that already exist on the Network by specifying a username or email, and defining a role. For more options, such as specifying a password, you have to be a Network Administrator and use the hover link under an existing user’s name to Edit the user profile under Network Admin > All Users.','Go to Dashboard → Home'=>'Go to Dashboard → Home','Go to Dashboard → Updates'=>'Go to Dashboard → Updates','Profile updated.'=>'Profile updated.','Hi, You\'ve been invited to join \'%1$s\' at %2$s with the role of %3$s. @@ -153,7 +153,7 @@ You\'ve been invited to join \'%1$s\' at %2$s with the role of %3$s. Please click the following link to confirm the invite: -%4$s','Core Developer'=>'Core Developer','No valid plugins were found.'=>'No valid plugins were found.','The plugin contains no files.'=>'The plugin contains no files.','The package could not be installed.'=>'The package could not be installed.','Attachment Post URL'=>'Attachment Post URL','admin menuAll Links'=>'All Links','%s plugins'=>'%s plugins','%s plugin'=>'%s plugin','Failed to optimize the %1$s table. Error: %2$s'=>'Failed to optimise the %1$s table. Error: %2$s','Successfully optimized the %s table.'=>'Successfully optimised the %s table.','The %s table is already optimized.'=>'The %s table is already optimised.','Successfully repaired the %s table.'=>'Successfully repaired the %s table.','The %s table is okay.'=>'The %s table is fine.','View version %s details.'=>'View version %s details.','Tumblr'=>'Tumblr','Update %2$s or learn how to browse happy'=>'Update %2$s or learn how to browse happy','Scale images to match the large size selected in %1$simage options%2$s (%3$d × %4$d).'=>'Scale images to match the large size selected in %1$simage options%2$s (%3$d × %4$d).','Audio, Video, or Other File'=>'Audio, Video, or Other File','Insert media from another website'=>'Insert media from another website','Error: Could not connect to the server. Please verify the settings are correct.'=>'Error: Could not connect to the server. Please verify the settings are correct.','Drag and Drop — To rearrange the boxes, drag and drop by clicking on the title bar of the selected box and releasing when you see a gray dotted-line rectangle appear in the location you want to place the box.'=>'Drag and Drop — To rearrange the boxes, drag and drop by clicking on the title bar of the selected box and releasing when you see a grey dotted-line rectangle appear in the location you want to place the box.','You can use the following controls to arrange your Dashboard screen to suit your workflow. This is true on most other administration screens as well.'=>'You can use the following controls to arrange your Dashboard screen to suit your workflow. This is true on most other administration screens as well.','The left-hand navigation menu provides links to all of the WordPress administration screens, with submenu items displayed on hover. You can minimize this menu to a narrow icon strip by clicking on the Collapse Menu arrow at the bottom.'=>'The left-hand navigation menu provides links to all of the WordPress administration screens, with submenu items displayed on hover. You can minimise this menu to a narrow icon strip by clicking on the Collapse Menu arrow at the bottom.','Overview'=>'Overview','Updates %s'=>'Updates %s','Installed Plugins'=>'Installed Plugins','Plugins %s'=>'Plugins %s','All Users'=>'All Users','Confirm Deletion'=>'Confirm Deletion','Role'=>'Role','Add Existing User'=>'Add Existing User','Search Users'=>'Search Users','User removed from this site.'=>'User removed from this site.','Changed roles.'=>'Changed roles.','Caution:'=>'Caution:','Add New User'=>'Add New User','User added.'=>'User added.','Super Admin'=>'Super Admin','Version %s'=>'Version %s','Update Available (%s)'=>'Update Available (%s)' . "\0" . 'Update Available (%s)','Deactivate'=>'Deactivate','Delete Site'=>'Delete Site','Settings saved.'=>'Settings saved.','For more information:'=>'For more information:','About Pages'=>'About Pages','Title and Post Editor'=>'Title and Post Editor','Customizing This Display'=>'Customising This Display','Note: Neither of these options blocks access to your site — it is up to search engines to honor your request.'=>'Note: Neither of these options blocks access to your site — it is up to search engines to honour your request.','Post name'=>'Post name','sample permalink structuresample-post'=>'sample-post','sample permalink basearchives'=>'archives','This importer is not installed. Please install importers from the main site.'=>'This importer is not installed. Please install importers from the main site.','Site Language'=>'Site Language','Attempt to notify any blogs linked to from the post'=>'Attempt to notify any blogs linked to from the post','Hi, +%4$s','Core Developer'=>'Core Developer','No valid plugins were found.'=>'No valid plugins were found.','The plugin contains no files.'=>'The plugin contains no files.','The package could not be installed.'=>'The package could not be installed.','Attachment Post URL'=>'Attachment Post URL','admin menuAll Links'=>'All Links','%s plugins'=>'%s plugins','%s plugin'=>'%s plugin','Failed to optimize the %1$s table. Error: %2$s'=>'Failed to optimise the %1$s table. Error: %2$s','Successfully optimized the %s table.'=>'Successfully optimised the %s table.','The %s table is already optimized.'=>'The %s table is already optimised.','Successfully repaired the %s table.'=>'Successfully repaired the %s table.','The %s table is okay.'=>'The %s table is fine.','View version %s details.'=>'View version %s details.','Tumblr'=>'Tumblr','Update %2$s or learn how to browse happy'=>'Update %2$s or learn how to browse happy','Scale images to match the large size selected in %1$simage options%2$s (%3$d × %4$d).'=>'Scale images to match the large size selected in %1$simage options%2$s (%3$d × %4$d).','Audio, Video, or Other File'=>'Audio, Video, or Other File','Insert media from another website'=>'Insert media from another website','Error: Could not connect to the server. Please verify the settings are correct.'=>'Error: Could not connect to the server. Please verify the settings are correct.','Drag and Drop — To rearrange the boxes, drag and drop by clicking on the title bar of the selected box and releasing when you see a gray dotted-line rectangle appear in the location you want to place the box.'=>'Drag and Drop — To rearrange the boxes, drag and drop by clicking on the title bar of the selected box and releasing when you see a grey dotted-line rectangle appear in the location you want to place the box.','You can use the following controls to arrange your Dashboard screen to suit your workflow. This is true on most other administration screens as well.'=>'You can use the following controls to arrange your Dashboard screen to suit your workflow. This is true on most other administration screens as well.','The left-hand navigation menu provides links to all of the WordPress administration screens, with submenu items displayed on hover. You can minimize this menu to a narrow icon strip by clicking on the Collapse Menu arrow at the bottom.'=>'The left-hand navigation menu provides links to all of the WordPress administration screens, with submenu items displayed on hover. You can minimise this menu to a narrow icon strip by clicking on the Collapse Menu arrow at the bottom.','Updates %s'=>'Updates %s','Installed Plugins'=>'Installed Plugins','Plugins %s'=>'Plugins %s','All Users'=>'All Users','Confirm Deletion'=>'Confirm Deletion','Role'=>'Role','Add Existing User'=>'Add Existing User','Search Users'=>'Search Users','User removed from this site.'=>'User removed from this site.','Changed roles.'=>'Changed roles.','Caution:'=>'Caution:','User added.'=>'User added.','Super Admin'=>'Super Admin','Version %s'=>'Version %s','Update Available (%s)'=>'Update Available (%s)' . "\0" . 'Update Available (%s)','Deactivate'=>'Deactivate','Delete Site'=>'Delete Site','Settings saved.'=>'Settings saved.','For more information:'=>'For more information:','About Pages'=>'About Pages','Title and Post Editor'=>'Title and Post Editor','Customizing This Display'=>'Customising This Display','Note: Neither of these options blocks access to your site — it is up to search engines to honor your request.'=>'Note: Neither of these options blocks access to your site — it is up to search engines to honour your request.','Post name'=>'Post name','sample permalink structuresample-post'=>'sample-post','sample permalink basearchives'=>'archives','This importer is not installed. Please install importers from the main site.'=>'This importer is not installed. Please install importers from the main site.','Site Language'=>'Site Language','Attempt to notify any blogs linked to from the post'=>'Attempt to notify any blogs linked to from the post','Hi, You\'ve been invited to join \'%1$s\' at %2$s with the role of %3$s. If you do not want to join this site please ignore @@ -167,8 +167,8 @@ If you do not want to join this site please ignore this email. This invitation will expire in a few days. Please click the following link to activate your user account: -%%s','Post Formats'=>'Post Formats','Full Width Template'=>'Full Width Template','Featured Images'=>'Featured Images','Featured Image Header'=>'Featured Image Header','It looks like you\'re using an old version of %s. For the best WordPress experience, please update your browser.'=>'It looks like you\'re using an old version of %s. For the best WordPress experience, please update your browser.','It looks like you\'re using an insecure version of %s. Using an outdated browser makes your computer unsafe. For the best WordPress experience, please update your browser.'=>'It looks like you\'re using an insecure version of %s. Using an outdated browser makes your computer unsafe. For the best WordPress experience, please update your browser.','There are some invalid menu items. Please check or delete them.'=>'There are some invalid menu items. Please check or delete them.','term nameName'=>'Name','meta nameName'=>'Name','theme nameName'=>'Name','You can find additional themes for your site by using the Theme Browser/Installer on this screen, which will display themes from the WordPress Theme Directory. These themes are designed and developed by third parties, are available free of charge, and are compatible with the license WordPress uses.'=>'You can find additional themes for your site by using the Theme Browser/Installer on this screen, which will display themes from the WordPress Theme Directory. These themes are designed and developed by third parties, are available free of charge, and are compatible with the licence WordPress uses.','If you would like to see more plugins to choose from, click on the “Add New Plugin” button and you will be able to browse or search for additional plugins from the WordPress Plugin Directory. Plugins in the WordPress Plugin Directory are designed and developed by third parties, and are compatible with the license WordPress uses. Oh, and they are free!'=>'If you would like to see more plugins to choose from, click on the “Add New Plugin” button and you will be able to browse or search for additional plugins from the WordPress Plugin Directory. Plugins in the WordPress Plugin Directory are designed and developed by third parties, and are compatible with the licence WordPress uses. Oh, and they are free!','The uploaded file exceeds the %s directive that was specified in the HTML form.'=>'The uploaded file exceeds the %s directive that was specified in the HTML form.','External Libraries'=>'External Libraries','Network Setup'=>'Network Setup','Available Tools'=>'Available Tools','Translate this to be the equivalent of English Translators in your language for the credits page Translators sectionTranslators'=>'UK English Translators','Every plugin and theme in WordPress.org’s directory is 100%% GPL or a similarly free and compatible license, so you can feel safe finding plugins and themes there. If you get a plugin or theme from another source, make sure to ask them if it’s GPL first. If they do not respect the WordPress license, it is not recommended to use them.'=>'Every plugin and theme in WordPress.org’s directory is 100%% GPL or a similarly free and compatible licence, so you can feel safe finding plugins and themes there. If you get a plugin or theme from another source, make sure to ask them if it’s GPL first. If they do not respect the WordPress licence, it is not recommended to use them.','WordPress grows when people like you tell their friends about it, and the thousands of businesses and services that are built on and around WordPress share that fact with their users. We are flattered every time someone spreads the good word, just make sure to check out our trademark guidelines first.'=>'WordPress grows when people like you tell their friends about it, and the thousands of businesses and services that are built on and around WordPress share that fact with their users. We are flattered every time someone spreads the good word, just make sure to check out our trademark guidelines first.','All Comments'=>'All Comments','Lead Developer'=>'Lead Developer','Cofounder, Project Lead'=>'Cofounder, Project Lead','Core Contributors to WordPress %s'=>'Core Contributors to WordPress %s','Project Leaders'=>'Project Leaders','Credits'=>'Credits','removing-widgetDeactivate'=>'Deactivate','Your browser is out of date!'=>'Your browser is out of date!','You are using an insecure browser!'=>'You are using an insecure browser!','Freedoms'=>'Freedoms','You can use one of these cool headers or show a random one on each page.'=>'You can use one of these cool headers or show a random one on each page.','If you do not want to upload your own image, you can use one of these cool headers, or show a random one.'=>'If you do not want to upload your own image, you can use one of these cool headers, or show a random one.','You can choose one of your previously uploaded headers, or show a random one.'=>'You can choose one of your previously uploaded headers, or show a random one.','Collapse menu'=>'Collapse menu','Uploaded Images'=>'Uploaded Images','Random: Show a different image on each page.'=>'Random: Show a different image on each page.','You have specified this user for deletion:'=>'You have specified this user for deletion:' . "\0" . 'You have specified these users for deletion:','%s Page Template'=>'%s Page Template','You cannot delete a plugin while it is active on the main site.'=>'You cannot delete a plugin while it is active on the main site.','This plugin may be active on other sites in the network.'=>'This plugin may be active on other sites in the network.' . "\0" . 'These plugins may be active on other sites in the network.','Default Post Format'=>'Default Post Format','Any edits to files from this screen will be reflected on all sites in the network.'=>'Any edits to files from this screen will be reflected on all sites in the network.','This screen lists all the existing users for your site. Each user has one of five defined roles as set by the site admin: Site Administrator, Editor, Author, Contributor, or Subscriber. Users with roles other than Administrator will see fewer options in the dashboard navigation when they are logged in, based on their role.'=>'This screen lists all the existing users for your site. Each user has one of five defined roles as set by the site admin: Site Administrator, Editor, Author, Contributor, or Subscriber. Users with roles other than Administrator will see fewer options in the dashboard navigation when they are logged in, based on their role.','If you want to make changes but do not want them to be overwritten when the plugin is updated, you may be ready to think about writing your own plugin. For information on how to edit plugins, write your own from scratch, or just better understand their anatomy, check out the links below.'=>'If you want to make changes but do not want them to be overwritten when the plugin is updated, you may be ready to think about writing your own plugin. For information on how to edit plugins, write your own from scratch, or just better understand their anatomy, check out the links below.','The boxes on your Dashboard screen are:'=>'The boxes on your Dashboard screen are:','sample-page'=>'sample-page','Sample Page'=>'Sample Page','Retro (Generated)'=>'Retro (Generated)','You only have one theme enabled for this site right now. Visit the Network Admin to enable more themes.'=>'You only have one theme enabled for this site right now. Visit the Network Admin to enable more themes.','You only have one theme enabled for this site right now. Visit the Network Admin to enable or install more themes.'=>'You currently have only one theme enabled for this site. Visit the Network Admin to enable or install more themes.','Super admin privileges cannot be removed because this user has the network admin email.'=>'Super admin privileges cannot be removed because this user has the network admin email.','You only have one theme installed right now. Live a little! You can choose from over 1,000 free themes in the WordPress Theme Directory at any time: just click on the Install Themes tab above.'=>'You only have one theme installed right now. Live a little! You can choose from over 1,000 free themes in the WordPress Theme Directory at any time: just click on the Install Themes tab above.','One or more database tables are unavailable. To allow WordPress to attempt to repair these tables, press the “Repair Database” button. Repairing can take a while, so please be patient.'=>'One or more database tables are unavailable. To allow WordPress to attempt to repair these tables, press the “Repair Database” button. Repairing can take a while, so please be patient.','Visual Editor RTL Stylesheet'=>'Visual Editor RTL Stylesheet','This is a file in your current parent theme.'=>'This is a file in your current parent theme.','This child theme inherits templates from a parent theme, %s.'=>'This child theme inherits templates from a parent theme, %s.','Network Enable'=>'Network Enable','Your WordPress database has been successfully updated!'=>'Your WordPress database has been successfully updated!','Update Complete'=>'Update Complete','Update WordPress Database'=>'Update WordPress Database','The database update process may take a little while, so please be patient.'=>'The database update process may take a little while, so please be patient.','Database Update Required'=>'Database Update Required','No Update Required'=>'No Update Required','WordPress › Update'=>'WordPress › Update','You are about to install WordPress %s in English (US). There is a chance this update will break your translation. You may prefer to wait for the localized version to be released.'=>'You are about to install WordPress %s in English (US). There is a chance this update will break your translation. You may prefer to wait for the localised version to be released.','There is a new version of %1$s available. View version %4$s details. Automatic update is unavailable for this plugin.'=>'There is a new version of %1$s available. View version %4$s details. Automatic update is unavailable for this plugin.','Update Theme'=>'Update Theme','Update Plugin'=>'Update Plugin','Theme updated successfully.'=>'Theme updated successfully.','Theme update failed.'=>'Theme update failed.','Plugin updated successfully.'=>'Plugin updated successfully.','Plugin update failed.'=>'Plugin update failed.','Update package not available.'=>'Update package not available.','Date range:'=>'Date range:','Authors:'=>'Authors:','This will contain all of your posts, pages, comments, custom fields, terms, navigation menus, and custom posts.'=>'This will contain all of your posts, pages, comments, custom fields, terms, navigation menus, and custom posts.','All content'=>'All content','Choose what to export'=>'Choose what to export','commentsMine (%s)'=>'Mine (%s)' . "\0" . 'Mine (%s)','%s — WordPress'=>'%s — WordPress','column nameIn Response To'=>'In Response To','The Available Widgets section contains all the widgets you can choose from. Once you drag a widget into a sidebar, it will open to allow you to configure its settings. When you are happy with the widget settings, click the Save button and the widget will go live on your site. If you click Delete, it will remove the widget.'=>'The Available Widgets section contains all the widgets you can choose from. Once you drag a widget into a sidebar, it will open to allow you to configure its settings. When you are happy with the widget settings, click the Save button and the widget will go live on your site. If you click Delete, it will remove the widget.','Remember to click Update to save metadata entered or changed.'=>'Remember to click Update to save metadata entered or changed.','Note that you crop the image by clicking on it (the Crop icon is already selected) and dragging the cropping frame to select the desired part. Then click Save to retain the cropping.'=>'Note that you crop the image by clicking on it (the Crop icon is already selected) and dragging the cropping frame to select the desired part. Then click Save to retain the cropping.','For images only, you can click on Edit Image under the thumbnail to expand out an inline image editor with icons for cropping, rotating, or flipping the image as well as for undoing and redoing. The boxes on the right give you more options for scaling the image, for cropping it, and for cropping the thumbnail in a different way than you crop the original image. You can click on Help in those boxes to get more information.'=>'For images only, you can click on Edit Image under the thumbnail to expand out an inline image editor with icons for cropping, rotating, or flipping the image as well as for undoing and redoing. The boxes on the right give you more options for scaling the image, for cropping it, and for cropping the thumbnail in a different way than you crop the original image. You can click on Help in those boxes to get more information.','This screen allows you to edit fields for metadata in a file within the media library.'=>'This screen allows you to edit fields for metadata in a file within the media library.','Email or Username'=>'Email or Username','Search installed themes'=>'Search installed themes','Please Note: Any customizations you have made to theme files will be lost. Please consider using child themes for modifications.'=>'Please Note: Any customisations you have made to theme files will be lost. Please consider using child themes for modifications.','postsSticky (%s)'=>'Sticky (%s)' . "\0" . 'Sticky (%s)','Check again.'=>'Check again.','Last checked on %1$s at %2$s.'=>'Last checked on %1$s at %2$s.','Please select one or more plugins to update.'=>'Please select one or more plugins to update.','Please select one or more themes to update.'=>'Please select one or more themes to update.','The update process is starting. This process may take a while on some hosts, so please be patient.'=>'The update process is starting. This process may take a while on some hosts, so please be patient.','Apply Filters'=>'Apply Filters','Editor Style'=>'Editor Style','Sorry, you are not allowed to edit users.'=>'Sorry, you are not allowed to edit users.','To perform the requested action, WordPress needs to access your web server.'=>'To perform the requested action, WordPress needs to access your web server.','Current Page'=>'Current Page','No themes match your request.'=>'No themes match your request.','Search Sites'=>'Search Sites','Create a New User'=>'Create a New User','You have %1$s and %2$s.'=>'You have %1$s and %2$s.','%s site'=>'%s site' . "\0" . '%s sites','%s user'=>'%s user' . "\0" . '%s users','https://wordpress.org/news/feed/'=>'https://en-gb.wordpress.org/news/feed/','https://wordpress.org/news/'=>'https://en-gb.wordpress.org/news/','(Signup has been disabled. Only members of this site can comment.)'=>'(Signup has been disabled. Only members of this site can comment.)','There is a new version of %1$s available. View version %4$s details.'=>'There is a new version of %1$s available. View version %4$s details.','Go to Themes page'=>'Go to Themes page','Go to WordPress Updates page'=>'Go to WordPress Updates page','Go to Plugins page'=>'Go to Plugins page','Click Save Menu to make pending menu items public.'=>'Click Save Menu to make pending menu items public.','Storage Space'=>'Storage Space','Create a New Site'=>'Create a New Site','Images of exactly %1$d × %2$d pixels will be used as-is.'=>'Images of exactly %1$d × %2$d pixels will be used as-is.','Crop and Publish'=>'Crop and Publish','XFN stands for XHTML Friends Network, which is optional. WordPress allows the generation of XFN attributes to show how you are related to the authors/owners of the site to which you are linking.'=>'XFN stands for XHTML Friends Network, which is optional. WordPress allows the generation of XFN attributes to show how you are related to the authors/owners of the site to which you are linking.','FTP Password'=>'FTP Password','FTP Username'=>'FTP Username','FTP/SSH Password'=>'FTP/SSH Password','FTP/SSH Username'=>'FTP/SSH Username','Many themes show some sidebar widgets by default until you edit your sidebars, but they are not automatically displayed in your sidebar management tool. After you make your first widget change, you can re-add the default widgets by adding them from the Available Widgets area.'=>'Many themes show some sidebar widgets by default until you edit your sidebars, but they are not automatically displayed in your sidebar management tool. After you make your first widget change, you can re-add the default widgets by adding them from the Available Widgets area.','You can choose what’s displayed on the homepage of your site. It can be posts in reverse chronological order (classic blog), or a fixed/static page. To set a static homepage, you first need to create two Pages. One will become the homepage, and the other will be where your posts are displayed.'=>'You can choose what’s displayed on the homepage of your site. It can be posts in reverse chronological order (classic blog), or a fixed/static page. To set a static homepage, you first need to create two Pages. One will become the homepage, and the other will be where your posts are displayed.','The Optional fields let you customize the “category” and “tag” base names that will appear in archive URLs. For example, the page listing all posts in the “Uncategorized” category could be /topics/uncategorized instead of /category/uncategorized.'=>'The Optional fields let you customise the “category” and “tag” base names that will appear in archive URLs. For example, the page listing all posts in the “Uncategorised” category could be /topics/uncategorised instead of /category/uncategorised.','When you assign multiple categories or tags to a post, only one can show up in the permalink: the lowest numbered category. This applies if your custom structure includes %1$s or %2$s.'=>'When you assign multiple categories or tags to a post, only one can show up in the permalink: the lowest numbered category. This applies if your custom structure includes %1$s or %2$s.','If you pick an option other than Plain, your general URL path with structure tags (terms surrounded by %s) will also appear in the custom structure field and your path can be further modified there.'=>'If you pick an option other than Plain, your general URL path with structure tags (terms surrounded by %s) will also appear in the custom structure field and your path can be further modified there.','If you want to remove the widget but save its setting for possible future use, just drag it into the Inactive Widgets area. You can add them back anytime from there. This is especially helpful when you switch to a theme with fewer or different widget areas.'=>'If you want to remove the widget but save its setting for possible future use, just drag it into the Inactive Widgets area. You can add them back anytime from there. This is especially helpful when you switch to a theme with fewer or different widget areas.','To add a new user for your site, click the Add New User button at the top of the screen or Add New User in the Users menu section.'=>'To add a new user for your site, click the Add New User button at the top of the screen or Add New User in the Users menu section.','You can set maximum sizes for images inserted into your written content; you can also insert an image as Full Size.'=>'You can set maximum sizes for images inserted into your written content; you can also insert an image as Full Size.','Most themes show the site title at the top of every page, in the title bar of the browser, and as the identifying name for syndicated feeds. Many themes also show the tagline.'=>'Most themes show the site title at the top of every page, in the title bar of the browser, and as the identifying name for syndicated feeds. Many themes also show the tagline.','Order — Pages are usually ordered alphabetically, but you can choose your own order by entering a number (1 for first, etc.) in this field.'=>'Order — Pages are usually ordered alphabetically, but you can choose your own order by entering a number (1 for first, etc.) in this field.','If you do not remember your credentials, you should contact your web host.'=>'If you do not remember your credentials, you should contact your web host.','Please enter your FTP credentials to proceed.'=>'Please enter your FTP credentials to proceed.','Please enter your FTP or SSH credentials to proceed.'=>'Please enter your FTP or SSH credentials to proceed.','Your profile contains information about you (your “account”) as well as some personal options related to using WordPress.'=>'Your profile contains information about you (your “account”) as well as some personal options related to using WordPress.','You can Upload a theme manually if you have already downloaded its ZIP archive onto your computer (make sure it is from a trusted and original source). You can also do it the old-fashioned way and copy a downloaded theme’s folder via FTP into your %s directory.'=>'You can Upload a theme manually if you have already downloaded its zip archive onto your computer (make sure it is from a trusted and original source). You can also do it the old-fashioned way and copy a downloaded theme’s folder via FTP into your %s directory.','Send Trackbacks — Trackbacks are a way to notify legacy blog systems that you’ve linked to them. Enter the URL(s) you want to send trackbacks. If you link to other WordPress sites they’ll be notified automatically using pingbacks, and this field is unnecessary.'=>'Send Trackbacks — Trackbacks are a way to notify legacy blog systems that you’ve linked to them. Enter the URL(s) you want to send trackbacks. If you link to other WordPress sites they’ll be notified automatically using pingbacks, and this field is unnecessary.','Contributors can write and manage their posts but not publish posts or upload media files.'=>'Contributors can write and manage their posts but not publish posts or upload media files.','Administrators have access to all the administration features.'=>'Administrators have access to all the administration features.','You can use the plugin file editor to make changes to any of your plugins’ individual PHP files. Be aware that if you make changes, plugins updates will overwrite your customizations.'=>'You can use the plugin file editor to make changes to any of your plugins’ individual PHP files. Be aware that if you make changes, plugins updates will overwrite your customisations.','If you delete a link, it will be removed permanently, as Links do not have a Trash function yet.'=>'If you delete a link, it will be removed permanently, as Links do not have a Rubbish Bin function yet.','You can add links here to be displayed on your site, usually using Widgets. By default, links to several sites in the WordPress community are included as examples.'=>'You can add links here to be displayed on your site, usually using Widgets. By default, links to several sites in the WordPress community are included as examples.','Slug — The “slug” is the URL-friendly version of the name. It is usually all lowercase and contains only letters, numbers, and hyphens.'=>'Slug — The “slug” is the URL-friendly version of the name. It is usually all lowercase and contains only letters, numbers, and hyphens.','You can also create posts with the Press This bookmarklet.'=>'You can also create posts with the Press This bookmarklet.','Do not forget to click on the Save Changes button when you are finished.'=>'Do not forget to click on the Save Changes button when you are finished.','You can customize the look of your site without touching any of your theme’s code by using a custom background. Your background can be an image or a color.'=>'You can customise the look of your site without touching any of your theme’s code by using a custom background. Your background can be an image or a colour.','Editors can publish posts, manage posts as well as manage other people’s posts, etc.'=>'Editors can publish posts, manage posts as well as manage other people’s posts, etc.','Remember to click the Update Profile button when you are finished.'=>'Remember to click the Update Profile button when you are finished.','Required fields are indicated; the rest are optional. Profile information will only be displayed if your theme is set up to do so.'=>'Required fields are indicated; the rest are optional. Profile information will only be displayed if your theme is set up to do so.','Your username cannot be changed, but you can use other fields to enter your real name or a nickname, and change which name to display on your posts.'=>'Your username cannot be changed, but you can use other fields to enter your real name or a nickname, and change which name to display on your posts.','You can also moderate the comment from this screen using the Status box, where you can also change the timestamp of the comment.'=>'You can also moderate the comment from this screen using the Status box, where you can also change the timestamp of the comment.','You can edit the information left in a comment if needed. This is often useful when you notice that a commenter has made a typographical error.'=>'You can edit the information left in a comment if needed. This is often useful when you notice that a commenter has made a typographical error.','You can also control the display of your content in RSS feeds, including the maximum number of posts to display and whether to show full text or an excerpt. Learn more about feeds.'=>'You can also control the display of your content in RSS feeds, including the maximum number of posts to display and whether to show full text or an excerpt. Learn more about feeds.','This screen contains the settings that affect the display of your content.'=>'This screen contains the settings that affect the display of your content.','UTC means Coordinated Universal Time.'=>'UTC is the same as Greenwich Mean Time (GMT).','The fields on this screen determine some of the basics of your site setup.'=>'The fields on this screen determine some of the basics of your site setup.','You must click the Save Changes button at the bottom of the screen for new settings to take effect.'=>'You must click the Save Changes button at the bottom of the screen for new settings to take effect.','The boxes for link name, web address, and description have fixed positions, while the others may be repositioned using drag and drop. You can also hide boxes you do not use in the Screen Options tab, or minimize boxes by clicking on the title bar of the box.'=>'The boxes for link name, web address, and description have fixed positions, while the others may be repositioned using drag and drop. You can also hide boxes you do not use in the Screen Options tab, or minimise boxes by clicking on the title bar of the box.','Your themes are all up to date.'=>'Your themes are all up to date.','Your plugins are all up to date.'=>'Your plugins are all up to date.','While your site is being updated, it will be in maintenance mode. As soon as your updates are complete, this mode will be deactivated.'=>'While your site is being updated, it will be in maintenance mode. As soon as your updates are complete, this mode will be deactivated.','An updated version of WordPress is available.'=>'An updated version of WordPress is available.','You have the latest version of WordPress.'=>'You have the latest version of WordPress.','Function Name…'=>'Function Name…','Activate Plugin & Run Importer'=>'Activate Plugin & Run Importer','You can add or edit links on this screen by entering information in each of the boxes. Only the link’s web address and name (the text you want to display on your site as the link) are required fields.'=>'You can add or edit links on this screen by entering information in each of the boxes. Only the link’s web address and name (the text you want to display on your site as the link) are required fields.','Categories can be selectively converted to tags using the category to tag converter.'=>'Categories can be selectively converted to tags using the category to tag converter.','This screen lists links to plugins to import data from blogging/content management platforms. Choose the platform you want to import from, and click Install Now when you are prompted in the popup window. If your platform is not listed, click the link to search the plugin directory for other importer plugins to see if there is one for your platform.'=>'This screen lists links to plugins to import data from blogging/content management platforms. Choose the platform you want to import from, and click Install Now when you are prompted in the popup window. If your platform is not listed, click the link to search the plugin directory for other importer plugins to see if there is one for your platform.','Once generated, your WXR file can be imported by another WordPress site or by another blogging platform able to access this format.'=>'Once generated, your WXR file can be imported by another WordPress site or by another blogging platform able to access this format.','Choose a plugin to edit from the dropdown menu and click the Select button. Click once on any file name to load it in the editor, and make your changes. Do not forget to save your changes (Update File) when you are finished.'=>'Choose a plugin to edit from the dropdown menu and click the Select button. Click once on any file name to load it in the editor, and make your changes. Do not forget to save your changes (Update File) when you are finished.','You can customize the display of this screen using the Screen Options tab and/or the dropdown filters above the links table.'=>'You can customise the display of this screen using the Screen Options tab and/or the dropdown filters above the links table.','Most of the time, plugins play nicely with the core of WordPress and with other plugins. Sometimes, though, a plugin’s code will get in the way of another plugin, causing compatibility issues. If your site starts doing strange things, this may be the problem. Try deactivating all your plugins and re-activating them in various combinations until you isolate which one(s) caused the issue.'=>'Most of the time, plugins play nicely with the core of WordPress and with other plugins. Sometimes, though, a plugin’s code will get in the way of another plugin, causing compatibility issues. If your site starts doing strange things, this may be the problem. Try deactivating all your plugins and re-activating them in various combinations until you isolate which one(s) caused the issue.','Enabling Accessibility Mode, via Screen Options, allows you to use Add and Edit buttons instead of using drag and drop.'=>'Enabling Accessibility Mode, via Screen Options, allows you to use Add and Edit buttons instead of using drag and drop.','Widgets may be used multiple times. You can give each widget a title, to display on your site, but it’s not required.'=>'Widgets may be used multiple times. You can give each widget a title, to display on your site, but it’s not required.','Widgets are independent sections of content that can be placed into any widgetized area provided by your theme (commonly called sidebars). To populate your sidebars/widget areas with individual widgets, drag and drop the title bars into the desired area. By default, only the first widget area is expanded. To populate additional widget areas, click on their title bars to expand them.'=>'Widgets are independent sections of content that can be placed into any widgetised area provided by your theme (commonly called sidebars). To populate your sidebars/widget areas with individual widgets, drag and drop the title bars into the desired area. By default, only the first widget area is expanded. To populate additional widget areas, click on their title bars to expand them.','Advice: Think very carefully about your site crashing if you are live-editing the theme currently in use.'=>'Advice: Think very carefully about your site crashing if you are live-editing the theme currently in use.','After typing in your edits, click Update File.'=>'After typing in your edits, click Update File.','Begin by choosing a theme to edit from the dropdown menu and clicking the Select button. A list then appears of the theme’s template files. Clicking once on any file name causes the file to appear in the large Editor box.'=>'Begin by choosing a theme to edit from the dropdown menu and clicking the Select button. A list then appears of the theme’s template files. Clicking once on any file name causes the file to appear in the large Editor box.','You can use the theme file editor to edit the individual CSS and PHP files which make up your theme.'=>'You can use the theme file editor to edit the individual CSS and PHP files which make up your theme.','(no parent)'=>'(no parent)','Template — Some themes have custom templates you can use for certain pages that might have additional features or custom layouts. If so, you’ll see them in this dropdown menu.'=>'Template — Some themes have custom templates you can use for certain pages that might have additional features or custom layouts. If so, you’ll see them in this dropdown menu.','Parent — You can arrange your pages in hierarchies. For example, you could have an “About” page that has “Life Story” and “My Dog” pages under it. There are no limits to how many levels you can nest pages.'=>'Parent — You can arrange your pages in hierarchies. For example, you could have an “About” page that has “Life Story” and “My Dog” pages under it. There are no limits to how many levels you can nest pages.','All updates have been completed.'=>'All updates have been completed.','You can change the display of this screen using the Screen Options tab to set how many items are displayed per screen and to display/hide columns in the table.'=>'You can change the display of this screen using the Screen Options tab to set how many items are displayed per screen and to display/hide columns in the table.','Description — The description is not prominent by default; however, some themes may display it.'=>'Description — The description is not prominent by default; however, some themes may display it.','Name — The name is how it appears on your site.'=>'Name — The name is how it appears on your site.','When adding a new tag on this screen, you’ll fill in the following fields:'=>'When adding a new tag on this screen, you’ll fill in the following fields:','When adding a new category on this screen, you’ll fill in the following fields:'=>'When adding a new category on this screen, you’ll fill in the following fields:','What’s the difference between categories and tags? Normally, tags are ad-hoc keywords that identify important information in your post (names, subjects, etc) that may or may not recur in other posts, while categories are pre-determined sections. If you think of your site like a book, the categories are like the Table of Contents and the tags are like the terms in the index.'=>'What’s the difference between categories and tags? Normally, tags are ad-hoc keywords that identify important information in your post (names, subjects, etc) that may or may not recur in other posts, while categories are pre-determined sections. If you think of your site like a book, the categories are like the Table of Contents and the tags are like the terms in the index.','You can use categories to define sections of your site and group related posts. The default category is “Uncategorized” until you change it in your writing settings.'=>'You can use categories to define sections of your site and group related posts. The default category is “Uncategorised” until you change it in your writing settings.','You need JavaScript to choose a part of the image.'=>'You need JavaScript to choose a part of the image.','Crop Header Image'=>'Crop Header Image','Image Upload Error'=>'Image Upload Error','Text Color'=>'Text Colour','Restore Original Header Image'=>'Restore Original Header Image','This will restore the original header image. You will not be able to restore any customizations.'=>'This will restore the original header image. You will not be able to restore any customisations.','Reset Image'=>'Reset Image','Remove Header Image'=>'Remove Header Image','This will remove the header image. You will not be able to restore any customizations.'=>'This will remove the header image. You will not be able to restore any customisations.','Default Images'=>'Default Images','Delete this comment permanently'=>'Delete this comment permanently','Restore this comment from the Trash'=>'Restore this comment from the Bin','Allow comments'=>'Allow comments','Discussion — You can turn comments and pings on or off, and if there are comments on the post, you can see them here and moderate them.'=>'Discussion — You can turn comments and pings on or off, and if there are comments on the post, you can see them here and moderate them.','%s — This allows you to associate an image with your post without inserting it. This is usually useful only if your theme makes use of the image as a post thumbnail on the home page, a custom header, etc.'=>'%s — This allows you to associate an image with your post without inserting it. This is usually useful only if your theme makes use of the image as a post thumbnail on the home page, a custom header, etc.','Title — Enter a title for your post. After you enter a title, you’ll see the permalink below, which you can edit.'=>'Title — Enter a title for your post. After you enter a title, you’ll see the permalink below, which you can edit.','Hovering over a row in the posts list will display action links that allow you to manage your post. You can perform the following actions:'=>'Hovering over a row in the posts list will display action links that allow you to manage your post. You can perform the following actions:','You can refine the list to show only posts in a specific category or from a specific month by using the dropdown menus above the posts list. Click the Filter button after making your selection. You also can refine the list by clicking on the post author, category or tag in the posts list.'=>'You can refine the list to show only posts in a specific category or from a specific month by using the dropdown menus above the posts list. Click the Filter button after making your selection. You also can refine the list by clicking on the post author, category or tag in the posts list.','You can hide/display columns based on your needs and decide how many posts to list per screen using the Screen Options tab.'=>'You can hide/display columns based on your needs and decide how many posts to list per screen using the Screen Options tab.','You can customize the display of this screen in a number of ways:'=>'You can customise the display of this screen in a number of ways:','Search installed plugins'=>'Search installed plugins','Your theme supports one menu. Select which menu you would like to use.'=>'Your theme supports %s menu. Select which menu appears in each location.' . "\0" . 'Your theme supports %s menus. Select which menu appears in each location.','Your theme does not support navigation menus or widgets.'=>'Your theme does not support navigation menus or widgets.','Categories and Tags Converter'=>'Categories and Tags Converter','Most Recent'=>'Most Recent','Start date:'=>'Start date:','Theme InstallerTag'=>'Tag','Plugin InstallerTag'=>'Tag','verbClear'=>'Clear','commentMark as spam'=>'Mark as spam','Remove Background Image'=>'Remove Background Image','Comments on “%s”'=>'Comments on “%s”','Show advanced menu properties'=>'Show advanced menu properties','You have version %1$s installed. Update to %2$s.'=>'You have version %1$s installed. Update to %2$s.','Enabled'=>'Enabled','commentNot Spam'=>'Not Spam','This will restore the original background image. You will not be able to restore any customizations.'=>'This will restore the original background image. You will not be able to restore any customisations.','WordPress Blog'=>'WordPress Blog','Remove Users from Site'=>'Remove Users from Site','— No role for this site —'=>'— No role for this site —','New WordPress Site'=>'New WordPress Site','My Site'=>'My Site','Sorry, you are not allowed to create posts or drafts on this site.'=>'Sorry, you are not allowed to create posts or drafts on this site.','Sorry, you are not allowed to create pages on this site.'=>'Sorry, you are not allowed to create pages on this site.','Custom site suspended message.'=>'Custom site suspended message.','Custom site inactive message.'=>'Custom site inactive message.','Custom site deleted message.'=>'Custom site deleted message.','If you have posts or comments in another system, WordPress can import those into this site. To get started, choose a system to import from below:'=>'If you have posts or comments in another system, WordPress can import those into this site. To get started, choose a system to import from below:','No items.'=>'No items.','To use a subdomain configuration, you must have a wildcard entry in your DNS. This usually means adding a %s hostname record pointing at your web server in your DNS configuration tool.'=>'To use a subdomain configuration, you must have a wildcard entry in your DNS. This usually means adding a %s hostname record pointing at your web server in your DNS configuration tool.','The installer attempted to contact a random hostname (%s) on your domain.'=>'The installer attempted to contact a random hostname (%s) on your domain.','The menu item has been successfully deleted.'=>'The menu item has been successfully deleted.','Please provide a custom field name.'=>'Please provide a custom field name.','Display Options'=>'Display Options','Remove Image'=>'Remove Image','Other users have been removed.'=>'Other users have been removed.','You cannot remove the current user.'=>'You cannot remove the current user.','There are no valid users selected for removal.'=>'There are no valid users selected for removal.','Confirm Removal'=>'Confirm Removal','You have specified these users for removal:'=>'You have specified these users for removal:','User deletion is not allowed from this screen.'=>'User deletion is not allowed from this screen.','%s updated successfully.'=>'%s updated successfully.','No thanks, do not remind me again'=>'No thanks, do not remind me again','Yes, take me to my profile page'=>'Yes, take me to my profile page','Your chosen password.'=>'Your chosen password.','Sorry, you are not allowed to restore this item from the Trash.'=>'Sorry, you are not allowed to restore this item from the Bin.','Sorry, you are not allowed to move this item to the Trash.'=>'Sorry, you are not allowed to move this item to the Bin.','%s comment restored from the Trash.'=>'%s comment restored from the Bin.' . "\0" . '%s comments restored from the Bin.','%s comment moved to the Trash.'=>'%s comment moved to the Bin.' . "\0" . '%s comments moved to the Bin.','The following themes have new versions available. Check the ones you want to update and then click “Update Themes”.'=>'The following themes have new versions available. Check the ones you want to update and then click “Update Themes”.','That user is already a member of this site.'=>'That user is already a member of this site.','User has been added to your site.'=>'User has been added to your site.','Invitation email sent to user. A confirmation link must be clicked for them to be added to your site.'=>'Invitation email sent to user. A confirmation link must be clicked for them to be added to your site.','The following plugins have new versions available. Check the ones you want to update and then click “Update Plugins”.'=>'The following plugins have new versions available. Check the ones you want to update and then click “Update Plugins”.','This will remove the background image. You will not be able to restore any customizations.'=>'This will remove the background image. You will not be able to restore any customisations.','Only the active theme is available to you. Contact the %s administrator for information about accessing additional themes.'=>'Only the active theme is available to you. Contact the %s administrator for information about accessing additional themes.','Tag Template'=>'Tag Template','Author Template'=>'Author Template','Visual Editor Stylesheet'=>'Visual Editor Stylesheet','Page saved.'=>'Page saved.','More information about %s'=>'More information about %s','Grant this user super admin privileges for the Network.'=>'Grant this user super admin privileges for the Network.','This user has super admin privileges.'=>'This user has super admin privileges.','Important:'=>'Important:','Update to version %s'=>'Update to version %s','Error: "Table Prefix" can only contain numbers, letters, and underscores.'=>'Error: "Table Prefix" can only contain numbers, letters, and underscores.','Usernames cannot be changed.'=>'Usernames cannot be changed.','items'=>'items','The menu has been successfully deleted.'=>'The menu has been successfully deleted.','Site visibility'=>'Site visibility','CSS Classes (optional)'=>'CSS Classes (optional)','Link Target'=>'Link Target','Save Menu'=>'Save Menu','Updating Theme %1$s (%2$d/%3$d)'=>'Updating Theme %1$s (%2$d/%3$d)','You can still use your site but any subdomain you create may not be accessible. If you know your DNS is correct, ignore this message.'=>'You can still use your site but any subdomain you create may not be accessible. If you know your DNS is correct, ignore this message.','This resulted in an error message: %s'=>'This resulted in an error message: %s','You must provide a valid email address.'=>'You must provide a valid email address.','The network already exists.'=>'The network already exists.','You must provide a name for your network of sites.'=>'You must provide a name for your network of sites.','You must provide a domain name.'=>'You must provide a domain name.','Notice:'=>'Notice:','Get Shortlink'=>'Get Shortlink','The update of %s failed.'=>'The update of %s failed.','Updating Plugin %1$s (%2$d/%3$d)'=>'Updating Plugin %1$s (%2$d/%3$d)','The password you chose during installation.'=>'The password you chose during installation.','User already exists. Password inherited.'=>'User already exists. Password inherited.','WordPress updated successfully.'=>'WordPress updated successfully.','Update WordPress'=>'Update WordPress','Update Plugins'=>'Update Plugins','You cannot update because WordPress %2$s requires PHP version %3$s or higher and MySQL version %4$s or higher. You are running PHP version %5$s and MySQL version %6$s.'=>'You cannot update because WordPress %2$s requires PHP version %3$s or higher and MySQL version %4$s or higher. You are running PHP version %5$s and MySQL version %6$s.','WordPress Updates'=>'WordPress Updates','Edit menu item'=>'Edit menu item','Go to Dashboard'=>'Go to Dashboard','Drop-in (%s)'=>'Drop-in (%s)' . "\0" . 'Drop-ins (%s)','Must-Use (%s)'=>'Must-Use (%s)' . "\0" . 'Must-Use (%s)','Inactive:'=>'Inactive:','Yes, delete these files and data'=>'Yes, delete these files and data','Are you sure you want to delete these files and data?'=>'Are you sure you want to delete these files and data?','You are about to remove the following plugin:'=>'You are about to remove the following plugin:' . "\0" . 'You are about to remove the following plugins:','Delete Plugin'=>'Delete Plugin' . "\0" . 'Delete Plugins','This timezone does not observe daylight saving time.'=>'This timezone does not observe daylight saving time.','This timezone is currently in daylight saving time.'=>'This timezone is currently in daylight saving time.','This address is used for admin purposes. If you change this, an email will be sent to your new address to confirm it. The new address will not become active until confirmed.'=>'This address is used for admin purposes. If you change this, an email will be sent to your new address to confirm it. The new address will not become active until confirmed.','View All'=>'View All','Please enter a valid menu name.'=>'Please enter a valid menu name.','You cannot install because WordPress %2$s requires PHP version %3$s or higher and MySQL version %4$s or higher. You are running PHP version %5$s and MySQL version %6$s.'=>'You cannot install because WordPress %2$s requires PHP version %3$s or higher and MySQL version %4$s or higher. You are running PHP version %5$s and MySQL version %6$s.','Executed before Multisite is loaded.'=>'Executed before Multisite is loaded.','External object cache.'=>'External object cache.','Custom maintenance message.'=>'Custom maintenance message.','Custom database error message.'=>'Custom database error message.','Custom database class.'=>'Custom database class.','Advanced caching plugin.'=>'Advanced caching plugin.','File is empty. Please upload something more substantial.'=>'File is empty. Please upload something more substantial.','This comment is already marked as spam.'=>'This comment is already marked as spam.','View Trash'=>'View Bin','This comment is already in the Trash.'=>'This comment is already in the Bin.','This comment is already approved.'=>'This comment is already approved.','This comment is currently in the Trash.'=>'This comment is currently in the Bin.','This comment is currently marked as spam.'=>'This comment is currently marked as spam.','This comment is currently approved.'=>'This comment is currently approved.','Moderate Comment'=>'Moderate Comment','Categories:'=>'Categories:','Drag widgets here to remove them from the sidebar but keep their settings.'=>'Drag widgets here to remove them from the sidebar but keep their settings.','Available Widgets'=>'Available Widgets','Error in displaying the widget settings form.'=>'Error in displaying the widget settings form.','Error while saving.'=>'Error while saving.','Changes saved.'=>'Changes saved.','Save Widget'=>'Save Widget','Select both the sidebar for this widget and the position of the widget in that sidebar.'=>'Select both the sidebar for this widget and the position of the widget in that sidebar.','Widget %s'=>'Widget %s','Inactive Widgets'=>'Inactive Widgets','Change role to…'=>'Change role to…','%1$s (%2$s)'=>'%1$s (%2$s)','Other users have been deleted.'=>'Other users have been deleted.','You cannot delete the current user.'=>'You cannot delete the current user.','Other user roles have been changed.'=>'Other user roles have been changed.','The current user’s role must have user editing capabilities.'=>'The current user’s role must have user editing capabilities.','New user created.'=>'New user created.','There are no valid users selected for deletion.'=>'There are no valid users selected for deletion.','Delete Users'=>'Delete Users','Skip Confirmation Email'=>'Skip Confirmation Email','Invitation email sent to new user. A confirmation link must be clicked before their account is created.'=>'Invitation email sent to new user. A confirmation link must be clicked before their account is created.','[%s] Joining Confirmation'=>'[%s] Joining Confirmation','Update User'=>'Update User','Update Profile'=>'Update Profile','Additional Capabilities'=>'Additional Capabilities','Type your new password again.'=>'Type your new password again.','New Password'=>'New Password','Share a little biographical information to fill out your profile. This may be shown publicly.'=>'Share a little biographical information to fill out your profile. This may be shown publicly.','Biographical Info'=>'Biographical Info','About the user'=>'About the user','About Yourself'=>'About Yourself','Contact Info'=>'Contact Info','Display name publicly as'=>'Display name publicly as','Nickname'=>'Nickname','Last Name'=>'Last Name','First Name'=>'First Name','Enable keyboard shortcuts for comment moderation.'=>'Enable keyboard shortcuts for comment moderation.','Admin Color Scheme'=>'Admin Colour Scheme','Disable the visual editor when writing'=>'Disable the visual editor when writing','Visual Editor'=>'Visual Editor','Personal Options'=>'Personal Options','User updated.'=>'User updated.','Always use https when visiting the admin'=>'Always use https when visiting the admin','Use https'=>'Use https','Edit user'=>'Edit user','Media file restored from the Trash.'=>'Media file restored from the Bin.','Media file moved to the Trash.'=>'Media file moved to the Bin.','Media file permanently deleted.'=>'Media file permanently deleted.','Sorry, you are not allowed to delete these items.'=>'Sorry, you are not allowed to delete these items.','Your WordPress database is already up to date!'=>'Your WordPress database is already up to date!','Installing theme from uploaded file: %s'=>'Installing theme from uploaded file: %s','Upload Theme'=>'Upload Theme','Installing Theme: %s'=>'Installing Theme: %s','Installing plugin from uploaded file: %s'=>'Installing plugin from uploaded file: %s','Upload Plugin'=>'Upload Plugin','Installing Plugin: %s'=>'Installing Plugin: %s','Plugin failed to reactivate due to a fatal error.'=>'Plugin failed to reactivate due to a fatal error.','Plugin reactivated successfully.'=>'Plugin reactivated successfully.','Plugin Reactivation'=>'Plugin Reactivation','Installation failed.'=>'Installation failed.','Compatibility with WordPress %s: Unknown'=>'Compatibility with WordPress %s: unknown','Compatibility with WordPress %s: 100%% (according to its author)'=>'Compatibility with WordPress %s: 100%% (according to its author)','Hide hidden updates'=>'Hide hidden updates','Show hidden updates'=>'Show hidden updates','Bring back this update'=>'Bring back this update','Hide this update'=>'Hide this update','Broken Themes'=>'Broken Themes','You are about to delete this theme \'%s\' +%%s','Post Formats'=>'Post Formats','Full Width Template'=>'Full Width Template','Featured Images'=>'Featured Images','Featured Image Header'=>'Featured Image Header','It looks like you\'re using an old version of %s. For the best WordPress experience, please update your browser.'=>'It looks like you\'re using an old version of %s. For the best WordPress experience, please update your browser.','It looks like you\'re using an insecure version of %s. Using an outdated browser makes your computer unsafe. For the best WordPress experience, please update your browser.'=>'It looks like you\'re using an insecure version of %s. Using an outdated browser makes your computer unsafe. For the best WordPress experience, please update your browser.','There are some invalid menu items. Please check or delete them.'=>'There are some invalid menu items. Please check or delete them.','term nameName'=>'Name','meta nameName'=>'Name','theme nameName'=>'Name','You can find additional themes for your site by using the Theme Browser/Installer on this screen, which will display themes from the WordPress Theme Directory. These themes are designed and developed by third parties, are available free of charge, and are compatible with the license WordPress uses.'=>'You can find additional themes for your site by using the Theme Browser/Installer on this screen, which will display themes from the WordPress Theme Directory. These themes are designed and developed by third parties, are available free of charge, and are compatible with the licence WordPress uses.','If you would like to see more plugins to choose from, click on the “Add Plugin” button and you will be able to browse or search for additional plugins from the WordPress Plugin Directory. Plugins in the WordPress Plugin Directory are designed and developed by third parties, and are compatible with the license WordPress uses. Oh, and they are free!'=>'If you would like to see more plugins to choose from, click on the “Add Plugin” button and you will be able to browse or search for additional plugins from the WordPress Plugin Directory. Plugins in the WordPress Plugin Directory are designed and developed by third parties, and are compatible with the licence WordPress uses. Oh, and they are free!','The uploaded file exceeds the %s directive that was specified in the HTML form.'=>'The uploaded file exceeds the %s directive that was specified in the HTML form.','External Libraries'=>'External Libraries','Network Setup'=>'Network Setup','Available Tools'=>'Available Tools','Translate this to be the equivalent of English Translators in your language for the credits page Translators sectionTranslators'=>'UK English Translators','Every plugin and theme in WordPress.org’s directory is 100%% GPL or a similarly free and compatible license, so you can feel safe finding plugins and themes there. If you get a plugin or theme from another source, make sure to ask them if it’s GPL first. If they do not respect the WordPress license, it is not recommended to use them.'=>'Every plugin and theme in WordPress.org’s directory is 100%% GPL or a similarly free and compatible licence, so you can feel safe finding plugins and themes there. If you get a plugin or theme from another source, make sure to ask them if it’s GPL first. If they do not respect the WordPress licence, it is not recommended to use them.','WordPress grows when people like you tell their friends about it, and the thousands of businesses and services that are built on and around WordPress share that fact with their users. The WordPress community is flattered every time someone spreads the good word, just make sure to check out the WordPress Foundation trademark guidelines first.'=>'WordPress grows when people like you tell their friends about it, and the thousands of businesses and services that are built on and around WordPress share that fact with their users. The WordPress community is flattered every time someone spreads the good word, just make sure to check out the WordPress Foundation trademark guidelines first.','All Comments'=>'All Comments','Lead Developer'=>'Lead Developer','Cofounder, Project Lead'=>'Cofounder, Project Lead','Core Contributors to WordPress %s'=>'Core Contributors to WordPress %s','Project Leaders'=>'Project Leaders','Credits'=>'Credits','removing-widgetDeactivate'=>'Deactivate','Your browser is out of date!'=>'Your browser is out of date!','You are using an insecure browser!'=>'You are using an insecure browser!','Freedoms'=>'Freedoms','You can use one of these cool headers or show a random one on each page.'=>'You can use one of these cool headers or show a random one on each page.','If you do not want to upload your own image, you can use one of these cool headers, or show a random one.'=>'If you do not want to upload your own image, you can use one of these cool headers, or show a random one.','You can choose one of your previously uploaded headers, or show a random one.'=>'You can choose one of your previously uploaded headers, or show a random one.','Collapse Menu'=>'Collapse Menu','Uploaded Images'=>'Uploaded Images','Random: Show a different image on each page.'=>'Random: Show a different image on each page.','You have specified this user for deletion:'=>'You have specified this user for deletion:' . "\0" . 'You have specified these users for deletion:','%s Page Template'=>'%s Page Template','You cannot delete a plugin while it is active on the main site.'=>'You cannot delete a plugin while it is active on the main site.','This plugin may be active on other sites in the network.'=>'This plugin may be active on other sites in the network.' . "\0" . 'These plugins may be active on other sites in the network.','Default Post Format'=>'Default Post Format','Any edits to files from this screen will be reflected on all sites in the network.'=>'Any edits to files from this screen will be reflected on all sites in the network.','This screen lists all the existing users for your site. Each user has one of five defined roles as set by the site admin: Site Administrator, Editor, Author, Contributor, or Subscriber. Users with roles other than Administrator will see fewer options in the dashboard navigation when they are logged in, based on their role.'=>'This screen lists all the existing users for your site. Each user has one of five defined roles as set by the site admin: Site Administrator, Editor, Author, Contributor, or Subscriber. Users with roles other than Administrator will see fewer options in the dashboard navigation when they are logged in, based on their role.','If you want to make changes but do not want them to be overwritten when the plugin is updated, you may be ready to think about writing your own plugin. For information on how to edit plugins, write your own from scratch, or just better understand their anatomy, check out the links below.'=>'If you want to make changes but do not want them to be overwritten when the plugin is updated, you may be ready to think about writing your own plugin. For information on how to edit plugins, write your own from scratch, or just better understand their anatomy, check out the links below.','The boxes on your Dashboard screen are:'=>'The boxes on your Dashboard screen are:','sample-page'=>'sample-page','Sample Page'=>'Sample Page','Retro (Generated)'=>'Retro (Generated)','You only have one theme enabled for this site right now. Visit the Network Admin to enable more themes.'=>'You only have one theme enabled for this site right now. Visit the Network Admin to enable more themes.','You only have one theme enabled for this site right now. Visit the Network Admin to enable or install more themes.'=>'You currently have only one theme enabled for this site. Visit the Network Admin to enable or install more themes.','Super admin privileges cannot be removed because this user has the network admin email.'=>'Super admin privileges cannot be removed because this user has the network admin email.','You only have one theme installed right now. Live a little! You can choose from over 1,000 free themes in the WordPress Theme Directory at any time: just click on the Install Themes tab above.'=>'You only have one theme installed right now. Live a little! You can choose from over 1,000 free themes in the WordPress Theme Directory at any time: just click on the Install Themes tab above.','One or more database tables are unavailable. To allow WordPress to attempt to repair these tables, press the “Repair Database” button. Repairing can take a while, so please be patient.'=>'One or more database tables are unavailable. To allow WordPress to attempt to repair these tables, press the “Repair Database” button. Repairing can take a while, so please be patient.','Visual Editor RTL Stylesheet'=>'Visual Editor RTL Stylesheet','This is a file in your current parent theme.'=>'This is a file in your current parent theme.','This child theme inherits templates from a parent theme, %s.'=>'This child theme inherits templates from a parent theme, %s.','Network Enable'=>'Network Enable','Your WordPress database has been successfully updated!'=>'Your WordPress database has been successfully updated!','Update Complete'=>'Update Complete','Update WordPress Database'=>'Update WordPress Database','The database update process may take a little while, so please be patient.'=>'The database update process may take a little while, so please be patient.','Database Update Required'=>'Database Update Required','No Update Required'=>'No Update Required','WordPress › Update'=>'WordPress › Update','You are about to install WordPress %s in English (US). There is a chance this update will break your translation. You may prefer to wait for the localized version to be released.'=>'You are about to install WordPress %s in English (US). There is a chance this update will break your translation. You may prefer to wait for the localised version to be released.','There is a new version of %1$s available. View version %4$s details. Automatic update is unavailable for this plugin.'=>'There is a new version of %1$s available. View version %4$s details. Automatic update is unavailable for this plugin.','Update Theme'=>'Update Theme','Update Plugin'=>'Update Plugin','Theme updated successfully.'=>'Theme updated successfully.','Theme update failed.'=>'Theme update failed.','Plugin updated successfully.'=>'Plugin updated successfully.','Plugin update failed.'=>'Plugin update failed.','Update package not available.'=>'Update package not available.','Date range:'=>'Date range:','Authors:'=>'Authors:','This will contain all of your posts, pages, comments, custom fields, terms, navigation menus, and custom posts.'=>'This will contain all of your posts, pages, comments, custom fields, terms, navigation menus, and custom posts.','All content'=>'All content','Choose what to export'=>'Choose what to export','commentsMine (%s)'=>'Mine (%s)' . "\0" . 'Mine (%s)','%s — WordPress'=>'%s — WordPress','column nameIn Response To'=>'In Response To','The Available Widgets section contains all the widgets you can choose from. Once you drag a widget into a sidebar, it will open to allow you to configure its settings. When you are happy with the widget settings, click the Save button and the widget will go live on your site. If you click Delete, it will remove the widget.'=>'The Available Widgets section contains all the widgets you can choose from. Once you drag a widget into a sidebar, it will open to allow you to configure its settings. When you are happy with the widget settings, click the Save button and the widget will go live on your site. If you click Delete, it will remove the widget.','Remember to click Update to save metadata entered or changed.'=>'Remember to click Update to save metadata entered or changed.','Note that you crop the image by clicking on it (the Crop icon is already selected) and dragging the cropping frame to select the desired part. Then click Save to retain the cropping.'=>'Note that you crop the image by clicking on it (the Crop icon is already selected) and dragging the cropping frame to select the desired part. Then click Save to retain the cropping.','For images only, you can click on Edit Image under the thumbnail to expand out an inline image editor with icons for cropping, rotating, or flipping the image as well as for undoing and redoing. The boxes on the right give you more options for scaling the image, for cropping it, and for cropping the thumbnail in a different way than you crop the original image. You can click on Help in those boxes to get more information.'=>'For images only, you can click on Edit Image under the thumbnail to expand out an inline image editor with icons for cropping, rotating, or flipping the image as well as for undoing and redoing. The boxes on the right give you more options for scaling the image, for cropping it, and for cropping the thumbnail in a different way than you crop the original image. You can click on Help in those boxes to get more information.','This screen allows you to edit fields for metadata in a file within the media library.'=>'This screen allows you to edit fields for metadata in a file within the media library.','Email or Username'=>'Email or Username','Search installed themes'=>'Search installed themes','Please Note: Any customizations you have made to theme files will be lost. Please consider using child themes for modifications.'=>'Please Note: Any customisations you have made to theme files will be lost. Please consider using child themes for modifications.','postsSticky (%s)'=>'Sticky (%s)' . "\0" . 'Sticky (%s)','Check again.'=>'Check again.','Last checked on %1$s at %2$s.'=>'Last checked on %1$s at %2$s.','Please select one or more plugins to update.'=>'Please select one or more plugins to update.','Please select one or more themes to update.'=>'Please select one or more themes to update.','The update process is starting. This process may take a while on some hosts, so please be patient.'=>'The update process is starting. This process may take a while on some hosts, so please be patient.','Apply Filters'=>'Apply Filters','Editor Style'=>'Editor Style','Sorry, you are not allowed to edit users.'=>'Sorry, you are not allowed to edit users.','To perform the requested action, WordPress needs to access your web server.'=>'To perform the requested action, WordPress needs to access your web server.','Current Page'=>'Current Page','No themes match your request.'=>'No themes match your request.','Search Sites'=>'Search Sites','Create a New User'=>'Create a New User','You have %1$s and %2$s.'=>'You have %1$s and %2$s.','%s site'=>'%s site' . "\0" . '%s sites','%s user'=>'%s user' . "\0" . '%s users','https://wordpress.org/news/feed/'=>'https://en-gb.wordpress.org/news/feed/','https://wordpress.org/news/'=>'https://en-gb.wordpress.org/news/','(Signup has been disabled. Only members of this site can comment.)'=>'(Signup has been disabled. Only members of this site can comment.)','There is a new version of %1$s available. View version %4$s details.'=>'There is a new version of %1$s available. View version %4$s details.','Go to Themes page'=>'Go to Themes page','Go to WordPress Updates page'=>'Go to WordPress Updates page','Go to Plugins page'=>'Go to Plugins page','Click Save Menu to make pending menu items public.'=>'Click Save Menu to make pending menu items public.','Storage Space'=>'Storage Space','Create a New Site'=>'Create a New Site','Images of exactly %1$d × %2$d pixels will be used as-is.'=>'Images of exactly %1$d × %2$d pixels will be used as-is.','Crop and Publish'=>'Crop and Publish','XFN stands for XHTML Friends Network, which is optional. WordPress allows the generation of XFN attributes to show how you are related to the authors/owners of the site to which you are linking.'=>'XFN stands for XHTML Friends Network, which is optional. WordPress allows the generation of XFN attributes to show how you are related to the authors/owners of the site to which you are linking.','FTP Password'=>'FTP Password','FTP Username'=>'FTP Username','FTP/SSH Password'=>'FTP/SSH Password','FTP/SSH Username'=>'FTP/SSH Username','Many themes show some sidebar widgets by default until you edit your sidebars, but they are not automatically displayed in your sidebar management tool. After you make your first widget change, you can re-add the default widgets by adding them from the Available Widgets area.'=>'Many themes show some sidebar widgets by default until you edit your sidebars, but they are not automatically displayed in your sidebar management tool. After you make your first widget change, you can re-add the default widgets by adding them from the Available Widgets area.','You can choose what’s displayed on the homepage of your site. It can be posts in reverse chronological order (classic blog), or a fixed/static page. To set a static homepage, you first need to create two Pages. One will become the homepage, and the other will be where your posts are displayed.'=>'You can choose what’s displayed on the homepage of your site. It can be posts in reverse chronological order (classic blog), or a fixed/static page. To set a static homepage, you first need to create two Pages. One will become the homepage, and the other will be where your posts are displayed.','The Optional fields let you customize the “category” and “tag” base names that will appear in archive URLs. For example, the page listing all posts in the “Uncategorized” category could be /topics/uncategorized instead of /category/uncategorized.'=>'The Optional fields let you customise the “category” and “tag” base names that will appear in archive URLs. For example, the page listing all posts in the “Uncategorised” category could be /topics/uncategorised instead of /category/uncategorised.','When you assign multiple categories or tags to a post, only one can show up in the permalink: the lowest numbered category. This applies if your custom structure includes %1$s or %2$s.'=>'When you assign multiple categories or tags to a post, only one can show up in the permalink: the lowest numbered category. This applies if your custom structure includes %1$s or %2$s.','If you pick an option other than Plain, your general URL path with structure tags (terms surrounded by %s) will also appear in the custom structure field and your path can be further modified there.'=>'If you pick an option other than Plain, your general URL path with structure tags (terms surrounded by %s) will also appear in the custom structure field and your path can be further modified there.','If you want to remove the widget but save its setting for possible future use, just drag it into the Inactive Widgets area. You can add them back anytime from there. This is especially helpful when you switch to a theme with fewer or different widget areas.'=>'If you want to remove the widget but save its setting for possible future use, just drag it into the Inactive Widgets area. You can add them back anytime from there. This is especially helpful when you switch to a theme with fewer or different widget areas.','To add a new user for your site, click the Add User button at the top of the screen or Add User in the Users menu section.'=>'To add a new user for your site, click the Add User button at the top of the screen or Add User in the Users menu section.','You can set maximum sizes for images inserted into your written content; you can also insert an image as Full Size.'=>'You can set maximum sizes for images inserted into your written content; you can also insert an image as Full Size.','Most themes show the site title at the top of every page, in the title bar of the browser, and as the identifying name for syndicated feeds. Many themes also show the tagline.'=>'Most themes show the site title at the top of every page, in the title bar of the browser, and as the identifying name for syndicated feeds. Many themes also show the tagline.','Order — Pages are usually ordered alphabetically, but you can choose your own order by entering a number (1 for first, etc.) in this field.'=>'Order — Pages are usually ordered alphabetically, but you can choose your own order by entering a number (1 for first, etc.) in this field.','If you do not remember your credentials, you should contact your web host.'=>'If you do not remember your credentials, you should contact your web host.','Please enter your FTP credentials to proceed.'=>'Please enter your FTP credentials to proceed.','Please enter your FTP or SSH credentials to proceed.'=>'Please enter your FTP or SSH credentials to proceed.','Your profile contains information about you (your “account”) as well as some personal options related to using WordPress.'=>'Your profile contains information about you (your “account”) as well as some personal options related to using WordPress.','You can Upload a theme manually if you have already downloaded its ZIP archive onto your computer (make sure it is from a trusted and original source). You can also do it the old-fashioned way and copy a downloaded theme’s folder via FTP into your %s directory.'=>'You can Upload a theme manually if you have already downloaded its zip archive onto your computer (make sure it is from a trusted and original source). You can also do it the old-fashioned way and copy a downloaded theme’s folder via FTP into your %s directory.','Send Trackbacks — Trackbacks are a way to notify legacy blog systems that you’ve linked to them. Enter the URL(s) you want to send trackbacks. If you link to other WordPress sites they’ll be notified automatically using pingbacks, and this field is unnecessary.'=>'Send Trackbacks — Trackbacks are a way to notify legacy blog systems that you’ve linked to them. Enter the URL(s) you want to send trackbacks. If you link to other WordPress sites they’ll be notified automatically using pingbacks, and this field is unnecessary.','Contributors can write and manage their posts but not publish posts or upload media files.'=>'Contributors can write and manage their posts but not publish posts or upload media files.','Administrators have access to all the administration features.'=>'Administrators have access to all the administration features.','You can use the plugin file editor to make changes to any of your plugins’ individual PHP files. Be aware that if you make changes, plugins updates will overwrite your customizations.'=>'You can use the plugin file editor to make changes to any of your plugins’ individual PHP files. Be aware that if you make changes, plugins updates will overwrite your customisations.','If you delete a link, it will be removed permanently, as Links do not have a Trash function yet.'=>'If you delete a link, it will be removed permanently, as Links do not have a Rubbish Bin function yet.','You can add links here to be displayed on your site, usually using Widgets. By default, links to several sites in the WordPress community are included as examples.'=>'You can add links here to be displayed on your site, usually using Widgets. By default, links to several sites in the WordPress community are included as examples.','Slug — The “slug” is the URL-friendly version of the name. It is usually all lowercase and contains only letters, numbers, and hyphens.'=>'Slug — The “slug” is the URL-friendly version of the name. It is usually all lowercase and contains only letters, numbers, and hyphens.','You can also create posts with the Press This bookmarklet.'=>'You can also create posts with the Press This bookmarklet.','Do not forget to click on the Save Changes button when you are finished.'=>'Do not forget to click on the Save Changes button when you are finished.','You can customize the look of your site without touching any of your theme’s code by using a custom background. Your background can be an image or a color.'=>'You can customise the look of your site without touching any of your theme’s code by using a custom background. Your background can be an image or a colour.','Editors can publish posts, manage posts as well as manage other people’s posts, etc.'=>'Editors can publish posts, manage posts as well as manage other people’s posts, etc.','Remember to click the Update Profile button when you are finished.'=>'Remember to click the Update Profile button when you are finished.','Required fields are indicated; the rest are optional. Profile information will only be displayed if your theme is set up to do so.'=>'Required fields are indicated; the rest are optional. Profile information will only be displayed if your theme is set up to do so.','Your username cannot be changed, but you can use other fields to enter your real name or a nickname, and change which name to display on your posts.'=>'Your username cannot be changed, but you can use other fields to enter your real name or a nickname, and change which name to display on your posts.','You can also moderate the comment from this screen using the Status box, where you can also change the timestamp of the comment.'=>'You can also moderate the comment from this screen using the Status box, where you can also change the timestamp of the comment.','You can edit the information left in a comment if needed. This is often useful when you notice that a commenter has made a typographical error.'=>'You can edit the information left in a comment if needed. This is often useful when you notice that a commenter has made a typographical error.','You can also control the display of your content in RSS feeds, including the maximum number of posts to display and whether to show full text or an excerpt. Learn more about feeds.'=>'You can also control the display of your content in RSS feeds, including the maximum number of posts to display and whether to show full text or an excerpt. Learn more about feeds.','This screen contains the settings that affect the display of your content.'=>'This screen contains the settings that affect the display of your content.','UTC means Coordinated Universal Time.'=>'UTC is the same as Greenwich Mean Time (GMT).','The fields on this screen determine some of the basics of your site setup.'=>'The fields on this screen determine some of the basics of your site setup.','You must click the Save Changes button at the bottom of the screen for new settings to take effect.'=>'You must click the Save Changes button at the bottom of the screen for new settings to take effect.','The boxes for link name, web address, and description have fixed positions, while the others may be repositioned using drag and drop. You can also hide boxes you do not use in the Screen Options tab, or minimize boxes by clicking on the title bar of the box.'=>'The boxes for link name, web address, and description have fixed positions, while the others may be repositioned using drag and drop. You can also hide boxes you do not use in the Screen Options tab, or minimise boxes by clicking on the title bar of the box.','Your themes are all up to date.'=>'Your themes are all up to date.','Your plugins are all up to date.'=>'Your plugins are all up to date.','While your site is being updated, it will be in maintenance mode. As soon as your updates are complete, this mode will be deactivated.'=>'While your site is being updated, it will be in maintenance mode. As soon as your updates are complete, this mode will be deactivated.','An updated version of WordPress is available.'=>'An updated version of WordPress is available.','You have the latest version of WordPress.'=>'You have the latest version of WordPress.','Function Name…'=>'Function Name…','Activate Plugin & Run Importer'=>'Activate Plugin & Run Importer','You can add or edit links on this screen by entering information in each of the boxes. Only the link’s web address and name (the text you want to display on your site as the link) are required fields.'=>'You can add or edit links on this screen by entering information in each of the boxes. Only the link’s web address and name (the text you want to display on your site as the link) are required fields.','Categories can be selectively converted to tags using the category to tag converter.'=>'Categories can be selectively converted to tags using the category to tag converter.','This screen lists links to plugins to import data from blogging/content management platforms. Choose the platform you want to import from, and click Install Now when you are prompted in the popup window. If your platform is not listed, click the link to search the plugin directory for other importer plugins to see if there is one for your platform.'=>'This screen lists links to plugins to import data from blogging/content management platforms. Choose the platform you want to import from, and click Install Now when you are prompted in the popup window. If your platform is not listed, click the link to search the plugin directory for other importer plugins to see if there is one for your platform.','Once generated, your WXR file can be imported by another WordPress site or by another blogging platform able to access this format.'=>'Once generated, your WXR file can be imported by another WordPress site or by another blogging platform able to access this format.','Choose a plugin to edit from the dropdown menu and click the Select button. Click once on any file name to load it in the editor, and make your changes. Do not forget to save your changes (Update File) when you are finished.'=>'Choose a plugin to edit from the dropdown menu and click the Select button. Click once on any file name to load it in the editor, and make your changes. Do not forget to save your changes (Update File) when you are finished.','You can customize the display of this screen using the Screen Options tab and/or the dropdown filters above the links table.'=>'You can customise the display of this screen using the Screen Options tab and/or the dropdown filters above the links table.','Most of the time, plugins play nicely with the core of WordPress and with other plugins. Sometimes, though, a plugin’s code will get in the way of another plugin, causing compatibility issues. If your site starts doing strange things, this may be the problem. Try deactivating all your plugins and re-activating them in various combinations until you isolate which one(s) caused the issue.'=>'Most of the time, plugins play nicely with the core of WordPress and with other plugins. Sometimes, though, a plugin’s code will get in the way of another plugin, causing compatibility issues. If your site starts doing strange things, this may be the problem. Try deactivating all your plugins and re-activating them in various combinations until you isolate which one(s) caused the issue.','Enabling Accessibility Mode, via Screen Options, allows you to use Add and Edit buttons instead of using drag and drop.'=>'Enabling Accessibility Mode, via Screen Options, allows you to use Add and Edit buttons instead of using drag and drop.','Widgets may be used multiple times. You can give each widget a title, to display on your site, but it’s not required.'=>'Widgets may be used multiple times. You can give each widget a title, to display on your site, but it’s not required.','Widgets are independent sections of content that can be placed into any widgetized area provided by your theme (commonly called sidebars). To populate your sidebars/widget areas with individual widgets, drag and drop the title bars into the desired area. By default, only the first widget area is expanded. To populate additional widget areas, click on their title bars to expand them.'=>'Widgets are independent sections of content that can be placed into any widgetised area provided by your theme (commonly called sidebars). To populate your sidebars/widget areas with individual widgets, drag and drop the title bars into the desired area. By default, only the first widget area is expanded. To populate additional widget areas, click on their title bars to expand them.','Advice: Think very carefully about your site crashing if you are live-editing the theme currently in use.'=>'Advice: Think very carefully about your site crashing if you are live-editing the theme currently in use.','After typing in your edits, click Update File.'=>'After typing in your edits, click Update File.','Begin by choosing a theme to edit from the dropdown menu and clicking the Select button. A list then appears of the theme’s template files. Clicking once on any file name causes the file to appear in the large Editor box.'=>'Begin by choosing a theme to edit from the dropdown menu and clicking the Select button. A list then appears of the theme’s template files. Clicking once on any file name causes the file to appear in the large Editor box.','You can use the theme file editor to edit the individual CSS and PHP files which make up your theme.'=>'You can use the theme file editor to edit the individual CSS and PHP files which make up your theme.','(no parent)'=>'(no parent)','Template — Some themes have custom templates you can use for certain pages that might have additional features or custom layouts. If so, you’ll see them in this dropdown menu.'=>'Template — Some themes have custom templates you can use for certain pages that might have additional features or custom layouts. If so, you’ll see them in this dropdown menu.','Parent — You can arrange your pages in hierarchies. For example, you could have an “About” page that has “Life Story” and “My Dog” pages under it. There are no limits to how many levels you can nest pages.'=>'Parent — You can arrange your pages in hierarchies. For example, you could have an “About” page that has “Life Story” and “My Dog” pages under it. There are no limits to how many levels you can nest pages.','All updates have been completed.'=>'All updates have been completed.','You can change the display of this screen using the Screen Options tab to set how many items are displayed per screen and to display/hide columns in the table.'=>'You can change the display of this screen using the Screen Options tab to set how many items are displayed per screen and to display/hide columns in the table.','Description — The description is not prominent by default; however, some themes may display it.'=>'Description — The description is not prominent by default; however, some themes may display it.','Name — The name is how it appears on your site.'=>'Name — The name is how it appears on your site.','When adding a new tag on this screen, you’ll fill in the following fields:'=>'When adding a new tag on this screen, you’ll fill in the following fields:','When adding a new category on this screen, you’ll fill in the following fields:'=>'When adding a new category on this screen, you’ll fill in the following fields:','What’s the difference between categories and tags? Normally, tags are ad-hoc keywords that identify important information in your post (names, subjects, etc) that may or may not recur in other posts, while categories are pre-determined sections. If you think of your site like a book, the categories are like the Table of Contents and the tags are like the terms in the index.'=>'What’s the difference between categories and tags? Normally, tags are ad-hoc keywords that identify important information in your post (names, subjects, etc) that may or may not recur in other posts, while categories are pre-determined sections. If you think of your site like a book, the categories are like the Table of Contents and the tags are like the terms in the index.','You can use categories to define sections of your site and group related posts. The default category is “Uncategorized” until you change it in your writing settings.'=>'You can use categories to define sections of your site and group related posts. The default category is “Uncategorised” until you change it in your writing settings.','You need JavaScript to choose a part of the image.'=>'You need JavaScript to choose a part of the image.','Crop Header Image'=>'Crop Header Image','Image Upload Error'=>'Image Upload Error','Text Color'=>'Text Colour','Restore Original Header Image'=>'Restore Original Header Image','This will restore the original header image. You will not be able to restore any customizations.'=>'This will restore the original header image. You will not be able to restore any customisations.','Reset Image'=>'Reset Image','Remove Header Image'=>'Remove Header Image','This will remove the header image. You will not be able to restore any customizations.'=>'This will remove the header image. You will not be able to restore any customisations.','Default Images'=>'Default Images','Delete this comment permanently'=>'Delete this comment permanently','Restore this comment from the Trash'=>'Restore this comment from the Bin','Allow comments'=>'Allow comments','Discussion — You can turn comments and pings on or off, and if there are comments on the post, you can see them here and moderate them.'=>'Discussion — You can turn comments and pings on or off, and if there are comments on the post, you can see them here and moderate them.','%s — This allows you to associate an image with your post without inserting it. This is usually useful only if your theme makes use of the image as a post thumbnail on the home page, a custom header, etc.'=>'%s — This allows you to associate an image with your post without inserting it. This is usually useful only if your theme makes use of the image as a post thumbnail on the home page, a custom header, etc.','Title — Enter a title for your post. After you enter a title, you’ll see the permalink below, which you can edit.'=>'Title — Enter a title for your post. After you enter a title, you’ll see the permalink below, which you can edit.','Hovering over a row in the posts list will display action links that allow you to manage your post. You can perform the following actions:'=>'Hovering over a row in the posts list will display action links that allow you to manage your post. You can perform the following actions:','You can refine the list to show only posts in a specific category or from a specific month by using the dropdown menus above the posts list. Click the Filter button after making your selection. You also can refine the list by clicking on the post author, category or tag in the posts list.'=>'You can refine the list to show only posts in a specific category or from a specific month by using the dropdown menus above the posts list. Click the Filter button after making your selection. You also can refine the list by clicking on the post author, category or tag in the posts list.','You can hide/display columns based on your needs and decide how many posts to list per screen using the Screen Options tab.'=>'You can hide/display columns based on your needs and decide how many posts to list per screen using the Screen Options tab.','You can customize the display of this screen in a number of ways:'=>'You can customise the display of this screen in a number of ways:','Search installed plugins'=>'Search installed plugins','Your theme supports one menu. Select which menu you would like to use.'=>'Your theme supports %s menu. Select which menu appears in each location.' . "\0" . 'Your theme supports %s menus. Select which menu appears in each location.','Your theme does not support navigation menus or widgets.'=>'Your theme does not support navigation menus or widgets.','Categories and Tags Converter'=>'Categories and Tags Converter','Most Recent'=>'Most Recent','Start date:'=>'Start date:','Theme InstallerTag'=>'Tag','Plugin InstallerTag'=>'Tag','verbClear'=>'Clear','commentMark as spam'=>'Mark as spam','Remove Background Image'=>'Remove Background Image','Comments on “%s”'=>'Comments on “%s”','Show advanced menu properties'=>'Show advanced menu properties','You have version %1$s installed. Update to %2$s.'=>'You have version %1$s installed. Update to %2$s.','Enabled'=>'Enabled','commentNot Spam'=>'Not Spam','This will restore the original background image. You will not be able to restore any customizations.'=>'This will restore the original background image. You will not be able to restore any customisations.','WordPress Blog'=>'WordPress Blog','Remove Users from Site'=>'Remove Users from Site','— No role for this site —'=>'— No role for this site —','New WordPress Site'=>'New WordPress Site','My Site'=>'My Site','Sorry, you are not allowed to create posts or drafts on this site.'=>'Sorry, you are not allowed to create posts or drafts on this site.','Sorry, you are not allowed to create pages on this site.'=>'Sorry, you are not allowed to create pages on this site.','Custom site suspended message.'=>'Custom site suspended message.','Custom site inactive message.'=>'Custom site inactive message.','Custom site deleted message.'=>'Custom site deleted message.','If you have posts or comments in another system, WordPress can import those into this site. To get started, choose a system to import from below:'=>'If you have posts or comments in another system, WordPress can import those into this site. To get started, choose a system to import from below:','No items.'=>'No items.','To use a subdomain configuration, you must have a wildcard entry in your DNS. This usually means adding a %s hostname record pointing at your web server in your DNS configuration tool.'=>'To use a subdomain configuration, you must have a wildcard entry in your DNS. This usually means adding a %s hostname record pointing at your web server in your DNS configuration tool.','The installer attempted to contact a random hostname (%s) on your domain.'=>'The installer attempted to contact a random hostname (%s) on your domain.','The menu item has been successfully deleted.'=>'The menu item has been successfully deleted.','Please provide a custom field name.'=>'Please provide a custom field name.','Display Options'=>'Display Options','Remove Image'=>'Remove Image','Other users have been removed.'=>'Other users have been removed.','You cannot remove the current user.'=>'You cannot remove the current user.','There are no valid users selected for removal.'=>'There are no valid users selected for removal.','Confirm Removal'=>'Confirm Removal','You have specified these users for removal:'=>'You have specified these users for removal:','User deletion is not allowed from this screen.'=>'User deletion is not allowed from this screen.','%s updated successfully.'=>'%s updated successfully.','No thanks, do not remind me again'=>'No thanks, do not remind me again','Yes, take me to my profile page'=>'Yes, take me to my profile page','Your chosen password.'=>'Your chosen password.','Sorry, you are not allowed to restore this item from the Trash.'=>'Sorry, you are not allowed to restore this item from the Bin.','Sorry, you are not allowed to move this item to the Trash.'=>'Sorry, you are not allowed to move this item to the Bin.','%s comment restored from the Trash.'=>'%s comment restored from the Bin.' . "\0" . '%s comments restored from the Bin.','%s comment moved to the Trash.'=>'%s comment moved to the Bin.' . "\0" . '%s comments moved to the Bin.','The following themes have new versions available. Check the ones you want to update and then click “Update Themes”.'=>'The following themes have new versions available. Check the ones you want to update and then click “Update Themes”.','That user is already a member of this site.'=>'That user is already a member of this site.','User has been added to your site.'=>'User has been added to your site.','Invitation email sent to user. A confirmation link must be clicked for them to be added to your site.'=>'Invitation email sent to user. A confirmation link must be clicked for them to be added to your site.','The following plugins have new versions available. Check the ones you want to update and then click “Update Plugins”.'=>'The following plugins have new versions available. Check the ones you want to update and then click “Update Plugins”.','This will remove the background image. You will not be able to restore any customizations.'=>'This will remove the background image. You will not be able to restore any customisations.','Only the active theme is available to you. Contact the %s administrator for information about accessing additional themes.'=>'Only the active theme is available to you. Contact the %s administrator for information about accessing additional themes.','Tag Template'=>'Tag Template','Author Template'=>'Author Template','Visual Editor Stylesheet'=>'Visual Editor Stylesheet','Page saved.'=>'Page saved.','More information about %s'=>'More information about %s','Grant this user super admin privileges for the Network.'=>'Grant this user super admin privileges for the Network.','This user has super admin privileges.'=>'This user has super admin privileges.','Important:'=>'Important:','Update to version %s'=>'Update to version %s','Error: "Table Prefix" can only contain numbers, letters, and underscores.'=>'Error: "Table Prefix" can only contain numbers, letters, and underscores.','Usernames cannot be changed.'=>'Usernames cannot be changed.','items'=>'items','The menu has been successfully deleted.'=>'The menu has been successfully deleted.','Site visibility'=>'Site visibility','CSS Classes (optional)'=>'CSS Classes (optional)','Link Target'=>'Link Target','Save Menu'=>'Save Menu','Updating Theme %1$s (%2$d/%3$d)'=>'Updating Theme %1$s (%2$d/%3$d)','You can still use your site but any subdomain you create may not be accessible. If you know your DNS is correct, ignore this message.'=>'You can still use your site but any subdomain you create may not be accessible. If you know your DNS is correct, ignore this message.','This resulted in an error message: %s'=>'This resulted in an error message: %s','You must provide a valid email address.'=>'You must provide a valid email address.','The network already exists.'=>'The network already exists.','You must provide a name for your network of sites.'=>'You must provide a name for your network of sites.','You must provide a domain name.'=>'You must provide a domain name.','Notice:'=>'Notice:','Get Shortlink'=>'Get Shortlink','The update of %s failed.'=>'The update of %s failed.','Updating Plugin %1$s (%2$d/%3$d)'=>'Updating Plugin %1$s (%2$d/%3$d)','The password you chose during installation.'=>'The password you chose during installation.','User already exists. Password inherited.'=>'User already exists. Password inherited.','WordPress updated successfully.'=>'WordPress updated successfully.','Update WordPress'=>'Update WordPress','Update Plugins'=>'Update Plugins','You cannot update because WordPress %2$s requires PHP version %3$s or higher and MySQL version %4$s or higher. You are running PHP version %5$s and MySQL version %6$s.'=>'You cannot update because WordPress %2$s requires PHP version %3$s or higher and MySQL version %4$s or higher. You are running PHP version %5$s and MySQL version %6$s.','WordPress Updates'=>'WordPress Updates','Edit menu item'=>'Edit menu item','Go to Dashboard'=>'Go to Dashboard','Drop-in (%s)'=>'Drop-in (%s)' . "\0" . 'Drop-ins (%s)','Must-Use (%s)'=>'Must-Use (%s)' . "\0" . 'Must-Use (%s)','Inactive:'=>'Inactive:','Yes, delete these files and data'=>'Yes, delete these files and data','Are you sure you want to delete these files and data?'=>'Are you sure you want to delete these files and data?','You are about to remove the following plugin:'=>'You are about to remove the following plugin:' . "\0" . 'You are about to remove the following plugins:','Delete Plugin'=>'Delete Plugin' . "\0" . 'Delete Plugins','This timezone does not observe daylight saving time.'=>'This timezone does not observe daylight saving time.','This timezone is currently in daylight saving time.'=>'This timezone is currently in daylight saving time.','This address is used for admin purposes. If you change this, an email will be sent to your new address to confirm it. The new address will not become active until confirmed.'=>'This address is used for admin purposes. If you change this, an email will be sent to your new address to confirm it. The new address will not become active until confirmed.','View All'=>'View All','Please enter a valid menu name.'=>'Please enter a valid menu name.','You cannot install because WordPress %2$s requires PHP version %3$s or higher and MySQL version %4$s or higher. You are running PHP version %5$s and MySQL version %6$s.'=>'You cannot install because WordPress %2$s requires PHP version %3$s or higher and MySQL version %4$s or higher. You are running PHP version %5$s and MySQL version %6$s.','Executed before Multisite is loaded.'=>'Executed before Multisite is loaded.','External object cache.'=>'External object cache.','Custom maintenance message.'=>'Custom maintenance message.','Custom database error message.'=>'Custom database error message.','Custom database class.'=>'Custom database class.','Advanced caching plugin.'=>'Advanced caching plugin.','File is empty. Please upload something more substantial.'=>'File is empty. Please upload something more substantial.','This comment is already marked as spam.'=>'This comment is already marked as spam.','View Trash'=>'View Bin','This comment is already in the Trash.'=>'This comment is already in the Bin.','This comment is already approved.'=>'This comment is already approved.','This comment is currently in the Trash.'=>'This comment is currently in the Bin.','This comment is currently marked as spam.'=>'This comment is currently marked as spam.','This comment is currently approved.'=>'This comment is currently approved.','Moderate Comment'=>'Moderate Comment','Categories:'=>'Categories:','Drag widgets here to remove them from the sidebar but keep their settings.'=>'Drag widgets here to remove them from the sidebar but keep their settings.','Available Widgets'=>'Available Widgets','Error in displaying the widget settings form.'=>'Error in displaying the widget settings form.','Error while saving.'=>'Error while saving.','Changes saved.'=>'Changes saved.','Save Widget'=>'Save Widget','Select both the sidebar for this widget and the position of the widget in that sidebar.'=>'Select both the sidebar for this widget and the position of the widget in that sidebar.','Widget %s'=>'Widget %s','Inactive Widgets'=>'Inactive Widgets','Change role to…'=>'Change role to…','%1$s (%2$s)'=>'%1$s (%2$s)','Other users have been deleted.'=>'Other users have been deleted.','You cannot delete the current user.'=>'You cannot delete the current user.','Other user roles have been changed.'=>'Other user roles have been changed.','The current user’s role must have user editing capabilities.'=>'The current user’s role must have user editing capabilities.','New user created.'=>'New user created.','There are no valid users selected for deletion.'=>'There are no valid users selected for deletion.','Delete Users'=>'Delete Users','Skip Confirmation Email'=>'Skip Confirmation Email','Invitation email sent to new user. A confirmation link must be clicked before their account is created.'=>'Invitation email sent to new user. A confirmation link must be clicked before their account is created.','[%s] Joining Confirmation'=>'[%s] Joining Confirmation','Update User'=>'Update User','Update Profile'=>'Update Profile','Additional Capabilities'=>'Additional Capabilities','Type your new password again.'=>'Type your new password again.','New Password'=>'New Password','Share a little biographical information to fill out your profile. This may be shown publicly.'=>'Share a little biographical information to fill out your profile. This may be shown publicly.','Biographical Info'=>'Biographical Info','About the user'=>'About the user','About Yourself'=>'About Yourself','Contact Info'=>'Contact Info','Display name publicly as'=>'Display name publicly as','Nickname'=>'Nickname','Last Name'=>'Last Name','First Name'=>'First Name','Enable keyboard shortcuts for comment moderation.'=>'Enable keyboard shortcuts for comment moderation.','Admin Color Scheme'=>'Admin Colour Scheme','Disable the visual editor when writing'=>'Disable the visual editor when writing','Visual Editor'=>'Visual Editor','Personal Options'=>'Personal Options','User updated.'=>'User updated.','Always use https when visiting the admin'=>'Always use https when visiting the admin','Use https'=>'Use https','Edit user'=>'Edit user','Media file restored from the Trash.'=>'Media file restored from the Bin.','Media file moved to the Trash.'=>'Media file moved to the Bin.','Media file permanently deleted.'=>'Media file permanently deleted.','Sorry, you are not allowed to delete these items.'=>'Sorry, you are not allowed to delete these items.','Your WordPress database is already up to date!'=>'Your WordPress database is already up to date!','Installing theme from uploaded file: %s'=>'Installing theme from uploaded file: %s','Upload Theme'=>'Upload Theme','Installing Theme: %s'=>'Installing Theme: %s','Installing plugin from uploaded file: %s'=>'Installing plugin from uploaded file: %s','Upload Plugin'=>'Upload Plugin','Installing Plugin: %s'=>'Installing Plugin: %s','Plugin failed to reactivate due to a fatal error.'=>'Plugin failed to reactivate due to a fatal error.','Plugin reactivated successfully.'=>'Plugin reactivated successfully.','Plugin Reactivation'=>'Plugin Reactivation','Installation failed.'=>'Installation failed.','Compatibility with WordPress %s: Unknown'=>'Compatibility with WordPress %s: unknown','Compatibility with WordPress %s: 100%% (according to its author)'=>'Compatibility with WordPress %s: 100%% (according to its author)','Hide hidden updates'=>'Hide hidden updates','Show hidden updates'=>'Show hidden updates','Bring back this update'=>'Bring back this update','Hide this update'=>'Hide this update','Broken Themes'=>'Broken Themes','You are about to delete this theme \'%s\' \'Cancel\' to stop, \'OK\' to delete.'=>'You are about to delete this theme \'%s\' - \'Cancel\' to stop, \'OK\' to delete.','Theme deleted.'=>'Theme deleted.','Select theme to edit:'=>'Select theme to edit:','Edit Themes'=>'Edit Themes','Tags:'=>'Tags:','Compare Revisions of “%s”'=>'Compare revisions of “%s”','You cannot edit this item because it is in the Trash. Please restore it and try again.'=>'You cannot edit this item because it is in the Bin. Please restore it and try again.','Sorry, you are not allowed to edit this item.'=>'Sorry, you are not allowed to edit this item.','You attempted to edit an item that does not exist. Perhaps it was deleted?'=>'You attempted to edit an item that does not exist. Perhaps it was deleted?','No plugins found.'=>'No plugins found.','Inactive (%s)'=>'Inactive (%s)' . "\0" . 'Inactive (%s)','Recently Active (%s)'=>'Recently Active (%s)' . "\0" . 'Recently Active (%s)','Active (%s)'=>'Active (%s)' . "\0" . 'Active (%s)','pluginsAll (%s)'=>'All (%s)' . "\0" . 'All (%s)','Clear List'=>'Clear List','Visit plugin site'=>'Visit plugin site','Plugin could not be deleted due to an error: %s'=>'Plugin could not be deleted due to an error: %s','Plugin could not be activated because it triggered a fatal error.'=>'Plugin could not be activated because it triggered a fatal error.','If something goes wrong with a plugin and you cannot use WordPress, delete or rename that file in the %s directory and it will be automatically deactivated.'=>'If something goes wrong with a plugin and you cannot use WordPress, delete or rename that file in the %s directory and it will be automatically deactivated.','Plugins extend and expand the functionality of WordPress. Once a plugin is installed, you may activate it or deactivate it here.'=>'Plugins extend and expand the functionality of WordPress. Once a plugin is installed, you may activate it or deactivate it here.','No, return me to the plugin list'=>'No, return me to the plugin list','Yes, delete these files'=>'Yes, delete these files','Are you sure you want to delete these files?'=>'Are you sure you want to delete these files?','Plugin InstallerPopular'=>'Popular','Plugin InstallerFeatured'=>'Featured','Update File'=>'Update File','Documentation:'=>'Documentation:','Plugin Files'=>'Plugin Files','Select plugin to edit:'=>'Select plugin to edit:','File edited successfully.'=>'File edited successfully.','Files of this type are not editable.'=>'Files of this type are not editable.','Edit Plugins'=>'Edit Plugins','All Settings'=>'All Settings','Update Services'=>'Update Services','Default Mail Category'=>'Default Mail Category','Login Name'=>'Login Name','Port'=>'Port','Mail Server'=>'Mail Server','To post to WordPress by email, you must set up a secret email account with POP3 access. Any mail received at this address will be posted, so it’s a good idea to keep this address very secret. Here are three random strings you could use: %1$s, %2$s, %3$s.'=>'To post to WordPress by email, you must set up a secret email account with POP3 access. Any mail received at this address will be posted, so it’s a good idea to keep this address very secret. Here are three random strings you could use: %1$s, %2$s, %3$s.','Post via email'=>'Post via email','Default Link Category'=>'Default Link Category','Default Post Category'=>'Default Post Category','WordPress should correct invalidly nested XHTML automatically'=>'WordPress should correct invalidly nested XHTML automatically','Convert emoticons like :-) and :-P to graphics on display'=>'Convert emoticons like :-) and :-P to graphics on display','Formatting'=>'Formatting','Writing Settings'=>'Writing Settings','Encoding for pages and feeds'=>'Encoding for pages and feeds','Full text'=>'Full text','Syndication feeds show the most recent'=>'Syndication feeds show the most recent','posts'=>'posts','Blog pages show at most'=>'Blog pages show at most','Warning: these pages should not be the same!'=>'Warning: these pages should not be the same!','Posts page: %s'=>'Posts page: %s','A static page (select below)'=>'A static page (select below)','Reading Settings'=>'Reading Settings','Privacy Settings'=>'Privacy Settings','If you temporarily make your site’s root directory writable to generate the %s file automatically, do not forget to revert the permissions after the file has been created.'=>'If you temporarily make your site’s root directory writable to generate the %s file automatically, do not forget to revert the permissions after the file has been created.','If you temporarily make your %s file writable to generate rewrite rules automatically, do not forget to revert the permissions after the rule has been saved.'=>'If you temporarily make your %s file writable to generate rewrite rules automatically, do not forget to revert the permissions after the rule has been saved.','Tag base'=>'Tag base','Category base'=>'Category base','Optional'=>'Optional','Custom Structure'=>'Custom Structure','Numeric'=>'Numeric','Month and name'=>'Month and name','Day and name'=>'Day and name','Permalink structure updated.'=>'Permalink structure updated.','Permalink structure updated. Remove write access on %s file now!'=>'Permalink structure updated. Remove write access on %s file now!','Permalink Settings'=>'Permalink Settings','Organize my uploads into month- and year-based folders'=>'Organise my uploads into month- and year-based folders','Configuring this is optional. By default, it should be blank.'=>'Configuring this is optional. By default, it should be blank.','Full URL path to files'=>'Full URL path to files','Store uploads in this folder'=>'Store uploads in this folder','Uploading Files'=>'Uploading Files','Large size'=>'Large size','Max Height'=>'Max Height','Max Width'=>'Max Width','Medium size'=>'Medium size','Crop thumbnail to exact dimensions (normally thumbnails are proportional)'=>'Crop thumbnail to exact dimensions (normally thumbnails are proportional)','Thumbnail size'=>'Thumbnail size','Image sizes'=>'Image sizes','Media Settings'=>'Media Settings','Week Starts On'=>'Week Starts On','Custom:'=>'Custom:','This timezone is currently in standard time.'=>'This time zone is currently in standard time.','Timezone'=>'Time zone','New User Default Role'=>'New User Default Role','Anyone can register'=>'Anyone can register','Membership'=>'Membership','General Settings'=>'General Settings','MonsterID (Generated)'=>'MonsterID (Generated)','Wavatar (Generated)'=>'Wavatar (Generated)','Identicon (Generated)'=>'Identicon (Generated)','Gravatar Logo'=>'Gravatar Logo','Blank'=>'Blank','For users without a custom avatar of their own, you can either display a generic logo or a generated one based on their email address.'=>'For users without a custom avatar of their own, you can either display a generic logo or a generated one based on their email address.','X — Even more mature than above'=>'X — Even more mature than above','R — Intended for adult audiences above 17'=>'R — Intended for adult audiences above 17','PG — Possibly offensive, usually for audiences 13 and above'=>'PG — Possibly offensive, usually for audiences 13 and above','G — Suitable for all audiences'=>'G — Suitable for all audiences','Maximum Rating'=>'Maximum Rating','Show Avatars'=>'Show Avatars','Avatar Display'=>'Avatar Display','Avatars'=>'Avatars','When a comment contains any of these words in its content, author name, URL, email, IP address, or browser’s user agent string, it will be put in the Trash. One word or IP address per line. It will match inside words, so “press” will match “WordPress”.'=>'When a comment contains any of these words in its content, author name, URL, email, IP address, or browser’s user agent string, it will be put in the Bin. One word or IP address per line. It will match inside words, so “press” will match “WordPress”.','When a comment contains any of these words in its content, author name, URL, email, IP address, or browser’s user agent string, it will be held in the moderation queue. One word or IP address per line. It will match inside words, so “press” will match “WordPress”.'=>'When a comment contains any of these words in its content, author name, URL, email, IP address, or browser’s user agent string, it will be held in the moderation queue. One word or IP address per line. It will match inside words, so “press” will match “WordPress”.','Hold a comment in the queue if it contains %s or more links. (A common characteristic of comment spam is a large number of hyperlinks.)'=>'Hold a comment in the queue if it contains %s or more links. (A common characteristic of comment spam is a large number of hyperlinks.)','Comment Moderation'=>'Comment Moderation','Comment author must have a previously approved comment'=>'Comment author must have a previously approved comment','Before a comment appears'=>'Before a comment appears','A comment is held for moderation'=>'A comment is held for moderation','Anyone posts a comment'=>'Anyone posts a comment','Email me whenever'=>'Email me whenever','newer'=>'newer','older'=>'older','Users must be registered and logged in to comment'=>'Users must be registered and logged in to comment','Comment author must fill out name and email'=>'Comment author must fill out name and email','Other comment settings'=>'Other comment settings','Discussion Settings'=>'Discussion Settings','No users found.'=>'No users found.','Update Themes'=>'Update Themes','Visit'=>'Visit','Removed'=>'Removed','Multisite support is not enabled.'=>'Multisite support is not enabled.','Permalinks'=>'Permalinks','Privacy'=>'Privacy','Reading'=>'Reading','Writing'=>'Writing','settings screenGeneral'=>'General','Profile'=>'Profile','Comments %s'=>'Comments %s','Library'=>'Library','Upload New Media'=>'Upload New Media','Repair and Optimize Database'=>'Repair and Optimise Database','Repair Database'=>'Repair Database','Some database problems could not be repaired. Please copy-and-paste the following list of errors to the WordPress support forums to get additional assistance.'=>'Some database problems could not be repaired. Please copy-and-paste the following list of errors to the WordPress support forums to get additional assistance.','WordPress › Database Repair'=>'WordPress › Database Repair','Link not found.'=>'Link not found.','No links found.'=>'No links found.','Search Links'=>'Search Links','%s link deleted.'=>'%s link deleted.' . "\0" . '%s links deleted','Add New Link'=>'Add New Link','Success!'=>'Success!','Please provide the following information. Do not worry, you can always change these settings later.'=>'Please provide the following information. Do not worry, you can always change these settings later.','Information needed'=>'Information needed','Install WordPress'=>'Install WordPress','Double-check your email address before continuing.'=>'Double-check your email address before continuing.','Your Email'=>'Your Email','User(s) already exists.'=>'User(s) already exists.','WordPress › Installation'=>'WordPress › Installation','Error: Please enter an email address.'=>'Error: Please enter an email address.','Error: Passwords may not contain the character "\\".'=>'Error: Passwords may not contain the character "\\".','Error: Please enter a password.'=>'Error: Please enter a password.','Default post slughello-world'=>'hello-world','Hello world!'=>'Hello world!','Welcome to %s. This is your first post. Edit or delete it, then start writing!'=>'Welcome to %s. This is your first post. Edit or delete it, then start writing!','Default category slugUncategorized'=>'Uncategorised','Note that password carefully! It is a random password that was generated just for you.'=>'Note that password carefully! It is a random password that was generated just for you.','An automated WordPress update has failed to complete! Please notify the site administrator.'=>'An automated WordPress update has failed to complete! Please notify the site administrator.','An automated WordPress update has failed to complete - please attempt the update again now.'=>'An automated WordPress update has failed to complete - please attempt the update again now.','Latest'=>'Latest','Update to %s'=>'Update to %s','You are using a development version (%1$s). Cool! Please stay updated.'=>'You are using a development version (%1$s). Cool! Please stay updated.','Upgrading database…'=>'Upgrading database…','The update could not be unpacked'=>'The update could not be unpacked','Verifying the unpacked files…'=>'Verifying the unpacked files…','The update cannot be installed because WordPress %1$s requires MySQL version %2$s or higher. You are running version %3$s.'=>'The update cannot be installed because WordPress %1$s requires MySQL version %2$s or higher. You are running version %3$s.','The update cannot be installed because WordPress %1$s requires PHP version %2$s or higher. You are running version %3$s.'=>'The update cannot be installed because WordPress %1$s requires PHP version %2$s or higher. You are running version %3$s.','The update cannot be installed because WordPress %1$s requires PHP version %2$s or higher and MySQL version %3$s or higher. You are running PHP version %4$s and MySQL version %5$s.'=>'The update cannot be installed because WordPress %1$s requires PHP version %2$s or higher and MySQL version %3$s or higher. You are running PHP version %4$s and MySQL version %5$s.','Could not fully remove the theme %s.'=>'Could not fully remove the theme %s.','Unable to locate WordPress theme directory.'=>'Unable to locate WordPress theme directory.','This theme is already installed.'=>'This theme is already installed.','Version: %s'=>'Version: %s','If you have a theme in a .zip format, you may install or update it by uploading it here.'=>'If you have a theme in a .zip format, you may install or update it by uploading it here.','Find Themes'=>'Find Themes','Holiday'=>'Holiday','Subject'=>'Subject','Sticky Post'=>'Sticky Post','Theme Options'=>'Theme Options','Custom Colors'=>'Custom Colours','Features'=>'Features','Right Sidebar'=>'Right Sidebar','Left Sidebar'=>'Left Sidebar','Four Columns'=>'Four Columns','Three Columns'=>'Three Columns','Two Columns'=>'Two Columns','One Column'=>'One Column','Feature Filter'=>'Feature Filter','Screen Options'=>'Screen Options','Disable accessibility mode'=>'Disable accessibility mode','Enable accessibility mode'=>'Enable accessibility mode','Install Themes'=>'Install Themes','Upload file and import'=>'Upload file and import','Maximum size: %s'=>'Maximum size: %s','Choose a file from your computer:'=>'Choose a file from your computer:','Before you can upload your import file, you will need to fix the following error:'=>'Before you can upload your import file, you will need to fix the following error:','Add Custom Field'=>'Add Custom Field','Enter new'=>'Enter new','Add New Custom Field:'=>'Add New Custom Field:','Key'=>'Key','Comment by %s marked as spam.'=>'Comment by %s marked as spam.','Comment by %s moved to the Trash.'=>'Comment by %s moved to the Bin.','Submit Reply'=>'Submit Reply','Reply to Comment'=>'Reply to Comment','Missed schedule'=>'Missed schedule','Make this post sticky'=>'Make this post sticky','Not Sticky'=>'Not Sticky','Allow Pings'=>'Allow Pings','Allow Comments'=>'Allow Comments','Do not allow'=>'Do not allow','Allow'=>'Allow','–OR–'=>'–OR–','— No Change —'=>'— No Change —','Bulk Edit'=>'Bulk Edit','Visible'=>'Visible','Relationship'=>'Relationship','column nameComment'=>'Comment','column nameDate'=>'Date','column nameFile'=>'File','column nameTitle'=>'Title','Quick Edit'=>'Quick Edit','Quick Edit'=>'Quick Edit','Warning! Wildcard DNS may not be configured correctly!'=>'Warning! Wildcard DNS may not be configured correctly!','Just another %s site'=>'Just another %s site','Just another WordPress site'=>'Just another WordPress site','Permalink:'=>'Permalink:','Auto Draft'=>'Auto Draft','Sorry, you are not allowed to edit posts as this user.'=>'Sorry, you are not allowed to edit posts as this user.','Sorry, you are not allowed to edit pages as this user.'=>'Sorry, you are not allowed to edit pages as this user.','The plugin does not have a valid header.'=>'The plugin does not have a valid header.','Plugin file does not exist.'=>'Plugin file does not exist.','Invalid plugin path.'=>'Invalid plugin path.','Could not fully remove the plugins %s.'=>'Could not fully remove the plugins %s.','One of the plugins is invalid.'=>'One of the plugins is invalid.','The plugin generated unexpected output.'=>'The plugin generated unexpected output.','Warning: This plugin has not been tested with your current version of WordPress.'=>'Warning: this plugin has not been tested with your current version of WordPress.','Average Rating'=>'Average Rating','WordPress.org Plugin Page »'=>'WordPress.org Plugin Page »','Compatible up to:'=>'Compatible up to:','%s or higher'=>'%s or higher','Requires WordPress Version:'=>'Requires WordPress:','Last Updated:'=>'Last Updated:','(based on %s rating)'=>'(based on %s rating)' . "\0" . '(based on %s ratings)','Plugin zip file'=>'Plugin zip file','If you have a plugin in a .zip format, you may install or update it by uploading it here.'=>'If you have a plugin in a .zip format, you may install or update it by uploading it here.','Search Plugins'=>'Search Plugins','You may also browse based on the most popular tags in the Plugin Directory:'=>'You may also browse based on the most popular tags in the Plugin Directory:','Popular tags'=>'Popular tags','(Leave at 0 for no rating.)'=>'(Leave at 0 for no rating.)','Rating'=>'Rating','Notes'=>'Notes','RSS Address'=>'RSS Address','Image Address'=>'Image Address','If the link is to a person, you can specify your relationship with them using the above form. If you would like to learn more about the idea check out XFN.'=>'If the link is to a person, you can specify your relationship with them using the above form. If you would like to learn more about the idea, check out XFN.','sweetheart'=>'sweetheart','date'=>'date','crush'=>'crush','muse'=>'muse','romantic'=>'romantic','spouse'=>'spouse','sibling'=>'sibling','parent'=>'parent','kin'=>'kin','child'=>'child','family'=>'family','neighbor'=>'neighbour','co-resident'=>'co-resident','geographical'=>'geographical','colleague'=>'colleague','co-worker'=>'co-worker','professional'=>'professional','met'=>'met','physical'=>'physical','friend'=>'friend','acquaintance'=>'acquaintance','contact'=>'contact','friendship'=>'friendship','another web address of mine'=>'another web address of mine','identity'=>'identity','rel:'=>'rel:','Choose the target frame for your link.'=>'Choose the target frame for your link.','_none — same window or tab.'=>'_none — same window or tab.','_top — current window or tab, with no frames.'=>'_top — current window or tab, with no frames.','_blank — new window or tab.'=>'_blank — new window or tab.','You are about to delete this link \'%s\' + \'Cancel\' to stop, \'OK\' to delete.','Theme deleted.'=>'Theme deleted.','Select theme to edit:'=>'Select theme to edit:','Edit Themes'=>'Edit Themes','Tags:'=>'Tags:','Compare Revisions of “%s”'=>'Compare revisions of “%s”','You cannot edit this item because it is in the Trash. Please restore it and try again.'=>'You cannot edit this item because it is in the Bin. Please restore it and try again.','Sorry, you are not allowed to edit this item.'=>'Sorry, you are not allowed to edit this item.','You attempted to edit an item that does not exist. Perhaps it was deleted?'=>'You attempted to edit an item that does not exist. Perhaps it was deleted?','No plugins found.'=>'No plugins found.','Inactive (%s)'=>'Inactive (%s)' . "\0" . 'Inactive (%s)','Recently Active (%s)'=>'Recently Active (%s)' . "\0" . 'Recently Active (%s)','Active (%s)'=>'Active (%s)' . "\0" . 'Active (%s)','pluginsAll (%s)'=>'All (%s)' . "\0" . 'All (%s)','Clear List'=>'Clear List','Visit plugin site'=>'Visit plugin site','Plugin could not be deleted due to an error: %s'=>'Plugin could not be deleted due to an error: %s','Plugin could not be activated because it triggered a fatal error.'=>'Plugin could not be activated because it triggered a fatal error.','If something goes wrong with a plugin and you cannot use WordPress, delete or rename that file in the %s directory and it will be automatically deactivated.'=>'If something goes wrong with a plugin and you cannot use WordPress, delete or rename that file in the %s directory and it will be automatically deactivated.','Plugins extend and expand the functionality of WordPress. Once a plugin is installed, you may activate it or deactivate it here.'=>'Plugins extend and expand the functionality of WordPress. Once a plugin is installed, you may activate it or deactivate it here.','No, return me to the plugin list'=>'No, return me to the plugin list','Yes, delete these files'=>'Yes, delete these files','Are you sure you want to delete these files?'=>'Are you sure you want to delete these files?','Plugin InstallerPopular'=>'Popular','Plugin InstallerFeatured'=>'Featured','Update File'=>'Update File','Documentation:'=>'Documentation:','Plugin Files'=>'Plugin Files','Select plugin to edit:'=>'Select plugin to edit:','File edited successfully.'=>'File edited successfully.','Files of this type are not editable.'=>'Files of this type are not editable.','Edit Plugins'=>'Edit Plugins','All Settings'=>'All Settings','Update Services'=>'Update Services','Default Mail Category'=>'Default Mail Category','Login Name'=>'Login Name','Port'=>'Port','Mail Server'=>'Mail Server','To post to WordPress by email, you must set up a secret email account with POP3 access. Any mail received at this address will be posted, so it’s a good idea to keep this address very secret. Here are three random strings you could use: %1$s, %2$s, %3$s.'=>'To post to WordPress by email, you must set up a secret email account with POP3 access. Any mail received at this address will be posted, so it’s a good idea to keep this address very secret. Here are three random strings you could use: %1$s, %2$s, %3$s.','Post via email'=>'Post via email','Default Link Category'=>'Default Link Category','Default Post Category'=>'Default Post Category','WordPress should correct invalidly nested XHTML automatically'=>'WordPress should correct invalidly nested XHTML automatically','Convert emoticons like :-) and :-P to graphics on display'=>'Convert emoticons like :-) and :-P to graphics on display','Formatting'=>'Formatting','Writing Settings'=>'Writing Settings','Encoding for pages and feeds'=>'Encoding for pages and feeds','Full text'=>'Full text','Syndication feeds show the most recent'=>'Syndication feeds show the most recent','posts'=>'posts','Blog pages show at most'=>'Blog pages show at most','Warning: these pages should not be the same!'=>'Warning: these pages should not be the same!','Posts page: %s'=>'Posts page: %s','A static page (select below)'=>'A static page (select below)','Reading Settings'=>'Reading Settings','Privacy Settings'=>'Privacy Settings','If you temporarily make your site’s root directory writable to generate the %s file automatically, do not forget to revert the permissions after the file has been created.'=>'If you temporarily make your site’s root directory writable to generate the %s file automatically, do not forget to revert the permissions after the file has been created.','If you temporarily make your %s file writable to generate rewrite rules automatically, do not forget to revert the permissions after the rule has been saved.'=>'If you temporarily make your %s file writable to generate rewrite rules automatically, do not forget to revert the permissions after the rule has been saved.','Tag base'=>'Tag base','Category base'=>'Category base','Optional'=>'Optional','Custom Structure'=>'Custom Structure','Numeric'=>'Numeric','Month and name'=>'Month and name','Day and name'=>'Day and name','Permalink structure updated.'=>'Permalink structure updated.','Permalink structure updated. Remove write access on %s file now!'=>'Permalink structure updated. Remove write access on %s file now!','Permalink Settings'=>'Permalink Settings','Organize my uploads into month- and year-based folders'=>'Organise my uploads into month- and year-based folders','Configuring this is optional. By default, it should be blank.'=>'Configuring this is optional. By default, it should be blank.','Full URL path to files'=>'Full URL path to files','Store uploads in this folder'=>'Store uploads in this folder','Uploading Files'=>'Uploading Files','Large size'=>'Large size','Max Height'=>'Max Height','Max Width'=>'Max Width','Medium size'=>'Medium size','Crop thumbnail to exact dimensions (normally thumbnails are proportional)'=>'Crop thumbnail to exact dimensions (normally thumbnails are proportional)','Thumbnail size'=>'Thumbnail size','Image sizes'=>'Image sizes','Media Settings'=>'Media Settings','Week Starts On'=>'Week Starts On','Custom:'=>'Custom:','This timezone is currently in standard time.'=>'This time zone is currently in standard time.','Timezone'=>'Time zone','New User Default Role'=>'New User Default Role','Anyone can register'=>'Anyone can register','Membership'=>'Membership','General Settings'=>'General Settings','MonsterID (Generated)'=>'MonsterID (Generated)','Wavatar (Generated)'=>'Wavatar (Generated)','Identicon (Generated)'=>'Identicon (Generated)','Gravatar Logo'=>'Gravatar Logo','Blank'=>'Blank','For users without a custom avatar of their own, you can either display a generic logo or a generated one based on their email address.'=>'For users without a custom avatar of their own, you can either display a generic logo or a generated one based on their email address.','X — Even more mature than above'=>'X — Even more mature than above','R — Intended for adult audiences above 17'=>'R — Intended for adult audiences above 17','PG — Possibly offensive, usually for audiences 13 and above'=>'PG — Possibly offensive, usually for audiences 13 and above','G — Suitable for all audiences'=>'G — Suitable for all audiences','Maximum Rating'=>'Maximum Rating','Show Avatars'=>'Show Avatars','Avatar Display'=>'Avatar Display','Avatars'=>'Avatars','When a comment contains any of these words in its content, author name, URL, email, IP address, or browser’s user agent string, it will be put in the Trash. One word or IP address per line. It will match inside words, so “press” will match “WordPress”.'=>'When a comment contains any of these words in its content, author name, URL, email, IP address, or browser’s user agent string, it will be put in the Bin. One word or IP address per line. It will match inside words, so “press” will match “WordPress”.','When a comment contains any of these words in its content, author name, URL, email, IP address, or browser’s user agent string, it will be held in the moderation queue. One word or IP address per line. It will match inside words, so “press” will match “WordPress”.'=>'When a comment contains any of these words in its content, author name, URL, email, IP address, or browser’s user agent string, it will be held in the moderation queue. One word or IP address per line. It will match inside words, so “press” will match “WordPress”.','Hold a comment in the queue if it contains %s or more links. (A common characteristic of comment spam is a large number of hyperlinks.)'=>'Hold a comment in the queue if it contains %s or more links. (A common characteristic of comment spam is a large number of hyperlinks.)','Comment Moderation'=>'Comment Moderation','Comment author must have a previously approved comment'=>'Comment author must have a previously approved comment','Before a comment appears'=>'Before a comment appears','A comment is held for moderation'=>'A comment is held for moderation','Anyone posts a comment'=>'Anyone posts a comment','Email me whenever'=>'Email me whenever','newer'=>'newer','older'=>'older','Users must be registered and logged in to comment'=>'Users must be registered and logged in to comment','Comment author must fill out name and email'=>'Comment author must fill out name and email','Other comment settings'=>'Other comment settings','Discussion Settings'=>'Discussion Settings','No users found.'=>'No users found.','Update Themes'=>'Update Themes','Visit'=>'Visit','Removed'=>'Removed','Multisite support is not enabled.'=>'Multisite support is not enabled.','Permalinks'=>'Permalinks','Privacy'=>'Privacy','Reading'=>'Reading','Writing'=>'Writing','settings screenGeneral'=>'General','Profile'=>'Profile','Comments %s'=>'Comments %s','Library'=>'Library','Upload New Media'=>'Upload New Media','Repair and Optimize Database'=>'Repair and Optimise Database','Repair Database'=>'Repair Database','Some database problems could not be repaired. Please copy-and-paste the following list of errors to the WordPress support forums to get additional assistance.'=>'Some database problems could not be repaired. Please copy-and-paste the following list of errors to the WordPress support forums to get additional assistance.','WordPress › Database Repair'=>'WordPress › Database Repair','Link not found.'=>'Link not found.','No links found.'=>'No links found.','Search Links'=>'Search Links','%s link deleted.'=>'%s link deleted.' . "\0" . '%s links deleted','Success!'=>'Success!','Please provide the following information. Do not worry, you can always change these settings later.'=>'Please provide the following information. Do not worry, you can always change these settings later.','Information needed'=>'Information needed','Install WordPress'=>'Install WordPress','Double-check your email address before continuing.'=>'Double-check your email address before continuing.','Your Email'=>'Your Email','User(s) already exists.'=>'User(s) already exists.','WordPress › Installation'=>'WordPress › Installation','Error: Please enter an email address.'=>'Error: Please enter an email address.','Error: Passwords may not contain the character "\\".'=>'Error: Passwords may not contain the character "\\".','Error: Please enter a password.'=>'Error: Please enter a password.','Default post slughello-world'=>'hello-world','Hello world!'=>'Hello world!','Welcome to %s. This is your first post. Edit or delete it, then start writing!'=>'Welcome to %s. This is your first post. Edit or delete it, then start writing!','Default category slugUncategorized'=>'Uncategorised','Note that password carefully! It is a random password that was generated just for you.'=>'Note that password carefully! It is a random password that was generated just for you.','An automated WordPress update has failed to complete! Please notify the site administrator.'=>'An automated WordPress update has failed to complete! Please notify the site administrator.','An automated WordPress update has failed to complete - please attempt the update again now.'=>'An automated WordPress update has failed to complete - please attempt the update again now.','Latest'=>'Latest','Update to %s'=>'Update to %s','You are using a development version (%1$s). Cool! Please stay updated.'=>'You are using a development version (%1$s). Cool! Please stay updated.','Upgrading database…'=>'Upgrading database…','The update could not be unpacked'=>'The update could not be unpacked','Verifying the unpacked files…'=>'Verifying the unpacked files…','The update cannot be installed because WordPress %1$s requires MySQL version %2$s or higher. You are running version %3$s.'=>'The update cannot be installed because WordPress %1$s requires MySQL version %2$s or higher. You are running version %3$s.','The update cannot be installed because WordPress %1$s requires PHP version %2$s or higher. You are running version %3$s.'=>'The update cannot be installed because WordPress %1$s requires PHP version %2$s or higher. You are running version %3$s.','The update cannot be installed because WordPress %1$s requires PHP version %2$s or higher and MySQL version %3$s or higher. You are running PHP version %4$s and MySQL version %5$s.'=>'The update cannot be installed because WordPress %1$s requires PHP version %2$s or higher and MySQL version %3$s or higher. You are running PHP version %4$s and MySQL version %5$s.','Could not fully remove the theme %s.'=>'Could not fully remove the theme %s.','Unable to locate WordPress theme directory.'=>'Unable to locate WordPress theme directory.','This theme is already installed.'=>'This theme is already installed.','Version: %s'=>'Version: %s','If you have a theme in a .zip format, you may install or update it by uploading it here.'=>'If you have a theme in a .zip format, you may install or update it by uploading it here.','Find Themes'=>'Find Themes','Holiday'=>'Holiday','Subject'=>'Subject','Sticky Post'=>'Sticky Post','Theme Options'=>'Theme Options','Features'=>'Features','Right Sidebar'=>'Right Sidebar','Left Sidebar'=>'Left Sidebar','Four Columns'=>'Four Columns','Three Columns'=>'Three Columns','Two Columns'=>'Two Columns','One Column'=>'One Column','Feature Filter'=>'Feature Filter','Screen Options'=>'Screen Options','Disable accessibility mode'=>'Disable accessibility mode','Enable accessibility mode'=>'Enable accessibility mode','Install Themes'=>'Install Themes','Upload file and import'=>'Upload file and import','Maximum size: %s'=>'Maximum size: %s','Choose a file from your computer:'=>'Choose a file from your computer:','Before you can upload your import file, you will need to fix the following error:'=>'Before you can upload your import file, you will need to fix the following error:','Add Custom Field'=>'Add Custom Field','Enter new'=>'Enter new','Key'=>'Key','Comment by %s marked as spam.'=>'Comment by %s marked as spam.','Comment by %s moved to the Trash.'=>'Comment by %s moved to the Bin.','Submit Reply'=>'Submit Reply','Reply to Comment'=>'Reply to Comment','Missed schedule'=>'Missed schedule','Make this post sticky'=>'Make this post sticky','Not Sticky'=>'Not Sticky','Allow Pings'=>'Allow Pings','Allow Comments'=>'Allow Comments','Do not allow'=>'Do not allow','Allow'=>'Allow','–OR–'=>'–OR–','— No Change —'=>'— No Change —','Bulk Edit'=>'Bulk Edit','Visible'=>'Visible','Relationship'=>'Relationship','column nameComment'=>'Comment','column nameDate'=>'Date','column nameFile'=>'File','column nameTitle'=>'Title','Quick Edit'=>'Quick Edit','Quick Edit'=>'Quick Edit','Warning! Wildcard DNS may not be configured correctly!'=>'Warning! Wildcard DNS may not be configured correctly!','Just another %s site'=>'Just another %s site','Just another WordPress site'=>'Just another WordPress site','Auto Draft'=>'Auto Draft','Sorry, you are not allowed to edit posts as this user.'=>'Sorry, you are not allowed to edit posts as this user.','Sorry, you are not allowed to edit pages as this user.'=>'Sorry, you are not allowed to edit pages as this user.','The plugin does not have a valid header.'=>'The plugin does not have a valid header.','Plugin file does not exist.'=>'Plugin file does not exist.','Invalid plugin path.'=>'Invalid plugin path.','Could not fully remove the plugins %s.'=>'Could not fully remove the plugins %s.','One of the plugins is invalid.'=>'One of the plugins is invalid.','The plugin generated unexpected output.'=>'The plugin generated unexpected output.','Warning: This plugin has not been tested with your current version of WordPress.'=>'Warning: this plugin has not been tested with your current version of WordPress.','Average Rating'=>'Average Rating','WordPress.org Plugin Page »'=>'WordPress.org Plugin Page »','Compatible up to:'=>'Compatible up to:','%s or higher'=>'%s or higher','Requires WordPress Version:'=>'Requires WordPress:','Last Updated:'=>'Last Updated:','(based on %s rating)'=>'(based on %s rating)' . "\0" . '(based on %s ratings)','Plugin zip file'=>'Plugin zip file','If you have a plugin in a .zip format, you may install or update it by uploading it here.'=>'If you have a plugin in a .zip format, you may install or update it by uploading it here.','Search Plugins'=>'Search Plugins','You may also browse based on the most popular tags in the Plugin Directory:'=>'You may also browse based on the most popular tags in the Plugin Directory:','Popular tags'=>'Popular tags','(Leave at 0 for no rating.)'=>'(Leave at 0 for no rating.)','Rating'=>'Rating','Notes'=>'Notes','RSS Address'=>'RSS Address','Image Address'=>'Image Address','If the link is to a person, you can specify your relationship with them using the above form. If you would like to learn more about the idea check out XFN.'=>'If the link is to a person, you can specify your relationship with them using the above form. If you would like to learn more about the idea, check out XFN.','sweetheart'=>'sweetheart','date'=>'date','crush'=>'crush','muse'=>'muse','romantic'=>'romantic','spouse'=>'spouse','sibling'=>'sibling','parent'=>'parent','kin'=>'kin','child'=>'child','family'=>'family','neighbor'=>'neighbour','co-resident'=>'co-resident','geographical'=>'geographical','colleague'=>'colleague','co-worker'=>'co-worker','professional'=>'professional','met'=>'met','physical'=>'physical','friend'=>'friend','acquaintance'=>'acquaintance','contact'=>'contact','friendship'=>'friendship','another web address of mine'=>'another web address of mine','identity'=>'identity','rel:'=>'rel:','Choose the target frame for your link.'=>'Choose the target frame for your link.','_none — same window or tab.'=>'_none — same window or tab.','_top — current window or tab, with no frames.'=>'_top — current window or tab, with no frames.','_blank — new window or tab.'=>'_blank — new window or tab.','You are about to delete this link \'%s\' \'Cancel\' to stop, \'OK\' to delete.'=>'You are about to delete this link \'%s\' - \'Cancel\' to stop, \'OK\' to delete.','Keep this link private'=>'Keep this link private','Visit Link'=>'Visit Link','Main Page (no parent)'=>'Main Page (no parent)','Show comments'=>'Show comments','Separate multiple URLs with spaces'=>'Separate multiple URLs with spaces','Send trackbacks to:'=>'Send trackbacks to:','Already pinged:'=>'Already pinged:','New category name'=>'New category name','+ Add New Category'=>'+ Add New Category','Publish immediately'=>'Publish immediately','Stick this post to the front page'=>'Stick this post to the front page','Status:'=>'Status:','Preview Changes'=>'Preview Changes','Link text, e.g. “Ransom Demands (PDF)”'=>'Link text, e.g. “Ransom Demands (PDF)”','Link to image'=>'Link to image','Link Image To:'=>'Link Image To:','Image Caption'=>'Image Caption','Filter »'=>'Filter »','All Types'=>'All Types','Search Media'=>'Search Media','Update gallery settings'=>'Update gallery settings','Gallery columns:'=>'Gallery columns:','Order:'=>'Order:','Random'=>'Random','Date/Time'=>'Date/Time','Menu order'=>'Menu order','Order images by:'=>'Order images by:','Image File'=>'Image File','Link thumbnails to:'=>'Link thumbnails to:','Descending'=>'Descending','Ascending'=>'Ascending','Sort Order:'=>'Sort Order:','All Tabs:'=>'All Tabs:','Save all changes'=>'Save all changes','Add media files from your computer'=>'Add media files from your computer','Insert into Post'=>'Insert into Post','Upload date:'=>'Upload date:','Hide'=>'Hide','Location of the uploaded file.'=>'Location of the uploaded file.','Alt text for the image, e.g. “The Mona Lisa”'=>'Alt text for the image, e.g. “The Mona Lisa”','File URL'=>'File URL','WordPress'=>'WordPress','Uploads'=>'Uploads','Gallery (%s)'=>'Gallery (%s)','From URL'=>'From URL','From Computer'=>'From Computer','Image saved'=>'Image saved','Unable to save the image.'=>'Unable to save the image.','Nothing to save, the image has not changed.'=>'Nothing to save, the image has not changed.','Error while saving the scaled image. Please reload the page and try again.'=>'Error while saving the scaled image. Please reload the page and try again.','Unable to create new image.'=>'Unable to create new image.','Image restored successfully.'=>'Image restored successfully.','Image metadata is inconsistent.'=>'Image metadata is inconsistent.','Cannot save image metadata.'=>'Cannot save image metadata.','Cannot load image metadata.'=>'Cannot load image metadata.','All sizes except thumbnail'=>'All sizes except thumbnail','All image sizes'=>'All image sizes','Apply changes to:'=>'Apply changes to:','Current thumbnail'=>'Current thumbnail','Thumbnail Settings'=>'Thumbnail Settings','Selection:'=>'Selection:','Aspect ratio:'=>'Aspect ratio:','Crop Selection'=>'Crop Selection','Crop Aspect Ratio'=>'Crop Aspect Ratio','Restore image'=>'Restore image','Previously edited copies of the image will not be deleted.'=>'Previously edited copies of the image will not be deleted.','Discard any changes and restore the original image.'=>'Discard any changes and restore the original image.','Restore Original Image'=>'Restore Original Image','Original dimensions %s'=>'Original dimensions %s','Scale Image'=>'Scale Image','Flip horizontal'=>'Flip horizontally','Flip vertical'=>'Flip vertically','Image data does not exist. Please re-upload the image.'=>'Image data does not exist. Please re-upload the image.','Proceed'=>'Proceed','Connection Type'=>'Connection Type','Private Key:'=>'Private Key:','Public Key:'=>'Public Key:','Authentication Keys'=>'Authentication Keys','Hostname'=>'Hostname','Connection Information'=>'Connection Information','SSH2'=>'SSH2','FTPS (SSL)'=>'FTPS (SSL)','FTP'=>'FTP','Empty archive.'=>'Empty archive.','Could not copy file.'=>'Could not copy file.','Could not extract file from archive.'=>'Could not extract file from archive.','Could not retrieve file from archive.'=>'Could not retrieve file from archive.','Could not create temporary file.'=>'Could not create temporary file.','Specified file failed upload test.'=>'Specified file failed upload test.','Invalid form submission.'=>'Invalid form submission.','File upload stopped by extension.'=>'File upload stopped by extension.','Failed to write file to disk.'=>'Failed to write file to disk.','Missing a temporary folder.'=>'Missing a temporary folder.','No file was uploaded.'=>'No file was uploaded.','The uploaded file was only partially uploaded.'=>'The uploaded file was only partially uploaded.','Sorry, that file cannot be edited.'=>'Sorry, that file cannot be edited.','Popup Comments Template'=>'Popup Comments Template','Comments Template'=>'Comments Template','.htaccess (for rewrite rules )'=>'.htaccess (for rewrite rules )','my-hacks.php (legacy hacks support)'=>'my-hacks.php (legacy hacks support)','Application Attachment Template'=>'Application Attachment Template','Audio Attachment Template'=>'Audio Attachment Template','Video Attachment Template'=>'Video Attachment Template','Image Attachment Template'=>'Image Attachment Template','Attachment Template'=>'Attachment Template','Theme Functions'=>'Theme Functions','Links Template'=>'Links Template','404 Template'=>'404 Template','Single Post'=>'Single Post','Search Form'=>'Search Form','Search Requests'=>'Search Requests','Category Template'=>'Category Template','Popup Comments'=>'Popup Comments','RTL Stylesheet'=>'RTL Stylesheet','Main Index Template'=>'Main Index Template','This widget requires JavaScript.'=>'This widget requires JavaScript.','dashboard%1$s %2$s'=>'%1$s %2$s','[Pending]'=>'[Pending]','From %1$s on %2$s %3$s'=>'From %1$s on %2$s %3$s','Move this comment to the Trash'=>'Move this comment to the bin','verbSpam'=>'Spam','Mark this comment as spam'=>'Mark this comment as spam','Reply to this comment'=>'Reply to this comment','Unapprove this comment'=>'Unapprove this comment','Approve this comment'=>'Approve this comment','Page'=>'Page' . "\0" . 'Pages','Configure'=>'Configure','View all'=>'View all','Other WordPress News'=>'Other WordPress News','Right Now'=>'Right Now','The uploaded file could not be moved to %s.'=>'The uploaded file could not be moved to %s.','Please select a file'=>'Please select a file','Return to the Theme Installer'=>'Return to the theme installer','Preview “%s”'=>'Preview “%s”','Successfully installed the theme %1$s %2$s.'=>'Successfully installed the theme %1$s %2$s.','Return to the Plugin Installer'=>'Return to the plugin installer','Successfully installed the plugin %1$s %2$s.'=>'Successfully installed the plugin %1$s %2$s.','Activate Plugin'=>'Activate Plugin','Could not copy files.'=>'Could not copy files.','WordPress is at the latest version.'=>'WordPress is at the latest version.','Theme installed successfully.'=>'Theme installed successfully.','Installing the theme…'=>'Installing the theme…','Could not remove the old theme.'=>'Could not remove the old theme.','Removing the old version of the theme…'=>'Removing the old version of the theme…','The theme is at the latest version.'=>'The theme is at the latest version.','Plugin installed successfully.'=>'Plugin installed successfully.','Installing the plugin…'=>'Installing the plugin…','Unpacking the package…'=>'Unpacking the package…','Installation package not available.'=>'Installation package not available.','Could not remove the old plugin.'=>'Could not remove the old plugin.','Removing the old version of the plugin…'=>'Removing the old version of the plugin…','Unpacking the update…'=>'Unpacking the update…','The plugin is at the latest version.'=>'The plugin is at the latest version.','Disabling Maintenance mode…'=>'Disabling Maintenance mode…','Enabling Maintenance mode…'=>'Enabling Maintenance mode…','Incompatible Archive.'=>'Incompatible Archive.','Could not create directory.'=>'Could not create directory.','Destination folder already exists.'=>'Destination folder already exists.','Installing the latest version…'=>'Installing the latest version…','Download failed.'=>'Download failed.','Unable to locate needed folder (%s).'=>'Unable to locate needed folder (%s).','Unable to locate WordPress content directory'=>'Unable to locate WordPress content directory','Unable to locate WordPress plugin directory.'=>'Unable to locate WordPress plugin directory.','Unable to locate WordPress root directory.'=>'Unable to locate WordPress root directory.','Filesystem error.'=>'Filesystem error.','Could not access filesystem'=>'Could not access filesystem','Invalid data provided.'=>'Invalid data provided.','Unable to perform command: %s'=>'Unable to perform command: %s','Public and Private keys incorrect for %s'=>'Public and Private keys incorrect for %s','Failed to connect to SSH2 Server %s'=>'Failed to connect to SSH2 Server %s','SSH2 password is required'=>'SSH2 password is required','SSH2 username is required'=>'SSH2 username is required','SSH2 hostname is required'=>'SSH2 hostname is required','The ssh2 PHP extension is not available'=>'The ssh2 PHP extension is not available','Username/Password incorrect for %s'=>'Username/Password incorrect for %s','Failed to connect to FTP Server %s'=>'Failed to connect to FTP Server %s','FTP password is required'=>'FTP password is required','FTP username is required'=>'FTP username is required','FTP hostname is required'=>'FTP hostname is required','The ftp PHP extension is not available'=>'The ftp PHP extension is not available','Found %s'=>'Found %s','Changing to %s'=>'Changing to %s','Could not insert link into the database.'=>'Could not insert link into the database.','Could not update link in the database.'=>'Could not update link in the database.','Movable Type and TypePad'=>'Movable Type and TypePad','LiveJournal'=>'LiveJournal','Try Again'=>'Try Again','Blogger'=>'Blogger','No importers are available.'=>'No importers are available.','Download Export File'=>'Download Export File','This format, which is called WordPress eXtended RSS or WXR, will contain your posts, pages, comments, custom fields, categories, and tags.'=>'This format, which is called WordPress eXtended RSS or WXR, will contain your posts, pages, comments, custom fields, categories, and tags.','When you click the button below WordPress will create an XML file for you to save to your computer.'=>'When you click the button below WordPress will create an XML file for you to save to your computer.','Export'=>'Export','postsAll (%s)'=>'All (%s)' . "\0" . 'All (%s)','postsMine (%s)'=>'Mine (%s)' . "\0" . 'Mine (%s)','%s pattern not updated, somebody is editing it.'=>'%s pattern not updated, somebody is editing it.' . "\0" . '%s patterns not updated, somebody is editing them.','%s post updated.'=>'%s post updated.' . "\0" . '%s posts updated.','Sorry, you are not allowed to delete this item.'=>'Sorry, you are not allowed to delete this item.','Item not added.'=>'Item not added.','Item updated.'=>'Item updated.','Item deleted.'=>'Item deleted.','Categories, unlike tags, can have a hierarchy. You might have a Jazz category, and under that have children categories for Bebop and Big Band. Totally optional.'=>'Categories, unlike tags, can have a hierarchy. You might have a Jazz category, and under that have children categories for Bebop and Big Band. Totally optional.','This will be shown when someone hovers over the link in the blogroll, or optionally below the link.'=>'This will be shown when someone hovers over the link in the blogroll, or optionally below the link.','Example: https://wordpress.org/ — do not forget the https://'=>'Example: https://wordpress.org/ — do not forget the https://','Web Address'=>'Web Address','Example: Nifty blogging software'=>'Example: Nifty blogging software','Link added.'=>'Link added.','Links / Add New Link'=>'Links / Add New Link','Update Link'=>'Update Link','Links / Edit Link'=>'Links / Edit Link','Visit site'=>'Visit site','Update Comment'=>'Update Comment','Last edited on %1$s at %2$s'=>'Last edited on %1$s at %2$s','Last edited by %1$s on %2$s at %3$s'=>'Last edited by %1$s on %2$s at %3$s','Custom Fields'=>'Custom Fields','Send Trackbacks'=>'Send Trackbacks','Page restored to revision from %s.'=>'Page restored to revision from %s.','Post saved.'=>'Post saved.','Post restored to revision from %s.'=>'Post restored to revision from %s.','Custom field deleted.'=>'Custom field deleted.','Custom field updated.'=>'Custom field updated.','No comments found.'=>'No comments found.','Empty Trash'=>'Empty Bin','Empty Spam'=>'Empty Spam','Filter'=>'Filter','Pings'=>'Pings','Approve'=>'Approve','Unapprove'=>'Unapprove','Bulk actions'=>'Bulk actions','Displaying %1$s–%2$s of %3$s'=>'Displaying %1$s–%2$s of %3$s','Search Comments'=>'Search Comments','Approved'=>'Approved' . "\0" . 'Approved','%s comment permanently deleted.'=>'%s comment permanently deleted.' . "\0" . '%s comments permanently deleted.','%s comment restored from the spam.'=>'%s comment restored from the spam.' . "\0" . '%s comments restored from the spam.','%s comment marked as spam.'=>'%s comment marked as spam.' . "\0" . '%s comments marked as spam.','%s comment approved.'=>'%s comment approved.' . "\0" . '%s comments approved.','Attach'=>'Attach','(Unattached)'=>'(Unattached)','Unpublished'=>'Unpublished','View “%s”'=>'View “%s”','Delete Permanently'=>'Delete Permanently','Edit “%s”'=>'Edit “%s”','Choose the part of the image you want to use as your header.'=>'Choose the part of the image you want to use as your header.','Image Processing Error'=>'Image Processing Error','Header updated. Visit your site to see how it looks.'=>'Header updated. Visit your site to see how it looks.','Custom Header'=>'Custom Header','Save Changes'=>'Save Changes','Choose an image from your computer:'=>'Choose an image from your computer:','Background updated. Visit your site to see how it looks.'=>'Background updated. Visit your site to see how it looks.','Custom Background'=>'Custom Background','Unknown action.'=>'Unknown action.','Approve comment'=>'Approve comment','You are about to approve the following comment:'=>'You are about to approve the following comment:','Permanently delete comment'=>'Permanently delete comment','You are about to delete the following comment:'=>'You are about to delete the following comment:','You are about to move the following comment to the Trash:'=>'You are about to move the following comment to the Bin:','You are about to mark the following comment as spam:'=>'You are about to mark the following comment as spam:','This comment is in the Trash. Please move it out of the Trash if you want to edit it.'=>'This comment is in the Bin. Please move it out of the Bin if you want to edit it.','Sorry, you are not allowed to edit comments on this post.'=>'Sorry, you are not allowed to edit comments on this post.','Go Back'=>'Go Back','Edit Comment'=>'Edit Comment','Import'=>'Import','Cannot load %s.'=>'Cannot load %s.','Invalid plugin page.'=>'Invalid plugin page.','Item not updated.'=>'Item not updated.','Saving is disabled: %s is currently editing this post.'=>'Saving is disabled: %s is currently editing this post.','Saving is disabled: %s is currently editing this page.'=>'Saving is disabled: %s is currently editing this page.','Someone'=>'Someone','Draft saved at %s.'=>'Draft saved at %s.','g:i:s a'=>'H:i:s','Please provide a custom field value.'=>'Please provide a custom field value.','Sorry, you must be logged in to reply to a comment.'=>'Sorry, you must be logged in to reply to a comment.','You did not enter a category name.'=>'You did not enter a category name.','Comment %d does not exist'=>'Comment %d does not exist','»'=>'»','«'=>'«']]; \ No newline at end of file + \'Cancel\' to stop, \'OK\' to delete.','Keep this link private'=>'Keep this link private','Visit Link'=>'Visit Link','Main Page (no parent)'=>'Main Page (no parent)','Show comments'=>'Show comments','Separate multiple URLs with spaces'=>'Separate multiple URLs with spaces','Send trackbacks to:'=>'Send trackbacks to:','Already pinged:'=>'Already pinged:','New category name'=>'New category name','Publish immediately'=>'Publish immediately','Stick this post to the front page'=>'Stick this post to the front page','Status:'=>'Status:','Preview Changes'=>'Preview Changes','Link text, e.g. “Ransom Demands (PDF)”'=>'Link text, e.g. “Ransom Demands (PDF)”','Link to image'=>'Link to image','Link Image To:'=>'Link Image To:','Image Caption'=>'Image Caption','Filter »'=>'Filter »','All Types'=>'All Types','Search Media'=>'Search Media','Update gallery settings'=>'Update gallery settings','Gallery columns:'=>'Gallery columns:','Order:'=>'Order:','Random'=>'Random','Date/Time'=>'Date/Time','Menu order'=>'Menu order','Order images by:'=>'Order images by:','Image File'=>'Image File','Link thumbnails to:'=>'Link thumbnails to:','Descending'=>'Descending','Ascending'=>'Ascending','Sort Order:'=>'Sort Order:','All Tabs:'=>'All Tabs:','Save all changes'=>'Save all changes','Add media files from your computer'=>'Add media files from your computer','Insert into Post'=>'Insert into Post','Upload date:'=>'Upload date:','Hide'=>'Hide','Location of the uploaded file.'=>'Location of the uploaded file.','Alt text for the image, e.g. “The Mona Lisa”'=>'Alt text for the image, e.g. “The Mona Lisa”','File URL'=>'File URL','WordPress'=>'WordPress','Uploads'=>'Uploads','Gallery (%s)'=>'Gallery (%s)','From URL'=>'From URL','From Computer'=>'From Computer','Image saved'=>'Image saved','Unable to save the image.'=>'Unable to save the image.','Nothing to save, the image has not changed.'=>'Nothing to save, the image has not changed.','Error while saving the scaled image. Please reload the page and try again.'=>'Error while saving the scaled image. Please reload the page and try again.','Unable to create new image.'=>'Unable to create new image.','Image restored successfully.'=>'Image restored successfully.','Image metadata is inconsistent.'=>'Image metadata is inconsistent.','Cannot save image metadata.'=>'Cannot save image metadata.','Cannot load image metadata.'=>'Cannot load image metadata.','All sizes except thumbnail'=>'All sizes except thumbnail','All image sizes'=>'All image sizes','Apply changes to:'=>'Apply changes to:','Current thumbnail'=>'Current thumbnail','Thumbnail Settings'=>'Thumbnail Settings','Selection:'=>'Selection:','Aspect ratio:'=>'Aspect ratio:','Crop Selection'=>'Crop Selection','Crop Aspect Ratio'=>'Crop Aspect Ratio','Restore image'=>'Restore image','Previously edited copies of the image will not be deleted.'=>'Previously edited copies of the image will not be deleted.','Discard any changes and restore the original image.'=>'Discard any changes and restore the original image.','Restore Original Image'=>'Restore Original Image','Original dimensions %s'=>'Original dimensions %s','Scale Image'=>'Scale Image','Flip horizontal'=>'Flip horizontally','Flip vertical'=>'Flip vertically','Image data does not exist. Please re-upload the image.'=>'Image data does not exist. Please re-upload the image.','Proceed'=>'Proceed','Connection Type'=>'Connection Type','Private Key:'=>'Private Key:','Public Key:'=>'Public Key:','Authentication Keys'=>'Authentication Keys','Hostname'=>'Hostname','Connection Information'=>'Connection Information','SSH2'=>'SSH2','FTPS (SSL)'=>'FTPS (SSL)','FTP'=>'FTP','Empty archive.'=>'Empty archive.','Could not copy file.'=>'Could not copy file.','Could not extract file from archive.'=>'Could not extract file from archive.','Could not retrieve file from archive.'=>'Could not retrieve file from archive.','Could not create temporary file.'=>'Could not create temporary file.','Specified file failed upload test.'=>'Specified file failed upload test.','Invalid form submission.'=>'Invalid form submission.','File upload stopped by extension.'=>'File upload stopped by extension.','Failed to write file to disk.'=>'Failed to write file to disk.','Missing a temporary folder.'=>'Missing a temporary folder.','No file was uploaded.'=>'No file was uploaded.','The uploaded file was only partially uploaded.'=>'The uploaded file was only partially uploaded.','Sorry, that file cannot be edited.'=>'Sorry, that file cannot be edited.','Popup Comments Template'=>'Popup Comments Template','Comments Template'=>'Comments Template','.htaccess (for rewrite rules )'=>'.htaccess (for rewrite rules )','my-hacks.php (legacy hacks support)'=>'my-hacks.php (legacy hacks support)','Application Attachment Template'=>'Application Attachment Template','Audio Attachment Template'=>'Audio Attachment Template','Video Attachment Template'=>'Video Attachment Template','Image Attachment Template'=>'Image Attachment Template','Attachment Template'=>'Attachment Template','Theme Functions'=>'Theme Functions','Links Template'=>'Links Template','404 Template'=>'404 Template','Single Post'=>'Single Post','Search Form'=>'Search Form','Search Requests'=>'Search Requests','Category Template'=>'Category Template','Popup Comments'=>'Popup Comments','RTL Stylesheet'=>'RTL Stylesheet','Main Index Template'=>'Main Index Template','This widget requires JavaScript.'=>'This widget requires JavaScript.','dashboard%1$s %2$s'=>'%1$s %2$s','[Pending]'=>'[Pending]','From %1$s on %2$s %3$s'=>'From %1$s on %2$s %3$s','Move this comment to the Trash'=>'Move this comment to the bin','verbSpam'=>'Spam','Mark this comment as spam'=>'Mark this comment as spam','Reply to this comment'=>'Reply to this comment','Unapprove this comment'=>'Unapprove this comment','Approve this comment'=>'Approve this comment','Page'=>'Page' . "\0" . 'Pages','Configure'=>'Configure','View all'=>'View all','Other WordPress News'=>'Other WordPress News','Right Now'=>'Right Now','The uploaded file could not be moved to %s.'=>'The uploaded file could not be moved to %s.','Please select a file'=>'Please select a file','Return to the Theme Installer'=>'Return to the theme installer','Preview “%s”'=>'Preview “%s”','Successfully installed the theme %1$s %2$s.'=>'Successfully installed the theme %1$s %2$s.','Return to the Plugin Installer'=>'Return to the plugin installer','Successfully installed the plugin %1$s %2$s.'=>'Successfully installed the plugin %1$s %2$s.','Activate Plugin'=>'Activate Plugin','Could not copy files.'=>'Could not copy files.','WordPress is at the latest version.'=>'WordPress is at the latest version.','Theme installed successfully.'=>'Theme installed successfully.','Installing the theme…'=>'Installing the theme…','Could not remove the old theme.'=>'Could not remove the old theme.','Removing the old version of the theme…'=>'Removing the old version of the theme…','The theme is at the latest version.'=>'The theme is at the latest version.','Plugin installed successfully.'=>'Plugin installed successfully.','Installing the plugin…'=>'Installing the plugin…','Unpacking the package…'=>'Unpacking the package…','Installation package not available.'=>'Installation package not available.','Could not remove the old plugin.'=>'Could not remove the old plugin.','Removing the old version of the plugin…'=>'Removing the old version of the plugin…','Unpacking the update…'=>'Unpacking the update…','The plugin is at the latest version.'=>'The plugin is at the latest version.','Disabling Maintenance mode…'=>'Disabling Maintenance mode…','Enabling Maintenance mode…'=>'Enabling Maintenance mode…','Incompatible Archive.'=>'Incompatible Archive.','Could not create directory.'=>'Could not create directory.','Destination folder already exists.'=>'Destination folder already exists.','Installing the latest version…'=>'Installing the latest version…','Download failed.'=>'Download failed.','Unable to locate needed folder (%s).'=>'Unable to locate needed folder (%s).','Unable to locate WordPress content directory'=>'Unable to locate WordPress content directory','Unable to locate WordPress plugin directory.'=>'Unable to locate WordPress plugin directory.','Unable to locate WordPress root directory.'=>'Unable to locate WordPress root directory.','Filesystem error.'=>'Filesystem error.','Could not access filesystem'=>'Could not access filesystem','Invalid data provided.'=>'Invalid data provided.','Unable to perform command: %s'=>'Unable to perform command: %s','Public and Private keys incorrect for %s'=>'Public and Private keys incorrect for %s','Failed to connect to SSH2 Server %s'=>'Failed to connect to SSH2 Server %s','SSH2 password is required'=>'SSH2 password is required','SSH2 username is required'=>'SSH2 username is required','SSH2 hostname is required'=>'SSH2 hostname is required','The ssh2 PHP extension is not available'=>'The ssh2 PHP extension is not available','Username/Password incorrect for %s'=>'Username/Password incorrect for %s','Failed to connect to FTP Server %s'=>'Failed to connect to FTP Server %s','FTP password is required'=>'FTP password is required','FTP username is required'=>'FTP username is required','FTP hostname is required'=>'FTP hostname is required','The ftp PHP extension is not available'=>'The ftp PHP extension is not available','Found %s'=>'Found %s','Changing to %s'=>'Changing to %s','Could not insert link into the database.'=>'Could not insert link into the database.','Could not update link in the database.'=>'Could not update link in the database.','Movable Type and TypePad'=>'Movable Type and TypePad','LiveJournal'=>'LiveJournal','Try Again'=>'Try Again','Blogger'=>'Blogger','No importers are available.'=>'No importers are available.','Download Export File'=>'Download Export File','This format, which is called WordPress eXtended RSS or WXR, will contain your posts, pages, comments, custom fields, categories, and tags.'=>'This format, which is called WordPress eXtended RSS or WXR, will contain your posts, pages, comments, custom fields, categories, and tags.','When you click the button below WordPress will create an XML file for you to save to your computer.'=>'When you click the button below WordPress will create an XML file for you to save to your computer.','Export'=>'Export','postsAll (%s)'=>'All (%s)' . "\0" . 'All (%s)','postsMine (%s)'=>'Mine (%s)' . "\0" . 'Mine (%s)','%s pattern not updated, somebody is editing it.'=>'%s pattern not updated, somebody is editing it.' . "\0" . '%s patterns not updated, somebody is editing them.','%s post updated.'=>'%s post updated.' . "\0" . '%s posts updated.','Sorry, you are not allowed to delete this item.'=>'Sorry, you are not allowed to delete this item.','Item not added.'=>'Item not added.','Item updated.'=>'Item updated.','Item deleted.'=>'Item deleted.','Categories, unlike tags, can have a hierarchy. You might have a Jazz category, and under that have children categories for Bebop and Big Band. Totally optional.'=>'Categories, unlike tags, can have a hierarchy. You might have a Jazz category, and under that have children categories for Bebop and Big Band. Totally optional.','This will be shown when someone hovers over the link in the blogroll, or optionally below the link.'=>'This will be shown when someone hovers over the link in the blogroll, or optionally below the link.','Example: https://wordpress.org/ — do not forget the https://'=>'Example: https://wordpress.org/ — do not forget the https://','Web Address'=>'Web Address','Example: Nifty blogging software'=>'Example: Nifty blogging software','Link added.'=>'Link added.','Links / Add Link'=>'Links / Add Link','Update Link'=>'Update Link','Links / Edit Link'=>'Links / Edit Link','Visit site'=>'Visit site','Update Comment'=>'Update Comment','Last edited on %1$s at %2$s'=>'Last edited on %1$s at %2$s','Last edited by %1$s on %2$s at %3$s'=>'Last edited by %1$s on %2$s at %3$s','Custom Fields'=>'Custom Fields','Send Trackbacks'=>'Send Trackbacks','Page restored to revision from %s.'=>'Page restored to revision from %s.','Post saved.'=>'Post saved.','Post restored to revision from %s.'=>'Post restored to revision from %s.','Custom field deleted.'=>'Custom field deleted.','Custom field updated.'=>'Custom field updated.','No comments found.'=>'No comments found.','Empty Trash'=>'Empty Bin','Empty Spam'=>'Empty Spam','Filter'=>'Filter','Pings'=>'Pings','Approve'=>'Approve','Unapprove'=>'Unapprove','Bulk actions'=>'Bulk actions','Displaying %1$s–%2$s of %3$s'=>'Displaying %1$s–%2$s of %3$s','Search Comments'=>'Search Comments','Approved'=>'Approved' . "\0" . 'Approved','%s comment permanently deleted.'=>'%s comment permanently deleted.' . "\0" . '%s comments permanently deleted.','%s comment restored from the spam.'=>'%s comment restored from the spam.' . "\0" . '%s comments restored from the spam.','%s comment marked as spam.'=>'%s comment marked as spam.' . "\0" . '%s comments marked as spam.','%s comment approved.'=>'%s comment approved.' . "\0" . '%s comments approved.','Attach'=>'Attach','(Unattached)'=>'(Unattached)','Unpublished'=>'Unpublished','View “%s”'=>'View “%s”','Delete Permanently'=>'Delete Permanently','Edit “%s”'=>'Edit “%s”','Choose the part of the image you want to use as your header.'=>'Choose the part of the image you want to use as your header.','Image Processing Error'=>'Image Processing Error','Header updated. Visit your site to see how it looks.'=>'Header updated. Visit your site to see how it looks.','Custom Header'=>'Custom Header','Save Changes'=>'Save Changes','Choose an image from your computer:'=>'Choose an image from your computer:','Background updated. Visit your site to see how it looks.'=>'Background updated. Visit your site to see how it looks.','Custom Background'=>'Custom Background','Unknown action.'=>'Unknown action.','Approve comment'=>'Approve comment','You are about to approve the following comment:'=>'You are about to approve the following comment:','Permanently delete comment'=>'Permanently delete comment','You are about to delete the following comment:'=>'You are about to delete the following comment:','You are about to move the following comment to the Trash:'=>'You are about to move the following comment to the Bin:','You are about to mark the following comment as spam:'=>'You are about to mark the following comment as spam:','This comment is in the Trash. Please move it out of the Trash if you want to edit it.'=>'This comment is in the Bin. Please move it out of the Bin if you want to edit it.','Sorry, you are not allowed to edit comments on this post.'=>'Sorry, you are not allowed to edit comments on this post.','Go Back'=>'Go Back','Edit Comment'=>'Edit Comment','Import'=>'Import','Cannot load %s.'=>'Cannot load %s.','Invalid plugin page.'=>'Invalid plugin page.','Item not updated.'=>'Item not updated.','Saving is disabled: %s is currently editing this post.'=>'Saving is disabled: %s is currently editing this post.','Saving is disabled: %s is currently editing this page.'=>'Saving is disabled: %s is currently editing this page.','Someone'=>'Someone','Draft saved at %s.'=>'Draft saved at %s.','g:i:s a'=>'H:i:s','Please provide a custom field value.'=>'Please provide a custom field value.','Sorry, you must be logged in to reply to a comment.'=>'Sorry, you must be logged in to reply to a comment.','You did not enter a category name.'=>'You did not enter a category name.','Comment %d does not exist'=>'Comment %d does not exist','»'=>'»','«'=>'«']]; \ No newline at end of file diff --git a/web/app/languages/admin-en_GB.mo b/web/app/languages/admin-en_GB.mo old mode 100755 new mode 100644 index 605db3e9..f967e308 Binary files a/web/app/languages/admin-en_GB.mo and b/web/app/languages/admin-en_GB.mo differ diff --git a/web/app/languages/admin-en_GB.po b/web/app/languages/admin-en_GB.po old mode 100755 new mode 100644 index 5beb0b81..186b165a --- a/web/app/languages/admin-en_GB.po +++ b/web/app/languages/admin-en_GB.po @@ -1,15 +1,15 @@ -# Translation of WordPress - 6.7.x - Development - Administration in English (UK) -# This file is distributed under the same license as the WordPress - 6.7.x - Development - Administration package. +# Translation of WordPress - 6.8.x - Development - Administration in English (UK) +# This file is distributed under the same license as the WordPress - 6.8.x - Development - Administration package. msgid "" msgstr "" -"PO-Revision-Date: 2024-11-14 20:17:10+0000\n" +"PO-Revision-Date: 2025-05-25 12:26:44+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: GlotPress/4.0.1\n" "Language: en_GB\n" -"Project-Id-Version: WordPress - 6.7.x - Development - Administration\n" +"Project-Id-Version: WordPress - 6.8.x - Development - Administration\n" #. translators: Default start of the week. 0 = Sunday, 1 = Monday. #: wp-admin/includes/schema.php:418 @@ -37,6 +37,254 @@ msgctxt "default GMT offset or timezone string" msgid "0" msgstr "Europe/London" +#: wp-admin/about.php:93 +msgid "Speculative loading speeds up navigation by preloading links before users navigate to them, bcrypt hashing strengthens password security automatically, and database optimizations improve performance." +msgstr "Speculative loading speeds up navigation by preloading links before users navigate to them, bcrypt hashing strengthens password security automatically, and database optimisations improve performance." + +#. translators: 1: URL to WordPress release notes, 2: WordPress version number, +#. 3: The PHP extension name needed. +#: wp-admin/upgrade.php:68 +msgid "You cannot upgrade because WordPress %2$s requires the %3$s PHP extension." +msgstr "You cannot upgrade because WordPress %2$s requires the %3$s PHP extension." + +#: wp-admin/themes.php:70 +msgid "An error occurred while deleting the theme." +msgstr "An error occurred while deleting the theme." + +#: wp-admin/theme-install.php:57 wp-admin/themes.php:234 +#: wp-admin/themes.php:255 wp-admin/network/menu.php:86 +#: wp-admin/network/themes.php:366 +msgid "Add Theme" +msgstr "Add Theme" + +#. translators: %s: https://wordpress.org/about/privacy +#: wp-admin/privacy.php:62 +msgid "WordPress.org takes privacy and transparency very seriously. To learn more about what data is collected, and how it is used, please visit the WordPress.org Privacy Policy." +msgstr "WordPress.org takes privacy and transparency very seriously. To learn more about what data is collected, and how it is used, please visit the WordPress.org Privacy Policy." + +#: wp-admin/privacy.php:29 +msgid "WordPress.org takes privacy and transparency very seriously" +msgstr "WordPress.org takes privacy and transparency very seriously" + +#. translators: %s: File path. +#: wp-admin/plugin-editor.php:246 wp-admin/theme-editor.php:245 +msgid "File: %s" +msgstr "File: %s" + +#: wp-admin/menu.php:332 wp-admin/menu.php:334 wp-admin/menu.php:342 +#: wp-admin/menu.php:344 wp-admin/user-edit.php:269 wp-admin/user-new.php:269 +#: wp-admin/user-new.php:391 wp-admin/user-new.php:515 +#: wp-admin/user-new.php:667 wp-admin/users.php:781 +#: wp-admin/network/menu.php:62 wp-admin/network/site-users.php:336 +#: wp-admin/network/site-users.php:380 wp-admin/network/user-new.php:100 +#: wp-admin/network/user-new.php:107 wp-admin/network/user-new.php:161 +#: wp-admin/network/users.php:292 +msgid "Add User" +msgstr "Add User" + +#: wp-admin/menu.php:311 wp-admin/plugins.php:770 wp-admin/network/menu.php:111 +msgid "Add Plugin" +msgstr "Add Plugin" + +#: wp-admin/menu.php:217 +msgctxt "design menu item" +msgid "Design" +msgstr "Design" + +#: wp-admin/menu-header.php:285 +msgid "Collapse Main Menu" +msgstr "Collapse Main Menu" + +#: wp-admin/media-upload.php:39 +msgid "Invalid item ID. You can view all media items in the Media Library." +msgstr "Invalid item ID. You can view all media items in the Media Library." + +#: wp-admin/media-upload.php:38 +msgid "An error occurred during the upload process." +msgstr "An error occurred during the upload process." + +#. translators: 1: URL to WordPress release notes, 2: WordPress version number, +#. 3: The PHP extension name needed. +#: wp-admin/install.php:312 +msgid "You cannot install because WordPress %2$s requires the %3$s PHP extension." +msgstr "You cannot install because WordPress %2$s requires the %3$s PHP extension." + +#: wp-admin/includes/template.php:738 +msgid "Add Custom Field:" +msgstr "Add Custom Field:" + +#: wp-admin/includes/revision.php:469 +msgid "An error occurred while loading the comparison. Please refresh the page and try again." +msgstr "An error occurred while loading the comparison. Please refresh the page and try again." + +#. translators: Hidden accessibility text. +#: wp-admin/includes/meta-boxes.php:1203 wp-admin/includes/meta-boxes.php:1208 +msgid "+ Add Category" +msgstr "+ Add Category" + +#: wp-admin/includes/class-wp-debug-data.php:1715 +msgid "Does not exist" +msgstr "Does not exist" + +#: wp-admin/includes/class-wp-debug-data.php:530 +msgid "robots.txt" +msgstr "robots.txt" + +#. translators: %s: robots.txt +#: wp-admin/includes/class-wp-debug-data.php:525 +msgid "WordPress cannot dynamically serve a %s file due to a lack of rewrite rule support" +msgstr "WordPress cannot dynamically serve a %s file due to a lack of rewrite rule support" + +#. translators: %s: robots.txt +#: wp-admin/includes/class-wp-debug-data.php:519 +msgid "Your site is using the dynamic %s file which is generated by WordPress." +msgstr "Your site is using the dynamic %s file which is generated by WordPress." + +#. translators: %s: robots.txt +#: wp-admin/includes/class-wp-debug-data.php:513 +msgid "There is a static %s file in your installation folder. WordPress cannot dynamically serve one." +msgstr "There is a static %s file in your installation folder. WordPress cannot dynamically serve one." + +#: wp-admin/includes/class-custom-image-header.php:834 +#: wp-admin/includes/class-custom-image-header.php:1022 +msgid "The active theme does not support uploading a custom header image. Please ensure your theme supports custom headers and try again." +msgstr "The active theme does not support uploading a custom header image. Please ensure your theme supports custom headers and try again." + +#: wp-admin/includes/class-custom-image-header.php:833 +#: wp-admin/includes/class-custom-image-header.php:1021 +#: wp-admin/includes/class-custom-image-header.php:1032 +msgid "An error occurred while processing your header image." +msgstr "An error occurred while processing your header image." + +#: wp-admin/customize.php:80 +msgid "Please try again or start a new changeset. This changeset cannot be further modified." +msgstr "Please try again or start a new changeset. This changeset cannot be further modified." + +#: wp-admin/customize.php:79 +msgid "An error occurred while saving your changeset." +msgstr "An error occurred while saving your changeset." + +#: wp-admin/credits.php:150 +msgid "Triage Lead" +msgstr "Triage Lead" + +#: wp-admin/credits.php:149 +msgid "Tech Lead" +msgstr "Tech Lead" + +#: wp-admin/credits.php:148 +msgid "Default Theme Development Lead" +msgstr "Default Theme Development Lead" + +#: wp-admin/credits.php:147 +msgid "Default Theme Design Lead" +msgstr "Default Theme Design Lead" + +#: wp-admin/credits.php:146 +msgid "Performance Lead" +msgstr "Performance Lead" + +#: wp-admin/credits.php:145 +msgid "Design Lead" +msgstr "Design Lead" + +#: wp-admin/credits.php:144 +msgid "Test Lead" +msgstr "Test Lead" + +#: wp-admin/credits.php:143 +msgid "Documentation Lead" +msgstr "Documentation Lead" + +#: wp-admin/credits.php:142 +msgid "Editor Triage Lead" +msgstr "Editor Triage Lead" + +#: wp-admin/credits.php:141 +msgid "Editor Tech Lead" +msgstr "Editor Tech Lead" + +#: wp-admin/credits.php:140 +msgid "Core Triage Lead" +msgstr "Core Triage Lead" + +#: wp-admin/credits.php:139 +msgid "Core Tech Lead" +msgstr "Core Tech Lead" + +#: wp-admin/credits.php:137 +msgid "Minor Release Lead" +msgstr "Minor Release Lead" + +#: wp-admin/credits.php:136 +msgid "Release Coordination" +msgstr "Release Coordination" + +#: wp-admin/about.php:194 +msgid "WordPress 6.8 packs a wide range of performance fixes and enhancements to speed up everything from editing to browsing. Beyond speculative loading, WordPress 6.8 pays special attention to the block editor, block type registration, and query caching. Plus, imagine never waiting longer than 50 milliseconds—for any interaction. In WordPress 6.8, the Interactivity API takes a first step toward that goal." +msgstr "WordPress 6.8 packs a wide range of performance fixes and enhancements to speed up everything from editing to browsing. Beyond speculative loading, WordPress 6.8 pays special attention to the block editor, block type registration, and query caching. Plus, imagine never waiting longer than 50 milliseconds—for any interaction. In WordPress 6.8, the Interactivity API takes a first step toward that goal." + +#: wp-admin/about.php:181 +msgid "Work continues on optimizing cache key generation in the WP_Query class. The goal is, as ever, to boost your site’s performance, in this case by taking some more of the load off your database. This is especially good if you get a lot of traffic." +msgstr "Work continues on optimising cache key generation in the WP_Query class. The goal is, as ever, to boost your site’s performance, in this case by taking some more of the load off your database. This is especially good if you get a lot of traffic." + +#: wp-admin/about.php:180 +msgid "Take a load off the database" +msgstr "Take a load off the database" + +#: wp-admin/about.php:172 +msgid "100+ accessibility fixes and enhancements touch a broad spectrum of the WordPress experience. This release includes fixes to every bundled theme, improvements to the navigation menu management, the customizer, and simplified labeling. The Block Editor has over 70 improvements to blocks, DataViews, and to its overall user experience." +msgstr "100+ accessibility fixes and enhancements touch a broad spectrum of the WordPress experience. This release includes fixes to every bundled theme, improvements to the navigation menu management, the Customiser, and simplified labelling. The block editor has over 70 improvements to blocks, DataViews, and to its overall user experience." + +#: wp-admin/about.php:158 +msgid "Now passwords are harder to crack with bcrypt hashing, which takes a lot more computing power to break. This strengthens overall security, as do other encryption improvements across WordPress. You don’t need to do anything—everything updates automatically." +msgstr "Now passwords are harder to crack with bcrypt hashing, which takes a lot more computing power to break. This strengthens overall security, as do other encryption improvements across WordPress. You don’t need to do anything—everything updates automatically." + +#: wp-admin/about.php:157 +msgid "Stronger password security with bcrypt" +msgstr "Stronger password security with bcrypt" + +#: wp-admin/about.php:141 +msgid "In WordPress 6.8, pages load faster than ever. When you or your user hovers over or clicks a link, WordPress may preload the next page, for a smoother, near-instant experience. The system balances speed and efficiency, and you can control how it works, with a plugin or your own code. This feature only works in modern browsers—older ones will simply ignore it without any impact." +msgstr "In WordPress 6.8, pages load faster than ever. When you or your user hovers over or clicks a link, WordPress may preload the next page, for a smoother, near-instant experience. The system balances speed and efficiency, and you can control how it works, with a plugin or your own code. This feature only works in modern browsers—older ones will simply ignore it without any impact." + +#: wp-admin/about.php:140 +msgid "Near-instant page loads, thanks to Speculative Loading" +msgstr "Near-instant page loads, thanks to Speculative Loading" + +#: wp-admin/about.php:134 +msgid "Easier ways to see your options in Data Views, and you can exclude sticky posts from the Query Loop. Plus, you’ll find lots of little improvements in the editor that smooth your way through everything you build." +msgstr "Easier ways to see your options in Data Views, and you can exclude sticky posts from the Query Loop. Plus, you’ll find lots of little improvements in the editor that smooth your way through everything you build." + +#: wp-admin/about.php:113 +msgid "Plus, now you can see it in Classic themes that have editor-styles or a theme.json file. Find the Style Book under Appearance > Design and use it to preview your theme’s evolution, as you edit CSS or make changes in the Customizer." +msgstr "Plus, now you can see it in Classic themes that have editor-styles or a theme.json file. Find the Style Book under Appearance > Design and use it to preview your theme’s evolution, as you edit CSS or make changes in the Customiser." + +#. translators: %s is a direct link to the Style Book. +#: wp-admin/about.php:109 +msgid "Plus, now you can see it in Classic themes that have editor-styles or a theme.json file. Find the Style Book under Appearance > Design and use it to preview your theme’s evolution, as you edit CSS or make changes in the Customizer." +msgstr "Plus, now you can see it in Classic themes that have editor-styles or a theme.json file. Find the Style Book under Appearance > Design and use it to preview your theme’s evolution, as you edit CSS or make changes in the Customiser." + +#: wp-admin/about.php:101 +msgid "The Style Book has a new, structured layout and clearer labels, to make it even easier to edit colors, typography—almost all your site styles—in one place." +msgstr "The Style Book has a new, structured layout and clearer labels, to make it even easier to edit colours, typography—almost all your site styles—in one place." + +#: wp-admin/about.php:99 +msgid "The Style Book gets a cleaner look—and a few new tricks" +msgstr "The Style Book gets a cleaner look—and a few new tricks" + +#: wp-admin/about.php:92 +msgid "The Style Book now has a structured layout and works with Classic themes, giving you more control over global styles." +msgstr "The Style Book now has a structured layout and works with Classic themes, giving you more control over global styles." + +#: wp-admin/about.php:91 +msgid "WordPress 6.8 polishes and refines the tools you use every day, making your site faster, more secure, and easier to manage." +msgstr "WordPress 6.8 polishes and refines the tools you use every day, making your site faster, more secure, and easier to manage." + +#: wp-admin/about.php:90 +msgid "A release polished to a high sheen." +msgstr "A release polished to a high sheen." + #: wp-admin/plugins.php:613 msgid "If a dependent plugin is missing some dependencies, its activation button will be disabled until the required dependencies are activated." msgstr "If a dependent plugin is missing some dependencies, its activation button will be disabled until the required dependencies are activated." @@ -110,16 +358,16 @@ msgstr "Select a revision" msgid "A directory could not be read." msgstr "A directory could not be read." -#: wp-admin/includes/class-wp-debug-data.php:1583 +#: wp-admin/includes/class-wp-debug-data.php:1611 msgid "Database Extension" msgstr "Database Extension" -#: wp-admin/includes/class-wp-debug-data.php:1439 -#: wp-admin/includes/class-wp-debug-data.php:1448 +#: wp-admin/includes/class-wp-debug-data.php:1467 +#: wp-admin/includes/class-wp-debug-data.php:1476 msgid "Empty value" msgstr "Empty value" -#: wp-admin/includes/class-wp-debug-data.php:611 +#: wp-admin/includes/class-wp-debug-data.php:639 msgid "Max simultaneous file uploads" msgstr "Max simultaneous file uploads" @@ -131,77 +379,21 @@ msgstr "Menu Order" msgid "Menu Parent" msgstr "Menu Parent" -#: wp-admin/edit-form-advanced.php:549 +#: wp-admin/edit-form-advanced.php:545 msgid "Skip to Editor" msgstr "Skip to Editor" #. translators: %s: WordPress version number. -#: wp-admin/about.php:248 +#: wp-admin/about.php:289 msgid "WordPress %s Field Guide" msgstr "WordPress %s Field Guide" #. translators: %s: WordPress version number. -#: wp-admin/about.php:221 +#: wp-admin/about.php:262 msgid "WordPress %s Release Notes" msgstr "WordPress %s Release Notes" -#: wp-admin/about.php:153 -msgid "65+ accessibility fixes and enhancements focus on foundational aspects of the WordPress experience, from improving user interface components and keyboard navigation in the Editor, to an accessible heading on WordPress login screens and clearer labeling throughout." -msgstr "65+ accessibility fixes and enhancements focus on foundational aspects of the WordPress experience, from improving user interface components and keyboard navigation in the Editor, to an accessible heading on WordPress log-in screens and clearer labeling throughout." - -#: wp-admin/about.php:144 -msgid "WordPress 6.7 delivers important performance updates, including faster pattern loading, optimized previews in the data views component, improved PHP 8+ support and removal of deprecated code, auto sizes for lazy-loaded images, and more efficient tag processing in the HTML API." -msgstr "WordPress 6.7 delivers important performance updates, including faster pattern loading, optimised previews in the data views component, improved PHP 8+ support and removal of deprecated code, auto sizes for lazy-loaded images, and more efficient tag processing in the HTML API." - -#: wp-admin/about.php:128 -msgid "Create, edit, remove, and apply font size presets with the next addition to the Styles interface. Override theme defaults or create your own custom font size, complete with fluid typography for responsive font scaling. Get into the details!" -msgstr "Create, edit, remove, and apply font size presets with the next addition to the Styles interface. Override theme defaults or create your own custom font size, complete with fluid typography for responsive font scaling. Get into the details!" - -#: wp-admin/about.php:127 -msgid "New style section, new possibilities" -msgstr "New style section, new possibilities" - -#: wp-admin/about.php:125 -msgid "Embrace your inner font nerd" -msgstr "Embrace your inner font nerd" - -#: wp-admin/about.php:108 -msgid "This feature introduces a new UI for connecting blocks to custom fields, putting control of dynamic content directly in the editor. Link blocks with fields in just a few clicks, enhancing flexibility and efficiency when building. Your clients will love you—as if they didn’t already." -msgstr "This feature introduces a new UI for connecting blocks to custom fields, putting control of dynamic content directly in the editor. Link blocks with fields in just a few clicks, enhancing flexibility and efficiency when building. Your clients will love you—as if they didn’t already." - -#: wp-admin/about.php:107 -msgid "A streamlined way to create dynamic content" -msgstr "A streamlined way to create dynamic content" - -#: wp-admin/about.php:105 -msgid "Connect blocks and custom fields with no hassle (or code)" -msgstr "Connect blocks and custom fields with no hassle (or code)" - -#: wp-admin/about.php:98 -msgid "Edit and arrange entire sections of your content like never before. A broader view of your site lets you add, edit, shuffle, or remove patterns to your liking. Embrace your inner architect." -msgstr "Edit and arrange entire sections of your content like never before. A broader view of your site lets you add, edit, shuffle, or remove patterns to your liking. Embrace your inner architect." - -#: wp-admin/about.php:97 -msgid "Explore your content from a new perspective" -msgstr "Explore your content from a new perspective" - -#: wp-admin/about.php:95 -msgid "Get the big picture with Zoom Out" -msgstr "Get the big picture with Zoom Out" - -#: wp-admin/about.php:78 -msgid "Twenty Twenty-Five offers a flexible, design-focused theme that lets you build stunning sites with ease. Tailor your aesthetic with an array of style options, block patterns, and color palettes. Pared down to the essentials, this is a theme that can truly grow with you." -msgstr "Twenty Twenty-Five offers a flexible, design-focused theme that lets you build stunning sites with ease. Tailor your aesthetic with an array of style options, block patterns, and colour palettes. Pared down to the essentials, this is a theme that can truly grow with you." - -#: wp-admin/about.php:77 -msgid "Endless possibility without complexity" -msgstr "Endless possibility without complexity" - -#: wp-admin/about.php:68 -msgid "WordPress 6.7 debuts the modern Twenty Twenty-Five theme, offering ultimate design flexibility for any blog at any scale. Control your site typography like never before with new font management features. The new Zoom Out feature lets you design your site with a macro view, stepping back from the details to bring the big picture to life." -msgstr "WordPress 6.7 debuts the modern Twenty Twenty-Five theme, offering ultimate design flexibility for any blog at any scale. Control your site typography like never before with new font management features. The new Zoom Out feature lets you design your site with a macro view, stepping back from the details to bring the big picture to life." - -#: wp-admin/includes/class-wp-debug-data.php:1893 +#: wp-admin/includes/class-wp-debug-data.php:1926 msgid "The directory does not exist." msgstr "The directory does not exist." @@ -213,7 +405,7 @@ msgstr "Documentation on Editing Files" msgstr "Documentation on Editing Files" -#: wp-admin/plugin-editor.php:151 +#: wp-admin/plugin-editor.php:154 msgid "Documentation on Editing Plugins" msgstr "Documentation on Editing Plugins" @@ -238,7 +430,7 @@ msgstr "https://developer.wordpress.org/advanced-administration/wordpress/feeds/ msgid "Documentation on Nginx configuration." msgstr "Documentation on Nginx configuration." -#: wp-admin/options-general.php:35 wp-admin/options-general.php:255 +#: wp-admin/options-general.php:35 wp-admin/options-general.php:254 msgid "https://developer.wordpress.org/advanced-administration/server/wordpress-in-directory/" msgstr "https://developer.wordpress.org/advanced-administration/server/wordpress-in-directory/" @@ -262,8 +454,8 @@ msgstr "No URL provided." #: wp-admin/includes/file.php:329 wp-admin/options-permalink.php:468 #: wp-admin/options-permalink.php:500 wp-admin/options-permalink.php:536 -#: wp-admin/plugin-editor.php:326 wp-admin/setup-config.php:487 -#: wp-admin/theme-editor.php:362 +#: wp-admin/plugin-editor.php:336 wp-admin/setup-config.php:487 +#: wp-admin/theme-editor.php:367 msgid "https://developer.wordpress.org/advanced-administration/server/file-permissions/" msgstr "https://developer.wordpress.org/advanced-administration/server/file-permissions/" @@ -314,19 +506,19 @@ msgstr "https://developer.wordpress.org/advanced-administration/performance/opti msgid "https://developer.wordpress.org/advanced-administration/performance/optimization/#caching" msgstr "https://developer.wordpress.org/advanced-administration/performance/optimization/#caching" -#: wp-admin/includes/class-wp-debug-data.php:832 +#: wp-admin/includes/class-wp-debug-data.php:860 msgid "Fonts directory size" msgstr "Fonts directory size" -#: wp-admin/includes/class-wp-debug-data.php:828 +#: wp-admin/includes/class-wp-debug-data.php:856 msgid "Fonts directory location" msgstr "Fonts directory location" -#: wp-admin/includes/class-wp-debug-data.php:1683 +#: wp-admin/includes/class-wp-debug-data.php:1712 msgid "The fonts directory" msgstr "The fonts directory" -#: wp-admin/includes/class-wp-automatic-updater.php:1331 +#: wp-admin/includes/class-wp-automatic-updater.php:1350 msgid "The following plugins failed to update. If there was a fatal error in the update, the previously installed version has been restored." msgstr "The following plugins failed to update. If there was a fatal error in the update, the previously installed version has been restored." @@ -356,29 +548,29 @@ msgstr "If you are a plugin author, you can learn more about how to add the Personal Data Eraser to a plugin." msgstr "If you are a plugin author, you can learn more about how to add the Personal Data Eraser to a plugin." -#: wp-admin/about.php:174 +#: wp-admin/about.php:215 msgid "See everything new" msgstr "See everything new" -#: wp-admin/about.php:174 -msgid "https://wordpress.org/download/releases/6-7/" -msgstr "https://wordpress.org/download/releases/6-7/" +#: wp-admin/about.php:215 +msgid "https://wordpress.org/download/releases/6-8/" +msgstr "https://wordpress.org/download/releases/6-8/" #. translators: %s: Version number. -#: wp-admin/about.php:166 +#: wp-admin/about.php:207 msgid "For a comprehensive overview of all the new features and enhancements in WordPress %s, please visit the feature-showcase website." msgstr "For a comprehensive overview of all the new features and enhancements in WordPress %s, please visit the feature-showcase website." -#: wp-admin/about.php:160 +#: wp-admin/about.php:201 msgid "And much more" msgstr "And much more" -#: wp-admin/menu.php:209 +#: wp-admin/menu.php:219 msgctxt "patterns menu item" msgid "Patterns" msgstr "Patterns" -#: wp-admin/options-general.php:192 wp-admin/options-general.php:198 +#: wp-admin/options-general.php:191 wp-admin/options-general.php:197 msgid "Change Site Icon" msgstr "Change site icon" @@ -396,7 +588,7 @@ msgctxt "plugin" msgid "Update Now" msgstr "Update now" -#: wp-admin/includes/class-wp-theme-install-list-table.php:340 +#: wp-admin/includes/class-wp-theme-install-list-table.php:339 #: wp-admin/includes/theme-install.php:207 msgctxt "theme" msgid "Install Now" @@ -512,11 +704,11 @@ msgstr "Install now" msgid "Created by a worldwide team of passionate individuals" msgstr "Created by a worldwide team of passionate individuals" -#: wp-admin/about.php:152 +#: wp-admin/about.php:171 msgid "Accessibility improvements" msgstr "Accessibility improvements" -#: wp-admin/about.php:143 +#: wp-admin/about.php:193 msgid "Performance updates" msgstr "Performance updates" @@ -530,25 +722,19 @@ msgid "The block widgets require JavaScript. Please enable JavaScript in your br msgstr "The block widgets require JavaScript. Please enable JavaScript in your browser settings, or activate the Classic Widgets plugin." #. translators: %s: Link to install the Classic Editor plugin. -#: wp-admin/edit-form-blocks.php:368 +#: wp-admin/edit-form-blocks.php:405 msgid "The block editor requires JavaScript. Please enable JavaScript in your browser settings, or install the Classic Editor plugin." msgstr "The block editor requires JavaScript. Please enable JavaScript in your browser settings, or install the Classic Editor plugin." #. translators: %s: Link to activate the Classic Editor plugin. -#: wp-admin/edit-form-blocks.php:359 +#: wp-admin/edit-form-blocks.php:396 msgid "The block editor requires JavaScript. Please enable JavaScript in your browser settings, or activate the Classic Editor plugin." msgstr "The block editor requires JavaScript. Please enable JavaScript in your browser settings, or activate the Classic Editor plugin." -#: wp-admin/my-sites.php:81 wp-admin/network/menu.php:53 -#: wp-admin/network/site-new.php:182 wp-admin/network/site-new.php:192 -#: wp-admin/network/sites.php:391 +#: wp-admin/my-sites.php:81 msgid "Add New Site" msgstr "Add New Site" -#: wp-admin/menu.php:300 wp-admin/plugins.php:770 wp-admin/network/menu.php:106 -msgid "Add New Plugin" -msgstr "Add New Plugin" - #: wp-admin/includes/image-edit.php:80 msgid "Rotate 180°" msgstr "Rotate 180°" @@ -589,12 +775,12 @@ msgid "When using Bulk Edit, you can change the metadata (categories, author, et msgstr "When using Bulk Edit, you can change the metadata (categories, author, etc.) for all selected posts at once. To remove a post from the grouping, just click the %sremove button next to its name in the Bulk Edit area that appears." #. translators: %s: WordPress version number. -#: wp-admin/about.php:231 +#: wp-admin/about.php:272 msgid "Read the WordPress %s Release Notes for information on installation, enhancements, fixed issues, release contributors, learning resources, and the list of file changes." msgstr "Read the WordPress %s Release Notes for information on installation, enhancements, fixed issues, release contributors, learning resources, and the list of file changes." #. translators: %s: WordPress version number. -#: wp-admin/about.php:258 +#: wp-admin/about.php:299 msgid "Explore the WordPress %s Field Guide. Learn about the changes in this release with detailed developer notes to help you build with WordPress." msgstr "Explore the WordPress %s Field Guide. Learn about the changes in this release with detailed developer notes to help you build with WordPress." @@ -614,6 +800,11 @@ msgstr "The PHP version on your server is %1$s, however the new plugin version r msgid "Your WordPress version is %1$s, however the new plugin version requires %2$s." msgstr "Your WordPress version is %1$s, however the new plugin version requires %2$s." +#. translators: %s: WordPress version. +#: wp-admin/about.php:79 +msgid "https://wordpress.org/support/wordpress-version/version-%s/" +msgstr "https://wordpress.org/support/wordpress-version/version-%s/" + #: wp-admin/contribute.php:103 wp-admin/credits.php:57 wp-admin/credits.php:65 msgid "https://make.wordpress.org/contribute/" msgstr "https://make.wordpress.org/contribute/" @@ -634,7 +825,7 @@ msgstr "On systems with fewer resources, this may lead to server timeouts or res msgid "This feature will create a temporary backup of a plugin or theme before it is upgraded. This backup is used to restore the plugin or theme back to its previous state if there is an error during the update process." msgstr "This feature will create a temporary backup of a plugin or theme before it is upgraded. This backup is used to restore the plugin or theme back to its previous state if there is an error during the update process." -#: wp-admin/site-editor.php:196 +#: wp-admin/site-editor.php:327 msgid "The site editor requires JavaScript. Please enable JavaScript in your browser settings." msgstr "The site editor requires JavaScript. Please enable JavaScript in your browser settings." @@ -656,7 +847,7 @@ msgid "New custom field name" msgstr "New custom field name" #. translators: Hidden accessibility text. -#: wp-admin/includes/media.php:2753 +#: wp-admin/includes/media.php:2758 msgid "Search Media:" msgstr "Search Media:" @@ -698,7 +889,7 @@ msgstr "Save Edits" msgid "Cancel Editing" msgstr "Cancel Editing" -#: wp-admin/includes/file.php:2009 +#: wp-admin/includes/file.php:2027 msgid "Could not create the destination directory." msgstr "Could not create the destination directory." @@ -923,28 +1114,28 @@ msgstr "Table ordered by URL." msgid "Table ordered by Name." msgstr "Table ordered by Name." -#: wp-admin/includes/class-wp-debug-data.php:519 +#: wp-admin/includes/class-wp-debug-data.php:547 msgid "Current Server time" msgstr "Current Server time" -#: wp-admin/includes/class-wp-debug-data.php:515 +#: wp-admin/includes/class-wp-debug-data.php:543 msgid "Current UTC time" msgstr "Current UTC time" -#: wp-admin/includes/class-wp-debug-data.php:511 +#: wp-admin/includes/class-wp-debug-data.php:539 msgid "Current time" msgstr "Current time" #. translators: Hidden accessibility text. -#: wp-admin/includes/class-wp-comments-list-table.php:591 +#: wp-admin/includes/class-wp-comments-list-table.php:595 msgid "Ordered by Comment Date, descending." msgstr "Ordered by Comment Date, descending." -#: wp-admin/includes/class-wp-comments-list-table.php:547 +#: wp-admin/includes/class-wp-comments-list-table.php:551 msgid "Table ordered by Post Replied To." msgstr "Table ordered by Post Replied To." -#: wp-admin/includes/class-wp-comments-list-table.php:546 +#: wp-admin/includes/class-wp-comments-list-table.php:550 msgid "Table ordered by Comment Author." msgstr "Table ordered by Comment Author." @@ -1077,28 +1268,29 @@ msgid "Be the future of WordPress" msgstr "Be the future of WordPress" #. translators: 1: Learn WordPress link, 2: Workshops link. -#: wp-admin/about.php:199 +#: wp-admin/about.php:240 msgid "Learn WordPress is a free resource for new and experienced WordPress users. Learn is stocked with how-to videos on using various features in WordPress, interactive workshops for exploring topics in-depth, and lesson plans for diving deep into specific areas of WordPress." msgstr "Learn WordPress is a free resource for new and experienced WordPress users. Learn is stocked with how-to videos on using various features in WordPress, interactive workshops for exploring topics in-depth, and lesson plans for diving deep into specific areas of WordPress." #: wp-admin/comment.php:73 wp-admin/edit-comments.php:232 -#: wp-admin/edit-form-advanced.php:320 wp-admin/edit-form-advanced.php:338 -#: wp-admin/edit-form-advanced.php:356 wp-admin/edit-link-form.php:77 -#: wp-admin/edit-tags.php:312 wp-admin/edit.php:302 wp-admin/edit.php:327 +#: wp-admin/edit-form-advanced.php:313 wp-admin/edit-form-advanced.php:331 +#: wp-admin/edit-form-advanced.php:349 wp-admin/edit-link-form.php:77 +#: wp-admin/edit-tags.php:315 wp-admin/edit.php:302 wp-admin/edit.php:327 #: wp-admin/erase-personal-data.php:66 wp-admin/export-personal-data.php:66 -#: wp-admin/export.php:60 wp-admin/includes/class-custom-background.php:111 +#: wp-admin/export.php:60 wp-admin/import.php:33 +#: wp-admin/includes/class-custom-background.php:111 #: wp-admin/includes/class-custom-image-header.php:146 wp-admin/index.php:133 #: wp-admin/link-manager.php:80 wp-admin/media-new.php:62 -#: wp-admin/my-sites.php:53 wp-admin/nav-menus.php:772 +#: wp-admin/my-sites.php:53 wp-admin/nav-menus.php:774 #: wp-admin/options-discussion.php:33 wp-admin/options-general.php:61 #: wp-admin/options-media.php:42 wp-admin/options-permalink.php:67 #: wp-admin/options-reading.php:54 wp-admin/options-writing.php:54 -#: wp-admin/plugin-editor.php:153 wp-admin/plugin-install.php:122 +#: wp-admin/plugin-editor.php:156 wp-admin/plugin-install.php:122 #: wp-admin/plugins.php:622 wp-admin/revision.php:160 #: wp-admin/theme-editor.php:56 wp-admin/theme-install.php:157 #: wp-admin/themes.php:210 wp-admin/tools.php:57 wp-admin/update-core.php:1055 #: wp-admin/upload.php:200 wp-admin/upload.php:402 wp-admin/user-edit.php:79 -#: wp-admin/user-new.php:311 wp-admin/users.php:84 wp-admin/widgets-form.php:72 +#: wp-admin/user-new.php:316 wp-admin/users.php:84 wp-admin/widgets-form.php:72 #: wp-admin/network.php:83 wp-admin/network/settings.php:65 #: wp-admin/network/themes.php:340 wp-admin/network/upgrade.php:33 msgid "Support forums" @@ -1116,7 +1308,7 @@ msgstr "View takes you to a public author archive which lists a msgid "Download file downloads the original media file to your device." msgstr "Download file downloads the original media file to your device." -#: wp-admin/site-editor.php:38 +#: wp-admin/site-editor.php:121 msgctxt "site editor title tag" msgid "Editor" msgstr "Editor" @@ -1156,7 +1348,7 @@ msgstr "Two terms you will want to know are the WordPress URL and the site URL. msgid "RoboHash (Generated)" msgstr "RoboHash (Generated)" -#: wp-admin/menu.php:207 +#: wp-admin/menu.php:212 msgctxt "site editor menu item" msgid "Editor" msgstr "Editor" @@ -1175,19 +1367,19 @@ msgid "https://wordpress.org/documentation/article/what-is-an-excerpt-classic-ed msgstr "https://wordpress.org/documentation/article/what-is-an-excerpt-classic-editor/" #. translators: %s: The function name. -#: wp-admin/includes/file.php:2771 +#: wp-admin/includes/file.php:2789 msgid "%s expects a non-empty string." msgstr "%s expects a non-empty string." -#: wp-admin/includes/file.php:2090 +#: wp-admin/includes/file.php:2108 msgid "The destination directory already exists and could not be removed." msgstr "The destination directory already exists and could not be removed." -#: wp-admin/includes/file.php:2087 +#: wp-admin/includes/file.php:2105 msgid "The destination folder already exists." msgstr "The destination folder already exists." -#: wp-admin/includes/file.php:2082 +#: wp-admin/includes/file.php:2100 msgid "The source and destination are the same." msgstr "The source and destination are the same." @@ -1196,7 +1388,7 @@ msgid "Expand or collapse the elements by clicking on their headings, and arrang msgstr "Expand or collapse the elements by clicking on their headings, and arrange them by dragging their headings or by clicking on the up and down arrows." #. translators: %s: Attachment title. -#: wp-admin/includes/class-wp-media-list-table.php:840 +#: wp-admin/includes/class-wp-media-list-table.php:847 msgid "Download “%s”" msgstr "Download “%s”" @@ -1205,7 +1397,7 @@ msgstr "Download “%s”" msgid "The \"%s\" argument must be a non-empty string." msgstr "The \"%s\" argument must be a non-empty string." -#: wp-admin/edit-form-advanced.php:319 +#: wp-admin/edit-form-advanced.php:312 msgid "Documentation on Writing and Editing Posts" msgstr "Documentation on Writing and Editing Posts" @@ -1222,12 +1414,12 @@ msgid "Docum msgstr "Documentation on Customiser" #. translators: The localized WordPress download URL. -#: wp-admin/about.php:339 +#: wp-admin/about.php:380 msgid "https://wordpress.org/download/" msgstr "https://en-gb.wordpress.org/download/" #. translators: %s: The major version of WordPress for this branch. -#: wp-admin/about.php:336 +#: wp-admin/about.php:377 msgid "This is the final release of WordPress %s" msgstr "This is the final release of WordPress %s" @@ -1239,7 +1431,7 @@ msgstr "Site Editor" msgid "Send password reset sends the user an email with a link to set a new password." msgstr "Send password reset sends the user an email with a link to set a new password." -#: wp-admin/user-edit.php:863 +#: wp-admin/user-edit.php:865 msgid "https://developer.wordpress.org/apis/wp-config-php/#wp-environment-type" msgstr "https://developer.wordpress.org/apis/wp-config-php/#wp-environment-type" @@ -1292,10 +1484,6 @@ msgstr "Recommended items are considered beneficial to your site, although not a msgid "Critical issues are items that may have a high impact on your sites performance or security, and resolving these issues should be prioritized." msgstr "Critical issues are items that may have a high impact on your sites performance or security, and resolving these issues should be prioritised." -#: wp-admin/site-editor.php:31 wp-admin/site-editor.php:33 -msgid "The theme you are currently using is not compatible with the Site Editor." -msgstr "The theme you are currently using is not compatible with the Site Editor." - #. translators: %s: wp-config.php #: wp-admin/setup-config.php:441 msgid "Configuration rules for %s:" @@ -1317,7 +1505,7 @@ msgid "%s removed from permalink structure" msgstr "%s removed from permalink structure" #. translators: %s: Number of critical Site Health checks. -#: wp-admin/menu.php:367 +#: wp-admin/menu.php:378 msgid "Site Health %s" msgstr "Site Health %s" @@ -1516,12 +1704,12 @@ msgstr "Your site does not have any installed themes." msgid "Your site does not have any active plugins." msgstr "Your site does not have any active plugins." -#: wp-admin/includes/class-wp-site-health-auto-updates.php:188 +#: wp-admin/includes/class-wp-site-health-auto-updates.php:197 msgid "Another attempt will be made with the next release." msgstr "Another attempt will be made with the next release." #. translators: 1: Name of the constant used. 2: Value of the constant used. -#: wp-admin/includes/class-wp-site-health-auto-updates.php:78 +#: wp-admin/includes/class-wp-site-health-auto-updates.php:79 msgid "The %1$s constant is defined as %2$s" msgstr "The %1$s constant is defined as %2$s" @@ -1537,39 +1725,39 @@ msgid "The %s argument must be an array." msgstr "The %s argument must be an array." #. translators: 1: Plugin name, 2: Version number, 3: Plugin URL. -#: wp-admin/includes/class-wp-automatic-updater.php:1353 -#: wp-admin/includes/class-wp-automatic-updater.php:1425 +#: wp-admin/includes/class-wp-automatic-updater.php:1372 +#: wp-admin/includes/class-wp-automatic-updater.php:1444 msgid "- %1$s version %2$s%3$s" msgstr "- %1$s version %2$s%3$s" #. translators: 1: Plugin name, 2: Current version number, 3: New version #. number, 4: Plugin URL. -#: wp-admin/includes/class-wp-automatic-updater.php:1344 -#: wp-admin/includes/class-wp-automatic-updater.php:1416 +#: wp-admin/includes/class-wp-automatic-updater.php:1363 +#: wp-admin/includes/class-wp-automatic-updater.php:1435 msgid "- %1$s (from version %2$s to %3$s)%4$s" msgstr "- %1$s (from version %2$s to %3$s)%4$s" -#: wp-admin/includes/class-wp-automatic-updater.php:1061 +#: wp-admin/includes/class-wp-automatic-updater.php:1069 msgid "Reach out to WordPress Core developers to ensure you'll never have this problem again." msgstr "Reach out to WordPress Core developers to ensure you'll never have this problem again." #. translators: 1: WordPress version number, 2: Link to update WordPress -#: wp-admin/about.php:333 +#: wp-admin/about.php:374 msgid "Important! Your version of WordPress (%1$s) will stop receiving security updates in the near future. To keep your site secure, please update to the latest version of WordPress." msgstr "Important! Your version of WordPress (%1$s) will stop receiving security updates in the near future. To keep your site secure, please update to the latest version of WordPress." #. translators: 1: WordPress version number, 2: Link to update WordPress -#: wp-admin/about.php:330 +#: wp-admin/about.php:371 msgid "Important! Your version of WordPress (%1$s) is no longer supported, you will not receive any security updates for your website. To keep your site secure, please update to the latest version of WordPress." msgstr "Important! Your version of WordPress (%1$s) is no longer supported, you will not receive any security updates for your website. To keep your site secure, please update to the latest version of WordPress." #. translators: %s: WordPress version number. -#: wp-admin/about.php:26 +#: wp-admin/about.php:27 msgid "https://make.wordpress.org/core/wordpress-%s-field-guide/" msgstr "https://make.wordpress.org/core/wordpress-%s-field-guide/" #. translators: %s: Version number. -#: wp-admin/about.php:190 +#: wp-admin/about.php:231 msgid "Learn more about WordPress %s" msgstr "Learn more about WordPress %s" @@ -1583,13 +1771,13 @@ msgid "You cannot remove users." msgstr "You cannot remove users." #. translators: 1: URL to my-sites.php, 2: Number of sites the user has. -#: wp-admin/user-edit.php:797 +#: wp-admin/user-edit.php:799 msgid "Application passwords grant access to the %2$s site on the network as you have Super Admin rights." msgid_plural "Application passwords grant access to all %2$s sites on the network as you have Super Admin rights." msgstr[0] "Application passwords grant access to the %2$s site on the network as you have Super Admin rights." msgstr[1] "Application passwords grant access to all %2$s sites on the network as you have Super Admin rights." -#: wp-admin/upgrade.php:141 +#: wp-admin/upgrade.php:160 msgid "WordPress has been updated! Next and final step is to update your database to the newest version." msgstr "WordPress has been updated! Next and final step is to update your database to the newest version." @@ -1629,17 +1817,17 @@ msgstr "Error: Your %1$s file is not writable< msgid "An avatar is an image that can be associated with a user across multiple websites. In this area, you can choose to display avatars of users who interact with the site." msgstr "An avatar is an image that can be associated with a user across multiple websites. In this area, you can choose to display avatars of users who interact with the site." -#: wp-admin/includes/post.php:1582 +#: wp-admin/includes/post.php:1593 msgid "Change Permalink Structure" msgstr "Change Permalink Structure" #. translators: Do not translate USERNAME, ADMIN_URL, EMAIL, SITENAME, SITEURL: #. those are placeholders. -#: wp-admin/includes/misc.php:1485 +#: wp-admin/includes/misc.php:1462 msgid "" -"Howdy ###USERNAME###,\n" +"Howdy,\n" "\n" -"Someone with administrator capabilities recently requested to have the\n" +"A site administrator (###USERNAME###) recently requested to have the\n" "administration email address changed on this site:\n" "###SITEURL###\n" "\n" @@ -1655,9 +1843,9 @@ msgid "" "All at ###SITENAME###\n" "###SITEURL###" msgstr "" -"Howdy ###USERNAME###,\n" +"Hi,\n" "\n" -"Someone with administrator capabilities recently requested to have the\n" +"A site administrator (###USERNAME###) recently requested to have the\n" "administration email address changed on this site:\n" "###SITEURL###\n" "\n" @@ -1674,31 +1862,26 @@ msgstr "" "###SITEURL###" #. translators: Default privacy policy heading. -#: wp-admin/includes/class-wp-privacy-policy-content.php:600 +#: wp-admin/includes/class-wp-privacy-policy-content.php:598 msgid "Where your data is sent" msgstr "Where your data is sent" #. translators: %s: Attachment title. -#: wp-admin/includes/class-wp-media-list-table.php:828 +#: wp-admin/includes/class-wp-media-list-table.php:835 msgid "Copy “%s” URL to clipboard" msgstr "Copy “%s” URL to clipboard" -#: wp-admin/includes/class-wp-automatic-updater.php:1076 +#: wp-admin/includes/class-wp-automatic-updater.php:1084 msgid "Some data that describes the error your site encountered has been put together." msgstr "Some data that describes the error your site encountered has been put together." -#: wp-admin/includes/class-wp-automatic-updater.php:1010 +#: wp-admin/includes/class-wp-automatic-updater.php:1018 msgid "An attempt was made, but your site could not be updated automatically." msgstr "An attempt was made, but your site could not be updated automatically." -#: wp-admin/includes/class-theme-installer-skin.php:254 -msgctxt "theme" -msgid "Active" -msgstr "Active" - #: wp-admin/includes/class-core-upgrader.php:166 #: wp-admin/includes/class-wp-upgrader.php:206 -#: wp-admin/includes/update-core.php:1087 +#: wp-admin/includes/update-core.php:1101 msgid "The update cannot be installed because some files could not be copied. This is usually due to inconsistent file permissions." msgstr "The update cannot be installed because some files could not be copied. This is usually due to inconsistent file permissions." @@ -1742,7 +1925,7 @@ msgstr "Privacy Laws around the world require businesses and online services to msgid "This screen is where you manage requests to erase personal data." msgstr "This screen is where you manage requests to erase personal data." -#: wp-admin/edit-form-advanced.php:469 +#: wp-admin/edit-form-advanced.php:462 msgid "This post is being backed up in your browser, just in case." msgstr "This post is being backed up in your browser, just in case." @@ -1765,6 +1948,10 @@ msgstr "There is a new kind of WordPress theme, called a block theme, that lets msgid "Discover a new way to build your site." msgstr "Discover a new way to build your site." +#: wp-admin/includes/dashboard.php:2118 +msgid "Edit styles" +msgstr "Edit styles" + #: wp-admin/includes/dashboard.php:2117 msgid "Tweak your site, or give it a whole new look! Get creative — how about a new color palette or font?" msgstr "Tweak your site, or give it a whole new look! Get creative – how about a new colour palette or font?" @@ -1818,21 +2005,21 @@ msgstr "Learn more about the %s version." msgid "WordPress is free and open source software" msgstr "WordPress is free and open-source software" -#: wp-admin/menu.php:275 wp-admin/menu.php:276 wp-admin/menu.php:305 -#: wp-admin/network/menu.php:107 +#: wp-admin/menu.php:286 wp-admin/menu.php:287 wp-admin/menu.php:316 +#: wp-admin/network/menu.php:112 msgid "Plugin File Editor" msgstr "Plugin file editor" -#: wp-admin/menu.php:255 wp-admin/menu.php:256 wp-admin/network/menu.php:82 +#: wp-admin/menu.php:266 wp-admin/menu.php:267 wp-admin/network/menu.php:87 msgid "Theme File Editor" msgstr "Theme file editor" #. translators: %s: Documentation URL. -#: wp-admin/user-edit.php:862 +#: wp-admin/user-edit.php:864 msgid "If this is a development website, you can set the environment type accordingly to enable application passwords." msgstr "If this is a development website, you can set the environment type accordingly to enable application passwords." -#: wp-admin/user-edit.php:857 +#: wp-admin/user-edit.php:859 msgid "The application password feature requires HTTPS, which is not enabled on this site." msgstr "The application password feature requires HTTPS, which is not enabled on this site." @@ -1913,11 +2100,11 @@ msgctxt "plugin" msgid "Cannot Activate" msgstr "Cannot activate" -#: wp-admin/includes/class-wp-debug-data.php:1629 +#: wp-admin/includes/class-wp-debug-data.php:1657 msgid "Max connections number" msgstr "Maximum connections number" -#: wp-admin/includes/class-wp-debug-data.php:1625 +#: wp-admin/includes/class-wp-debug-data.php:1653 msgid "Max allowed packet size" msgstr "Maximum allowed packet size" @@ -1927,7 +2114,7 @@ msgstr "Your website appears to use basic authentication, which is not currently #. translators: Editor admin screen title. 1: "Edit item" text for the post #. type, 2: Post title. -#: wp-admin/admin-header.php:60 +#: wp-admin/admin-header.php:65 msgid "%1$s “%2$s”" msgstr "%1$s “%2$s”" @@ -1970,35 +2157,32 @@ msgstr "%1$s %2$s was deactivated due to incompatibility with WordPress %3$s." msgid "%1$s %2$s was deactivated due to incompatibility with WordPress %3$s, please upgrade to %1$s %4$s or later." msgstr "%1$s %2$s was deactivated due to incompatibility with WordPress %3$s, please upgrade to %1$s %4$s or later." -#: wp-admin/privacy.php:29 -msgid "We take privacy and transparency very seriously" -msgstr "We take privacy and transparency very seriously" - #: wp-admin/freedoms.php:30 msgid "The Four Freedoms" msgstr "The Four Freedoms" #. translators: %s: Theme name. -#: wp-admin/themes.php:1246 +#: wp-admin/themes.php:1311 #: wp-admin/includes/class-wp-ms-themes-list-table.php:641 msgctxt "theme" msgid "Delete %s" msgstr "Delete %s" #. translators: %s: Theme name. -#: wp-admin/themes.php:622 wp-admin/themes.php:992 +#: wp-admin/themes.php:631 wp-admin/themes.php:650 wp-admin/themes.php:1022 +#: wp-admin/themes.php:1040 wp-admin/themes.php:1267 wp-admin/themes.php:1289 msgctxt "theme" msgid "Live Preview %s" msgstr "Live Preview %s" #. translators: %s: Theme name. -#: wp-admin/themes.php:608 wp-admin/themes.php:979 +#: wp-admin/themes.php:610 wp-admin/themes.php:1002 msgctxt "theme" msgid "Customize %s" msgstr "Customise %s" #. translators: %s: Theme name. -#: wp-admin/themes.php:584 wp-admin/themes.php:955 +#: wp-admin/themes.php:584 wp-admin/themes.php:976 msgctxt "theme" msgid "View Theme Details for %s" msgstr "View theme details for %s" @@ -2023,15 +2207,15 @@ msgstr "You need to make the file %1$s writable before you can save your changes msgid "Rewrite rules:" msgstr "Rewrite rules:" -#: wp-admin/nav-menus.php:1166 +#: wp-admin/nav-menus.php:1168 msgid "List of menu items selected for deletion:" msgstr "List of menu items selected for deletion:" -#: wp-admin/nav-menus.php:1164 +#: wp-admin/nav-menus.php:1166 msgid "Remove Selected Items" msgstr "Remove selected items" -#: wp-admin/nav-menus.php:1127 wp-admin/nav-menus.php:1162 +#: wp-admin/nav-menus.php:1129 wp-admin/nav-menus.php:1164 msgid "Bulk Select" msgstr "Bulk select" @@ -2046,7 +2230,7 @@ msgid "item %s" msgstr "item %s" #. translators: %s: Number of available theme updates. -#: wp-admin/menu.php:204 wp-admin/network/menu.php:63 +#: wp-admin/menu.php:209 wp-admin/network/menu.php:68 msgid "Themes %s" msgstr "Themes %s" @@ -2077,19 +2261,19 @@ msgstr "Learn how to browse happyLink Manager plugin to use the link manager." msgstr "Please activate the Link Manager plugin to use the link manager." @@ -2179,11 +2363,11 @@ msgid "Password reset link sent." msgstr "Password reset link sent." #. translators: %s: User's display name. -#: wp-admin/user-edit.php:729 +#: wp-admin/user-edit.php:731 msgid "Send %s a link to reset their password. This will not change their password, nor will it force a change." msgstr "Send %s a link to reset their password. This will not change their password, nor will it force a change." -#: wp-admin/user-edit.php:722 +#: wp-admin/user-edit.php:724 msgid "Send Reset Link" msgstr "Send Reset Link" @@ -2343,15 +2527,15 @@ msgid "Send password reset" msgstr "Send password reset" #. translators: Default privacy policy heading. -#: wp-admin/includes/class-wp-privacy-policy-content.php:614 +#: wp-admin/includes/class-wp-privacy-policy-content.php:612 msgid "Contact information" msgstr "Contact information" -#: wp-admin/includes/class-wp-privacy-policy-content.php:433 +#: wp-admin/includes/class-wp-privacy-policy-content.php:431 msgid "Copy suggested policy text to clipboard" msgstr "Copy suggested policy text to clipboard" -#: wp-admin/includes/file.php:2000 +#: wp-admin/includes/file.php:2018 msgid "Directory listing failed." msgstr "Directory listing failed." @@ -2407,7 +2591,7 @@ msgstr "Your site is running on an outdated version of PHP (%s), which should be msgid "PHP Update Recommended" msgstr "PHP Update Recommended" -#: wp-admin/user-edit.php:840 +#: wp-admin/user-edit.php:842 msgid "Your website appears to use Basic Authentication, which is not currently compatible with Application Passwords." msgstr "Your website appears to use Basic Authentication, which is not currently compatible with Application Passwords." @@ -2465,20 +2649,20 @@ msgid "Site Health Status — Informs you of any potential msgstr "Site Health Status – Informs you of any potential issues that should be addressed to improve the performance or security of your website." #. translators: %s: Application name. -#: wp-admin/authorize-application.php:209 wp-admin/user-edit.php:981 +#: wp-admin/authorize-application.php:209 wp-admin/user-edit.php:983 #: wp-admin/js/auth-app.js:90 msgid "Your new password for %s is:" msgstr "Your new password for %s is:" -#: wp-admin/user-edit.php:835 -msgid "Add New Application Password" -msgstr "Add New Application Password" +#: wp-admin/user-edit.php:837 +msgid "Add Application Password" +msgstr "Add Application Password" -#: wp-admin/user-edit.php:821 +#: wp-admin/user-edit.php:823 msgid "Required to create an Application Password, but not to update the user." msgstr "Required to create an Application Password, but not to update the user." -#: wp-admin/about.php:274 +#: wp-admin/about.php:315 msgid "Go to Updates" msgstr "Go to Updates" @@ -2570,39 +2754,39 @@ msgstr "The Authorise Application request is not allowed." msgid "Authorize Application" msgstr "Authorise Application" -#: wp-admin/authorize-application.php:215 wp-admin/user-edit.php:990 +#: wp-admin/authorize-application.php:215 wp-admin/user-edit.php:992 #: wp-admin/js/auth-app.js:98 msgid "Be sure to save this in a safe location. You will not be able to retrieve it." msgstr "Be sure to save this in a safe location. You will not be able to retrieve it." -#: wp-admin/authorize-application.php:247 wp-admin/user-edit.php:819 +#: wp-admin/authorize-application.php:247 wp-admin/user-edit.php:821 msgid "New Application Password Name" msgstr "New Application Password Name" #. translators: 1: URL to my-sites.php, 2: Number of sites the user has. -#: wp-admin/user-edit.php:789 +#: wp-admin/user-edit.php:791 msgid "Application passwords grant access to the %2$s site in this installation that you have permissions on." msgid_plural "Application passwords grant access to all %2$s sites in this installation that you have permissions on." msgstr[0] "Application passwords grant access to the %2$s site in this installation on which you have permissions." msgstr[1] "Application passwords grant access to all %2$s sites in this installation on which you have permissions." -#: wp-admin/user-edit.php:777 +#: wp-admin/user-edit.php:779 msgid "Application passwords allow authentication via non-interactive systems, such as XML-RPC or the REST API, without providing your actual password. Application passwords can be easily revoked. They cannot be used for traditional logins to your website." msgstr "Application passwords allow authentication via non-interactive systems, such as XML-RPC or the REST API, without providing your actual password. Application passwords can be easily revoked. They cannot be used for traditional logins to your website." -#: wp-admin/user-edit.php:776 +#: wp-admin/user-edit.php:778 msgid "Application Passwords" msgstr "Application Passwords" -#: wp-admin/user-edit.php:700 +#: wp-admin/user-edit.php:702 msgid "Type the new password again." msgstr "Type the new password again." -#: wp-admin/user-edit.php:676 +#: wp-admin/user-edit.php:678 msgid "Set New Password" msgstr "Set New Password" -#: wp-admin/user-new.php:612 +#: wp-admin/user-new.php:617 msgid "Type the password again." msgstr "Type the password again." @@ -2652,12 +2836,12 @@ msgstr "Erase personal data" #. translators: 1: Theme name, 2: Current version number, 3: New version #. number. -#: wp-admin/includes/class-wp-automatic-updater.php:1376 -#: wp-admin/includes/class-wp-automatic-updater.php:1447 +#: wp-admin/includes/class-wp-automatic-updater.php:1395 +#: wp-admin/includes/class-wp-automatic-updater.php:1466 msgid "- %1$s (from version %2$s to %3$s)" msgstr "– %1$s (from version %2$s to %3$s)" -#: wp-admin/includes/template.php:2434 +#: wp-admin/includes/template.php:2433 msgid "Current Header Video" msgstr "Current Header Video" @@ -2698,7 +2882,7 @@ msgid "The URL must be served over a secure connection." msgstr "The URL must be served over a secure connection." #. translators: Default privacy policy text. -#: wp-admin/includes/class-wp-privacy-policy-content.php:572 +#: wp-admin/includes/class-wp-privacy-policy-content.php:570 msgid "If you request a password reset, your IP address will be included in the reset email." msgstr "If you request a password reset, your IP address will be included in the reset email." @@ -2719,41 +2903,41 @@ msgid "Mark export request for “%s” as completed." msgstr "Mark export request for “%s” as completed." #. translators: %d: Number of requests. -#: wp-admin/includes/class-wp-privacy-requests-table.php:341 +#: wp-admin/includes/class-wp-privacy-requests-table.php:346 msgid "%d request deleted successfully." msgid_plural "%d requests deleted successfully." msgstr[0] "%d request deleted successfully." msgstr[1] "%d requests deleted successfully." #. translators: %d: Number of requests. -#: wp-admin/includes/class-wp-privacy-requests-table.php:324 +#: wp-admin/includes/class-wp-privacy-requests-table.php:329 msgid "%d request failed to delete." msgid_plural "%d requests failed to delete." msgstr[0] "%d request failed to delete." msgstr[1] "%d requests failed to delete." #. translators: %d: Number of requests. -#: wp-admin/includes/class-wp-privacy-requests-table.php:298 +#: wp-admin/includes/class-wp-privacy-requests-table.php:303 msgid "%d request marked as complete." msgid_plural "%d requests marked as complete." msgstr[0] "%d request marked as complete." msgstr[1] "%d requests marked as complete." #. translators: %d: Number of requests. -#: wp-admin/includes/class-wp-privacy-requests-table.php:271 +#: wp-admin/includes/class-wp-privacy-requests-table.php:276 msgid "%d confirmation request re-sent successfully." msgid_plural "%d confirmation requests re-sent successfully." msgstr[0] "%d confirmation request resent successfully." msgstr[1] "%d confirmation requests resent successfully." #. translators: %d: Number of requests. -#: wp-admin/includes/class-wp-privacy-requests-table.php:254 +#: wp-admin/includes/class-wp-privacy-requests-table.php:259 msgid "%d confirmation request failed to resend." msgid_plural "%d confirmation requests failed to resend." msgstr[0] "%d confirmation request failed to resend." msgstr[1] "%d confirmation requests failed to resend." -#: wp-admin/includes/class-wp-privacy-requests-table.php:212 +#: wp-admin/includes/class-wp-privacy-requests-table.php:217 msgid "Mark requests as completed" msgstr "Mark requests as completed" @@ -2786,7 +2970,7 @@ msgid "Unable to generate personal data export file. ZipArchive not available." msgstr "Unable to generate personal data export file. ZipArchive not available." #. translators: %s: Search query. -#: wp-admin/edit-comments.php:282 wp-admin/edit-tags.php:340 +#: wp-admin/edit-comments.php:282 wp-admin/edit-tags.php:343 #: wp-admin/edit.php:429 wp-admin/link-manager.php:111 wp-admin/plugins.php:778 #: wp-admin/upload.php:430 wp-admin/users.php:795 wp-admin/js/updates.js:3139 #: wp-admin/network/sites.php:399 wp-admin/network/themes.php:374 @@ -2815,7 +2999,7 @@ msgstr "Environment type" msgid "Auto-updates are only available for plugins recognized by WordPress.org, or that include a compatible update system." msgstr "Auto-updates are only available for plugins recognised by WordPress.org, or that include a compatible update system." -#: wp-admin/includes/theme.php:902 wp-admin/themes.php:1122 +#: wp-admin/includes/theme.php:902 wp-admin/themes.php:1164 msgid "Update Incompatible" msgstr "Update Incompatible" @@ -2905,24 +3089,24 @@ msgstr "The %1$s directive in %2$s determines if uploading files is allowed on y msgid "Files can be uploaded" msgstr "Files can be uploaded" -#: wp-admin/includes/class-wp-debug-data.php:607 +#: wp-admin/includes/class-wp-debug-data.php:635 msgid "Max effective file size" msgstr "Maximum effective file size" -#: wp-admin/includes/class-wp-debug-data.php:603 +#: wp-admin/includes/class-wp-debug-data.php:631 msgid "Max size of an uploaded file" msgstr "Maximum size of an uploaded file" -#: wp-admin/includes/class-wp-debug-data.php:599 +#: wp-admin/includes/class-wp-debug-data.php:627 msgid "Max size of post data allowed" msgstr "Maximum size of post data allowed" -#: wp-admin/includes/class-wp-debug-data.php:594 +#: wp-admin/includes/class-wp-debug-data.php:622 #: wp-admin/includes/class-wp-site-health.php:2759 msgid "File uploads" msgstr "File uploads" -#: wp-admin/includes/class-wp-debug-data.php:576 +#: wp-admin/includes/class-wp-debug-data.php:604 msgid "File upload settings" msgstr "File upload settings" @@ -2939,7 +3123,7 @@ msgid "Install %s" msgstr "Install %s" #. translators: %s: Theme name. -#: wp-admin/includes/class-wp-theme-install-list-table.php:339 +#: wp-admin/includes/class-wp-theme-install-list-table.php:338 #: wp-admin/theme-install.php:445 msgctxt "theme" msgid "Install %s" @@ -2952,8 +3136,8 @@ msgid "Update %s now" msgstr "Update %s now" #. translators: 1: Theme name, 2: Version number. -#: wp-admin/includes/class-wp-automatic-updater.php:1384 -#: wp-admin/includes/class-wp-automatic-updater.php:1455 +#: wp-admin/includes/class-wp-automatic-updater.php:1403 +#: wp-admin/includes/class-wp-automatic-updater.php:1474 msgid "- %1$s version %2$s" msgstr "– %1$s version %2$s" @@ -2989,14 +3173,14 @@ msgid "Install %s now" msgstr "Install %s now" #. translators: Hidden accessibility text. -#: wp-admin/user-edit.php:995 wp-admin/js/application-passwords.js:203 -#: wp-admin/js/common.js:1103 +#: wp-admin/user-edit.php:997 wp-admin/js/application-passwords.js:203 +#: wp-admin/js/common.js:1109 msgid "Dismiss this notice." msgstr "Dismiss this notice." #. translators: %s: Theme name. -#: wp-admin/theme-install.php:430 wp-admin/themes.php:629 -#: wp-admin/themes.php:998 wp-admin/themes.php:1232 +#: wp-admin/theme-install.php:430 wp-admin/themes.php:641 +#: wp-admin/themes.php:1031 wp-admin/themes.php:1299 msgctxt "theme" msgid "Cannot Activate %s" msgstr "Cannot Activate %s" @@ -3062,7 +3246,7 @@ msgstr "Please connect to your network admin to manage plugins automatic updates msgid "The admin email verification page will reappear after %s." msgstr "The admin email verification page will reappear after %s." -#: wp-admin/includes/class-wp-debug-data.php:1140 wp-admin/plugins.php:594 +#: wp-admin/includes/class-wp-debug-data.php:1168 wp-admin/plugins.php:594 #: wp-admin/themes.php:197 wp-admin/update-core.php:1025 #: wp-admin/network/themes.php:326 msgid "Auto-updates" @@ -3084,8 +3268,8 @@ msgid "Important: Before updating, please back msgstr "Important: before updating, please back up your database and files. For help with updates, visit the Updating WordPress documentation page." #: wp-admin/customize.php:203 wp-admin/theme-install.php:433 -#: wp-admin/theme-install.php:495 wp-admin/themes.php:631 -#: wp-admin/themes.php:1000 wp-admin/themes.php:1238 +#: wp-admin/theme-install.php:495 wp-admin/themes.php:645 +#: wp-admin/themes.php:1035 wp-admin/themes.php:1303 msgctxt "theme" msgid "Cannot Activate" msgstr "Cannot Activate" @@ -3094,7 +3278,7 @@ msgstr "Cannot Activate" msgid "You cannot edit this comment because the associated post is in the Trash. Please restore the post first, then try again." msgstr "You cannot edit this comment because the associated post is in the Bin. Please restore the post first, then try again." -#: wp-admin/async-upload.php:73 +#: wp-admin/async-upload.php:70 msgctxt "media item" msgid "Success" msgstr "Success" @@ -3142,88 +3326,88 @@ msgid "You cannot reply to a comment on a draft post." msgstr "You cannot reply to a comment on a draft post." #. translators: %s: Themes screen URL. -#: wp-admin/includes/class-wp-automatic-updater.php:1480 +#: wp-admin/includes/class-wp-automatic-updater.php:1499 msgid "To manage themes on your site, visit the Themes page: %s" msgstr "To manage themes on your site, visit the Themes page: %s" #. translators: %s: Plugins screen URL. -#: wp-admin/includes/class-wp-automatic-updater.php:1471 +#: wp-admin/includes/class-wp-automatic-updater.php:1490 msgid "To manage plugins on your site, visit the Plugins page: %s" msgstr "To manage plugins on your site, visit the Plugins page: %s" -#: wp-admin/includes/class-wp-automatic-updater.php:1441 +#: wp-admin/includes/class-wp-automatic-updater.php:1460 msgid "These themes are now up to date:" msgstr "These themes are now up to date:" -#: wp-admin/includes/class-wp-automatic-updater.php:1403 +#: wp-admin/includes/class-wp-automatic-updater.php:1422 msgid "These plugins are now up to date:" msgstr "These plugins are now up to date:" -#: wp-admin/includes/class-wp-automatic-updater.php:1370 +#: wp-admin/includes/class-wp-automatic-updater.php:1389 msgid "These themes failed to update:" msgstr "These themes failed to update:" -#: wp-admin/includes/class-wp-automatic-updater.php:1326 +#: wp-admin/includes/class-wp-automatic-updater.php:1345 msgid "Please check your site now. It’s possible that everything is working. If there are updates available, you should update." msgstr "Please check your site now. It’s possible that everything is working. If there are updates available, you should update." #. translators: %s: Home URL. -#: wp-admin/includes/class-wp-automatic-updater.php:1316 +#: wp-admin/includes/class-wp-automatic-updater.php:1335 msgid "Howdy! Themes failed to update on your site at %s." msgstr "Hi! Themes failed to update on your site at %s." #. translators: %s: Site title. -#: wp-admin/includes/class-wp-automatic-updater.php:1313 +#: wp-admin/includes/class-wp-automatic-updater.php:1332 msgid "[%s] Some themes have failed to update" msgstr "[%s] Some themes have failed to update" #. translators: %s: Home URL. -#: wp-admin/includes/class-wp-automatic-updater.php:1308 +#: wp-admin/includes/class-wp-automatic-updater.php:1327 msgid "Howdy! Plugins failed to update on your site at %s." msgstr "Hi! Plugins failed to update on your site at %s." #. translators: %s: Site title. -#: wp-admin/includes/class-wp-automatic-updater.php:1305 +#: wp-admin/includes/class-wp-automatic-updater.php:1324 msgid "[%s] Some plugins have failed to update" msgstr "[%s] Some plugins have failed to update" #. translators: %s: Home URL. -#: wp-admin/includes/class-wp-automatic-updater.php:1300 +#: wp-admin/includes/class-wp-automatic-updater.php:1319 msgid "Howdy! Plugins and themes failed to update on your site at %s." msgstr "Hi! Plugins and themes failed to update on your site at %s." #. translators: %s: Site title. -#: wp-admin/includes/class-wp-automatic-updater.php:1297 +#: wp-admin/includes/class-wp-automatic-updater.php:1316 msgid "[%s] Some plugins and themes have failed to update" msgstr "[%s] Some plugins and themes have failed to update" #. translators: %s: Home URL. -#: wp-admin/includes/class-wp-automatic-updater.php:1287 +#: wp-admin/includes/class-wp-automatic-updater.php:1306 msgid "Howdy! Some themes have automatically updated to their latest versions on your site at %s. No further action is needed on your part." msgstr "Hi! Some themes have automatically updated to their latest versions on your site at %s. No further action is needed on your part." #. translators: %s: Site title. -#: wp-admin/includes/class-wp-automatic-updater.php:1284 +#: wp-admin/includes/class-wp-automatic-updater.php:1303 msgid "[%s] Some themes were automatically updated" msgstr "[%s] Some themes were automatically updated" #. translators: %s: Home URL. -#: wp-admin/includes/class-wp-automatic-updater.php:1279 +#: wp-admin/includes/class-wp-automatic-updater.php:1298 msgid "Howdy! Some plugins have automatically updated to their latest versions on your site at %s. No further action is needed on your part." msgstr "Hi! Some plugins have automatically updated to their latest versions on your site at %s. No further action is needed on your part." #. translators: %s: Site title. -#: wp-admin/includes/class-wp-automatic-updater.php:1276 +#: wp-admin/includes/class-wp-automatic-updater.php:1295 msgid "[%s] Some plugins were automatically updated" msgstr "[%s] Some plugins were automatically updated" #. translators: %s: Home URL. -#: wp-admin/includes/class-wp-automatic-updater.php:1271 +#: wp-admin/includes/class-wp-automatic-updater.php:1290 msgid "Howdy! Some plugins and themes have automatically updated to their latest versions on your site at %s. No further action is needed on your part." msgstr "Hi! Some plugins and themes have automatically updated to their latest versions on your site at %s. No further action is needed on your part." #. translators: %s: Site title. -#: wp-admin/includes/class-wp-automatic-updater.php:1268 +#: wp-admin/includes/class-wp-automatic-updater.php:1287 msgid "[%s] Some plugins and themes have automatically updated" msgstr "[%s] Some plugins and themes have automatically updated" @@ -3237,7 +3421,7 @@ msgstr "Move %s box down" msgid "Move %s box up" msgstr "Move %s box up" -#: wp-admin/includes/class-wp-comments-list-table.php:377 +#: wp-admin/includes/class-wp-comments-list-table.php:381 msgctxt "comment" msgid "Not spam" msgstr "Not spam" @@ -3357,14 +3541,14 @@ msgid "The active theme has the following error: \"%s\"." msgstr "The active theme has the following error: \"%s\"." #: wp-admin/includes/class-wp-plugins-list-table.php:1324 -#: wp-admin/themes.php:780 wp-admin/js/updates.js:3474 -#: wp-admin/includes/class-wp-ms-themes-list-table.php:817 +#: wp-admin/themes.php:801 wp-admin/js/updates.js:3474 +#: wp-admin/includes/class-wp-ms-themes-list-table.php:823 msgid "Enable auto-updates" msgstr "Enable auto-updates" #: wp-admin/includes/class-wp-plugins-list-table.php:1320 -#: wp-admin/themes.php:776 wp-admin/js/updates.js:3463 -#: wp-admin/includes/class-wp-ms-themes-list-table.php:813 +#: wp-admin/themes.php:797 wp-admin/js/updates.js:3463 +#: wp-admin/includes/class-wp-ms-themes-list-table.php:819 msgid "Disable auto-updates" msgstr "Disable auto-updates" @@ -3422,8 +3606,8 @@ msgstr "Cancel and go back" #: wp-admin/includes/class-theme-installer-skin.php:354 msgctxt "theme" -msgid "Replace active with uploaded" -msgstr "Replace active with uploaded" +msgid "Replace installed with uploaded" +msgstr "Replace installed with uploaded" #. translators: %s: Documentation URL. #: wp-admin/includes/class-theme-installer-skin.php:342 @@ -3432,8 +3616,8 @@ msgstr "You are updating a theme. Be sure to back up your databas #. translators: %s: Documentation URL. #: wp-admin/includes/class-theme-installer-skin.php:336 -msgid "You are uploading an older version of the active theme. You can continue to install the older version, but be sure to back up your database and files first." -msgstr "You are uploading an older version of the active theme. You can continue to install the older version, but be sure to back up your database and files first." +msgid "You are uploading an older version of the installed theme. You can continue to install the older version, but be sure to back up your database and files first." +msgstr "You are uploading an older version of the installed theme. You can continue to install the older version, but be sure to back up your database and files first." #. translators: 1: Current WordPress version, 2: Version required by the #. uploaded theme. @@ -3505,23 +3689,23 @@ msgstr "Could not remove the current plugin." msgid "Removing the current plugin…" msgstr "Removing the current plugin…" -#: wp-admin/includes/class-wp-debug-data.php:1251 +#: wp-admin/includes/class-wp-debug-data.php:1279 msgid "Auto-update" msgstr "Auto-update" -#: wp-admin/includes/class-wp-debug-data.php:977 -#: wp-admin/includes/class-wp-debug-data.php:1357 +#: wp-admin/includes/class-wp-debug-data.php:1005 +#: wp-admin/includes/class-wp-debug-data.php:1385 #: wp-admin/includes/class-wp-plugins-list-table.php:1311 -#: wp-admin/themes.php:771 wp-admin/js/updates.js:3476 -#: wp-admin/includes/class-wp-ms-themes-list-table.php:804 +#: wp-admin/themes.php:792 wp-admin/js/updates.js:3476 +#: wp-admin/includes/class-wp-ms-themes-list-table.php:810 msgid "Auto-updates disabled" msgstr "Auto-updates disabled" -#: wp-admin/includes/class-wp-debug-data.php:975 -#: wp-admin/includes/class-wp-debug-data.php:1355 +#: wp-admin/includes/class-wp-debug-data.php:1003 +#: wp-admin/includes/class-wp-debug-data.php:1383 #: wp-admin/includes/class-wp-plugins-list-table.php:1309 -#: wp-admin/themes.php:773 wp-admin/js/updates.js:3465 -#: wp-admin/includes/class-wp-ms-themes-list-table.php:802 +#: wp-admin/themes.php:794 wp-admin/js/updates.js:3465 +#: wp-admin/includes/class-wp-ms-themes-list-table.php:808 msgid "Auto-updates enabled" msgstr "Auto-updates enabled" @@ -3560,7 +3744,7 @@ msgid "Error: The %s options page is not in the allowed options msgstr "Error: The %s options page is not in the allowed options list." #: wp-admin/import.php:65 wp-admin/themes.php:348 wp-admin/users.php:345 -#: wp-admin/includes/network.php:117 +#: wp-admin/includes/network.php:117 wp-admin/includes/network.php:161 msgid "Error:" msgstr "Error:" @@ -3650,7 +3834,7 @@ msgstr "No media files found in Bin." #. translators: Date string for upcoming events. 1: Starting month, 2: Starting #. day, 3: Ending month, 4: Ending day, 5: Ending year. #: wp-admin/includes/class-wp-community-events.php:427 -#: wp-admin/js/dashboard.js:778 +#: wp-admin/js/dashboard.js:784 msgid "%1$s %2$d – %3$s %4$d, %5$d" msgstr "%1$s %2$d – %3$s %4$d, %5$d" @@ -3658,7 +3842,7 @@ msgstr "%1$s %2$d – %3$s %4$d, %5$d" #. https://www.php.net/manual/datetime.format.php #: wp-admin/includes/class-wp-community-events.php:422 #: wp-admin/includes/class-wp-community-events.php:432 -#: wp-admin/js/dashboard.js:791 wp-admin/js/dashboard.js:802 +#: wp-admin/js/dashboard.js:797 wp-admin/js/dashboard.js:808 msgctxt "upcoming events year format" msgid "Y" msgstr "Y" @@ -3669,8 +3853,8 @@ msgstr "Y" #: wp-admin/includes/class-wp-community-events.php:420 #: wp-admin/includes/class-wp-community-events.php:429 #: wp-admin/includes/class-wp-community-events.php:431 -#: wp-admin/js/dashboard.js:789 wp-admin/js/dashboard.js:790 -#: wp-admin/js/dashboard.js:799 wp-admin/js/dashboard.js:801 +#: wp-admin/js/dashboard.js:795 wp-admin/js/dashboard.js:796 +#: wp-admin/js/dashboard.js:805 wp-admin/js/dashboard.js:807 msgctxt "upcoming events day format" msgid "j" msgstr "j" @@ -3678,7 +3862,7 @@ msgstr "j" #. translators: Date string for upcoming events. 1: Month, 2: Starting day, 3: #. Ending day, 4: Year. #: wp-admin/includes/class-wp-community-events.php:416 -#: wp-admin/js/dashboard.js:776 +#: wp-admin/js/dashboard.js:782 msgid "%1$s %2$d–%3$d, %4$d" msgstr "%1$s %2$d–%3$d, %4$d" @@ -3686,21 +3870,21 @@ msgstr "%1$s %2$d–%3$d, %4$d" #. https://www.php.net/manual/datetime.format.php #: wp-admin/includes/class-wp-community-events.php:410 #: wp-admin/includes/class-wp-community-events.php:411 -#: wp-admin/js/dashboard.js:788 wp-admin/js/dashboard.js:798 -#: wp-admin/js/dashboard.js:800 +#: wp-admin/js/dashboard.js:794 wp-admin/js/dashboard.js:804 +#: wp-admin/js/dashboard.js:806 msgctxt "upcoming events month format" msgid "F" msgstr "F" -#: wp-admin/includes/class-wp-privacy-requests-table.php:211 +#: wp-admin/includes/class-wp-privacy-requests-table.php:216 msgid "Resend confirmation requests" msgstr "Resend confirmation requests" -#: wp-admin/includes/class-wp-privacy-requests-table.php:213 +#: wp-admin/includes/class-wp-privacy-requests-table.php:218 msgid "Delete requests" msgstr "Delete requests" -#: wp-admin/includes/class-wp-debug-data.php:1610 +#: wp-admin/includes/class-wp-debug-data.php:1638 msgid "Table prefix" msgstr "Table prefix" @@ -3732,7 +3916,7 @@ msgid "The seventh parameter passed to %s should be numeric representing menu po msgstr "The seventh parameter passed to %s should be numeric representing menu position." #. translators: 1: WordPress version number, 2: The PHP extension name needed. -#: wp-admin/includes/update-core.php:1187 +#: wp-admin/includes/update-core.php:1207 msgid "The update cannot be installed because WordPress %1$s requires the %2$s PHP extension." msgstr "The update cannot be installed because WordPress %1$s requires the %2$s PHP extension." @@ -3796,15 +3980,15 @@ msgstr "Do msgid "This page allows direct access to your site settings. You can break things here. Please be cautious!" msgstr "This page allows direct access to your site settings. You can break things here. Please be cautious!" -#: wp-admin/edit-form-advanced.php:380 +#: wp-admin/edit-form-advanced.php:373 msgid "Format — Post Formats designate how your theme will display a specific post. For example, you could have a standard blog post with a title and paragraphs, or a short aside that omits the title and contains a short text blurb. Your theme could enable all or some of 10 possible formats. Learn more about each post format." msgstr "Format – Post Formats designate how your theme will display a specific post. For example, you could have a standard blog post with a title and paragraphs, or a short aside that omits the title and contains a short text blurb. Your theme could enable all or some of ten possible formats. Learn more about each post format." -#: wp-admin/edit-form-advanced.php:337 +#: wp-admin/edit-form-advanced.php:330 msgid "Documentation on Editing Pages" msgstr "Documentation on Editing Pages" -#: wp-admin/edit-form-advanced.php:336 +#: wp-admin/edit-form-advanced.php:329 msgid "Documentation on Adding New Pages" msgstr "Documentation on Adding New Pages" @@ -3816,7 +4000,7 @@ msgstr "Revisions Management" msgstr "Revisions Management" -#: wp-admin/edit-form-advanced.php:355 +#: wp-admin/edit-form-advanced.php:348 msgid "Documentation on Edit Media" msgstr "Documentation on Edit Media" @@ -3828,7 +4012,7 @@ msgstr " msgid "Documentation on Dashboard" msgstr "Documentation on Dashboard" -#: wp-admin/user-new.php:310 +#: wp-admin/user-new.php:315 msgid "Documentation on Adding New Users" msgstr "Documentation on Adding New Users" @@ -3853,11 +4037,11 @@ msgstr "Documentation on Updating WordPress" msgstr "Documentation on Updating WordPress" -#: wp-admin/nav-menus.php:771 +#: wp-admin/nav-menus.php:773 msgid "Documentation on Menus" msgstr "Documentation on Menus" -#: wp-admin/plugin-editor.php:152 +#: wp-admin/plugin-editor.php:155 msgid "Documentation on Writing Plugins" msgstr "Documentation on Writing Plugins" @@ -3878,16 +4062,16 @@ msgid " msgstr "Documentation on Comments" #. translators: %s: UTC time. -#: wp-admin/options-general.php:406 +#: wp-admin/options-general.php:405 msgid "Universal time is %s." msgstr "Universal time is %s." #. translators: %s: UTC abbreviation -#: wp-admin/options-general.php:395 +#: wp-admin/options-general.php:394 msgid "Choose either a city in the same timezone as you or a %s (Coordinated Universal Time) time offset." msgstr "Choose either a city in the same time zone as you or a %s (Coordinated Universal Time) time offset." -#: wp-admin/options-general.php:266 +#: wp-admin/options-general.php:265 msgid "Administration Email Address" msgstr "Administration Email Address" @@ -3896,8 +4080,8 @@ msgid "Documentation on General Settings" #. translators: %s: Documentation URL. -#: wp-admin/includes/file.php:328 wp-admin/plugin-editor.php:325 -#: wp-admin/theme-editor.php:361 +#: wp-admin/includes/file.php:328 wp-admin/plugin-editor.php:335 +#: wp-admin/theme-editor.php:366 msgid "You need to make this file writable before you can save your changes. See Changing File Permissions for more information." msgstr "You need to make this file writable before you can save your changes. See Changing File Permissions for more information." @@ -3918,32 +4102,32 @@ msgstr "Erasure completed." msgid "The attached file cannot be found." msgstr "The attached file cannot be found." -#: wp-admin/includes/template.php:2336 +#: wp-admin/includes/template.php:2335 msgctxt "page label" msgid "Privacy Policy Page" msgstr "Privacy Policy Page" -#: wp-admin/includes/template.php:2331 +#: wp-admin/includes/template.php:2330 msgctxt "page label" msgid "Posts Page" msgstr "Posts Page" -#: wp-admin/includes/template.php:2327 +#: wp-admin/includes/template.php:2326 msgctxt "page label" msgid "Front Page" msgstr "Front Page" -#: wp-admin/includes/template.php:2318 +#: wp-admin/includes/template.php:2317 msgctxt "post status" msgid "Sticky" msgstr "Sticky" -#: wp-admin/includes/template.php:2310 +#: wp-admin/includes/template.php:2309 msgctxt "post status" msgid "Customization Draft" msgstr "Customisation Draft" -#: wp-admin/includes/template.php:2296 +#: wp-admin/includes/template.php:2295 msgctxt "post status" msgid "Password protected" msgstr "Password protected" @@ -4004,7 +4188,7 @@ msgstr "Scheduled for: %s" #. translators: Publish box time format, see #. https://www.php.net/manual/datetime.format.php -#: wp-admin/edit-form-advanced.php:177 wp-admin/edit-form-comment.php:150 +#: wp-admin/edit-form-advanced.php:170 wp-admin/edit-form-comment.php:150 #: wp-admin/includes/meta-boxes.php:236 wp-admin/includes/meta-boxes.php:442 msgctxt "publish box time format" msgid "H:i" @@ -4012,7 +4196,7 @@ msgstr "H:i" #. translators: Publish box date format, see #. https://www.php.net/manual/datetime.format.php -#: wp-admin/edit-form-advanced.php:175 wp-admin/edit-form-comment.php:148 +#: wp-admin/edit-form-advanced.php:168 wp-admin/edit-form-comment.php:148 #: wp-admin/includes/meta-boxes.php:234 wp-admin/includes/meta-boxes.php:440 msgctxt "publish box date format" msgid "M j, Y" @@ -4029,23 +4213,23 @@ msgstr "" "dynamically generated, and should only be modified via WordPress filters.\n" "Any changes to the directives between these markers will be overwritten." -#: wp-admin/includes/class-wp-site-health-auto-updates.php:149 +#: wp-admin/includes/class-wp-site-health-auto-updates.php:158 msgid "All automatic updates are disabled." msgstr "All automatic updates are disabled." -#: wp-admin/includes/class-wp-debug-data.php:1620 +#: wp-admin/includes/class-wp-debug-data.php:1648 msgid "Database collation" msgstr "Database collation" -#: wp-admin/includes/class-wp-debug-data.php:1615 +#: wp-admin/includes/class-wp-debug-data.php:1643 msgid "Database charset" msgstr "Database charset" -#: wp-admin/includes/class-wp-debug-data.php:1388 +#: wp-admin/includes/class-wp-debug-data.php:1416 msgid "Inactive Themes" msgstr "Inactive Themes" -#: wp-admin/includes/class-wp-debug-data.php:1259 +#: wp-admin/includes/class-wp-debug-data.php:1287 msgid "Parent Theme" msgstr "Parent Theme" @@ -4065,11 +4249,11 @@ msgstr "Overview of export report." msgid "Documentation on Writing Settings" msgstr "Documentation on Writing Settings" -#: wp-admin/edit-tags.php:309 +#: wp-admin/edit-tags.php:312 msgid "Documentation on Tags" msgstr "Documentation on Tags" -#: wp-admin/edit-tags.php:305 +#: wp-admin/edit-tags.php:308 msgid "Documentation on Categories" msgstr "Documentation on Categories" @@ -4106,7 +4290,7 @@ msgid "Default post settings" msgstr "Default post settings" #. translators: %s: Gravatar URL. -#: wp-admin/user-edit.php:630 +#: wp-admin/user-edit.php:632 msgid "You can change your profile picture on Gravatar." msgstr "You can change your profile picture on Gravatar." @@ -4144,11 +4328,11 @@ msgid "The plugin %1$s has been deactivated due to an error: %2$s" msgstr "The plugin %1$s has been deactivated due to an error: %2$s" #. translators: %s: Link to documentation on child themes. -#: wp-admin/theme-editor.php:410 +#: wp-admin/theme-editor.php:415 msgid "If you need to tweak more than your theme’s CSS, you might want to try making a child theme." msgstr "If you need to tweak more than your theme’s CSS, you might want to try making a child theme." -#: wp-admin/theme-editor.php:402 +#: wp-admin/theme-editor.php:407 msgid "You appear to be making direct edits to your theme in the WordPress dashboard. It is not recommended! Editing your theme directly could break your site and your changes may be lost in future updates." msgstr "You appear to be making direct edits to your theme in the WordPress dashboard. It is not recommended! Editing your theme directly could break your site and your changes may be lost in future updates." @@ -4159,8 +4343,8 @@ msgctxt "draft_length" msgid "10" msgstr "10" -#: wp-admin/includes/file.php:492 wp-admin/plugin-editor.php:118 -#: wp-admin/theme-editor.php:306 +#: wp-admin/includes/file.php:492 wp-admin/plugin-editor.php:121 +#: wp-admin/theme-editor.php:311 msgid "File does not exist! Please double check the name and try again." msgstr "File does not exist! Please double check the name and try again." @@ -4187,7 +4371,7 @@ msgctxt "Site Health" msgid "Status" msgstr "Status" -#: wp-admin/includes/class-wp-debug-data.php:810 +#: wp-admin/includes/class-wp-debug-data.php:838 msgid "Themes directory location" msgstr "Themes directory location" @@ -4259,13 +4443,13 @@ msgstr "The value, %1$s, has either been enabled by %2$s or added to your config #. translators: Background update finished notification email subject. %s: Site #. title. -#: wp-admin/includes/class-wp-automatic-updater.php:1635 +#: wp-admin/includes/class-wp-automatic-updater.php:1661 msgid "[%s] Background Update Finished" msgstr "[%s] Background Update Finished" #. translators: Background update failed notification email subject. %s: Site #. title. -#: wp-admin/includes/class-wp-automatic-updater.php:1632 +#: wp-admin/includes/class-wp-automatic-updater.php:1658 msgid "[%s] Background Update Failed" msgstr "[%s] Background Update Failed" @@ -4328,17 +4512,17 @@ msgid "Go to the Plugins screen" msgstr "Go to the Plugins screen" #. translators: %s: The filename of the package. -#: wp-admin/includes/file.php:1498 +#: wp-admin/includes/file.php:1516 msgid "The authenticity of %s could not be verified." msgstr "The authenticity of %s could not be verified." #. translators: %s: The filename of the package. -#: wp-admin/includes/file.php:1450 +#: wp-admin/includes/file.php:1468 msgid "The authenticity of %s could not be verified as no signature was found." msgstr "The authenticity of %s could not be verified as no signature was found." #. translators: %s: The filename of the package. -#: wp-admin/includes/file.php:1398 wp-admin/includes/file.php:1432 +#: wp-admin/includes/file.php:1416 wp-admin/includes/file.php:1450 msgid "The authenticity of %s could not be verified as signature verification is unavailable on this system." msgstr "The authenticity of %s could not be verified as signature verification is unavailable on this system." @@ -4495,19 +4679,19 @@ msgstr "This plugin failed to load properly and is paused during recovery mode." msgid "Go to the Themes screen" msgstr "Go to the Themes screen" -#: wp-admin/includes/class-wp-debug-data.php:1961 +#: wp-admin/includes/class-wp-debug-data.php:1994 msgid "Total size is not available. Some errors were encountered when determining the size of your installation." msgstr "Total size is not available. Some errors were encountered when determining the size of your installation." -#: wp-admin/includes/class-wp-debug-data.php:1910 +#: wp-admin/includes/class-wp-debug-data.php:1943 msgid "The size cannot be calculated. The directory is not accessible. Usually caused by invalid permissions." msgstr "The size cannot be calculated. The directory is not accessible. Usually caused by invalid permissions." -#: wp-admin/includes/class-wp-debug-data.php:1917 +#: wp-admin/includes/class-wp-debug-data.php:1950 msgid "The directory size calculation has timed out. Usually caused by a very large number of sub-directories and files." msgstr "The directory size calculation has timed out. Usually caused by a very large number of sub-directories and files." -#: wp-admin/includes/class-wp-debug-data.php:1551 +#: wp-admin/includes/class-wp-debug-data.php:1579 msgid "These settings alter where and how parts of WordPress are loaded." msgstr "These settings alter where and how parts of WordPress are loaded." @@ -4541,9 +4725,9 @@ msgstr "Everything is running smoothly here." msgid "Great job!" msgstr "Great job!" -#: wp-admin/about.php:48 wp-admin/contribute.php:33 wp-admin/credits.php:36 +#: wp-admin/about.php:49 wp-admin/contribute.php:33 wp-admin/credits.php:36 #: wp-admin/freedoms.php:39 wp-admin/includes/ms.php:1134 -#: wp-admin/nav-menus.php:809 wp-admin/options-privacy.php:161 +#: wp-admin/nav-menus.php:811 wp-admin/options-privacy.php:161 #: wp-admin/privacy-policy-guide.php:44 wp-admin/privacy.php:33 #: wp-admin/site-health.php:141 msgid "Secondary menu" @@ -4949,116 +5133,116 @@ msgid "Unable to check if any new versions of WordPress are available." msgstr "Unable to check if any new versions of WordPress are available." #. translators: %s: Name of the filter used. -#: wp-admin/includes/class-wp-site-health-auto-updates.php:457 +#: wp-admin/includes/class-wp-site-health-auto-updates.php:472 msgid "WordPress security and maintenance releases are blocked by the %s filter." msgstr "WordPress security and maintenance releases are blocked by the %s filter." #. translators: %s: Name of the constant used. -#: wp-admin/includes/class-wp-site-health-auto-updates.php:445 +#: wp-admin/includes/class-wp-site-health-auto-updates.php:460 msgid "WordPress security and maintenance releases are blocked by %s." msgstr "WordPress security and maintenance releases are blocked by %s." #. translators: %s: Name of the filter used. -#: wp-admin/includes/class-wp-site-health-auto-updates.php:425 +#: wp-admin/includes/class-wp-site-health-auto-updates.php:437 msgid "WordPress development updates are blocked by the %s filter." msgstr "WordPress development updates are blocked by the %s filter." #. translators: %s: Name of the constant used. -#: wp-admin/includes/class-wp-site-health-auto-updates.php:413 +#: wp-admin/includes/class-wp-site-health-auto-updates.php:425 msgid "WordPress development updates are blocked by the %s constant." msgstr "WordPress development updates are blocked by the %s constant." -#: wp-admin/includes/class-wp-site-health-auto-updates.php:389 +#: wp-admin/includes/class-wp-site-health-auto-updates.php:400 msgid "All of your WordPress files are writable." msgstr "All of your WordPress files are writable." -#: wp-admin/includes/class-wp-site-health-auto-updates.php:384 +#: wp-admin/includes/class-wp-site-health-auto-updates.php:395 msgid "Some files are not writable by WordPress:" msgstr "Some files are not writable by WordPress:" -#: wp-admin/includes/class-wp-site-health-auto-updates.php:358 +#: wp-admin/includes/class-wp-site-health-auto-updates.php:369 msgid "This could mean that connections are failing to WordPress.org." msgstr "This could mean that connections are failing to WordPress.org." #. translators: %s: WordPress version. -#: wp-admin/includes/class-wp-site-health-auto-updates.php:355 +#: wp-admin/includes/class-wp-site-health-auto-updates.php:366 msgid "Couldn't retrieve a list of the checksums for WordPress %s." msgstr "Couldn't retrieve a list of the checksums for WordPress %s." -#: wp-admin/includes/class-wp-site-health-auto-updates.php:303 +#: wp-admin/includes/class-wp-site-health-auto-updates.php:312 msgid "Your installation of WordPress does not require FTP credentials to perform updates." msgstr "Your installation of WordPress does not require FTP credentials to perform updates." -#: wp-admin/includes/class-wp-site-health-auto-updates.php:294 +#: wp-admin/includes/class-wp-site-health-auto-updates.php:303 msgid "(Your site is performing updates over FTP due to file ownership. Talk to your hosting company.)" msgstr "(Your site is performing updates over FTP due to file ownership. Talk to your hosting company.)" -#: wp-admin/includes/class-wp-site-health-auto-updates.php:293 +#: wp-admin/includes/class-wp-site-health-auto-updates.php:302 msgid "Your installation of WordPress prompts for FTP credentials to perform updates." msgstr "Your installation of WordPress prompts for FTP credentials to perform updates." -#: wp-admin/includes/class-wp-site-health-auto-updates.php:271 +#: wp-admin/includes/class-wp-site-health-auto-updates.php:280 msgid "No version control systems were detected." msgstr "No version control systems were detected." #. translators: 1: Folder name. 2: Version control directory. -#: wp-admin/includes/class-wp-site-health-auto-updates.php:262 +#: wp-admin/includes/class-wp-site-health-auto-updates.php:271 msgid "The folder %1$s was detected as being under version control (%2$s)." msgstr "The folder %1$s was detected as being under version control (%2$s)." #. translators: 1: Folder name. 2: Version control directory. 3: Filter name. -#: wp-admin/includes/class-wp-site-health-auto-updates.php:249 +#: wp-admin/includes/class-wp-site-health-auto-updates.php:258 msgid "The folder %1$s was detected as being under version control (%2$s), but the %3$s filter is allowing updates." msgstr "The folder %1$s was detected as being under version control (%2$s), but the %3$s filter is allowing updates." -#: wp-admin/includes/class-wp-site-health-auto-updates.php:183 +#: wp-admin/includes/class-wp-site-health-auto-updates.php:192 msgid "A previous automatic background update could not occur." msgstr "A previous automatic background update could not occur." #. translators: %s: Code of error shown. -#: wp-admin/includes/class-wp-site-health-auto-updates.php:174 -#: wp-admin/includes/class-wp-site-health-auto-updates.php:191 +#: wp-admin/includes/class-wp-site-health-auto-updates.php:183 +#: wp-admin/includes/class-wp-site-health-auto-updates.php:200 msgid "The error code was %s." msgstr "The error code was %s." -#: wp-admin/includes/class-wp-site-health-auto-updates.php:171 +#: wp-admin/includes/class-wp-site-health-auto-updates.php:180 msgid "When you've been able to update using the \"Update now\" button on Dashboard > Updates, this error will be cleared for future update attempts." msgstr "When you've been able to update using the \"Update now\" button on Dashboard > Updates, this error will be cleared for future update attempts." -#: wp-admin/includes/class-wp-site-health-auto-updates.php:170 -#: wp-admin/includes/class-wp-site-health-auto-updates.php:185 +#: wp-admin/includes/class-wp-site-health-auto-updates.php:179 +#: wp-admin/includes/class-wp-site-health-auto-updates.php:194 msgid "You would have received an email because of this." msgstr "You would have received an email because of this." -#: wp-admin/includes/class-wp-site-health-auto-updates.php:169 +#: wp-admin/includes/class-wp-site-health-auto-updates.php:178 msgid "A previous automatic background update ended with a critical failure, so updates are now disabled." msgstr "A previous automatic background update ended with a critical failure, so updates are now disabled." #. translators: %s: Name of the filter used. -#: wp-admin/includes/class-wp-site-health-auto-updates.php:122 +#: wp-admin/includes/class-wp-site-health-auto-updates.php:129 msgid "The %s filter is enabled." msgstr "The %s filter is enabled." #. translators: %s: Name of the filter used. -#: wp-admin/includes/class-wp-site-health-auto-updates.php:101 +#: wp-admin/includes/class-wp-site-health-auto-updates.php:105 msgid "A plugin has prevented updates by disabling %s." msgstr "A plugin has prevented updates by disabling %s." -#: wp-admin/includes/class-wp-debug-data.php:1694 +#: wp-admin/includes/class-wp-debug-data.php:1727 msgid "The must use plugins directory" msgstr "The must use plugins directory" -#: wp-admin/includes/class-wp-debug-data.php:1097 +#: wp-admin/includes/class-wp-debug-data.php:1125 msgid "Theme features" msgstr "Theme features" #: wp-admin/includes/class-theme-installer-skin.php:250 -#: wp-admin/includes/class-wp-debug-data.php:1092 +#: wp-admin/includes/class-wp-debug-data.php:1120 msgid "Parent theme" msgstr "Parent theme" -#: wp-admin/includes/class-wp-debug-data.php:1087 -#: wp-admin/includes/class-wp-debug-data.php:1207 +#: wp-admin/includes/class-wp-debug-data.php:1115 +#: wp-admin/includes/class-wp-debug-data.php:1235 msgid "Author website" msgstr "Author website" @@ -5066,28 +5250,28 @@ msgstr "Author website" #. translators: %s: Latest plugin version number. #. translators: %s: Latest theme version number. #: wp-admin/includes/class-wp-debug-data.php:163 -#: wp-admin/includes/class-wp-debug-data.php:939 -#: wp-admin/includes/class-wp-debug-data.php:1044 -#: wp-admin/includes/class-wp-debug-data.php:1181 -#: wp-admin/includes/class-wp-debug-data.php:1326 +#: wp-admin/includes/class-wp-debug-data.php:967 +#: wp-admin/includes/class-wp-debug-data.php:1072 +#: wp-admin/includes/class-wp-debug-data.php:1209 +#: wp-admin/includes/class-wp-debug-data.php:1354 msgid "(Latest version: %s)" msgstr "(Latest version: %s)" #. translators: 1: Plugin version number. 2: Plugin author name. #. translators: 1: Theme version number. 2: Theme author name. -#: wp-admin/includes/class-wp-debug-data.php:745 -#: wp-admin/includes/class-wp-debug-data.php:921 -#: wp-admin/includes/class-wp-debug-data.php:1308 +#: wp-admin/includes/class-wp-debug-data.php:773 +#: wp-admin/includes/class-wp-debug-data.php:949 +#: wp-admin/includes/class-wp-debug-data.php:1336 msgid "Version %1$s by %2$s" msgstr "Version %1$s by %2$s" -#: wp-admin/includes/class-wp-debug-data.php:740 -#: wp-admin/includes/class-wp-debug-data.php:916 -#: wp-admin/includes/class-wp-debug-data.php:1303 +#: wp-admin/includes/class-wp-debug-data.php:768 +#: wp-admin/includes/class-wp-debug-data.php:944 +#: wp-admin/includes/class-wp-debug-data.php:1331 msgid "No version or author information is available." msgstr "No version or author information is available." -#: wp-admin/includes/class-wp-debug-data.php:1587 +#: wp-admin/includes/class-wp-debug-data.php:1615 msgid "Server version" msgstr "Server version" @@ -5145,7 +5329,7 @@ msgstr "PHP max input variables" #. translators: %s: ini_get() #: wp-admin/includes/class-wp-debug-data.php:396 -#: wp-admin/includes/class-wp-debug-data.php:579 +#: wp-admin/includes/class-wp-debug-data.php:607 msgid "Unable to determine some settings, as the %s function has been disabled." msgstr "Unable to determine some settings, as the %s function has been disabled." @@ -5185,80 +5369,80 @@ msgstr "Unable to determine server architecture" msgid "Server architecture" msgstr "Server architecture" -#: wp-admin/includes/class-wp-debug-data.php:713 +#: wp-admin/includes/class-wp-debug-data.php:741 msgid "Ghostscript version" msgstr "Ghostscript version" -#: wp-admin/includes/class-wp-debug-data.php:708 +#: wp-admin/includes/class-wp-debug-data.php:736 msgid "Unable to determine if Ghostscript is installed" msgstr "Unable to determine if Ghostscript is installed" -#: wp-admin/includes/class-wp-debug-data.php:665 +#: wp-admin/includes/class-wp-debug-data.php:693 msgid "GD version" msgstr "GD version" -#: wp-admin/includes/class-wp-debug-data.php:639 +#: wp-admin/includes/class-wp-debug-data.php:667 msgid "Imagick Resource Limits" msgstr "Imagick Resource Limits" -#: wp-admin/includes/class-wp-debug-data.php:563 +#: wp-admin/includes/class-wp-debug-data.php:591 msgid "ImageMagick version string" msgstr "ImageMagick version string" -#: wp-admin/includes/class-wp-debug-data.php:558 +#: wp-admin/includes/class-wp-debug-data.php:586 msgid "ImageMagick version number" msgstr "ImageMagick version number" #: wp-admin/includes/class-wp-debug-data.php:451 -#: wp-admin/includes/class-wp-debug-data.php:540 -#: wp-admin/includes/class-wp-debug-data.php:554 -#: wp-admin/includes/class-wp-debug-data.php:571 -#: wp-admin/includes/class-wp-debug-data.php:1945 wp-admin/includes/ms.php:803 +#: wp-admin/includes/class-wp-debug-data.php:568 +#: wp-admin/includes/class-wp-debug-data.php:582 +#: wp-admin/includes/class-wp-debug-data.php:599 +#: wp-admin/includes/class-wp-debug-data.php:1978 wp-admin/includes/ms.php:803 msgid "Not available" msgstr "Not available" -#: wp-admin/includes/class-wp-debug-data.php:544 +#: wp-admin/includes/class-wp-debug-data.php:572 msgid "Active editor" msgstr "Active editor" -#: wp-admin/includes/class-wp-debug-data.php:842 +#: wp-admin/includes/class-wp-debug-data.php:870 msgid "Total installation size" msgstr "Total installation size" -#: wp-admin/includes/class-wp-debug-data.php:837 +#: wp-admin/includes/class-wp-debug-data.php:865 msgid "Database size" msgstr "Database size" -#: wp-admin/includes/class-wp-debug-data.php:796 +#: wp-admin/includes/class-wp-debug-data.php:824 msgid "WordPress directory size" msgstr "WordPress directory size" -#: wp-admin/includes/class-wp-debug-data.php:792 +#: wp-admin/includes/class-wp-debug-data.php:820 msgid "WordPress directory location" msgstr "WordPress directory location" -#: wp-admin/includes/class-wp-debug-data.php:823 +#: wp-admin/includes/class-wp-debug-data.php:851 msgid "Plugins directory size" msgstr "Plugins directory size" -#: wp-admin/includes/class-wp-debug-data.php:819 +#: wp-admin/includes/class-wp-debug-data.php:847 msgid "Plugins directory location" msgstr "Plugins directory location" -#: wp-admin/includes/class-wp-debug-data.php:814 +#: wp-admin/includes/class-wp-debug-data.php:842 msgid "Themes directory size" msgstr "Themes directory size" -#: wp-admin/includes/class-wp-debug-data.php:1101 -#: wp-admin/includes/class-wp-debug-data.php:1212 +#: wp-admin/includes/class-wp-debug-data.php:1129 +#: wp-admin/includes/class-wp-debug-data.php:1240 msgid "Theme directory location" msgstr "Theme directory location" -#: wp-admin/includes/class-wp-debug-data.php:805 +#: wp-admin/includes/class-wp-debug-data.php:833 msgid "Uploads directory size" msgstr "Uploads directory size" -#: wp-admin/includes/class-wp-debug-data.php:801 +#: wp-admin/includes/class-wp-debug-data.php:829 msgid "Uploads directory location" msgstr "Uploads directory location" @@ -5290,102 +5474,102 @@ msgstr "Site count" msgid "User count" msgstr "User count" -#: wp-admin/includes/class-wp-debug-data.php:1678 +#: wp-admin/includes/class-wp-debug-data.php:1707 msgid "The themes directory" msgstr "The themes directory" -#: wp-admin/includes/class-wp-debug-data.php:1673 +#: wp-admin/includes/class-wp-debug-data.php:1702 msgid "The plugins directory" msgstr "The plugins directory" -#: wp-admin/includes/class-wp-debug-data.php:1668 +#: wp-admin/includes/class-wp-debug-data.php:1697 msgid "The uploads directory" msgstr "The uploads directory" -#: wp-admin/includes/class-wp-debug-data.php:1663 +#: wp-admin/includes/class-wp-debug-data.php:1692 msgid "The wp-content directory" msgstr "The wp-content directory" -#: wp-admin/includes/class-wp-debug-data.php:1659 -#: wp-admin/includes/class-wp-debug-data.php:1664 -#: wp-admin/includes/class-wp-debug-data.php:1669 -#: wp-admin/includes/class-wp-debug-data.php:1674 -#: wp-admin/includes/class-wp-debug-data.php:1679 -#: wp-admin/includes/class-wp-debug-data.php:1684 -#: wp-admin/includes/class-wp-debug-data.php:1695 +#: wp-admin/includes/class-wp-debug-data.php:1688 +#: wp-admin/includes/class-wp-debug-data.php:1693 +#: wp-admin/includes/class-wp-debug-data.php:1698 +#: wp-admin/includes/class-wp-debug-data.php:1703 +#: wp-admin/includes/class-wp-debug-data.php:1708 +#: wp-admin/includes/class-wp-debug-data.php:1714 +#: wp-admin/includes/class-wp-debug-data.php:1728 msgid "Not writable" msgstr "Not writable" -#: wp-admin/includes/class-wp-debug-data.php:1659 -#: wp-admin/includes/class-wp-debug-data.php:1664 -#: wp-admin/includes/class-wp-debug-data.php:1669 -#: wp-admin/includes/class-wp-debug-data.php:1674 -#: wp-admin/includes/class-wp-debug-data.php:1679 -#: wp-admin/includes/class-wp-debug-data.php:1684 -#: wp-admin/includes/class-wp-debug-data.php:1695 +#: wp-admin/includes/class-wp-debug-data.php:1688 +#: wp-admin/includes/class-wp-debug-data.php:1693 +#: wp-admin/includes/class-wp-debug-data.php:1698 +#: wp-admin/includes/class-wp-debug-data.php:1703 +#: wp-admin/includes/class-wp-debug-data.php:1708 +#: wp-admin/includes/class-wp-debug-data.php:1714 +#: wp-admin/includes/class-wp-debug-data.php:1728 msgid "Writable" msgstr "Writable" -#: wp-admin/includes/class-wp-debug-data.php:1658 +#: wp-admin/includes/class-wp-debug-data.php:1687 msgid "The main WordPress directory" msgstr "The main WordPress directory" -#: wp-admin/includes/class-wp-debug-data.php:1702 +#: wp-admin/includes/class-wp-debug-data.php:1735 msgid "Shows whether WordPress is able to write to the directories it needs access to." msgstr "Shows whether WordPress is able to write to the directories it needs access to." -#: wp-admin/includes/class-wp-debug-data.php:1701 +#: wp-admin/includes/class-wp-debug-data.php:1734 msgid "Filesystem Permissions" msgstr "File system permissions" -#: wp-admin/includes/class-wp-debug-data.php:1088 -#: wp-admin/includes/class-wp-debug-data.php:1208 -#: wp-admin/includes/class-wp-debug-data.php:1415 -#: wp-admin/includes/class-wp-debug-data.php:1424 -#: wp-admin/includes/class-wp-debug-data.php:1433 -#: wp-admin/includes/class-wp-debug-data.php:1442 -#: wp-admin/includes/class-wp-debug-data.php:1451 -#: wp-admin/includes/class-wp-debug-data.php:1463 -#: wp-admin/includes/class-wp-debug-data.php:1468 -#: wp-admin/includes/class-wp-debug-data.php:1539 +#: wp-admin/includes/class-wp-debug-data.php:1116 +#: wp-admin/includes/class-wp-debug-data.php:1236 +#: wp-admin/includes/class-wp-debug-data.php:1443 +#: wp-admin/includes/class-wp-debug-data.php:1452 +#: wp-admin/includes/class-wp-debug-data.php:1461 +#: wp-admin/includes/class-wp-debug-data.php:1470 +#: wp-admin/includes/class-wp-debug-data.php:1479 +#: wp-admin/includes/class-wp-debug-data.php:1491 +#: wp-admin/includes/class-wp-debug-data.php:1496 +#: wp-admin/includes/class-wp-debug-data.php:1567 msgid "Undefined" msgstr "Undefined" -#: wp-admin/includes/class-wp-debug-data.php:1550 +#: wp-admin/includes/class-wp-debug-data.php:1578 msgid "WordPress Constants" msgstr "WordPress constants" -#: wp-admin/includes/class-wp-debug-data.php:1635 +#: wp-admin/includes/class-wp-debug-data.php:1663 msgid "Database" msgstr "Database" -#: wp-admin/includes/class-wp-debug-data.php:525 +#: wp-admin/includes/class-wp-debug-data.php:553 msgid "The options shown below relate to your server setup. If changes are required, you may need your web host’s assistance." msgstr "The options shown below relate to your server setup. If changes are required, you may need your web host’s assistance." -#: wp-admin/includes/class-wp-debug-data.php:524 +#: wp-admin/includes/class-wp-debug-data.php:552 msgid "Server" msgstr "Server" -#: wp-admin/includes/class-wp-debug-data.php:719 +#: wp-admin/includes/class-wp-debug-data.php:747 msgid "Media Handling" msgstr "Media Handling" -#: wp-admin/includes/class-wp-debug-data.php:879 +#: wp-admin/includes/class-wp-debug-data.php:907 msgid "Inactive Plugins" msgstr "Inactive Plugins" -#: wp-admin/includes/class-wp-debug-data.php:864 +#: wp-admin/includes/class-wp-debug-data.php:892 msgid "Active Plugins" msgstr "Active Plugins" -#: wp-admin/includes/class-wp-debug-data.php:769 +#: wp-admin/includes/class-wp-debug-data.php:797 msgid "Must Use Plugins" msgstr "Must Use Plugins" -#: wp-admin/includes/class-wp-debug-data.php:1147 -#: wp-admin/includes/theme.php:862 wp-admin/themes.php:1044 -#: wp-admin/includes/class-wp-ms-themes-list-table.php:939 +#: wp-admin/includes/class-wp-debug-data.php:1175 +#: wp-admin/includes/theme.php:862 wp-admin/themes.php:1086 +#: wp-admin/includes/class-wp-ms-themes-list-table.php:945 msgid "Active Theme" msgstr "Active theme" @@ -5394,7 +5578,7 @@ msgid "Drop-ins" msgstr "Drop-ins" #. translators: Filesystem directory paths and storage sizes. -#: wp-admin/includes/class-wp-debug-data.php:850 +#: wp-admin/includes/class-wp-debug-data.php:878 msgid "Directories and Sizes" msgstr "Directories and Sizes" @@ -5437,7 +5621,7 @@ msgid "Site Health" msgstr "Site Health" #. translators: %s: Number of requests. -#: wp-admin/includes/class-wp-privacy-requests-table.php:158 +#: wp-admin/includes/class-wp-privacy-requests-table.php:163 msgctxt "requests" msgid "All (%s)" msgid_plural "All (%s)" @@ -5492,53 +5676,53 @@ msgstr "WordPress Events and News — Upcoming events near #. translators: 1: URL to WordPress release notes, 2: WordPress version number, #. 3: Minimum required MySQL version number, 4: Current MySQL version number. -#: wp-admin/update-core.php:133 wp-admin/upgrade.php:120 +#: wp-admin/update-core.php:133 wp-admin/upgrade.php:139 msgid "You cannot update because WordPress %2$s requires MySQL version %3$s or higher. You are running version %4$s." msgstr "You cannot update because WordPress %2$s requires MySQL version %3$s or higher. You are running version %4$s." #. translators: 1: URL to WordPress release notes, 2: WordPress version number, #. 3: Minimum required PHP version number, 4: Current PHP version number. -#: wp-admin/update-core.php:124 wp-admin/upgrade.php:111 +#: wp-admin/update-core.php:124 wp-admin/upgrade.php:130 msgid "You cannot update because WordPress %2$s requires PHP version %3$s or higher. You are running version %4$s." msgstr "You cannot update because WordPress %2$s requires PHP version %3$s or higher. You are running version %4$s." -#: wp-admin/nav-menus.php:1065 +#: wp-admin/nav-menus.php:1067 msgid "Add menu items" msgstr "Add menu items" #. translators: %s: URL to create a new menu. -#: wp-admin/nav-menus.php:1026 +#: wp-admin/nav-menus.php:1028 msgid "or create a new menu. Do not forget to save your changes!" msgstr "or create a new menu. Do not forget to save your changes!" #. translators: Hidden accessibility text. -#: wp-admin/nav-menus.php:971 wp-admin/nav-menus.php:1041 +#: wp-admin/nav-menus.php:973 wp-admin/nav-menus.php:1043 msgid "Click the Save Menu button to save your changes." msgstr "Click the Save Menu button to save your changes." #. translators: %s: URL to create a new menu. -#: wp-admin/nav-menus.php:956 +#: wp-admin/nav-menus.php:958 msgid "Edit your menu below, or create a new menu. Do not forget to save your changes!" msgstr "Edit your menu below, or create a new menu. Do not forget to save your changes!" #. translators: Hidden accessibility text. -#: wp-admin/nav-menus.php:947 +#: wp-admin/nav-menus.php:949 msgid "Fill in the Menu Name and click the Create Menu button to create your first menu." msgstr "Fill in the Menu Name and click the Create Menu button to create your first menu." -#: wp-admin/nav-menus.php:943 +#: wp-admin/nav-menus.php:945 msgid "Create your first menu below." msgstr "Create your first menu below." #. translators: 1: URL to WordPress release notes, 2: WordPress version number, #. 3: Minimum required MySQL version number, 4: Current MySQL version number. -#: wp-admin/install.php:288 +#: wp-admin/install.php:289 msgid "You cannot install because WordPress %2$s requires MySQL version %3$s or higher. You are running version %4$s." msgstr "You cannot install because WordPress %2$s requires MySQL version %3$s or higher. You are running version %4$s." #. translators: 1: URL to WordPress release notes, 2: WordPress version number, #. 3: Minimum required PHP version number, 4: Current PHP version number. -#: wp-admin/install.php:279 +#: wp-admin/install.php:280 msgid "You cannot install because WordPress %2$s requires PHP version %3$s or higher. You are running version %4$s." msgstr "You cannot install because WordPress %2$s requires PHP version %3$s or higher. You are running version %4$s." @@ -5616,7 +5800,7 @@ msgstr "Add to: %s" msgid "Track %s." msgstr "Track %s." -#: wp-admin/includes/schema.php:1255 +#: wp-admin/includes/schema.php:1260 msgid "My Network" msgstr "My Network" @@ -5637,14 +5821,14 @@ msgstr "This plugin does not work with your versions of WordPress and PHP." #. translators: %s: WordPress version number. #. translators: %s: WordPress version. -#: wp-admin/about.php:20 wp-admin/includes/update.php:321 -#: wp-admin/index.php:119 wp-admin/install.php:249 wp-admin/update-core.php:94 -#: wp-admin/upgrade.php:81 +#: wp-admin/about.php:21 wp-admin/includes/update.php:321 +#: wp-admin/index.php:119 wp-admin/install.php:250 wp-admin/update-core.php:94 +#: wp-admin/upgrade.php:100 msgid "https://wordpress.org/documentation/wordpress-version/version-%s/" msgstr "https://wordpress.org/documentation/wordpress-version/version-%s/" #: wp-admin/includes/class-wp-plugins-list-table.php:935 -#: wp-admin/themes.php:695 +#: wp-admin/themes.php:716 msgid "Resume" msgstr "Resume" @@ -5667,7 +5851,7 @@ msgid "Could not resume the theme." msgstr "Could not resume the theme." #. translators: %s: Default category. -#: wp-admin/edit-tags.php:629 +#: wp-admin/edit-tags.php:632 msgid "Deleting a category does not delete the posts in that category. Instead, posts that were only assigned to the deleted category are set to the default category %s. The default category cannot be deleted." msgstr "Deleting a category does not delete the posts in that category. Instead, posts that were only assigned to the deleted category are set to the default category %s. The default category cannot be deleted." @@ -5740,37 +5924,37 @@ msgid "Created" msgstr "Created" #. translators: First post content. %s: Site link. -#: wp-admin/includes/upgrade.php:226 +#: wp-admin/includes/upgrade.php:235 msgid "Welcome to WordPress. This is your first post. Edit or delete it, then start writing!" msgstr "Welcome to WordPress. This is your first post. Edit or delete it, then start writing!" #. translators: First page content. %s: Site admin URL. -#: wp-admin/includes/upgrade.php:327 +#: wp-admin/includes/upgrade.php:336 msgid "As a new WordPress user, you should go to your dashboard to delete this page and create new pages for your content. Have fun!" msgstr "As a new WordPress user, you should go to your dashboard to delete this page and create new pages for your content. Have fun!" #. translators: First page content. -#: wp-admin/includes/upgrade.php:321 +#: wp-admin/includes/upgrade.php:330 msgid "The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community." msgstr "The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community." #. translators: First page content. -#: wp-admin/includes/upgrade.php:316 +#: wp-admin/includes/upgrade.php:325 msgid "...or something like this:" msgstr "...or something like this:" #. translators: First page content. -#: wp-admin/includes/upgrade.php:311 +#: wp-admin/includes/upgrade.php:320 msgid "Hi there! I'm a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like piña coladas. (And gettin' caught in the rain.)" msgstr "Hi there! I'm a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like piña coladas. (And gettin' caught in the rain.)" #. translators: First page content. -#: wp-admin/includes/upgrade.php:306 +#: wp-admin/includes/upgrade.php:315 msgid "This is an example page. It's different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:" msgstr "This is an example page. It's different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:" #. translators: %s: Post title. -#: wp-admin/includes/class-wp-posts-list-table.php:1566 +#: wp-admin/includes/class-wp-posts-list-table.php:1573 msgid "Export “%s” as JSON" msgstr "Export “%s” as JSON" @@ -5817,7 +6001,7 @@ msgid "Privacy Policy Page" msgstr "Privacy Policy Page" #. translators: %s: Page title. -#: wp-admin/includes/misc.php:1577 +#: wp-admin/includes/misc.php:1554 msgid "%s (Draft)" msgstr "%s (Draft)" @@ -5847,8 +6031,8 @@ msgstr "There are no pages." #. translators: 1: Privacy Policy guide URL, 2: Additional link attributes, 3: #. Accessibility text. #: wp-admin/options-privacy.php:239 -msgid "Need help putting together your new Privacy Policy page? Check out our privacy policy guide%3$s for recommendations on what content to include, along with policies suggested by your plugins and theme." -msgstr "Need help putting together your new Privacy Policy page? Check out our privacy policy guide%3$s for recommendations on what content to include, along with policies suggested by your plugins and theme." +msgid "Need help putting together your new Privacy Policy page? Check out the privacy policy guide%3$s for recommendations on what content to include, along with policies suggested by your plugins and theme." +msgstr "Need help putting together your new Privacy Policy page? Check out the Privacy Policy guide%3$s for recommendations on what content to include, along with policies suggested by your plugins and theme." #: wp-admin/privacy-policy-guide.php:21 wp-admin/privacy-policy-guide.php:74 #: wp-admin/privacy-policy-guide.php:83 @@ -5856,31 +6040,31 @@ msgid "Privacy Policy Guide" msgstr "Privacy Policy Guide" #. translators: Default privacy policy text. -#: wp-admin/includes/class-wp-privacy-policy-content.php:609 +#: wp-admin/includes/class-wp-privacy-policy-content.php:607 msgid "Visitor comments may be checked through an automated spam detection service." msgstr "Visitor comments may be checked through an automated spam detection service." #. translators: Privacy policy tutorial. -#: wp-admin/includes/class-wp-privacy-policy-content.php:557 +#: wp-admin/includes/class-wp-privacy-policy-content.php:555 msgid "In this subsection you should note what analytics package you use, how users can opt out of analytics tracking, and a link to your analytics provider’s privacy policy, if any." msgstr "In this subsection you should note what analytics package you use, how users can opt out of analytics tracking, and a link to your analytics provider’s privacy policy, if any." #. translators: Privacy policy tutorial. -#: wp-admin/includes/class-wp-privacy-policy-content.php:514 +#: wp-admin/includes/class-wp-privacy-policy-content.php:512 msgid "In this subsection you should note what information may be disclosed by users who can upload media files. All uploaded files are usually publicly accessible." msgstr "In this subsection you should note what information may be disclosed by users who can upload media files. All uploaded files are usually publicly accessible." #. translators: Privacy policy tutorial. -#: wp-admin/includes/class-wp-privacy-policy-content.php:501 +#: wp-admin/includes/class-wp-privacy-policy-content.php:499 msgid "In this subsection you should note what information is captured through comments. We have noted the data which WordPress collects by default." msgstr "In this subsection you should note what information is captured through comments. We have noted the data which WordPress collects by default." #. translators: Privacy policy tutorial. -#: wp-admin/includes/class-wp-privacy-policy-content.php:485 +#: wp-admin/includes/class-wp-privacy-policy-content.php:483 msgid "In this section you should note what personal data you collect from users and site visitors. This may include personal data, such as name, email address, personal account preferences; transactional data, such as purchase information; and technical data, such as information about cookies." msgstr "In this section you should note what personal data you collect from users and site visitors. This may include personal data, such as name, email address, personal account preferences; transactional data, such as purchase information; and technical data, such as information about cookies." -#: wp-admin/includes/class-wp-privacy-policy-content.php:459 +#: wp-admin/includes/class-wp-privacy-policy-content.php:457 msgid "Suggested text:" msgstr "Suggested text:" @@ -5908,8 +6092,8 @@ msgid "Introduction" msgstr "Introduction" #: wp-admin/includes/class-wp-privacy-policy-content.php:336 -msgid "Need help putting together your new Privacy Policy page? Check out our guide for recommendations on what content to include, along with policies suggested by your plugins and theme." -msgstr "Need help putting together your new Privacy Policy page? Check out our guide for recommendations on what content to include, along with policies suggested by your plugins and theme." +msgid "Need help putting together your new Privacy Policy page? Check out the guide for recommendations on what content to include, along with policies suggested by your plugins and theme." +msgstr "Need help putting together your new Privacy Policy page? Check out the guide for recommendations on what content to include, along with policies suggested by your plugins and theme." #: wp-admin/includes/class-wp-privacy-data-removal-requests-list-table.php:66 #: wp-admin/includes/class-wp-privacy-data-removal-requests-list-table.php:140 @@ -5925,252 +6109,252 @@ msgid "Send export link" msgstr "Send export link" #. translators: Privacy policy tutorial. -#: wp-admin/includes/class-wp-privacy-policy-content.php:658 +#: wp-admin/includes/class-wp-privacy-policy-content.php:656 msgid "If you are a member of a regulated industry, or if you are subject to additional privacy laws, you may be required to disclose that information here." msgstr "If you are a member of a regulated industry, or if you are subject to additional privacy laws, you may be required to disclose that information here." #. translators: Default privacy policy heading. -#: wp-admin/includes/class-wp-privacy-policy-content.php:656 +#: wp-admin/includes/class-wp-privacy-policy-content.php:654 msgid "Industry regulatory disclosure requirements" msgstr "Industry regulatory disclosure requirements" #. translators: Privacy policy tutorial. -#: wp-admin/includes/class-wp-privacy-policy-content.php:651 +#: wp-admin/includes/class-wp-privacy-policy-content.php:649 msgid "If your website provides a service which includes automated decision making - for example, allowing customers to apply for credit, or aggregating their data into an advertising profile - you must note that this is taking place, and include information about how that information is used, what decisions are made with that aggregated data, and what rights users have over decisions made without human intervention." msgstr "If your website provides a service which includes automated decision making – for example, allowing customers to apply for credit, or aggregating their data into an advertising profile – you must note that this is taking place, and include information about how that information is used, what decisions are made with that aggregated data, and what rights users have over decisions made without human intervention." #. translators: Default privacy policy heading. -#: wp-admin/includes/class-wp-privacy-policy-content.php:649 +#: wp-admin/includes/class-wp-privacy-policy-content.php:647 msgid "What automated decision making and/or profiling we do with user data" msgstr "What automated decision making and/or profiling we do with user data" #. translators: Privacy policy tutorial. -#: wp-admin/includes/class-wp-privacy-policy-content.php:644 +#: wp-admin/includes/class-wp-privacy-policy-content.php:642 msgid "If your website receives data about users from third parties, including advertisers, this information must be included within the section of your privacy policy dealing with third party data." msgstr "If your website receives data about users from third parties, including advertisers, this information must be included within the section of your privacy policy dealing with third-party data." #. translators: Default privacy policy heading. -#: wp-admin/includes/class-wp-privacy-policy-content.php:642 +#: wp-admin/includes/class-wp-privacy-policy-content.php:640 msgid "What third parties we receive data from" msgstr "What third parties we receive data from" #. translators: Privacy policy tutorial. -#: wp-admin/includes/class-wp-privacy-policy-content.php:637 +#: wp-admin/includes/class-wp-privacy-policy-content.php:635 msgid "In this section you should explain what procedures you have in place to deal with data breaches, either potential or real, such as internal reporting systems, contact mechanisms, or bug bounties." msgstr "In this section, you should explain what procedures you have in place to deal with data breaches, either potential or real, such as internal reporting systems, contact mechanisms, or bug bounties." #. translators: Default privacy policy heading. -#: wp-admin/includes/class-wp-privacy-policy-content.php:635 +#: wp-admin/includes/class-wp-privacy-policy-content.php:633 msgid "What data breach procedures we have in place" msgstr "What data breach procedures we have in place" #. translators: Privacy policy tutorial. -#: wp-admin/includes/class-wp-privacy-policy-content.php:630 +#: wp-admin/includes/class-wp-privacy-policy-content.php:628 msgid "In this section you should explain what measures you have taken to protect your users’ data. This could include technical measures such as encryption; security measures such as two factor authentication; and measures such as staff training in data protection. If you have carried out a Privacy Impact Assessment, you can mention it here too." msgstr "In this section you should explain what measures you have taken to protect your users’ data. This could include technical measures such as encryption; security measures such as two-factor authentication; and measures such as staff training in data protection. If you have carried out a Privacy Impact Assessment, you can mention it here too." #. translators: Default privacy policy heading. -#: wp-admin/includes/class-wp-privacy-policy-content.php:628 +#: wp-admin/includes/class-wp-privacy-policy-content.php:626 msgid "How we protect your data" msgstr "How we protect your data" #. translators: Privacy policy tutorial. -#: wp-admin/includes/class-wp-privacy-policy-content.php:623 +#: wp-admin/includes/class-wp-privacy-policy-content.php:621 msgid "If you use your site for commercial purposes and you engage in more complex collection or processing of personal data, you should note the following information in your privacy policy in addition to the information we have already discussed." msgstr "If you use your site for commercial purposes and you engage in more complex collection or processing of personal data, you should note the following information in your privacy policy in addition to the information we have already discussed." #. translators: Default privacy policy heading. -#: wp-admin/includes/class-wp-privacy-policy-content.php:621 +#: wp-admin/includes/class-wp-privacy-policy-content.php:619 msgid "Additional information" msgstr "Additional information" #. translators: Privacy policy tutorial. -#: wp-admin/includes/class-wp-privacy-policy-content.php:616 +#: wp-admin/includes/class-wp-privacy-policy-content.php:614 msgid "In this section you should provide a contact method for privacy-specific concerns. If you are required to have a Data Protection Officer, list their name and full contact details here as well." msgstr "In this section, you should provide a contact method for privacy-specific concerns. If you are required to have a Data Protection Officer, list their name and full contact details here as well." #. translators: Privacy policy tutorial. -#: wp-admin/includes/class-wp-privacy-policy-content.php:606 +#: wp-admin/includes/class-wp-privacy-policy-content.php:604 msgid "European data protection law requires data about European residents which is transferred outside the European Union to be safeguarded to the same standards as if the data was in Europe. So in addition to listing where data goes, you should describe how you ensure that these standards are met either by yourself or by your third party providers, whether that is through an agreement such as Privacy Shield, model clauses in your contracts, or binding corporate rules." msgstr "European data protection law requires data about European residents which is transferred outside the European Union to be safeguarded to the same standards as if the data was in Europe. So in addition to listing where data goes, you should describe how you ensure that these standards are met either by yourself or by your third-party providers, whether that is through an agreement such as Privacy Shield, model clauses in your contracts, or binding corporate rules." #. translators: Privacy policy tutorial. -#: wp-admin/includes/class-wp-privacy-policy-content.php:604 +#: wp-admin/includes/class-wp-privacy-policy-content.php:602 msgid "In this section you should list all transfers of your site data outside the European Union and describe the means by which that data is safeguarded to European data protection standards. This could include your web hosting, cloud storage, or other third party services." msgstr "In this section, you should list all transfers of your site data outside the European Union and describe the means by which that data is safeguarded to European data protection standards. This could include your web hosting, cloud storage, or other third party services." #. translators: Default privacy policy text. -#: wp-admin/includes/class-wp-privacy-policy-content.php:596 +#: wp-admin/includes/class-wp-privacy-policy-content.php:594 msgid "If you have an account on this site, or have left comments, you can request to receive an exported file of the personal data we hold about you, including any data you have provided to us. You can also request that we erase any personal data we hold about you. This does not include any data we are obliged to keep for administrative, legal, or security purposes." msgstr "If you have an account on this site, or have left comments, you can request to receive an exported file of the personal data we hold about you, including any data you have provided to us. You can also request that we erase any personal data we hold about you. This does not include any data we are obliged to keep for administrative, legal, or security purposes." #. translators: Privacy policy tutorial. -#: wp-admin/includes/class-wp-privacy-policy-content.php:593 +#: wp-admin/includes/class-wp-privacy-policy-content.php:591 msgid "In this section you should explain what rights your users have over their data and how they can invoke those rights." msgstr "In this section, you should explain what rights your users have over their data and how they can invoke those rights." #. translators: Default privacy policy heading. -#: wp-admin/includes/class-wp-privacy-policy-content.php:589 +#: wp-admin/includes/class-wp-privacy-policy-content.php:587 msgid "What rights you have over your data" msgstr "What rights you have over your data" #. translators: Default privacy policy text. -#: wp-admin/includes/class-wp-privacy-policy-content.php:585 +#: wp-admin/includes/class-wp-privacy-policy-content.php:583 msgid "For users that register on our website (if any), we also store the personal information they provide in their user profile. All users can see, edit, or delete their personal information at any time (except they cannot change their username). Website administrators can also see and edit that information." msgstr "For users that register on our website (if any), we also store the personal information they provide in their user profile. All users can see, edit, or delete their personal information at any time (except they cannot change their username). Website administrators can also see and edit that information." #. translators: Default privacy policy text. -#: wp-admin/includes/class-wp-privacy-policy-content.php:583 +#: wp-admin/includes/class-wp-privacy-policy-content.php:581 msgid "If you leave a comment, the comment and its metadata are retained indefinitely. This is so we can recognize and approve any follow-up comments automatically instead of holding them in a moderation queue." msgstr "If you leave a comment, the comment and its metadata are retained indefinitely. This is so we can recognise and approve any follow-up comments automatically instead of holding them in a moderation queue." #. translators: Privacy policy tutorial. -#: wp-admin/includes/class-wp-privacy-policy-content.php:580 +#: wp-admin/includes/class-wp-privacy-policy-content.php:578 msgid "In this section you should explain how long you retain personal data collected or processed by the website. While it is your responsibility to come up with the schedule of how long you keep each dataset for and why you keep it, that information does need to be listed here. For example, you may want to say that you keep contact form entries for six months, analytics records for a year, and customer purchase records for ten years." msgstr "In this section you should explain how long you retain personal data collected or processed by the website. While it is your responsibility to come up with the schedule of how long you keep each dataset and why you keep it, that information does need to be listed here. For example, you may want to say that you keep contact form entries for six months, analytics records for a year, and customer purchase records for ten years." #. translators: Default privacy policy heading. -#: wp-admin/includes/class-wp-privacy-policy-content.php:576 +#: wp-admin/includes/class-wp-privacy-policy-content.php:574 msgid "How long we retain your data" msgstr "How long we retain your data" #. translators: Privacy policy tutorial. -#: wp-admin/includes/class-wp-privacy-policy-content.php:569 +#: wp-admin/includes/class-wp-privacy-policy-content.php:567 msgid "By default WordPress does not share any personal data with anyone." msgstr "By default WordPress does not share any personal data with anyone." #. translators: Privacy policy tutorial. -#: wp-admin/includes/class-wp-privacy-policy-content.php:567 +#: wp-admin/includes/class-wp-privacy-policy-content.php:565 msgid "In this section you should name and list all third party providers with whom you share site data, including partners, cloud-based services, payment processors, and third party service providers, and note what data you share with them and why. Link to their own privacy policies if possible." msgstr "In this section, you should name and list all third-party providers with whom you share site data, including partners, cloud-based services, payment processors, and third party service providers, and note what data you share with them and why. Link to their own privacy policies if possible." #. translators: Default privacy policy heading. -#: wp-admin/includes/class-wp-privacy-policy-content.php:563 +#: wp-admin/includes/class-wp-privacy-policy-content.php:561 msgid "Who we share your data with" msgstr "Who we share your data with" #. translators: Privacy policy tutorial. -#: wp-admin/includes/class-wp-privacy-policy-content.php:559 +#: wp-admin/includes/class-wp-privacy-policy-content.php:557 msgid "By default WordPress does not collect any analytics data. However, many web hosting accounts collect some anonymous analytics data. You may also have installed a WordPress plugin that provides analytics services. In that case, add information from that plugin here." msgstr "By default, WordPress does not collect any analytics data. However, many web hosting accounts collect some anonymous analytics data. You may also have installed a WordPress plugin that provides analytics services. In that case, add information from that plugin here." #. translators: Default privacy policy heading. -#: wp-admin/includes/class-wp-privacy-policy-content.php:555 +#: wp-admin/includes/class-wp-privacy-policy-content.php:553 msgid "Analytics" msgstr "Analytics" #. translators: Default privacy policy text. -#: wp-admin/includes/class-wp-privacy-policy-content.php:550 +#: wp-admin/includes/class-wp-privacy-policy-content.php:548 msgid "These websites may collect data about you, use cookies, embed additional third-party tracking, and monitor your interaction with that embedded content, including tracking your interaction with the embedded content if you have an account and are logged in to that website." msgstr "These websites may collect data about you, use cookies, embed additional third-party tracking, and monitor your interaction with that embedded content, including tracking your interaction with the embedded content if you have an account and are logged in to that website." #. translators: Default privacy policy text. -#: wp-admin/includes/class-wp-privacy-policy-content.php:548 +#: wp-admin/includes/class-wp-privacy-policy-content.php:546 msgid "Articles on this site may include embedded content (e.g. videos, images, articles, etc.). Embedded content from other websites behaves in the exact same way as if the visitor has visited the other website." msgstr "Articles on this site may include embedded content (e.g. videos, images, articles, etc.). Embedded content from other websites behaves in the exact same way as if the visitor has visited the other website." #. translators: Default privacy policy heading. -#: wp-admin/includes/class-wp-privacy-policy-content.php:546 +#: wp-admin/includes/class-wp-privacy-policy-content.php:544 msgid "Embedded content from other websites" msgstr "Embedded content from other websites" #. translators: Default privacy policy text. -#: wp-admin/includes/class-wp-privacy-policy-content.php:541 +#: wp-admin/includes/class-wp-privacy-policy-content.php:539 msgid "If you edit or publish an article, an additional cookie will be saved in your browser. This cookie includes no personal data and simply indicates the post ID of the article you just edited. It expires after 1 day." msgstr "If you edit or publish an article, an additional cookie will be saved in your browser. This cookie includes no personal data and simply indicates the post ID of the article you just edited. It expires after 1 day." #. translators: Default privacy policy text. -#: wp-admin/includes/class-wp-privacy-policy-content.php:539 +#: wp-admin/includes/class-wp-privacy-policy-content.php:537 msgid "When you log in, we will also set up several cookies to save your login information and your screen display choices. Login cookies last for two days, and screen options cookies last for a year. If you select "Remember Me", your login will persist for two weeks. If you log out of your account, the login cookies will be removed." msgstr "When you log in, we will also set up several cookies to save your login information and your screen display choices. Login cookies last for two days, and screen options cookies last for a year. If you select "Remember Me", your login will persist for two weeks. If you log out of your account, the login cookies will be removed." #. translators: Default privacy policy text. -#: wp-admin/includes/class-wp-privacy-policy-content.php:537 +#: wp-admin/includes/class-wp-privacy-policy-content.php:535 msgid "If you visit our login page, we will set a temporary cookie to determine if your browser accepts cookies. This cookie contains no personal data and is discarded when you close your browser." msgstr "If you visit our login page, we will set a temporary cookie to determine if your browser accepts cookies. This cookie contains no personal data and is discarded when you close your browser." #. translators: Default privacy policy text. -#: wp-admin/includes/class-wp-privacy-policy-content.php:535 +#: wp-admin/includes/class-wp-privacy-policy-content.php:533 msgid "If you leave a comment on our site you may opt-in to saving your name, email address and website in cookies. These are for your convenience so that you do not have to fill in your details again when you leave another comment. These cookies will last for one year." msgstr "If you leave a comment on our site you may opt in to saving your name, email address and website in cookies. These are for your convenience so that you do not have to fill in your details again when you leave another comment. These cookies will last for one year." #. translators: Privacy policy tutorial. -#: wp-admin/includes/class-wp-privacy-policy-content.php:532 +#: wp-admin/includes/class-wp-privacy-policy-content.php:530 msgid "In this subsection you should list the cookies your website uses, including those set by your plugins, social media, and analytics. We have provided the cookies which WordPress installs by default." msgstr "In this subsection you should list the cookies your website uses, including those set by your plugins, social media, and analytics. We have provided the cookies which WordPress installs by default." #. translators: Default privacy policy heading. -#: wp-admin/includes/class-wp-privacy-policy-content.php:528 +#: wp-admin/includes/class-wp-privacy-policy-content.php:526 msgid "Cookies" msgstr "Cookies" #. translators: Default privacy policy text. -#: wp-admin/includes/class-wp-privacy-policy-content.php:506 +#: wp-admin/includes/class-wp-privacy-policy-content.php:504 msgid "An anonymized string created from your email address (also called a hash) may be provided to the Gravatar service to see if you are using it. The Gravatar service privacy policy is available here: https://automattic.com/privacy/. After approval of your comment, your profile picture is visible to the public in the context of your comment." msgstr "An anonymised string created from your email address (also called a hash) may be provided to the Gravatar service to see if you are using it. The Gravatar service Privacy Policy is available here: https://automattic.com/privacy/. After approval of your comment, your profile picture is visible to the public in the context of your comment." #. translators: Default privacy policy text. -#: wp-admin/includes/class-wp-privacy-policy-content.php:504 +#: wp-admin/includes/class-wp-privacy-policy-content.php:502 msgid "When visitors leave comments on the site we collect the data shown in the comments form, and also the visitor’s IP address and browser user agent string to help spam detection." msgstr "When visitors leave comments on the site we collect the data shown in the comments form, and also the visitor’s IP address and browser user agent string to help spam detection." #. translators: Privacy policy tutorial. -#: wp-admin/includes/class-wp-privacy-policy-content.php:524 +#: wp-admin/includes/class-wp-privacy-policy-content.php:522 msgid "By default, WordPress does not include a contact form. If you use a contact form plugin, use this subsection to note what personal data is captured when someone submits a contact form, and how long you keep it. For example, you may note that you keep contact form submissions for a certain period for customer service purposes, but you do not use the information submitted through them for marketing purposes." msgstr "By default, WordPress does not include a contact form. If you use a contact form plugin, use this subsection to note what personal data is captured when someone submits a contact form, and how long you keep it. For example, you may note that you keep contact form submissions for a certain period for customer service purposes, but you do not use the information submitted through them for marketing purposes." #. translators: Default privacy policy heading. -#: wp-admin/includes/class-wp-privacy-policy-content.php:522 +#: wp-admin/includes/class-wp-privacy-policy-content.php:520 msgid "Contact forms" msgstr "Contact forms" #. translators: Default privacy policy text. -#: wp-admin/includes/class-wp-privacy-policy-content.php:517 +#: wp-admin/includes/class-wp-privacy-policy-content.php:515 msgid "If you upload images to the website, you should avoid uploading images with embedded location data (EXIF GPS) included. Visitors to the website can download and extract any location data from images on the website." msgstr "If you upload images to the website, you should avoid uploading images with embedded location data (EXIF GPS) included. Visitors to the website can download and extract any location data from images on the website." #. translators: Privacy policy tutorial. -#: wp-admin/includes/class-wp-privacy-policy-content.php:493 +#: wp-admin/includes/class-wp-privacy-policy-content.php:491 msgid "By default WordPress does not collect any personal data about visitors, and only collects the data shown on the User Profile screen from registered users. However some of your plugins may collect personal data. You should add the relevant information below." msgstr "By default WordPress does not collect any personal data about visitors, and only collects the data shown on the User Profile screen from registered users. However some of your plugins may collect personal data. You should add the relevant information below." #. translators: Privacy policy tutorial. -#: wp-admin/includes/class-wp-privacy-policy-content.php:491 +#: wp-admin/includes/class-wp-privacy-policy-content.php:489 msgid "Personal data is not just created by a user’s interactions with your site. Personal data is also generated from technical processes such as contact forms, comments, cookies, analytics, and third party embeds." msgstr "Personal data is not just created by a user’s interactions with your site. Personal data is also generated from technical processes such as contact forms, comments, cookies, analytics, and third-party embeds." #. translators: Privacy policy tutorial. -#: wp-admin/includes/class-wp-privacy-policy-content.php:489 +#: wp-admin/includes/class-wp-privacy-policy-content.php:487 msgid "In addition to listing what personal data you collect, you need to note why you collect it. These explanations must note either the legal basis for your data collection and retention or the active consent the user has given." msgstr "In addition to listing what personal data you collect, you need to note why you collect it. These explanations must note either the legal basis for your data collection and retention or the active consent the user has given." #. translators: Privacy policy tutorial. -#: wp-admin/includes/class-wp-privacy-policy-content.php:487 +#: wp-admin/includes/class-wp-privacy-policy-content.php:485 msgid "You should also note any collection and retention of sensitive personal data, such as data concerning health." msgstr "You should also note any collection and retention of sensitive personal data, such as data concerning health." #. translators: Default privacy policy heading. -#: wp-admin/includes/class-wp-privacy-policy-content.php:483 +#: wp-admin/includes/class-wp-privacy-policy-content.php:481 msgid "What personal data we collect and why we collect it" msgstr "What personal data we collect and why we collect it" #. translators: Default privacy policy text. %s: Site URL. -#: wp-admin/includes/class-wp-privacy-policy-content.php:478 +#: wp-admin/includes/class-wp-privacy-policy-content.php:476 msgid "Our website address is: %s." msgstr "Our website address is: %s." #. translators: Privacy policy tutorial. -#: wp-admin/includes/class-wp-privacy-policy-content.php:475 +#: wp-admin/includes/class-wp-privacy-policy-content.php:473 msgid "The amount of information you may be required to show will vary depending on your local or national business regulations. You may, for example, be required to display a physical address, a registered address, or your company registration number." msgstr "The amount of information you may be required to show will vary depending on your local or national business regulations. You may, for example, be required to display a physical address, a registered address, or your company registration number." #. translators: Privacy policy tutorial. -#: wp-admin/includes/class-wp-privacy-policy-content.php:473 +#: wp-admin/includes/class-wp-privacy-policy-content.php:471 msgid "In this section you should note your site URL, as well as the name of the company, organization, or individual behind it, and some accurate contact information." msgstr "In this section, you should note your site URL, as well as the name of the company, organisation, or individual behind it, and some accurate contact information." #. translators: Default privacy policy heading. -#: wp-admin/includes/class-wp-privacy-policy-content.php:469 +#: wp-admin/includes/class-wp-privacy-policy-content.php:467 msgid "Who we are" msgstr "Who we are" @@ -6348,7 +6532,7 @@ msgid "Unable to create a Privacy Policy page." msgstr "Unable to create a Privacy Policy page." #. translators: Privacy Policy page slug. -#: wp-admin/includes/upgrade.php:390 +#: wp-admin/includes/upgrade.php:399 msgid "privacy-policy" msgstr "privacy-policy" @@ -6358,7 +6542,7 @@ msgid "Privacy Policy page setting updated successfully. Remember to update your menus!" #. translators: Hidden accessibility text. %s: Plugin name. -#: wp-admin/includes/class-wp-privacy-policy-content.php:437 +#: wp-admin/includes/class-wp-privacy-policy-content.php:435 msgid "Copy suggested policy text from %s." msgstr "Copy suggested policy text from %s." @@ -6560,21 +6744,17 @@ msgstr "Invalid email address in request." msgid "Requires PHP Version:" msgstr "Requires PHP:" -#: wp-admin/customize.php:80 -msgid "This changeset cannot be further modified." -msgstr "This changeset cannot be further modified." - #. translators: %s: https://wordpress.org/about/stats #: wp-admin/privacy.php:52 msgid "This data is used to provide general enhancements to WordPress, which includes helping to protect your site by finding and automatically installing new updates. It is also used to calculate statistics, such as those shown on the WordPress.org stats page." msgstr "This data is used to provide general enhancements to WordPress, which includes helping to protect your site by finding and automatically installing new updates. It is also used to calculate statistics, such as those shown on the WordPress.org stats page." #. translators: %s: Link to Custom CSS section in the Customizer. -#: wp-admin/theme-editor.php:221 +#: wp-admin/theme-editor.php:216 msgid "There is no need to change your CSS here — you can edit and live preview CSS changes in the built-in CSS editor." msgstr "There is no need to change your CSS here — you can edit and live preview CSS changes in the built-in CSS editor." -#: wp-admin/theme-editor.php:219 +#: wp-admin/theme-editor.php:214 msgid "Did you know?" msgstr "Did you know?" @@ -6582,15 +6762,15 @@ msgstr "Did you know?" msgid "Noteworthy Contributors" msgstr "Noteworthy Contributors" -#: wp-admin/theme-editor.php:416 +#: wp-admin/theme-editor.php:421 msgid "If you decide to go ahead with direct edits anyway, use a file manager to create a copy with a new name and hang on to the original. That way, you can re-enable a functional version if something goes wrong." msgstr "If you decide to go ahead with direct edits anyway, use a file manager to create a copy with a new name and hang on to the original. That way, you can re-enable a functional version if something goes wrong." -#: wp-admin/plugin-editor.php:359 +#: wp-admin/plugin-editor.php:369 msgid "If you absolutely have to make direct edits to this plugin, use a file manager to create a copy with a new name and hang on to the original. That way, you can re-enable a functional version if something goes wrong." msgstr "If you absolutely have to make direct edits to this plugin, use a file manager to create a copy with a new name and hang on to the original. That way, you can re-enable a functional version if something goes wrong." -#: wp-admin/plugin-editor.php:358 +#: wp-admin/plugin-editor.php:368 msgid "You appear to be making direct edits to your plugin in the WordPress dashboard. Editing plugins directly is not recommended as it may introduce incompatibilities that break your site and your changes may be lost in future updates." msgstr "You appear to be making direct edits to your plugin in the WordPress dashboard. Editing plugins directly is not recommended, as it may introduce incompatibilities that break your site and your changes may be lost in future updates." @@ -6605,15 +6785,10 @@ msgid "Error: The root directory of your site is not Error: The root directory of your site is not writable, so creating a file automatically was not possible. This is the URL rewrite rule you should have in your %2$s file. Create a new file called %2$s in the root directory of your site. Click in the field and press %3$s (or %4$s on Mac) to select all. Then insert this code into the %2$s file." #. translators: %s: Documentation URL. -#: wp-admin/options-general.php:254 +#: wp-admin/options-general.php:253 msgid "Enter the same address here unless you want your site home page to be different from your WordPress installation directory." msgstr "Enter the same address here unless you want your site home page to be different from your WordPress installation directory." -#. translators: %s: https://wordpress.org/about/privacy -#: wp-admin/privacy.php:62 -msgid "We take privacy and transparency very seriously. To learn more about what data we collect, and how we use it, please visit our Privacy Policy." -msgstr "We take privacy and transparency very seriously. To learn more about what data we collect, and how we use it, please visit our Privacy Policy." - #: wp-admin/freedoms.php:53 wp-admin/freedoms.php:103 msgid "https://wordpress.org/about/license/" msgstr "https://en-gb.wordpress.org/about/license/" @@ -6647,11 +6822,11 @@ msgstr "Downloading update from %s…" #. translators: 1: wp-admin/includes/template.php, 2: add_meta_box(), 3: #. add_meta_boxes -#: wp-admin/includes/template.php:2682 +#: wp-admin/includes/template.php:2681 msgid "Likely direct inclusion of %1$s in order to use %2$s. This is very wrong. Hook the %2$s call into the %3$s action instead." msgstr "Likely direct inclusion of %1$s in order to use %2$s. This is very wrong. Hook the %2$s call into the %3$s action instead." -#: wp-admin/includes/template.php:2305 +#: wp-admin/includes/template.php:2304 msgid "Customization Draft" msgstr "Customisation Draft" @@ -6660,7 +6835,7 @@ msgstr "Customisation Draft" msgid "This draft comes from your unpublished customization changes. You can edit, but there is no need to publish now. It will be published automatically with those changes." msgstr "This draft comes from your unpublished customisation changes. You can edit, but there is no need to publish now. It will be published automatically with those changes." -#: wp-admin/theme-editor.php:278 +#: wp-admin/theme-editor.php:283 msgid "Theme Files" msgstr "Theme Files" @@ -6682,11 +6857,11 @@ msgstr "Installation Required" msgid "Could not fully remove the plugin %s." msgstr "Could not fully remove the plugin %s." -#: wp-admin/user-new.php:366 +#: wp-admin/user-new.php:371 msgid "User has been created, but could not be added to this site." msgstr "User has been created, but could not be added to this site." -#: wp-admin/user-new.php:363 +#: wp-admin/user-new.php:368 msgid "That user could not be added to this site." msgstr "That user could not be added to this site." @@ -6719,23 +6894,23 @@ msgstr "Press This is not installed. Please install Press This from Warning: Making changes to active plugins is not recommended." msgstr "Warning: Making changes to active plugins is not recommended." -#: wp-admin/plugin-editor.php:287 wp-admin/theme-editor.php:316 +#: wp-admin/plugin-editor.php:297 wp-admin/theme-editor.php:321 msgid "Selected file content:" msgstr "Selected file content:" -#: wp-admin/plugin-editor.php:204 wp-admin/theme-editor.php:207 +#: wp-admin/plugin-editor.php:207 wp-admin/theme-editor.php:202 msgid "There was an error while trying to update the file. You may need to fix something and try updating again." msgstr "There was an error while trying to update the file. You may need to fix something and try updating again." @@ -6813,12 +6988,12 @@ msgid "Theme Installation" msgstr "Theme Installation" #. translators: %s: User's display name. -#: wp-admin/includes/post.php:1870 +#: wp-admin/includes/post.php:1881 msgid "%s is currently editing this post." msgstr "%s is currently editing this post." #. translators: %s: User's display name. -#: wp-admin/includes/post.php:1867 +#: wp-admin/includes/post.php:1878 msgid "%s is currently editing this post. Do you want to take over?" msgstr "%s is currently editing this post. Do you want to take over?" @@ -6925,10 +7100,6 @@ msgstr "Activate" msgid "Allow link notifications from other blogs (pingbacks and trackbacks) on new posts" msgstr "Allow link notifications from other blogs (pingbacks and trackbacks) on new posts" -#: wp-admin/menu-header.php:281 wp-admin/js/common.js:2109 -msgid "Collapse Main menu" -msgstr "Collapse Main menu" - #. translators: %s: Plugin name. #: wp-admin/includes/class-wp-plugins-list-table.php:852 #: wp-admin/includes/plugin-install.php:1010 wp-admin/js/updates.js:972 @@ -7011,7 +7182,7 @@ msgstr "WordCamps" msgid "Meetups" msgstr "Meetups" -#: wp-admin/includes/dashboard.php:1354 wp-admin/js/dashboard.js:585 +#: wp-admin/includes/dashboard.php:1354 wp-admin/js/dashboard.js:591 msgid "An error occurred. Please try again." msgstr "An error occurred. Please try again." @@ -7023,7 +7194,7 @@ msgstr "WordPress Events and News" #. day of the week. See https://www.php.net/manual/datetime.format.php #: wp-admin/includes/class-wp-community-events.php:401 #: wp-admin/includes/class-wp-community-events.php:406 -#: wp-admin/js/dashboard.js:774 +#: wp-admin/js/dashboard.js:780 msgid "l, M j, Y" msgstr "l j F Y" @@ -7040,7 +7211,7 @@ msgstr "Invalid API response code (%d)." msgid "Sorry, you are not allowed to delete users." msgstr "Sorry, you are not allowed to delete users." -#: wp-admin/user-new.php:23 wp-admin/user-new.php:192 +#: wp-admin/user-new.php:23 wp-admin/user-new.php:195 msgid "Sorry, you are not allowed to create users." msgstr "Sorry, you are not allowed to create users." @@ -7053,7 +7224,7 @@ msgstr "Hide Controls" msgid "Expand Sidebar" msgstr "Expand Sidebar" -#: wp-admin/nav-menus.php:1198 +#: wp-admin/nav-menus.php:1200 msgid "Display location" msgstr "Display location" @@ -7084,11 +7255,11 @@ msgstr "Select one or more Theme features to filter by" msgid "(%s ratings)" msgstr "(%s ratings)" -#: wp-admin/includes/template.php:2447 +#: wp-admin/includes/template.php:2446 msgid "Current Background Image" msgstr "Current Background Image" -#: wp-admin/includes/template.php:2427 +#: wp-admin/includes/template.php:2426 msgid "Current Header Image" msgstr "Current Header Image" @@ -7140,10 +7311,6 @@ msgctxt "Background Repeat" msgid "Repeat" msgstr "Repeat" -#: wp-admin/import.php:33 -msgid "Support" -msgstr "Support" - #: wp-admin/plugin-install.php:103 msgid "You can find new plugins to install by searching or browsing the directory right here in your own Plugins section." msgstr "You can find new plugins to install by searching or browsing the directory right here in your own Plugins section." @@ -7205,11 +7372,11 @@ msgctxt "plugin" msgid "Network Deactivate %s" msgstr "Network Deactivate %s" -#: wp-admin/user-new.php:280 +#: wp-admin/user-new.php:285 msgid "By default, new users will receive an email letting them know they’ve been added as a user for your site. This email will also contain a password reset link. Uncheck the box if you do not want to send the new user a welcome email." msgstr "By default, new users will receive an email letting them know they’ve been added as a user for your site. This email will also contain a password reset link. Uncheck the box if you do not want to send the new user a welcome email." -#: wp-admin/user-new.php:278 +#: wp-admin/user-new.php:283 msgid "New users are automatically assigned a password, which they can change after logging in. You can view or edit the assigned password by clicking the Show Password button. The username cannot be changed once the user has been added." msgstr "New users are automatically assigned a password, which they can change after logging in. You can view or edit the assigned password by clicking the Show Password button. The username cannot be changed once the user has been added." @@ -7252,7 +7419,7 @@ msgstr "Sorry, you are not allowed to update themes for this site." msgid "Sorry, you are not allowed to update this site." msgstr "Sorry, you are not allowed to update this site." -#: wp-admin/themes.php:448 wp-admin/themes.php:825 +#: wp-admin/themes.php:448 wp-admin/themes.php:846 msgid "New version available. " msgstr "New version available. " @@ -7291,7 +7458,7 @@ msgstr "Sorry, you are not allowed to modify unregistered settings for this site msgid "Sorry, you are not allowed to manage options for this site." msgstr "Sorry, you are not allowed to manage options for this site." -#: wp-admin/nav-menus.php:794 wp-admin/widgets-form.php:394 +#: wp-admin/nav-menus.php:796 wp-admin/widgets-form.php:394 msgid "Manage with Live Preview" msgstr "Manage with Live Preview" @@ -7304,7 +7471,7 @@ msgid "Sorry, you are not allowed to add links to this site." msgstr "Sorry, you are not allowed to add links to this site." #. translators: %s: Gravatar URL. -#: wp-admin/includes/upgrade.php:276 +#: wp-admin/includes/upgrade.php:285 msgid "" "Hi, this is a comment.\n" "To get started with moderating, editing, and deleting comments, please visit the Comments screen in the dashboard.\n" @@ -7375,12 +7542,12 @@ msgstr "Footer Widgets" msgid "Grid Layout" msgstr "Grid Layout" -#: wp-admin/includes/template.php:2709 +#: wp-admin/includes/template.php:2708 msgid "This will replace the current editor content with the last backup version. You can use undo and redo in the editor to get the old content back or to return to the restored version." msgstr "This will replace the current editor content with the last backup version. You can use undo and redo in the editor to get the old content back or to return to the restored version." #. translators: Hidden accessibility text. -#: wp-admin/includes/template.php:2038 +#: wp-admin/includes/template.php:2037 msgid "Close media attachment panel" msgstr "Close media attachment panel" @@ -7430,11 +7597,11 @@ msgctxt "plugin" msgid "Active" msgstr "Active" -#: wp-admin/includes/class-wp-media-list-table.php:590 +#: wp-admin/includes/class-wp-media-list-table.php:597 msgid "(Private post)" msgstr "(Private post)" -#: wp-admin/includes/bookmark.php:32 wp-admin/includes/bookmark.php:378 +#: wp-admin/includes/bookmark.php:32 wp-admin/includes/bookmark.php:379 #: wp-admin/link-manager.php:12 wp-admin/link-manager.php:92 msgid "Sorry, you are not allowed to edit the links for this site." msgstr "Sorry, you are not allowed to edit the links for this site." @@ -7475,7 +7642,7 @@ msgstr "Sorry, you are not allowed to install themes on this site." msgid "No theme specified." msgstr "No theme specified." -#: wp-admin/admin.php:305 wp-admin/import.php:15 +#: wp-admin/admin.php:306 wp-admin/import.php:15 msgid "Sorry, you are not allowed to import content into this site." msgstr "Sorry, you are not allowed to import content into this site." @@ -7504,6 +7671,10 @@ msgstr "Release Deputy" msgid "Release Design Lead" msgstr "Release Design Lead" +#: wp-admin/about.php:133 +msgid "Editor improvements" +msgstr "Editor improvements" + #. translators: %s: Documentation URL. #: wp-admin/includes/meta-boxes.php:832 msgid "Custom fields can be used to add extra metadata to a post that you can use in your theme." @@ -7519,11 +7690,11 @@ msgstr "Trackbacks are a way to notify legacy blog systems that you’ve lin msgid "Excerpts are optional hand-crafted summaries of your content that can be used in your theme. Learn more about manual excerpts." msgstr "Excerpts are optional hand-crafted summaries of your content that can be used in your theme. Learn more about manual excerpts." -#: wp-admin/edit-form-advanced.php:295 -msgid "The Text mode allows you to enter HTML along with your post text. Note that <p> and <br> tags are converted to line breaks when switching to the Text editor to make it less cluttered. When you type, a single line break can be used instead of typing <br>, and two line breaks instead of paragraph tags. The line breaks are converted back to tags automatically." -msgstr "The Text mode allows you to enter HTML along with your post text. Note that <p> and <br> tags are converted to line breaks when switching to the Text editor to make it less cluttered. When you type, a single line break can be used instead of typing <br>, and two line breaks instead of paragraph tags. The line breaks are converted back to tags automatically." +#: wp-admin/edit-form-advanced.php:288 +msgid "The Code mode allows you to enter HTML along with your post text. Note that <p> and <br> tags are converted to line breaks when switching to the Code editor to make it less cluttered. When you type, a single line break can be used instead of typing <br>, and two line breaks instead of paragraph tags. The line breaks are converted back to tags automatically." +msgstr "The Code mode allows you to enter HTML along with your post text. Note that <p> and <br> tags are converted to line breaks when switching to the code editor to make it less cluttered. When you type, a single line break can be used instead of typing <br>, and two line breaks instead of paragraph tags. The line breaks are converted back to tags automatically." -#: wp-admin/edit-form-advanced.php:294 +#: wp-admin/edit-form-advanced.php:287 msgid "Visual mode gives you an editor that is similar to a word processor. Click the Toolbar Toggle button to get a second row of controls." msgstr "Visual mode gives you an editor that is similar to a word processor. Click the Toolbar Toggle button to get a second row of controls." @@ -7574,7 +7745,7 @@ msgstr[1] "%s media files attached." msgid "Media file attached." msgstr "Media file attached." -#: wp-admin/edit-form-advanced.php:210 wp-admin/upload.php:18 +#: wp-admin/edit-form-advanced.php:203 wp-admin/upload.php:18 #: wp-admin/upload.php:115 msgid "Media file updated." msgstr "Media file updated." @@ -7596,12 +7767,12 @@ msgctxt "dashboard" msgid "%1$s, %2$s" msgstr "%1$s, %2$s" -#: wp-admin/edit-form-advanced.php:376 +#: wp-admin/edit-form-advanced.php:369 msgid "Publish — You can set the terms of publishing your post in the Publish box. For Status, Visibility, and Publish (immediately), click on the Edit link to reveal more options. Visibility includes options for password-protecting a post or making it stay at the top of your blog indefinitely (sticky). The Password protected option allows you to set an arbitrary password for each post. The Private option hides the post from everyone except editors and administrators. Publish (immediately) allows you to set a future or past date and time, so you can schedule a post to be published in the future or backdate a post." msgstr "Publish — You can set the terms of publishing your post in the Publish box. For Status, Visibility, and Publish (immediately), click on the Edit link to reveal more options. Visibility includes options for password-protecting a post or making it stay at the top of your blog indefinitely (sticky). The Password protected option allows you to set an arbitrary password for each post. The Private option hides the post from everyone except editors and administrators. Publish (immediately) allows you to set a future or past date and time, so you can schedule a post to be published in the future or backdate a post." #. translators: %s: New email. -#: wp-admin/user-edit.php:561 +#: wp-admin/user-edit.php:563 msgid "There is a pending change of your email to %s." msgstr "There is a pending change of your email to %s." @@ -7613,7 +7784,7 @@ msgstr "Error while saving the new email address. Please try again." msgid "You can narrow the list by file type/status or by date using the dropdown menus above the media table." msgstr "You can narrow the list by file type/status or by date using the dropdown menus above the media table." -#: wp-admin/themes.php:655 wp-admin/network/themes.php:470 +#: wp-admin/themes.php:676 wp-admin/network/themes.php:470 msgid "The following themes are installed but incomplete." msgstr "The following themes are installed but incomplete." @@ -7658,21 +7829,21 @@ msgid "%1$s by %2$s (will also delete its data)" msgstr "%1$s by %2$s (will also delete its data)" #. translators: %s: New admin email. -#: wp-admin/options-general.php:274 +#: wp-admin/options-general.php:273 msgid "There is a pending change of the admin email to %s." msgstr "There is a pending change of the admin email to %s." -#: wp-admin/install.php:430 +#: wp-admin/install.php:454 msgid "WordPress has been installed. Thank you, and enjoy!" msgstr "WordPress has been installed. Thank you, and enjoy!" #. translators: %s: DO_NOT_UPGRADE_GLOBAL_TABLES -#: wp-admin/install.php:320 +#: wp-admin/install.php:344 msgid "The constant %s cannot be defined when installing WordPress." msgstr "The constant %s cannot be defined when installing WordPress." #. translators: %s: wp-config.php -#: wp-admin/install.php:307 +#: wp-admin/install.php:331 msgid "Your %s file has an empty database table prefix, which is not supported." msgstr "Your %s file has an empty database table prefix, which is not supported." @@ -7685,11 +7856,11 @@ msgstr "Dismiss the welcome panel" msgid "Theme zip file" msgstr "Theme zip file" -#: wp-admin/includes/template.php:2034 +#: wp-admin/includes/template.php:2033 msgid "Attach to existing content" msgstr "Attach to existing content" -#: wp-admin/includes/post.php:1671 +#: wp-admin/includes/post.php:1682 msgid "Click the image to edit or update" msgstr "Click the image to edit or update" @@ -7815,7 +7986,7 @@ msgstr "Delete “%s”" #. translators: %s: Post title. #. translators: %s: Taxonomy term name. -#: wp-admin/includes/class-wp-posts-list-table.php:1502 +#: wp-admin/includes/class-wp-posts-list-table.php:1509 #: wp-admin/includes/class-wp-terms-list-table.php:509 msgid "Quick edit “%s” inline" msgstr "Quick edit “%s” inline" @@ -7826,33 +7997,33 @@ msgstr "Search for plugins in the WordPress Plugin Directory." #. translators: %s: Attachment title. #. translators: %s: Post title. -#: wp-admin/includes/class-wp-media-list-table.php:781 -#: wp-admin/includes/class-wp-posts-list-table.php:1514 +#: wp-admin/includes/class-wp-media-list-table.php:788 +#: wp-admin/includes/class-wp-posts-list-table.php:1521 msgid "Restore “%s” from the Trash" msgstr "Restore “%s” from the Bin" #. translators: %s: Attachment title. #. translators: %s: Post title. -#: wp-admin/includes/class-wp-media-list-table.php:802 -#: wp-admin/includes/class-wp-posts-list-table.php:1532 +#: wp-admin/includes/class-wp-media-list-table.php:809 +#: wp-admin/includes/class-wp-posts-list-table.php:1539 msgid "Delete “%s” permanently" msgstr "Delete “%s” permanently" #. translators: %s: Attachment title. #. translators: %s: Post title. -#: wp-admin/includes/class-wp-media-list-table.php:789 -#: wp-admin/includes/class-wp-posts-list-table.php:1522 +#: wp-admin/includes/class-wp-media-list-table.php:796 +#: wp-admin/includes/class-wp-posts-list-table.php:1529 msgid "Move “%s” to the Trash" msgstr "Move “%s” to the Bin" #. translators: %s: Attachment title. -#: wp-admin/includes/class-wp-media-list-table.php:620 -#: wp-admin/includes/class-wp-media-list-table.php:850 +#: wp-admin/includes/class-wp-media-list-table.php:627 +#: wp-admin/includes/class-wp-media-list-table.php:857 msgid "Attach “%s” to existing content" msgstr "Attach “%s” to existing content" #. translators: %s: Title of the post the attachment is attached to. -#: wp-admin/includes/class-wp-media-list-table.php:606 +#: wp-admin/includes/class-wp-media-list-table.php:613 msgid "Detach from “%s”" msgstr "Detach from “%s”" @@ -7870,16 +8041,16 @@ msgctxt "attachment filter" msgid "Trash" msgstr "Bin" -#: wp-admin/includes/class-wp-comments-list-table.php:835 +#: wp-admin/includes/class-wp-comments-list-table.php:839 msgid "Quick edit this comment inline" msgstr "Quick edit this comment inline" -#: wp-admin/includes/class-wp-comments-list-table.php:823 +#: wp-admin/includes/class-wp-comments-list-table.php:827 #: wp-admin/includes/dashboard.php:759 msgid "Edit this comment" msgstr "Edit this comment" -#: wp-admin/includes/class-wp-comments-list-table.php:786 +#: wp-admin/includes/class-wp-comments-list-table.php:790 msgid "Restore this comment from the spam" msgstr "Restore this comment from the spam" @@ -7928,43 +8099,43 @@ msgstr "%d pixels" msgid "Images should be at least %s wide." msgstr "Images should be at least %s wide." -#: wp-admin/user-new.php:628 +#: wp-admin/user-new.php:633 msgid "Send the new user an email about their account" msgstr "Send the new user an email about their account" -#: wp-admin/user-new.php:625 +#: wp-admin/user-new.php:630 msgid "Send User Notification" msgstr "Send User Notification" #. translators: %s: Menu name. -#: wp-admin/nav-menus.php:1218 +#: wp-admin/nav-menus.php:1220 msgctxt "menu location" msgid "(Currently set to: %s)" msgstr "(Currently set to: %s)" #. translators: %s: WordPress version number. -#: wp-admin/about.php:304 +#: wp-admin/about.php:345 msgid "Version %s addressed one security issue." msgstr "Version %s addressed one security issue." #. translators: The localized Gravatar URL. -#: wp-admin/includes/upgrade.php:282 wp-admin/user-edit.php:632 +#: wp-admin/includes/upgrade.php:291 wp-admin/user-edit.php:634 msgid "https://gravatar.com/" msgstr "https://gravatar.com/" -#: wp-admin/user-edit.php:622 +#: wp-admin/user-edit.php:624 msgid "Profile Picture" msgstr "Profile Picture" -#: wp-admin/about.php:301 +#: wp-admin/about.php:342 msgid "Maintenance and Security Releases" msgstr "Maintenance and Security Releases" -#: wp-admin/about.php:298 +#: wp-admin/about.php:339 msgid "Security Releases" msgstr "Security Releases" -#: wp-admin/about.php:295 +#: wp-admin/about.php:336 msgid "Maintenance Releases" msgstr "Maintenance Releases" @@ -8061,12 +8232,12 @@ msgid "Check secret keys" msgstr "Check secret keys" #. translators: %s: Nav menu title. -#: wp-admin/includes/nav-menu.php:1495 +#: wp-admin/includes/nav-menu.php:1496 msgid "%s has been updated." msgstr "%s has been updated." #. translators: %s: Walker class name. -#: wp-admin/includes/nav-menu.php:1275 +#: wp-admin/includes/nav-menu.php:1276 msgid "The Walker class named %s does not exist." msgstr "The Walker class named %s does not exist." @@ -8076,12 +8247,12 @@ msgid "Requires %1$s in %2$s file." msgstr "Requires %1$s in %2$s file." #. translators: %s: Date and time. -#: wp-admin/options-general.php:449 +#: wp-admin/options-general.php:448 msgid "Standard time begins on: %s." msgstr "Standard time begins on: %s." #. translators: %s: Date and time. -#: wp-admin/options-general.php:447 +#: wp-admin/options-general.php:446 msgid "Daylight saving time begins on: %s." msgstr "Daylight saving time begins on: %s." @@ -8131,7 +8302,7 @@ msgstr "Media items list navigation" msgid "Filter media items list" msgstr "Filter media items list" -#: wp-admin/themes.php:733 +#: wp-admin/themes.php:754 msgid "Install Parent Theme" msgstr "Install Parent Theme" @@ -8161,28 +8332,30 @@ msgstr "Plugins list navigation" msgid "Filter plugins list" msgstr "Filter plugins list" -#. translators: %s: Plugin file name. -#: wp-admin/plugin-editor.php:235 +#. translators: %s: Plugin name. +#: wp-admin/plugin-editor.php:238 msgid "Browsing %s (inactive)" msgstr "Browsing %s (inactive)" -#. translators: %s: Plugin file name. -#: wp-admin/plugin-editor.php:232 +#. translators: %s: Plugin name. +#. translators: %s: Theme name. +#: wp-admin/plugin-editor.php:235 wp-admin/theme-editor.php:238 msgid "Editing %s (inactive)" msgstr "Editing %s (inactive)" -#. translators: %s: Plugin file name. -#: wp-admin/plugin-editor.php:227 +#. translators: %s: Plugin name. +#: wp-admin/plugin-editor.php:230 msgid "Browsing %s (active)" msgstr "Browsing %s (active)" -#. translators: %s: Plugin file name. -#: wp-admin/plugin-editor.php:224 +#. translators: %s: Plugin name. +#. translators: %s: Theme name. +#: wp-admin/plugin-editor.php:227 wp-admin/theme-editor.php:235 msgid "Editing %s (active)" msgstr "Editing %s (active)" #. translators: %s: Local time. -#: wp-admin/options-general.php:416 +#: wp-admin/options-general.php:415 msgid "Local time is %s." msgstr "Local time is %s." @@ -8200,11 +8373,11 @@ msgstr "Get Version %s" msgid "Toggle panel: %s" msgstr "Toggle panel: %s" -#: wp-admin/includes/post.php:1910 +#: wp-admin/includes/post.php:1921 msgid "Saving revision…" msgstr "Saving revision…" -#: wp-admin/includes/post.php:1597 +#: wp-admin/includes/post.php:1608 msgid "Edit permalink" msgstr "Edit permalink" @@ -8360,7 +8533,7 @@ msgstr "No pending comments" msgid "Failed to initialize a SFTP subsystem session with the SSH2 Server %s" msgstr "Failed to initialise a SFTP subsystem session with the SSH2 Server %s" -#: wp-admin/includes/class-wp-comments-list-table.php:480 +#: wp-admin/includes/class-wp-comments-list-table.php:484 msgctxt "column name" msgid "Submitted on" msgstr "Submitted on" @@ -8433,41 +8606,41 @@ msgctxt "comment" msgid "Permalink:" msgstr "Permalink:" -#: wp-admin/edit-form-advanced.php:208 +#: wp-admin/edit-form-advanced.php:201 msgid "Page draft updated." msgstr "Page draft updated." #. translators: %s: Scheduled date for the page. -#: wp-admin/edit-form-advanced.php:207 +#: wp-admin/edit-form-advanced.php:200 msgid "Page scheduled for: %s." msgstr "Page scheduled for: %s." -#: wp-admin/edit-form-advanced.php:205 +#: wp-admin/edit-form-advanced.php:198 msgid "Page submitted." msgstr "Page submitted." -#: wp-admin/edit-form-advanced.php:193 +#: wp-admin/edit-form-advanced.php:186 msgid "Post draft updated." msgstr "Post draft updated." #. translators: %s: Scheduled date for the post. -#: wp-admin/edit-form-advanced.php:192 +#: wp-admin/edit-form-advanced.php:185 msgid "Post scheduled for: %s." msgstr "Post scheduled for: %s." -#: wp-admin/edit-form-advanced.php:190 +#: wp-admin/edit-form-advanced.php:183 msgid "Post submitted." msgstr "Post submitted." -#: wp-admin/edit-form-advanced.php:166 +#: wp-admin/edit-form-advanced.php:159 msgid "View page" msgstr "View page" -#: wp-admin/edit-form-advanced.php:152 wp-admin/edit-form-advanced.php:159 +#: wp-admin/edit-form-advanced.php:145 wp-admin/edit-form-advanced.php:152 msgid "Preview page" msgstr "Preview page" -#: wp-admin/edit-form-advanced.php:131 wp-admin/edit-form-advanced.php:138 +#: wp-admin/edit-form-advanced.php:124 wp-admin/edit-form-advanced.php:131 msgid "Preview post" msgstr "Preview post" @@ -8510,11 +8683,6 @@ msgstr "Sorry, you are not allowed to modify themes." msgid "The active theme does not support a flexible sized header image." msgstr "The active theme does not support a flexible sized header image." -#: wp-admin/includes/class-custom-image-header.php:834 -#: wp-admin/includes/class-custom-image-header.php:1022 -msgid "The active theme does not support uploading a custom header image." -msgstr "The active theme does not support uploading a custom header image." - #: wp-admin/includes/user.php:542 msgid "You are using the auto-generated password for your account. Would you like to change it?" msgstr "You are using the auto-generated password for your account. Would you like to change it?" @@ -8524,32 +8692,32 @@ msgid "You have specified this user for removal:" msgstr "You have specified this user for removal:" #. translators: %s: User's display name. -#: wp-admin/user-edit.php:766 +#: wp-admin/user-edit.php:768 msgid "Log %s out of all locations." msgstr "Log %s out of all locations." -#: wp-admin/user-edit.php:754 +#: wp-admin/user-edit.php:756 msgid "Did you lose your phone or leave your account logged in at a public computer? You can log out everywhere else, and stay logged in here." msgstr "Did you lose your phone or leave your account logged in at a public computer? You can log out everywhere else, and stay logged in here." -#: wp-admin/user-edit.php:742 wp-admin/user-edit.php:752 +#: wp-admin/user-edit.php:744 wp-admin/user-edit.php:754 msgid "Log Out Everywhere Else" msgstr "Log Out Everywhere Else" -#: wp-admin/user-edit.php:740 wp-admin/user-edit.php:750 -#: wp-admin/user-edit.php:760 +#: wp-admin/user-edit.php:742 wp-admin/user-edit.php:752 +#: wp-admin/user-edit.php:762 msgid "Sessions" msgstr "Sessions" -#: wp-admin/user-edit.php:686 +#: wp-admin/user-edit.php:688 msgid "Cancel password change" msgstr "Cancel password change" -#: wp-admin/user-new.php:594 +#: wp-admin/user-new.php:599 msgid "Generate password" msgstr "Generate password" -#: wp-admin/user-edit.php:669 +#: wp-admin/user-edit.php:671 msgid "Account Management" msgstr "Account Management" @@ -8582,12 +8750,12 @@ msgstr[1] "%s approved comments" msgid "Image could not be processed." msgstr "Image could not be processed." -#: wp-admin/install.php:169 wp-admin/user-edit.php:705 -#: wp-admin/user-new.php:616 +#: wp-admin/install.php:169 wp-admin/user-edit.php:707 +#: wp-admin/user-new.php:621 msgid "Confirm Password" msgstr "Confirm Password" -#: wp-admin/options-general.php:208 +#: wp-admin/options-general.php:207 msgid "Remove Site Icon" msgstr "Remove Site Icon" @@ -8596,17 +8764,17 @@ msgstr "Remove Site Icon" msgid "While you are editing your %1$s file, take a moment to make sure you have all 8 keys and that they are unique. You can generate these using the WordPress.org secret key service." msgstr "While you are editing your %1$s file, take a moment to make sure you have all 8 keys and that they are unique. You can generate these using the WordPress.org secret key service." -#: wp-admin/options-general.php:193 +#: wp-admin/options-general.php:192 msgid "Set as Site Icon" msgstr "Set as Site Icon" -#: wp-admin/options-general.php:191 wp-admin/options-general.php:200 +#: wp-admin/options-general.php:190 wp-admin/options-general.php:199 msgid "Choose a Site Icon" msgstr "Choose a Site Icon" #. translators: Hidden accessibility text. #: wp-admin/includes/class-wp-application-passwords-list-table.php:258 -#: wp-admin/includes/class-wp-comments-list-table.php:905 +#: wp-admin/includes/class-wp-comments-list-table.php:909 #: wp-admin/includes/class-wp-list-table.php:689 #: wp-admin/includes/class-wp-list-table.php:1823 #: wp-admin/includes/update.php:933 @@ -8614,7 +8782,7 @@ msgid "Show more details" msgstr "Show more details" #. translators: %s: Number of menus. -#: wp-admin/nav-menus.php:838 +#: wp-admin/nav-menus.php:840 msgid "Your theme supports %s menu. Select which menu appears in each location." msgid_plural "Your theme supports %s menus. Select which menu appears in each location." msgstr[0] "Your theme supports %s menu. Select which menu appears in each location." @@ -8651,7 +8819,7 @@ msgstr "In response to: %s" msgid "Date and time" msgstr "Date and time" -#: wp-admin/edit-form-advanced.php:362 +#: wp-admin/edit-form-advanced.php:355 msgid "You can also embed media from many popular websites including Twitter, YouTube, Flickr and others by pasting the media URL on its own line into the content of your post/page. Learn more about embeds." msgstr "You can also embed media from many popular websites including Twitter, YouTube, Flickr and others by pasting the media URL on its own line into the content of your post/page. Learn more about embeds." @@ -8659,7 +8827,7 @@ msgstr "You can also embed media from many popular websites including Twitter, Y msgid "Documentation on Custom Background" msgstr "Documentation on Custom Background" -#: wp-admin/edit-tags.php:307 +#: wp-admin/edit-tags.php:310 msgid "Documentation on Link Categories" msgstr "Documentation on Link Categories" @@ -8692,7 +8860,7 @@ msgstr "When you publish a new post, WordPress automatically notifies the follow msgid "The character encoding of your site (UTF-8 is recommended)" msgstr "The character encoding of your site (UTF-8 is recommended)" -#: wp-admin/includes/file.php:2571 +#: wp-admin/includes/file.php:2589 msgid "example: www.wordpress.org" msgstr "example: www.wordpress.org" @@ -8751,11 +8919,11 @@ msgstr[1] "%s+ Million" msgid "XML Error: %1$s at line %2$s" msgstr "XML Error: %1$s at line %2$s" -#: wp-admin/menu-header.php:289 +#: wp-admin/menu-header.php:293 msgid "Main menu" msgstr "Main menu" -#: wp-admin/includes/file.php:2621 +#: wp-admin/includes/file.php:2639 msgid "Enter the location on the server where the public and private keys are located. If a passphrase is needed, enter that in the password field above." msgstr "Enter the location on the server where the public and private keys are located. If a passphrase is needed, enter that in the password field above." @@ -8813,7 +8981,7 @@ msgctxt "timezone date format" msgid "Y-m-d H:i:s" msgstr "j F Y H:i" -#: wp-admin/nav-menus.php:743 +#: wp-admin/nav-menus.php:745 msgid "To add a custom link, expand the Custom Links section, enter a URL and link text, and click Add to Menu" msgstr "To add a custom link, expand the Custom Links section, enter a URL and link text, and click Add to Menu" @@ -8854,11 +9022,11 @@ msgstr "" "###SITEURL###" #. translators: Hidden accessibility text. -#: wp-admin/includes/theme.php:847 wp-admin/themes.php:1029 +#: wp-admin/includes/theme.php:847 wp-admin/themes.php:1071 msgid "Close details dialog" msgstr "Close details dialog" -#: wp-admin/includes/template.php:2799 wp-admin/includes/template.php:2818 +#: wp-admin/includes/template.php:2798 wp-admin/includes/template.php:2817 msgid "You are currently editing the page that shows your latest posts." msgstr "You are currently editing the page that shows your latest posts." @@ -8880,7 +9048,7 @@ msgstr "Size in megabytes" msgid "Site Upload Space Quota" msgstr "Site Upload Space Quota" -#: wp-admin/includes/class-wp-automatic-updater.php:1639 +#: wp-admin/includes/class-wp-automatic-updater.php:1665 msgid "" "UPDATE LOG\n" "==========" @@ -8888,7 +9056,7 @@ msgstr "" "UPDATE LOG\n" "==========" -#: wp-admin/includes/class-wp-automatic-updater.php:1616 +#: wp-admin/includes/class-wp-automatic-updater.php:1642 msgid "" "BETA TESTING?\n" "=============\n" @@ -8922,7 +9090,7 @@ msgstr "Submitted on" #. translators: Column name or table row header. #: wp-admin/comment.php:201 -#: wp-admin/includes/class-wp-comments-list-table.php:477 +#: wp-admin/includes/class-wp-comments-list-table.php:481 msgid "In response to" msgstr "In response to" @@ -8932,7 +9100,7 @@ msgstr "In response to" msgid "%1$s %2$s, %3$s at %4$s:%5$s" msgstr "%1$s %2$s, %3$s at %4$s:%5$s" -#: wp-admin/user-edit.php:744 +#: wp-admin/user-edit.php:746 msgid "You are only logged in at this location." msgstr "You are only logged in at this location." @@ -8940,11 +9108,11 @@ msgstr "You are only logged in at this location." msgid "These suggestions are based on the plugins you and other users have installed." msgstr "These suggestions are based on the plugins you and other users have installed." -#: wp-admin/edit-form-advanced.php:297 +#: wp-admin/edit-form-advanced.php:290 msgid "You can enable distraction-free writing mode using the icon to the right. This feature is not available for old browsers or devices with small screens, and requires that the full-height editor be enabled in Screen Options." msgstr "You can enable distraction-free writing mode using the icon to the right. This feature is not available for old browsers or devices with small screens, and requires that the full-height editor be enabled in Screen Options." -#: wp-admin/user-edit.php:762 +#: wp-admin/user-edit.php:764 msgid "Log Out Everywhere" msgstr "Log Out Everywhere" @@ -8955,7 +9123,7 @@ msgstr "Recommended" #. translators: New site notification email. 1: New site URL, 2: User login, 3: #. User password or password reset link, 4: Login URL. -#: wp-admin/includes/upgrade.php:574 +#: wp-admin/includes/upgrade.php:589 msgid "" "Your new WordPress site has been successfully set up at:\n" "\n" @@ -9022,7 +9190,7 @@ msgid "All categories" msgstr "All categories" #. translators: Hidden accessibility text. -#: wp-admin/includes/class-wp-comments-list-table.php:513 +#: wp-admin/includes/class-wp-comments-list-table.php:517 msgid "Filter by comment type" msgstr "Filter by comment type" @@ -9043,13 +9211,13 @@ msgstr "Could not log out user sessions. Please try again." msgid "This preview is unavailable in the editor." msgstr "This preview is unavailable in the editor." -#: wp-admin/edit-form-advanced.php:296 +#: wp-admin/edit-form-advanced.php:289 msgid "You can insert media files by clicking the button above the post editor and following the directions. You can align or edit images using the inline formatting toolbar available in Visual mode." msgstr "You can insert media files by clicking the button above the post editor and following the directions. You can align or edit images using the inline formatting toolbar available in Visual mode." -#: wp-admin/edit-form-advanced.php:293 -msgid "Post editor — Enter the text for your post. There are two modes of editing: Visual and Text. Choose the mode by clicking on the appropriate tab." -msgstr "Post editor — Enter the text for your post. There are two modes of editing: Visual and Text. Choose the mode by clicking on the appropriate tab." +#: wp-admin/edit-form-advanced.php:286 +msgid "Post editor — Enter the text for your post. There are two modes of editing: Visual and Code. Choose the mode by clicking on the appropriate tab." +msgstr "Post editor — Enter the text for your post. There are two modes of editing: Visual and Code. Choose the mode by clicking on the appropriate tab." #. translators: %s: URL to header image configuration in Customizer. #: wp-admin/includes/class-custom-image-header.php:518 @@ -9129,7 +9297,7 @@ msgid "Add Plugins" msgstr "Add Plugins" #. translators: 1: WPLANG, 2: wp-config.php -#: wp-admin/options-general.php:351 +#: wp-admin/options-general.php:350 msgid "The %1$s constant in your %2$s file is no longer needed." msgstr "The %1$s constant in your %2$s file is no longer needed." @@ -9137,7 +9305,7 @@ msgstr "The %1$s constant in your %2$s file is no longer needed." msgid "Invalid translation type." msgstr "Invalid translation type." -#: wp-admin/install.php:369 +#: wp-admin/install.php:393 msgid "Welcome to the famous five-minute WordPress installation process! Just fill in the information below and you’ll be on your way to using the most extendable and powerful personal publishing platform in the world." msgstr "Welcome to the famous five-minute WordPress installation process! Just fill in the information below and you’ll be on your way to using the most extendable and powerful personal publishing platform in the world." @@ -9161,7 +9329,7 @@ msgstr[1] "%d stars" msgid "Select bulk action" msgstr "Select bulk action" -#: wp-admin/user-new.php:484 wp-admin/user-new.php:651 +#: wp-admin/user-new.php:489 wp-admin/user-new.php:656 msgid "Add the user without sending an email that requires their confirmation" msgstr "Add the user without sending an email that requires their confirmation" @@ -9185,7 +9353,7 @@ msgid "Reviews" msgstr "Reviews" #. translators: %s: Support email address. -#: wp-admin/includes/class-wp-automatic-updater.php:1046 +#: wp-admin/includes/class-wp-automatic-updater.php:1054 msgid "The WordPress team is willing to help you. Forward this email to %s and the team will work with you to make sure your site is working." msgstr "The WordPress team is willing to help you. Forward this email to %s and the team will work with you to make sure your site is working." @@ -9238,7 +9406,7 @@ msgstr "%s failed to embed." msgid "Filtering by:" msgstr "Filtering by:" -#: wp-admin/includes/media.php:3287 +#: wp-admin/includes/media.php:3291 msgid "Displayed on attachment pages." msgstr "Displayed on attachment pages." @@ -9263,7 +9431,7 @@ msgid "You can proportionally scale the original image. For best results, scalin msgstr "You can proportionally scale the original image. For best results, scaling should be done before you crop, flip, or rotate. Images can only be scaled down, not up." #. translators: %s: Alt + F10 -#: wp-admin/edit-form-advanced.php:300 +#: wp-admin/edit-form-advanced.php:293 msgid "Keyboard users: When you are working in the visual editor, you can use %s to access the toolbar." msgstr "Keyboard users: When you are working in the visual editor, you can use %s to access the toolbar." @@ -9271,7 +9439,7 @@ msgstr "Keyboard users: When you are working in the visual editor, you can use % msgid "A red bar on the left means the comment is waiting for you to moderate it." msgstr "A red bar on the left means the comment is waiting for you to moderate it." -#: wp-admin/includes/class-wp-comments-list-table.php:518 +#: wp-admin/includes/class-wp-comments-list-table.php:522 msgid "All comment types" msgstr "All comment types" @@ -9397,8 +9565,8 @@ msgstr "On this screen, you can update to the latest version of WordPress, as we #. translators: %s: https://wordpress.org/themes #: wp-admin/themes.php:156 -msgid "If you would like to see more themes to choose from, click on the “Add New Theme” button and you will be able to browse or search for additional themes from the WordPress Theme Directory. Themes in the WordPress Theme Directory are designed and developed by third parties, and are compatible with the license WordPress uses. Oh, and they are free!" -msgstr "If you would like to see more themes to choose from, click on the “Add New Theme” button and you will be able to browse or search for additional themes from the WordPress Theme Directory. Themes in the WordPress Theme Directory are designed and developed by third parties, and are compatible with the licence WordPress uses. Oh, and they are free!" +msgid "If you would like to see more themes to choose from, click on the “Add Theme” button and you will be able to browse or search for additional themes from the WordPress Theme Directory. Themes in the WordPress Theme Directory are designed and developed by third parties, and are compatible with the license WordPress uses. Oh, and they are free!" +msgstr "If you would like to see more themes to choose from, click on the “Add Theme” button and you will be able to browse or search for additional themes from the WordPress Theme Directory. Themes in the WordPress Theme Directory are designed and developed by third parties, and are compatible with the licence WordPress uses. Oh, and they are free!" #. translators: 1: Number of megabytes, 2: Percentage. #: wp-admin/includes/dashboard.php:1682 @@ -9438,7 +9606,7 @@ msgstr "When this setting is in effect, a reminder is shown in the At a Glance b msgid "At a Glance" msgstr "At a Glance" -#: wp-admin/themes.php:597 wp-admin/themes.php:968 +#: wp-admin/themes.php:599 wp-admin/themes.php:991 msgctxt "theme" msgid "Active:" msgstr "Active:" @@ -9448,7 +9616,7 @@ msgid "Accessibility Ready" msgstr "Accessibility Ready" #. translators: %s: Theme name. -#: wp-admin/includes/theme.php:976 wp-admin/themes.php:1201 +#: wp-admin/includes/theme.php:976 wp-admin/themes.php:1243 msgid "This is a child theme of %s." msgstr "This is a child theme of %s." @@ -9489,13 +9657,13 @@ msgid "To activate a widget drag it to a sidebar or click on it. To deactivate a msgstr "To activate a widget drag it to a sidebar or click on it. To deactivate a widget and delete its settings, drag it back." #. translators: Hidden accessibility text. %s: The rating. -#: wp-admin/includes/template.php:2774 +#: wp-admin/includes/template.php:2773 msgid "%s rating" msgstr "%s rating" #. translators: Hidden accessibility text. 1: The rating, 2: The number of #. ratings. -#: wp-admin/includes/template.php:2770 +#: wp-admin/includes/template.php:2769 msgid "%1$s rating based on %2$s rating" msgid_plural "%1$s rating based on %2$s ratings" msgstr[0] "%1$s rating based on %2$s rating" @@ -9506,36 +9674,36 @@ msgid "This screen shows an individual user all of their sites in this network, msgstr "This screen shows an individual user all of their sites in this network, and also allows that user to set a primary site. They can use the links under each site to visit either the front end or the dashboard for that site." #. translators: 1: Error code, 2: Error message. -#: wp-admin/includes/class-wp-automatic-updater.php:1677 +#: wp-admin/includes/class-wp-automatic-updater.php:1703 msgid "Error: [%1$s] %2$s" msgstr "ERROR: [%1$s] %2$s" #. translators: 1: Error code, 2: Error message. -#: wp-admin/includes/class-wp-automatic-updater.php:1674 +#: wp-admin/includes/class-wp-automatic-updater.php:1700 msgid "Rollback Error: [%1$s] %2$s" msgstr "ROLLBACK ERROR: [%1$s] %2$s" -#: wp-admin/includes/class-wp-automatic-updater.php:1591 +#: wp-admin/includes/class-wp-automatic-updater.php:1617 msgid "The following translations failed to update:" msgstr "The following translations failed to update:" -#: wp-admin/includes/class-wp-automatic-updater.php:1590 +#: wp-admin/includes/class-wp-automatic-updater.php:1616 msgid "The following themes failed to update:" msgstr "The following themes failed to update:" -#: wp-admin/includes/class-wp-automatic-updater.php:1589 +#: wp-admin/includes/class-wp-automatic-updater.php:1615 msgid "The following plugins failed to update:" msgstr "The following plugins failed to update:" -#: wp-admin/includes/class-wp-automatic-updater.php:1576 +#: wp-admin/includes/class-wp-automatic-updater.php:1602 msgid "The following translations were successfully updated:" msgstr "The following translations were successfully updated:" -#: wp-admin/includes/class-wp-automatic-updater.php:1575 +#: wp-admin/includes/class-wp-automatic-updater.php:1601 msgid "The following themes were successfully updated:" msgstr "The following themes were successfully updated:" -#: wp-admin/includes/class-wp-automatic-updater.php:1574 +#: wp-admin/includes/class-wp-automatic-updater.php:1600 msgid "The following plugins were successfully updated:" msgstr "The following plugins were successfully updated:" @@ -9544,25 +9712,19 @@ msgid "Add Widget" msgstr "Add Widget" #. translators: Hidden accessibility text. -#: wp-admin/includes/theme.php:841 wp-admin/themes.php:1023 +#: wp-admin/includes/theme.php:841 wp-admin/themes.php:1065 msgid "Show next theme" msgstr "Show next theme" #. translators: Hidden accessibility text. -#: wp-admin/includes/theme.php:835 wp-admin/themes.php:1017 +#: wp-admin/includes/theme.php:835 wp-admin/themes.php:1059 msgid "Show previous theme" msgstr "Show previous theme" -#: wp-admin/includes/theme.php:897 wp-admin/themes.php:1117 +#: wp-admin/includes/theme.php:897 wp-admin/themes.php:1159 msgid "Update Available" msgstr "Update Available" -#: wp-admin/theme-install.php:57 wp-admin/themes.php:234 -#: wp-admin/themes.php:255 wp-admin/network/menu.php:81 -#: wp-admin/network/themes.php:366 -msgid "Add New Theme" -msgstr "Add New Theme" - #: wp-admin/themes.php:230 msgid "" "Are you sure you want to delete this theme?\n" @@ -9632,47 +9794,47 @@ msgid "Activity" msgstr "Activity" #. translators: %s: Name of plugin / theme / translation. -#: wp-admin/includes/class-wp-automatic-updater.php:1599 +#: wp-admin/includes/class-wp-automatic-updater.php:1625 msgid "FAILED: %s" msgstr "FAILED: %s" #. translators: %s: Name of plugin / theme / translation. -#: wp-admin/includes/class-wp-automatic-updater.php:1582 +#: wp-admin/includes/class-wp-automatic-updater.php:1608 msgid "SUCCESS: %s" msgstr "SUCCESS: %s" #. translators: %s: WordPress version. -#: wp-admin/includes/class-wp-automatic-updater.php:1557 +#: wp-admin/includes/class-wp-automatic-updater.php:1583 msgid "FAILED: WordPress failed to update to %s" msgstr "FAILED: WordPress failed to update to %s" #. translators: %s: WordPress version. -#: wp-admin/includes/class-wp-automatic-updater.php:1554 +#: wp-admin/includes/class-wp-automatic-updater.php:1580 msgid "SUCCESS: WordPress was successfully updated to %s" msgstr "SUCCESS: WordPress was successfully updated to %s" #. translators: %s: Network home URL. -#: wp-admin/includes/class-wp-automatic-updater.php:1546 +#: wp-admin/includes/class-wp-automatic-updater.php:1572 msgid "WordPress site: %s" msgstr "WordPress site: %s" #. translators: %s: WordPress version. -#: wp-admin/includes/class-wp-automatic-updater.php:1075 +#: wp-admin/includes/class-wp-automatic-updater.php:1083 msgid "Your site was running version %s." msgstr "Your site was running version %s." #. translators: 1: Home URL, 2: WordPress version. -#: wp-admin/includes/class-wp-automatic-updater.php:1021 +#: wp-admin/includes/class-wp-automatic-updater.php:1029 msgid "Your site at %1$s experienced a critical failure while trying to update WordPress to version %2$s." msgstr "Your site at %1$s experienced a critical failure while trying to update WordPress to version %2$s." #. translators: %s: WordPress latest version. -#: wp-admin/includes/class-wp-automatic-updater.php:987 +#: wp-admin/includes/class-wp-automatic-updater.php:995 msgid "WordPress %s is also now available." msgstr "WordPress %s is also now available." -#: wp-admin/includes/update-core.php:1271 -#: wp-admin/includes/update-core.php:1307 +#: wp-admin/includes/update-core.php:1297 +#: wp-admin/includes/update-core.php:1333 msgid "The update cannot be installed because your site is unable to copy some files. This is usually due to inconsistent file permissions." msgstr "The update cannot be installed because your site is unable to copy some files. This is usually due to inconsistent file permissions." @@ -9686,84 +9848,84 @@ msgid "Translations" msgstr "Translations" #. translators: %s: Error code. -#: wp-admin/includes/class-wp-automatic-updater.php:1096 +#: wp-admin/includes/class-wp-automatic-updater.php:1104 msgid "Error code: %s" msgstr "Error code: %s" -#: wp-admin/includes/class-wp-automatic-updater.php:1077 +#: wp-admin/includes/class-wp-automatic-updater.php:1085 msgid "Your hosting company, support forum volunteers, or a friendly developer may be able to use this information to help you:" msgstr "Your hosting company, support forum volunteers, or a friendly developer may be able to use this information to help you:" -#: wp-admin/includes/class-wp-automatic-updater.php:1070 -#: wp-admin/includes/class-wp-automatic-updater.php:1489 +#: wp-admin/includes/class-wp-automatic-updater.php:1078 +#: wp-admin/includes/class-wp-automatic-updater.php:1508 msgid "The WordPress Team" msgstr "The WordPress Team" -#: wp-admin/includes/class-wp-automatic-updater.php:1066 +#: wp-admin/includes/class-wp-automatic-updater.php:1074 msgid "You also have some plugins or themes with updates available. Update them now:" msgstr "You also have some plugins or themes with updates available. Update them now:" -#: wp-admin/includes/class-wp-automatic-updater.php:1051 -#: wp-admin/includes/class-wp-automatic-updater.php:1487 +#: wp-admin/includes/class-wp-automatic-updater.php:1059 +#: wp-admin/includes/class-wp-automatic-updater.php:1506 msgid "If you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help." msgstr "If you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help." -#: wp-admin/includes/class-wp-automatic-updater.php:1057 +#: wp-admin/includes/class-wp-automatic-updater.php:1065 #: wp-admin/update-core.php:991 msgid "Keeping your site updated is important for security. It also makes the internet a safer place for you and your readers." msgstr "Keeping your site updated is important for security. It also makes the internet a safer place for you and your readers." -#: wp-admin/includes/class-wp-automatic-updater.php:1036 +#: wp-admin/includes/class-wp-automatic-updater.php:1044 msgid "Please check out your site now. It's possible that everything is working. If it says you need to update, you should do so:" msgstr "Please check out your site now. It's possible that everything is working. If it says you need to update, you should do so:" -#: wp-admin/includes/class-wp-automatic-updater.php:1034 +#: wp-admin/includes/class-wp-automatic-updater.php:1042 msgid "This means your site may be offline or broken. Don't panic; this can be fixed." msgstr "This means your site may be offline or broken. Don't panic; this can be fixed." #. translators: 1: Home URL, 2: WordPress latest version. -#: wp-admin/includes/class-wp-automatic-updater.php:1028 +#: wp-admin/includes/class-wp-automatic-updater.php:1036 msgid "Your site at %1$s experienced a critical failure while trying to update to the latest version of WordPress, %2$s." msgstr "Your site at %1$s experienced a critical failure while trying to update to the latest version of WordPress, %2$s." -#: wp-admin/includes/class-wp-automatic-updater.php:988 -#: wp-admin/includes/class-wp-automatic-updater.php:1013 +#: wp-admin/includes/class-wp-automatic-updater.php:996 +#: wp-admin/includes/class-wp-automatic-updater.php:1021 msgid "Updating is easy and only takes a few moments:" msgstr "Updating is easy and only takes a few moments:" #. translators: 1: Home URL, 2: WordPress version. -#: wp-admin/includes/class-wp-automatic-updater.php:998 +#: wp-admin/includes/class-wp-automatic-updater.php:1006 msgid "Please update your site at %1$s to WordPress %2$s." msgstr "Please update your site at %1$s to WordPress %2$s." #. translators: %s: WordPress version. -#: wp-admin/includes/class-wp-automatic-updater.php:982 +#: wp-admin/includes/class-wp-automatic-updater.php:990 msgid "For more on version %s, see the About WordPress screen:" msgstr "For more on version %s, see the About WordPress screen:" -#: wp-admin/includes/class-wp-automatic-updater.php:976 +#: wp-admin/includes/class-wp-automatic-updater.php:984 msgid "No further action is needed on your part." msgstr "No further action is needed on your part." #. translators: 1: Home URL, 2: WordPress version. -#: wp-admin/includes/class-wp-automatic-updater.php:970 +#: wp-admin/includes/class-wp-automatic-updater.php:978 msgid "Howdy! Your site at %1$s has been updated automatically to WordPress %2$s." msgstr "Hi! Your site at %1$s has been updated automatically to WordPress %2$s." #. translators: Site down notification email subject. 1: Site title. -#: wp-admin/includes/class-wp-automatic-updater.php:953 +#: wp-admin/includes/class-wp-automatic-updater.php:961 msgid "[%1$s] URGENT: Your site may be down due to a failed update" msgstr "[%1$s] URGENT: Your site may be down due to a failed update" #. translators: Update available notification email subject. 1: Site title, 2: #. WordPress version. -#: wp-admin/includes/class-wp-automatic-updater.php:948 +#: wp-admin/includes/class-wp-automatic-updater.php:956 msgid "[%1$s] WordPress %2$s is available. Please update!" msgstr "[%1$s] WordPress %2$s is available. Please update!" #. translators: Site updated notification email subject. 1: Site title, 2: #. WordPress version. -#: wp-admin/includes/class-wp-automatic-updater.php:942 +#: wp-admin/includes/class-wp-automatic-updater.php:950 msgid "[%1$s] Your site has updated to WordPress %2$s" msgstr "[%1$s] Your site has updated to WordPress %2$s" @@ -9787,7 +9949,7 @@ msgstr "Update Translations" msgid "Background updates" msgstr "Background updates" -#: wp-admin/includes/update-core.php:1374 +#: wp-admin/includes/update-core.php:1400 msgid "There is not enough free disk space to complete the update." msgstr "There is not enough free disk space to complete the update." @@ -9813,7 +9975,7 @@ msgstr "Translation update failed." msgid "Some of your translations need updating. Sit tight for a few more seconds while they are updated as well." msgstr "Some of your translations need updating. Sit tight for a few more seconds while they are updated as well." -#: wp-admin/user-new.php:513 +#: wp-admin/user-new.php:518 msgid "Create a brand new user and add them to this site." msgstr "Create a brand new user and add them to this site." @@ -9830,61 +9992,61 @@ msgstr "The sizes listed below determine the maximum dimensions in pixels to use msgid "Comment must be manually approved" msgstr "Comment must be manually approved" -#: wp-admin/nav-menus.php:741 +#: wp-admin/nav-menus.php:743 msgid "Clicking the arrow to the right of any menu item in the editor will reveal a standard group of settings. Additional settings such as link target, CSS classes, link relationships, and link descriptions can be enabled and disabled via the Screen Options tab." msgstr "Clicking the arrow to the right of any menu item in the editor will reveal a standard group of settings. Additional settings such as link target, CSS classes, link relationships, and link descriptions can be enabled and disabled via the Screen Options tab." #. translators: 1: URL to Widgets screen, 2 and 3: The names of the default #. themes. -#: wp-admin/nav-menus.php:710 +#: wp-admin/nav-menus.php:712 msgid "Menus can be displayed in locations defined by your theme, even used in sidebars by adding a “Navigation Menu” widget on the Widgets screen. If your theme does not support the navigation menus feature (the default themes, %2$s and %3$s, do), you can learn about adding this support by following the documentation link to the side." msgstr "Menus can be displayed in locations defined by your theme, even used in sidebars by adding a “Navigation Menu” widget on the Widgets screen. If your theme does not support the navigation menus feature (the default themes, %2$s and %3$s, do), you can learn about adding this support by following the documentation link to the side." #. translators: %s: URL to Widgets screen. -#: wp-admin/nav-menus.php:693 +#: wp-admin/nav-menus.php:695 msgid "Your theme does not natively support menus, but you can use them in sidebars by adding a “Navigation Menu” widget on the Widgets screen." msgstr "Your theme does not natively support menus, but you can use them in sidebars by adding a “Navigation Menu” widget on the Widgets screen." -#: wp-admin/install.php:419 +#: wp-admin/install.php:443 msgid "Sorry, that is not a valid email address. Email addresses look like username@example.com." msgstr "Sorry, that is not a valid email address. Email addresses look like username@example.com." -#: wp-admin/install.php:415 +#: wp-admin/install.php:439 msgid "You must provide an email address." msgstr "You must provide an email address." -#: wp-admin/install.php:411 +#: wp-admin/install.php:435 msgid "Your passwords do not match. Please try again." msgstr "Your passwords do not match. Please try again." -#: wp-admin/install.php:407 +#: wp-admin/install.php:431 msgid "The username you provided has invalid characters." msgstr "The username you provided has invalid characters." -#: wp-admin/install.php:404 +#: wp-admin/install.php:428 msgid "Please provide a valid username." msgstr "Please provide a valid username." -#: wp-admin/includes/update-core.php:1288 +#: wp-admin/includes/update-core.php:1314 msgid "Copying the required files…" msgstr "Copying the required files…" -#: wp-admin/includes/update-core.php:1195 +#: wp-admin/includes/update-core.php:1221 msgid "Preparing to install the latest version…" msgstr "Preparing to install the latest version…" -#: wp-admin/includes/file.php:2585 +#: wp-admin/includes/file.php:2603 msgid "This password will not be stored on the server." msgstr "This password will not be stored on the server." #. translators: 1: File checksum, 2: Expected checksum value. -#: wp-admin/includes/file.php:1369 +#: wp-admin/includes/file.php:1387 msgid "The checksum of the file (%1$s) does not match the expected checksum value (%2$s)." msgstr "The checksum of the file (%1$s) does not match the expected checksum value (%2$s)." #. translators: %s: Version number. #. translators: %s: WordPress version. -#: wp-admin/about.php:40 wp-admin/includes/class-wp-automatic-updater.php:409 +#: wp-admin/about.php:41 wp-admin/includes/class-wp-automatic-updater.php:409 msgid "WordPress %s" msgstr "WordPress %s" @@ -10070,23 +10232,19 @@ msgstr "\"%1$s\" from %2$s by %3$s." msgid "Revision by %s" msgstr "Revision by %s" -#: wp-admin/edit-form-advanced.php:468 +#: wp-admin/edit-form-advanced.php:461 msgid "Connection lost. Saving has been disabled until you are reconnected." msgstr "Connection lost. Saving has been disabled until you are reconnected." -#: wp-admin/includes/revision.php:469 -msgid "Sorry, something went wrong. The requested comparison could not be loaded." -msgstr "Sorry, something went wrong. The requested comparison could not be loaded." - -#: wp-admin/install.php:160 wp-admin/user-new.php:609 +#: wp-admin/install.php:160 wp-admin/user-new.php:614 msgid "Repeat Password" msgstr "Repeat Password" -#: wp-admin/user-edit.php:694 +#: wp-admin/user-edit.php:696 msgid "Repeat New Password" msgstr "Repeat New Password" -#: wp-admin/includes/nav-menu.php:1251 +#: wp-admin/includes/nav-menu.php:1252 msgid "Add menu items from the column on the left." msgstr "Add menu items from the column on the left." @@ -10112,7 +10270,7 @@ msgstr "The package contains no files." msgid "To navigate between revisions, drag the slider handle left or right or use the Previous or Next buttons." msgstr "To navigate between revisions, drag the slider handle left or right or use the Previous or Next buttons." -#: wp-admin/customize.php:155 wp-admin/includes/class-wp-debug-data.php:788 +#: wp-admin/customize.php:155 wp-admin/includes/class-wp-debug-data.php:816 #: wp-admin/includes/dashboard.php:1164 msgid "Loading…" msgstr "Loading…" @@ -10129,11 +10287,11 @@ msgstr "The item you are trying to restore from the Bin no longer exists." msgid "The item you are trying to move to the Trash no longer exists." msgstr "The item you are trying to move to the Bin no longer exists." -#: wp-admin/nav-menus.php:1116 +#: wp-admin/nav-menus.php:1118 msgid "Drag the items into the order you prefer. Click the arrow on the right of the item to reveal additional configuration options." msgstr "Drag the items into the order you prefer. Click the arrow on the right of the item to reveal additional configuration options." -#: wp-admin/nav-menus.php:729 +#: wp-admin/nav-menus.php:731 msgid "If you have not yet created any menus, click the ’create a new menu’ link to get started" msgstr "If you have not yet created any menus, click the ’create a new menu’ link to get started" @@ -10173,101 +10331,101 @@ msgctxt "Followed by post revision info" msgid "From:" msgstr "From:" -#: wp-admin/nav-menus.php:917 +#: wp-admin/nav-menus.php:918 msgctxt "menu" msgid "Use new menu" msgstr "Use new menu" -#: wp-admin/nav-menus.php:893 +#: wp-admin/nav-menus.php:897 msgctxt "menu" msgid "Edit" msgstr "Edit" -#: wp-admin/nav-menus.php:862 +#: wp-admin/nav-menus.php:864 msgid "Select a Menu" msgstr "Select a Menu" -#: wp-admin/nav-menus.php:853 +#: wp-admin/nav-menus.php:855 msgid "Assigned Menu" msgstr "Assigned Menu" -#: wp-admin/nav-menus.php:852 +#: wp-admin/nav-menus.php:854 msgid "Theme Location" msgstr "Theme Location" -#: wp-admin/nav-menus.php:821 +#: wp-admin/nav-menus.php:823 msgid "Manage Locations" msgstr "Manage Locations" -#: wp-admin/nav-menus.php:810 +#: wp-admin/nav-menus.php:812 msgid "Edit Menus" msgstr "Edit Menus" -#: wp-admin/nav-menus.php:758 +#: wp-admin/nav-menus.php:760 msgid "To add a new menu instead of assigning an existing one, click the ’Use new menu’ link. Your new menu will be automatically assigned to that theme location" msgstr "To add a new menu instead of assigning an existing one, click the ’Use new menu’ link. Your new menu will be automatically assigned to that theme location" -#: wp-admin/nav-menus.php:757 +#: wp-admin/nav-menus.php:759 msgid "To edit a menu currently assigned to a theme location, click the adjacent ’Edit’ link" msgstr "To edit a menu currently assigned to a theme location, click the adjacent ’Edit’ link" -#: wp-admin/nav-menus.php:756 +#: wp-admin/nav-menus.php:758 msgid "To assign menus to one or more theme locations, select a menu from each location’s dropdown. When you are finished, click Save Changes" msgstr "To assign menus to one or more theme locations, select a menu from each location’s dropdown. When you are finished, click Save Changes" -#: wp-admin/nav-menus.php:755 +#: wp-admin/nav-menus.php:757 msgid "This screen is used for globally assigning menus to locations defined by your theme." msgstr "This screen is used for globally assigning menus to locations defined by your theme." -#: wp-admin/nav-menus.php:750 +#: wp-admin/nav-menus.php:752 msgid "Editing Menus" msgstr "Editing Menus" -#: wp-admin/nav-menus.php:745 +#: wp-admin/nav-menus.php:747 msgid "Delete a menu item by expanding it and clicking the Remove link" msgstr "Delete a menu item by expanding it and clicking the Remove link" -#: wp-admin/nav-menus.php:744 +#: wp-admin/nav-menus.php:746 msgid "To reorganize menu items, drag and drop items with your mouse or use your keyboard. Drag or move a menu item a little to the right to make it a submenu" msgstr "To reorganise menu items, drag and drop items with your mouse or use your keyboard. Drag or move a menu item a little to the right to make it a submenu" -#: wp-admin/nav-menus.php:742 +#: wp-admin/nav-menus.php:744 msgid "Add one or several items at once by selecting the checkbox next to each item and clicking Add to Menu" msgstr "Add one or several items at once by selecting the checkbox next to each item and clicking Add to Menu" -#: wp-admin/nav-menus.php:740 +#: wp-admin/nav-menus.php:742 msgid "Each navigation menu may contain a mix of links to pages, categories, custom URLs or other content types. Menu links are added by selecting items from the expanding boxes in the left-hand column below." msgstr "Each navigation menu may contain a mix of links to pages, categories, custom URLs or other content types. Menu links are added by selecting items from the expanding boxes in the left-hand column below." -#: wp-admin/nav-menus.php:735 +#: wp-admin/nav-menus.php:737 msgid "Menu Management" msgstr "Menu Management" -#: wp-admin/nav-menus.php:730 +#: wp-admin/nav-menus.php:732 msgid "You can assign theme locations to individual menus by selecting the desired settings at the bottom of the menu editor. To assign menus to all theme locations at once, visit the Manage Locations tab at the top of the screen." msgstr "You can assign theme locations to individual menus by selecting the desired settings at the bottom of the menu editor. To assign menus to all theme locations at once, visit the Manage Locations tab at the top of the screen." -#: wp-admin/nav-menus.php:728 +#: wp-admin/nav-menus.php:730 msgid "To edit an existing menu, choose a menu from the dropdown and click Select" msgstr "To edit an existing menu, choose a menu from the dropdown and click Select" -#: wp-admin/nav-menus.php:727 +#: wp-admin/nav-menus.php:729 msgid "The menu management box at the top of the screen is used to control which menu is opened in the editor below." msgstr "The menu management box at the top of the screen is used to control which menu is opened in the editor below." -#: wp-admin/nav-menus.php:717 +#: wp-admin/nav-menus.php:719 msgid "Add, organize, and modify individual menu items" msgstr "Add, organise, and modify individual menu items" -#: wp-admin/nav-menus.php:716 +#: wp-admin/nav-menus.php:718 msgid "Create, edit, and delete menus" msgstr "Create, edit, and delete menus" -#: wp-admin/nav-menus.php:715 wp-admin/themes.php:133 +#: wp-admin/nav-menus.php:717 wp-admin/themes.php:133 msgid "From this screen you can:" msgstr "From this screen you can:" -#: wp-admin/nav-menus.php:707 +#: wp-admin/nav-menus.php:709 msgid "This screen is used for managing your navigation menus." msgstr "This screen is used for managing your navigation menus." @@ -10275,15 +10433,15 @@ msgstr "This screen is used for managing your navigation menus." msgid "Menu locations updated." msgstr "Menu locations updated." -#: wp-admin/includes/post.php:1911 +#: wp-admin/includes/post.php:1922 msgid "Your latest changes were saved as a revision." msgstr "Your latest changes were saved as a revision." -#: wp-admin/includes/media.php:3470 +#: wp-admin/includes/media.php:3474 msgid "Audio Codec:" msgstr "Audio Codec:" -#: wp-admin/includes/media.php:3469 +#: wp-admin/includes/media.php:3473 msgid "Audio Format:" msgstr "Audio Format:" @@ -10313,19 +10471,19 @@ msgid "Restore This Revision" msgstr "Restore This Revision" #. translators: %s: Capability name. -#: wp-admin/user-edit.php:930 +#: wp-admin/user-edit.php:932 msgid "Denied: %s" msgstr "Denied: %s" -#: wp-admin/user-edit.php:916 +#: wp-admin/user-edit.php:918 msgid "Capabilities" msgstr "Capabilities" -#: wp-admin/nav-menus.php:1173 wp-admin/network/settings.php:511 +#: wp-admin/nav-menus.php:1175 wp-admin/network/settings.php:511 msgid "Menu Settings" msgstr "Menu Settings" -#: wp-admin/nav-menus.php:1073 +#: wp-admin/nav-menus.php:1075 msgid "Menu structure" msgstr "Menu structure" @@ -10360,7 +10518,7 @@ msgstr "You cannot move this item to the Bin. %s is currently editing." msgid "%s has taken over and is currently editing." msgstr "%s has taken over and is currently editing." -#: wp-admin/nav-menus.php:978 +#: wp-admin/nav-menus.php:980 msgid "Select a menu to edit:" msgstr "Select a menu to edit:" @@ -10373,19 +10531,19 @@ msgstr "Thank you for Updating! Please visit the Upgrade Network< msgid "All right, sparky! You’ve made it through this part of the installation. WordPress can now communicate with your database. If you are ready, time now to…" msgstr "All right, sunshine! You’ve made it through this part of the installation. WordPress can now communicate with your database. If you are ready, time now to…" -#: wp-admin/includes/class-wp-debug-data.php:1591 +#: wp-admin/includes/class-wp-debug-data.php:1619 msgid "Client version" msgstr "Client version" -#: wp-admin/nav-menus.php:1189 +#: wp-admin/nav-menus.php:1191 msgid "Auto add pages" msgstr "Auto add pages" -#: wp-admin/nav-menus.php:1143 +#: wp-admin/nav-menus.php:1145 msgid "Give your menu a name, then click Create Menu." msgstr "Give your menu a name, then click Create Menu." -#: wp-admin/nav-menus.php:1114 +#: wp-admin/nav-menus.php:1116 msgid "Edit your default menu by adding or removing items. Drag the items into the order you prefer. Click Create Menu to save your changes." msgstr "Edit your default menu by adding or removing items. Drag the items into the order you prefer. Click Create Menu to save your changes." @@ -10397,11 +10555,11 @@ msgstr "Selected menus have been successfully deleted." msgid "For PHP files, you can use the documentation dropdown to select from functions recognized in that file. Look Up takes you to a web page with reference material about that particular function." msgstr "For PHP files, you can use the documentation dropdown to select from functions recognised in that file. Look Up takes you to a web page with reference material about that particular function." -#: wp-admin/plugin-editor.php:298 wp-admin/theme-editor.php:327 +#: wp-admin/plugin-editor.php:308 wp-admin/theme-editor.php:332 msgid "Look Up" msgstr "Look Up" -#: wp-admin/plugin-editor.php:137 +#: wp-admin/plugin-editor.php:140 msgid "The documentation menu below the editor lists the PHP functions recognized in the plugin file. Clicking Look Up takes you to a web page about that particular function." msgstr "The documentation menu below the editor lists the PHP functions recognised in the plugin file. Clicking Look Up takes you to a web page about that particular function." @@ -10411,20 +10569,16 @@ msgstr "The documentation menu below the editor lists the PHP functions recognis msgid "%s is currently editing" msgstr "%s is currently editing" -#: wp-admin/edit-form-advanced.php:361 +#: wp-admin/edit-form-advanced.php:354 msgid "You can upload and insert media (images, audio, documents, etc.) by clicking the Add Media button. You can select from the images and files already uploaded to the Media Library, or upload new media to add to your page or post. To create an image gallery, select the images to add and click the “Create a new gallery” button." msgstr "You can upload and insert media (images, audio, documents, etc.) by clicking the Add Media button. You can select from the images and files already uploaded to the Media Library, or upload new media to add to your page or post. To create an image gallery, select the images to add and click the “Create a new gallery” button." -#: wp-admin/about.php:75 -msgid "Introducing Twenty Twenty-Five" -msgstr "Introducing Twenty Twenty-Five" - #: wp-admin/includes/image-edit.php:83 msgid "Image rotation is not supported by your web host." msgstr "Image rotation is not supported by your web host." #. translators: %s: A link to install the Link Manager plugin. -#: wp-admin/includes/bookmark.php:355 +#: wp-admin/includes/bookmark.php:356 msgid "If you are looking to use the link manager, please install the Link Manager plugin." msgstr "If you are looking to use the link manager, please install the Link Manager plugin." @@ -10432,19 +10586,19 @@ msgstr "If you are looking to use the link manager, please install the Parent — Categories, unlike tags, can have a hierarchy. You might have a Jazz category, and under that have child categories for Bebop and Big Band. Totally optional. To create a subcategory, just choose another category from the Parent dropdown." msgstr "Parent — Categories, unlike tags, can have a hierarchy. You might have a Jazz category, and under that have child categories for Bebop and Big Band. Totally optional. To create a subcategory, just choose another category from the Parent dropdown." -#: wp-admin/edit-form-advanced.php:374 +#: wp-admin/edit-form-advanced.php:367 msgid "Several boxes on this screen contain settings for how your content will be published, including:" msgstr "Several boxes on this screen contain settings for how your content will be published, including:" -#: wp-admin/edit-form-advanced.php:367 +#: wp-admin/edit-form-advanced.php:360 msgid "Inserting Media" msgstr "Inserting Media" -#: wp-admin/edit-form-advanced.php:282 +#: wp-admin/edit-form-advanced.php:275 msgid "The title field and the big Post Editing Area are fixed in place, but you can reposition all the other boxes using drag and drop. You can also minimize or expand them by clicking the title bar of each box. Use the Screen Options tab to unhide more boxes (Excerpt, Send Trackbacks, Custom Fields, Discussion, Slug, Author) or to choose a 1- or 2-column layout for this screen." msgstr "The title field and the big Post Editing Area are fixed in place, but you can reposition all the other boxes using drag and drop. You can also minimise or expand them by clicking the title bar of each box. Use the Screen Options tab to unhide more boxes (Excerpt, Send Trackbacks, Custom Fields, Discussion, Slug, Author) or to choose a 1- or 2-column layout for this screen." @@ -10457,11 +10611,11 @@ msgid "To use a background image, simply upload it or choose an image that has a msgstr "To use a background image, simply upload it or choose an image that has already been uploaded to your Media Library by clicking the “Choose Image” button. You can display a single instance of your image, or tile it to fill the screen. You can have your background fixed in place, so your site content moves on top of it, or you can have it scroll with your site." #. translators: 1: URL to browser uploader, 2: Additional link attributes. -#: wp-admin/includes/media.php:3045 +#: wp-admin/includes/media.php:3049 msgid "You are using the multi-file uploader. Problems? Try the browser uploader instead." msgstr "You are using the multi-file uploader. Problems? Try the browser uploader instead." -#: wp-admin/async-upload.php:71 +#: wp-admin/async-upload.php:68 msgctxt "media item" msgid "Edit" msgstr "Edit" @@ -10561,7 +10715,7 @@ msgid "Search engine visibility" msgstr "Search engine visibility" #. translators: 1: WordPress version, 2: URL to About screen. -#: wp-admin/includes/update-core.php:1676 wp-admin/update-core.php:923 +#: wp-admin/includes/update-core.php:1702 wp-admin/update-core.php:923 msgid "Welcome to WordPress %1$s. You will be redirected to the About WordPress screen. If not, click here." msgstr "Welcome to WordPress %1$s. You will be redirected to the About WordPress screen. If not, click here." @@ -10640,28 +10794,28 @@ msgid "Contextual Help Tab" msgstr "Contextual Help Tab" #. translators: Hidden accessibility text. -#: wp-admin/includes/class-wp-comments-list-table.php:927 +#: wp-admin/includes/class-wp-comments-list-table.php:931 msgid "Select comment" msgstr "Select comment" #. translators: %s: URL to Categories to Tags Converter tool. -#: wp-admin/edit-tags.php:653 +#: wp-admin/edit-tags.php:656 msgid "Tags can be selectively converted to categories using the tag to category converter." msgstr "Tags can be selectively converted to categories using the tag to category converter." -#: wp-admin/edit-tags.php:260 +#: wp-admin/edit-tags.php:263 msgid "You can delete Link Categories in the Bulk Action pull-down, but that action does not delete the links within the category. Instead, it moves them to the default Link Category." msgstr "You can delete Link Categories in the Bulk Action pull-down, but that action does not delete the links within the category. Instead, it moves them to the default Link Category." -#: wp-admin/edit-form-advanced.php:324 -msgid "Creating a Page is very similar to creating a Post, and the screens can be customized in the same way using drag and drop, the Screen Options tab, and expanding/collapsing boxes as you choose. This screen also has the distraction-free writing space, available in both the Visual and Text modes via the Fullscreen buttons. The Page editor mostly works the same as the Post editor, but there are some Page-specific features in the Page Attributes box." -msgstr "Creating a Page is very similar to creating a Post, and the screens can be customised in the same way using drag and drop, the Screen Options tab, and expanding/collapsing boxes as you choose. This screen also has the distraction-free writing space, available in both the Visual and Text modes via the Fullscreen buttons. The Page editor mostly works the same as the Post editor, but there are some Page-specific features in the Page Attributes box." +#: wp-admin/edit-form-advanced.php:317 +msgid "Creating a Page is very similar to creating a Post, and the screens can be customized in the same way using drag and drop, the Screen Options tab, and expanding/collapsing boxes as you choose. This screen also has the distraction-free writing space, available in both the Visual and Code modes via the Fullscreen buttons. The Page editor mostly works the same as the Post editor, but there are some Page-specific features in the Page Attributes box." +msgstr "Creating a Page is very similar to creating a Post, and the screens can be customised in the same way using drag and drop, the Screen Options tab, and expanding/collapsing boxes as you choose. This screen also has the distraction-free writing space, available in both the Visual and Code modes via the Fullscreen buttons. The Page editor mostly works the same as the Post editor, but there are some Page-specific features in the Page Attributes box." #: wp-admin/includes/class-custom-image-header.php:595 msgid "You can select an image to be shown at the top of your site by uploading from your computer or choosing from your media library. After selecting an image you will be able to crop it." msgstr "You can select an image to be shown at the top of your site by uploading from your computer or choosing from your media library. After selecting an image you will be able to crop it." -#: wp-admin/menu-header.php:290 +#: wp-admin/menu-header.php:294 msgid "Skip to main content" msgstr "Skip to main content" @@ -10688,7 +10842,7 @@ msgstr "Or choose an image from your media library:" msgid "Select Image" msgstr "Select Image" -#: wp-admin/includes/class-wp-theme-install-list-table.php:408 +#: wp-admin/includes/class-wp-theme-install-list-table.php:406 #: wp-admin/theme-install.php:603 msgid "Collapse" msgstr "Collapse" @@ -10697,11 +10851,6 @@ msgstr "Collapse" msgid "If you do not want a header image to be displayed on your site at all, click the “Remove Header Image” button at the bottom of the Header Image section of this page. If you want to re-enable the header image later, you just have to select one of the other image options and click “Save Changes”." msgstr "If you do not want a header image to be displayed on your site at all, click the “Remove Header Image” button at the bottom of the Header Image section of this page. If you want to re-enable the header image later, you just have to select one of the other image options and click “Save Changes”." -#: wp-admin/includes/class-wp-theme-install-list-table.php:329 -#: wp-admin/includes/class-wp-theme-install-list-table.php:488 -msgid "This theme is already installed and is up to date" -msgstr "This theme is already installed and is up to date" - #: wp-admin/includes/plugin-install.php:1032 msgctxt "plugin" msgid "Installed" @@ -10719,15 +10868,10 @@ msgstr "Previewing and Installing" msgid "Once you have generated a list of themes, you can preview and install any of them. Click on the thumbnail of the theme you are interested in previewing. It will open up in a full-screen Preview page to give you a better idea of how that theme will look." msgstr "Once you have generated a list of themes, you can preview and install any of them. Click on the thumbnail of the theme you are interested in previewing. It will open up in a full-screen Preview page to give you a better idea of how that theme will look." -#: wp-admin/includes/media.php:3062 +#: wp-admin/includes/media.php:3066 msgid "You are using the browser’s built-in file uploader. The WordPress uploader includes multiple file selection and drag and drop capability. Switch to the multi-file uploader." msgstr "You are using the browser’s built-in file uploader. The WordPress uploader includes multiple file selection and drag and drop capability. Switch to the multi-file uploader." -#. translators: %s: Theme name. -#: wp-admin/includes/class-wp-theme-install-list-table.php:349 -msgid "Preview %s" -msgstr "Preview %s" - #: wp-admin/tools.php:50 msgid "The Categories and Tags Converter link on this screen will take you to the Import screen, where that Converter is one of the plugins you can install. Once that plugin is installed, the Activate Plugin & Run Importer link will take you to a screen where you can choose to convert tags into categories or vice versa." msgstr "The Categories and Tags Converter link on this screen will take you to the Import screen, where that Converter is one of the plugins you can install. Once that plugin is installed, the Activate Plugin & Run Importer link will take you to a screen where you can choose to convert tags into categories or vice versa." @@ -10757,7 +10901,7 @@ msgstr "You can choose from the theme’s default header images, or use one msgid "This screen is used to customize the header section of your theme." msgstr "This screen is used to customise the header section of your theme." -#: wp-admin/install.php:304 wp-admin/install.php:317 +#: wp-admin/install.php:328 wp-admin/install.php:341 msgid "Configuration Error" msgstr "Configuration Error" @@ -10769,8 +10913,8 @@ msgstr "Revert to the Browser Uploader by clicking the link bel msgid "User deleted." msgstr "User deleted." -#: wp-admin/includes/class-core-upgrader.php:40 wp-admin/includes/file.php:1723 -#: wp-admin/includes/file.php:1905 +#: wp-admin/includes/class-core-upgrader.php:40 wp-admin/includes/file.php:1741 +#: wp-admin/includes/file.php:1923 msgid "Could not copy files. You may have run out of disk space." msgstr "Could not copy files. You may have run out of disk space." @@ -10786,7 +10930,7 @@ msgstr "Search for themes by keyword." msgid "In all likelihood, these items were supplied to you by your web host. If you do not have this information, then you will need to contact them before you can continue. If you are ready…" msgstr "In all likelihood, these items were supplied to you by your web host. If you do not have this information, then you will need to contact them before you can continue. If you are ready…" -#: wp-admin/theme-editor.php:269 +#: wp-admin/theme-editor.php:274 msgid "This theme is broken." msgstr "This theme is broken." @@ -10804,9 +10948,9 @@ msgid "Customize “%s”" msgstr "Customise “%s”" #: wp-admin/install.php:161 wp-admin/user-edit.php:498 -#: wp-admin/user-edit.php:546 wp-admin/user-new.php:538 -#: wp-admin/user-new.php:542 wp-admin/user-new.php:589 -#: wp-admin/user-new.php:609 +#: wp-admin/user-edit.php:546 wp-admin/user-new.php:543 +#: wp-admin/user-new.php:547 wp-admin/user-new.php:594 +#: wp-admin/user-new.php:614 msgid "(required)" msgstr "(required)" @@ -10828,7 +10972,7 @@ msgstr "https://en-gb.wordpress.org/about/" #. translators: Hidden accessibility text. #: wp-admin/includes/class-wp-list-table.php:1427 -#: wp-admin/includes/nav-menu.php:811 wp-admin/includes/nav-menu.php:1106 +#: wp-admin/includes/nav-menu.php:812 wp-admin/includes/nav-menu.php:1107 #: wp-admin/update-core.php:501 wp-admin/update-core.php:625 #: wp-admin/update-core.php:677 wp-admin/update-core.php:801 msgid "Select All" @@ -10847,7 +10991,7 @@ msgstr "Privately Published" msgid "Save as Pending" msgstr "Save as Pending" -#: wp-admin/includes/media.php:1418 wp-admin/includes/media.php:3006 +#: wp-admin/includes/media.php:1418 wp-admin/includes/media.php:3010 msgid "Enter a link URL or click above for presets." msgstr "Enter a link URL or click above for presets." @@ -10859,13 +11003,13 @@ msgstr "Link URL" msgid "No comments yet." msgstr "No comments yet." -#: wp-admin/includes/class-wp-theme-install-list-table.php:523 +#: wp-admin/includes/class-wp-theme-install-list-table.php:520 #: wp-admin/includes/class-wp-themes-list-table.php:281 #: wp-admin/includes/plugin-install.php:660 msgid "Version:" msgstr "Version:" -#: wp-admin/includes/class-wp-theme-install-list-table.php:406 +#: wp-admin/includes/class-wp-theme-install-list-table.php:404 #: wp-admin/theme-install.php:70 wp-admin/theme-install.php:601 msgid "Collapse Sidebar" msgstr "Collapse Sidebar" @@ -10881,7 +11025,7 @@ msgid "All" msgstr "All" #. translators: %s: Number of words. -#: wp-admin/edit-form-advanced.php:639 +#: wp-admin/edit-form-advanced.php:638 msgid "Word count: %s" msgstr "Word count: %s" @@ -10948,14 +11092,11 @@ msgstr "There is a new version of %1$s available. View ver msgid "By %s." msgstr "By %s." -#: wp-admin/includes/meta-boxes.php:898 wp-admin/includes/template.php:508 +#: wp-admin/includes/meta-boxes.php:898 wp-admin/includes/template.php:464 +#: wp-admin/includes/template.php:508 msgid "Add Comment" msgstr "Add Comment" -#: wp-admin/includes/template.php:464 -msgid "Add New Comment" -msgstr "Add New Comment" - #. Author URI of the plugin #: hello.php msgid "http://ma.tt/" @@ -10983,7 +11124,7 @@ msgstr "Welcome — Shows links for some of the most common msgid "There is a new version of %1$s available. View version %4$s details. Automatic update is unavailable for this theme." msgstr "There is a new version of %1$s available. View version %4$s details. Automatic update is unavailable for this theme." -#: wp-admin/install.php:108 wp-admin/install.php:368 +#: wp-admin/install.php:108 wp-admin/install.php:392 msgctxt "Howdy" msgid "Welcome" msgstr "Welcome" @@ -11059,22 +11200,22 @@ msgstr "MB (Leave blank for network default)" #. translators: New admin email address notification email subject. %s: Site #. title. -#: wp-admin/includes/misc.php:1543 +#: wp-admin/includes/misc.php:1520 msgid "[%s] New Admin Email Address" msgstr "[%s] New Admin Email Address" -#: wp-admin/includes/class-wp-debug-data.php:595 -#: wp-admin/includes/class-wp-debug-data.php:1133 -#: wp-admin/includes/class-wp-debug-data.php:1244 -#: wp-admin/includes/class-wp-debug-data.php:1403 -#: wp-admin/includes/class-wp-debug-data.php:1412 -#: wp-admin/includes/class-wp-debug-data.php:1421 -#: wp-admin/includes/class-wp-debug-data.php:1430 -#: wp-admin/includes/class-wp-debug-data.php:1489 -#: wp-admin/includes/class-wp-debug-data.php:1494 -#: wp-admin/includes/class-wp-debug-data.php:1504 -#: wp-admin/includes/class-wp-debug-data.php:1509 -#: wp-admin/includes/class-wp-debug-data.php:1534 +#: wp-admin/includes/class-wp-debug-data.php:623 +#: wp-admin/includes/class-wp-debug-data.php:1161 +#: wp-admin/includes/class-wp-debug-data.php:1272 +#: wp-admin/includes/class-wp-debug-data.php:1431 +#: wp-admin/includes/class-wp-debug-data.php:1440 +#: wp-admin/includes/class-wp-debug-data.php:1449 +#: wp-admin/includes/class-wp-debug-data.php:1458 +#: wp-admin/includes/class-wp-debug-data.php:1517 +#: wp-admin/includes/class-wp-debug-data.php:1522 +#: wp-admin/includes/class-wp-debug-data.php:1532 +#: wp-admin/includes/class-wp-debug-data.php:1537 +#: wp-admin/includes/class-wp-debug-data.php:1562 msgid "Disabled" msgstr "Disabled" @@ -11135,7 +11276,7 @@ msgstr "Let’s go!" msgid "Table prefix (if you want to run more than one WordPress in a single database)" msgstr "Table prefix (if you want to run more than one WordPress in a single database)" -#: wp-admin/includes/class-wp-debug-data.php:1600 wp-admin/setup-config.php:175 +#: wp-admin/includes/class-wp-debug-data.php:1628 wp-admin/setup-config.php:175 msgid "Database host" msgstr "Database host" @@ -11143,11 +11284,11 @@ msgstr "Database host" msgid "Database password" msgstr "Database password" -#: wp-admin/includes/class-wp-debug-data.php:1595 wp-admin/setup-config.php:173 +#: wp-admin/includes/class-wp-debug-data.php:1623 wp-admin/setup-config.php:173 msgid "Database username" msgstr "Database username" -#: wp-admin/includes/class-wp-debug-data.php:1605 wp-admin/setup-config.php:172 +#: wp-admin/includes/class-wp-debug-data.php:1633 wp-admin/setup-config.php:172 msgid "Database name" msgstr "Database name" @@ -11222,7 +11363,7 @@ msgstr "You can export a file of your site’s content in order to import it msgid "Failed to repair the %1$s table. Error: %2$s" msgstr "Failed to repair the %1$s table. Error: %2$s" -#: wp-admin/user-new.php:276 +#: wp-admin/user-new.php:281 msgid "New users will receive an email letting them know they’ve been added as a user for your site. This email will also contain their password. Check the box if you do not want the user to receive a welcome email." msgstr "New users will receive an email letting them know they’ve been added as a user for your site. This email will also contain their password. Check the box if you do not want the user to receive a welcome email." @@ -11243,7 +11384,7 @@ msgid "In previous versions of WordPress, all importers were built-in. They have msgstr "In previous versions of WordPress, all importers were built-in. They have been turned into plugins since most people only use them once or infrequently." #. translators: %s: URL to view the autosave. -#: wp-admin/edit-form-advanced.php:253 +#: wp-admin/edit-form-advanced.php:246 msgid "There is an autosave of this post that is more recent than the version below. View the autosave" msgstr "There is an autosave of this post that is more recent than the version below. View the autosave" @@ -11274,11 +11415,11 @@ msgstr "Repairs complete. Please remove the following line from wp-config.php to msgid "The %1$s table is not okay. It is reporting the following error: %2$s. WordPress will attempt to repair this table…" msgstr "The %1$s table is not okay. It is reporting the following error: %2$s. WordPress will attempt to repair this table…" -#: wp-admin/user-new.php:449 +#: wp-admin/user-new.php:454 msgid "Enter the email address or username of an existing user on this network to invite them to this site. That person will be sent an email asking them to confirm the invite." msgstr "Enter the email address or username of an existing user on this network to invite them to this site. That person will be sent an email asking them to confirm the invite." -#: wp-admin/user-new.php:445 +#: wp-admin/user-new.php:450 msgid "Enter the email address of an existing user on this network to invite them to this site. That person will be sent an email asking them to confirm the invite." msgstr "Enter the email address of an existing user on this network to invite them to this site. That person will be sent an email asking them to confirm the invite." @@ -11286,14 +11427,15 @@ msgstr "Enter the email address of an existing user on this network to invite th msgid "Show Toolbar when viewing site" msgstr "Show toolbar when viewing site" +#. translators: %s: HelpHub URL. #. translators: %s: Documentation URL. -#: wp-admin/about.php:327 +#: wp-admin/about.php:76 wp-admin/about.php:368 msgid "For more information, see the release notes." msgstr "For more information, see the release notes." #. translators: 1: WordPress version number, 2: Plural number of bugs. More #. than one security issue. -#: wp-admin/about.php:321 +#: wp-admin/about.php:362 msgid "Version %1$s addressed some security issues and fixed %2$s bug." msgid_plural "Version %1$s addressed some security issues and fixed %2$s bugs." msgstr[0] "Version %1$s addressed some security issues and fixed %2$s bug." @@ -11301,37 +11443,37 @@ msgstr[1] "Version %1$s addressed some security issues and fixe #. translators: 1: WordPress version number, 2: Plural number of bugs. Singular #. security issue. -#: wp-admin/about.php:315 +#: wp-admin/about.php:356 msgid "Version %1$s addressed a security issue and fixed %2$s bug." msgid_plural "Version %1$s addressed a security issue and fixed %2$s bugs." msgstr[0] "Version %1$s addressed a security issue and fixed %2$s bug." msgstr[1] "Version %1$s addressed a security issue and fixed %2$s bugs." #. translators: 1: WordPress version number, 2: Plural number of bugs. -#: wp-admin/about.php:309 +#: wp-admin/about.php:64 wp-admin/about.php:350 msgid "Version %1$s addressed %2$s bug." msgid_plural "Version %1$s addressed %2$s bugs." msgstr[0] "Version %1$s addressed %2$s bug." msgstr[1] "Version %1$s addressed %2$s bugs." #. translators: %s: WordPress version number. -#: wp-admin/about.php:306 +#: wp-admin/about.php:347 msgid "Version %s addressed some security issues." msgstr "Version %s addressed some security issues." -#: wp-admin/about.php:300 +#: wp-admin/about.php:59 wp-admin/about.php:341 msgid "Maintenance and Security Release" msgstr "Maintenance and Security Release" -#: wp-admin/about.php:297 +#: wp-admin/about.php:338 msgid "Security Release" msgstr "Security Release" -#: wp-admin/about.php:294 +#: wp-admin/about.php:335 msgid "Maintenance Release" msgstr "Maintenance Release" -#: wp-admin/about.php:49 wp-admin/contribute.php:34 wp-admin/credits.php:37 +#: wp-admin/about.php:50 wp-admin/contribute.php:34 wp-admin/credits.php:37 #: wp-admin/freedoms.php:40 wp-admin/privacy.php:34 msgid "What’s New" msgstr "What’s New" @@ -11341,7 +11483,7 @@ msgid "This screen allows you to choose your permalink structure. You can choose msgstr "This screen allows you to choose your permalink structure. You can choose from common settings or create custom URL structures." #. translators: 1: WordPress version, 2: URL to About screen. -#: wp-admin/includes/update-core.php:1684 wp-admin/update-core.php:931 +#: wp-admin/includes/update-core.php:1710 wp-admin/update-core.php:931 msgid "Welcome to WordPress %1$s. Learn more." msgstr "Welcome to WordPress %1$s. Learn more." @@ -11349,11 +11491,11 @@ msgstr "Welcome to WordPress %1$s. Learn more." msgid "You can upload media files here without creating a post first. This allows you to upload files to use with posts and pages later and/or to get a web link for a particular file that you can share. There are three options for uploading files:" msgstr "You can upload media files here without creating a post first. This allows you to upload files to use with posts and pages later and/or to get a web link for a particular file that you can share. There are three options for uploading files:" -#: wp-admin/edit-tags.php:296 +#: wp-admin/edit-tags.php:299 msgid "Adding Tags" msgstr "Adding Tags" -#: wp-admin/edit-tags.php:296 +#: wp-admin/edit-tags.php:299 msgid "Adding Categories" msgstr "Adding Categories" @@ -11415,29 +11557,29 @@ msgstr "Adding Plugins" msgid "Adding Themes" msgstr "Adding Themes" -#: wp-admin/user-new.php:299 +#: wp-admin/user-new.php:304 msgid "Subscribers can read comments/comment/receive newsletters, etc. but cannot create regular site content." msgstr "Subscribers can read comments/comment/receive newsletters, etc. but cannot create regular site content." -#: wp-admin/user-new.php:301 +#: wp-admin/user-new.php:306 msgid "Authors can publish and manage their own posts, and are able to upload files." msgstr "Authors can publish and manage their own posts, and are able to upload files." -#: wp-admin/user-new.php:297 +#: wp-admin/user-new.php:302 msgid "Here is a basic overview of the different user roles and the permissions associated with each one:" msgstr "Here is a basic overview of the different user roles and the permissions associated with each one:" -#: wp-admin/user-new.php:296 +#: wp-admin/user-new.php:301 msgid "User Roles" msgstr "User Roles" -#: wp-admin/user-new.php:283 -msgid "Remember to click the Add New User button at the bottom of this screen when you are finished." -msgstr "Remember to click the Add New User button at the bottom of this screen when you are finished." +#: wp-admin/user-new.php:288 +msgid "Remember to click the Add User button at the bottom of this screen when you are finished." +msgstr "Remember to click the Add User button at the bottom of this screen when you are finished." -#: wp-admin/user-new.php:272 -msgid "To add a new user to your site, fill in the form on this screen and click the Add New User button at the bottom." -msgstr "To add a new user to your site, fill in the form on this screen and click the Add New User button at the bottom." +#: wp-admin/user-new.php:277 +msgid "To add a new user to your site, fill in the form on this screen and click the Add User button at the bottom." +msgstr "To add a new user to your site, fill in the form on this screen and click the Add User button at the bottom." #: wp-admin/options-permalink.php:53 msgid "Custom Structures" @@ -11495,11 +11637,11 @@ msgstr "Clicking Select Files opens a navigation window showing msgid "Drag and drop your files into the area below. Multiple files are allowed." msgstr "Drag and drop your files into the area below. Multiple files are allowed." -#: wp-admin/edit-tags.php:256 +#: wp-admin/edit-tags.php:259 msgid "You can assign keywords to your posts using tags. Unlike categories, tags have no hierarchy, meaning there is no relationship from one tag to another." msgstr "You can assign keywords to your posts using tags. Unlike categories, tags have no hierarchy, meaning there is no relationship from one tag to another." -#: wp-admin/edit-tags.php:254 +#: wp-admin/edit-tags.php:257 msgid "You can create groups of links by using Link Categories. Link Category names must be unique and Link Categories are separate from the categories you use for posts." msgstr "You can create groups of links by using Link Categories. Link Category names must be unique and Link Categories are separate from the categories you use for posts." @@ -11527,7 +11669,7 @@ msgstr "You can also perform the same types of actions, including narrowing the msgid "Managing pages is very similar to managing posts, and the screens can be customized in the same way." msgstr "Managing pages is very similar to managing posts, and the screens can be customised in the same way." -#: wp-admin/edit-form-advanced.php:323 wp-admin/edit.php:311 +#: wp-admin/edit-form-advanced.php:316 wp-admin/edit.php:311 msgid "Pages are similar to posts in that they have a title, body text, and associated metadata, but they are different in that they are not part of the chronological blog stream, kind of like permanent posts. Pages are not categorized or tagged, but can have a hierarchy. You can nest pages under other pages by making one the “Parent” of the other, creating a group of pages." msgstr "Pages are similar to posts in that they have a title, body text, and associated metadata, but they are different in that they are not part of the chronological blog stream, kind of like permanent posts. Pages are not categorised or tagged, but can have a hierarchy. You can nest pages under other pages by making one the “Parent” of the other, creating a group of pages." @@ -11596,20 +11738,15 @@ msgstr "Quick Edit provides inline access to the metadata of yo msgid "Edit takes you to the editing screen for that post. You can also reach that screen by clicking on the post title." msgstr "Edit takes you to the editing screen for that post. You can also reach that screen by clicking on the post title." -#: wp-admin/user-new.php:275 +#: wp-admin/user-new.php:280 msgid "Because this is a multisite installation, you may add accounts that already exist on the Network by specifying a username or email, and defining a role. For more options, such as specifying a password, you have to be a Network Administrator and use the hover link under an existing user’s name to Edit the user profile under Network Admin > All Users." msgstr "Because this is a multisite installation, you may add accounts that already exist on the Network by specifying a username or email, and defining a role. For more options, such as specifying a password, you have to be a Network Administrator and use the hover link under an existing user’s name to Edit the user profile under Network Admin > All Users." -#. translators: %s: Version number. -#: wp-admin/about.php:62 -msgid "Welcome to WordPress %s" -msgstr "Welcome to WordPress %s" - -#: wp-admin/about.php:281 +#: wp-admin/about.php:322 msgid "Go to Dashboard → Home" msgstr "Go to Dashboard → Home" -#: wp-admin/about.php:274 +#: wp-admin/about.php:315 msgid "Go to Dashboard → Updates" msgstr "Go to Dashboard → Updates" @@ -11618,7 +11755,7 @@ msgid "Profile updated." msgstr "Profile updated." #. translators: 1: Site title, 2: Site URL, 3: User role, 4: Activation URL. -#: wp-admin/user-new.php:124 +#: wp-admin/user-new.php:127 msgid "" "Hi,\n" "\n" @@ -11636,7 +11773,7 @@ msgstr "" "Please click the following link to confirm the invite:\n" "%4$s" -#: wp-admin/credits.php:136 +#: wp-admin/credits.php:138 msgid "Core Developer" msgstr "Core Developer" @@ -11656,7 +11793,7 @@ msgstr "The package could not be installed." msgid "Attachment Post URL" msgstr "Attachment Post URL" -#: wp-admin/menu.php:80 +#: wp-admin/menu.php:85 msgctxt "admin menu" msgid "All Links" msgstr "All Links" @@ -11711,19 +11848,19 @@ msgid "Update %2$s or learn h msgstr "Update %2$s or learn how to browse happy" #. translators: 1: Link start tag, 2: Link end tag, 3: Width, 4: Height. -#: wp-admin/includes/media.php:3094 +#: wp-admin/includes/media.php:3098 msgid "Scale images to match the large size selected in %1$simage options%2$s (%3$d × %4$d)." msgstr "Scale images to match the large size selected in %1$simage options%2$s (%3$d × %4$d)." -#: wp-admin/includes/media.php:2954 +#: wp-admin/includes/media.php:2958 msgid "Audio, Video, or Other File" msgstr "Audio, Video, or Other File" -#: wp-admin/includes/media.php:2423 +#: wp-admin/includes/media.php:2428 msgid "Insert media from another website" msgstr "Insert media from another website" -#: wp-admin/includes/file.php:2489 +#: wp-admin/includes/file.php:2507 msgid "Error: Could not connect to the server. Please verify the settings are correct." msgstr "Error: Could not connect to the server. Please verify the settings are correct." @@ -11739,50 +11876,22 @@ msgstr "You can use the following controls to arrange your Dashboard screen to s msgid "The left-hand navigation menu provides links to all of the WordPress administration screens, with submenu items displayed on hover. You can minimize this menu to a narrow icon strip by clicking on the Collapse Menu arrow at the bottom." msgstr "The left-hand navigation menu provides links to all of the WordPress administration screens, with submenu items displayed on hover. You can minimise this menu to a narrow icon strip by clicking on the Collapse Menu arrow at the bottom." -#: wp-admin/comment.php:63 wp-admin/edit-comments.php:208 -#: wp-admin/edit-form-advanced.php:344 wp-admin/edit-link-form.php:66 -#: wp-admin/edit-tags.php:268 wp-admin/edit.php:252 wp-admin/edit.php:309 -#: wp-admin/erase-personal-data.php:23 wp-admin/export-personal-data.php:23 -#: wp-admin/export.php:51 wp-admin/import.php:24 -#: wp-admin/includes/class-custom-background.php:99 -#: wp-admin/includes/class-custom-image-header.php:108 -#: wp-admin/includes/class-wp-screen.php:856 wp-admin/includes/ms.php:1149 -#: wp-admin/index.php:44 wp-admin/link-manager.php:57 wp-admin/media-new.php:49 -#: wp-admin/my-sites.php:44 wp-admin/nav-menus.php:722 -#: wp-admin/nav-menus.php:763 wp-admin/options-discussion.php:24 -#: wp-admin/options-general.php:53 wp-admin/options-media.php:34 -#: wp-admin/options-permalink.php:23 wp-admin/options-privacy.php:38 -#: wp-admin/options-reading.php:25 wp-admin/options-writing.php:23 -#: wp-admin/plugin-editor.php:133 wp-admin/plugin-install.php:96 -#: wp-admin/plugins.php:563 wp-admin/revision.php:153 -#: wp-admin/site-health.php:80 wp-admin/theme-editor.php:28 -#: wp-admin/theme-install.php:123 wp-admin/themes.php:143 -#: wp-admin/update-core.php:996 wp-admin/upload.php:178 wp-admin/upload.php:368 -#: wp-admin/user-edit.php:71 wp-admin/user-new.php:288 wp-admin/users.php:34 -#: wp-admin/widgets-form.php:43 wp-admin/network/index.php:34 -#: wp-admin/network/settings.php:49 wp-admin/network/site-new.php:23 -#: wp-admin/network/sites.php:29 wp-admin/network/themes.php:312 -#: wp-admin/network/upgrade.php:22 wp-admin/network/user-new.php:20 -#: wp-admin/network/users.php:229 -msgid "Overview" -msgstr "Overview" - #. translators: %s: Number of pending updates. #. translators: %s: Number of available updates. -#: wp-admin/menu.php:49 wp-admin/network/menu.php:30 +#: wp-admin/menu.php:54 wp-admin/network/menu.php:35 msgid "Updates %s" msgstr "Updates %s" -#: wp-admin/menu.php:297 wp-admin/network/menu.php:105 +#: wp-admin/menu.php:308 wp-admin/network/menu.php:110 msgid "Installed Plugins" msgstr "Installed Plugins" #. translators: %s: Number of available plugin updates. -#: wp-admin/menu.php:295 wp-admin/network/menu.php:88 +#: wp-admin/menu.php:306 wp-admin/network/menu.php:93 msgid "Plugins %s" msgstr "Plugins %s" -#: wp-admin/menu.php:319 wp-admin/network/menu.php:56 +#: wp-admin/menu.php:330 wp-admin/network/menu.php:61 msgid "All Users" msgstr "All Users" @@ -11791,14 +11900,14 @@ msgid "Confirm Deletion" msgstr "Confirm Deletion" #: wp-admin/includes/class-wp-users-list-table.php:376 -#: wp-admin/user-edit.php:451 wp-admin/user-new.php:473 -#: wp-admin/user-new.php:634 wp-admin/network/site-users.php:325 -#: wp-admin/network/site-users.php:363 +#: wp-admin/user-edit.php:451 wp-admin/user-new.php:478 +#: wp-admin/user-new.php:639 wp-admin/network/site-users.php:325 +#: wp-admin/network/site-users.php:366 msgid "Role" msgstr "Role" -#: wp-admin/user-edit.php:271 wp-admin/user-new.php:388 -#: wp-admin/user-new.php:442 wp-admin/user-new.php:503 wp-admin/users.php:787 +#: wp-admin/user-edit.php:271 wp-admin/user-new.php:393 +#: wp-admin/user-new.php:447 wp-admin/user-new.php:508 wp-admin/users.php:787 #: wp-admin/network/site-users.php:316 msgid "Add Existing User" msgstr "Add Existing User" @@ -11819,22 +11928,12 @@ msgid "Changed roles." msgstr "Changed roles." #: wp-admin/comment.php:175 wp-admin/plugins.php:346 wp-admin/plugins.php:360 -#: wp-admin/theme-editor.php:335 wp-admin/includes/network.php:473 +#: wp-admin/theme-editor.php:340 wp-admin/includes/network.php:473 #: wp-admin/network/themes.php:140 wp-admin/network/themes.php:151 msgid "Caution:" msgstr "Caution:" -#: wp-admin/menu.php:321 wp-admin/menu.php:323 wp-admin/menu.php:331 -#: wp-admin/menu.php:333 wp-admin/user-edit.php:269 wp-admin/user-new.php:264 -#: wp-admin/user-new.php:386 wp-admin/user-new.php:510 -#: wp-admin/user-new.php:662 wp-admin/users.php:781 -#: wp-admin/network/menu.php:57 wp-admin/network/site-users.php:350 -#: wp-admin/network/site-users.php:377 wp-admin/network/user-new.php:100 -#: wp-admin/network/user-new.php:107 wp-admin/network/users.php:292 -msgid "Add New User" -msgstr "Add New User" - -#: wp-admin/user-new.php:377 wp-admin/network/site-users.php:243 +#: wp-admin/user-new.php:382 wp-admin/network/site-users.php:243 #: wp-admin/network/user-new.php:91 wp-admin/network/users.php:272 msgid "User added." msgstr "User added." @@ -11852,13 +11951,13 @@ msgstr "Super Admin" #. translators: %s: Theme version. #: wp-admin/includes/ajax-actions.php:4641 #: wp-admin/includes/ajax-actions.php:4684 -#: wp-admin/includes/class-wp-debug-data.php:756 -#: wp-admin/includes/class-wp-debug-data.php:932 -#: wp-admin/includes/class-wp-debug-data.php:1319 +#: wp-admin/includes/class-wp-debug-data.php:784 +#: wp-admin/includes/class-wp-debug-data.php:960 +#: wp-admin/includes/class-wp-debug-data.php:1347 #: wp-admin/includes/class-wp-plugins-list-table.php:1172 #: wp-admin/includes/update.php:250 wp-admin/includes/update.php:290 #: wp-admin/index.php:113 -#: wp-admin/includes/class-wp-ms-themes-list-table.php:730 +#: wp-admin/includes/class-wp-ms-themes-list-table.php:736 msgid "Version %s" msgstr "Version %s" @@ -11876,37 +11975,37 @@ msgstr[1] "Update Available (%s)" msgid "Deactivate" msgstr "Deactivate" -#: wp-admin/menu.php:371 wp-admin/ms-delete-site.php:39 +#: wp-admin/menu.php:382 wp-admin/ms-delete-site.php:39 msgid "Delete Site" msgstr "Delete Site" -#: wp-admin/my-sites.php:60 wp-admin/options-head.php:15 +#: wp-admin/my-sites.php:60 wp-admin/options-head.php:20 #: wp-admin/options.php:367 wp-admin/network/settings.php:142 #: wp-admin/network/sites.php:366 msgid "Settings saved." msgstr "Settings saved." #: wp-admin/comment.php:71 wp-admin/edit-comments.php:228 -#: wp-admin/edit-form-advanced.php:318 wp-admin/edit-form-advanced.php:335 -#: wp-admin/edit-form-advanced.php:354 wp-admin/edit-link-form.php:75 -#: wp-admin/edit-tags.php:302 wp-admin/edit.php:300 wp-admin/edit.php:325 +#: wp-admin/edit-form-advanced.php:311 wp-admin/edit-form-advanced.php:328 +#: wp-admin/edit-form-advanced.php:347 wp-admin/edit-link-form.php:75 +#: wp-admin/edit-tags.php:305 wp-admin/edit.php:300 wp-admin/edit.php:325 #: wp-admin/erase-personal-data.php:64 wp-admin/export-personal-data.php:64 #: wp-admin/export.php:58 wp-admin/import.php:31 #: wp-admin/includes/class-custom-background.php:109 #: wp-admin/includes/class-custom-image-header.php:144 #: wp-admin/includes/ms.php:1171 wp-admin/index.php:131 #: wp-admin/link-manager.php:78 wp-admin/media-new.php:60 -#: wp-admin/my-sites.php:51 wp-admin/nav-menus.php:770 +#: wp-admin/my-sites.php:51 wp-admin/nav-menus.php:772 #: wp-admin/options-discussion.php:31 wp-admin/options-general.php:59 #: wp-admin/options-media.php:40 wp-admin/options-permalink.php:59 #: wp-admin/options-privacy.php:46 wp-admin/options-reading.php:52 -#: wp-admin/options-writing.php:52 wp-admin/plugin-editor.php:150 +#: wp-admin/options-writing.php:52 wp-admin/plugin-editor.php:153 #: wp-admin/plugin-install.php:120 wp-admin/plugins.php:619 #: wp-admin/revision.php:158 wp-admin/site-health.php:89 #: wp-admin/theme-editor.php:51 wp-admin/theme-install.php:154 #: wp-admin/themes.php:206 wp-admin/tools.php:55 wp-admin/update-core.php:1052 #: wp-admin/upload.php:198 wp-admin/upload.php:400 wp-admin/user-edit.php:77 -#: wp-admin/user-new.php:309 wp-admin/users.php:81 wp-admin/widgets-form.php:70 +#: wp-admin/user-new.php:314 wp-admin/users.php:81 wp-admin/widgets-form.php:70 #: wp-admin/network.php:67 wp-admin/network.php:80 #: wp-admin/network/index.php:55 wp-admin/network/settings.php:63 #: wp-admin/network/site-new.php:31 wp-admin/network/sites.php:43 @@ -11915,15 +12014,15 @@ msgstr "Settings saved." msgid "For more information:" msgstr "For more information:" -#: wp-admin/edit-form-advanced.php:329 +#: wp-admin/edit-form-advanced.php:322 msgid "About Pages" msgstr "About Pages" -#: wp-admin/edit-form-advanced.php:307 +#: wp-admin/edit-form-advanced.php:300 msgid "Title and Post Editor" msgstr "Title and Post Editor" -#: wp-admin/edit-form-advanced.php:287 +#: wp-admin/edit-form-advanced.php:280 msgid "Customizing This Display" msgstr "Customising This Display" @@ -11952,7 +12051,7 @@ msgid "This importer is not installed. Please install importers from the main site." #: wp-admin/includes/class-wp-debug-data.php:177 -#: wp-admin/options-general.php:326 wp-admin/network/site-new.php:250 +#: wp-admin/options-general.php:325 wp-admin/network/site-new.php:250 msgid "Site Language" msgstr "Site Language" @@ -12008,11 +12107,11 @@ msgstr "It looks like you're using an old version of %s. For the best WordPress msgid "It looks like you're using an insecure version of %s. Using an outdated browser makes your computer unsafe. For the best WordPress experience, please update your browser." msgstr "It looks like you're using an insecure version of %s. Using an outdated browser makes your computer unsafe. For the best WordPress experience, please update your browser." -#: wp-admin/includes/nav-menu.php:1303 +#: wp-admin/includes/nav-menu.php:1304 msgid "There are some invalid menu items. Please check or delete them." msgstr "There are some invalid menu items. Please check or delete them." -#: wp-admin/edit-tag-form.php:150 wp-admin/edit-tags.php:461 +#: wp-admin/edit-tag-form.php:150 wp-admin/edit-tags.php:464 #: wp-admin/includes/class-wp-terms-list-table.php:192 #: wp-admin/includes/class-wp-terms-list-table.php:219 #: wp-admin/includes/class-wp-terms-list-table.php:696 @@ -12026,7 +12125,7 @@ msgctxt "meta name" msgid "Name" msgstr "Name" -#: wp-admin/themes.php:664 +#: wp-admin/themes.php:685 msgctxt "theme name" msgid "Name" msgstr "Name" @@ -12038,23 +12137,23 @@ msgstr "You can find additional themes for your site by using the Theme Browser/ #. translators: %s: WordPress Plugin Directory URL. #: wp-admin/plugins.php:569 -msgid "If you would like to see more plugins to choose from, click on the “Add New Plugin” button and you will be able to browse or search for additional plugins from the WordPress Plugin Directory. Plugins in the WordPress Plugin Directory are designed and developed by third parties, and are compatible with the license WordPress uses. Oh, and they are free!" -msgstr "If you would like to see more plugins to choose from, click on the “Add New Plugin” button and you will be able to browse or search for additional plugins from the WordPress Plugin Directory. Plugins in the WordPress Plugin Directory are designed and developed by third parties, and are compatible with the licence WordPress uses. Oh, and they are free!" +msgid "If you would like to see more plugins to choose from, click on the “Add Plugin” button and you will be able to browse or search for additional plugins from the WordPress Plugin Directory. Plugins in the WordPress Plugin Directory are designed and developed by third parties, and are compatible with the license WordPress uses. Oh, and they are free!" +msgstr "If you would like to see more plugins to choose from, click on the “Add Plugin” button and you will be able to browse or search for additional plugins from the WordPress Plugin Directory. Plugins in the WordPress Plugin Directory are designed and developed by third parties, and are compatible with the licence WordPress uses. Oh, and they are free!" #. translators: %s: MAX_FILE_SIZE #: wp-admin/includes/file.php:898 msgid "The uploaded file exceeds the %s directive that was specified in the HTML form." msgstr "The uploaded file exceeds the %s directive that was specified in the HTML form." -#: wp-admin/credits.php:137 +#: wp-admin/credits.php:151 msgid "External Libraries" msgstr "External Libraries" -#: wp-admin/menu.php:374 wp-admin/network.php:53 wp-admin/network/menu.php:112 +#: wp-admin/menu.php:385 wp-admin/network.php:53 wp-admin/network/menu.php:117 msgid "Network Setup" msgstr "Network Setup" -#: wp-admin/menu.php:363 +#: wp-admin/menu.php:374 msgid "Available Tools" msgstr "Available Tools" @@ -12071,10 +12170,10 @@ msgstr "Every plugin and theme in WordPress.org’s directory is 100%% GPL o #. translators: %s: https://wordpressfoundation.org/trademark-policy #: wp-admin/freedoms.php:88 -msgid "WordPress grows when people like you tell their friends about it, and the thousands of businesses and services that are built on and around WordPress share that fact with their users. We are flattered every time someone spreads the good word, just make sure to check out our trademark guidelines first." -msgstr "WordPress grows when people like you tell their friends about it, and the thousands of businesses and services that are built on and around WordPress share that fact with their users. We are flattered every time someone spreads the good word, just make sure to check out our trademark guidelines first." +msgid "WordPress grows when people like you tell their friends about it, and the thousands of businesses and services that are built on and around WordPress share that fact with their users. The WordPress community is flattered every time someone spreads the good word, just make sure to check out the WordPress Foundation trademark guidelines first." +msgstr "WordPress grows when people like you tell their friends about it, and the thousands of businesses and services that are built on and around WordPress share that fact with their users. The WordPress community is flattered every time someone spreads the good word, just make sure to check out the WordPress Foundation trademark guidelines first." -#: wp-admin/menu.php:107 +#: wp-admin/menu.php:112 msgid "All Comments" msgstr "All Comments" @@ -12095,7 +12194,7 @@ msgstr "Core Contributors to WordPress %s" msgid "Project Leaders" msgstr "Project Leaders" -#: wp-admin/about.php:50 wp-admin/contribute.php:35 wp-admin/credits.php:14 +#: wp-admin/about.php:51 wp-admin/contribute.php:35 wp-admin/credits.php:14 #: wp-admin/credits.php:38 wp-admin/freedoms.php:41 wp-admin/privacy.php:35 msgid "Credits" msgstr "Credits" @@ -12113,7 +12212,7 @@ msgstr "Your browser is out of date!" msgid "You are using an insecure browser!" msgstr "You are using an insecure browser!" -#: wp-admin/about.php:51 wp-admin/contribute.php:36 wp-admin/credits.php:39 +#: wp-admin/about.php:52 wp-admin/contribute.php:36 wp-admin/credits.php:39 #: wp-admin/freedoms.php:19 wp-admin/freedoms.php:42 wp-admin/privacy.php:36 msgid "Freedoms" msgstr "Freedoms" @@ -12130,9 +12229,9 @@ msgstr "If you do not want to upload your own image, you can use one of these co msgid "You can choose one of your previously uploaded headers, or show a random one." msgstr "You can choose one of your previously uploaded headers, or show a random one." -#: wp-admin/menu-header.php:283 -msgid "Collapse menu" -msgstr "Collapse menu" +#: wp-admin/menu-header.php:287 +msgid "Collapse Menu" +msgstr "Collapse Menu" #: wp-admin/includes/class-custom-image-header.php:699 msgid "Uploaded Images" @@ -12163,7 +12262,7 @@ msgstr "This plugin may be active on other sites in the network." msgid "Default Post Format" msgstr "Default Post Format" -#: wp-admin/plugin-editor.php:145 wp-admin/theme-editor.php:46 +#: wp-admin/plugin-editor.php:148 wp-admin/theme-editor.php:46 msgid "Any edits to files from this screen will be reflected on all sites in the network." msgstr "Any edits to files from this screen will be reflected on all sites in the network." @@ -12171,7 +12270,7 @@ msgstr "Any edits to files from this screen will be reflected on all sites in th msgid "This screen lists all the existing users for your site. Each user has one of five defined roles as set by the site admin: Site Administrator, Editor, Author, Contributor, or Subscriber. Users with roles other than Administrator will see fewer options in the dashboard navigation when they are logged in, based on their role." msgstr "This screen lists all the existing users for your site. Each user has one of five defined roles as set by the site admin: Site Administrator, Editor, Author, Contributor, or Subscriber. Users with roles other than Administrator will see fewer options in the dashboard navigation when they are logged in, based on their role." -#: wp-admin/plugin-editor.php:144 +#: wp-admin/plugin-editor.php:147 msgid "If you want to make changes but do not want them to be overwritten when the plugin is updated, you may be ready to think about writing your own plugin. For information on how to edit plugins, write your own from scratch, or just better understand their anatomy, check out the links below." msgstr "If you want to make changes but do not want them to be overwritten when the plugin is updated, you may be ready to think about writing your own plugin. For information on how to edit plugins, write your own from scratch, or just better understand their anatomy, check out the links below." @@ -12180,11 +12279,11 @@ msgid "The boxes on your Dashboard screen are:" msgstr "The boxes on your Dashboard screen are:" #. translators: Default page slug. -#: wp-admin/includes/upgrade.php:345 +#: wp-admin/includes/upgrade.php:354 msgid "sample-page" msgstr "sample-page" -#: wp-admin/includes/upgrade.php:343 +#: wp-admin/includes/upgrade.php:352 msgid "Sample Page" msgstr "Sample Page" @@ -12220,12 +12319,12 @@ msgstr "One or more database tables are unavailable. To allow WordPress to attem msgid "Visual Editor RTL Stylesheet" msgstr "Visual Editor RTL Stylesheet" -#: wp-admin/theme-editor.php:336 +#: wp-admin/theme-editor.php:341 msgid "This is a file in your current parent theme." msgstr "This is a file in your current parent theme." #. translators: %s: Link to edit parent theme. -#: wp-admin/theme-editor.php:285 +#: wp-admin/theme-editor.php:290 msgid "This child theme inherits templates from a parent theme, %s." msgstr "This child theme inherits templates from a parent theme, %s." @@ -12236,31 +12335,31 @@ msgstr "This child theme inherits templates from a parent theme, %s." msgid "Network Enable" msgstr "Network Enable" -#: wp-admin/upgrade.php:154 +#: wp-admin/upgrade.php:173 msgid "Your WordPress database has been successfully updated!" msgstr "Your WordPress database has been successfully updated!" -#: wp-admin/upgrade.php:153 +#: wp-admin/upgrade.php:172 msgid "Update Complete" msgstr "Update Complete" -#: wp-admin/upgrade.php:143 +#: wp-admin/upgrade.php:162 msgid "Update WordPress Database" msgstr "Update WordPress Database" -#: wp-admin/upgrade.php:142 wp-admin/network/upgrade.php:144 +#: wp-admin/upgrade.php:161 wp-admin/network/upgrade.php:144 msgid "The database update process may take a little while, so please be patient." msgstr "The database update process may take a little while, so please be patient." -#: wp-admin/upgrade.php:140 wp-admin/network/upgrade.php:140 +#: wp-admin/upgrade.php:159 wp-admin/network/upgrade.php:140 msgid "Database Update Required" msgstr "Database Update Required" -#: wp-admin/upgrade.php:73 +#: wp-admin/upgrade.php:92 msgid "No Update Required" msgstr "No Update Required" -#: wp-admin/upgrade.php:65 +#: wp-admin/upgrade.php:84 msgid "WordPress › Update" msgstr "WordPress › Update" @@ -12342,11 +12441,11 @@ msgstr[0] "Mine (%s)" msgstr[1] "Mine (%s)" #. translators: Admin screen title. %s: Admin screen name. -#: wp-admin/admin-header.php:50 +#: wp-admin/admin-header.php:55 msgid "%s — WordPress" msgstr "%s — WordPress" -#: wp-admin/includes/class-wp-comments-list-table.php:547 +#: wp-admin/includes/class-wp-comments-list-table.php:551 msgctxt "column name" msgid "In Response To" msgstr "In Response To" @@ -12355,23 +12454,23 @@ msgstr "In Response To" msgid "The Available Widgets section contains all the widgets you can choose from. Once you drag a widget into a sidebar, it will open to allow you to configure its settings. When you are happy with the widget settings, click the Save button and the widget will go live on your site. If you click Delete, it will remove the widget." msgstr "The Available Widgets section contains all the widgets you can choose from. Once you drag a widget into a sidebar, it will open to allow you to configure its settings. When you are happy with the widget settings, click the Save button and the widget will go live on your site. If you click Delete, it will remove the widget." -#: wp-admin/edit-form-advanced.php:349 +#: wp-admin/edit-form-advanced.php:342 msgid "Remember to click Update to save metadata entered or changed." msgstr "Remember to click Update to save metadata entered or changed." -#: wp-admin/edit-form-advanced.php:348 +#: wp-admin/edit-form-advanced.php:341 msgid "Note that you crop the image by clicking on it (the Crop icon is already selected) and dragging the cropping frame to select the desired part. Then click Save to retain the cropping." msgstr "Note that you crop the image by clicking on it (the Crop icon is already selected) and dragging the cropping frame to select the desired part. Then click Save to retain the cropping." -#: wp-admin/edit-form-advanced.php:347 +#: wp-admin/edit-form-advanced.php:340 msgid "For images only, you can click on Edit Image under the thumbnail to expand out an inline image editor with icons for cropping, rotating, or flipping the image as well as for undoing and redoing. The boxes on the right give you more options for scaling the image, for cropping it, and for cropping the thumbnail in a different way than you crop the original image. You can click on Help in those boxes to get more information." msgstr "For images only, you can click on Edit Image under the thumbnail to expand out an inline image editor with icons for cropping, rotating, or flipping the image as well as for undoing and redoing. The boxes on the right give you more options for scaling the image, for cropping it, and for cropping the thumbnail in a different way than you crop the original image. You can click on Help in those boxes to get more information." -#: wp-admin/edit-form-advanced.php:346 +#: wp-admin/edit-form-advanced.php:339 msgid "This screen allows you to edit fields for metadata in a file within the media library." msgstr "This screen allows you to edit fields for metadata in a file within the media library." -#: wp-admin/user-new.php:450 +#: wp-admin/user-new.php:455 msgid "Email or Username" msgstr "Email or Username" @@ -12426,7 +12525,7 @@ msgstr "Editor Style" msgid "Sorry, you are not allowed to edit users." msgstr "Sorry, you are not allowed to edit users." -#: wp-admin/includes/file.php:2542 +#: wp-admin/includes/file.php:2560 msgid "To perform the requested action, WordPress needs to access your web server." msgstr "To perform the requested action, WordPress needs to access your web server." @@ -12511,7 +12610,7 @@ msgstr "Go to WordPress Updates page" msgid "Go to Plugins page" msgstr "Go to Plugins page" -#: wp-admin/includes/nav-menu.php:1294 +#: wp-admin/includes/nav-menu.php:1295 msgid "Click Save Menu to make pending menu items public." msgstr "Click Save Menu to make pending menu items public." @@ -12536,19 +12635,19 @@ msgstr "Crop and Publish" msgid "XFN stands for XHTML Friends Network, which is optional. WordPress allows the generation of XFN attributes to show how you are related to the authors/owners of the site to which you are linking." msgstr "XFN stands for XHTML Friends Network, which is optional. WordPress allows the generation of XFN attributes to show how you are related to the authors/owners of the site to which you are linking." -#: wp-admin/includes/file.php:2552 +#: wp-admin/includes/file.php:2570 msgid "FTP Password" msgstr "FTP Password" -#: wp-admin/includes/file.php:2551 +#: wp-admin/includes/file.php:2569 msgid "FTP Username" msgstr "FTP Username" -#: wp-admin/includes/file.php:2548 +#: wp-admin/includes/file.php:2566 msgid "FTP/SSH Password" msgstr "FTP/SSH Password" -#: wp-admin/includes/file.php:2547 +#: wp-admin/includes/file.php:2565 msgid "FTP/SSH Username" msgstr "FTP/SSH Username" @@ -12580,8 +12679,8 @@ msgid "If you want to remove the widget but save its setting for possible future msgstr "If you want to remove the widget but save its setting for possible future use, just drag it into the Inactive Widgets area. You can add them back anytime from there. This is especially helpful when you switch to a theme with fewer or different widget areas." #: wp-admin/users.php:36 -msgid "To add a new user for your site, click the Add New User button at the top of the screen or Add New User in the Users menu section." -msgstr "To add a new user for your site, click the Add New User button at the top of the screen or Add New User in the Users menu section." +msgid "To add a new user for your site, click the Add User button at the top of the screen or Add User in the Users menu section." +msgstr "To add a new user for your site, click the Add User button at the top of the screen or Add User in the Users menu section." #: wp-admin/options-media.php:20 msgid "You can set maximum sizes for images inserted into your written content; you can also insert an image as Full Size." @@ -12591,19 +12690,19 @@ msgstr "You can set maximum sizes for images inserted into your written content; msgid "Most themes show the site title at the top of every page, in the title bar of the browser, and as the identifying name for syndicated feeds. Many themes also show the tagline." msgstr "Most themes show the site title at the top of every page, in the title bar of the browser, and as the identifying name for syndicated feeds. Many themes also show the tagline." -#: wp-admin/edit-form-advanced.php:414 +#: wp-admin/edit-form-advanced.php:407 msgid "Order — Pages are usually ordered alphabetically, but you can choose your own order by entering a number (1 for first, etc.) in this field." msgstr "Order — Pages are usually ordered alphabetically, but you can choose your own order by entering a number (1 for first, etc.) in this field." -#: wp-admin/includes/file.php:2556 +#: wp-admin/includes/file.php:2574 msgid "If you do not remember your credentials, you should contact your web host." msgstr "If you do not remember your credentials, you should contact your web host." -#: wp-admin/includes/file.php:2550 +#: wp-admin/includes/file.php:2568 msgid "Please enter your FTP credentials to proceed." msgstr "Please enter your FTP credentials to proceed." -#: wp-admin/includes/file.php:2546 +#: wp-admin/includes/file.php:2564 msgid "Please enter your FTP or SSH credentials to proceed." msgstr "Please enter your FTP or SSH credentials to proceed." @@ -12616,19 +12715,19 @@ msgstr "Your profile contains information about you (your “account”) msgid "You can Upload a theme manually if you have already downloaded its ZIP archive onto your computer (make sure it is from a trusted and original source). You can also do it the old-fashioned way and copy a downloaded theme’s folder via FTP into your %s directory." msgstr "You can Upload a theme manually if you have already downloaded its zip archive onto your computer (make sure it is from a trusted and original source). You can also do it the old-fashioned way and copy a downloaded theme’s folder via FTP into your %s directory." -#: wp-admin/edit-form-advanced.php:401 +#: wp-admin/edit-form-advanced.php:394 msgid "Send Trackbacks — Trackbacks are a way to notify legacy blog systems that you’ve linked to them. Enter the URL(s) you want to send trackbacks. If you link to other WordPress sites they’ll be notified automatically using pingbacks, and this field is unnecessary." msgstr "Send Trackbacks — Trackbacks are a way to notify legacy blog systems that you’ve linked to them. Enter the URL(s) you want to send trackbacks. If you link to other WordPress sites they’ll be notified automatically using pingbacks, and this field is unnecessary." -#: wp-admin/user-new.php:300 +#: wp-admin/user-new.php:305 msgid "Contributors can write and manage their posts but not publish posts or upload media files." msgstr "Contributors can write and manage their posts but not publish posts or upload media files." -#: wp-admin/user-new.php:303 +#: wp-admin/user-new.php:308 msgid "Administrators have access to all the administration features." msgstr "Administrators have access to all the administration features." -#: wp-admin/plugin-editor.php:135 +#: wp-admin/plugin-editor.php:138 msgid "You can use the plugin file editor to make changes to any of your plugins’ individual PHP files. Be aware that if you make changes, plugins updates will overwrite your customizations." msgstr "You can use the plugin file editor to make changes to any of your plugins’ individual PHP files. Be aware that if you make changes, plugins updates will overwrite your customisations." @@ -12641,12 +12740,12 @@ msgstr "If you delete a link, it will be removed permanently, as Links do not ha msgid "You can add links here to be displayed on your site, usually using Widgets. By default, links to several sites in the WordPress community are included as examples." msgstr "You can add links here to be displayed on your site, usually using Widgets. By default, links to several sites in the WordPress community are included as examples." -#: wp-admin/edit-tags.php:283 +#: wp-admin/edit-tags.php:286 msgid "Slug — The “slug” is the URL-friendly version of the name. It is usually all lowercase and contains only letters, numbers, and hyphens." msgstr "Slug — The “slug” is the URL-friendly version of the name. It is usually all lowercase and contains only letters, numbers, and hyphens." #. translators: %s: URL to Press This bookmarklet. -#: wp-admin/edit-form-advanced.php:315 +#: wp-admin/edit-form-advanced.php:308 msgid "You can also create posts with the Press This bookmarklet." msgstr "You can also create posts with the Press This bookmarklet." @@ -12658,7 +12757,7 @@ msgstr "Do not forget to click on the Save Changes button when you are finished. msgid "You can customize the look of your site without touching any of your theme’s code by using a custom background. Your background can be an image or a color." msgstr "You can customise the look of your site without touching any of your theme’s code by using a custom background. Your background can be an image or a colour." -#: wp-admin/user-new.php:302 +#: wp-admin/user-new.php:307 msgid "Editors can publish posts, manage posts as well as manage other people’s posts, etc." msgstr "Editors can publish posts, manage posts as well as manage other people’s posts, etc." @@ -12730,7 +12829,7 @@ msgstr "An updated version of WordPress is available." msgid "You have the latest version of WordPress." msgstr "You have the latest version of WordPress." -#: wp-admin/plugin-editor.php:178 wp-admin/theme-editor.php:172 +#: wp-admin/plugin-editor.php:181 wp-admin/theme-editor.php:172 msgid "Function Name…" msgstr "Function Name…" @@ -12743,7 +12842,7 @@ msgid "You can add or edit links on this screen by entering information in each msgstr "You can add or edit links on this screen by entering information in each of the boxes. Only the link’s web address and name (the text you want to display on your site as the link) are required fields." #. translators: %s: URL to Categories to Tags Converter tool. -#: wp-admin/edit-tags.php:640 +#: wp-admin/edit-tags.php:643 msgid "Categories can be selectively converted to tags using the category to tag converter." msgstr "Categories can be selectively converted to tags using the category to tag converter." @@ -12755,7 +12854,7 @@ msgstr "This screen lists links to plugins to import data from blogging/content msgid "Once generated, your WXR file can be imported by another WordPress site or by another blogging platform able to access this format." msgstr "Once generated, your WXR file can be imported by another WordPress site or by another blogging platform able to access this format." -#: wp-admin/plugin-editor.php:136 +#: wp-admin/plugin-editor.php:139 msgid "Choose a plugin to edit from the dropdown menu and click the Select button. Click once on any file name to load it in the editor, and make your changes. Do not forget to save your changes (Update File) when you are finished." msgstr "Choose a plugin to edit from the dropdown menu and click the Select button. Click once on any file name to load it in the editor, and make your changes. Do not forget to save your changes (Update File) when you are finished." @@ -12799,11 +12898,11 @@ msgstr "You can use the theme file editor to edit the individual CSS and PHP fil msgid "(no parent)" msgstr "(no parent)" -#: wp-admin/edit-form-advanced.php:413 +#: wp-admin/edit-form-advanced.php:406 msgid "Template — Some themes have custom templates you can use for certain pages that might have additional features or custom layouts. If so, you’ll see them in this dropdown menu." msgstr "Template — Some themes have custom templates you can use for certain pages that might have additional features or custom layouts. If so, you’ll see them in this dropdown menu." -#: wp-admin/edit-form-advanced.php:412 +#: wp-admin/edit-form-advanced.php:405 msgid "Parent — You can arrange your pages in hierarchies. For example, you could have an “About” page that has “Life Story” and “My Dog” pages under it. There are no limits to how many levels you can nest pages." msgstr "Parent — You can arrange your pages in hierarchies. For example, you could have an “About” page that has “Life Story” and “My Dog” pages under it. There are no limits to how many levels you can nest pages." @@ -12811,32 +12910,32 @@ msgstr "Parent — You can arrange your pages in hierarchie msgid "All updates have been completed." msgstr "All updates have been completed." -#: wp-admin/edit-tags.php:291 +#: wp-admin/edit-tags.php:294 msgid "You can change the display of this screen using the Screen Options tab to set how many items are displayed per screen and to display/hide columns in the table." msgstr "You can change the display of this screen using the Screen Options tab to set how many items are displayed per screen and to display/hide columns in the table." -#: wp-admin/edit-tags.php:289 +#: wp-admin/edit-tags.php:292 msgid "Description — The description is not prominent by default; however, some themes may display it." msgstr "Description — The description is not prominent by default; however, some themes may display it." -#: wp-admin/edit-tags.php:281 +#: wp-admin/edit-tags.php:284 msgid "Name — The name is how it appears on your site." msgstr "Name — The name is how it appears on your site." -#: wp-admin/edit-tags.php:277 +#: wp-admin/edit-tags.php:280 msgid "When adding a new tag on this screen, you’ll fill in the following fields:" msgstr "When adding a new tag on this screen, you’ll fill in the following fields:" -#: wp-admin/edit-tags.php:275 +#: wp-admin/edit-tags.php:278 msgid "When adding a new category on this screen, you’ll fill in the following fields:" msgstr "When adding a new category on this screen, you’ll fill in the following fields:" -#: wp-admin/edit-tags.php:262 +#: wp-admin/edit-tags.php:265 msgid "What’s the difference between categories and tags? Normally, tags are ad-hoc keywords that identify important information in your post (names, subjects, etc) that may or may not recur in other posts, while categories are pre-determined sections. If you think of your site like a book, the categories are like the Table of Contents and the tags are like the terms in the index." msgstr "What’s the difference between categories and tags? Normally, tags are ad-hoc keywords that identify important information in your post (names, subjects, etc) that may or may not recur in other posts, while categories are pre-determined sections. If you think of your site like a book, the categories are like the Table of Contents and the tags are like the terms in the index." #. translators: %s: URL to Writing Settings screen. -#: wp-admin/edit-tags.php:250 +#: wp-admin/edit-tags.php:253 msgid "You can use categories to define sections of your site and group related posts. The default category is “Uncategorized” until you change it in your writing settings." msgstr "You can use categories to define sections of your site and group related posts. The default category is “Uncategorised” until you change it in your writing settings." @@ -12880,12 +12979,12 @@ msgstr "This will remove the header image. You will not be able to restore any c msgid "Default Images" msgstr "Default Images" -#: wp-admin/includes/class-wp-comments-list-table.php:806 +#: wp-admin/includes/class-wp-comments-list-table.php:810 #: wp-admin/includes/dashboard.php:785 msgid "Delete this comment permanently" msgstr "Delete this comment permanently" -#: wp-admin/includes/class-wp-comments-list-table.php:796 +#: wp-admin/includes/class-wp-comments-list-table.php:800 msgid "Restore this comment from the Trash" msgstr "Restore this comment from the Bin" @@ -12893,16 +12992,16 @@ msgstr "Restore this comment from the Bin" msgid "Allow comments" msgstr "Allow comments" -#: wp-admin/edit-form-advanced.php:402 +#: wp-admin/edit-form-advanced.php:395 msgid "Discussion — You can turn comments and pings on or off, and if there are comments on the post, you can see them here and moderate them." msgstr "Discussion — You can turn comments and pings on or off, and if there are comments on the post, you can see them here and moderate them." #. translators: %s: Featured image. -#: wp-admin/edit-form-advanced.php:386 +#: wp-admin/edit-form-advanced.php:379 msgid "%s — This allows you to associate an image with your post without inserting it. This is usually useful only if your theme makes use of the image as a post thumbnail on the home page, a custom header, etc." msgstr "%s — This allows you to associate an image with your post without inserting it. This is usually useful only if your theme makes use of the image as a post thumbnail on the home page, a custom header, etc." -#: wp-admin/edit-form-advanced.php:292 +#: wp-admin/edit-form-advanced.php:285 msgid "Title — Enter a title for your post. After you enter a title, you’ll see the permalink below, which you can edit." msgstr "Title — Enter a title for your post. After you enter a title, you’ll see the permalink below, which you can edit." @@ -12926,7 +13025,7 @@ msgstr "You can customise the display of this screen in a number of ways:" msgid "Search installed plugins" msgstr "Search installed plugins" -#: wp-admin/nav-menus.php:834 +#: wp-admin/nav-menus.php:836 msgid "Your theme supports one menu. Select which menu you would like to use." msgstr "Your theme supports %s menu. Select which menu appears in each location." @@ -12938,7 +13037,7 @@ msgstr "Your theme does not support navigation menus or widgets." msgid "Categories and Tags Converter" msgstr "Categories and Tags Converter" -#: wp-admin/includes/nav-menu.php:583 wp-admin/includes/nav-menu.php:606 +#: wp-admin/includes/nav-menu.php:584 wp-admin/includes/nav-menu.php:607 msgid "Most Recent" msgstr "Most Recent" @@ -12956,13 +13055,13 @@ msgctxt "Plugin Installer" msgid "Tag" msgstr "Tag" -#: wp-admin/includes/media.php:2584 +#: wp-admin/includes/media.php:2589 msgctxt "verb" msgid "Clear" msgstr "Clear" #: wp-admin/comment.php:135 -#: wp-admin/includes/class-wp-comments-list-table.php:371 +#: wp-admin/includes/class-wp-comments-list-table.php:375 msgctxt "comment" msgid "Mark as spam" msgstr "Mark as spam" @@ -12977,7 +13076,7 @@ msgstr "Remove Background Image" msgid "Comments on “%s”" msgstr "Comments on “%s”" -#: wp-admin/includes/nav-menu.php:1334 +#: wp-admin/includes/nav-menu.php:1335 msgid "Show advanced menu properties" msgstr "Show advanced menu properties" @@ -12987,21 +13086,21 @@ msgstr "Show advanced menu properties" msgid "You have version %1$s installed. Update to %2$s." msgstr "You have version %1$s installed. Update to %2$s." -#: wp-admin/includes/class-wp-debug-data.php:595 -#: wp-admin/includes/class-wp-debug-data.php:1131 -#: wp-admin/includes/class-wp-debug-data.php:1242 -#: wp-admin/includes/class-wp-debug-data.php:1407 -#: wp-admin/includes/class-wp-debug-data.php:1412 -#: wp-admin/includes/class-wp-debug-data.php:1421 -#: wp-admin/includes/class-wp-debug-data.php:1430 -#: wp-admin/includes/class-wp-debug-data.php:1489 -#: wp-admin/includes/class-wp-debug-data.php:1494 -#: wp-admin/includes/class-wp-debug-data.php:1504 -#: wp-admin/includes/class-wp-debug-data.php:1509 +#: wp-admin/includes/class-wp-debug-data.php:623 +#: wp-admin/includes/class-wp-debug-data.php:1159 +#: wp-admin/includes/class-wp-debug-data.php:1270 +#: wp-admin/includes/class-wp-debug-data.php:1435 +#: wp-admin/includes/class-wp-debug-data.php:1440 +#: wp-admin/includes/class-wp-debug-data.php:1449 +#: wp-admin/includes/class-wp-debug-data.php:1458 +#: wp-admin/includes/class-wp-debug-data.php:1517 +#: wp-admin/includes/class-wp-debug-data.php:1522 +#: wp-admin/includes/class-wp-debug-data.php:1532 +#: wp-admin/includes/class-wp-debug-data.php:1537 msgid "Enabled" msgstr "Enabled" -#: wp-admin/includes/class-wp-comments-list-table.php:787 +#: wp-admin/includes/class-wp-comments-list-table.php:791 msgctxt "comment" msgid "Not Spam" msgstr "Not Spam" @@ -13023,7 +13122,7 @@ msgstr "Remove Users from Site" msgid "— No role for this site —" msgstr "— No role for this site —" -#: wp-admin/includes/upgrade.php:599 +#: wp-admin/includes/upgrade.php:614 msgid "New WordPress Site" msgstr "New WordPress Site" @@ -13031,11 +13130,11 @@ msgstr "New WordPress Site" msgid "My Site" msgstr "My Site" -#: wp-admin/includes/post.php:913 +#: wp-admin/includes/post.php:919 msgid "Sorry, you are not allowed to create posts or drafts on this site." msgstr "Sorry, you are not allowed to create posts or drafts on this site." -#: wp-admin/includes/post.php:911 +#: wp-admin/includes/post.php:917 msgid "Sorry, you are not allowed to create pages on this site." msgstr "Sorry, you are not allowed to create pages on this site." @@ -13055,17 +13154,17 @@ msgstr "Custom site deleted message." msgid "If you have posts or comments in another system, WordPress can import those into this site. To get started, choose a system to import from below:" msgstr "If you have posts or comments in another system, WordPress can import those into this site. To get started, choose a system to import from below:" -#: wp-admin/includes/nav-menu.php:508 wp-admin/includes/nav-menu.php:873 +#: wp-admin/includes/nav-menu.php:509 wp-admin/includes/nav-menu.php:874 msgid "No items." msgstr "No items." #. translators: %s: Asterisk symbol (*). -#: wp-admin/includes/schema.php:1141 +#: wp-admin/includes/schema.php:1146 msgid "To use a subdomain configuration, you must have a wildcard entry in your DNS. This usually means adding a %s hostname record pointing at your web server in your DNS configuration tool." msgstr "To use a subdomain configuration, you must have a wildcard entry in your DNS. This usually means adding a %s hostname record pointing at your web server in your DNS configuration tool." #. translators: %s: Host name. -#: wp-admin/includes/schema.php:1130 +#: wp-admin/includes/schema.php:1135 msgid "The installer attempted to contact a random hostname (%s) on your domain." msgstr "The installer attempted to contact a random hostname (%s) on your domain." @@ -13123,7 +13222,7 @@ msgstr "No thanks, do not remind me again" msgid "Yes, take me to my profile page" msgstr "Yes, take me to my profile page" -#: wp-admin/includes/upgrade.php:111 +#: wp-admin/includes/upgrade.php:120 msgid "Your chosen password." msgstr "Your chosen password." @@ -13153,15 +13252,15 @@ msgstr[1] "%s comments moved to the Bin." msgid "The following themes have new versions available. Check the ones you want to update and then click “Update Themes”." msgstr "The following themes have new versions available. Check the ones you want to update and then click “Update Themes”." -#: wp-admin/user-new.php:360 +#: wp-admin/user-new.php:365 msgid "That user is already a member of this site." msgstr "That user is already a member of this site." -#: wp-admin/user-new.php:351 +#: wp-admin/user-new.php:356 msgid "User has been added to your site." msgstr "User has been added to your site." -#: wp-admin/user-new.php:348 +#: wp-admin/user-new.php:353 msgid "Invitation email sent to user. A confirmation link must be clicked for them to be added to your site." msgstr "Invitation email sent to user. A confirmation link must be clicked for them to be added to your site." @@ -13190,7 +13289,7 @@ msgstr "Author Template" msgid "Visual Editor Stylesheet" msgstr "Visual Editor Stylesheet" -#: wp-admin/edit-form-advanced.php:204 +#: wp-admin/edit-form-advanced.php:197 msgid "Page saved." msgstr "Page saved." @@ -13220,7 +13319,7 @@ msgstr "Important:" #. translators: %s: Theme version. #. translators: %s: WordPress version. #: wp-admin/includes/class-wp-theme-install-list-table.php:321 -#: wp-admin/includes/class-wp-theme-install-list-table.php:480 +#: wp-admin/includes/class-wp-theme-install-list-table.php:478 #: wp-admin/update-core.php:74 msgid "Update to version %s" msgstr "Update to version %s" @@ -13252,11 +13351,11 @@ msgstr "Site visibility" msgid "CSS Classes (optional)" msgstr "CSS Classes (optional)" -#: wp-admin/includes/nav-menu.php:1336 +#: wp-admin/includes/nav-menu.php:1337 msgid "Link Target" msgstr "Link Target" -#: wp-admin/nav-menus.php:1099 wp-admin/nav-menus.php:1236 +#: wp-admin/nav-menus.php:1101 wp-admin/nav-menus.php:1238 msgid "Save Menu" msgstr "Save Menu" @@ -13266,12 +13365,12 @@ msgstr "Save Menu" msgid "Updating Theme %1$s (%2$d/%3$d)" msgstr "Updating Theme %1$s (%2$d/%3$d)" -#: wp-admin/includes/schema.php:1145 +#: wp-admin/includes/schema.php:1150 msgid "You can still use your site but any subdomain you create may not be accessible. If you know your DNS is correct, ignore this message." msgstr "You can still use your site but any subdomain you create may not be accessible. If you know your DNS is correct, ignore this message." #. translators: %s: Error message. -#: wp-admin/includes/schema.php:1135 +#: wp-admin/includes/schema.php:1140 msgid "This resulted in an error message: %s" msgstr "This resulted in an error message: %s" @@ -13295,7 +13394,7 @@ msgstr "You must provide a domain name." msgid "Notice:" msgstr "Notice:" -#: wp-admin/edit-form-advanced.php:573 +#: wp-admin/edit-form-advanced.php:572 msgid "Get Shortlink" msgstr "Get Shortlink" @@ -13310,16 +13409,16 @@ msgstr "The update of %s failed." msgid "Updating Plugin %1$s (%2$d/%3$d)" msgstr "Updating Plugin %1$s (%2$d/%3$d)" -#: wp-admin/includes/upgrade.php:132 +#: wp-admin/includes/upgrade.php:141 msgid "The password you chose during installation." msgstr "The password you chose during installation." -#: wp-admin/includes/upgrade.php:115 +#: wp-admin/includes/upgrade.php:124 msgid "User already exists. Password inherited." msgstr "User already exists. Password inherited." #: wp-admin/includes/class-wp-automatic-updater.php:529 -#: wp-admin/includes/update-core.php:1670 wp-admin/update-core.php:919 +#: wp-admin/includes/update-core.php:1696 wp-admin/update-core.php:919 msgid "WordPress updated successfully." msgstr "WordPress updated successfully." @@ -13336,7 +13435,7 @@ msgstr "Update Plugins" #. translators: 1: URL to WordPress release notes, 2: WordPress version number, #. 3: Minimum required PHP version number, 4: Minimum required MySQL version #. number, 5: Current PHP version number, 6: Current MySQL version number. -#: wp-admin/update-core.php:113 wp-admin/upgrade.php:100 +#: wp-admin/update-core.php:113 wp-admin/upgrade.php:119 msgid "You cannot update because WordPress %2$s requires PHP version %3$s or higher and MySQL version %4$s or higher. You are running PHP version %5$s and MySQL version %6$s." msgstr "You cannot update because WordPress %2$s requires PHP version %3$s or higher and MySQL version %4$s or higher. You are running PHP version %5$s and MySQL version %6$s." @@ -13348,7 +13447,7 @@ msgstr "WordPress Updates" msgid "Edit menu item" msgstr "Edit menu item" -#: wp-admin/about.php:281 +#: wp-admin/about.php:322 msgid "Go to Dashboard" msgstr "Go to Dashboard" @@ -13386,19 +13485,19 @@ msgstr "You are about to remove the following plugin:" msgid "Delete Plugin" msgstr "Delete Plugin" -#: wp-admin/options-general.php:455 +#: wp-admin/options-general.php:454 msgid "This timezone does not observe daylight saving time." msgstr "This timezone does not observe daylight saving time." -#: wp-admin/options-general.php:432 +#: wp-admin/options-general.php:431 msgid "This timezone is currently in daylight saving time." msgstr "This timezone is currently in daylight saving time." -#: wp-admin/options-general.php:268 wp-admin/network/settings.php:170 +#: wp-admin/options-general.php:267 wp-admin/network/settings.php:170 msgid "This address is used for admin purposes. If you change this, an email will be sent to your new address to confirm it. The new address will not become active until confirmed." msgstr "This address is used for admin purposes. If you change this, an email will be sent to your new address to confirm it. The new address will not become active until confirmed." -#: wp-admin/includes/nav-menu.php:591 wp-admin/includes/nav-menu.php:963 +#: wp-admin/includes/nav-menu.php:592 wp-admin/includes/nav-menu.php:964 msgid "View All" msgstr "View All" @@ -13409,7 +13508,7 @@ msgstr "Please enter a valid menu name." #. translators: 1: URL to WordPress release notes, 2: WordPress version number, #. 3: Minimum required PHP version number, 4: Minimum required MySQL version #. number, 5: Current PHP version number, 6: Current MySQL version number. -#: wp-admin/install.php:268 +#: wp-admin/install.php:269 msgid "You cannot install because WordPress %2$s requires PHP version %3$s or higher and MySQL version %4$s or higher. You are running PHP version %5$s and MySQL version %6$s." msgstr "You cannot install because WordPress %2$s requires PHP version %3$s or higher and MySQL version %4$s or higher. You are running PHP version %5$s and MySQL version %6$s." @@ -13490,7 +13589,7 @@ msgstr "Available Widgets" msgid "Error in displaying the widget settings form." msgstr "Error in displaying the widget settings form." -#: wp-admin/includes/misc.php:1365 wp-admin/includes/post.php:2140 +#: wp-admin/includes/misc.php:1365 wp-admin/includes/post.php:2151 #: wp-admin/widgets-form.php:367 msgid "Error while saving." msgstr "Error while saving." @@ -13557,53 +13656,53 @@ msgstr "There are no valid users selected for deletion." msgid "Delete Users" msgstr "Delete Users" -#: wp-admin/user-new.php:481 wp-admin/user-new.php:648 +#: wp-admin/user-new.php:486 wp-admin/user-new.php:653 msgid "Skip Confirmation Email" msgstr "Skip Confirmation Email" -#: wp-admin/user-new.php:345 +#: wp-admin/user-new.php:350 msgid "Invitation email sent to new user. A confirmation link must be clicked before their account is created." msgstr "Invitation email sent to new user. A confirmation link must be clicked before their account is created." #. translators: Joining confirmation notification email subject. %s: Site #. title. -#: wp-admin/user-new.php:137 +#: wp-admin/user-new.php:140 msgid "[%s] Joining Confirmation" msgstr "[%s] Joining Confirmation" -#: wp-admin/user-edit.php:944 +#: wp-admin/user-edit.php:946 msgid "Update User" msgstr "Update User" -#: wp-admin/user-edit.php:944 +#: wp-admin/user-edit.php:946 msgid "Update Profile" msgstr "Update Profile" -#: wp-admin/user-edit.php:912 +#: wp-admin/user-edit.php:914 msgid "Additional Capabilities" msgstr "Additional Capabilities" -#: wp-admin/user-edit.php:698 +#: wp-admin/user-edit.php:700 msgid "Type your new password again." msgstr "Type your new password again." -#: wp-admin/user-edit.php:673 +#: wp-admin/user-edit.php:675 msgid "New Password" msgstr "New Password" -#: wp-admin/user-edit.php:617 +#: wp-admin/user-edit.php:619 msgid "Share a little biographical information to fill out your profile. This may be shown publicly." msgstr "Share a little biographical information to fill out your profile. This may be shown publicly." -#: wp-admin/user-edit.php:615 +#: wp-admin/user-edit.php:617 msgid "Biographical Info" msgstr "Biographical Info" -#: wp-admin/user-edit.php:611 +#: wp-admin/user-edit.php:613 msgid "About the user" msgstr "About the user" -#: wp-admin/user-edit.php:611 +#: wp-admin/user-edit.php:613 msgid "About Yourself" msgstr "About Yourself" @@ -13619,11 +13718,11 @@ msgstr "Display name publicly as" msgid "Nickname" msgstr "Nickname" -#: wp-admin/user-edit.php:493 wp-admin/user-new.php:551 +#: wp-admin/user-edit.php:493 wp-admin/user-new.php:556 msgid "Last Name" msgstr "Last Name" -#: wp-admin/user-edit.php:488 wp-admin/user-new.php:547 +#: wp-admin/user-edit.php:488 wp-admin/user-new.php:552 msgid "First Name" msgstr "First Name" @@ -13660,7 +13759,7 @@ msgstr "Always use https when visiting the admin" msgid "Use https" msgstr "Use https" -#: wp-admin/user-new.php:354 wp-admin/users.php:641 +#: wp-admin/user-new.php:359 wp-admin/users.php:641 #: wp-admin/network/user-new.php:94 msgid "Edit user" msgstr "Edit user" @@ -13681,7 +13780,7 @@ msgstr "Media file permanently deleted." msgid "Sorry, you are not allowed to delete these items." msgstr "Sorry, you are not allowed to delete these items." -#: wp-admin/upgrade.php:74 +#: wp-admin/upgrade.php:93 msgid "Your WordPress database is already up to date!" msgstr "Your WordPress database is already up to date!" @@ -13759,7 +13858,7 @@ msgstr "Bring back this update" msgid "Hide this update" msgstr "Hide this update" -#: wp-admin/themes.php:654 +#: wp-admin/themes.php:675 msgid "Broken Themes" msgstr "Broken Themes" @@ -13776,7 +13875,7 @@ msgstr "" msgid "Theme deleted." msgstr "Theme deleted." -#: wp-admin/theme-editor.php:247 +#: wp-admin/theme-editor.php:252 msgid "Select theme to edit:" msgstr "Select theme to edit:" @@ -13784,7 +13883,7 @@ msgstr "Select theme to edit:" msgid "Edit Themes" msgstr "Edit Themes" -#: wp-admin/includes/theme.php:1056 wp-admin/themes.php:1207 +#: wp-admin/includes/theme.php:1056 wp-admin/themes.php:1249 msgid "Tags:" msgstr "Tags:" @@ -13798,7 +13897,7 @@ msgid "You cannot edit this item because it is in the Trash. Please restore it a msgstr "You cannot edit this item because it is in the Bin. Please restore it and try again." #: wp-admin/edit-tags.php:173 wp-admin/includes/class-wp-screen.php:297 -#: wp-admin/includes/post.php:2146 wp-admin/media-upload.php:47 +#: wp-admin/includes/post.php:2157 wp-admin/media-upload.php:47 #: wp-admin/post.php:20 wp-admin/post.php:47 wp-admin/post.php:139 #: wp-admin/term.php:43 msgid "Sorry, you are not allowed to edit this item." @@ -13890,28 +13989,28 @@ msgctxt "Plugin Installer" msgid "Featured" msgstr "Featured" -#: wp-admin/plugin-editor.php:317 wp-admin/theme-editor.php:351 +#: wp-admin/plugin-editor.php:327 wp-admin/theme-editor.php:356 msgid "Update File" msgstr "Update File" -#: wp-admin/plugin-editor.php:296 wp-admin/theme-editor.php:325 +#: wp-admin/plugin-editor.php:306 wp-admin/theme-editor.php:330 msgid "Documentation:" msgstr "Documentation:" -#: wp-admin/plugin-editor.php:266 +#: wp-admin/plugin-editor.php:276 msgid "Plugin Files" msgstr "Plugin Files" -#: wp-admin/plugin-editor.php:243 +#: wp-admin/plugin-editor.php:253 msgid "Select plugin to edit:" msgstr "Select plugin to edit:" -#: wp-admin/includes/ajax-actions.php:4914 wp-admin/plugin-editor.php:196 -#: wp-admin/theme-editor.php:198 +#: wp-admin/includes/ajax-actions.php:4914 wp-admin/plugin-editor.php:199 +#: wp-admin/theme-editor.php:193 msgid "File edited successfully." msgstr "File edited successfully." -#: wp-admin/includes/file.php:500 wp-admin/plugin-editor.php:125 +#: wp-admin/includes/file.php:500 wp-admin/plugin-editor.php:128 msgid "Files of this type are not editable." msgstr "Files of this type are not editable." @@ -14134,25 +14233,25 @@ msgstr "Week Starts On" msgid "Custom:" msgstr "Custom:" -#: wp-admin/options-general.php:434 +#: wp-admin/options-general.php:433 msgid "This timezone is currently in standard time." msgstr "This time zone is currently in standard time." #: wp-admin/includes/class-wp-debug-data.php:185 -#: wp-admin/options-general.php:384 +#: wp-admin/options-general.php:383 msgid "Timezone" msgstr "Time zone" -#: wp-admin/options-general.php:309 +#: wp-admin/options-general.php:308 msgid "New User Default Role" msgstr "New User Default Role" -#: wp-admin/options-general.php:304 +#: wp-admin/options-general.php:303 msgid "Anyone can register" msgstr "Anyone can register" #. translators: Hidden accessibility text. -#: wp-admin/options-general.php:296 wp-admin/options-general.php:300 +#: wp-admin/options-general.php:295 wp-admin/options-general.php:299 msgid "Membership" msgstr "Membership" @@ -14286,7 +14385,7 @@ msgstr "Comment author must fill out name and email" msgid "Other comment settings" msgstr "Other comment settings" -#: wp-admin/edit-form-advanced.php:407 wp-admin/options-discussion.php:16 +#: wp-admin/edit-form-advanced.php:400 wp-admin/options-discussion.php:16 msgid "Discussion Settings" msgstr "Discussion Settings" @@ -14318,42 +14417,42 @@ msgstr "Removed" msgid "Multisite support is not enabled." msgstr "Multisite support is not enabled." -#: wp-admin/menu.php:383 +#: wp-admin/menu.php:394 msgid "Permalinks" msgstr "Permalinks" -#: wp-admin/about.php:52 wp-admin/contribute.php:37 wp-admin/credits.php:40 -#: wp-admin/freedoms.php:43 wp-admin/menu.php:384 +#: wp-admin/about.php:53 wp-admin/contribute.php:37 wp-admin/credits.php:40 +#: wp-admin/freedoms.php:43 wp-admin/menu.php:395 #: wp-admin/options-privacy.php:22 wp-admin/options-privacy.php:157 #: wp-admin/privacy-policy-guide.php:40 wp-admin/privacy.php:13 #: wp-admin/privacy.php:24 wp-admin/privacy.php:37 msgid "Privacy" msgstr "Privacy" -#: wp-admin/menu.php:380 +#: wp-admin/menu.php:391 msgid "Reading" msgstr "Reading" -#: wp-admin/menu.php:379 +#: wp-admin/menu.php:390 msgid "Writing" msgstr "Writing" -#: wp-admin/menu.php:378 +#: wp-admin/menu.php:389 msgctxt "settings screen" msgid "General" msgstr "General" -#: wp-admin/menu.php:314 wp-admin/menu.php:326 wp-admin/menu.php:329 -#: wp-admin/user-edit.php:41 wp-admin/user/menu.php:14 +#: wp-admin/menu.php:325 wp-admin/menu.php:337 wp-admin/menu.php:340 +#: wp-admin/user-edit.php:41 wp-admin/user/menu.php:19 msgid "Profile" msgstr "Profile" #. translators: %s: Number of comments. -#: wp-admin/menu.php:96 +#: wp-admin/menu.php:101 msgid "Comments %s" msgstr "Comments %s" -#: wp-admin/menu.php:67 +#: wp-admin/menu.php:72 msgid "Library" msgstr "Library" @@ -14397,20 +14496,15 @@ msgid_plural "%s links deleted." msgstr[0] "%s link deleted." msgstr[1] "%s links deleted" -#: wp-admin/edit-link-form.php:90 wp-admin/link-add.php:17 -#: wp-admin/link-manager.php:104 wp-admin/menu.php:81 -msgid "Add New Link" -msgstr "Add New Link" - -#: wp-admin/install.php:428 +#: wp-admin/install.php:452 msgid "Success!" msgstr "Success!" -#: wp-admin/install.php:372 +#: wp-admin/install.php:396 msgid "Please provide the following information. Do not worry, you can always change these settings later." msgstr "Please provide the following information. Do not worry, you can always change these settings later." -#: wp-admin/install.php:371 +#: wp-admin/install.php:395 msgid "Information needed" msgstr "Information needed" @@ -14447,28 +14541,28 @@ msgid "Error: Please enter a password." msgstr "Error: Please enter a password." #. translators: Default post slug. -#: wp-admin/includes/upgrade.php:240 wp-admin/includes/upgrade.php:520 +#: wp-admin/includes/upgrade.php:249 wp-admin/includes/upgrade.php:529 msgctxt "Default post slug" msgid "hello-world" msgstr "hello-world" -#: wp-admin/includes/upgrade.php:238 +#: wp-admin/includes/upgrade.php:247 msgid "Hello world!" msgstr "Hello world!" #. translators: %s: Site link. #. translators: First post content. %s: Site link. -#: wp-admin/includes/schema.php:1268 wp-admin/includes/upgrade.php:211 +#: wp-admin/includes/schema.php:1273 wp-admin/includes/upgrade.php:220 msgid "Welcome to %s. This is your first post. Edit or delete it, then start writing!" msgstr "Welcome to %s. This is your first post. Edit or delete it, then start writing!" #. translators: Default category slug. -#: wp-admin/includes/upgrade.php:175 +#: wp-admin/includes/upgrade.php:184 msgctxt "Default category slug" msgid "Uncategorized" msgstr "Uncategorised" -#: wp-admin/includes/upgrade.php:104 +#: wp-admin/includes/upgrade.php:113 msgid "Note that password carefully! It is a random password that was generated just for you." msgstr "Note that password carefully! It is a random password that was generated just for you." @@ -14497,34 +14591,34 @@ msgstr "Update to %s" msgid "You are using a development version (%1$s). Cool! Please stay updated." msgstr "You are using a development version (%1$s). Cool! Please stay updated." -#: wp-admin/includes/update-core.php:1543 +#: wp-admin/includes/update-core.php:1569 msgid "Upgrading database…" msgstr "Upgrading database…" -#: wp-admin/includes/update-core.php:1071 +#: wp-admin/includes/update-core.php:1085 msgid "The update could not be unpacked" msgstr "The update could not be unpacked" -#: wp-admin/includes/update-core.php:1053 +#: wp-admin/includes/update-core.php:1067 msgid "Verifying the unpacked files…" msgstr "Verifying the unpacked files…" #. translators: 1: WordPress version number, 2: Minimum required MySQL version #. number, 3: Current MySQL version number. -#: wp-admin/includes/update-core.php:1173 +#: wp-admin/includes/update-core.php:1187 msgid "The update cannot be installed because WordPress %1$s requires MySQL version %2$s or higher. You are running version %3$s." msgstr "The update cannot be installed because WordPress %1$s requires MySQL version %2$s or higher. You are running version %3$s." #. translators: 1: WordPress version number, 2: Minimum required PHP version #. number, 3: Current PHP version number. -#: wp-admin/includes/update-core.php:1162 +#: wp-admin/includes/update-core.php:1176 msgid "The update cannot be installed because WordPress %1$s requires PHP version %2$s or higher. You are running version %3$s." msgstr "The update cannot be installed because WordPress %1$s requires PHP version %2$s or higher. You are running version %3$s." #. translators: 1: WordPress version number, 2: Minimum required PHP version #. number, 3: Minimum required MySQL version number, 4: Current PHP version #. number, 5: Current MySQL version number. -#: wp-admin/includes/update-core.php:1149 +#: wp-admin/includes/update-core.php:1163 msgid "The update cannot be installed because WordPress %1$s requires PHP version %2$s or higher and MySQL version %3$s or higher. You are running PHP version %4$s and MySQL version %5$s." msgstr "The update cannot be installed because WordPress %1$s requires PHP version %2$s or higher and MySQL version %3$s or higher. You are running PHP version %4$s and MySQL version %5$s." @@ -14543,7 +14637,7 @@ msgstr "This theme is already installed." #. translators: %s: Theme version. #: wp-admin/includes/theme.php:867 wp-admin/theme-install.php:537 -#: wp-admin/themes.php:1049 +#: wp-admin/themes.php:1091 msgid "Version: %s" msgstr "Version: %s" @@ -14571,10 +14665,6 @@ msgstr "Sticky Post" msgid "Theme Options" msgstr "Theme Options" -#: wp-admin/includes/theme.php:335 -msgid "Custom Colors" -msgstr "Custom Colours" - #: wp-admin/includes/theme.php:330 wp-admin/includes/theme.php:388 msgid "Features" msgstr "Features" @@ -14648,10 +14738,6 @@ msgstr "Add Custom Field" msgid "Enter new" msgstr "Enter new" -#: wp-admin/includes/template.php:738 -msgid "Add New Custom Field:" -msgstr "Add New Custom Field:" - #. translators: Hidden accessibility text. #: wp-admin/includes/template.php:665 msgid "Key" @@ -14679,50 +14765,50 @@ msgstr "Reply to Comment" msgid "Missed schedule" msgstr "Missed schedule" -#: wp-admin/includes/class-wp-posts-list-table.php:2017 +#: wp-admin/includes/class-wp-posts-list-table.php:2024 msgid "Make this post sticky" msgstr "Make this post sticky" -#: wp-admin/includes/class-wp-posts-list-table.php:2009 +#: wp-admin/includes/class-wp-posts-list-table.php:2016 msgid "Not Sticky" msgstr "Not Sticky" -#: wp-admin/includes/class-wp-posts-list-table.php:1967 +#: wp-admin/includes/class-wp-posts-list-table.php:1974 msgid "Allow Pings" msgstr "Allow Pings" -#: wp-admin/includes/class-wp-posts-list-table.php:1958 +#: wp-admin/includes/class-wp-posts-list-table.php:1965 msgid "Allow Comments" msgstr "Allow Comments" -#: wp-admin/includes/class-wp-posts-list-table.php:1929 -#: wp-admin/includes/class-wp-posts-list-table.php:1942 +#: wp-admin/includes/class-wp-posts-list-table.php:1936 +#: wp-admin/includes/class-wp-posts-list-table.php:1949 msgid "Do not allow" msgstr "Do not allow" -#: wp-admin/includes/class-wp-posts-list-table.php:1928 -#: wp-admin/includes/class-wp-posts-list-table.php:1941 +#: wp-admin/includes/class-wp-posts-list-table.php:1935 +#: wp-admin/includes/class-wp-posts-list-table.php:1948 msgid "Allow" msgstr "Allow" #. translators: Between password field and private checkbox on post quick edit #. interface. -#: wp-admin/includes/class-wp-posts-list-table.php:1784 +#: wp-admin/includes/class-wp-posts-list-table.php:1791 msgid "–OR–" msgstr "–OR–" -#: wp-admin/includes/class-wp-posts-list-table.php:1741 -#: wp-admin/includes/class-wp-posts-list-table.php:1844 -#: wp-admin/includes/class-wp-posts-list-table.php:1884 -#: wp-admin/includes/class-wp-posts-list-table.php:1927 -#: wp-admin/includes/class-wp-posts-list-table.php:1940 -#: wp-admin/includes/class-wp-posts-list-table.php:1984 -#: wp-admin/includes/class-wp-posts-list-table.php:2007 -#: wp-admin/includes/class-wp-posts-list-table.php:2032 +#: wp-admin/includes/class-wp-posts-list-table.php:1748 +#: wp-admin/includes/class-wp-posts-list-table.php:1851 +#: wp-admin/includes/class-wp-posts-list-table.php:1891 +#: wp-admin/includes/class-wp-posts-list-table.php:1934 +#: wp-admin/includes/class-wp-posts-list-table.php:1947 +#: wp-admin/includes/class-wp-posts-list-table.php:1991 +#: wp-admin/includes/class-wp-posts-list-table.php:2014 +#: wp-admin/includes/class-wp-posts-list-table.php:2039 msgid "— No Change —" msgstr "— No Change —" -#: wp-admin/includes/class-wp-posts-list-table.php:1681 +#: wp-admin/includes/class-wp-posts-list-table.php:1688 msgid "Bulk Edit" msgstr "Bulk Edit" @@ -14735,7 +14821,7 @@ msgstr "Visible" msgid "Relationship" msgstr "Relationship" -#: wp-admin/includes/class-wp-comments-list-table.php:473 +#: wp-admin/includes/class-wp-comments-list-table.php:477 #: wp-admin/includes/class-wp-post-comments-list-table.php:26 msgctxt "column name" msgid "Comment" @@ -14760,18 +14846,18 @@ msgctxt "column name" msgid "Title" msgstr "Title" -#: wp-admin/includes/class-wp-comments-list-table.php:836 -#: wp-admin/includes/class-wp-posts-list-table.php:1503 +#: wp-admin/includes/class-wp-comments-list-table.php:840 +#: wp-admin/includes/class-wp-posts-list-table.php:1510 #: wp-admin/includes/class-wp-terms-list-table.php:510 msgid "Quick Edit" msgstr "Quick Edit" -#: wp-admin/includes/class-wp-posts-list-table.php:1681 +#: wp-admin/includes/class-wp-posts-list-table.php:1688 #: wp-admin/includes/class-wp-terms-list-table.php:693 msgid "Quick Edit" msgstr "Quick Edit" -#: wp-admin/includes/schema.php:1126 +#: wp-admin/includes/schema.php:1131 msgid "Warning! Wildcard DNS may not be configured correctly!" msgstr "Warning! Wildcard DNS may not be configured correctly!" @@ -14785,11 +14871,7 @@ msgstr "Just another %s site" msgid "Just another WordPress site" msgstr "Just another WordPress site" -#: wp-admin/includes/post.php:1569 wp-admin/includes/post.php:1594 -msgid "Permalink:" -msgstr "Permalink:" - -#: wp-admin/includes/post.php:761 +#: wp-admin/includes/post.php:767 msgid "Auto Draft" msgstr "Auto Draft" @@ -15082,7 +15164,7 @@ msgstr "Keep this link private" msgid "Visit Link" msgstr "Visit Link" -#: wp-admin/includes/class-wp-posts-list-table.php:1838 +#: wp-admin/includes/class-wp-posts-list-table.php:1845 msgid "Main Page (no parent)" msgstr "Main Page (no parent)" @@ -15106,11 +15188,6 @@ msgstr "Already pinged:" msgid "New category name" msgstr "New category name" -#. translators: Hidden accessibility text. -#: wp-admin/includes/meta-boxes.php:1203 wp-admin/includes/meta-boxes.php:1208 -msgid "+ Add New Category" -msgstr "+ Add New Category" - #: wp-admin/includes/meta-boxes.php:246 wp-admin/includes/meta-boxes.php:260 msgid "Publish immediately" msgstr "Publish immediately" @@ -15128,100 +15205,100 @@ msgstr "Status:" msgid "Preview Changes" msgstr "Preview Changes" -#: wp-admin/includes/media.php:2974 +#: wp-admin/includes/media.php:2978 msgid "Link text, e.g. “Ransom Demands (PDF)”" msgstr "Link text, e.g. “Ransom Demands (PDF)”" -#: wp-admin/includes/media.php:3005 +#: wp-admin/includes/media.php:3009 msgid "Link to image" msgstr "Link to image" -#: wp-admin/includes/media.php:3000 +#: wp-admin/includes/media.php:3004 msgid "Link Image To:" msgstr "Link Image To:" -#: wp-admin/includes/media.php:2931 +#: wp-admin/includes/media.php:2935 msgid "Image Caption" msgstr "Image Caption" -#: wp-admin/includes/media.php:2884 +#: wp-admin/includes/media.php:2888 msgid "Filter »" msgstr "Filter »" -#: wp-admin/includes/media.php:2792 +#: wp-admin/includes/media.php:2797 msgid "All Types" msgstr "All Types" #. translators: Hidden accessibility text. #: wp-admin/includes/class-wp-media-list-table.php:319 #: wp-admin/includes/class-wp-media-list-table.php:323 -#: wp-admin/includes/media.php:2757 +#: wp-admin/includes/media.php:2762 msgid "Search Media" msgstr "Search Media" -#: wp-admin/includes/media.php:2691 +#: wp-admin/includes/media.php:2696 msgid "Update gallery settings" msgstr "Update gallery settings" -#: wp-admin/includes/media.php:2670 +#: wp-admin/includes/media.php:2675 msgid "Gallery columns:" msgstr "Gallery columns:" -#: wp-admin/includes/media.php:2655 +#: wp-admin/includes/media.php:2660 msgid "Order:" msgstr "Order:" -#: wp-admin/includes/media.php:2647 +#: wp-admin/includes/media.php:2652 msgid "Random" msgstr "Random" -#: wp-admin/includes/media.php:2646 +#: wp-admin/includes/media.php:2651 msgid "Date/Time" msgstr "Date/Time" -#: wp-admin/includes/media.php:2644 +#: wp-admin/includes/media.php:2649 msgid "Menu order" msgstr "Menu order" -#: wp-admin/includes/media.php:2639 +#: wp-admin/includes/media.php:2644 msgid "Order images by:" msgstr "Order images by:" -#: wp-admin/includes/media.php:2629 +#: wp-admin/includes/media.php:2634 msgid "Image File" msgstr "Image File" -#: wp-admin/includes/media.php:2624 +#: wp-admin/includes/media.php:2629 msgid "Link thumbnails to:" msgstr "Link thumbnails to:" -#: wp-admin/includes/media.php:2583 wp-admin/includes/media.php:2663 +#: wp-admin/includes/media.php:2588 wp-admin/includes/media.php:2668 msgid "Descending" msgstr "Descending" -#: wp-admin/includes/media.php:2582 wp-admin/includes/media.php:2660 +#: wp-admin/includes/media.php:2587 wp-admin/includes/media.php:2665 msgid "Ascending" msgstr "Ascending" -#: wp-admin/includes/media.php:2581 +#: wp-admin/includes/media.php:2586 msgid "Sort Order:" msgstr "Sort Order:" -#: wp-admin/includes/media.php:2577 +#: wp-admin/includes/media.php:2582 msgid "All Tabs:" msgstr "All Tabs:" -#: wp-admin/includes/media.php:2385 wp-admin/includes/media.php:2603 -#: wp-admin/includes/media.php:2910 +#: wp-admin/includes/media.php:2390 wp-admin/includes/media.php:2608 +#: wp-admin/includes/media.php:2914 msgid "Save all changes" msgstr "Save all changes" -#: wp-admin/includes/media.php:2355 +#: wp-admin/includes/media.php:2360 msgid "Add media files from your computer" msgstr "Add media files from your computer" -#: wp-admin/includes/media.php:1730 wp-admin/includes/media.php:3011 -#: wp-admin/includes/media.php:3017 +#: wp-admin/includes/media.php:1730 wp-admin/includes/media.php:3015 +#: wp-admin/includes/media.php:3021 msgid "Insert into Post" msgstr "Insert into Post" @@ -15229,9 +15306,9 @@ msgstr "Insert into Post" msgid "Upload date:" msgstr "Upload date:" -#: wp-admin/includes/media.php:1621 wp-admin/includes/media.php:2579 -#: wp-admin/install.php:149 wp-admin/user-edit.php:684 -#: wp-admin/user-new.php:603 wp-admin/js/password-toggle.js:28 +#: wp-admin/includes/media.php:1621 wp-admin/includes/media.php:2584 +#: wp-admin/install.php:149 wp-admin/user-edit.php:686 +#: wp-admin/user-new.php:608 wp-admin/js/password-toggle.js:28 #: wp-admin/js/user-profile.js:91 msgid "Hide" msgstr "Hide" @@ -15240,7 +15317,7 @@ msgstr "Hide" msgid "Location of the uploaded file." msgstr "Location of the uploaded file." -#: wp-admin/includes/media.php:1486 wp-admin/includes/media.php:2981 +#: wp-admin/includes/media.php:1486 wp-admin/includes/media.php:2985 msgid "Alt text for the image, e.g. “The Mona Lisa”" msgstr "Alt text for the image, e.g. “The Mona Lisa”" @@ -15249,10 +15326,10 @@ msgid "File URL" msgstr "File URL" #: wp-admin/includes/class-wp-debug-data.php:298 -#: wp-admin/includes/class-wp-privacy-policy-content.php:704 -#: wp-admin/includes/media.php:540 wp-admin/includes/template.php:2140 +#: wp-admin/includes/class-wp-privacy-policy-content.php:702 +#: wp-admin/includes/media.php:540 wp-admin/includes/template.php:2139 #: wp-admin/install.php:77 wp-admin/maint/repair.php:24 -#: wp-admin/setup-config.php:115 wp-admin/upgrade.php:69 +#: wp-admin/setup-config.php:115 wp-admin/upgrade.php:88 msgid "WordPress" msgstr "WordPress" @@ -15383,60 +15460,60 @@ msgstr "Flip vertically" msgid "Image data does not exist. Please re-upload the image." msgstr "Image data does not exist. Please re-upload the image." -#: wp-admin/includes/file.php:2643 +#: wp-admin/includes/file.php:2661 msgid "Proceed" msgstr "Proceed" -#: wp-admin/includes/file.php:2591 +#: wp-admin/includes/file.php:2609 msgid "Connection Type" msgstr "Connection Type" -#: wp-admin/includes/file.php:2618 +#: wp-admin/includes/file.php:2636 msgid "Private Key:" msgstr "Private Key:" -#: wp-admin/includes/file.php:2614 +#: wp-admin/includes/file.php:2632 msgid "Public Key:" msgstr "Public Key:" -#: wp-admin/includes/file.php:2612 +#: wp-admin/includes/file.php:2630 msgid "Authentication Keys" msgstr "Authentication Keys" -#: wp-admin/includes/file.php:2570 +#: wp-admin/includes/file.php:2588 msgid "Hostname" msgstr "Hostname" -#: wp-admin/includes/file.php:2536 +#: wp-admin/includes/file.php:2554 msgid "Connection Information" msgstr "Connection Information" -#: wp-admin/includes/file.php:2510 +#: wp-admin/includes/file.php:2528 msgid "SSH2" msgstr "SSH2" -#: wp-admin/includes/file.php:2507 +#: wp-admin/includes/file.php:2525 msgid "FTPS (SSL)" msgstr "FTPS (SSL)" -#: wp-admin/includes/file.php:2504 +#: wp-admin/includes/file.php:2522 msgid "FTP" msgstr "FTP" -#: wp-admin/includes/file.php:1875 +#: wp-admin/includes/file.php:1893 msgid "Empty archive." msgstr "Empty archive." -#: wp-admin/includes/file.php:1813 wp-admin/includes/file.php:1967 -#: wp-admin/includes/file.php:2025 wp-admin/includes/update-core.php:1481 +#: wp-admin/includes/file.php:1831 wp-admin/includes/file.php:1985 +#: wp-admin/includes/file.php:2043 wp-admin/includes/update-core.php:1507 msgid "Could not copy file." msgstr "Could not copy file." -#: wp-admin/includes/file.php:1808 +#: wp-admin/includes/file.php:1826 msgid "Could not extract file from archive." msgstr "Could not extract file from archive." -#: wp-admin/includes/file.php:1683 wp-admin/includes/file.php:1788 +#: wp-admin/includes/file.php:1701 wp-admin/includes/file.php:1806 msgid "Could not retrieve file from archive." msgstr "Could not retrieve file from archive." @@ -15574,42 +15651,42 @@ msgstr "[Pending]" msgid "From %1$s on %2$s %3$s" msgstr "From %1$s on %2$s %3$s" -#: wp-admin/includes/class-wp-comments-list-table.php:814 +#: wp-admin/includes/class-wp-comments-list-table.php:818 #: wp-admin/includes/dashboard.php:793 msgid "Move this comment to the Trash" msgstr "Move this comment to the bin" #. translators: "Mark as spam" link. -#: wp-admin/includes/class-wp-comments-list-table.php:779 +#: wp-admin/includes/class-wp-comments-list-table.php:783 #: wp-admin/includes/dashboard.php:777 msgctxt "verb" msgid "Spam" msgstr "Spam" -#: wp-admin/includes/class-wp-comments-list-table.php:777 +#: wp-admin/includes/class-wp-comments-list-table.php:781 #: wp-admin/includes/dashboard.php:775 msgid "Mark this comment as spam" msgstr "Mark this comment as spam" -#: wp-admin/includes/class-wp-comments-list-table.php:845 +#: wp-admin/includes/class-wp-comments-list-table.php:849 #: wp-admin/includes/dashboard.php:767 msgid "Reply to this comment" msgstr "Reply to this comment" -#: wp-admin/includes/class-wp-comments-list-table.php:742 -#: wp-admin/includes/class-wp-comments-list-table.php:767 +#: wp-admin/includes/class-wp-comments-list-table.php:746 +#: wp-admin/includes/class-wp-comments-list-table.php:771 #: wp-admin/includes/dashboard.php:752 msgid "Unapprove this comment" msgstr "Unapprove this comment" -#: wp-admin/includes/class-wp-comments-list-table.php:750 -#: wp-admin/includes/class-wp-comments-list-table.php:759 +#: wp-admin/includes/class-wp-comments-list-table.php:754 +#: wp-admin/includes/class-wp-comments-list-table.php:763 #: wp-admin/includes/dashboard.php:744 msgid "Approve this comment" msgstr "Approve this comment" #. translators: Hidden accessibility text. -#: wp-admin/includes/nav-menu.php:531 wp-admin/includes/nav-menu.php:903 +#: wp-admin/includes/nav-menu.php:532 wp-admin/includes/nav-menu.php:904 msgid "Page" msgstr "Page" @@ -15646,7 +15723,7 @@ msgstr "Return to the theme installer" #. translators: %s: Post title. #. translators: %s: Theme name. -#: wp-admin/includes/class-wp-posts-list-table.php:1546 +#: wp-admin/includes/class-wp-posts-list-table.php:1553 #: wp-admin/includes/class-wp-theme-install-list-table.php:286 msgid "Preview “%s”" msgstr "Preview “%s”" @@ -15738,24 +15815,24 @@ msgid "The plugin is at the latest version." msgstr "The plugin is at the latest version." #: wp-admin/includes/class-wp-upgrader.php:210 -#: wp-admin/includes/update-core.php:1428 +#: wp-admin/includes/update-core.php:1454 msgid "Disabling Maintenance mode…" msgstr "Disabling Maintenance mode…" #: wp-admin/includes/class-wp-upgrader.php:209 -#: wp-admin/includes/update-core.php:1279 +#: wp-admin/includes/update-core.php:1305 msgid "Enabling Maintenance mode…" msgstr "Enabling Maintenance mode…" #: wp-admin/includes/class-file-upload-upgrader.php:82 #: wp-admin/includes/class-file-upload-upgrader.php:91 -#: wp-admin/includes/file.php:1673 wp-admin/includes/file.php:1871 +#: wp-admin/includes/file.php:1691 wp-admin/includes/file.php:1889 msgid "Incompatible Archive." msgstr "Incompatible Archive." -#: wp-admin/includes/class-wp-upgrader.php:204 wp-admin/includes/file.php:1759 -#: wp-admin/includes/file.php:1940 wp-admin/includes/file.php:2033 -#: wp-admin/includes/file.php:2116 +#: wp-admin/includes/class-wp-upgrader.php:204 wp-admin/includes/file.php:1777 +#: wp-admin/includes/file.php:1958 wp-admin/includes/file.php:2051 +#: wp-admin/includes/file.php:2134 msgid "Could not create directory." msgstr "Could not create directory." @@ -15876,11 +15953,11 @@ msgstr "Found %s" msgid "Changing to %s" msgstr "Changing to %s" -#: wp-admin/includes/bookmark.php:235 +#: wp-admin/includes/bookmark.php:236 msgid "Could not insert link into the database." msgstr "Could not insert link into the database." -#: wp-admin/includes/bookmark.php:227 +#: wp-admin/includes/bookmark.php:228 msgid "Could not update link in the database." msgstr "Could not update link in the database." @@ -15918,7 +15995,7 @@ msgstr "This format, which is called WordPress eXtended RSS or WXR, will contain msgid "When you click the button below WordPress will create an XML file for you to save to your computer." msgstr "When you click the button below WordPress will create an XML file for you to save to your computer." -#: wp-admin/export.php:20 wp-admin/menu.php:365 +#: wp-admin/export.php:20 wp-admin/menu.php:376 msgid "Export" msgstr "Export" @@ -15969,7 +16046,7 @@ msgstr "Item updated." msgid "Item deleted." msgstr "Item deleted." -#: wp-admin/edit-tag-form.php:198 wp-admin/edit-tags.php:512 +#: wp-admin/edit-tag-form.php:198 wp-admin/edit-tags.php:515 msgid "Categories, unlike tags, can have a hierarchy. You might have a Jazz category, and under that have children categories for Bebop and Big Band. Totally optional." msgstr "Categories, unlike tags, can have a hierarchy. You might have a Jazz category, and under that have children categories for Bebop and Big Band. Totally optional." @@ -15995,8 +16072,8 @@ msgstr "Link added." #. translators: %s: URL to Links screen. #: wp-admin/edit-link-form.php:22 -msgid "Links / Add New Link" -msgstr "Links / Add New Link" +msgid "Links / Add Link" +msgstr "Links / Add Link" #: wp-admin/edit-link-form.php:17 wp-admin/includes/meta-boxes.php:1149 msgid "Update Link" @@ -16017,7 +16094,7 @@ msgstr "Update Comment" #. translators: 1: Post edited date, 2: Post edited time. #. translators: 1: Date of last edit, 2: Time of last edit. -#: wp-admin/edit-form-advanced.php:661 wp-admin/includes/ajax-actions.php:2902 +#: wp-admin/edit-form-advanced.php:660 wp-admin/includes/ajax-actions.php:2902 msgid "Last edited on %1$s at %2$s" msgstr "Last edited on %1$s at %2$s" @@ -16025,7 +16102,7 @@ msgstr "Last edited on %1$s at %2$s" #. Post edited time. #. translators: 1: User's display name, 2: Date of last edit, 3: Time of last #. edit. -#: wp-admin/edit-form-advanced.php:653 wp-admin/includes/ajax-actions.php:2899 +#: wp-admin/edit-form-advanced.php:652 wp-admin/includes/ajax-actions.php:2899 msgid "Last edited by %1$s on %2$s at %3$s" msgstr "Last edited by %1$s on %2$s at %3$s" @@ -16038,24 +16115,24 @@ msgid "Send Trackbacks" msgstr "Send Trackbacks" #. translators: %s: Date and time of the revision. -#: wp-admin/edit-form-advanced.php:202 +#: wp-admin/edit-form-advanced.php:195 msgid "Page restored to revision from %s." msgstr "Page restored to revision from %s." -#: wp-admin/edit-form-advanced.php:189 +#: wp-admin/edit-form-advanced.php:182 msgid "Post saved." msgstr "Post saved." #. translators: %s: Date and time of the revision. -#: wp-admin/edit-form-advanced.php:187 +#: wp-admin/edit-form-advanced.php:180 msgid "Post restored to revision from %s." msgstr "Post restored to revision from %s." -#: wp-admin/edit-form-advanced.php:184 wp-admin/edit-form-advanced.php:199 +#: wp-admin/edit-form-advanced.php:177 wp-admin/edit-form-advanced.php:192 msgid "Custom field deleted." msgstr "Custom field deleted." -#: wp-admin/edit-form-advanced.php:183 wp-admin/edit-form-advanced.php:198 +#: wp-admin/edit-form-advanced.php:176 wp-admin/edit-form-advanced.php:191 msgid "Custom field updated." msgstr "Custom field updated." @@ -16063,17 +16140,17 @@ msgstr "Custom field updated." msgid "No comments found." msgstr "No comments found." -#: wp-admin/includes/class-wp-comments-list-table.php:429 +#: wp-admin/includes/class-wp-comments-list-table.php:433 #: wp-admin/includes/class-wp-media-list-table.php:222 #: wp-admin/includes/class-wp-posts-list-table.php:607 msgid "Empty Trash" msgstr "Empty Bin" -#: wp-admin/includes/class-wp-comments-list-table.php:429 +#: wp-admin/includes/class-wp-comments-list-table.php:433 msgid "Empty Spam" msgstr "Empty Spam" -#: wp-admin/includes/class-wp-comments-list-table.php:421 +#: wp-admin/includes/class-wp-comments-list-table.php:425 #: wp-admin/includes/class-wp-links-list-table.php:123 #: wp-admin/includes/class-wp-media-list-table.php:217 #: wp-admin/includes/class-wp-posts-list-table.php:600 @@ -16081,21 +16158,21 @@ msgstr "Empty Spam" msgid "Filter" msgstr "Filter" -#: wp-admin/includes/class-wp-comments-list-table.php:505 -#: wp-admin/includes/class-wp-posts-list-table.php:1938 +#: wp-admin/includes/class-wp-comments-list-table.php:509 +#: wp-admin/includes/class-wp-posts-list-table.php:1945 msgid "Pings" msgstr "Pings" -#: wp-admin/includes/class-wp-comments-list-table.php:367 -#: wp-admin/includes/class-wp-comments-list-table.php:751 -#: wp-admin/includes/class-wp-comments-list-table.php:760 +#: wp-admin/includes/class-wp-comments-list-table.php:371 +#: wp-admin/includes/class-wp-comments-list-table.php:755 +#: wp-admin/includes/class-wp-comments-list-table.php:764 #: wp-admin/includes/dashboard.php:745 msgid "Approve" msgstr "Approve" -#: wp-admin/includes/class-wp-comments-list-table.php:363 -#: wp-admin/includes/class-wp-comments-list-table.php:743 -#: wp-admin/includes/class-wp-comments-list-table.php:768 +#: wp-admin/includes/class-wp-comments-list-table.php:367 +#: wp-admin/includes/class-wp-comments-list-table.php:747 +#: wp-admin/includes/class-wp-comments-list-table.php:772 #: wp-admin/includes/dashboard.php:753 msgid "Unapprove" msgstr "Unapprove" @@ -16147,31 +16224,31 @@ msgstr[0] "%s comment approved." msgstr[1] "%s comments approved." #: wp-admin/includes/class-wp-media-list-table.php:194 -#: wp-admin/includes/class-wp-media-list-table.php:621 -#: wp-admin/includes/class-wp-media-list-table.php:851 +#: wp-admin/includes/class-wp-media-list-table.php:628 +#: wp-admin/includes/class-wp-media-list-table.php:858 msgid "Attach" msgstr "Attach" -#: wp-admin/includes/class-wp-media-list-table.php:611 +#: wp-admin/includes/class-wp-media-list-table.php:618 msgid "(Unattached)" msgstr "(Unattached)" -#: wp-admin/includes/class-wp-media-list-table.php:540 +#: wp-admin/includes/class-wp-media-list-table.php:547 #: wp-admin/includes/class-wp-posts-list-table.php:1197 msgid "Unpublished" msgstr "Unpublished" #. translators: %s: Attachment title. #. translators: %s: Post title. -#: wp-admin/includes/class-wp-media-list-table.php:818 -#: wp-admin/includes/class-wp-posts-list-table.php:1555 +#: wp-admin/includes/class-wp-media-list-table.php:825 +#: wp-admin/includes/class-wp-posts-list-table.php:1562 msgid "View “%s”" msgstr "View “%s”" #: wp-admin/edit-form-comment.php:242 -#: wp-admin/includes/class-wp-comments-list-table.php:807 -#: wp-admin/includes/class-wp-media-list-table.php:803 -#: wp-admin/includes/class-wp-posts-list-table.php:1533 +#: wp-admin/includes/class-wp-comments-list-table.php:811 +#: wp-admin/includes/class-wp-media-list-table.php:810 +#: wp-admin/includes/class-wp-posts-list-table.php:1540 #: wp-admin/includes/dashboard.php:786 wp-admin/includes/media.php:1736 msgid "Delete Permanently" msgstr "Delete Permanently" @@ -16181,8 +16258,8 @@ msgstr "Delete Permanently" #. translators: %s: Post title. #. translators: %s: Taxonomy term name. #: wp-admin/includes/class-wp-links-list-table.php:205 -#: wp-admin/includes/class-wp-media-list-table.php:770 -#: wp-admin/includes/class-wp-posts-list-table.php:1484 +#: wp-admin/includes/class-wp-media-list-table.php:777 +#: wp-admin/includes/class-wp-posts-list-table.php:1491 #: wp-admin/includes/class-wp-terms-list-table.php:491 #: wp-admin/includes/dashboard.php:675 wp-admin/includes/dashboard.php:1039 msgid "Edit “%s”" @@ -16207,8 +16284,8 @@ msgstr "Header updated. Visit your site to see how it looks." msgid "Custom Header" msgstr "Custom Header" -#: wp-admin/includes/dashboard.php:251 wp-admin/includes/template.php:2603 -#: wp-admin/nav-menus.php:926 wp-admin/options.php:440 +#: wp-admin/includes/dashboard.php:251 wp-admin/includes/template.php:2602 +#: wp-admin/nav-menus.php:928 wp-admin/options.php:440 msgid "Save Changes" msgstr "Save Changes" @@ -16273,16 +16350,16 @@ msgstr "Go Back" msgid "Edit Comment" msgstr "Edit Comment" -#: wp-admin/admin.php:338 wp-admin/import.php:19 wp-admin/menu.php:364 +#: wp-admin/admin.php:339 wp-admin/import.php:19 wp-admin/menu.php:375 msgid "Import" msgstr "Import" #. translators: %s: Admin page generated by a plugin. -#: wp-admin/admin.php:269 +#: wp-admin/admin.php:270 msgid "Cannot load %s." msgstr "Cannot load %s." -#: wp-admin/admin.php:262 +#: wp-admin/admin.php:263 msgid "Invalid plugin page." msgstr "Invalid plugin page." @@ -16335,12 +16412,12 @@ msgstr "You did not enter a category name." msgid "Comment %d does not exist" msgstr "Comment %d does not exist" -#: wp-admin/includes/media.php:2835 wp-admin/includes/nav-menu.php:529 -#: wp-admin/includes/nav-menu.php:901 +#: wp-admin/includes/media.php:2840 wp-admin/includes/nav-menu.php:530 +#: wp-admin/includes/nav-menu.php:902 msgid "»" msgstr "»" -#: wp-admin/includes/media.php:2834 wp-admin/includes/nav-menu.php:528 -#: wp-admin/includes/nav-menu.php:900 +#: wp-admin/includes/media.php:2839 wp-admin/includes/nav-menu.php:529 +#: wp-admin/includes/nav-menu.php:901 msgid "«" msgstr "«" \ No newline at end of file diff --git a/web/app/languages/admin-fr_FR.l10n.php b/web/app/languages/admin-fr_FR.l10n.php old mode 100755 new mode 100644 index 2c398f8f..098fc226 --- a/web/app/languages/admin-fr_FR.l10n.php +++ b/web/app/languages/admin-fr_FR.l10n.php @@ -1,7 +1,7 @@ 'GlotPress/4.0.1','translation-revision-date'=>'2024-11-28 10:44:04+0000','plural-forms'=>'nplurals=2; plural=n > 1;','project-id-version'=>'WordPress - 6.7.x - Development - Administration','language'=>'fr','messages'=>['start of week1'=>'1','default GMT offset or timezone string0'=>'Europe/Paris','If a dependent plugin is missing some dependencies, its activation button will be disabled until the required dependencies are activated.'=>'S‘il manque des dépendances à une extension dépendante, son bouton d‘activation sera désactivé jusqu‘à ce que les dépendances nécessaires soient activées.','If a required plugin is deleted, a notice will be displayed on the Plugin administration screen informing the user that there is some missing dependencies to install and/or activate. Additionally, each plugin whose dependencies are not met will have an error notice on their plugin row.'=>'Si une extension requise est supprimée, une notification sera affichée sur l’écran d’administration des extensions pour indiquer que des dépendances manquantes doivent être installées ou activées. De plus, chaque extension dont les dépendances ne sont pas présentes auront une notification d’erreur dans la ligne correspondant à l’extension.','Plugin Dependencies aims to make the process of installing and activating add-ons (dependents) and the plugins they rely on (dependencies) consistent and easy.'=>'Les dépendances d’extensions visent à rendre cohérent et à simplifier le processus d’installation et d’activation des modules (extensions dépendantes d’une autre) et des extensions requises pour faire fonctionner le module (dépendances).','Dependencies'=>'Dépendances','Comments to display at the top of each page'=>'Commentaires à afficher en haut de chaque page','Comments page to display by default'=>'Page des commentaires à afficher par défaut','Top level comments per page'=>'Commentaires de premier niveau par page','Break comments into pages'=>'Diviser les commentaires en pages','Comment Pagination'=>'Pagination des commentaires','Number of levels for threaded (nested) comments'=>'Nombre de niveaux pour les commentaires en fil (imbriqués)','Enable threaded (nested) comments'=>'Activer les commentaires en fil (imbriqués)','Close comments when post is how many days old'=>'Fermez les commentaires lorsque la publication est datée de plusieurs jours','Automatically close comments on old posts'=>'Fermez automatiquement les commentaires sur les publications anciennes.','Menu order updated'=>'Mise à jour de l’ordre du menu','Menu parent updated'=>'Mise à jour du menu parent','Change revision by using the left and right arrow keys'=>'Changez de révision en utilisant les flèches gauche et droite','Select a revision'=>'Sélectionnez une révision','A directory could not be read.'=>'Un répertoire n’a pu être lu.','Database Extension'=>'Extension de la base de données','Empty value'=>'Valeur vide','Max simultaneous file uploads'=>'Nombre maximal de fichiers téléversés en simultané.','Menu Order'=>'Ordre du menu','Menu Parent'=>'Menu parent','Skip to Editor'=>'Aller à l’éditeur','WordPress %s Field Guide'=>'Guide technique de WordPress %s','WordPress %s Release Notes'=>'Notes de version de WordPress %s','65+ accessibility fixes and enhancements focus on foundational aspects of the WordPress experience, from improving user interface components and keyboard navigation in the Editor, to an accessible heading on WordPress login screens and clearer labeling throughout.'=>'Plus de 65 correctifs et améliorations d’accessibilité focalisées sur les aspects fondamentaux de l’expérience de WordPress, de l’amélioration des composants d’interface d’administration à la navigation clavier dans l’éditeur, en passant par des niveaux de titres plus accessibles dans les écrans de connexion et de meilleurs libellés.','WordPress 6.7 delivers important performance updates, including faster pattern loading, optimized previews in the data views component, improved PHP 8+ support and removal of deprecated code, auto sizes for lazy-loaded images, and more efficient tag processing in the HTML API.'=>'WordPress 6.7 propose d’importantes mises à jour en matière de performances, notamment un chargement plus rapide des compositions, des aperçus optimisés pour le composant des vues de données, une meilleure prise en charge de PHP 8 et plus, la suppression du code obsolète, des tailles automatiques pour les images en chargement différé, ainsi qu’un traitement plus efficace des balises dans l’API HTML.','Create, edit, remove, and apply font size presets with the next addition to the Styles interface. Override theme defaults or create your own custom font size, complete with fluid typography for responsive font scaling. Get into the details!'=>'Créez, modifiez, retirez et appliquez des préréglages de taille de police avec le dernier apport à l’interface des Styles. Surchargez le thème par défaut ou créez votre propre taille de police personnalisée, avec une typographie dynamique pour un redimensionnement responsive des polices. Prenez soin des détails !','New style section, new possibilities'=>'Nouvelle section de style, nouvelles possibilités','Embrace your inner font nerd'=>'Laissez s’exprimer votre passion pour la typographie','This feature introduces a new UI for connecting blocks to custom fields, putting control of dynamic content directly in the editor. Link blocks with fields in just a few clicks, enhancing flexibility and efficiency when building. Your clients will love you—as if they didn’t already.'=>'Cette fonctionnalité introduit une nouvelle interface pour connecter des blocs à des champs personnalisés. Cela vous donne le contrôle d’éléments dynamiques directement dans l’éditeur. Vous pouvez relier des blocs à des champs en quelques clics, ce qui améliore la flexibilité et l’efficacité de ces actions. Vos clients vont adorer ça.','A streamlined way to create dynamic content'=>'Une manière simplifiée de créer du contenu dynamique','Connect blocks and custom fields with no hassle (or code)'=>'Connectez des blocs et des champs personnalisés sans souci (ou code)','Edit and arrange entire sections of your content like never before. A broader view of your site lets you add, edit, shuffle, or remove patterns to your liking. Embrace your inner architect.'=>'Modifiez et organisez des sections entières de votre contenu comme jamais auparavant. Une vue plus large de votre site vous permet d‘ajouter, de modifier, de mélanger ou de supprimer des compositions à votre guise. Laissez s‘exprimer l‘architecte qui est en vous.','Explore your content from a new perspective'=>'Explorez votre contenu sous un nouvel angle','Get the big picture with Zoom Out'=>'Obtenez une vue d’ensemble en dézoomant','Twenty Twenty-Five offers a flexible, design-focused theme that lets you build stunning sites with ease. Tailor your aesthetic with an array of style options, block patterns, and color palettes. Pared down to the essentials, this is a theme that can truly grow with you.'=>'Twenty Twenty-Five est un thème polyvalent, axé sur le design, qui vous permet de créer des sites époustouflants en toute simplicité. Personnalisez votre esthétisme grâce à un éventail d‘options de style, de compositions de blocs et de palettes de couleurs. Réduit à l‘essentiel, c‘est un thème qui peut vraiment évoluer avec vous.','Endless possibility without complexity'=>'Une infinité de possibilités sans complexité','WordPress 6.7 debuts the modern Twenty Twenty-Five theme, offering ultimate design flexibility for any blog at any scale. Control your site typography like never before with new font management features. The new Zoom Out feature lets you design your site with a macro view, stepping back from the details to bring the big picture to life.'=>'WordPress 6.7 introduit le thème Twenty Twenty-Five, vous offrant une flexibilité de conception ultime pour n’importe quel site, à n’importe quelle échelle. Contrôlez la typographie de votre site comme jamais auparavant grâce aux nouvelles fonctionnalités de gestion des polices. La nouvelle fonction de zoom arrière vous permet de concevoir votre site avec une vue macro, en prenant du recul par rapport aux détails pour obtenir une vue d’ensemble.','The directory does not exist.'=>'Le répertoire n’existe pas.','Common Errors'=>'Erreurs fréquentes (en anglais)','Documentation on Editing Files'=>'Documentation sur la modification de fichiers (en anglais)','Documentation on Editing Plugins'=>'Documentation sur la modification d’extensions (en anglais)','https://developer.wordpress.org/plugins/settings/settings-api/'=>'https://developer.wordpress.org/plugins/settings/settings-api/','The %1$s setting is unregistered. Unregistered settings are deprecated. See documentation on the Settings API.'=>'Le réglage %1$s n’est pas enregistré. Les réglages non-enregistrés sont obsolètes. Voir la documentation sur les réglages API.','https://developer.wordpress.org/advanced-administration/wordpress/update-services/'=>'https://developer.wordpress.org/advanced-administration/wordpress/update-services/','https://developer.wordpress.org/advanced-administration/wordpress/feeds/'=>'https://developer.wordpress.org/advanced-administration/wordpress/feeds/','Documentation on Nginx configuration.'=>'Documentation sur les réglages de Nginx (en anglais).','https://developer.wordpress.org/advanced-administration/server/wordpress-in-directory/'=>'https://developer.wordpress.org/advanced-administration/server/wordpress-in-directory/','Documentation on Site Management'=>'Documentation sur la gestion de site (en anglais)','Type of relationnone'=>'aucune','No URL Provided.'=>'L’URL n’est pas renseignée.','https://developer.wordpress.org/advanced-administration/server/file-permissions/'=>'https://developer.wordpress.org/advanced-administration/server/file-permissions/','Package not available.'=>'Paquet indisponible.','Autoloaded options'=>'Options chargées automatiquement','More info about optimizing autoloaded options'=>'Plus d’informations sur l’optimisation des options automatiquement','https://developer.wordpress.org/advanced-administration/performance/optimization/#autoloaded-options'=>'https://developer.wordpress.org/advanced-administration/performance/optimization/#autoloaded-options','Your site has %1$s autoloaded options (size: %2$s) in the options table, which could cause your site to be slow. You can review the options being autoloaded in your database and remove any options that are no longer needed by your site.'=>'Votre site a %1$s options chargées automatiquement (taille : %2$s) dans le tableau des options, ce qui peut ralentir votre site. Vous pouvez revoir les options chargées automatiquement dans votre base de données et retirer toutes options qui ne seraient plus nécessaires à votre site.','Autoloaded options could affect performance'=>'Les options chargées automatiquement peuvent affecter les performances','Your site has %1$s autoloaded options (size: %2$s) in the options table, which is acceptable.'=>'Votre site a %1$s options chargées automatiquement (taille : %2$s) dans le tableau des options, ce qui est acceptable.','Autoloaded options are acceptable'=>'Les options chargées automatiquement sont acceptables','Autoloaded options are configuration settings for plugins and themes that are automatically loaded with every page load in WordPress. Having too many autoloaded options can slow down your site.'=>'Les options chargées automatiquement sont des réglages de configuration des extensions et thèmes qui sont chargés automatiquement avec chaque chargement de page dans WordPress. Trop d’options chargées automatiquement peut ralentir votre site.','https://developer.wordpress.org/advanced-administration/performance/optimization/#persistent-object-cache'=>'https://developer.wordpress.org/advanced-administration/performance/optimization/#persistent-object-cache','https://developer.wordpress.org/advanced-administration/performance/optimization/#caching'=>'https://developer.wordpress.org/advanced-administration/performance/optimization/#caching','Fonts directory size'=>'Taille du répertoire de polices','Fonts directory location'=>'Emplacement du répertoire de polices','The fonts directory'=>'Le répertoire de polices','The following plugins failed to update. If there was a fatal error in the update, the previously installed version has been restored.'=>'Les extensions suivantes n’ont pas pu être mises à jour. S’il y a eu une erreur fatale lors de la mise à jour, la version précédente a été restaurée.','The update for \'%s\' contained a fatal error. The previously installed version has been restored.'=>'La mise à jour de « %s » contenait une erreur fatale. La version précédente a été restaurée.','The update for \'%s\' contained a fatal error. The previously installed version could not be restored.'=>'La mise à jour de « %s » contenait une erreur fatale. La version précédente n’a pas pu être restaurée.','https://developer.wordpress.org/advanced-administration/security/backup/'=>'https://developer.wordpress.org/advanced-administration/security/backup/','If you are a plugin author, you can learn more about how to add the Personal Data Exporter to a plugin.'=>'Si vous êtes l’auteur ou l’autrice d’une extension, vous pouvez en apprendre plus sur comment implémenter l’outil d’export des données personnelles sur votre extension (en anglais).','If you are a plugin author, you can learn more about how to add the Personal Data Eraser to a plugin.'=>'Si vous êtes l’auteur/autrice d’une extension, vous pouvez en apprendre plus sur comment implémenter l’outil de suppression des données personnelles sur votre extension (en anglais).','See everything new'=>'Découvrez toutes les nouveautés','https://wordpress.org/download/releases/6-7/'=>'https://wordpress.org/download/releases/6-7/','For a comprehensive overview of all the new features and enhancements in WordPress %s, please visit the feature-showcase website.'=>'Pour une vision complète de toutes les nouvelles fonctionnalités et améliorations de WordPress %s, veuillez consulter le site de démonstration des fonctionnalités (en anglais).','And much more'=>'Et bien plus encore','patterns menu itemPatterns'=>'Compositions','Change Site Icon'=>'Modifier l’icône du site','Error: %1$s requires %2$d plugin to be installed and activated: %3$s.'=>'Erreur : %1$s nécessite l‘installation et l‘activation d‘%2$d extension : %3$s.' . "\0" . 'Erreur : %1$s nécessite l‘installation et l‘activation de %2$d extensions : %3$s.','pluginUpdate Now'=>'Mettre à jour maintenant','themeInstall Now'=>'Installer maintenant','This plugin cannot be activated because required plugins are missing or inactive.'=>'Cette extension ne peut pas être activée car des extensions nécessaires sont manquantes ou inactives.','This plugin is active but may not function correctly because required plugins are missing or inactive.'=>'Cette extension est active mais pourrait ne pas fonctionner correctement car des extensions nécessaires sont manquantes ou inactives.','Requires: %s'=>'Nécessite : %s','Required by: %s'=>'Nécessaire pour : %s','Note: This plugin cannot be deactivated or deleted until the plugins that require it are deactivated or deleted.'=>'Note : cette extension ne peut pas être désactivée ou supprimée tant que les extensions qui la nécessitent ne sont pas désactivés ou supprimés.','You cannot deactivate this plugin as other plugins depend on it.'=>'Vous ne pouvez pas désactiver cette extension car d‘autres extensions en dépendent.','You cannot delete this plugin as other plugins require it.'=>'Vous ne pouvez pas supprimer cette extension car d’autres extensions la nécessitent.','You cannot activate this plugin as it has unmet requirements.'=>'Vous ne pouvez pas activer cette extension car elle a des prérequis non satisfaits.','You cannot deactivate this plugin as other plugins require it.'=>'Vous ne pouvez pas désactiver cette extension car d‘autres extensions en dépendent.','pluginDeactivate'=>'Désactiver','pluginNetwork Deactivate'=>'Désactiver sur le réseau','pluginActivate'=>'Activer','Additional plugins are required'=>'Des extensions supplémentaires sont nécessaires.','Site ID'=>'Identifiant du site','The PHP version on your server is %1$s, however the new theme version requires %2$s.'=>'La version PHP de votre serveur est %1$s, alors que la nouvelle version du thème nécessite %2$s.','Your WordPress version is %1$s, however the new theme version requires %2$s.'=>'Votre version de WordPress est %1$s, alors que la nouvelle version du thème nécessite %2$s.','pluginNetwork Activate'=>'Activer sur le réseau','%s is already active.'=>'%s est déjà active.','pluginInstall Now'=>'Installer maintenant','Created by a worldwide team of passionate individuals'=>'Créé par une équipe de personnes passionnées, réparties sur toute la planète.','Accessibility improvements'=>'Améliorations de l’accessibilité','Performance updates'=>'Améliorations des performances','Only .zip archives may be uploaded.'=>'Uniquement les archives .zip peuvent être téléversées.','The block widgets require JavaScript. Please enable JavaScript in your browser settings, or activate the Classic Widgets plugin.'=>'Les blocs widget requiert JavaScript. Veuillez activer JavaScript dans les paramètres de votre navigateur ou activez l’extension Classic Widgets.','The block editor requires JavaScript. Please enable JavaScript in your browser settings, or install the Classic Editor plugin.'=>'L’éditeur de blocs requiert JavaScript. Veuillez activer JavaScript dans les paramètres de votre navigateur ou activez l’extension Classic Editor.','The block editor requires JavaScript. Please enable JavaScript in your browser settings, or activate the Classic Editor plugin.'=>'L’éditeur de blocs requiert JavaScript. Veuillez activer JavaScript dans les paramètres de votre navigateur ou activez l’extension Classic Editor.','Add New Site'=>'Ajouter un site','Add New Plugin'=>'Ajouter une extension','Rotate 180°'=>'Rotation de 180°','Rotate 90° right'=>'Rotation de 90° à droite','Rotate 90° left'=>'Rotation de 90° à gauche','%s pattern moved to the Trash.'=>'La composition %s a été mise à la corbeille.' . "\0" . 'Les compositions %s ont été mises à la corbeille.','%s pattern permanently deleted.'=>'Composition %s définitivement supprimée.' . "\0" . 'Compositions %s définitivement supprimées.','%s pattern updated.'=>'Composition %s mise à jour.' . "\0" . 'Compositions %s mises à jour.','When using Bulk Edit, you can change the metadata (categories, author, etc.) for all selected posts at once. To remove a post from the grouping, just click the %sremove button next to its name in the Bulk Edit area that appears.'=>'Lorsque vous utilisez les actions groupées, vous pouvez modifier les métadonnées (catégories, auteur/autrice, etc.) pour tous les articles sélectionnés en une seule fois. Pour retirer un article de la sélection, il suffit de cliquer sur le bouton %sremove situé devant le nom de l’article dans la liste.','Read the WordPress %s Release Notes for information on installation, enhancements, fixed issues, release contributors, learning resources, and the list of file changes.'=>'Lisez les notes de version de WordPress %s pour obtenir des informations sur l’installation, les améliorations, les problèmes corrigés, les contributeurs et contributrices de la version, les ressources d’apprentissage et la liste des modifications apportées aux fichiers.','Explore the WordPress %s Field Guide. Learn about the changes in this release with detailed developer notes to help you build with WordPress.'=>'Explorez le guide des changements techniques de WordPress %s. Découvrez les changements de cette version avec les notes détaillées des développeurs et développeuses qui vous permettent de construire votre site avec WordPress.','Invalid URL format.'=>'Format d’URL invalide.','The PHP version on your server is %1$s, however the new plugin version requires %2$s.'=>'La version de PHP sur votre serveur est %1$s, alors que la nouvelle version de l’extension nécessite une version %2$s.','Your WordPress version is %1$s, however the new plugin version requires %2$s.'=>'La version de WordPress sur votre serveur est %1$s, alors que la nouvelle version de l’extension nécessite une version %2$s.','https://wordpress.org/support/wordpress-version/version-%s/'=>'https://wordpress.org/support/wordpress-version/version-%s/','https://make.wordpress.org/contribute/'=>'https://make.wordpress.org/contribute/','Updates may take several minutes to complete. If there is no feedback after 5 minutes, or if there are errors please refer to the Help section above.'=>'Les mises à jour peuvent prendre plusieurs minutes à se terminer. S’il n’y a aucun retour après 5 minutes, ou s’il y a des erreurs, veuillez vous référer à la section Aide ci-dessus.','Restore Plugin or Theme'=>'Restaurer l’extension ou le thème','On systems with fewer resources, this may lead to server timeouts or resource limits being reached. If you encounter an issue during the update process, please create a support forum topic and reference Rollback in the issue title.'=>'Sur les systèmes avec moins de ressources, ça peut mener à des dépassement de délais serveur ou à atteindre les limites des ressources. Si vous rencontrez un problème lors du processus de mise à jour, veuillez créer un fil de discussion dans le forum d’aide et indiquer Restauration dans le titre du fil.','This feature will create a temporary backup of a plugin or theme before it is upgraded. This backup is used to restore the plugin or theme back to its previous state if there is an error during the update process.'=>'Cette fonctionnalité va créer une sauvegarde temporaire d’une extension ou thème avant sa mise à jour. Cette sauvegarde est utilisée pour restaurer l’extension ou le thème à son état précédent, en cas d’erreur pendant le processus.','The site editor requires JavaScript. Please enable JavaScript in your browser settings.'=>'L’éditeur de site nécessite JavaScript. Veuillez autoriser JavaScript dans vos réglages navigateur.','https://wordpress.org/documentation/article/customize-permalinks/'=>'https://fr.wordpress.org/support/article/using-permalinks/','In a few words, explain what this site is about. Example: “%s.”'=>'En quelques mots, expliquez ce que représente ce site. Exemple : « %s ».','Note: Discouraging search engines does not block access to your site — it is up to search engines to honor your request.'=>'Note : le fait de décourager les moteurs de recherche ne bloque pas l’accès à votre site. Il appartient aux moteurs de recherche d’honorer votre demande.','New custom field name'=>'Nouveau nom de champ personnalisé','Search Media:'=>'Rechercher un média :','Clear Crop'=>'Annuler le recadrage','Apply Crop'=>'Appliquer le recadrage','vertical start position'=>'position verticale de départ','horizontal start position'=>'position horizontale de départ','Starting Coordinates:'=>'Coordonnées de départ :','Crop Image'=>'Recadrer l’image','Images cannot be scaled to a size larger than the original.'=>'Les images ne peuvent pas être mises à l’échelle dans une taille supérieure à celle de l’original.','Save Edits'=>'Enregistrer les modifications','Cancel Editing'=>'Annuler la modification','Could not create the destination directory.'=>'Impossible de créer le répertoire de destination.','Table ordered by E-mail.'=>'Tableau trié par e-mail.','Table ordered by Username.'=>'Tableau trié par identifiant.','Could not delete the temporary backup directory for %s.'=>'Impossible de supprimer le répertoire de sauvegarde temporaire de %s.','Could not restore the original version of %s.'=>'Impossible de restaurer la version originale de %s.','Could not move the old version to the %s directory.'=>'Impossible de déplacer l’ancienne version vers le répertoire %s.','Could not create the %s directory.'=>'Impossible de créer le répertoire %s.','Table ordered by Links.'=>'Tableau trié par liens.','Table ordered by Posts Count.'=>'Tableau trié par nombre de publications.','Table ordered by Slug.'=>'Tableau trié par slug.','Table ordered by Description.'=>'Tableau trié par description.','Table ordered hierarchically.'=>'Tableau trié hiérarchiquement.','Available disk space'=>'Espace disque disponible','Plugin and theme temporary backup directory access'=>'Accès au répertoire de sauvegarde temporaire des extensions et des thèmes','The %1$s directory does not exist, and the server does not have write permissions in %2$s to create it. This directory is used for plugin and theme updates. Please make sure the server has write permissions in %2$s.'=>'Le répertoire %1$s n’existe pas et le serveur n’a pas les droits en écriture dans %2$s pour le créer. Ce répertoire est utilisé pour les mises à jour des extensions et de thèmes. Veuillez vous assurer que le serveur dispose des droits en écriture dans %2$s.','The upgrade directory cannot be created'=>'Le répertoire de mise à niveau ne peut pas être créé','The %s directory exists but is not writable. This directory is used for plugin and theme updates. Please make sure the server has write permissions to this directory.'=>'Le répertoire %s existe mais n’est pas accessible en écriture. Ce répertoire est utilisé pour les mises à jour des extensions et des thèmes. Veuillez vous assurer que le serveur dispose des droits d’écriture sur ce répertoire.','The upgrade directory exists but is not writable'=>'Le répertoire de mise à niveau existe mais n’est pas accessible en écriture','The %s directory exists but is not writable. This directory is used to improve the stability of plugin and theme updates. Please make sure the server has write permissions to this directory.'=>'Le répertoire %s existe mais n’est pas accessible en écriture. Ce répertoire est utilisé pour améliorer la stabilité des mises à jour des extensions et des thèmes. Veuillez vous assurer que le serveur dispose des droits d’écriture sur ce répertoire.','The temporary backup directory exists but is not writable'=>'Le répertoire de sauvegarde temporaire existe mais n’est pas accessible en écriture.','The %s directory exists but is not writable. This directory is used to improve the stability of theme updates. Please make sure the server has write permissions to this directory.'=>'Le répertoire %s existe mais n’est pas accessible en écriture. Ce répertoire est utilisé pour améliorer la stabilité des mises à jour de thèmes. Veuillez vous assurer que le serveur dispose des droits d’écriture sur ce répertoire.','Theme temporary backup directory exists but is not writable'=>'Le répertoire de sauvegarde temporaire des thèmes existe mais n’est pas accessible en écriture','The %s directory exists but is not writable. This directory is used to improve the stability of plugin updates. Please make sure the server has write permissions to this directory.'=>'Le répertoire %s existe mais n’est pas accessible en écriture. Ce répertoire est utilisé pour améliorer la stabilité des mises à jour des extensions. Veuillez vous assurer que le serveur dispose des droits en écriture sur ce répertoire.','Plugin temporary backup directory exists but is not writable'=>'Le répertoire de sauvegarde temporaire des extensions existe mais n’est pas accessible en écriture','The %1$s and %2$s directories exist but are not writable. These directories are used to improve the stability of plugin updates. Please make sure the server has write permissions to these directories.'=>'Les répertoires %1$s et %2$s existent mais ne sont pas accessibles en écriture. Ces répertoires sont utilisés pour améliorer la stabilité des mises à jour des extensions. Veuillez vous assurer que le serveur dispose des droits en écriture sur ces répertoires.','Plugin and theme temporary backup directories exist but are not writable'=>'Les répertoires de sauvegarde temporaire des extensions et des thèmes existent mais ne sont pas accessibles en écriture.','The %s directory cannot be located.'=>'Le répertoire %s est introuvable.','The %s directory used to improve the stability of plugin and theme updates is writable.'=>'Le répertoire %s utilisé pour améliorer la stabilité des mises à jour des extensions et des thèmes est accessible en écriture.','Plugin and theme temporary backup directory is writable'=>'Le répertoire de sauvegarde temporaire des extensions et des thèmes est accessible en écriture','Could not determine available disk space for updates.'=>'Impossible de déterminer l’espace disque disponible pour les mises à jour.','Available disk space is critically low, less than %s available. Proceed with caution, updates may fail.'=>'L’espace disque disponible est extrêmement faible, moins de %s disponibles. Attention, les mises à jour peuvent échouer.','Available disk space is low, less than %s available.'=>'L’espace disque disponible est faible, moins de %s disponibles.','%s available disk space was detected, update routines can be performed safely.'=>'%s d’espace disque disponible a été détecté, les routines de mise à jour peuvent être effectuées en toute sécurité.','Disk space available to safely perform updates'=>'Espace disque disponible pour effectuer les mises à jour en toute sécurité','Table ordered by Hierarchical Menu Order and Title.'=>'Tableau trié par l’ordre hiérarchique du menu et par son titre.','Table ordered by Title.'=>'Tableau trié par titre.','Table ordered by Date.'=>'Tableau trié par date.','Table ordered by Comments.'=>'Tableau trié par commentaires.','Table ordered by Uploaded To.'=>'Tableau trié par destination du téléversement.','Table ordered by Author.'=>'Tableau trié par auteur.','Table ordered by File Name.'=>'Tableau trié par nom de fichier.','Descending.'=>'Décroissant.','Ascending.'=>'Croissant.','Sort descending.'=>'Tri décroissant','Sort ascending.'=>'Tri croissant','Table ordered by Rating.'=>'Tableau trié par évaluation.','Table ordered by Visibility.'=>'Tableau trié par visibilité.','Table ordered by URL.'=>'Tableau trié par URL.','Table ordered by Name.'=>'Tableau trié par nom.','Current Server time'=>'Heure actuelle du serveur','Current UTC time'=>'Heure UTC actuelle','Current time'=>'Heure actuelle','Ordered by Comment Date, descending.'=>'Tableau trié par date de commentaire décroissante.','Table ordered by Post Replied To.'=>'Tableau trié par commentaire lié à l’article.','Table ordered by Comment Author.'=>'Tableau trié par l’auteur du commentaire.','Attempting to restore the previous version.'=>'Tentative de restauration de la version précédente.','More details.'=>'Plus de détails.','Find your team →'=>'Trouvez votre équipe →','Finding the area that aligns with your skills and interests is the first step toward meaningful contribution. With more than 20 Make WordPress teams working on different parts of the open source WordPress project, there’s a place for everyone, no matter what your skill set is.'=>'Trouver le domaine qui correspond à vos compétences et à vos intérêts est le premier pas vers une contribution significative. Avec plus de 20 équipes Make WordPress travaillant sur différentes parties du projet open source WordPress, il y a une place pour tout le monde, quelles que soient vos compétences.','Shape the future of the web with WordPress'=>'Façonnez l’avenir du web avec WordPress','WordPress app: Kotlin, Java, Swift, Objective-C, Vue, Python, and TypeScript.'=>'Applications mobiles WordPress : Kotlin, Java, Swift, Objective-C, Vue, Python et TypeScript.','WordPress Core and Block Editor: HTML, CSS, PHP, SQL, JavaScript, and React.'=>'Cœur de WP et éditeur de blocs : HTML, CSS, PHP, SQL, JavaScript et React.','WordPress embraces new technologies, while being committed to backward compatibility. The WordPress project uses the following languages and libraries:'=>'WordPress adopte de nouvelles technologies, tout en s’engageant à en assurer la rétro-compatibilité. Le projet WordPress utilise les langages et outils suivants :','Contribute to the code, improve the UX, and test the WordPress app.'=>'Contribuez au code, améliorez l’expérience d’utilisation, et testez les applications mobiles WordPress','Write and submit patches to fix bugs or help build new features.'=>'Écrivez et envoyez des corrections de bogues ou contribuez à l’élaboration de nouvelles fonctionnalités','Test new releases and proposed features for the Block Editor.'=>'Testez les nouvelles versions et fonctionnalités proposées pour l’éditeur de blocs.','Find and report bugs in the WordPress core software.'=>'Trouvez et signalez des bogues dans le cœur de WordPress','If you do code, or want to learn how, you can contribute technically in numerous ways:'=>'Si vous codez, ou souhaitez apprendre à le faire, vous pouvez contribuer techniquement de nombreuses manières :','Code-based contribution'=>'Contribution au code de WordPress','Explore ways to reduce the environmental impact of websites.'=>'Explorez les moyens de réduire l’impact environnemental des millions de sites WordPress.','Edit videos and add captions to WordPress.tv.'=>'Gérez les vidéos et ajoutez des sous-titres sur WordPress.tv','Lend your creative imagination to the WordPress UI design.'=>'Laissez libre cours à votre imagination créative pour la conception de l’interface d’utilisation de WordPress','Organize or participate in local Meetups and WordCamps.'=>'Organisez ou participez à des Meetups WordPress locaux ou à des WordCamps','Curate submissions or take photos for the Photo Directory.'=>'Sélectionnez les propositions ou prenez des photos pour le répertoire de photos de WordPress.','Promote the WordPress project to your community.'=>'Faites la promotion du projet WordPress auprès de la communauté','Create and improve WordPress educational materials.'=>'Créez et améliorez le matériel pédagogique de WordPress','Translate WordPress into your local language.'=>'Traduisez WordPress dans votre langue','Write or improve documentation for WordPress.'=>'Rédigez ou améliorez la documentation de WordPress','Share your knowledge in the WordPress support forums.'=>'Partagez vos connaissances sur les forums d’entraide de WordPress','WordPress may thrive on technical contributions, but you don’t have to code to contribute. Here are some of the ways you can make an impact without writing a single line of code:'=>'WordPress se nourrit de contributions techniques, mais il n’est pas nécessaire de savoir coder pour contribuer. Voici quelques-unes des façons qui vous permettent d’avoir un impact sans écrire une seule ligne de code :','No-code contribution'=>'Contributer sans coder','Grow your network and make friends.'=>'Développez votre réseau et faites-vous des amis','Apply your skills or learn new ones.'=>'Appliquez vos compétences ou apprenez-en de nouvelles','Be part of a global open source community.'=>'Rejoignez une communauté mondiale dédiée au logiciel libre','Join the diverse WordPress contributor community and connect with other people who are passionate about maintaining a free and open web.'=>'Rejoignez la communauté WordPress et connectez-vous avec d’autres personnes qui ont à cœur de maintenir le web libre et ouvert.','Do you use WordPress for work, for personal projects, or even just for fun? You can help shape the long-term success of the open source project that powers millions of websites around the world.'=>'Vous utilisez WordPress dans le cadre de votre travail, de vos projets personnels ou simplement pour le plaisir ? Vous pouvez contribuer au succès à long terme du projet open source qui alimente des millions de sites web dans le monde.','Be the future of WordPress'=>'Participez à l‘avenir de WordPress','Learn WordPress is a free resource for new and experienced WordPress users. Learn is stocked with how-to videos on using various features in WordPress, interactive workshops for exploring topics in-depth, and lesson plans for diving deep into specific areas of WordPress.'=>'Learn WordPress est une ressource gratuite pour les personnes qui utilisent WordPress, qu’elles soient débutantes ou expérimentées. Learn contient des vidéos pratiques sur l’utilisation de diverses fonctionnalités de WordPress, des évènements interactifs pour explorer des sujets en profondeur, et des plans de cours pour approfondir des domaines spécifiques de WordPress.','Support forums'=>'forums de support','Documentation on Widgets'=>'Écran Widgets','View takes you to a public author archive which lists all the posts published by the user.'=>'Voir vous emmène sur l’archive publique de l’auteur ou de l’autrice, qui liste toutes ses publications mises en ligne.','Download file downloads the original media file to your device.'=>'Télécharger le fichier télécharge le fichier média original sur votre appareil.','site editor title tagEditor'=>'Éditeur','Documentation on Auto-updates'=>'Documentation sur les mises à jour automatiques','Documentation on date and time formatting.'=>'Documentation sur le formatage de la date et de l’heure.','You can set the language, and WordPress will automatically download and install the translation files (available if your filesystem is writable).'=>'Vous pouvez définir la langue, et WordPress va automatiquement télécharger et installer les fichiers de traduction (disponible si votre système de fichier autorise l’écriture).','If you want site visitors to be able to register themselves, check the membership box. If you want the site administrator to register every new user, leave the box unchecked. In either case, you can set a default user role for all new users.'=>'Si vous voulez que les internautes puissent créer eux-mêmes un compte sur le site, cochez la case d’adhésion. Si vous voulez que l’administrateur ou l’administratrice du site soit responsable de l’inscription de chaque compte chaque, laissez la case non-cochée. Dans tous les cas, vous pouvez définir un rôle par défaut pour tout nouveau compte.','Both WordPress URL and site URL can start with either %1$s or %2$s. A URL starting with %2$s requires an SSL certificate, so be sure that you have one before changing to %2$s. With %2$s, a padlock will appear next to the address in the browser address bar. Both %2$s and the padlock signal that your site meets some basic security requirements, which can build trust with your visitors and with search engines.'=>'L’URL de WordPress et l’URL du site peuvent commencer par %1$s ou %2$s. Une URL commençant par %2$s nécessite de disposer d’un certificat SSL, alors assurez-vous d’en avoir un installé avant de passer à %2$s. Avec %2$s, un cadenas va s’afficher à côté de l’adresse du site dans votre navigateur. Le fait d’avoir une adresse en %2$s et d’afficher le cadenas dans le navigateur est un bon indice que votre site respecte certaines bases de sécurité web, ce qui permet d’établir une relation de confiance avec les internautes tout comme avec les moteurs de recherche.','Though the terms refer to two different concepts, in practice, they can be the same address or different. For example, you can have the core WordPress installation files in the root directory (https://example.com), in which case the two URLs would be the same. Or the WordPress files can be in a subdirectory (https://example.com/wordpress). In that case, the WordPress URL and the site URL would be different.'=>'Même si le terme correspond à deux concepts spécifiques, en pratique cela peut être la même adresse ou des adresses différentes. Par exemple, vous pouvez avoir les fichiers du cœur de WordPress dans le répertoire racine (https://example.com), auquel cas les deux URL seront similaires. Vous pouvez aussi placer les fichiers de WordPress dans un sous répertoire (https://example.com/wordpress). Dans ce cas, l’URL de WordPress et l’URL du site seront différentes.','Two terms you will want to know are the WordPress URL and the site URL. The WordPress URL is where the core WordPress installation files are, and the site URL is the address a visitor uses in the browser to go to your site.'=>'Il est important de différencier URL de WordPress et URL du site. L’URL de WordPress est l’endroit où se trouvent les fichiers d’installation du cœur de WordPress, et l’URL du site est l’adresse qu’un visiteur utilise dans son navigateur pour se rendre sur votre site.','RoboHash (Generated)'=>'RoboHash (généré)','site editor menu itemEditor'=>'Éditeur','Allow trackbacks and pingbacks'=>'Autoriser les rétroliens et pings','https://wordpress.org/documentation/article/assign-custom-fields/'=>'https://fr.wordpress.org/support/article/custom-fields/','https://wordpress.org/documentation/article/what-is-an-excerpt-classic-editor/'=>'https://fr.wordpress.org/support/article/excerpt/','%s expects a non-empty string.'=>'%s attend une chaine non vide.','The destination directory already exists and could not be removed.'=>'Le répertoire de destination existe déjà et ne peut être supprimé.','The destination folder already exists.'=>'Le dossier de destination existe déjà.','The source and destination are the same.'=>'La source et la destination sont identiques.','Expand or collapse the elements by clicking on their headings, and arrange them by dragging their headings or by clicking on the up and down arrows.'=>'Dépliez et repliez les éléments en cliquant sur leur titre, et déplacez-les en glissant leur titre ou en cliquant sur les flèches haut et bas.','Download “%s”'=>'Télécharger « %s »','The "%s" argument must be a non-empty string.'=>'L’argument « %s » doit être une chaine non vide.','Documentation on Writing and Editing Posts'=>'Documentation sur la rédaction d’articles','Documentation on Keyboard Shortcuts'=>'Documentation sur les raccourcis clavier','Documentation on Comment Spam'=>'Documentation sur les commentaires indésirables','Documentation on Customizer'=>'Documentation sur l’outil de personnalisation','https://wordpress.org/download/'=>'https://wordpress.org/download/','This is the final release of WordPress %s'=>'Il s’agit de la version finale de WordPress %s','Site Editor'=>'Éditeur de site','Send password reset sends the user an email with a link to set a new password.'=>'Envoyer une réinitialisation de mot de passe envoie à l’utilisatrice ou l’utilisateur un e-mail contenant un lien pour définir un nouveau mot de passe.','https://developer.wordpress.org/apis/wp-config-php/#wp-environment-type'=>'https://developer.wordpress.org/apis/wp-config-php/#wp-environment-type','Copy URL copies the URL for the media file to your clipboard.'=>'Copier l’URL copie l’URL du fichier média dans votre presse-papier.','View will take you to a public display page for that file.'=>'Le lien Voir vous mènera vers une page publique pour ce fichier.','Delete Permanently will delete the file from the media library (as well as from any posts to which it is currently attached).'=>'Le lien Supprimer définitivement détruira le fichier de la médiathèque (ainsi que dans n’importe quelle publication à laquelle il serait attaché).','Edit takes you to a simple screen to edit that individual file’s metadata. You can also reach that screen by clicking on the media file name or thumbnail.'=>'Modifier vous amène à un écran simple pour modifier les métadonnées de ce fichier individuel. Vous pouvez également accéder à cet écran en cliquant sur le nom ou sur la vignette du média.','Hovering over a row reveals action links that allow you to manage media items. You can perform the following actions:'=>'Le survol d’une ligne révèle des liens d’action qui vous permettent de gérer les médias. Vous pouvez effectuer les actions suivantes :','themesBlock Themes'=>'Thèmes basés sur des blocs','Documentation on Block Themes'=>'Documentation sur les thèmes basés sur des blocs','Block themes'=>'Thèmes basés sur des blocs','With a block theme, you can place and edit blocks without affecting your content by customizing or creating new templates.'=>'Avec un thème basé sur des blocs, vous pouvez disposer et modifier les blocs sans affecter votre contenu en personnalisant ou en créant de nouveaux modèles.','A block theme is a theme that uses blocks for all parts of a site including navigation menus, header, content, and site footer. These themes are built for the features that allow you to edit and customize all parts of your site.'=>'Un thème basé sur des blocs est un thème qui utilise des blocs pour tous les éléments du site, ce qui comprend les menus de navigation, l’entête, le contenu ou encore le pied de page du site. Ces thèmes sont conçus pour prendre en charge les fonctionnalités qui vous permettent de modifier et de personnaliser toutes les parties de votre site.','Recommended items are considered beneficial to your site, although not as important to prioritize as a critical issue, they may include improvements to things such as; Performance, user experience, and more.'=>'Les éléments recommandés sont considérés comme bénéfiques pour votre site. Bien qu’ils ne soient pas aussi prioritaires que les anomalies critiques, ils peuvent inclure des améliorations de performances, d’expérience d’utilisation, et bien plus encore.','Critical issues are items that may have a high impact on your sites performance or security, and resolving these issues should be prioritized.'=>'Les anomalies critiques sont des éléments qui peuvent avoir un impact important sur les performances ou la sécurité de votre site, et la résolution de ces problèmes doit être une priorité.','The theme you are currently using is not compatible with the Site Editor.'=>'Le thème que vous utilisez actuellement n’est pas compatible avec l’éditeur de site.','Configuration rules for %s:'=>'Règles de configuration pour %s :','Customize permalink structure by selecting available tags'=>'Personnalisez la structure des permaliens en sélectionnant les balises disponibles','Select the permalink structure for your website. Including the %s tag makes links easy to understand, and can help your posts rank higher in search engines.'=>'Sélectionnez la structure de permaliens de votre site. L’inclusion de la balise %s rend les liens plus faciles à lire et peut aider le référencement de vos publications.','%s removed from permalink structure'=>'%s retiré de la structure de permaliens','Site Health %s'=>'Santé du site %s','Theme Styles & Block Settings'=>'Styles du thème et réglages des blocs','The minimum recommended version of PHP is %s.'=>'La version minimale recommandée de PHP est %s.','PHP is one of the programming languages used to build WordPress. Newer versions of PHP receive regular security updates and may increase your site’s performance.'=>'PHP est l’un des langages de programmation utilisés pour construire WordPress. Les nouvelles versions de PHP reçoivent des mises à jour de sécurité régulièrement et améliorent les performances de votre site.','Your site is running on an outdated version of PHP (%s), which soon will not be supported by WordPress. Ensure that PHP is updated on your server as soon as possible. Otherwise you will not be able to upgrade WordPress.'=>'Votre site fonctionne sur une version obsolète de PHP (%s), qui ne sera bientôt plus prise en charge par WordPress. Assurez-vous dès que possible que PHP soit mis à jour sur votre serveur. Sinon, vous ne pourrez pas mettre à jour WordPress.','Your site is running on an outdated version of PHP (%s), which does not receive security updates and soon will not be supported by WordPress. Ensure that PHP is updated on your server as soon as possible. Otherwise you will not be able to upgrade WordPress.'=>'Votre site fonctionne sur une version obsolète de PHP (%s), qui ne reçoit pas de mises à jour de sécurité et ne sera bientôt plus prise en charge par WordPress. Assurez-vous que PHP est à jour sur votre serveur dès que possible. Sinon, vous ne pourrez plus mettre à niveau WordPress à l’avenir.','Persistent object cache'=>'Cache objet persistant','Page cache'=>'Cache des page','You should use a persistent object cache'=>'Vous devriez utiliser un cache objet persistant','Your host appears to support the following object caching services: %s.'=>'Votre hébergeur semble prendre en charge les services de cache objet suivants : %s.','Your hosting provider can tell you if a persistent object cache can be enabled on your site.'=>'Votre hébergeur peut vous indiquer si un cache objet persistant peut être activé sur votre site.','A persistent object cache is not required'=>'Le cache objet persistant n’est pas obligatoire','Learn more about persistent object caching.'=>'En savoir plus sur la mise en cache objet persistant.','A persistent object cache makes your site’s database more efficient, resulting in faster load times because WordPress can retrieve your site’s content and settings much more quickly.'=>'Un cache objets persistant rend la base de données de votre site plus efficace, ce qui assure des temps de chargement plus rapides car WordPress peut récupérer le contenu et les réglages de votre site beaucoup plus rapidement.','A persistent object cache is being used'=>'Un cache objet persistant est utilisé','A page cache plugin was not detected.'=>'Aucune extension de mise en cache des pages n’a été détectée.','A page cache plugin was detected.'=>'Une extension de mise en cache des pages a été détectée.','There was %d client caching response header detected:'=>'%d entête de réponse de cache client a été détecté :' . "\0" . '%d entêtes de réponses de cache client ont été détectés :','No client caching response headers were detected.'=>'Aucun entête de réponse de cache client n’a été détecté.','Median server response time was %1$s milliseconds. It should be less than the recommended %2$s milliseconds threshold.'=>'Le temps de réponse médian du serveur était de %1$s millisecondes. Il devrait être inférieur au seuil recommandé de %2$s millisecondes.','Median server response time was %1$s milliseconds. This is less than the recommended %2$s milliseconds threshold.'=>'Le temps de réponse médian du serveur était de %1$s millisecondes. C’est moins que le seuil recommandé de %2$s millisecondes.','Server response time could not be determined. Verify that loopback requests are working.'=>'Le temps de réponse du serveur n’a pas pu être déterminé. Vérifiez que les boucles de requêtes fonctionnent.','Page cache is detected but the server response time is still slow'=>'La mise en cache des pages est détectée mais le temps de réponse du serveur est toujours lent','Page cache is not detected and the server response time is slow'=>'La mise en cache des pages n’est pas détectée et le temps de réponse du serveur est lent','Page cache is detected and the server response time is good'=>'La mise en cache des pages est détectée et le temps de réponse du serveur est bon','Page cache is not detected but the server response time is OK'=>'La mise en cache des pages n’est pas détectée mais le temps de réponse du serveur est OK','Unable to detect page cache due to possible loopback request problem. Please verify that the loopback request test is passing. Error: %1$s (Code: %2$s)'=>'Impossible de détecter le cache de la page en raison d’un éventuel problème de boucle de requête. Veuillez vérifier que le test de boucle de requête passe correctement. Erreur : %1$s (code : %2$s)','Unable to detect the presence of page cache'=>'Impossible de détecter la présence de la mise en cache des pages','Learn more about page cache'=>'En savoir plus sur la mise en cache des pages','Page cache is detected by looking for an active page cache plugin as well as making three requests to the homepage and looking for one or more of the following HTTP client caching response headers:'=>'Le cache de page est détecté en recherchant une éventuelle extension de cache active sur le site, et aussi en effectuant trois requêtes sur la page d’accueil et en recherchant un ou plusieurs entêtes de réponse de mise en cache du client HTTP parmi les entêtes suivants :','Page cache enhances the speed and performance of your site by saving and serving static pages instead of calling for a page every time a user visits.'=>'L’utilisation de la mise en cache des pages améliore la vitesse et les performances de votre site en servant des pages statiques au lieu de générer entièrement chaque page à chaque visite d’un internaute.','If you are still seeing this warning after having tried the actions below, you may need to contact your hosting provider for further assistance.'=>'Si vous voyez toujours cet avertissement après avoir essayé les actions ci-dessous, vous devriez peut-être contacter votre hébergeur pour obtenir de l’aide.','The Authorization header is used by third-party applications you have approved for this site. Without this header, those apps cannot connect to your site.'=>'L’entête d’autorisation est utilisé par les applications tierces que vous avez approuvées pour ce site. Sans cet entête, ces applications ne peuvent pas se connecter à votre site.','When testing the REST API, an unexpected result was returned:'=>'Lors du test de l’API REST, un résultat inattendu a été retourné :','REST API Response: (%1$s) %2$s'=>'Réponse de l’API REST : (%1$s) %2$s','REST API Endpoint: %s'=>'Point de terminaison de l’API REST : %s','When testing the REST API, an error was encountered:'=>'Lors du test de l’API REST, une erreur s’est produite :','Your site is running on an outdated version of PHP (%s), which does not receive security updates. It should be updated.'=>'Votre site fonctionne sur une version obsolète de PHP (%s), qui ne reçoit pas les mises à jour de sécurité. Une mise à jour est nécessaire.','Your site is running on an outdated version of PHP (%s), which does not receive security updates and soon will not be supported by WordPress.'=>'Votre site fonctionne sur une version obsolète de PHP (%s), qui ne reçoit plus de mises à jour de sécurité et ne sera bientôt plus prise en charge par WordPress.','Requirements'=>'Prérequis','Your site is running on an outdated version of PHP (%s), which soon will not be supported by WordPress.'=>'Votre site fonctionne avec une version obsolète de PHP (%s), qui ne sera bientôt plus prise en charge par WordPress.','PHP is one of the programming languages used to build WordPress. Newer versions of PHP receive regular security updates and may increase your site’s performance. The minimum recommended version of PHP is %s.'=>'PHP est l’un des langages de programmation utilisés pour construire WordPress. Les nouvelles versions de PHP reçoivent des mises à jour de sécurité régulièrement et améliorent les performances de votre site. La version minimale recommandée de PHP est %s.','Your site does not have any installed themes.'=>'Votre site ne dispose d’aucun thème installé.','Your site does not have any active plugins.'=>'Votre site ne dispose d’aucune extension installée.','Another attempt will be made with the next release.'=>'Une autre tentative sera faite avec la prochaine version.','The %1$s constant is defined as %2$s'=>'La constante %1$s est définie à %2$s','The %1$s argument must be a non-empty string for %2$s.'=>'Le paramètre %1$s doit être une chaîne non vide pour %2$s.','The %s argument must be an array.'=>'Le paramètre %s doit être un tableau.','- %1$s version %2$s%3$s'=>'- %1$s version %2$s%3$s','- %1$s (from version %2$s to %3$s)%4$s'=>'- %1$s (de la version %2$s vers %3$s)%4$s','Reach out to WordPress Core developers to ensure you\'ll never have this problem again.'=>'Contactez les développeuses et développeurs du cœur de WordPress pour vous assurer que vous ne rencontrerez plus ce problème.','Important! Your version of WordPress (%1$s) will stop receiving security updates in the near future. To keep your site secure, please update to the latest version of WordPress.'=>'Important ! Votre version de WordPress (%1$s) ne recevra bientôt plus aucune mise à jour de sécurité. Pour garder votre site sécurisé, veuillez mettre à jour vers la dernière version de WordPress.','Important! Your version of WordPress (%1$s) is no longer supported, you will not receive any security updates for your website. To keep your site secure, please update to the latest version of WordPress.'=>'Important ! Votre version de WordPress (%1$s) n‘est plus prise en charge, vous ne recevrez aucune mise à jour de sécurité pour votre site. Pour garder votre site sécurisé, veuillez mettre à jour vers la dernière version de WordPress.','https://make.wordpress.org/core/wordpress-%s-field-guide/'=>'https://fr.wordpress.org/2024/10/28/guide-des-changements-techniques-de-wordpress-6-7/','Learn more about WordPress %s'=>'En savoir plus sur WordPress %s','Please type your comment text.'=>'Veuillez saisir le texte de votre commentaire.','You cannot remove users.'=>'Vous ne pouvez pas supprimer ces comptes.','Application passwords grant access to the %2$s site on the network as you have Super Admin rights.'=>'Les mots de passe d’applications donnent accès à l’unique site du réseau, car vous disposez de droits Super Admin.' . "\0" . 'Les mots de passe d’applications donnent accès aux %2$s sites du réseau, car vous disposez de droits Super Admin.','WordPress has been updated! Next and final step is to update your database to the newest version.'=>'WordPress a été mis à jour ! La dernière étape est de mettre à jour votre base de données.','Documentation on Managing Themes'=>'Documentation sur la gestion des thèmes','This information is being used to create a %s file.'=>'Ces informations sont utilisées pour créer un fichier %s.','Welcome to WordPress. Before getting started, you will need to know the following items.'=>'Bienvenue sur WordPress. Avant de commencer, vous aurez besoin de connaître les éléments suivants.','Settings save failed.'=>'L’enregistrement des réglages a échoué.','After your Privacy Policy page is set, you should edit it.'=>'Après avoir défini votre page de politique de confidentialité, vous devez la modifier.','Error: Your %1$s file is not writable, so updating it automatically was not possible. These are the mod_rewrite rules you should have in your %1$s file. Click in the field and press %3$s (or %4$s on Mac) to select all.'=>'Erreur : votre fichier %1$s n’est pas accessible en écriture, il n’a donc pas été possible de le mettre à jour automatiquement. Voici les règles mod_rewrite que vous devriez avoir dans votre fichier %1$s. Cliquez dans le champs et appuyez sur %3$s (ou %4$s sur Mac) pour tout sélectionner.','Error: Your %1$s file is not writable, so updating it automatically was not possible. This is the URL rewrite rule you should have in your %1$s file. Click in the field and press %3$s (or %4$s on Mac) to select all. Then insert this rule inside of the %5$s element in %1$s file.'=>'Erreur : votre fichier %1$s n’est pas accessible en écriture, donc sa mise à jour automatique n’a pas été possible. Il s’agit de la règle de réécriture d’URL que vous devriez avoir dans le fichier %1$s. Cliquez dans le champ et appuyez sur %3$s (ou %4$s sur Mac) pour tout sélectionner. Ensuite, insérez cette règle dans l’élément %5$s du fichier %1$s.','An avatar is an image that can be associated with a user across multiple websites. In this area, you can choose to display avatars of users who interact with the site.'=>'Un avatar est une image qui peut être associée à un compte sur plusieurs sites. Dans cette zone, vous pouvez choisir d’afficher les avatars des comptes qui interagissent avec le site.','Change Permalink Structure'=>'Modifier la structure des permaliens','Howdy ###USERNAME###, +return ['x-generator'=>'GlotPress/4.0.1','translation-revision-date'=>'2025-06-12 14:40:36+0000','plural-forms'=>'nplurals=2; plural=n > 1;','project-id-version'=>'WordPress - 6.8.x - Development - Administration','language'=>'fr','messages'=>['start of week1'=>'1','default GMT offset or timezone string0'=>'Europe/Paris','Speculative loading speeds up navigation by preloading links before users navigate to them, bcrypt hashing strengthens password security automatically, and database optimizations improve performance.'=>'Le chargement spéculatif accélère la navigation en préchargeant les liens avant que les internautes ne les consultent, le hachage bcrypt renforce automatiquement la sécurité des mots de passe, et les optimisations de la base de données améliorent les performances.','You cannot upgrade because WordPress %2$s requires the %3$s PHP extension.'=>'Vous ne pouvez pas effectuer la mise à niveau car WordPress %2$s nécessite l’extension PHP %3$s.','An error occurred while deleting the theme.'=>'Une erreur s‘est produite lors de la suppression du thème.','Add Theme'=>'Ajouter un thème','WordPress.org takes privacy and transparency very seriously. To learn more about what data is collected, and how it is used, please visit the WordPress.org Privacy Policy.'=>'WordPress.org prend en compte la confidentialité et la transparence vraiment sérieusement. Pour en apprendre plus à propos des données collectées, et comment elles sont utilisées, veuillez visiter la politique de confidentialité de WordPress.org.','WordPress.org takes privacy and transparency very seriously'=>'WordPress.org prend la confidentialité et la transparence très au sérieux','File: %s'=>'Fichier : %s','Add User'=>'Ajouter un compte','Add Plugin'=>'Ajouter une extension','design menu itemDesign'=>'Conception','Collapse Main Menu'=>'Replier le menu principal','Invalid item ID. You can view all media items in the Media Library.'=>'ID d’élément invalide. Vous pouvez voir tous les éléments media dans la Médiathèque.','An error occurred during the upload process.'=>'Une erreur s’est produite lors du processus de téléversement.','You cannot install because WordPress %2$s requires the %3$s PHP extension.'=>'Vous ne pouvez pas installer car WordPress %2$s nécessite l’extension PHP %3$s.','Add Custom Field:'=>'Ajouter un champ personnalisé :','An error occurred while loading the comparison. Please refresh the page and try again.'=>'Une erreur s’est produite lors du chargement de la comparaison. Veuillez actualiser la page et réessayer.','+ Add Category'=>'+ Ajouter une Catégorie','Does not exist'=>'N’existe pas','robots.txt'=>'robots.txt','WordPress cannot dynamically serve a %s file due to a lack of rewrite rule support'=>'WordPress ne peut pas traiter dynamiquement un fichier %s en raison de l‘absence de la prise en charge des règles de réécriture.','Your site is using the dynamic %s file which is generated by WordPress.'=>'Votre site utilise le fichier %s dynamique qui est généré par WordPress.','There is a static %s file in your installation folder. WordPress cannot dynamically serve one.'=>'Il y a un fichier %s statique dans votre dossier d’installation. WordPress ne peut pas l’exploiter dynamiquement.','The active theme does not support uploading a custom header image. Please ensure your theme supports custom headers and try again.'=>'Le thème actif ne prend pas en charge le téléversement d’une image d’entête personnalisée. Veuillez vous assurer que le thème prenne en charge les entêtes personnalisés et réessayer.','An error occurred while processing your header image.'=>'Une erreur s’est produite lors du traitement de l’image d’entête.','Please try again or start a new changeset. This changeset cannot be further modified.'=>'Veuillez réessayer ou commencer un nouveau jeu de modifications. Ce jeu de modifications ne peut pas être modifié davantage.','An error occurred while saving your changeset.'=>'Une erreur s’est produite lors de l’enregistrement de votre jeu de modifications.','Triage Lead'=>'Responsable du triage','Tech Lead'=>'Responsable technique','Default Theme Development Lead'=>'Responsable du développement du thème par défaut','Default Theme Design Lead'=>'Responsable de la conception du thème natif','Performance Lead'=>'Responsable des performances','Design Lead'=>'Responsable du design','Test Lead'=>'Responsable des tests','Documentation Lead'=>'Responsable de la documentation','Editor Triage Lead'=>'Responsable du triage de l’éditeur','Editor Tech Lead'=>'Responsable technique côté éditeur','Core Triage Lead'=>'Responsable du triage du cœur','Core Tech Lead'=>'Responsable technique','Minor Release Lead'=>'Responsable de la version mineure','Release Coordination'=>'Coordination de la version','WordPress 6.8 packs a wide range of performance fixes and enhancements to speed up everything from editing to browsing. Beyond speculative loading, WordPress 6.8 pays special attention to the block editor, block type registration, and query caching. Plus, imagine never waiting longer than 50 milliseconds—for any interaction. In WordPress 6.8, the Interactivity API takes a first step toward that goal.'=>'WordPress 6.8 propose de nombreuses corrections et améliorations de performances pour accélérer l’ensemble de votre site, de l’administration aux temps de chargement ressentis par les personnes qui visitent votre site. Au-delà du chargement spéculatif désormais intégré nativement, WordPress 6.8 accorde une attention particulière à l’éditeur de blocs, à l’enregistrement des types de blocs et à la mise en cache des requêtes. N’attendez jamais plus de 50 millisecondes entre chaque interaction. Dans WordPress 6.8, l’API de gestion de l’interactivité constitue un premier pas vers cet objectif.','Work continues on optimizing cache key generation in the WP_Query class. The goal is, as ever, to boost your site’s performance, in this case by taking some more of the load off your database. This is especially good if you get a lot of traffic.'=>'Le travail se poursuit sur l‘optimisation de la génération des clés de cache dans la classe WP_Query. L‘objectif est, comme toujours, d‘améliorer les performances de votre site, dans ce cas en réduisant davantage la charge de votre base de données. Cela est particulièrement utile si vous avez beaucoup de trafic.','Take a load off the database'=>'Allégement de la base de données','100+ accessibility fixes and enhancements touch a broad spectrum of the WordPress experience. This release includes fixes to every bundled theme, improvements to the navigation menu management, the customizer, and simplified labeling. The Block Editor has over 70 improvements to blocks, DataViews, and to its overall user experience.'=>'Plus de 100 correctifs et améliorations en matière d’accessibilité touchent un large champ de l’expérience WordPress. Cette version inclut des correctifs pour chaque thème natif, des améliorations de la gestion des menus de navigation, de l’outil de personnalisation, et un étiquetage simplifié. L’éditeur de blocs bénéficie de plus de 70 améliorations concernant les blocs, les vues de données, et l’expérience globale des utilisateurs et utilisatrices.','Now passwords are harder to crack with bcrypt hashing, which takes a lot more computing power to break. This strengthens overall security, as do other encryption improvements across WordPress. You don’t need to do anything—everything updates automatically.'=>'Les mots de passe sont désormais plus difficiles à déchiffrer grâce au hachage bcrypt, qui nécessite beaucoup plus de puissance de calcul pour être cassé. Cela renforce la sécurité globale, tout comme d‘autres améliorations de chiffrement dans WordPress. Vous n’avez rien à faire : tout se met à jour automatiquement.','Stronger password security with bcrypt'=>'Sécurité renforcée des mots de passe avec bcrypt','In WordPress 6.8, pages load faster than ever. When you or your user hovers over or clicks a link, WordPress may preload the next page, for a smoother, near-instant experience. The system balances speed and efficiency, and you can control how it works, with a plugin or your own code. This feature only works in modern browsers—older ones will simply ignore it without any impact.'=>'Dans WordPress 6.8, les pages se chargent plus rapidement que jamais. Lorsque vous ou tout internaute survolez ou cliquez sur un lien, WordPress peut précharger la page suivante pour une expérience plus fluide et quasi instantanée. Le système équilibre vitesse et efficacité, et vous pouvez contrôler son fonctionnement avec une extension ou votre propre code. Cette fonctionnalité fonctionne uniquement dans les navigateurs modernes ; les anciens l’ignoreront simplement sans aucun impact.','Near-instant page loads, thanks to Speculative Loading'=>'Chargement quasi instantané des pages, grâce au chargement spéculatif','Easier ways to see your options in Data Views, and you can exclude sticky posts from the Query Loop. Plus, you’ll find lots of little improvements in the editor that smooth your way through everything you build.'=>'Visualisez plus facilement vos options dans les vues de données et excluez les publications épinglées de la boucle de requête. De plus, l’éditeur propose de nombreuses améliorations qui simplifient la création de contenu.','Plus, now you can see it in Classic themes that have editor-styles or a theme.json file. Find the Style Book under Appearance > Design and use it to preview your theme’s evolution, as you edit CSS or make changes in the Customizer.'=>'De plus, vous pouvez désormais en profiter dans les thèmes classiques dotés de styles destinés à l’éditeur ou d’un fichier theme.json. Vous pouvez accéder au guide de styles dans Apparence > Design. Utilisez-le pour prévisualiser l’évolution de votre thème lorsque vous modifiez ses CSS ou effectuez des modifications dans l’outil de personnalisation.','Plus, now you can see it in Classic themes that have editor-styles or a theme.json file. Find the Style Book under Appearance > Design and use it to preview your theme’s evolution, as you edit CSS or make changes in the Customizer.'=>'De plus, vous pouvez désormais en profiter dans les thèmes classiques dotés de styles destinés à l’éditeur ou d’un fichier theme.json. Vous pouvez accéder au guide de styles dans Apparence > Design. Utilisez-le pour prévisualiser l’évolution de votre thème lorsque vous modifiez ses CSS ou effectuez des modifications dans l’outil de personnalisation.','The Style Book has a new, structured layout and clearer labels, to make it even easier to edit colors, typography—almost all your site styles—in one place.'=>'Le guide de styles présente une nouvelle mise en page structurée et des libellés plus clairs, pour faciliter encore plus la modification des couleurs, de la typographie et de presque tous les styles de votre site, en un seul endroit.','The Style Book gets a cleaner look—and a few new tricks'=>'Le guide de style fait peau neuve et s’enrichit de quelques nouvelles fonctionnalités','The Style Book now has a structured layout and works with Classic themes, giving you more control over global styles.'=>'Le guide de styles a maintenant une mise en page structurée et fonctionne désormais avec les thèmes classiques, ce qui vous apporte plus de contrôle sur les styles globaux de votre site.','WordPress 6.8 polishes and refines the tools you use every day, making your site faster, more secure, and easier to manage.'=>'WordPress 6.8 améliore et affine les outils que vous utilisez tous les jours, rendant votre site plus rapide, plus sûr et plus facile à gérer.','A release polished to a high sheen.'=>'Une version peaufinée à la perfection','If a dependent plugin is missing some dependencies, its activation button will be disabled until the required dependencies are activated.'=>'S‘il manque des dépendances à une extension dépendante, son bouton d‘activation sera désactivé jusqu‘à ce que les dépendances nécessaires soient activées.','If a required plugin is deleted, a notice will be displayed on the Plugin administration screen informing the user that there is some missing dependencies to install and/or activate. Additionally, each plugin whose dependencies are not met will have an error notice on their plugin row.'=>'Si une extension requise est supprimée, une notification sera affichée sur l’écran d’administration des extensions pour indiquer que des dépendances manquantes doivent être installées ou activées. De plus, chaque extension dont les dépendances ne sont pas présentes auront une notification d’erreur dans la ligne correspondant à l’extension.','Plugin Dependencies aims to make the process of installing and activating add-ons (dependents) and the plugins they rely on (dependencies) consistent and easy.'=>'Les dépendances d’extensions visent à rendre cohérent et à simplifier le processus d’installation et d’activation des modules (extensions dépendantes d’une autre) et des extensions requises pour faire fonctionner le module (dépendances).','Dependencies'=>'Dépendances','Comments to display at the top of each page'=>'Commentaires à afficher en haut de chaque page','Comments page to display by default'=>'Page des commentaires à afficher par défaut','Top level comments per page'=>'Commentaires de premier niveau par page','Break comments into pages'=>'Diviser les commentaires en pages','Comment Pagination'=>'Pagination des commentaires','Number of levels for threaded (nested) comments'=>'Nombre de niveaux pour les commentaires en fil (imbriqués)','Enable threaded (nested) comments'=>'Activer les commentaires en fil (imbriqués)','Close comments when post is how many days old'=>'Fermez les commentaires lorsque la publication est datée de plusieurs jours','Automatically close comments on old posts'=>'Fermez automatiquement les commentaires sur les publications anciennes.','Menu order updated'=>'Mise à jour de l’ordre du menu','Menu parent updated'=>'Mise à jour du menu parent','Change revision by using the left and right arrow keys'=>'Changez de révision en utilisant les flèches gauche et droite','Select a revision'=>'Sélectionnez une révision','A directory could not be read.'=>'Un répertoire n’a pu être lu.','Database Extension'=>'Extension de la base de données','Empty value'=>'Valeur vide','Max simultaneous file uploads'=>'Nombre maximal de fichiers téléversés en simultané.','Menu Order'=>'Ordre du menu','Menu Parent'=>'Menu parent','Skip to Editor'=>'Aller à l’éditeur','WordPress %s Field Guide'=>'Guide technique de WordPress %s','WordPress %s Release Notes'=>'Notes de version de WordPress %s','The directory does not exist.'=>'Le répertoire n’existe pas.','Common Errors'=>'Erreurs fréquentes (en anglais)','Documentation on Editing Files'=>'Documentation sur la modification de fichiers (en anglais)','Documentation on Editing Plugins'=>'Documentation sur la modification d’extensions (en anglais)','https://developer.wordpress.org/plugins/settings/settings-api/'=>'https://developer.wordpress.org/plugins/settings/settings-api/','The %1$s setting is unregistered. Unregistered settings are deprecated. See documentation on the Settings API.'=>'Le réglage %1$s n’est pas enregistré. Les réglages non-enregistrés sont obsolètes. Voir la documentation sur les réglages API.','https://developer.wordpress.org/advanced-administration/wordpress/update-services/'=>'https://developer.wordpress.org/advanced-administration/wordpress/update-services/','https://developer.wordpress.org/advanced-administration/wordpress/feeds/'=>'https://developer.wordpress.org/advanced-administration/wordpress/feeds/','Documentation on Nginx configuration.'=>'Documentation sur les réglages de Nginx (en anglais).','https://developer.wordpress.org/advanced-administration/server/wordpress-in-directory/'=>'https://developer.wordpress.org/advanced-administration/server/wordpress-in-directory/','Documentation on Site Management'=>'Documentation sur la gestion de site (en anglais)','Type of relationnone'=>'aucune','No URL Provided.'=>'L’URL n’est pas renseignée.','https://developer.wordpress.org/advanced-administration/server/file-permissions/'=>'https://developer.wordpress.org/advanced-administration/server/file-permissions/','Package not available.'=>'Paquet indisponible.','Autoloaded options'=>'Options chargées automatiquement','More info about optimizing autoloaded options'=>'Plus d’informations sur l’optimisation des options automatiquement','https://developer.wordpress.org/advanced-administration/performance/optimization/#autoloaded-options'=>'https://developer.wordpress.org/advanced-administration/performance/optimization/#autoloaded-options','Your site has %1$s autoloaded options (size: %2$s) in the options table, which could cause your site to be slow. You can review the options being autoloaded in your database and remove any options that are no longer needed by your site.'=>'Votre site a %1$s options chargées automatiquement (taille : %2$s) dans le tableau des options, ce qui peut ralentir votre site. Vous pouvez revoir les options chargées automatiquement dans votre base de données et retirer toutes options qui ne seraient plus nécessaires à votre site.','Autoloaded options could affect performance'=>'Les options chargées automatiquement peuvent affecter les performances','Your site has %1$s autoloaded options (size: %2$s) in the options table, which is acceptable.'=>'Votre site a %1$s options chargées automatiquement (taille : %2$s) dans le tableau des options, ce qui est acceptable.','Autoloaded options are acceptable'=>'Les options chargées automatiquement sont acceptables','Autoloaded options are configuration settings for plugins and themes that are automatically loaded with every page load in WordPress. Having too many autoloaded options can slow down your site.'=>'Les options chargées automatiquement sont des réglages de configuration des extensions et thèmes qui sont chargés automatiquement avec chaque chargement de page dans WordPress. Trop d’options chargées automatiquement peut ralentir votre site.','https://developer.wordpress.org/advanced-administration/performance/optimization/#persistent-object-cache'=>'https://developer.wordpress.org/advanced-administration/performance/optimization/#persistent-object-cache','https://developer.wordpress.org/advanced-administration/performance/optimization/#caching'=>'https://developer.wordpress.org/advanced-administration/performance/optimization/#caching','Fonts directory size'=>'Taille du répertoire de polices','Fonts directory location'=>'Emplacement du répertoire de polices','The fonts directory'=>'Le répertoire de polices','The following plugins failed to update. If there was a fatal error in the update, the previously installed version has been restored.'=>'Les extensions suivantes n’ont pas pu être mises à jour. S’il y a eu une erreur fatale lors de la mise à jour, la version précédente a été restaurée.','The update for \'%s\' contained a fatal error. The previously installed version has been restored.'=>'La mise à jour de « %s » contenait une erreur fatale. La version précédente a été restaurée.','The update for \'%s\' contained a fatal error. The previously installed version could not be restored.'=>'La mise à jour de « %s » contenait une erreur fatale. La version précédente n’a pas pu être restaurée.','https://developer.wordpress.org/advanced-administration/security/backup/'=>'https://developer.wordpress.org/advanced-administration/security/backup/','If you are a plugin author, you can learn more about how to add the Personal Data Exporter to a plugin.'=>'Si vous êtes l’auteur ou l’autrice d’une extension, vous pouvez en apprendre plus sur comment implémenter l’outil d’export des données personnelles sur votre extension (en anglais).','If you are a plugin author, you can learn more about how to add the Personal Data Eraser to a plugin.'=>'Si vous êtes l’auteur ou l’autrice d’une extension, vous pouvez en apprendre plus sur comment implémenter l’outil de suppression des données personnelles sur votre extension (en anglais).','See everything new'=>'Découvrez toutes les nouveautés','https://wordpress.org/download/releases/6-8/'=>'https://wordpress.org/download/releases/6-8/','For a comprehensive overview of all the new features and enhancements in WordPress %s, please visit the feature-showcase website.'=>'Pour une vision complète de toutes les nouvelles fonctionnalités et améliorations de WordPress %s, veuillez consulter le site de démonstration des fonctionnalités (en anglais).','And much more'=>'Et bien plus encore','patterns menu itemPatterns'=>'Compositions','Change Site Icon'=>'Modifier l’icône du site','Error: %1$s requires %2$d plugin to be installed and activated: %3$s.'=>'Erreur : %1$s nécessite l‘installation et l‘activation d‘%2$d extension : %3$s.' . "\0" . 'Erreur : %1$s nécessite l‘installation et l‘activation de %2$d extensions : %3$s.','pluginUpdate Now'=>'Mettre à jour maintenant','themeInstall Now'=>'Installer maintenant','This plugin cannot be activated because required plugins are missing or inactive.'=>'Cette extension ne peut pas être activée car des extensions nécessaires sont manquantes ou inactives.','This plugin is active but may not function correctly because required plugins are missing or inactive.'=>'Cette extension est active mais pourrait ne pas fonctionner correctement car des extensions nécessaires sont manquantes ou inactives.','Requires: %s'=>'Nécessite : %s','Required by: %s'=>'Nécessaire pour : %s','Note: This plugin cannot be deactivated or deleted until the plugins that require it are deactivated or deleted.'=>'Note : cette extension ne peut pas être désactivée ou supprimée tant que les extensions qui la nécessitent ne sont pas désactivés ou supprimés.','You cannot deactivate this plugin as other plugins depend on it.'=>'Vous ne pouvez pas désactiver cette extension car d‘autres extensions en dépendent.','You cannot delete this plugin as other plugins require it.'=>'Vous ne pouvez pas supprimer cette extension car d’autres extensions la nécessitent.','You cannot activate this plugin as it has unmet requirements.'=>'Vous ne pouvez pas activer cette extension car elle a des prérequis non satisfaits.','You cannot deactivate this plugin as other plugins require it.'=>'Vous ne pouvez pas désactiver cette extension car d‘autres extensions en dépendent.','pluginDeactivate'=>'Désactiver','pluginNetwork Deactivate'=>'Désactiver sur le réseau','pluginActivate'=>'Activer','Additional plugins are required'=>'Des extensions supplémentaires sont nécessaires.','Site ID'=>'Identifiant du site','The PHP version on your server is %1$s, however the new theme version requires %2$s.'=>'La version PHP de votre serveur est %1$s, alors que la nouvelle version du thème nécessite %2$s.','Your WordPress version is %1$s, however the new theme version requires %2$s.'=>'Votre version de WordPress est %1$s, alors que la nouvelle version du thème nécessite %2$s.','pluginNetwork Activate'=>'Activer sur le réseau','%s is already active.'=>'%s est déjà active.','pluginInstall Now'=>'Installer maintenant','Created by a worldwide team of passionate individuals'=>'Créé par une équipe de personnes passionnées, réparties sur toute la planète.','Accessibility improvements'=>'Amélioration de l’accessibilité','Performance updates'=>'Amélioration des performances','Only .zip archives may be uploaded.'=>'Uniquement les archives .zip peuvent être téléversées.','The block widgets require JavaScript. Please enable JavaScript in your browser settings, or activate the Classic Widgets plugin.'=>'Les blocs widget requiert JavaScript. Veuillez activer JavaScript dans les paramètres de votre navigateur ou activez l’extension Classic Widgets.','The block editor requires JavaScript. Please enable JavaScript in your browser settings, or install the Classic Editor plugin.'=>'L’éditeur de blocs requiert JavaScript. Veuillez activer JavaScript dans les paramètres de votre navigateur ou activez l’extension Classic Editor.','The block editor requires JavaScript. Please enable JavaScript in your browser settings, or activate the Classic Editor plugin.'=>'L’éditeur de blocs requiert JavaScript. Veuillez activer JavaScript dans les paramètres de votre navigateur ou activez l’extension Classic Editor.','Add New Site'=>'Ajouter un site','Rotate 180°'=>'Rotation de 180°','Rotate 90° right'=>'Rotation de 90° à droite','Rotate 90° left'=>'Rotation de 90° à gauche','%s pattern moved to the Trash.'=>'La composition %s a été mise à la corbeille.' . "\0" . 'Les compositions %s ont été mises à la corbeille.','%s pattern permanently deleted.'=>'Composition %s définitivement supprimée.' . "\0" . 'Compositions %s définitivement supprimées.','%s pattern updated.'=>'Composition %s mise à jour.' . "\0" . 'Compositions %s mises à jour.','When using Bulk Edit, you can change the metadata (categories, author, etc.) for all selected posts at once. To remove a post from the grouping, just click the %sremove button next to its name in the Bulk Edit area that appears.'=>'Lorsque vous utilisez les actions groupées, vous pouvez modifier les métadonnées (catégories, auteur/autrice, etc.) pour tous les articles sélectionnés en une seule fois. Pour retirer un article de la sélection, il suffit de cliquer sur le bouton %sremove situé devant le nom de l’article dans la liste.','Read the WordPress %s Release Notes for information on installation, enhancements, fixed issues, release contributors, learning resources, and the list of file changes.'=>'Lisez les notes de version de WordPress %s pour obtenir des informations sur l’installation, les améliorations, les problèmes corrigés, les contributeurs et contributrices de la version, les ressources d’apprentissage et la liste des modifications apportées aux fichiers.','Explore the WordPress %s Field Guide. Learn about the changes in this release with detailed developer notes to help you build with WordPress.'=>'Explorez le guide des changements techniques de WordPress %s. Découvrez les changements de cette version avec les notes détaillées des développeurs et développeuses qui vous permettent de construire votre site avec WordPress.','Invalid URL format.'=>'Format d’URL invalide.','The PHP version on your server is %1$s, however the new plugin version requires %2$s.'=>'La version de PHP sur votre serveur est %1$s, alors que la nouvelle version de l’extension nécessite une version %2$s.','Your WordPress version is %1$s, however the new plugin version requires %2$s.'=>'La version de WordPress sur votre serveur est %1$s, alors que la nouvelle version de l’extension nécessite une version %2$s.','https://wordpress.org/support/wordpress-version/version-%s/'=>'https://wordpress.org/support/wordpress-version/version-%s/','https://make.wordpress.org/contribute/'=>'https://make.wordpress.org/contribute/','Updates may take several minutes to complete. If there is no feedback after 5 minutes, or if there are errors please refer to the Help section above.'=>'Les mises à jour peuvent prendre plusieurs minutes à se terminer. S’il n’y a aucun retour après 5 minutes, ou s’il y a des erreurs, veuillez vous référer à la section Aide ci-dessus.','Restore Plugin or Theme'=>'Restaurer l’extension ou le thème','On systems with fewer resources, this may lead to server timeouts or resource limits being reached. If you encounter an issue during the update process, please create a support forum topic and reference Rollback in the issue title.'=>'Sur les systèmes avec moins de ressources, ça peut mener à des dépassement de délais serveur ou à atteindre les limites des ressources. Si vous rencontrez un problème lors du processus de mise à jour, veuillez créer un fil de discussion dans le forum d’aide et indiquer Restauration dans le titre du fil.','This feature will create a temporary backup of a plugin or theme before it is upgraded. This backup is used to restore the plugin or theme back to its previous state if there is an error during the update process.'=>'Cette fonctionnalité va créer une sauvegarde temporaire d’une extension ou thème avant sa mise à jour. Cette sauvegarde est utilisée pour restaurer l’extension ou le thème à son état précédent, en cas d’erreur pendant le processus.','The site editor requires JavaScript. Please enable JavaScript in your browser settings.'=>'L’éditeur de site nécessite JavaScript. Veuillez autoriser JavaScript dans vos réglages navigateur.','https://wordpress.org/documentation/article/customize-permalinks/'=>'https://fr.wordpress.org/support/article/using-permalinks/','In a few words, explain what this site is about. Example: “%s.”'=>'En quelques mots, expliquez ce que représente ce site. Exemple : « %s ».','Note: Discouraging search engines does not block access to your site — it is up to search engines to honor your request.'=>'Note : le fait de décourager les moteurs de recherche ne bloque pas l’accès à votre site. Il appartient aux moteurs de recherche d’honorer votre demande.','New custom field name'=>'Nouveau nom de champ personnalisé','Search Media:'=>'Rechercher un média :','Clear Crop'=>'Annuler le recadrage','Apply Crop'=>'Appliquer le recadrage','vertical start position'=>'position verticale de départ','horizontal start position'=>'position horizontale de départ','Starting Coordinates:'=>'Coordonnées de départ :','Crop Image'=>'Recadrer l’image','Images cannot be scaled to a size larger than the original.'=>'Les images ne peuvent pas être mises à l’échelle dans une taille supérieure à celle de l’original.','Save Edits'=>'Enregistrer les modifications','Cancel Editing'=>'Annuler la modification','Could not create the destination directory.'=>'Impossible de créer le répertoire de destination.','Table ordered by E-mail.'=>'Tableau trié par e-mail.','Table ordered by Username.'=>'Tableau trié par identifiant.','Could not delete the temporary backup directory for %s.'=>'Impossible de supprimer le répertoire de sauvegarde temporaire de %s.','Could not restore the original version of %s.'=>'Impossible de restaurer la version originale de %s.','Could not move the old version to the %s directory.'=>'Impossible de déplacer l’ancienne version vers le répertoire %s.','Could not create the %s directory.'=>'Impossible de créer le répertoire %s.','Table ordered by Links.'=>'Tableau trié par liens.','Table ordered by Posts Count.'=>'Tableau trié par nombre de publications.','Table ordered by Slug.'=>'Tableau trié par slug.','Table ordered by Description.'=>'Tableau trié par description.','Table ordered hierarchically.'=>'Tableau trié hiérarchiquement.','Available disk space'=>'Espace disque disponible','Plugin and theme temporary backup directory access'=>'Accès au répertoire de sauvegarde temporaire des extensions et des thèmes','The %1$s directory does not exist, and the server does not have write permissions in %2$s to create it. This directory is used for plugin and theme updates. Please make sure the server has write permissions in %2$s.'=>'Le répertoire %1$s n’existe pas et le serveur n’a pas les droits en écriture dans %2$s pour le créer. Ce répertoire est utilisé pour les mises à jour des extensions et de thèmes. Veuillez vous assurer que le serveur dispose des droits en écriture dans %2$s.','The upgrade directory cannot be created'=>'Le répertoire de mise à niveau ne peut pas être créé','The %s directory exists but is not writable. This directory is used for plugin and theme updates. Please make sure the server has write permissions to this directory.'=>'Le répertoire %s existe mais n’est pas accessible en écriture. Ce répertoire est utilisé pour les mises à jour des extensions et des thèmes. Veuillez vous assurer que le serveur dispose des droits d’écriture sur ce répertoire.','The upgrade directory exists but is not writable'=>'Le répertoire de mise à niveau existe mais n’est pas accessible en écriture','The %s directory exists but is not writable. This directory is used to improve the stability of plugin and theme updates. Please make sure the server has write permissions to this directory.'=>'Le répertoire %s existe mais n’est pas accessible en écriture. Ce répertoire est utilisé pour améliorer la stabilité des mises à jour des extensions et des thèmes. Veuillez vous assurer que le serveur dispose des droits d’écriture sur ce répertoire.','The temporary backup directory exists but is not writable'=>'Le répertoire de sauvegarde temporaire existe mais n’est pas accessible en écriture.','The %s directory exists but is not writable. This directory is used to improve the stability of theme updates. Please make sure the server has write permissions to this directory.'=>'Le répertoire %s existe mais n’est pas accessible en écriture. Ce répertoire est utilisé pour améliorer la stabilité des mises à jour de thèmes. Veuillez vous assurer que le serveur dispose des droits d’écriture sur ce répertoire.','Theme temporary backup directory exists but is not writable'=>'Le répertoire de sauvegarde temporaire des thèmes existe mais n’est pas accessible en écriture','The %s directory exists but is not writable. This directory is used to improve the stability of plugin updates. Please make sure the server has write permissions to this directory.'=>'Le répertoire %s existe mais n’est pas accessible en écriture. Ce répertoire est utilisé pour améliorer la stabilité des mises à jour des extensions. Veuillez vous assurer que le serveur dispose des droits en écriture sur ce répertoire.','Plugin temporary backup directory exists but is not writable'=>'Le répertoire de sauvegarde temporaire des extensions existe mais n’est pas accessible en écriture','The %1$s and %2$s directories exist but are not writable. These directories are used to improve the stability of plugin updates. Please make sure the server has write permissions to these directories.'=>'Les répertoires %1$s et %2$s existent mais ne sont pas accessibles en écriture. Ces répertoires sont utilisés pour améliorer la stabilité des mises à jour des extensions. Veuillez vous assurer que le serveur dispose des droits en écriture sur ces répertoires.','Plugin and theme temporary backup directories exist but are not writable'=>'Les répertoires de sauvegarde temporaire des extensions et des thèmes existent mais ne sont pas accessibles en écriture.','The %s directory cannot be located.'=>'Le répertoire %s est introuvable.','The %s directory used to improve the stability of plugin and theme updates is writable.'=>'Le répertoire %s utilisé pour améliorer la stabilité des mises à jour des extensions et des thèmes est accessible en écriture.','Plugin and theme temporary backup directory is writable'=>'Le répertoire de sauvegarde temporaire des extensions et des thèmes est accessible en écriture','Could not determine available disk space for updates.'=>'Impossible de déterminer l’espace disque disponible pour les mises à jour.','Available disk space is critically low, less than %s available. Proceed with caution, updates may fail.'=>'L’espace disque disponible est extrêmement faible, moins de %s disponibles. Attention, les mises à jour peuvent échouer.','Available disk space is low, less than %s available.'=>'L’espace disque disponible est faible, moins de %s disponibles.','%s available disk space was detected, update routines can be performed safely.'=>'%s d’espace disque disponible a été détecté, les routines de mise à jour peuvent être effectuées en toute sécurité.','Disk space available to safely perform updates'=>'Espace disque disponible pour effectuer les mises à jour en toute sécurité','Table ordered by Hierarchical Menu Order and Title.'=>'Tableau trié par l’ordre hiérarchique du menu et par son titre.','Table ordered by Title.'=>'Tableau trié par titre.','Table ordered by Date.'=>'Tableau trié par date.','Table ordered by Comments.'=>'Tableau trié par commentaires.','Table ordered by Uploaded To.'=>'Tableau trié par destination du téléversement.','Table ordered by Author.'=>'Tableau trié par auteur.','Table ordered by File Name.'=>'Tableau trié par nom de fichier.','Descending.'=>'Décroissant.','Ascending.'=>'Croissant.','Sort descending.'=>'Tri décroissant','Sort ascending.'=>'Tri croissant','Table ordered by Rating.'=>'Tableau trié par évaluation.','Table ordered by Visibility.'=>'Tableau trié par visibilité.','Table ordered by URL.'=>'Tableau trié par URL.','Table ordered by Name.'=>'Tableau trié par nom.','Current Server time'=>'Heure actuelle du serveur','Current UTC time'=>'Heure UTC actuelle','Current time'=>'Heure actuelle','Ordered by Comment Date, descending.'=>'Tableau trié par date de commentaire décroissante.','Table ordered by Post Replied To.'=>'Tableau trié par commentaire lié à l’article.','Table ordered by Comment Author.'=>'Tableau trié par l’auteur du commentaire.','Attempting to restore the previous version.'=>'Tentative de restauration de la version précédente.','More details.'=>'Plus de détails.','Find your team →'=>'Trouvez votre équipe →','Finding the area that aligns with your skills and interests is the first step toward meaningful contribution. With more than 20 Make WordPress teams working on different parts of the open source WordPress project, there’s a place for everyone, no matter what your skill set is.'=>'Trouver le domaine qui correspond à vos compétences et à vos intérêts est le premier pas vers une contribution significative. Avec plus de 20 équipes Make WordPress travaillant sur différentes parties du projet open source WordPress, il y a une place pour tout le monde, quelles que soient vos compétences.','Shape the future of the web with WordPress'=>'Façonnez l’avenir du web avec WordPress','WordPress app: Kotlin, Java, Swift, Objective-C, Vue, Python, and TypeScript.'=>'Applications mobiles WordPress : Kotlin, Java, Swift, Objective-C, Vue, Python et TypeScript.','WordPress Core and Block Editor: HTML, CSS, PHP, SQL, JavaScript, and React.'=>'Cœur de WP et éditeur de blocs : HTML, CSS, PHP, SQL, JavaScript et React.','WordPress embraces new technologies, while being committed to backward compatibility. The WordPress project uses the following languages and libraries:'=>'WordPress adopte de nouvelles technologies, tout en s’engageant à en assurer la rétro-compatibilité. Le projet WordPress utilise les langages et outils suivants :','Contribute to the code, improve the UX, and test the WordPress app.'=>'Contribuez au code, améliorez l’expérience d’utilisation, et testez les applications mobiles WordPress','Write and submit patches to fix bugs or help build new features.'=>'Écrivez et envoyez des corrections de bogues ou contribuez à l’élaboration de nouvelles fonctionnalités','Test new releases and proposed features for the Block Editor.'=>'Testez les nouvelles versions et fonctionnalités proposées pour l’éditeur de blocs.','Find and report bugs in the WordPress core software.'=>'Trouvez et signalez des bogues dans le cœur de WordPress','If you do code, or want to learn how, you can contribute technically in numerous ways:'=>'Si vous codez, ou souhaitez apprendre à le faire, vous pouvez contribuer techniquement de nombreuses manières :','Code-based contribution'=>'Contribution au code de WordPress','Explore ways to reduce the environmental impact of websites.'=>'Explorez les moyens de réduire l’impact environnemental des millions de sites WordPress.','Edit videos and add captions to WordPress.tv.'=>'Gérez les vidéos et ajoutez des sous-titres sur WordPress.tv','Lend your creative imagination to the WordPress UI design.'=>'Laissez libre cours à votre imagination créative pour la conception de l’interface d’utilisation de WordPress','Organize or participate in local Meetups and WordCamps.'=>'Organisez ou participez à des Meetups WordPress locaux ou à des WordCamps','Curate submissions or take photos for the Photo Directory.'=>'Sélectionnez les propositions ou prenez des photos pour le répertoire de photos de WordPress.','Promote the WordPress project to your community.'=>'Faites la promotion du projet WordPress auprès de la communauté','Create and improve WordPress educational materials.'=>'Créez et améliorez le matériel pédagogique de WordPress','Translate WordPress into your local language.'=>'Traduisez WordPress dans votre langue','Write or improve documentation for WordPress.'=>'Rédigez ou améliorez la documentation de WordPress','Share your knowledge in the WordPress support forums.'=>'Partagez vos connaissances sur les forums d’entraide de WordPress','WordPress may thrive on technical contributions, but you don’t have to code to contribute. Here are some of the ways you can make an impact without writing a single line of code:'=>'WordPress se nourrit de contributions techniques, mais il n’est pas nécessaire de savoir coder pour contribuer. Voici quelques-unes des façons qui vous permettent d’avoir un impact sans écrire une seule ligne de code :','No-code contribution'=>'Contributer sans coder','Grow your network and make friends.'=>'Développez votre réseau et faites-vous des amis','Apply your skills or learn new ones.'=>'Appliquez vos compétences ou apprenez-en de nouvelles','Be part of a global open source community.'=>'Rejoignez une communauté mondiale dédiée au logiciel libre','Join the diverse WordPress contributor community and connect with other people who are passionate about maintaining a free and open web.'=>'Rejoignez la communauté WordPress et connectez-vous avec d’autres personnes qui ont à cœur de maintenir le web libre et ouvert.','Do you use WordPress for work, for personal projects, or even just for fun? You can help shape the long-term success of the open source project that powers millions of websites around the world.'=>'Vous utilisez WordPress dans le cadre de votre travail, de vos projets personnels ou simplement pour le plaisir ? Vous pouvez contribuer au succès à long terme du projet open source qui alimente des millions de sites web dans le monde.','Be the future of WordPress'=>'Participez à l‘avenir de WordPress','Learn WordPress is a free resource for new and experienced WordPress users. Learn is stocked with how-to videos on using various features in WordPress, interactive workshops for exploring topics in-depth, and lesson plans for diving deep into specific areas of WordPress.'=>'Learn WordPress est une ressource gratuite pour les personnes qui utilisent WordPress, qu’elles soient débutantes ou expérimentées. Learn contient des vidéos pratiques sur l’utilisation de diverses fonctionnalités de WordPress, des évènements interactifs pour explorer des sujets en profondeur, et des plans de cours pour approfondir des domaines spécifiques de WordPress.','Support forums'=>'forums de support','Documentation on Widgets'=>'Écran Widgets','View takes you to a public author archive which lists all the posts published by the user.'=>'Voir vous emmène sur l’archive publique de l’auteur ou de l’autrice, qui liste toutes ses publications mises en ligne.','Download file downloads the original media file to your device.'=>'Télécharger le fichier télécharge le fichier média original sur votre appareil.','site editor title tagEditor'=>'Éditeur','Documentation on Auto-updates'=>'Documentation sur les mises à jour automatiques','Documentation on date and time formatting.'=>'Documentation sur le formatage de la date et de l’heure.','You can set the language, and WordPress will automatically download and install the translation files (available if your filesystem is writable).'=>'Vous pouvez définir la langue, et WordPress va automatiquement télécharger et installer les fichiers de traduction (disponible si votre système de fichier autorise l’écriture).','If you want site visitors to be able to register themselves, check the membership box. If you want the site administrator to register every new user, leave the box unchecked. In either case, you can set a default user role for all new users.'=>'Si vous voulez que les internautes puissent créer eux-mêmes un compte sur le site, cochez la case d’adhésion. Si vous voulez que l’administrateur ou l’administratrice du site soit responsable de l’inscription de chaque compte chaque, laissez la case non-cochée. Dans tous les cas, vous pouvez définir un rôle par défaut pour tout nouveau compte.','Both WordPress URL and site URL can start with either %1$s or %2$s. A URL starting with %2$s requires an SSL certificate, so be sure that you have one before changing to %2$s. With %2$s, a padlock will appear next to the address in the browser address bar. Both %2$s and the padlock signal that your site meets some basic security requirements, which can build trust with your visitors and with search engines.'=>'L’URL de WordPress et l’URL du site peuvent commencer par %1$s ou %2$s. Une URL commençant par %2$s nécessite de disposer d’un certificat SSL, alors assurez-vous d’en avoir un installé avant de passer à %2$s. Avec %2$s, un cadenas va s’afficher à côté de l’adresse du site dans votre navigateur. Le fait d’avoir une adresse en %2$s et d’afficher le cadenas dans le navigateur est un bon indice que votre site respecte certaines bases de sécurité web, ce qui permet d’établir une relation de confiance avec les internautes tout comme avec les moteurs de recherche.','Though the terms refer to two different concepts, in practice, they can be the same address or different. For example, you can have the core WordPress installation files in the root directory (https://example.com), in which case the two URLs would be the same. Or the WordPress files can be in a subdirectory (https://example.com/wordpress). In that case, the WordPress URL and the site URL would be different.'=>'Même si le terme correspond à deux concepts spécifiques, en pratique cela peut être la même adresse ou des adresses différentes. Par exemple, vous pouvez avoir les fichiers du cœur de WordPress dans le répertoire racine (https://example.com), auquel cas les deux URL seront similaires. Vous pouvez aussi placer les fichiers de WordPress dans un sous répertoire (https://example.com/wordpress). Dans ce cas, l’URL de WordPress et l’URL du site seront différentes.','Two terms you will want to know are the WordPress URL and the site URL. The WordPress URL is where the core WordPress installation files are, and the site URL is the address a visitor uses in the browser to go to your site.'=>'Il est important de différencier URL de WordPress et URL du site. L’URL de WordPress est l’endroit où se trouvent les fichiers d’installation du cœur de WordPress, et l’URL du site est l’adresse qu’un visiteur utilise dans son navigateur pour se rendre sur votre site.','RoboHash (Generated)'=>'RoboHash (généré)','site editor menu itemEditor'=>'Éditeur','Allow trackbacks and pingbacks'=>'Autoriser les rétroliens et pings','https://wordpress.org/documentation/article/assign-custom-fields/'=>'https://fr.wordpress.org/support/article/custom-fields/','https://wordpress.org/documentation/article/what-is-an-excerpt-classic-editor/'=>'https://fr.wordpress.org/support/article/excerpt/','%s expects a non-empty string.'=>'%s attend une chaine non vide.','The destination directory already exists and could not be removed.'=>'Le répertoire de destination existe déjà et ne peut être supprimé.','The destination folder already exists.'=>'Le dossier de destination existe déjà.','The source and destination are the same.'=>'La source et la destination sont identiques.','Expand or collapse the elements by clicking on their headings, and arrange them by dragging their headings or by clicking on the up and down arrows.'=>'Dépliez et repliez les éléments en cliquant sur leur titre, et déplacez-les en glissant leur titre ou en cliquant sur les flèches haut et bas.','Download “%s”'=>'Télécharger « %s »','The "%s" argument must be a non-empty string.'=>'L’argument « %s » doit être une chaine non vide.','Documentation on Writing and Editing Posts'=>'Documentation sur la rédaction d’articles','Documentation on Keyboard Shortcuts'=>'Documentation sur les raccourcis clavier','Documentation on Comment Spam'=>'Documentation sur les commentaires indésirables','Documentation on Customizer'=>'Documentation sur l’outil de personnalisation','https://wordpress.org/download/'=>'https://wordpress.org/download/','This is the final release of WordPress %s'=>'Il s’agit de la version finale de WordPress %s','Site Editor'=>'Éditeur de site','Send password reset sends the user an email with a link to set a new password.'=>'Envoyer une réinitialisation de mot de passe envoie à l’utilisatrice ou l’utilisateur un e-mail contenant un lien pour définir un nouveau mot de passe.','https://developer.wordpress.org/apis/wp-config-php/#wp-environment-type'=>'https://developer.wordpress.org/apis/wp-config-php/#wp-environment-type','Copy URL copies the URL for the media file to your clipboard.'=>'Copier l’URL copie l’URL du fichier média dans votre presse-papier.','View will take you to a public display page for that file.'=>'Le lien Voir vous mènera vers une page publique pour ce fichier.','Delete Permanently will delete the file from the media library (as well as from any posts to which it is currently attached).'=>'Le lien Supprimer définitivement détruira le fichier de la médiathèque (ainsi que dans n’importe quelle publication à laquelle il serait attaché).','Edit takes you to a simple screen to edit that individual file’s metadata. You can also reach that screen by clicking on the media file name or thumbnail.'=>'Modifier vous amène à un écran simple pour modifier les métadonnées de ce fichier individuel. Vous pouvez également accéder à cet écran en cliquant sur le nom ou sur la vignette du média.','Hovering over a row reveals action links that allow you to manage media items. You can perform the following actions:'=>'Le survol d’une ligne révèle des liens d’action qui vous permettent de gérer les médias. Vous pouvez effectuer les actions suivantes :','themesBlock Themes'=>'Thèmes basés sur des blocs','Documentation on Block Themes'=>'Documentation sur les thèmes basés sur des blocs','Block themes'=>'Thèmes basés sur des blocs','With a block theme, you can place and edit blocks without affecting your content by customizing or creating new templates.'=>'Avec un thème basé sur des blocs, vous pouvez disposer et modifier les blocs sans affecter votre contenu en personnalisant ou en créant de nouveaux modèles.','A block theme is a theme that uses blocks for all parts of a site including navigation menus, header, content, and site footer. These themes are built for the features that allow you to edit and customize all parts of your site.'=>'Un thème basé sur des blocs est un thème qui utilise des blocs pour tous les éléments du site, ce qui comprend les menus de navigation, l’entête, le contenu ou encore le pied de page du site. Ces thèmes sont conçus pour prendre en charge les fonctionnalités qui vous permettent de modifier et de personnaliser toutes les parties de votre site.','Recommended items are considered beneficial to your site, although not as important to prioritize as a critical issue, they may include improvements to things such as; Performance, user experience, and more.'=>'Les éléments recommandés sont considérés comme bénéfiques pour votre site. Bien qu’ils ne soient pas aussi prioritaires que les anomalies critiques, ils peuvent inclure des améliorations de performances, d’expérience d’utilisation, et bien plus encore.','Critical issues are items that may have a high impact on your sites performance or security, and resolving these issues should be prioritized.'=>'Les anomalies critiques sont des éléments qui peuvent avoir un impact important sur les performances ou la sécurité de votre site, et la résolution de ces problèmes doit être une priorité.','Configuration rules for %s:'=>'Règles de configuration pour %s :','Customize permalink structure by selecting available tags'=>'Personnalisez la structure des permaliens en sélectionnant les balises disponibles','Select the permalink structure for your website. Including the %s tag makes links easy to understand, and can help your posts rank higher in search engines.'=>'Sélectionnez la structure de permaliens de votre site. L’inclusion de la balise %s rend les liens plus faciles à lire et peut aider le référencement de vos publications.','%s removed from permalink structure'=>'%s retiré de la structure de permaliens','Site Health %s'=>'Santé du site %s','Theme Styles & Block Settings'=>'Styles du thème et réglages des blocs','The minimum recommended version of PHP is %s.'=>'La version minimale recommandée de PHP est %s.','PHP is one of the programming languages used to build WordPress. Newer versions of PHP receive regular security updates and may increase your site’s performance.'=>'PHP est l’un des langages de programmation utilisés pour construire WordPress. Les nouvelles versions de PHP reçoivent des mises à jour de sécurité régulièrement et améliorent les performances de votre site.','Your site is running on an outdated version of PHP (%s), which soon will not be supported by WordPress. Ensure that PHP is updated on your server as soon as possible. Otherwise you will not be able to upgrade WordPress.'=>'Votre site fonctionne sur une version obsolète de PHP (%s), qui ne sera bientôt plus prise en charge par WordPress. Assurez-vous dès que possible que PHP soit mis à jour sur votre serveur. Sinon, vous ne pourrez pas mettre à jour WordPress.','Your site is running on an outdated version of PHP (%s), which does not receive security updates and soon will not be supported by WordPress. Ensure that PHP is updated on your server as soon as possible. Otherwise you will not be able to upgrade WordPress.'=>'Votre site fonctionne sur une version obsolète de PHP (%s), qui ne reçoit pas de mises à jour de sécurité et ne sera bientôt plus prise en charge par WordPress. Assurez-vous que PHP est à jour sur votre serveur dès que possible. Sinon, vous ne pourrez plus mettre à niveau WordPress à l’avenir.','Persistent object cache'=>'Cache objet persistant','Page cache'=>'Cache des page','You should use a persistent object cache'=>'Vous devriez utiliser un cache objet persistant','Your host appears to support the following object caching services: %s.'=>'Votre hébergeur semble prendre en charge les services de cache objet suivants : %s.','Your hosting provider can tell you if a persistent object cache can be enabled on your site.'=>'Votre hébergeur peut vous indiquer si un cache objet persistant peut être activé sur votre site.','A persistent object cache is not required'=>'Le cache objet persistant n’est pas obligatoire','Learn more about persistent object caching.'=>'En savoir plus sur la mise en cache objet persistant.','A persistent object cache makes your site’s database more efficient, resulting in faster load times because WordPress can retrieve your site’s content and settings much more quickly.'=>'Un cache objets persistant rend la base de données de votre site plus efficace, ce qui assure des temps de chargement plus rapides car WordPress peut récupérer le contenu et les réglages de votre site beaucoup plus rapidement.','A persistent object cache is being used'=>'Un cache objet persistant est utilisé','A page cache plugin was not detected.'=>'Aucune extension de mise en cache des pages n’a été détectée.','A page cache plugin was detected.'=>'Une extension de mise en cache des pages a été détectée.','There was %d client caching response header detected:'=>'%d entête de réponse de cache client a été détecté :' . "\0" . '%d entêtes de réponses de cache client ont été détectés :','No client caching response headers were detected.'=>'Aucun entête de réponse de cache client n’a été détecté.','Median server response time was %1$s milliseconds. It should be less than the recommended %2$s milliseconds threshold.'=>'Le temps de réponse médian du serveur était de %1$s millisecondes. Il devrait être inférieur au seuil recommandé de %2$s millisecondes.','Median server response time was %1$s milliseconds. This is less than the recommended %2$s milliseconds threshold.'=>'Le temps de réponse médian du serveur était de %1$s millisecondes. C’est moins que le seuil recommandé de %2$s millisecondes.','Server response time could not be determined. Verify that loopback requests are working.'=>'Le temps de réponse du serveur n’a pas pu être déterminé. Vérifiez que les boucles de requêtes fonctionnent.','Page cache is detected but the server response time is still slow'=>'La mise en cache des pages est détectée mais le temps de réponse du serveur est toujours lent','Page cache is not detected and the server response time is slow'=>'La mise en cache des pages n’est pas détectée et le temps de réponse du serveur est lent','Page cache is detected and the server response time is good'=>'La mise en cache des pages est détectée et le temps de réponse du serveur est bon','Page cache is not detected but the server response time is OK'=>'La mise en cache des pages n’est pas détectée mais le temps de réponse du serveur est OK','Unable to detect page cache due to possible loopback request problem. Please verify that the loopback request test is passing. Error: %1$s (Code: %2$s)'=>'Impossible de détecter le cache de la page en raison d’un éventuel problème de boucle de requête. Veuillez vérifier que le test de boucle de requête passe correctement. Erreur : %1$s (code : %2$s)','Unable to detect the presence of page cache'=>'Impossible de détecter la présence de la mise en cache des pages','Learn more about page cache'=>'En savoir plus sur la mise en cache des pages','Page cache is detected by looking for an active page cache plugin as well as making three requests to the homepage and looking for one or more of the following HTTP client caching response headers:'=>'Le cache de page est détecté en recherchant une éventuelle extension de cache active sur le site, et aussi en effectuant trois requêtes sur la page d’accueil et en recherchant un ou plusieurs entêtes de réponse de mise en cache du client HTTP parmi les entêtes suivants :','Page cache enhances the speed and performance of your site by saving and serving static pages instead of calling for a page every time a user visits.'=>'L’utilisation de la mise en cache des pages améliore la vitesse et les performances de votre site en servant des pages statiques au lieu de générer entièrement chaque page à chaque visite d’un internaute.','If you are still seeing this warning after having tried the actions below, you may need to contact your hosting provider for further assistance.'=>'Si vous voyez toujours cet avertissement après avoir essayé les actions ci-dessous, vous devriez peut-être contacter votre hébergeur pour obtenir de l’aide.','The Authorization header is used by third-party applications you have approved for this site. Without this header, those apps cannot connect to your site.'=>'L’entête d’autorisation est utilisé par les applications tierces que vous avez approuvées pour ce site. Sans cet entête, ces applications ne peuvent pas se connecter à votre site.','When testing the REST API, an unexpected result was returned:'=>'Lors du test de l’API REST, un résultat inattendu a été retourné :','REST API Response: (%1$s) %2$s'=>'Réponse de l’API REST : (%1$s) %2$s','REST API Endpoint: %s'=>'Point de terminaison de l’API REST : %s','When testing the REST API, an error was encountered:'=>'Lors du test de l’API REST, une erreur s’est produite :','Your site is running on an outdated version of PHP (%s), which does not receive security updates. It should be updated.'=>'Votre site fonctionne sur une version obsolète de PHP (%s), qui ne reçoit pas les mises à jour de sécurité. Une mise à jour est nécessaire.','Your site is running on an outdated version of PHP (%s), which does not receive security updates and soon will not be supported by WordPress.'=>'Votre site fonctionne sur une version obsolète de PHP (%s), qui ne reçoit plus de mises à jour de sécurité et ne sera bientôt plus prise en charge par WordPress.','Requirements'=>'Prérequis','Your site is running on an outdated version of PHP (%s), which soon will not be supported by WordPress.'=>'Votre site fonctionne avec une version obsolète de PHP (%s), qui ne sera bientôt plus prise en charge par WordPress.','PHP is one of the programming languages used to build WordPress. Newer versions of PHP receive regular security updates and may increase your site’s performance. The minimum recommended version of PHP is %s.'=>'PHP est l’un des langages de programmation utilisés pour construire WordPress. Les nouvelles versions de PHP reçoivent des mises à jour de sécurité régulièrement et améliorent les performances de votre site. La version minimale recommandée de PHP est %s.','Your site does not have any installed themes.'=>'Votre site ne dispose d’aucun thème installé.','Your site does not have any active plugins.'=>'Votre site ne dispose d’aucune extension installée.','Another attempt will be made with the next release.'=>'Une autre tentative sera faite avec la prochaine version.','The %1$s constant is defined as %2$s'=>'La constante %1$s est définie à %2$s','The %1$s argument must be a non-empty string for %2$s.'=>'Le paramètre %1$s doit être une chaîne non vide pour %2$s.','The %s argument must be an array.'=>'Le paramètre %s doit être un tableau.','- %1$s version %2$s%3$s'=>'- %1$s version %2$s%3$s','- %1$s (from version %2$s to %3$s)%4$s'=>'- %1$s (de la version %2$s vers %3$s)%4$s','Reach out to WordPress Core developers to ensure you\'ll never have this problem again.'=>'Contactez les développeuses et développeurs du cœur de WordPress pour vous assurer que vous ne rencontrerez plus ce problème.','Important! Your version of WordPress (%1$s) will stop receiving security updates in the near future. To keep your site secure, please update to the latest version of WordPress.'=>'Important ! Votre version de WordPress (%1$s) ne recevra bientôt plus aucune mise à jour de sécurité. Pour garder votre site sécurisé, veuillez mettre à jour vers la dernière version de WordPress.','Important! Your version of WordPress (%1$s) is no longer supported, you will not receive any security updates for your website. To keep your site secure, please update to the latest version of WordPress.'=>'Important ! Votre version de WordPress (%1$s) n‘est plus prise en charge, vous ne recevrez aucune mise à jour de sécurité pour votre site. Pour garder votre site sécurisé, veuillez mettre à jour vers la dernière version de WordPress.','https://make.wordpress.org/core/wordpress-%s-field-guide/'=>'https://fr.wordpress.org/2024/10/28/guide-des-changements-techniques-de-wordpress-6-7/','Learn more about WordPress %s'=>'En savoir plus sur WordPress %s','Please type your comment text.'=>'Veuillez saisir le texte de votre commentaire.','You cannot remove users.'=>'Vous ne pouvez pas supprimer ces comptes.','Application passwords grant access to the %2$s site on the network as you have Super Admin rights.'=>'Les mots de passe d’applications donnent accès à l’unique site du réseau, car vous disposez de droits Super Admin.' . "\0" . 'Les mots de passe d’applications donnent accès aux %2$s sites du réseau, car vous disposez de droits Super Admin.','WordPress has been updated! Next and final step is to update your database to the newest version.'=>'WordPress a été mis à jour ! La dernière étape est de mettre à jour votre base de données.','Documentation on Managing Themes'=>'Documentation sur la gestion des thèmes','This information is being used to create a %s file.'=>'Ces informations sont utilisées pour créer un fichier %s.','Welcome to WordPress. Before getting started, you will need to know the following items.'=>'Bienvenue sur WordPress. Avant de commencer, vous aurez besoin de connaître les éléments suivants.','Settings save failed.'=>'L’enregistrement des réglages a échoué.','After your Privacy Policy page is set, you should edit it.'=>'Après avoir défini votre page de politique de confidentialité, vous devez la modifier.','Error: Your %1$s file is not writable, so updating it automatically was not possible. These are the mod_rewrite rules you should have in your %1$s file. Click in the field and press %3$s (or %4$s on Mac) to select all.'=>'Erreur : votre fichier %1$s n’est pas accessible en écriture, il n’a donc pas été possible de le mettre à jour automatiquement. Voici les règles mod_rewrite que vous devriez avoir dans votre fichier %1$s. Cliquez dans le champs et appuyez sur %3$s (ou %4$s sur Mac) pour tout sélectionner.','Error: Your %1$s file is not writable, so updating it automatically was not possible. This is the URL rewrite rule you should have in your %1$s file. Click in the field and press %3$s (or %4$s on Mac) to select all. Then insert this rule inside of the %5$s element in %1$s file.'=>'Erreur : votre fichier %1$s n’est pas accessible en écriture, donc sa mise à jour automatique n’a pas été possible. Il s’agit de la règle de réécriture d’URL que vous devriez avoir dans le fichier %1$s. Cliquez dans le champ et appuyez sur %3$s (ou %4$s sur Mac) pour tout sélectionner. Ensuite, insérez cette règle dans l’élément %5$s du fichier %1$s.','An avatar is an image that can be associated with a user across multiple websites. In this area, you can choose to display avatars of users who interact with the site.'=>'Un avatar est une image qui peut être associée à un compte sur plusieurs sites. Dans cette zone, vous pouvez choisir d’afficher les avatars des comptes qui interagissent avec le site.','Change Permalink Structure'=>'Modifier la structure des permaliens','Howdy, -Someone with administrator capabilities recently requested to have the +A site administrator (###USERNAME###) recently requested to have the administration email address changed on this site: ###SITEURL### @@ -17,7 +17,7 @@ Regards, All at ###SITENAME### ###SITEURL###'=>'Bonjour ###USERNAME###, -Quelqu’un ayant les droits d’administrateur ou d’administratrice a récemment demandé de modifier l’adresse e-mail de l’administration de ce site : +Un administrateur ou une administratrice du site a récemment demandé la modification de l’adresse e-mail d’administration de ce site : ###SITEURL### Pour confirmer cette modification, veuillez cliquer sur le lien suivant : @@ -29,11 +29,11 @@ Cet e-mail a été envoyé à ###EMAIL### Salutations, L’équipe de ###SITENAME### -###SITEURL###','Where your data is sent'=>'Où vos données sont envoyées','Copy “%s” URL to clipboard'=>'Copier l’URL de “%s” dans le presse-papier','Some data that describes the error your site encountered has been put together.'=>'Des données relatives à l’erreur rencontrée par votre site ont été recueillies.','An attempt was made, but your site could not be updated automatically.'=>'Une tentative a été faite, mais votre site n’a pas pu être mis à jour automatiquement.','themeActive'=>'Actif','The update cannot be installed because some files could not be copied. This is usually due to inconsistent file permissions.'=>'La mise à jour ne peut pas être installée car certains fichiers n’ont pas pu être copiés. Ceci est généralement dû à des incohérences dans les droits des fichiers.','Media — A list of URLs for media files the user uploads.'=>'Médias — Une liste d’URL pour les téléversements de médias effectués par le compte.','Community Events Location — The IP Address of the user, which populates the Upcoming Community Events dashboard widget with relevant information.'=>'Emplacement des évènements communautaires — L’adresse IP du compte, qui alimente le widget du tableau de bord des évènements communautaires à venir avec des informations pertinentes.','WordPress collects (but never publishes) a limited amount of data from registered users who have logged in to the site. Generally, these users are people who contribute to the site in some way -- content, store management, and so on. With rare exceptions, these users do not include occasional visitors who might have registered to comment on articles or buy products. The data WordPress retains can include:'=>'WordPress collecte (mais ne publie jamais) une quantité limitée de données des personnes inscrites qui se sont connectées sur le site. En général, ce sont des personnes qui contribuent au site d’une certaine façon : contenu, gestion de boutique, et ainsi de suite. Hormis de rares exceptions, ces comptes n’incluent pas les visiteurs occasionnels qui pourraient s’être inscrits pour commenter des articles ou acheter des produits. Les données que WordPress conserve peuvent inclure :','Note: Since this tool only gathers data from WordPress and participating plugins, you may need to do more to comply with export requests. For example, you should also send the requester some of the data collected from or stored with the 3rd party services your organization uses.'=>'Remarque : Étant donné que cet outil collecte uniquement des données de WordPress et des extensions qui y contribuent, vous pourriez avoir besoin d’aller plus loin pour que vos demandes d’exportations soient conformes. Par exemple, vous devriez également envoyer au demandeur une partie des données collectées ou conservées par les services tiers que votre entreprise ou votre site utilise.','Privacy Laws around the world require businesses and online services to provide an export of some of the data they collect about an individual, and to deliver that export on request. The rights those laws enshrine are sometimes called the "Right of Data Portability". It allows individuals to obtain and reuse their personal data for their own purposes across different services. It allows them to move, copy or transfer personal data easily from one IT environment to another.'=>'Les lois sur la protection de la vie privée du monde entier exigent des entreprises et des services en ligne qu’ils fournissent une exportation de certaines des données qu’ils recueillent sur les individus, et qu’ils fournissent cette exportation sur demande. Les droits que ces lois garantissent sont souvent appelés « droit à la portabilité des données ». Cela permet aux personnes d’obtenir et de réutiliser leurs données personnelles à leurs propres fins dans différents services. L’objectif est de leur permettre de déplacer, copier ou transférer facilement leurs données personnelles d’un environnement informatique à un autre.','Comments — WordPress does not delete comments. The software does anonymize (but, again, never publishes) the associated Email Address, IP Address, and User Agent (Browser/OS).'=>'Commentaires : WordPress ne supprime pas les commentaires. Le logiciel anonymise (et ne publie jamais) les informations associées comme l’adresse e-mail, l’adresse IP ou l’agent utilisateur (navigateur et système d’exploitation).','WordPress collects (but never publishes) a limited amount of data from logged-in users but then deletes it or anonymizes it. That data can include:'=>'WordPress collecte (mais ne publie jamais) une quantité limitée de données des comptes connectés mais ces données sont ensuite supprimées ou anonymisées. Ces données peuvent inclure :','Note: As this tool only gathers data from WordPress and participating plugins, you may need to do more to comply with erasure requests. For example, you are also responsible for ensuring that data collected by or stored with the 3rd party services your organization uses gets deleted.'=>'Note : comme cet outil recueille uniquement des données provenant de WordPress et des extensions utilisées, il se peut que vous deviez faire davantage pour vous conformer aux demandes d’effacement de données. Par exemple, il vous incombe également de veiller à ce que les données collectées ou stockées par les services tiers utilisés par votre organisation soient aussi effacées.','Privacy Laws around the world require businesses and online services to delete, anonymize, or forget the data they collect about an individual. The rights those laws enshrine are sometimes called the "Right to be Forgotten".'=>'Les lois sur la protection de la vie privée en vigueur dans le monde entier obligent les entreprises et les services en ligne à supprimer, anonymiser ou oublier les données recueillies sur une personne. Les droits que ces lois garantissent sont souvent appelés « droit à l’oubli ».','This screen is where you manage requests to erase personal data.'=>'Cet écran vous permet de gérer les demandes de suppression de données personnelles.','This post is being backed up in your browser, just in case.'=>'Cette publication est sauvegardée dans votre navigateur, au cas où.','This will grant access to the %2$s site on the network as you have Super Admin rights.'=>'Ceci vous donne accès à %2$s site sur le réseau étant donné que vous avez des droits de Super Admin.' . "\0" . 'Ceci vous donne accès à l’ensemble des %2$s sites sur le réseau étant donné que vous avez des droits de Super Admin.','Learn about block themes'=>'En savoir plus sur les thèmes basés sur des blocs','There is a new kind of WordPress theme, called a block theme, that lets you build the site you’ve always wanted — with blocks and styles.'=>'Il existe maintenant une nouvelle sorte de thème WordPress : les thèmes basés sur des blocs. Ils vous donnent la possibilité de construire le site que vous avez toujours voulu, en agençant des blocs et en leur donnant des styles graphiques.','Discover a new way to build your site.'=>'Découvrez une nouvelle façon de construire votre site','Tweak your site, or give it a whole new look! Get creative — how about a new color palette or font?'=>'Ajustez votre site, ou donnez-lui une apparence totalement nouvelle ! Laissez libre cours à votre imagination… que diriez vous d’une nouvelle palette de couleurs ou de nouvelles polices d’écriture ?','Switch up your site’s look & feel with Styles'=>'Modifiez l’apparence de votre site avec les styles globaux','Open the Customizer'=>'Ouvrir l’outil de personnalisation','Configure your site’s logo, header, menus, and more in the Customizer.'=>'Configurez le logo de votre site, son entête, ses menus et bien plus encore avec l’outil de personnalisation.','Start Customizing'=>'Personnalisez votre site comme vous le voulez','Open site editor'=>'Ouvrir l’éditeur de site','Design everything on your site — from the header down to the footer, all using blocks and patterns.'=>'Bâtissez l’ensemble de votre site, de l’entête au pied de page, en utilisant simplement des blocs et des compositions.','Customize your entire site with block themes'=>'Personnalisez l’ensemble de votre site avec les thèmes basés sur des blocs','Add a new page'=>'Créer une nouvelle page','Block patterns are pre-configured block layouts. Use them to get inspired or create new pages in a flash.'=>'Les compositions de blocs sont des mises en page de blocs pré-configurées. Utilisez-les pour vous en inspirer ou pour créer des nouvelles page en un clin d’œil.','Author rich content with blocks and patterns'=>'Créez des contenus riches avec les blocs et les compositions','Learn more about the %s version.'=>'En savoir plus sur la version %s','WordPress is free and open source software'=>'WordPress est un logiciel libre et ouvert','Plugin File Editor'=>'Éditeur de fichiers des extensions','Theme File Editor'=>'Éditeur de fichiers des thèmes','If this is a development website, you can set the environment type accordingly to enable application passwords.'=>'S’il s’agit d’une version de développement du site, vous pouvez définir le type d’environnement correspondant afin d’autoriser les mots de passe d’applications.','The application password feature requires HTTPS, which is not enabled on this site.'=>'La fonctionnalité de mot de passe de l’application nécessite HTTPS, qui n’est pas activé sur ce site.','g:i a T'=>'G\\hi','Documentation on Editing Themes'=>'Documentation sur l’éditeur de thèmes','Documentation on Site Health tool'=>'Documentation sur l’outil Santé du site','In the Info tab, you will find all the details about the configuration of your WordPress site, server, and database. There is also an export feature that allows you to copy all of the information about your site to the clipboard, to help solve problems on your site when obtaining support.'=>'Dans l’onglet Informations, vous trouverez tous les détails concernant la configuration de votre site WordPress, le serveur, et la base de données. Il existe également une fonctionnalité d’exportation qui vous permet de copier toutes les informations concernant votre site vers le presse-papier, ce qui vous aidera à résoudre les problèmes sur votre site lorsque vous chercherez de l’aide sur les forums.','In the Status tab, you can see critical information about your WordPress configuration, along with anything else that requires your attention.'=>'Dans l’onglet État, vous pouvez voir les informations critiques concernant votre configuration de WordPress, ainsi que tout ce qui requiert votre attention.','This screen allows you to obtain a health diagnosis of your site, and displays an overall rating of the status of your installation.'=>'Cet écran vous permet d’obtenir un diagnostic de santé de votre site, et affiche une évaluation globale de l’état de votre installation.','Documentation on Privacy Settings'=>'Documentation sur les réglages de confidentialité','This screen includes suggestions to help you write your own privacy policy. However, it is your responsibility to use these resources correctly, to provide the information required by your privacy policy, and to keep this information current and accurate.'=>'Cet écran comprend des suggestions pour vous aider à rédiger votre propre politique de confidentialité. Cependant, il est de votre responsabilité d’utiliser correctement ces ressources, de fournir les informations requises par votre politique de confidentialité, et de maintenir ces informations à jour et exactes.','The Privacy screen lets you either build a new privacy-policy page or choose one you already have to show.'=>'L’écran Confidentialité vous permet soit de créer une nouvelle page de politique de confidentialité, soit de choisir une page existante à afficher.','Individual posts may override these settings. Changes here will only be applied to new posts.'=>'Des publications individuelles peuvent surcharger ces réglages. Les modifications ne seront ici appliquées qu’aux nouvelles publications.','Menu item moved to the top'=>'Élément de menu déplacé vers le haut','Menu item removed'=>'Élément de menu retiré','The Dashboard is the first place you will come to every time you log into your site. It is where you will find all your WordPress tools. If you need help, just click the “Help” tab above the screen title.'=>'Le Tableau de bord est le premier endroit sur lequel vous arrivez à chaque fois que vous vous connectez à votre site. C’est là que vous trouverez tous vos outils WordPress. Si vous avez besoin d’aide, cliquez simplement sur l’onglet « Aide » au dessus du titre de l’écran.','Welcome to your WordPress Dashboard!'=>'Bienvenue sur votre Tableau de bord WordPress !','The application ID must be a UUID.'=>'L’ID de l’application doit être un UUID.','Select location'=>'Sélectionner un emplacement','Visit plugin site for %s'=>'Consultez le site de l’extension %s','pluginCannot Activate'=>'Impossible à activer','Max connections number'=>'Nombre maximal de connexions','Max allowed packet size'=>'Taille maximale autorisée du paquet','Your website appears to use Basic Authentication, which is not currently compatible with application passwords.'=>'Votre site semble utiliser une authentification de base, ce qui n’est actuellement pas compatible avec les mots de passe d’applications.','%1$s “%2$s”'=>'%1$s « %2$s »','Template Editing'=>'Modification de modèles','WordPress comes with some awesome, worldview-changing rights courtesy of its license, the GPL.'=>'WordPress est distribué sous la merveilleuse licence GPL, qui vous garantit la plus grande liberté d’utilisation possible.','Want to see your name in lights on this page?'=>'Voudriez-vous voir votre nom cité sur cette page ?','Get involved in WordPress.'=>'Contribuez à WordPress','WordPress is created by a worldwide team of passionate individuals.'=>'WordPress est créé par une équipe de personnes passionnées répartie dans le monde entier.','%s plugin deactivated during WordPress upgrade.'=>'Extension « %s » désactivée pendant la mise à jour de WordPress.','%1$s %2$s was deactivated due to incompatibility with WordPress %3$s.'=>'L’extension %1$s version %2$s a été désactivée à cause d’une incompatibilité avec WordPress %3$s.','%1$s %2$s was deactivated due to incompatibility with WordPress %3$s, please upgrade to %1$s %4$s or later.'=>'L’extension %1$s version %2$s a été désactivée à cause d’une incompatibilité avec WordPress %3$s, veuillez mettre à jour vers %1$s version %4$s ou plus.','We take privacy and transparency very seriously'=>'Nous accordons une importance toute particulière à la confidentialité des données personnelles','The Four Freedoms'=>'Les quatre libertés','themeDelete %s'=>'Supprimer %s','themeLive Preview %s'=>'Prévisualiser %s','themeCustomize %s'=>'Personnaliser %s','themeView Theme Details for %s'=>'Voir les détails du thème %s','Toggle extra menu items'=>'Permuter les éléments de menu additionnels','Site Health - %s'=>'Santé du site – %s','You need to make the file %1$s writable before you can save your changes. See Changing File Permissions for more information.'=>'Vous devez rendre le fichier %1$s accessible en écriture avant de pouvoir enregistrer vos modifications. Consultez Changer les droits des fichiers pour plus d’informations.','Rewrite rules:'=>'Règles de réécriture :','List of menu items selected for deletion:'=>'Liste des éléments de menu sélectionnés pour la suppression :','Remove Selected Items'=>'Supprimer les éléments sélectionnés','Bulk Select'=>'Sélection groupée','Deleted menu item: %s.'=>'Élément de menu supprimé : %s.','item %s'=>'élément %s','Themes %s'=>'Thèmes %s','Unable to encode the personal data for export. Error: %s'=>'Impossible d’encoder les données personnelles pour l’exportation. Erreur : %s','The %s post meta must be an array.'=>'La metadonnée de publication %s doit être un tableau.','Your site’s health is looking good, but there is still one thing you can do to improve its performance and security.'=>'La santé de votre site semble bonne, mais il y a encore une chose que vous pouvez faire pour améliorer ses performances et sa sécurité.','Your site has a critical issue that should be addressed as soon as possible to improve its performance and security.'=>'Votre site rencontre une erreur critique qui doit être réglée dès que possible afin d’améliorer ses performances et sa sécurité.','Learn how to browse happy'=>'Apprenez comment naviguer sereinement','Internet Explorer does not give you the best WordPress experience. Switch to Microsoft Edge, or another more modern browser to get the most from your site.'=>'Internet Explorer ne vous offre pas la meilleure expérience WordPress. Passez à Microsoft Edge, ou à un autre navigateur plus moderne, pour tirer le meilleur parti de votre site.','GD supported file formats'=>'Formats de fichier GD pris en charge','Unable to determine'=>'Impossible à déterminer','ImageMagick supported file formats'=>'Formats de fichier ImageMagik pris en charge','Imagick version'=>'Version de Imagick','themeUploaded'=>'Téléversé','pluginReplace current with uploaded'=>'Remplacer l’extension actuelle par celle que vous avez téléversée','pluginUploaded'=>'Téléversée','pluginCurrent'=>'Actuelle','Please activate the Link Manager plugin to use the link manager.'=>'Veuillez activer l’extension Link Manager pour utiliser ce gestionnaire de lien.','Create a new Privacy Policy page'=>'Créer une nouvelle page de politique de confidentialité','Send personal data export confirmation email.'=>'Envoyer un e-mail de confirmation d’exportation des données personnelles.','This tool helps site owners comply with local laws and regulations by exporting known data for a given user in a .zip file.'=>'Cet outil aide les propriétaires de sites à se conformer aux lois et réglementations locales en exportant les données connues d’un compte donné dans un fichier ZIP.','Documentation on Export Personal Data'=>'Documentation sur l’exportation de données personnelles','Many plugins may collect or store personal data either in the WordPress database or remotely. Any Export Personal Data request should include data from plugins as well.'=>'De nombreuses extensions peuvent collecter ou stocker des données personnelles dans la base de données WordPress ou sur leurs propres serveurs. Toute demande d’exportation de données personnelles doit également inclure les données des extensions.','If you are not sure, check the plugin documentation or contact the plugin author to see if the plugin collects data and if it supports the Data Exporter tool. This information may be available in the Privacy Policy Guide.'=>'Si vous ne savez pas, consultez la documentation de l’extension ou contactez son auteur/autrice, afin de savoir si l’extension collecte des données et si elle prend en charge l’outil d’exportation des données. Ces informations peuvent aussi être disponibles dans le guide de rédaction de la politique de confidentialité.','Comments — For user comments, Email Address, IP Address, User Agent (Browser/OS), Date/Time, Comment Content, and Content URL.'=>'Commentaires — Pour tout commentaire déposé sur le site, adresse e-mail, adresse IP, agent utilisateur (navigateur/OS), date/heure, contenu du commentaire et URL du contenu.','This screen is where you manage requests for an export of personal data.'=>'Cet écran vous permet de gérer les demandes d’exportation de données personnelles.','Site URLs could not be switched to HTTPS.'=>'Les URL du site ne peuvent pas être passées en HTTPS.','Site URLs switched to HTTPS.'=>'Les URL du site ont été passées en HTTPS.','It looks like HTTPS is not supported for your website at this point.'=>'Il semble que le protocole HTTPS ne soit pas pris en charge par votre site à ce stade.','Sorry, you are not allowed to update this site to HTTPS.'=>'Désolé, vous n’avez pas l’autorisation de passer ce site en HTTPS.','Password reset links sent to %s user.'=>'Le lien de réinitialisation du mot de passe a été envoyé à %s compte.' . "\0" . 'Le lien de réinitialisation du mot de passe a été envoyé à %s comptes.','Password reset link sent.'=>'Le lien de réinitialisation du mot de passe a été envoyé.','Send %s a link to reset their password. This will not change their password, nor will it force a change.'=>'Envoyez à %s un lien pour réinitialiser son mot de passe. Cela ne changera pas son mot de passe, ni ne l’obligera à le modifier.','Send Reset Link'=>'Envoyer le lien de réinitialisation','Policies'=>'Politiques','The Privacy Settings require JavaScript.'=>'Les réglages de confidentialité nécessitent JavaScript.','Privacy SettingsPolicy Guide'=>'Guide de politique','Privacy SettingsSettings'=>'Réglages ','Re-install version %s'=>'Réinstaller la version %s','Update to latest %s nightly'=>'Mettre à jour vers la dernière version nightly','Send personal data erasure confirmation email.'=>'Envoyer l’e-mail de confirmation de la suppression des données personnelles.','Confirmation email'=>'E-mail de confirmation','This tool helps site owners comply with local laws and regulations by deleting or anonymizing known data for a given user.'=>'Cet outil aide les propriétaires de sites à se conformer aux lois et réglementations locales en supprimant ou en anonymisant les données connues d’un compte donné.','Documentation on Erase Personal Data'=>'Documentation sur l’effacement de données personnelles','Many plugins may collect or store personal data either in the WordPress database or remotely. Any Erase Personal Data request should delete data from plugins as well.'=>'De nombreuses extensions peuvent collecter ou stocker des données personnelles, soit dans la base de données WordPress, soit à distance. Toute demande d’effacement de données personnelles doit également effacer les données des extensions.','Plugin Data'=>'Données des extensions','If you are not sure, check the plugin documentation or contact the plugin author to see if the plugin collects data and if it supports the Data Eraser tool. This information may be available in the Privacy Policy Guide.'=>'Si vous ne savez pas, consultez la documentation de l’extension ou contactez son auteur/autrice, afin de savoir si l’extension collecte des données et si elle prend en charge l’outil de suppression des données. Ces informations peuvent aussi être disponibles dans le guide de rédaction de la politique de confidentialité.','Media — A list of URLs for all media file uploads made by the user.'=>' Fichiers multimédias – une liste d’URL pour tous les téléversements de fichiers multimédias effectués par le compte.','Session Tokens — User login information, IP Addresses, Expiration Date, User Agent (Browser/OS), and Last Login.'=>'Jetons de session – informations de connexion de l’utilisateur ou de utilisatrice, adresses IP, date d’expiration, agent utilisateur (navigateur/OS) et dernière connexion.','Community Events Location — The IP Address of the user which is used for the Upcoming Community Events shown in the dashboard widget.'=>'Localisation d’évènements communautaires – adresse IP de l’utilisateur ou de l’utilisatrice qui est utilisée pour les prochains évènements de la communauté indiqués dans le widget du tableau de bord.','Profile Information — user email address, username, display name, nickname, first name, last name, description/bio, and registration date.'=>'Informations de profil — adresse e-mail du compte, identifiant, nom affiché, pseudonyme, prénom, nom, description/bio, et date d’inscription.','Default Data'=>'Données par défaut','The tool associates data stored in WordPress with a supplied email address, including profile data and comments.'=>'L’outil associe les données stockées dans WordPress par une adresse e-mail fournie, y compris les données de profil et les commentaires.','https://make.wordpress.org/community/organize-event-landing-page/'=>'https://make.wordpress.org/community/organize-event-landing-page/','Want more events? Help organize the next one!'=>'Vous voulez plus d’évènements ? Aidez à organiser le prochain !','A password reset link was emailed to %s.'=>'Un lien de réinitialisation du mot de passe a été envoyé par e-mail à %s.','Cannot send password reset, permission denied.'=>'Impossible d’envoyer le lien de réinitialisation du mot de passe, autorisation refusée.','The setting for %1$s is currently configured as 0, this could cause some problems when trying to upload files through plugin or theme features that rely on various upload methods. It is recommended to configure this setting to a fixed value, ideally matching the value of %2$s, as some upload methods read the value 0 as either unlimited, or disabled.'=>'Le réglage pour %1$s est actuellement configuré à 0, ce qui pourrait causer quelques problèmes lorsque vous essayez de téléverser des fichiers par le biais d’extensions ou de thèmes qui dépendent de différentes méthodes de téléversement. Il est recommandé de configurer ce réglage à une valeur fixe, correspondant idéalement à la valeur de %2$s, car certaines méthodes de téléversement lisent la valeur 0 comme étant soit illimitée, soit désactivée.','Talk to your web host about supporting HTTPS for your website.'=>'Contactez votre hébergeur pour la prise en charge HTTPS sur votre site.','Update your site to use HTTPS'=>'Mettre à jour votre site pour utiliser le HTTPS','However, your WordPress Address is currently controlled by a PHP constant and therefore cannot be updated. You need to edit your %1$s and remove or update the definitions of %2$s and %3$s.'=>'Bien que votre adresse WordPress est actuellement contrôlée par une constante PHP et ne peut donc pas être mise à jour. Vous devez modifier votre %1$s et supprimer ou mettre à jour les définitions de %2$s et de %3$s.','HTTPS is already supported for your website.'=>'Le HTTPS est déjà pris en charge pour votre site.','Your WordPress Address and Site Address are not set up to use HTTPS.'=>'Votre adresse WordPress et votre adresse de site ne sont pas configurées pour utiliser le HTTPS.','You are accessing this website using HTTPS, but your WordPress Address and Site Address are not set up to use HTTPS by default.'=>'Vous accédez à ce site en utilisant le HTTPS, mais votre adresse WordPress et votre adresse de site ne sont pas configurées pour utiliser le HTTPS par défaut.','Your Site Address is not set up to use HTTPS.'=>'Votre adresse de site n’est pas configurée pour utiliser le HTTPS.','Learn more about debugging in WordPress.'=>'En savoir plus sur le débogage de WordPress.','Added'=>'Ajouté','Send password reset'=>'Réinitialisation de mot de passe','Contact information'=>'Informations de contact','Copy suggested policy text to clipboard'=>'Copier la suggestion de texte de politique de confidentialité dans le presse-papier','Directory listing failed.'=>'Le listage du répertoire a échoué.','Search Results'=>'Résultats de recherche','Invalid request ID when processing personal data to erase.'=>'ID non valide lors de la fusion des données personnelles à supprimer.','Invalid request ID when merging personal data to export.'=>'ID non valide lors de la fusion des données personnelles à exporter.','Unable to archive the personal data export file (HTML format).'=>'Impossible d’archiver le fichier d’exportation des données personnelles (format HTML).','Unable to archive the personal data export file (JSON format).'=>'Impossible d’archiver le fichier d’exportation des données personnelles (format JSON).','Unable to open personal data export (HTML report) for writing.'=>'Impossible d’ouvrir le fichier d’exportation des données personnelles (rapport HTML) en écriture.','Unable to create personal data export folder.'=>'Impossible de créer le dossier d’exportation des données personnelles du compte.','Request added successfully.'=>'La demande a bien été ajoutée.','Invalid personal data action.'=>'Action des données personnelles non valide.','Unable to initiate confirmation for personal data request.'=>'Impossible d’initier la confirmation pour la demande de données personnelles.','Your site is running on an outdated version of PHP (%s), which should be updated.'=>'Votre site utilise une version obsolète de PHP (%s), qui devrait être mise à jour.','PHP Update Recommended'=>'Mise à jour PHP recommandée','Your website appears to use Basic Authentication, which is not currently compatible with Application Passwords.'=>'Votre site semble utiliser l’authentification basique, qui n’est pas compatible avec les mots de passe d’application.','https://developer.wordpress.org/rest-api/frequently-asked-questions/#why-is-authentication-not-working'=>'https://developer.wordpress.org/rest-api/frequently-asked-questions/#why-is-authentication-not-working','This site appears to be under version control. Automatic updates are disabled.'=>'Ce site semble être sous contrôle de version. Les mises à jour automatiques sont désactivées.','You are using a development version of WordPress.'=>'Vous utilisez actuellement une version de développement de WordPress.','You can update to the latest nightly build manually:'=>'Vous pouvez mettre à jour vers la dernière version du jour manuellement :','Enable automatic updates for all new versions of WordPress.'=>'Activer les mises à jour automatiques pour toutes les nouvelles versions de WordPress.','Switch to automatic updates for maintenance and security releases only.'=>'Basculer sur les mises à jour de maintenance et de sécurité uniquement.','Current version: %s'=>'Version actuelle : %s','This site will not receive automatic updates for new versions of WordPress.'=>'Ce site ne recevra pas de mise à jour automatique pour les nouvelles versions de WordPress.','This site is automatically kept up to date with maintenance and security releases of WordPress only.'=>'Ce site est automatiquement mis à jour avec uniquement les versions de maintenance et de sécurité de WordPress.','This site is automatically kept up to date with each new version of WordPress.'=>'Ce site est automatiquement mis à jour avec chaque nouvelle version de WordPress.','WordPress will only receive automatic security and maintenance releases from now on.'=>'À partir de maintenant, WordPress ne recevra que les mises à jour automatiques de sécurité et de maintenance.','Automatic updates for all WordPress versions have been enabled. Thank you!'=>'Les mises à jour automatiques de toutes les nouvelles versions de WordPress ont été activées. Merci !','Site Health Status — Informs you of any potential issues that should be addressed to improve the performance or security of your website.'=>'Santé du site — Vous informe de tout problème potentiel qui devrait être résolu pour améliorer les performances ou la sécurité de votre site.','Your new password for %s is:'=>'Votre nouveau mot de passe pour %s est :','Add New Application Password'=>'Ajouter un mot de passe d’application','Required to create an Application Password, but not to update the user.'=>'Nécessaire pour créer un mot de passe d’application, mais pas pour mettre à jour le compte.','Go to Updates'=>'Aller aux mises à jour','← Go to Users'=>'← Aller aux comptes','← Go to editor'=>'← Aller à l’éditeur','Go to Plugin Installer'=>'Aller à l’installeur d’extensions','Go to Importers'=>'Aller aux outils d’importation','Go to Theme Installer'=>'Aller à l’installeur de thèmes','Go to top'=>'Aller en haut','%s could not be located. Please try another nearby city. For example: Kansas City; Springfield; Portland.'=>'La localisation de %s n’a pas fonctionné. Veuillez essayer une autre ville proche. Par exemple : Rennes, Strasbourg ou Grenoble.','You will be returned to the WordPress Dashboard, and no changes will be made.'=>'Vous serez redirigé vers le Tableau de bord de WordPress, et aucune modification ne sera faite.','No, I do not approve of this connection'=>'Non, je n’autorise pas cette connexion','You will be given a password to manually enter into the application in question.'=>'Un mot de passe à saisir manuellement dans l’application en question vous sera donné.','You will be sent to %s'=>'Vous allez être redirigé vers %s','Yes, I approve of this connection'=>'Oui, j’autorise la connexion','This will grant access to the %2$s site in this installation that you have permissions on.'=>'Cela donnera accès au site sur lequel vous avez des droits sur cette installation.' . "\0" . 'Cela donnera accès aux %2$s sites sur lesquels vous avez des droits sur cette installation.','Would you like to give this application access to your account? You should only do this if you trust the application in question.'=>'Voulez-vous fournir à cette application un accès à votre compte ? Vous ne devriez le faire que si vous avez confiance en l’application en question.','Would you like to give the application identifying itself as %s access to your account? You should only do this if you trust the application in question.'=>'Voulez-vous fournir un accès à votre compte à l’application s’identifiant comme %s ? Vous ne devriez le faire que si vous avez confiance en l’application en question.','An application would like to connect to your account.'=>'Une application souhaite se connecter à votre compte.','Cannot Authorize Application'=>'Impossible d’autoriser l’application','The Authorize Application request is not allowed.'=>'La demande d’autorisation pour les applications n’est pas autorisée.','Authorize Application'=>'Autoriser l’application','Be sure to save this in a safe location. You will not be able to retrieve it.'=>'Assurez-vous de le conserver en lieu sûr. Vous ne pourrez pas le récupérer.','New Application Password Name'=>'Nouveau nom du mot de passe d’application','Application passwords grant access to the %2$s site in this installation that you have permissions on.'=>'Les mots de passe d’application donnent accès au site sur lequel vous avez des droits sur cette installation.' . "\0" . 'Les mots de passe d’application donnent accès aux %2$s sites sur lesquels vous avez des droits sur cette installation.','Application passwords allow authentication via non-interactive systems, such as XML-RPC or the REST API, without providing your actual password. Application passwords can be easily revoked. They cannot be used for traditional logins to your website.'=>'Les mots de passe d’application autorisent l’authentification via des systèmes non-interactifs tels que XML-RPC ou l’API REST, sans fournir votre vrai mot de passe. Les mots de passe d’application peuvent facilement être révoqués. Ils ne peuvent pas être utilisés pour une connexion classique à votre site.','Application Passwords'=>'Mots de passe d’application','Type the new password again.'=>'Saisissez à nouveau le nouveau mot de passe.','Set New Password'=>'Définir le nouveau mot de passe','Type the password again.'=>'Saisissez à nouveau le nouveau mot de passe.','You can update from WordPress %1$s to WordPress %3$s manually:'=>'Vous pouvez mettre à jour de WordPress %1$s à WordPress %3$s manuellement :','Revoke all application passwords'=>'Révoquer tous les mots de passe d’application','Revoke "%s"'=>'Révoquer « %s »','Revoke'=>'Révoquer','Last IP'=>'Dernière IP','Last Used'=>'Dernier utilisé','The Site Health check for %1$s has been replaced with %2$s.'=>'La fonction %1$s de l’outil Santé du site a été remplacée par %2$s.','Erase personal data'=>'Effacer les données personnelles','- %1$s (from version %2$s to %3$s)'=>'- %1$s (de la version %2$s à %3$s)','Current Header Video'=>'Vidéo d’entête actuelle','Authorization header'=>'Entête d’autorisation','Learn how to configure the Authorization header.'=>'En savoir plus sur la configuration des entêtes d’autorisation.','Flush permalinks'=>'Regénérer les permaliens','The authorization header is invalid'=>'L’entête d’autorisation est invalide.','The authorization header is missing'=>'L’entête d’autorisation est manquant','The Authorization header is working as expected'=>'L’entête d’autorisation fonctionne comme prévu','Some screen elements can be shown or hidden by using the checkboxes.'=>'Certains éléments de l’écran peuvent être affichés ou masqués en utilisant les cases à cocher.','Screen elements'=>'Éléments de l’écran','The URL must be served over a secure connection.'=>'L’URL doit être accédée via une connexion sécurisée.','If you request a password reset, your IP address will be included in the reset email.'=>'Si vous demandez une réinitialisation de votre mot de passe, votre adresse IP sera incluse dans l’e-mail de réinitialisation.','No plugins found for: %s.'=>'Aucune extension trouvée pour : %s.','Complete request'=>'Demande terminée','Mark export request for “%s” as completed.'=>'Marquer la demande d’exportation pour « %s » comme terminée.','%d request deleted successfully.'=>'%d demande bien supprimée.' . "\0" . '%d demandes bien supprimées.','%d request failed to delete.'=>'%d demande de suppression a échoué.' . "\0" . '%d demandes de suppression ont échoué.','%d request marked as complete.'=>'%d demande marquée comme terminée.' . "\0" . '%d demandes marquées comme terminées.','%d confirmation request re-sent successfully.'=>'%d demande de confirmation renvoyée avec succès.' . "\0" . '%d demandes de confirmation renvoyées avec succès.','%d confirmation request failed to resend.'=>'%d demande de confirmation n’a pas pu être renvoyée.' . "\0" . '%d demandes de confirmation n’ont pas pu être renvoyées.','Mark requests as completed'=>'Marquer les demandes comme terminées','Next steps'=>'Étapes suivantes','Unable to open personal data export file (archive) for writing.'=>'Impossible d’ouvrir en écriture le fichier (archive) d’exportation des données confidentielles du compte.','Unable to open personal data export file (JSON report) for writing.'=>'Impossible d’ouvrir le fichier (rapport JSON) d’exportation des données confidentielles du compte.','Unable to protect personal data export folder from browsing.'=>'Impossible de protéger le dossier d’exportation de confidentialité du compte contre l’affichage public.','Invalid email address when generating personal data export file.'=>'Réception d’une adresse e-mail non valide lors de la génération du fichier d’exportation de confidentialité du compte.','Invalid request ID when generating personal data export file.'=>'ID non valide lors de la demande génération du fichier d’exportation de confidentialité du compte.','Unable to generate personal data export file. ZipArchive not available.'=>'Impossible de générer le fichier d’exportation de confidentialité du compte. La fonction ZipArchive n’est pas disponible.','Search results for: %s'=>'Résultats de recherche pour : %s','Note that even when set to discourage search engines, your site is still visible on the web and not all search engines adhere to this directive.'=>'Notez que même lorsqu’il est paramétré pour décourager les moteurs de recherche, votre site est toujours visible sur le web et que tous les moteurs de recherche ne suivent pas cette directive.','You can choose whether or not your site will be crawled by robots, ping services, and spiders. If you want those services to ignore your site, click the checkbox next to “Discourage search engines from indexing this site” and click the Save Changes button at the bottom of the screen.'=>'Vous pouvez choisir si votre site est parcouru par les robots et autres logiciels automatisés ou non. Si vous préférez que ces services ignorent votre site, cochez l’option « Demander aux moteurs de recherche de ne pas indexer ce site » et cliquez sur le bouton « Enregistrer les modifications » en bas de l’écran.','The "%1$s" value is smaller than "%2$s"'=>'La valeur « %1$s » est inférieure à « %2$s »','Environment type'=>'Type d’environnement','Auto-updates are only available for plugins recognized by WordPress.org, or that include a compatible update system.'=>'Les mises à jour auto ne sont disponibles que pour les extensions reconnues par WordPress.org, ou qui incluent un système de mise à jour compatible.','Update Incompatible'=>'Mise à jour non compatible','This update does not work with your version of WordPress.'=>'Cette mise à jour ne fonctionne pas avec votre version de WordPress.','This update does not work with your versions of WordPress and PHP.'=>'Cette mise à jour ne fonctionne pas avec votre version de WordPress et de PHP.','Disallowed Comment Keys'=>'Clés de commentaires non autorisées','Plugin and theme auto-updates'=>'Mise à jour auto des extensions et thèmes','There appear to be no issues with plugin and theme auto-updates.'=>'Il ne semble pas y avoir de problème avec les mises à jour automatiques des extensions et des thèmes.','Auto-updates for themes appear to be disabled. This will prevent your site from receiving new versions automatically when available.'=>'Les mises à jour automatiques des thèmes semblent désactivées. Cela empêche votre site de recevoir automatiquement les nouvelles versions lorsqu’elles sont disponible.','Auto-updates for plugins appear to be disabled. This will prevent your site from receiving new versions automatically when available.'=>'Les mises à jour automatiques des extensions semblent désactivées. Cela empêche votre site de recevoir automatiquement les nouvelles versions lorsqu’elles sont disponible.','Auto-updates for plugins and themes appear to be disabled. This will prevent your site from receiving new versions automatically when available.'=>'Les mises à jour automatiques des extensions et des thèmes semblent désactivées. Cela empêche votre site de recevoir automatiquement les nouvelles versions lorsqu’elles sont disponible.','Auto-updates for plugins and/or themes appear to be disabled, but settings are still set to be displayed. This could cause auto-updates to not work as expected.'=>'Les mises à jour automatiques des extensions et/ou des thèmes semblent désactivées, mais les réglages s’affichent tout de même. Cela pourrait empêcher les mises à jour automatiques de fonctionner comme prévu.','Your site may have problems auto-updating plugins and themes'=>'Votre site semble avoir des problèmes avec les mises à jour automatiques des extensions et des thèmes.','Plugin and theme auto-updates ensure that the latest versions are always installed.'=>'Les mises à jour automatiques des extensions et des thèmes permettent de s’assurer qu’ils soient toujours installés dans leur dernière version disponible.','Plugin and theme auto-updates appear to be configured correctly'=>'Les mises à jour automatiques des extensions et des thèmes semblent correctement configurées','themeActivate “%s”'=>'Activer « %s »','Sorry, you are not allowed to modify plugins.'=>'Désolé, vous n’avez pas l’autorisation de modifier les extensions.','The setting for %1$s is smaller than %2$s, this could cause some problems when trying to upload files.'=>'Le réglage de %1$s est inférieur à %2$s, ce qui pourrait causer des problèmes lors du téléversement de fichiers.','%1$s is set to %2$s. You won\'t be able to upload files on your site.'=>'%1$s est réglé sur %2$s. Vous ne pourrez pas téléverser des fichiers sur votre site.','The %s function has been disabled, some media settings are unavailable because of this.'=>'La fonction %s a été désactivée. De ce fait, certains réglages des médias ne sont pas disponibles.','The %1$s directive in %2$s determines if uploading files is allowed on your site.'=>'La directive %1$s dans le fichier %2$s détermine si le téléversement de fichiers est autorisé sur votre site.','Files can be uploaded'=>'Les fichiers peuvent être téléversés','Max effective file size'=>'Taille de fichier effective maximale','Max size of an uploaded file'=>'Taille maximale des fichiers téléversés','Max size of post data allowed'=>'Taille maximale autorisée pour les données des publications','File uploads'=>'Téléversements de fichiers','File upload settings'=>'Réglages des téléversements de fichiers','themeCannot Install %s'=>'Impossible d’installer %s','pluginInstall %s'=>'Installer %s','themeInstall %s'=>'Installer %s','themeUpdate %s now'=>'Mettre à jour %s maintenant','- %1$s version %2$s'=>'- %1$s version %2$s','themeActivated'=>'Activé','Sorry, you are not allowed to enable themes automatic updates.'=>'Désolé, vous n’avez pas l’autorisation d’activer les mises à jour automatiques de thèmes.','This plugin is already installed.'=>'Cette extension est déjà installée.','pluginUpdate %s now'=>'Mettre à jour %s maintenant','pluginInstall %s now'=>'Installer %s maintenant','Dismiss this notice.'=>'Ignorer cette notification.','themeCannot Activate %s'=>'Impossible d’activer %s','Theme will no longer be auto-updated.'=>'Le thème ne sera plus mis à jour automatiquement.','Theme will be auto-updated.'=>'Le thème sera mis à jour automatiquement.','Auto-updates can be enabled or disabled for each individual theme. Themes with auto-updates enabled will display the estimated date of the next auto-update. Auto-updates depends on the WP-Cron task scheduling system.'=>'Les mises à jour automatiques peuvent être activées ou désactivées pour chaque thème. Les thèmes qui sont mis à jour automatiquement affichent la date estimée de la prochaine mise à jour. Les mises à jour dépendent du système de tâches planifiées WP-Cron.','Sorry, you are not allowed to disable themes automatic updates.'=>'Désolé, vous n’avez pas l’autorisation de désactiver les mises à jour automatiques des thèmes.','Sorry, you are not allowed to manage plugins automatic updates.'=>'Désolé, vous n’êtes pas autorisé à gérer les mises à jour automatiques d’extensions.','Error in deleting the item.'=>'Erreur lors de la suppression de l’élément.','Error in restoring the item from Trash.'=>'Erreur lors de la restauration de l’élément depuis la corbeille.','Error in moving the item to Trash.'=>'Erreur lors du déplacement de l’élément vers la corbeille.','Selected plugins will no longer be auto-updated.'=>'Les extensions sélectionnées ne seront plus mises à jour automatiquement.','Selected plugins will be auto-updated.'=>'Les extensions sélectionnées seront mises à jour automatiquement.','Plugin will no longer be auto-updated.'=>'L’extension ne sera plus mise à jour automatiquement.','Plugin will be auto-updated.'=>'L’extension sera mise à jour automatiquement.','Auto-updates can be enabled or disabled for each individual plugin. Plugins with auto-updates enabled will display the estimated date of the next auto-update. Auto-updates depends on the WP-Cron task scheduling system.'=>'Les mises à jour automatiques peuvent être activées ou désactivées extension par extension. Les extensions dont les mises à jour automatiques sont activées afficheront la date estimée de la prochaine mise à jour automatique. Les mises à jour automatiques dépendent du système de planification des tâches de WP-Cron.','Please connect to your network admin to manage plugins automatic updates.'=>'Veuillez vous connecter à l’administration de votre réseau pour gérer les mises à jour automatiques des extensions.','The admin email verification page will reappear after %s.'=>'La page de vérification de l’e-mail d’administration réapparaîtra après %s.','Auto-updates'=>'Mises à jour auto','Please note: Third-party themes and plugins, or custom code, may override WordPress scheduling.'=>'Veuillez noter que des thèmes et extensions tiers ou du code personnalisé peuvent passer outre la planification WordPress.','Auto-updates can be enabled or disabled for WordPress major versions and for each individual theme or plugin. Themes or plugins with auto-updates enabled will display the estimated date of the next auto-update. Auto-updates depends on the WP-Cron task scheduling system.'=>'Les mises à jour automatiques peuvent être activées ou désactivées pour les versions majeures de WordPress et pour chaque thème ou extension. Les thèmes et les extensions qui sont mis à jour automatiquement affichent la date estimée de la prochaine mise à jour. Les mises à jour dépendent du système de tâches planifiées WP-Cron.','Important: Before updating, please back up your database and files. For help with updates, visit the Updating WordPress documentation page.'=>'Important : Avant de procéder aux mises à jour, veuillez sauvegarder votre base de données et vos fichiers. Pour obtenir de l’aide à propos des mises à jour, consultez la page de documentation Comment mettre à jour WordPress.','themeCannot Activate'=>'Impossible à activer','You cannot edit this comment because the associated post is in the Trash. Please restore the post first, then try again.'=>'Vous ne pouvez pas modifier ce commentaire car la publication associée est dans la corbeille. Veuillez d’abord restaurer la publication, puis essayer de nouveau.','media itemSuccess'=>'Succès','pluginError: Current WordPress version (%1$s) does not meet minimum requirements for %2$s. The plugin requires WordPress %3$s.'=>'Erreur : la version courante de WordPress (%1$s) ne correspond pas aux prérequis minimaux pour %2$s. L’extension nécessite WordPress %3$s.','pluginError: Current PHP version (%1$s) does not meet minimum requirements for %2$s. The plugin requires PHP %3$s.'=>'Erreur : la version courante de PHP (%1$s) ne correspond pas aux prérequis minimaux pour %2$s. L’extension nécessite PHP %3$s.','pluginError: Current versions of WordPress (%1$s) and PHP (%2$s) do not meet minimum requirements for %3$s. The plugin requires WordPress %4$s and PHP %5$s.'=>'Erreur : la version courante de WordPress (%1$s) et PHP (%2$s) ne correspondent pas aux prérequis minimaux pour %3$s. L’extension nécessite WordPress %4$s et PHP %5$s.','Invalid data. The item does not exist.'=>'Données non valides. L’élément n’existe pas.','Invalid data. Unknown type.'=>'Données non valides. Type inconnu.','Invalid data. Unknown state.'=>'Données non valides. État inconnu.','Invalid data. No selected item.'=>'Données non valides. Aucun élément sélectionné.','You cannot reply to a comment on a draft post.'=>'Erreur : vous ne pouvez pas répondre aux commentaires sur une publication en brouillon.','To manage themes on your site, visit the Themes page: %s'=>'Pour gérer les thèmes de votre site, visitez la page des thèmes : %s','To manage plugins on your site, visit the Plugins page: %s'=>'Pour gérer les thèmes de votre site, visitez la page des extensions : %s','These themes are now up to date:'=>'Ces thèmes sont maintenant à jour :','These plugins are now up to date:'=>'Ces extensions sont maintenant à jour :','These themes failed to update:'=>'Ces thèmes n’ont pas été mis à jour :','Please check your site now. It’s possible that everything is working. If there are updates available, you should update.'=>'Veuillez maintenant vérifier votre site. Il est possible que tout fonctionne. Si des mises à jour sont disponibles, vous devriez les faire.','Howdy! Themes failed to update on your site at %s.'=>'Bonjour ! Des mises à jour de thèmes ont échoué sur votre site situé à l’adresse %s.','[%s] Some themes have failed to update'=>'[%s] Certaines mises à jour de thèmes ont échoué','Howdy! Plugins failed to update on your site at %s.'=>'Bonjour ! Certaines mises à jour d’extensions ont échoué sur votre site situé à l’adresse %s.','[%s] Some plugins have failed to update'=>'[%s] Certaines mises à jour d’extensions ont échoué','Howdy! Plugins and themes failed to update on your site at %s.'=>'Bonjour ! Certaines mises à jour d’extensions et de thèmes ont échoué sur votre site situé à l’adresse %s.','[%s] Some plugins and themes have failed to update'=>'[%s] Certaines mises à jour d’extensions et de thèmes ont échoué','Howdy! Some themes have automatically updated to their latest versions on your site at %s. No further action is needed on your part.'=>'Bonjour ! Des thèmes ont été mis à jour automatiquement vers leurs dernières versions sur votre site à l’adresse %s. Vous n’avez rien de plus à faire.','[%s] Some themes were automatically updated'=>'[%s] Certains thèmes ont été mis à jour automatiquement','Howdy! Some plugins have automatically updated to their latest versions on your site at %s. No further action is needed on your part.'=>'Bonjour ! Des extensions ont été mises à jour automatiquement vers leurs dernières versions sur votre site à l’adresse %s. Vous n’avez rien de plus à faire.','[%s] Some plugins were automatically updated'=>'[%s] Certaines extensions ont été mises à jour automatiquement','Howdy! Some plugins and themes have automatically updated to their latest versions on your site at %s. No further action is needed on your part.'=>'Bonjour ! Des extensions et thèmes ont été mis à jour automatiquement vers leurs dernières versions sur votre site situé à l’adresse %s. Vous n’avez rien de plus à faire.','[%s] Some plugins and themes have automatically updated'=>'[%s] Des extensions et thèmes ont été mis à jour automatiquement','Move %s box down'=>'Déplacer la boite %s vers le bas','Move %s box up'=>'Déplacer la boite %s vers le haut','commentNot spam'=>'N’est pas un indésirable','PHP Sessions'=>'Sessions PHP','A PHP session was created by a %1$s function call. This interferes with REST API and loopback requests. The session should be closed by %2$s before making any HTTP requests.'=>'Une session PHP a été créée par un appel de fonction %1$s. Cela interfère avec l’API REST et les requêtes de boucle (loopback). La session devrait être fermée par %2$s avant d’effectuer toute requête HTTP.','An active PHP session was detected'=>'Une session PHP active a été détectée','PHP sessions created by a %1$s function call may interfere with REST API and loopback requests. An active session should be closed by %2$s before making any HTTP requests.'=>'Les sessions PHP créées par un appel de fonction %1$s peuvent interférer avec l’API REST et les requêtes de boucle (loopback). Une session active devrait être fermée par %2$s avant d’effectuer toute requête HTTP.','No PHP sessions detected'=>'Aucune session PHP détectée.','Extended view'=>'Vue étendue','Compact view'=>'Vue compacte','Error: Passwords do not match. Please enter the same password in both password fields.'=>'Erreur : les mots de passe ne correspondent pas. Veuillez saisir le même mot de passe dans les deux champs.','post action/button labelSchedule'=>'Planifier','No plugins found. Try a different search.'=>'Aucune extension trouvée. Essayez une recherche différente.','Automatic update scheduled in %s.'=>'Mise à jour automatique planifiée dans %s.','Automatic update overdue by %s. There may be a problem with WP-Cron.'=>'La mise à jour automatique est en retard de %s. Il peut y avoir un problème avec WP-Cron.','Automatic update not scheduled. There may be a problem with WP-Cron.'=>'Mise à jour automatique non planifiée. Il peut y avoir un problème avec WP-Cron.','You are updating a plugin. Be sure to back up your database and files first.'=>'Vous mettez à jour une extension. Au préalable, assurez-vous de sauvegarder votre base de données et vos fichiers.','You are uploading an older version of a current plugin. You can continue to install the older version, but be sure to back up your database and files first.'=>'Vous téléversez une ancienne version d’une extension actuelle. Vous pouvez poursuivre l’installation de l’ancienne version, mais assurez-vous de sauvegarder la base de donnée et les fichiers auparavant.','Your WordPress version is %1$s, however the uploaded plugin requires %2$s.'=>'Vous utilisez la version %1$s de WordPress, mais l’extension téléversée nécessite la version %2$s.','The PHP version on your server is %1$s, however the uploaded plugin requires %2$s.'=>'Votre serveur utilise la version %1$s de PHP, mais l’extension téléversée nécessite la version %2$s.','The plugin cannot be updated due to the following:'=>'L’extension ne peut être mise à jour pour la raison suivante :','Plugin name'=>'Nom de l’extension','Theme downgraded successfully.'=>'Le thème a bien été rétrogradé.','Theme downgrade failed.'=>'La rétrogradation du thème a échoué.','Downgrading the theme…'=>'Rétrogradation du thème…','Updating the theme…'=>'Mise à jour du thème…','The active theme has the following error: "%s".'=>'Le thème actif contient l’erreur suivante : « %s ».','Enable auto-updates'=>'Activer les mises à jour auto','Disable auto-updates'=>'Désactiver les mises à jour auto','Disable Auto-updates'=>'Désactiver les mises à jour auto','Enable Auto-updates'=>'Activer les mises à jour auto','Auto-updates Disabled (%s)'=>'Mises à jour auto désactivées (%s)' . "\0" . 'Mises à jour auto désactivées (%s)','Auto-updates Enabled (%s)'=>'Mises à jour auto activées (%s)' . "\0" . 'Mises à jour auto activées (%s)','Automatic Updates'=>'Mises à jour automatiques','No plugins are currently available.'=>'Aucune extension n’est disponible pour l’instant.','Restore original image'=>'Restaurer l’image originale','The uploaded file has expired. Please go back and upload it again.'=>'Le fichier téléversé a expiré. Veuillez le téléverser à nouveau.','Cancel and go back'=>'Annuler et revenir en arrière','themeReplace active with uploaded'=>'Remplacer le thème actif par celui que vous avez téléversé','You are updating a theme. Be sure to back up your database and files first.'=>'Vous mettez à jour un thème. Assurez-vous de sauvegarder votre base de données et vos fichiers d’abord.','You are uploading an older version of the active theme. You can continue to install the older version, but be sure to back up your database and files first.'=>'Vous téléversez une ancienne version d’un thème actif. Vous pouvez continuer d’installer l’ancienne version, mais au préalable, assurez-vous de sauvegarder votre base de données et vos fichiers.','Your WordPress version is %1$s, however the uploaded theme requires %2$s.'=>'Vous utilisez la version %1$s de WordPress, mais le thème téléversé nécessite la version %2$s.','The PHP version on your server is %1$s, however the uploaded theme requires %2$s.'=>'Votre serveur utilise la version %1$s de PHP, mais le thème téléversé nécessite la version %2$s.','The theme cannot be updated due to the following:'=>'Le thème ne peut pas être mis à jour pour les raisons suivantes :','(not found)'=>'(non trouvé)','Required PHP version'=>'Version de PHP nécessaire','Required WordPress version'=>'Version de WordPress nécessaire','Theme name'=>'Nom du thème','themeCannot Install'=>'Impossible d’installer','Block Editor Patterns'=>'Compositions pour l’éditeur de blocs','Plugin downgraded successfully.'=>'L’extension a bien été rétrogradée.','Plugin downgrade failed.'=>'La rétrogradation de l’extension a échoué.','Downgrading the plugin…'=>'Rétrogradation de l’extension…','Updating the plugin…'=>'Mise à jour de l’extension…','Could not remove the current plugin.'=>'Impossible de supprimer l’extension actuelle.','Removing the current plugin…'=>'Suppression de l’extension actuelle…','Auto-update'=>'Mise à jour auto','Auto-updates disabled'=>'Mises à jour auto désactivées','Auto-updates enabled'=>'Mises à jour auto activées','Are pretty permalinks supported?'=>'Les permaliens sont-ils pris en charge ?','PHP memory limit (only for admin screens)'=>'Limite de mémoire PHP (uniquement pour les écrans d’administration)','Is this site discouraging search engines?'=>'Ce site décourage-t-il les moteurs de recherche ?','Wide Blocks'=>'Blocs larges','Block Editor Styles'=>'Styles de l’éditeur de blocs','Spam'=>'Indésirable','Unable to write to %s file.'=>'Impossible d’écrire dans le fichier %s.','Error: The %s options page is not in the allowed options list.'=>'Erreur : page d’options %s introuvable dans la liste des options autorisées.','Error:'=>'Erreur :','You should update your %s file now.'=>'Vous devez mettre à jour votre fichier %s maintenant.','This localized version contains both the translation and various other localization fixes.'=>'Cette version localisée contient à la fois les traductions et d’autres correctifs de localisation.','Take a look at the %1$d item on the Site Health screen.'=>'Jetez un œil à %1$d élément sur l’écran de santé du site.' . "\0" . 'Jetez un œil à %1$d éléments sur l’écran de santé du site.','Your site’s health is looking good, but there are still some things you can do to improve its performance and security.'=>'L’état de santé de votre site semble correct, mais il reste des choses que vous pourriez faire afin d’améliorer ses performances et sa sécurité.','Great job! Your site currently passes all site health checks.'=>'Bon travail ! Votre site passe actuellement toutes les vérifications de santé du site.','Your site has critical issues that should be addressed as soon as possible to improve its performance and security.'=>'Votre site rencontre des erreurs critiques qui doivent être réglées dès que possible afin d’améliorer ses performances et sa sécurité.','Site health checks will automatically run periodically to gather information about your site. You can also visit the Site Health screen to gather information about your site now.'=>'Des contrôles de santé du site seront automatiquement effectués périodiquement pour recueillir des informations sur votre site. Vous pouvez également vous rendre sur l’écran de Santé du site pour recueillir dès maintenant des informations sur votre site.','No information yet…'=>'Aucune information pour le moment…','The uploaded file exceeds the %1$s directive in %2$s.'=>'Le fichier téléversé dépasse la directive %1$s dans %2$s.','No comments found in Trash.'=>'Aucun commentaire trouvé dans la corbeille.','File is empty. Please upload something more substantial. This error could also be caused by uploads being disabled in your %1$s file or by %2$s being defined as smaller than %3$s in %1$s.'=>'Le fichier est vide. Veuillez téléverser quelque chose de plus substantiel. Cette erreur peut également être due au fait que les téléversements sont désactivés dans votre fichier %1$s ou que %2$s est défini comme inférieur à %3$s dans %1$s.','A test is unavailable'=>'Un test n’est pas disponible','Error: %1$s (%2$s)'=>'Erreur : %1$s (%2$s)','Your site is running on an older version of PHP (%s), which should be updated'=>'Votre site utilise une version dépréciée de PHP (%s), elle devrait être mise à niveau.','Your site is running on an older version of PHP (%s)'=>'Votre site utilise une version ancienne de PHP (%s)','Your site is running a recommended version of PHP (%s)'=>'Votre site utilise une version recommandée de PHP (%s)','No media files found in Trash.'=>'Aucun fichier média trouvé dans la corbeille.','%1$s %2$d – %3$s %4$d, %5$d'=>'%1$s %2$d – %3$s %4$d, %5$d','upcoming events year formatY'=>'Y','upcoming events day formatj'=>'j','%1$s %2$d–%3$d, %4$d'=>'%1$s %2$d–%3$d, %4$d','upcoming events month formatF'=>'F','Resend confirmation requests'=>'Renvoyer les demandes de confirmation','Delete requests'=>'Supprimer les demandes','Table prefix'=>'Préfixe de table','PHP Default Timezone'=>'Fuseau horaire par défaut de PHP','PHP default timezone was changed after WordPress loading by a %s function call. This interferes with correct calculations of dates and times.'=>'Le fuseau horaire par défaut de PHP a été modifié après le chargement de WordPress par un appel à la fonction %s. Cela perturbe le fonctionnement du calcul des dates et des heures.','PHP default timezone is invalid'=>'Le fuseau horaire par défaut de PHP n’est pas valide.','PHP default timezone was configured by WordPress on loading. This is necessary for correct calculations of dates and times.'=>'Le fuseau horaire par défaut de PHP a été configuré au chargement de WordPress. Ceci est nécessaire au fonctionnement du calcul des dates et des heures.','PHP default timezone is valid'=>'Le fuseau horaire par défaut de PHP est valide','The seventh parameter passed to %s should be numeric representing menu position.'=>'Le septième paramètre passé à %s devrait être un nombre entier représentant une position de menu.','The update cannot be installed because WordPress %1$s requires the %2$s PHP extension.'=>'La mise à jour ne peut pas être installée car WordPress %1$s nécessite l’extension PHP %2$s.','https://wordpress.org/about/stats/'=>'https://fr.wordpress.org/about/stats/','Documentation on Export'=>'Documentation sur l’exportation','Documentation on Installing Plugins'=>'Documentation sur l’installation d’extensions','Documentation on Managing Pages'=>'Documentation sur la gestion des pages','Documentation on Managing Posts'=>'Documentation sur la gestion des articles','Documentation on Discussion Settings'=>'Documentation sur les réglages des commentaires','Documentation on Adding New Themes'=>'Documentation sur l’ajout de nouveaux thèmes','Documentation on Uploading Media Files'=>'Documentation sur le téléversement de médias','Descriptions of Roles and Capabilities'=>'Description des rôles et des permissions','Documentation on Managing Users'=>'Documentation sur la gestion des comptes','Documentation on User Profiles'=>'Documentation sur l’écran Profil','Documentation on Media Settings'=>'Documentation sur les réglages des médias','Documentation on Import'=>'Documentation sur l’import','Documentation on Tools'=>'Documentation sur l’écran Outils','This page allows direct access to your site settings. You can break things here. Please be cautious!'=>'Cette page donne un accès direct aux réglages de votre site. Vous pouvez casser des choses ici, donc faites attention !','Format — Post Formats designate how your theme will display a specific post. For example, you could have a standard blog post with a title and paragraphs, or a short aside that omits the title and contains a short text blurb. Your theme could enable all or some of 10 possible formats. Learn more about each post format.'=>'Format - Un format de publication désigne la manière dont votre thème doit afficher une publication donnée. Par exemple, vous pourriez avoir un article de blog classique, avec titre et paragraphes, ou le format En passant pour ne pas utiliser le titre et n’afficher qu’un court texte. Votre thème peut utiliser jusqu’à 10 formats différents. Lisez la documentation (en anglais) pour obtenir une description de chaque format.','Documentation on Editing Pages'=>'Documentation sur la modification des pages','Documentation on Adding New Pages'=>'Documentation sur la création de nouvelles pages','Documentation on Media Library'=>'Documentation sur la médiathèque','Revisions Management'=>'Gestion des révisions','Documentation on Edit Media'=>'Documentation sur la modification des médias','Documentation on Managing Plugins'=>'Documentation sur la gestion des extensions (en anglais)','Documentation on Dashboard'=>'Documentation sur le Tableau de bord','Documentation on Adding New Users'=>'Documentation sur l’ajout de nouveaux comptes','This page can show you every detail about the configuration of your WordPress website. For any improvements that could be made, see the Site Health Status page.'=>'Cette page peut vous afficher tous les détails sur la configuration de votre site WordPress. Pour toute amélioration qui pourrait être apportée, consultez la page État de santé du site.','Results are still loading…'=>'Les résultats sont toujours en cours de chargement…','Documentation on Using Permalinks'=>'Documentation sur l’utilisation des permaliens','Documentation on Permalinks Settings'=>'Documentation sur les réglages des permaliens','Documentation on Updating WordPress'=>'Documentation sur la mise à jour de WordPress','Documentation on Menus'=>'Documentation sur les menus','Documentation on Writing Plugins'=>'Documentation sur l’écriture d’extensions en anglais)','Documentation on Template Tags'=>'Documentation sur les balises de modèles (en anglais)','Documentation on Using Themes'=>'Documentation sur l’utilisation des thèmes','Documentation on Theme Development'=>'Documentation sur le développement de thèmes (en anglais)','Documentation on Comments'=>'Documentation sur les commentaires','Universal time is %s.'=>'L’heure universelle est %s.','Choose either a city in the same timezone as you or a %s (Coordinated Universal Time) time offset.'=>'Choisissez soit une ville dans le même fuseau horaire que vous ou un décalage horaire %s (Temps Universel Coordonné).','Administration Email Address'=>'Adresse e-mail d’administration','Documentation on General Settings'=>'Documentation sur les réglages généraux','You need to make this file writable before you can save your changes. See Changing File Permissions for more information.'=>'Vous devez rendre ce fichier accessible en écriture avant de pouvoir enregistrer vos modifications. Consultez Modifier les permissions des fichiers pour plus d’informations.','Upload failed. Please reload and try again.'=>'Téléversement échoué. Veuillez actualiser et réessayer.','Data erasure has failed.'=>'L’effacement des données a échoué.','Erasure completed.'=>'Effacement terminé.','The attached file cannot be found.'=>'Le fichier attaché ne peut pas être trouvé.','page labelPrivacy Policy Page'=>'Page de politique de confidentialité','page labelPosts Page'=>'Page des articles','page labelFront Page'=>'Page d’accueil','post statusSticky'=>'Épinglé','post statusCustomization Draft'=>'Brouillon de personnalisation','post statusPassword protected'=>'Protégé par mot de passe','The scheduled event, %s, is late to run. Your site still works, but this may indicate that scheduling posts or automated updates may not work as intended.'=>'L’évènement planifié %s, est en retard. Votre site fonctionne toujours, mais cela peut indiquer que la planification des articles ou des mises à jour automatisées peuvent ne pas fonctionner comme prévu.','A scheduled event is late'=>'Un évènement planifié est en retard','An HTTPS connection is a more secure way of browsing the web. Many services now have HTTPS as a requirement. HTTPS allows you to take advantage of new features that can increase site speed, improve search rankings, and gain the trust of your visitors by helping to protect their online privacy.'=>'Une connexion HTTPS est un moyen plus sûr de naviguer sur le web. De nombreux services ont maintenant HTTPS comme exigence. HTTPS vous permet de profiter de nouvelles fonctionnalités qui peuvent augmenter la vitesse du site, améliorer les classements de recherche et gagner la confiance de vos visiteurs en aidant à protéger leur vie privée en ligne.','Your version of WordPress (%s) is up to date'=>'Votre version de WordPress (%s) est à jour','https://wordpress.org/documentation/article/introduction-to-blogging/#managing-comments'=>'https://fr.wordpress.org/support/article/introduction-to-blogging/#gerer-les-commentaires','https://wordpress.org/documentation/article/introduction-to-blogging/#comments'=>'https://fr.wordpress.org/support/article/introduction-to-blogging/#les-commentaires-spam','https://wordpress.org/documentation/article/block-themes/'=>'https://fr.wordpress.org/support/article/block-themes/','Publish on: %s'=>'Publier le : %s','Schedule for: %s'=>'Planifier pour le : %s','Published on: %s'=>'Publié le : %s','Scheduled for: %s'=>'Planifié pour le : %s','publish box time formatH:i'=>'H\\h i \\m\\i\\n','publish box date formatM j, Y'=>'j F Y','The directives (lines) between "BEGIN %1$s" and "END %1$s" are +###SITEURL###','Where your data is sent'=>'Où vos données sont envoyées','Copy “%s” URL to clipboard'=>'Copier l’URL de “%s” dans le presse-papier','Some data that describes the error your site encountered has been put together.'=>'Des données relatives à l’erreur rencontrée par votre site ont été recueillies.','An attempt was made, but your site could not be updated automatically.'=>'Une tentative a été faite, mais votre site n’a pas pu être mis à jour automatiquement.','The update cannot be installed because some files could not be copied. This is usually due to inconsistent file permissions.'=>'La mise à jour ne peut pas être installée car certains fichiers n’ont pas pu être copiés. Ceci est généralement dû à des incohérences dans les droits des fichiers.','Media — A list of URLs for media files the user uploads.'=>'Médias — Une liste d’URL pour les téléversements de médias effectués par le compte.','Community Events Location — The IP Address of the user, which populates the Upcoming Community Events dashboard widget with relevant information.'=>'Emplacement des évènements communautaires — L’adresse IP du compte, qui alimente le widget du tableau de bord des évènements communautaires à venir avec des informations pertinentes.','WordPress collects (but never publishes) a limited amount of data from registered users who have logged in to the site. Generally, these users are people who contribute to the site in some way -- content, store management, and so on. With rare exceptions, these users do not include occasional visitors who might have registered to comment on articles or buy products. The data WordPress retains can include:'=>'WordPress collecte (mais ne publie jamais) une quantité limitée de données des personnes inscrites qui se sont connectées sur le site. En général, ce sont des personnes qui contribuent au site d’une certaine façon : contenu, gestion de boutique, et ainsi de suite. Hormis de rares exceptions, ces comptes n’incluent pas les visiteurs occasionnels qui pourraient s’être inscrits pour commenter des articles ou acheter des produits. Les données que WordPress conserve peuvent inclure :','Note: Since this tool only gathers data from WordPress and participating plugins, you may need to do more to comply with export requests. For example, you should also send the requester some of the data collected from or stored with the 3rd party services your organization uses.'=>'Remarque : Étant donné que cet outil collecte uniquement des données de WordPress et des extensions qui y contribuent, vous pourriez avoir besoin d’aller plus loin pour que vos demandes d’exportations soient conformes. Par exemple, vous devriez également envoyer au demandeur une partie des données collectées ou conservées par les services tiers que votre entreprise ou votre site utilise.','Privacy Laws around the world require businesses and online services to provide an export of some of the data they collect about an individual, and to deliver that export on request. The rights those laws enshrine are sometimes called the "Right of Data Portability". It allows individuals to obtain and reuse their personal data for their own purposes across different services. It allows them to move, copy or transfer personal data easily from one IT environment to another.'=>'Les lois sur la protection de la vie privée du monde entier exigent des entreprises et des services en ligne qu’ils fournissent une exportation de certaines des données qu’ils recueillent sur les individus, et qu’ils fournissent cette exportation sur demande. Les droits que ces lois garantissent sont souvent appelés « droit à la portabilité des données ». Cela permet aux personnes d’obtenir et de réutiliser leurs données personnelles à leurs propres fins dans différents services. L’objectif est de leur permettre de déplacer, copier ou transférer facilement leurs données personnelles d’un environnement informatique à un autre.','Comments — WordPress does not delete comments. The software does anonymize (but, again, never publishes) the associated Email Address, IP Address, and User Agent (Browser/OS).'=>'Commentaires : WordPress ne supprime pas les commentaires. Le logiciel anonymise (et ne publie jamais) les informations associées comme l’adresse e-mail, l’adresse IP ou l’agent utilisateur (navigateur et système d’exploitation).','WordPress collects (but never publishes) a limited amount of data from logged-in users but then deletes it or anonymizes it. That data can include:'=>'WordPress collecte (mais ne publie jamais) une quantité limitée de données des comptes connectés mais ces données sont ensuite supprimées ou anonymisées. Ces données peuvent inclure :','Note: As this tool only gathers data from WordPress and participating plugins, you may need to do more to comply with erasure requests. For example, you are also responsible for ensuring that data collected by or stored with the 3rd party services your organization uses gets deleted.'=>'Note : comme cet outil recueille uniquement des données provenant de WordPress et des extensions utilisées, il se peut que vous deviez faire davantage pour vous conformer aux demandes d’effacement de données. Par exemple, il vous incombe également de veiller à ce que les données collectées ou stockées par les services tiers utilisés par votre organisation soient aussi effacées.','Privacy Laws around the world require businesses and online services to delete, anonymize, or forget the data they collect about an individual. The rights those laws enshrine are sometimes called the "Right to be Forgotten".'=>'Les lois sur la protection de la vie privée en vigueur dans le monde entier obligent les entreprises et les services en ligne à supprimer, anonymiser ou oublier les données recueillies sur une personne. Les droits que ces lois garantissent sont souvent appelés « droit à l’oubli ».','This screen is where you manage requests to erase personal data.'=>'Cet écran vous permet de gérer les demandes de suppression de données personnelles.','This post is being backed up in your browser, just in case.'=>'Cette publication est sauvegardée dans votre navigateur, au cas où.','This will grant access to the %2$s site on the network as you have Super Admin rights.'=>'Ceci vous donne accès à %2$s site sur le réseau étant donné que vous avez des droits de Super Admin.' . "\0" . 'Ceci vous donne accès à l’ensemble des %2$s sites sur le réseau étant donné que vous avez des droits de Super Admin.','Learn about block themes'=>'En savoir plus sur les thèmes basés sur des blocs','There is a new kind of WordPress theme, called a block theme, that lets you build the site you’ve always wanted — with blocks and styles.'=>'Il existe maintenant une nouvelle sorte de thème WordPress : les thèmes basés sur des blocs. Ils vous donnent la possibilité de construire le site que vous avez toujours voulu, en agençant des blocs et en leur donnant des styles graphiques.','Discover a new way to build your site.'=>'Découvrez une nouvelle façon de construire votre site','Edit styles'=>'Modifier les styles','Tweak your site, or give it a whole new look! Get creative — how about a new color palette or font?'=>'Ajustez votre site, ou donnez-lui une apparence totalement nouvelle ! Laissez libre cours à votre imagination… que diriez vous d’une nouvelle palette de couleurs ou de nouvelles polices d’écriture ?','Switch up your site’s look & feel with Styles'=>'Modifiez l’apparence de votre site avec les styles globaux','Open the Customizer'=>'Ouvrir l’outil de personnalisation','Configure your site’s logo, header, menus, and more in the Customizer.'=>'Configurez le logo de votre site, son entête, ses menus et bien plus encore avec l’outil de personnalisation.','Start Customizing'=>'Personnalisez votre site comme vous le voulez','Open site editor'=>'Ouvrir l’éditeur de site','Design everything on your site — from the header down to the footer, all using blocks and patterns.'=>'Bâtissez l’ensemble de votre site, de l’entête au pied de page, en utilisant simplement des blocs et des compositions.','Customize your entire site with block themes'=>'Personnalisez l’ensemble de votre site avec les thèmes basés sur des blocs','Add a new page'=>'Créer une nouvelle page','Block patterns are pre-configured block layouts. Use them to get inspired or create new pages in a flash.'=>'Les compositions de blocs sont des mises en page de blocs pré-configurées. Utilisez-les pour vous en inspirer ou pour créer des nouvelles page en un clin d’œil.','Author rich content with blocks and patterns'=>'Créez des contenus riches avec les blocs et les compositions','Learn more about the %s version.'=>'En savoir plus sur la version %s','WordPress is free and open source software'=>'WordPress est un logiciel libre et ouvert','Plugin File Editor'=>'Éditeur de fichiers des extensions','Theme File Editor'=>'Éditeur de fichiers des thèmes','If this is a development website, you can set the environment type accordingly to enable application passwords.'=>'S’il s’agit d’une version de développement du site, vous pouvez définir le type d’environnement correspondant afin d’autoriser les mots de passe d’applications.','The application password feature requires HTTPS, which is not enabled on this site.'=>'La fonctionnalité de mot de passe de l’application nécessite HTTPS, qui n’est pas activé sur ce site.','g:i a T'=>'G\\hi','Documentation on Editing Themes'=>'Documentation sur l’éditeur de thèmes','Documentation on Site Health tool'=>'Documentation sur l’outil Santé du site','In the Info tab, you will find all the details about the configuration of your WordPress site, server, and database. There is also an export feature that allows you to copy all of the information about your site to the clipboard, to help solve problems on your site when obtaining support.'=>'Dans l’onglet Informations, vous trouverez tous les détails concernant la configuration de votre site WordPress, le serveur, et la base de données. Il existe également une fonctionnalité d’exportation qui vous permet de copier toutes les informations concernant votre site vers le presse-papier, ce qui vous aidera à résoudre les problèmes sur votre site lorsque vous chercherez de l’aide sur les forums.','In the Status tab, you can see critical information about your WordPress configuration, along with anything else that requires your attention.'=>'Dans l’onglet État, vous pouvez voir les informations critiques concernant votre configuration de WordPress, ainsi que tout ce qui requiert votre attention.','This screen allows you to obtain a health diagnosis of your site, and displays an overall rating of the status of your installation.'=>'Cet écran vous permet d’obtenir un diagnostic de santé de votre site, et affiche une évaluation globale de l’état de votre installation.','Documentation on Privacy Settings'=>'Documentation sur les réglages de confidentialité','This screen includes suggestions to help you write your own privacy policy. However, it is your responsibility to use these resources correctly, to provide the information required by your privacy policy, and to keep this information current and accurate.'=>'Cet écran comprend des suggestions pour vous aider à rédiger votre propre politique de confidentialité. Cependant, il est de votre responsabilité d’utiliser correctement ces ressources, de fournir les informations requises par votre politique de confidentialité, et de maintenir ces informations à jour et exactes.','The Privacy screen lets you either build a new privacy-policy page or choose one you already have to show.'=>'L’écran Confidentialité vous permet soit de créer une nouvelle page de politique de confidentialité, soit de choisir une page existante à afficher.','Individual posts may override these settings. Changes here will only be applied to new posts.'=>'Des publications individuelles peuvent surcharger ces réglages. Les modifications ne seront ici appliquées qu’aux nouvelles publications.','Menu item moved to the top'=>'Élément de menu déplacé vers le haut','Menu item removed'=>'Élément de menu retiré','The Dashboard is the first place you will come to every time you log into your site. It is where you will find all your WordPress tools. If you need help, just click the “Help” tab above the screen title.'=>'Le Tableau de bord est le premier endroit sur lequel vous arrivez à chaque fois que vous vous connectez à votre site. C’est là que vous trouverez tous vos outils WordPress. Si vous avez besoin d’aide, cliquez simplement sur l’onglet « Aide » au dessus du titre de l’écran.','Welcome to your WordPress Dashboard!'=>'Bienvenue sur votre Tableau de bord WordPress !','The application ID must be a UUID.'=>'L’ID de l’application doit être un UUID.','Select location'=>'Sélectionner un emplacement','Visit plugin site for %s'=>'Consultez le site de l’extension %s','pluginCannot Activate'=>'Impossible à activer','Max connections number'=>'Nombre maximal de connexions','Max allowed packet size'=>'Taille maximale autorisée du paquet','Your website appears to use Basic Authentication, which is not currently compatible with application passwords.'=>'Votre site semble utiliser une authentification de base, ce qui n’est actuellement pas compatible avec les mots de passe d’applications.','%1$s “%2$s”'=>'%1$s « %2$s »','Template Editing'=>'Modification de modèles','WordPress comes with some awesome, worldview-changing rights courtesy of its license, the GPL.'=>'WordPress est distribué sous la merveilleuse licence GPL, qui vous garantit la plus grande liberté d’utilisation possible.','Want to see your name in lights on this page?'=>'Voudriez-vous voir votre nom cité sur cette page ?','Get involved in WordPress.'=>'Contribuez à WordPress','WordPress is created by a worldwide team of passionate individuals.'=>'WordPress est créé par une équipe de personnes passionnées répartie dans le monde entier.','%s plugin deactivated during WordPress upgrade.'=>'Extension « %s » désactivée pendant la mise à jour de WordPress.','%1$s %2$s was deactivated due to incompatibility with WordPress %3$s.'=>'L’extension %1$s version %2$s a été désactivée à cause d’une incompatibilité avec WordPress %3$s.','%1$s %2$s was deactivated due to incompatibility with WordPress %3$s, please upgrade to %1$s %4$s or later.'=>'L’extension %1$s version %2$s a été désactivée à cause d’une incompatibilité avec WordPress %3$s, veuillez mettre à jour vers %1$s version %4$s ou plus.','The Four Freedoms'=>'Les quatre libertés','themeDelete %s'=>'Supprimer %s','themeLive Preview %s'=>'Prévisualiser %s','themeCustomize %s'=>'Personnaliser %s','themeView Theme Details for %s'=>'Voir les détails du thème %s','Toggle extra menu items'=>'Permuter les éléments de menu additionnels','Site Health - %s'=>'Santé du site – %s','You need to make the file %1$s writable before you can save your changes. See Changing File Permissions for more information.'=>'Vous devez rendre le fichier %1$s accessible en écriture avant de pouvoir enregistrer vos modifications. Consultez Changer les droits des fichiers pour plus d’informations.','Rewrite rules:'=>'Règles de réécriture :','List of menu items selected for deletion:'=>'Liste des éléments de menu sélectionnés pour la suppression :','Remove Selected Items'=>'Supprimer les éléments sélectionnés','Bulk Select'=>'Sélection groupée','Deleted menu item: %s.'=>'Élément de menu supprimé : %s.','item %s'=>'élément %s','Themes %s'=>'Thèmes %s','Unable to encode the personal data for export. Error: %s'=>'Impossible d’encoder les données personnelles pour l’exportation. Erreur : %s','The %s post meta must be an array.'=>'La metadonnée de publication %s doit être un tableau.','Your site’s health is looking good, but there is still one thing you can do to improve its performance and security.'=>'La santé de votre site semble bonne, mais il y a encore une chose que vous pouvez faire pour améliorer ses performances et sa sécurité.','Your site has a critical issue that should be addressed as soon as possible to improve its performance and security.'=>'Votre site rencontre une erreur critique qui doit être réglée dès que possible afin d’améliorer ses performances et sa sécurité.','Learn how to browse happy'=>'Apprenez comment naviguer sereinement','Internet Explorer does not give you the best WordPress experience. Switch to Microsoft Edge, or another more modern browser to get the most from your site.'=>'Internet Explorer ne vous offre pas la meilleure expérience WordPress. Passez à Microsoft Edge, ou à un autre navigateur plus moderne, pour tirer le meilleur parti de votre site.','GD supported file formats'=>'Formats de fichier GD pris en charge','Unable to determine'=>'Impossible à déterminer','ImageMagick supported file formats'=>'Formats de fichier ImageMagik pris en charge','Imagick version'=>'Version de Imagick','themeUploaded'=>'Téléversé','pluginReplace current with uploaded'=>'Remplacer l’extension actuelle par celle que vous avez téléversée','pluginUploaded'=>'Téléversée','pluginCurrent'=>'Actuelle','Please activate the Link Manager plugin to use the link manager.'=>'Veuillez activer l’extension Link Manager pour utiliser ce gestionnaire de lien.','Create a new Privacy Policy page'=>'Créer une nouvelle page de politique de confidentialité','Send personal data export confirmation email.'=>'Envoyer un e-mail de confirmation d’exportation des données personnelles.','This tool helps site owners comply with local laws and regulations by exporting known data for a given user in a .zip file.'=>'Cet outil aide les propriétaires de sites à se conformer aux lois et réglementations locales en exportant les données connues d’un compte donné dans un fichier ZIP.','Documentation on Export Personal Data'=>'Documentation sur l’exportation de données personnelles','Many plugins may collect or store personal data either in the WordPress database or remotely. Any Export Personal Data request should include data from plugins as well.'=>'De nombreuses extensions peuvent collecter ou stocker des données personnelles dans la base de données WordPress ou sur leurs propres serveurs. Toute demande d’exportation de données personnelles doit également inclure les données des extensions.','If you are not sure, check the plugin documentation or contact the plugin author to see if the plugin collects data and if it supports the Data Exporter tool. This information may be available in the Privacy Policy Guide.'=>'Si vous ne savez pas, consultez la documentation de l’extension ou contactez son auteur/autrice, afin de savoir si l’extension collecte des données et si elle prend en charge l’outil d’exportation des données. Ces informations peuvent aussi être disponibles dans le guide de rédaction de la politique de confidentialité.','Comments — For user comments, Email Address, IP Address, User Agent (Browser/OS), Date/Time, Comment Content, and Content URL.'=>'Commentaires — Pour tout commentaire déposé sur le site, adresse e-mail, adresse IP, agent utilisateur (navigateur/OS), date/heure, contenu du commentaire et URL du contenu.','This screen is where you manage requests for an export of personal data.'=>'Cet écran vous permet de gérer les demandes d’exportation de données personnelles.','Site URLs could not be switched to HTTPS.'=>'Les URL du site ne peuvent pas être passées en HTTPS.','Site URLs switched to HTTPS.'=>'Les URL du site ont été passées en HTTPS.','It looks like HTTPS is not supported for your website at this point.'=>'Il semble que le protocole HTTPS ne soit pas pris en charge par votre site à ce stade.','Sorry, you are not allowed to update this site to HTTPS.'=>'Désolé, vous n’avez pas l’autorisation de passer ce site en HTTPS.','Password reset links sent to %s user.'=>'Le lien de réinitialisation du mot de passe a été envoyé à %s compte.' . "\0" . 'Le lien de réinitialisation du mot de passe a été envoyé à %s comptes.','Password reset link sent.'=>'Le lien de réinitialisation du mot de passe a été envoyé.','Send %s a link to reset their password. This will not change their password, nor will it force a change.'=>'Envoyez à %s un lien pour réinitialiser son mot de passe. Cela ne changera pas son mot de passe, ni ne l’obligera à le modifier.','Send Reset Link'=>'Envoyer le lien de réinitialisation','Policies'=>'Politiques','The Privacy Settings require JavaScript.'=>'Les réglages de confidentialité nécessitent JavaScript.','Privacy SettingsPolicy Guide'=>'Guide de politique','Privacy SettingsSettings'=>'Réglages ','Re-install version %s'=>'Réinstaller la version %s','Update to latest %s nightly'=>'Mettre à jour vers la dernière version nightly','Send personal data erasure confirmation email.'=>'Envoyer l’e-mail de confirmation de la suppression des données personnelles.','Confirmation email'=>'E-mail de confirmation','This tool helps site owners comply with local laws and regulations by deleting or anonymizing known data for a given user.'=>'Cet outil aide les propriétaires de sites à se conformer aux lois et réglementations locales en supprimant ou en anonymisant les données connues d’un compte donné.','Documentation on Erase Personal Data'=>'Documentation sur l’effacement de données personnelles','Many plugins may collect or store personal data either in the WordPress database or remotely. Any Erase Personal Data request should delete data from plugins as well.'=>'De nombreuses extensions peuvent collecter ou stocker des données personnelles, soit dans la base de données WordPress, soit à distance. Toute demande d’effacement de données personnelles doit également effacer les données des extensions.','Plugin Data'=>'Données des extensions','If you are not sure, check the plugin documentation or contact the plugin author to see if the plugin collects data and if it supports the Data Eraser tool. This information may be available in the Privacy Policy Guide.'=>'Si vous ne savez pas, consultez la documentation de l’extension ou contactez son auteur/autrice, afin de savoir si l’extension collecte des données et si elle prend en charge l’outil de suppression des données. Ces informations peuvent aussi être disponibles dans le guide de rédaction de la politique de confidentialité.','Media — A list of URLs for all media file uploads made by the user.'=>' Fichiers multimédias – une liste d’URL pour tous les téléversements de fichiers multimédias effectués par le compte.','Session Tokens — User login information, IP Addresses, Expiration Date, User Agent (Browser/OS), and Last Login.'=>'Jetons de session – informations de connexion de l’utilisateur ou de utilisatrice, adresses IP, date d’expiration, agent utilisateur (navigateur/OS) et dernière connexion.','Community Events Location — The IP Address of the user which is used for the Upcoming Community Events shown in the dashboard widget.'=>'Localisation d’évènements communautaires – adresse IP de l’utilisateur ou de l’utilisatrice qui est utilisée pour les prochains évènements de la communauté indiqués dans le widget du tableau de bord.','Profile Information — user email address, username, display name, nickname, first name, last name, description/bio, and registration date.'=>'Informations de profil — adresse e-mail du compte, identifiant, nom affiché, pseudonyme, prénom, nom, description/bio, et date d’inscription.','Default Data'=>'Données par défaut','The tool associates data stored in WordPress with a supplied email address, including profile data and comments.'=>'L’outil associe les données stockées dans WordPress par une adresse e-mail fournie, y compris les données de profil et les commentaires.','https://make.wordpress.org/community/organize-event-landing-page/'=>'https://make.wordpress.org/community/organize-event-landing-page/','Want more events? Help organize the next one!'=>'Vous voulez plus d’évènements ? Aidez à organiser le prochain !','A password reset link was emailed to %s.'=>'Un lien de réinitialisation du mot de passe a été envoyé par e-mail à %s.','Cannot send password reset, permission denied.'=>'Impossible d’envoyer le lien de réinitialisation du mot de passe, autorisation refusée.','The setting for %1$s is currently configured as 0, this could cause some problems when trying to upload files through plugin or theme features that rely on various upload methods. It is recommended to configure this setting to a fixed value, ideally matching the value of %2$s, as some upload methods read the value 0 as either unlimited, or disabled.'=>'Le réglage pour %1$s est actuellement configuré à 0, ce qui pourrait causer quelques problèmes lorsque vous essayez de téléverser des fichiers par le biais d’extensions ou de thèmes qui dépendent de différentes méthodes de téléversement. Il est recommandé de configurer ce réglage à une valeur fixe, correspondant idéalement à la valeur de %2$s, car certaines méthodes de téléversement lisent la valeur 0 comme étant soit illimitée, soit désactivée.','Talk to your web host about supporting HTTPS for your website.'=>'Contactez votre hébergeur pour la prise en charge HTTPS sur votre site.','Update your site to use HTTPS'=>'Mettre à jour votre site pour utiliser le HTTPS','However, your WordPress Address is currently controlled by a PHP constant and therefore cannot be updated. You need to edit your %1$s and remove or update the definitions of %2$s and %3$s.'=>'Bien que votre adresse WordPress est actuellement contrôlée par une constante PHP et ne peut donc pas être mise à jour. Vous devez modifier votre %1$s et supprimer ou mettre à jour les définitions de %2$s et de %3$s.','HTTPS is already supported for your website.'=>'Le HTTPS est déjà pris en charge pour votre site.','Your WordPress Address and Site Address are not set up to use HTTPS.'=>'Votre adresse WordPress et votre adresse de site ne sont pas configurées pour utiliser le HTTPS.','You are accessing this website using HTTPS, but your WordPress Address and Site Address are not set up to use HTTPS by default.'=>'Vous accédez à ce site en utilisant le HTTPS, mais votre adresse WordPress et votre adresse de site ne sont pas configurées pour utiliser le HTTPS par défaut.','Your Site Address is not set up to use HTTPS.'=>'Votre adresse de site n’est pas configurée pour utiliser le HTTPS.','Learn more about debugging in WordPress.'=>'En savoir plus sur le débogage de WordPress.','Added'=>'Ajouté','Send password reset'=>'Réinitialisation de mot de passe','Contact information'=>'Informations de contact','Copy suggested policy text to clipboard'=>'Copier la suggestion de texte de politique de confidentialité dans le presse-papier','Directory listing failed.'=>'Le listage du répertoire a échoué.','Search Results'=>'Résultats de recherche','Invalid request ID when processing personal data to erase.'=>'ID non valide lors de la fusion des données personnelles à supprimer.','Invalid request ID when merging personal data to export.'=>'ID non valide lors de la fusion des données personnelles à exporter.','Unable to archive the personal data export file (HTML format).'=>'Impossible d’archiver le fichier d’exportation des données personnelles (format HTML).','Unable to archive the personal data export file (JSON format).'=>'Impossible d’archiver le fichier d’exportation des données personnelles (format JSON).','Unable to open personal data export (HTML report) for writing.'=>'Impossible d’ouvrir le fichier d’exportation des données personnelles (rapport HTML) en écriture.','Unable to create personal data export folder.'=>'Impossible de créer le dossier d’exportation des données personnelles du compte.','Request added successfully.'=>'La demande a bien été ajoutée.','Invalid personal data action.'=>'Action des données personnelles non valide.','Unable to initiate confirmation for personal data request.'=>'Impossible d’initier la confirmation pour la demande de données personnelles.','Your site is running on an outdated version of PHP (%s), which should be updated.'=>'Votre site utilise une version obsolète de PHP (%s), qui devrait être mise à jour.','PHP Update Recommended'=>'Mise à jour PHP recommandée','Your website appears to use Basic Authentication, which is not currently compatible with Application Passwords.'=>'Votre site semble utiliser l’authentification basique, qui n’est pas compatible avec les mots de passe d’application.','https://developer.wordpress.org/rest-api/frequently-asked-questions/#why-is-authentication-not-working'=>'https://developer.wordpress.org/rest-api/frequently-asked-questions/#why-is-authentication-not-working','This site appears to be under version control. Automatic updates are disabled.'=>'Ce site semble être sous contrôle de version. Les mises à jour automatiques sont désactivées.','You are using a development version of WordPress.'=>'Vous utilisez actuellement une version de développement de WordPress.','You can update to the latest nightly build manually:'=>'Vous pouvez mettre à jour vers la dernière version du jour manuellement :','Enable automatic updates for all new versions of WordPress.'=>'Activer les mises à jour automatiques pour toutes les nouvelles versions de WordPress.','Switch to automatic updates for maintenance and security releases only.'=>'Basculer sur les mises à jour de maintenance et de sécurité uniquement.','Current version: %s'=>'Version actuelle : %s','This site will not receive automatic updates for new versions of WordPress.'=>'Ce site ne recevra pas de mise à jour automatique pour les nouvelles versions de WordPress.','This site is automatically kept up to date with maintenance and security releases of WordPress only.'=>'Ce site est automatiquement mis à jour avec uniquement les versions de maintenance et de sécurité de WordPress.','This site is automatically kept up to date with each new version of WordPress.'=>'Ce site est automatiquement mis à jour avec chaque nouvelle version de WordPress.','WordPress will only receive automatic security and maintenance releases from now on.'=>'À partir de maintenant, WordPress ne recevra que les mises à jour automatiques de sécurité et de maintenance.','Automatic updates for all WordPress versions have been enabled. Thank you!'=>'Les mises à jour automatiques de toutes les nouvelles versions de WordPress ont été activées. Merci !','Site Health Status — Informs you of any potential issues that should be addressed to improve the performance or security of your website.'=>'Santé du site — Vous informe de tout problème potentiel qui devrait être résolu pour améliorer les performances ou la sécurité de votre site.','Your new password for %s is:'=>'Votre nouveau mot de passe pour %s est :','Add Application Password'=>'Ajouter un mot de passe d’application','Required to create an Application Password, but not to update the user.'=>'Nécessaire pour créer un mot de passe d’application, mais pas pour mettre à jour le compte.','Go to Updates'=>'Aller aux mises à jour','← Go to Users'=>'← Aller aux comptes','← Go to editor'=>'← Aller à l’éditeur','Go to Plugin Installer'=>'Aller à l’installeur d’extensions','Go to Importers'=>'Aller aux outils d’importation','Go to Theme Installer'=>'Aller à l’installeur de thèmes','Go to top'=>'Aller en haut','%s could not be located. Please try another nearby city. For example: Kansas City; Springfield; Portland.'=>'La localisation de %s n’a pas fonctionné. Veuillez essayer une autre ville proche. Par exemple : Rennes, Strasbourg ou Grenoble.','You will be returned to the WordPress Dashboard, and no changes will be made.'=>'Vous serez redirigé vers le Tableau de bord de WordPress, et aucune modification ne sera faite.','No, I do not approve of this connection'=>'Non, je n’autorise pas cette connexion','You will be given a password to manually enter into the application in question.'=>'Un mot de passe à saisir manuellement dans l’application en question vous sera donné.','You will be sent to %s'=>'Vous allez être redirigé vers %s','Yes, I approve of this connection'=>'Oui, j’autorise la connexion','This will grant access to the %2$s site in this installation that you have permissions on.'=>'Cela donnera accès au site sur lequel vous avez des droits sur cette installation.' . "\0" . 'Cela donnera accès aux %2$s sites sur lesquels vous avez des droits sur cette installation.','Would you like to give this application access to your account? You should only do this if you trust the application in question.'=>'Voulez-vous fournir à cette application un accès à votre compte ? Vous ne devriez le faire que si vous avez confiance en l’application en question.','Would you like to give the application identifying itself as %s access to your account? You should only do this if you trust the application in question.'=>'Voulez-vous fournir un accès à votre compte à l’application s’identifiant comme %s ? Vous ne devriez le faire que si vous avez confiance en l’application en question.','An application would like to connect to your account.'=>'Une application souhaite se connecter à votre compte.','Cannot Authorize Application'=>'Impossible d’autoriser l’application','The Authorize Application request is not allowed.'=>'La demande d’autorisation pour les applications n’est pas autorisée.','Authorize Application'=>'Autoriser l’application','Be sure to save this in a safe location. You will not be able to retrieve it.'=>'Assurez-vous de le conserver en lieu sûr. Vous ne pourrez pas le récupérer.','New Application Password Name'=>'Nouveau nom du mot de passe d’application','Application passwords grant access to the %2$s site in this installation that you have permissions on.'=>'Les mots de passe d’application donnent accès au site sur lequel vous avez des droits sur cette installation.' . "\0" . 'Les mots de passe d’application donnent accès aux %2$s sites sur lesquels vous avez des droits sur cette installation.','Application passwords allow authentication via non-interactive systems, such as XML-RPC or the REST API, without providing your actual password. Application passwords can be easily revoked. They cannot be used for traditional logins to your website.'=>'Les mots de passe d’application autorisent l’authentification via des systèmes non-interactifs tels que XML-RPC ou l’API REST, sans fournir votre vrai mot de passe. Les mots de passe d’application peuvent facilement être révoqués. Ils ne peuvent pas être utilisés pour une connexion classique à votre site.','Application Passwords'=>'Mots de passe d’application','Type the new password again.'=>'Saisissez à nouveau le nouveau mot de passe.','Set New Password'=>'Définir le nouveau mot de passe','Type the password again.'=>'Saisissez à nouveau le nouveau mot de passe.','You can update from WordPress %1$s to WordPress %3$s manually:'=>'Vous pouvez mettre à jour de WordPress %1$s à WordPress %3$s manuellement :','Revoke all application passwords'=>'Révoquer tous les mots de passe d’application','Revoke "%s"'=>'Révoquer « %s »','Revoke'=>'Révoquer','Last IP'=>'Dernière IP','Last Used'=>'Dernier utilisé','The Site Health check for %1$s has been replaced with %2$s.'=>'La fonction %1$s de l’outil Santé du site a été remplacée par %2$s.','Erase personal data'=>'Effacer les données personnelles','- %1$s (from version %2$s to %3$s)'=>'- %1$s (de la version %2$s à %3$s)','Current Header Video'=>'Vidéo d’entête actuelle','Authorization header'=>'Entête d’autorisation','Learn how to configure the Authorization header.'=>'En savoir plus sur la configuration des entêtes d’autorisation.','Flush permalinks'=>'Regénérer les permaliens','The authorization header is invalid'=>'L’entête d’autorisation est invalide.','The authorization header is missing'=>'L’entête d’autorisation est manquant','The Authorization header is working as expected'=>'L’entête d’autorisation fonctionne comme prévu','Some screen elements can be shown or hidden by using the checkboxes.'=>'Certains éléments de l’écran peuvent être affichés ou masqués en utilisant les cases à cocher.','Screen elements'=>'Éléments de l’écran','The URL must be served over a secure connection.'=>'L’URL doit être accédée via une connexion sécurisée.','If you request a password reset, your IP address will be included in the reset email.'=>'Si vous demandez une réinitialisation de votre mot de passe, votre adresse IP sera incluse dans l’e-mail de réinitialisation.','No plugins found for: %s.'=>'Aucune extension trouvée pour : %s.','Complete request'=>'Demande terminée','Mark export request for “%s” as completed.'=>'Marquer la demande d’exportation pour « %s » comme terminée.','%d request deleted successfully.'=>'%d demande bien supprimée.' . "\0" . '%d demandes bien supprimées.','%d request failed to delete.'=>'%d demande de suppression a échoué.' . "\0" . '%d demandes de suppression ont échoué.','%d request marked as complete.'=>'%d demande marquée comme terminée.' . "\0" . '%d demandes marquées comme terminées.','%d confirmation request re-sent successfully.'=>'%d demande de confirmation renvoyée avec succès.' . "\0" . '%d demandes de confirmation renvoyées avec succès.','%d confirmation request failed to resend.'=>'%d demande de confirmation n’a pas pu être renvoyée.' . "\0" . '%d demandes de confirmation n’ont pas pu être renvoyées.','Mark requests as completed'=>'Marquer les demandes comme terminées','Next steps'=>'Étapes suivantes','Unable to open personal data export file (archive) for writing.'=>'Impossible d’ouvrir en écriture le fichier (archive) d’exportation des données confidentielles du compte.','Unable to open personal data export file (JSON report) for writing.'=>'Impossible d’ouvrir le fichier (rapport JSON) d’exportation des données confidentielles du compte.','Unable to protect personal data export folder from browsing.'=>'Impossible de protéger le dossier d’exportation de confidentialité du compte contre l’affichage public.','Invalid email address when generating personal data export file.'=>'Réception d’une adresse e-mail non valide lors de la génération du fichier d’exportation de confidentialité du compte.','Invalid request ID when generating personal data export file.'=>'ID non valide lors de la demande génération du fichier d’exportation de confidentialité du compte.','Unable to generate personal data export file. ZipArchive not available.'=>'Impossible de générer le fichier d’exportation de confidentialité du compte. La fonction ZipArchive n’est pas disponible.','Search results for: %s'=>'Résultats de recherche pour : %s','Note that even when set to discourage search engines, your site is still visible on the web and not all search engines adhere to this directive.'=>'Notez que même lorsqu’il est paramétré pour décourager les moteurs de recherche, votre site est toujours visible sur le web et que tous les moteurs de recherche ne suivent pas cette directive.','You can choose whether or not your site will be crawled by robots, ping services, and spiders. If you want those services to ignore your site, click the checkbox next to “Discourage search engines from indexing this site” and click the Save Changes button at the bottom of the screen.'=>'Vous pouvez choisir si votre site est parcouru par les robots et autres logiciels automatisés ou non. Si vous préférez que ces services ignorent votre site, cochez l’option « Demander aux moteurs de recherche de ne pas indexer ce site » et cliquez sur le bouton « Enregistrer les modifications » en bas de l’écran.','The "%1$s" value is smaller than "%2$s"'=>'La valeur « %1$s » est inférieure à « %2$s »','Environment type'=>'Type d’environnement','Auto-updates are only available for plugins recognized by WordPress.org, or that include a compatible update system.'=>'Les mises à jour auto ne sont disponibles que pour les extensions reconnues par WordPress.org, ou qui incluent un système de mise à jour compatible.','Update Incompatible'=>'Mise à jour non compatible','This update does not work with your version of WordPress.'=>'Cette mise à jour ne fonctionne pas avec votre version de WordPress.','This update does not work with your versions of WordPress and PHP.'=>'Cette mise à jour ne fonctionne pas avec votre version de WordPress et de PHP.','Disallowed Comment Keys'=>'Clés de commentaires non autorisées','Plugin and theme auto-updates'=>'Mise à jour auto des extensions et thèmes','There appear to be no issues with plugin and theme auto-updates.'=>'Il ne semble pas y avoir de problème avec les mises à jour automatiques des extensions et des thèmes.','Auto-updates for themes appear to be disabled. This will prevent your site from receiving new versions automatically when available.'=>'Les mises à jour automatiques des thèmes semblent désactivées. Cela empêche votre site de recevoir automatiquement les nouvelles versions lorsqu’elles sont disponible.','Auto-updates for plugins appear to be disabled. This will prevent your site from receiving new versions automatically when available.'=>'Les mises à jour automatiques des extensions semblent désactivées. Cela empêche votre site de recevoir automatiquement les nouvelles versions lorsqu’elles sont disponible.','Auto-updates for plugins and themes appear to be disabled. This will prevent your site from receiving new versions automatically when available.'=>'Les mises à jour automatiques des extensions et des thèmes semblent désactivées. Cela empêche votre site de recevoir automatiquement les nouvelles versions lorsqu’elles sont disponible.','Auto-updates for plugins and/or themes appear to be disabled, but settings are still set to be displayed. This could cause auto-updates to not work as expected.'=>'Les mises à jour automatiques des extensions et/ou des thèmes semblent désactivées, mais les réglages s’affichent tout de même. Cela pourrait empêcher les mises à jour automatiques de fonctionner comme prévu.','Your site may have problems auto-updating plugins and themes'=>'Votre site semble avoir des problèmes avec les mises à jour automatiques des extensions et des thèmes.','Plugin and theme auto-updates ensure that the latest versions are always installed.'=>'Les mises à jour automatiques des extensions et des thèmes permettent de s’assurer qu’ils soient toujours installés dans leur dernière version disponible.','Plugin and theme auto-updates appear to be configured correctly'=>'Les mises à jour automatiques des extensions et des thèmes semblent correctement configurées','themeActivate “%s”'=>'Activer « %s »','Sorry, you are not allowed to modify plugins.'=>'Désolé, vous n’avez pas l’autorisation de modifier les extensions.','The setting for %1$s is smaller than %2$s, this could cause some problems when trying to upload files.'=>'Le réglage de %1$s est inférieur à %2$s, ce qui pourrait causer des problèmes lors du téléversement de fichiers.','%1$s is set to %2$s. You won\'t be able to upload files on your site.'=>'%1$s est réglé sur %2$s. Vous ne pourrez pas téléverser des fichiers sur votre site.','The %s function has been disabled, some media settings are unavailable because of this.'=>'La fonction %s a été désactivée. De ce fait, certains réglages des médias ne sont pas disponibles.','The %1$s directive in %2$s determines if uploading files is allowed on your site.'=>'La directive %1$s dans le fichier %2$s détermine si le téléversement de fichiers est autorisé sur votre site.','Files can be uploaded'=>'Les fichiers peuvent être téléversés','Max effective file size'=>'Taille de fichier effective maximale','Max size of an uploaded file'=>'Taille maximale des fichiers téléversés','Max size of post data allowed'=>'Taille maximale autorisée pour les données des publications','File uploads'=>'Téléversements de fichiers','File upload settings'=>'Réglages des téléversements de fichiers','themeCannot Install %s'=>'Impossible d’installer %s','pluginInstall %s'=>'Installer %s','themeInstall %s'=>'Installer %s','themeUpdate %s now'=>'Mettre à jour %s maintenant','- %1$s version %2$s'=>'- %1$s version %2$s','themeActivated'=>'Activé','Sorry, you are not allowed to enable themes automatic updates.'=>'Désolé, vous n’avez pas l’autorisation d’activer les mises à jour automatiques de thèmes.','This plugin is already installed.'=>'Cette extension est déjà installée.','pluginUpdate %s now'=>'Mettre à jour %s maintenant','pluginInstall %s now'=>'Installer %s maintenant','Dismiss this notice.'=>'Ignorer cette notification.','themeCannot Activate %s'=>'Impossible d’activer %s','Theme will no longer be auto-updated.'=>'Le thème ne sera plus mis à jour automatiquement.','Theme will be auto-updated.'=>'Le thème sera mis à jour automatiquement.','Auto-updates can be enabled or disabled for each individual theme. Themes with auto-updates enabled will display the estimated date of the next auto-update. Auto-updates depends on the WP-Cron task scheduling system.'=>'Les mises à jour automatiques peuvent être activées ou désactivées pour chaque thème. Les thèmes qui sont mis à jour automatiquement affichent la date estimée de la prochaine mise à jour. Les mises à jour dépendent du système de tâches planifiées WP-Cron.','Sorry, you are not allowed to disable themes automatic updates.'=>'Désolé, vous n’avez pas l’autorisation de désactiver les mises à jour automatiques des thèmes.','Sorry, you are not allowed to manage plugins automatic updates.'=>'Désolé, vous n’êtes pas autorisé à gérer les mises à jour automatiques d’extensions.','Error in deleting the item.'=>'Erreur lors de la suppression de l’élément.','Error in restoring the item from Trash.'=>'Erreur lors de la restauration de l’élément depuis la corbeille.','Error in moving the item to Trash.'=>'Erreur lors du déplacement de l’élément vers la corbeille.','Selected plugins will no longer be auto-updated.'=>'Les extensions sélectionnées ne seront plus mises à jour automatiquement.','Selected plugins will be auto-updated.'=>'Les extensions sélectionnées seront mises à jour automatiquement.','Plugin will no longer be auto-updated.'=>'L’extension ne sera plus mise à jour automatiquement.','Plugin will be auto-updated.'=>'L’extension sera mise à jour automatiquement.','Auto-updates can be enabled or disabled for each individual plugin. Plugins with auto-updates enabled will display the estimated date of the next auto-update. Auto-updates depends on the WP-Cron task scheduling system.'=>'Les mises à jour automatiques peuvent être activées ou désactivées extension par extension. Les extensions dont les mises à jour automatiques sont activées afficheront la date estimée de la prochaine mise à jour automatique. Les mises à jour automatiques dépendent du système de planification des tâches de WP-Cron.','Please connect to your network admin to manage plugins automatic updates.'=>'Veuillez vous connecter à l’administration de votre réseau pour gérer les mises à jour automatiques des extensions.','The admin email verification page will reappear after %s.'=>'La page de vérification de l’e-mail d’administration réapparaîtra après %s.','Auto-updates'=>'Mises à jour auto','Please note: Third-party themes and plugins, or custom code, may override WordPress scheduling.'=>'Veuillez noter que des thèmes et extensions tiers ou du code personnalisé peuvent passer outre la planification WordPress.','Auto-updates can be enabled or disabled for WordPress major versions and for each individual theme or plugin. Themes or plugins with auto-updates enabled will display the estimated date of the next auto-update. Auto-updates depends on the WP-Cron task scheduling system.'=>'Les mises à jour automatiques peuvent être activées ou désactivées pour les versions majeures de WordPress et pour chaque thème ou extension. Les thèmes et les extensions qui sont mis à jour automatiquement affichent la date estimée de la prochaine mise à jour. Les mises à jour dépendent du système de tâches planifiées WP-Cron.','Important: Before updating, please back up your database and files. For help with updates, visit the Updating WordPress documentation page.'=>'Important : Avant de procéder aux mises à jour, veuillez sauvegarder votre base de données et vos fichiers. Pour obtenir de l’aide à propos des mises à jour, consultez la page de documentation Comment mettre à jour WordPress.','themeCannot Activate'=>'Impossible à activer','You cannot edit this comment because the associated post is in the Trash. Please restore the post first, then try again.'=>'Vous ne pouvez pas modifier ce commentaire car la publication associée est dans la corbeille. Veuillez d’abord restaurer la publication, puis essayer de nouveau.','media itemSuccess'=>'Succès','pluginError: Current WordPress version (%1$s) does not meet minimum requirements for %2$s. The plugin requires WordPress %3$s.'=>'Erreur : la version courante de WordPress (%1$s) ne correspond pas aux prérequis minimaux pour %2$s. L’extension nécessite WordPress %3$s.','pluginError: Current PHP version (%1$s) does not meet minimum requirements for %2$s. The plugin requires PHP %3$s.'=>'Erreur : la version courante de PHP (%1$s) ne correspond pas aux prérequis minimaux pour %2$s. L’extension nécessite PHP %3$s.','pluginError: Current versions of WordPress (%1$s) and PHP (%2$s) do not meet minimum requirements for %3$s. The plugin requires WordPress %4$s and PHP %5$s.'=>'Erreur : la version courante de WordPress (%1$s) et PHP (%2$s) ne correspondent pas aux prérequis minimaux pour %3$s. L’extension nécessite WordPress %4$s et PHP %5$s.','Invalid data. The item does not exist.'=>'Données non valides. L’élément n’existe pas.','Invalid data. Unknown type.'=>'Données non valides. Type inconnu.','Invalid data. Unknown state.'=>'Données non valides. État inconnu.','Invalid data. No selected item.'=>'Données non valides. Aucun élément sélectionné.','You cannot reply to a comment on a draft post.'=>'Erreur : vous ne pouvez pas répondre aux commentaires sur une publication en brouillon.','To manage themes on your site, visit the Themes page: %s'=>'Pour gérer les thèmes de votre site, visitez la page des thèmes : %s','To manage plugins on your site, visit the Plugins page: %s'=>'Pour gérer les thèmes de votre site, visitez la page des extensions : %s','These themes are now up to date:'=>'Ces thèmes sont maintenant à jour :','These plugins are now up to date:'=>'Ces extensions sont maintenant à jour :','These themes failed to update:'=>'Ces thèmes n’ont pas été mis à jour :','Please check your site now. It’s possible that everything is working. If there are updates available, you should update.'=>'Veuillez maintenant vérifier votre site. Il est possible que tout fonctionne. Si des mises à jour sont disponibles, vous devriez les faire.','Howdy! Themes failed to update on your site at %s.'=>'Bonjour ! Des mises à jour de thèmes ont échoué sur votre site situé à l’adresse %s.','[%s] Some themes have failed to update'=>'[%s] Certaines mises à jour de thèmes ont échoué','Howdy! Plugins failed to update on your site at %s.'=>'Bonjour ! Certaines mises à jour d’extensions ont échoué sur votre site situé à l’adresse %s.','[%s] Some plugins have failed to update'=>'[%s] Certaines mises à jour d’extensions ont échoué','Howdy! Plugins and themes failed to update on your site at %s.'=>'Bonjour ! Certaines mises à jour d’extensions et de thèmes ont échoué sur votre site situé à l’adresse %s.','[%s] Some plugins and themes have failed to update'=>'[%s] Certaines mises à jour d’extensions et de thèmes ont échoué','Howdy! Some themes have automatically updated to their latest versions on your site at %s. No further action is needed on your part.'=>'Bonjour ! Des thèmes ont été mis à jour automatiquement vers leurs dernières versions sur votre site à l’adresse %s. Vous n’avez rien de plus à faire.','[%s] Some themes were automatically updated'=>'[%s] Certains thèmes ont été mis à jour automatiquement','Howdy! Some plugins have automatically updated to their latest versions on your site at %s. No further action is needed on your part.'=>'Bonjour ! Des extensions ont été mises à jour automatiquement vers leurs dernières versions sur votre site à l’adresse %s. Vous n’avez rien de plus à faire.','[%s] Some plugins were automatically updated'=>'[%s] Certaines extensions ont été mises à jour automatiquement','Howdy! Some plugins and themes have automatically updated to their latest versions on your site at %s. No further action is needed on your part.'=>'Bonjour ! Des extensions et thèmes ont été mis à jour automatiquement vers leurs dernières versions sur votre site situé à l’adresse %s. Vous n’avez rien de plus à faire.','[%s] Some plugins and themes have automatically updated'=>'[%s] Des extensions et thèmes ont été mis à jour automatiquement','Move %s box down'=>'Déplacer la boite %s vers le bas','Move %s box up'=>'Déplacer la boite %s vers le haut','commentNot spam'=>'N’est pas un indésirable','PHP Sessions'=>'Sessions PHP','A PHP session was created by a %1$s function call. This interferes with REST API and loopback requests. The session should be closed by %2$s before making any HTTP requests.'=>'Une session PHP a été créée par un appel de fonction %1$s. Cela interfère avec l’API REST et les requêtes de boucle (loopback). La session devrait être fermée par %2$s avant d’effectuer toute requête HTTP.','An active PHP session was detected'=>'Une session PHP active a été détectée','PHP sessions created by a %1$s function call may interfere with REST API and loopback requests. An active session should be closed by %2$s before making any HTTP requests.'=>'Les sessions PHP créées par un appel de fonction %1$s peuvent interférer avec l’API REST et les requêtes de boucle (loopback). Une session active devrait être fermée par %2$s avant d’effectuer toute requête HTTP.','No PHP sessions detected'=>'Aucune session PHP détectée.','Extended view'=>'Vue étendue','Compact view'=>'Vue compacte','Error: Passwords do not match. Please enter the same password in both password fields.'=>'Erreur : les mots de passe ne correspondent pas. Veuillez saisir le même mot de passe dans les deux champs.','post action/button labelSchedule'=>'Planifier','No plugins found. Try a different search.'=>'Aucune extension trouvée. Essayez une recherche différente.','Automatic update scheduled in %s.'=>'Mise à jour automatique planifiée dans %s.','Automatic update overdue by %s. There may be a problem with WP-Cron.'=>'La mise à jour automatique est en retard de %s. Il peut y avoir un problème avec WP-Cron.','Automatic update not scheduled. There may be a problem with WP-Cron.'=>'Mise à jour automatique non planifiée. Il peut y avoir un problème avec WP-Cron.','You are updating a plugin. Be sure to back up your database and files first.'=>'Vous mettez à jour une extension. Au préalable, assurez-vous de sauvegarder votre base de données et vos fichiers.','You are uploading an older version of a current plugin. You can continue to install the older version, but be sure to back up your database and files first.'=>'Vous téléversez une ancienne version d’une extension actuelle. Vous pouvez poursuivre l’installation de l’ancienne version, mais assurez-vous de sauvegarder la base de donnée et les fichiers auparavant.','Your WordPress version is %1$s, however the uploaded plugin requires %2$s.'=>'Vous utilisez la version %1$s de WordPress, mais l’extension téléversée nécessite la version %2$s.','The PHP version on your server is %1$s, however the uploaded plugin requires %2$s.'=>'Votre serveur utilise la version %1$s de PHP, mais l’extension téléversée nécessite la version %2$s.','The plugin cannot be updated due to the following:'=>'L’extension ne peut être mise à jour pour la raison suivante :','Plugin name'=>'Nom de l’extension','Theme downgraded successfully.'=>'Le thème a bien été rétrogradé.','Theme downgrade failed.'=>'La rétrogradation du thème a échoué.','Downgrading the theme…'=>'Rétrogradation du thème…','Updating the theme…'=>'Mise à jour du thème…','The active theme has the following error: "%s".'=>'Le thème actif contient l’erreur suivante : « %s ».','Enable auto-updates'=>'Activer les mises à jour auto','Disable auto-updates'=>'Désactiver les mises à jour auto','Disable Auto-updates'=>'Désactiver les mises à jour auto','Enable Auto-updates'=>'Activer les mises à jour auto','Auto-updates Disabled (%s)'=>'Mises à jour auto désactivées (%s)' . "\0" . 'Mises à jour auto désactivées (%s)','Auto-updates Enabled (%s)'=>'Mises à jour auto activées (%s)' . "\0" . 'Mises à jour auto activées (%s)','Automatic Updates'=>'Mises à jour automatiques','No plugins are currently available.'=>'Aucune extension n’est disponible pour l’instant.','Restore original image'=>'Restaurer l’image originale','The uploaded file has expired. Please go back and upload it again.'=>'Le fichier téléversé a expiré. Veuillez le téléverser à nouveau.','Cancel and go back'=>'Annuler et revenir en arrière','themeReplace installed with uploaded'=>'Remplacer le thème installé par celui que vous avez téléversé','You are updating a theme. Be sure to back up your database and files first.'=>'Vous mettez à jour un thème. Assurez-vous de sauvegarder votre base de données et vos fichiers d’abord.','You are uploading an older version of the installed theme. You can continue to install the older version, but be sure to back up your database and files first.'=>'Vous téléversez une ancienne version du thème installé. Vous pouvez continuer d’installer l’ancienne version, mais au préalable, assurez-vous de sauvegarder votre base de données et vos fichiers.','Your WordPress version is %1$s, however the uploaded theme requires %2$s.'=>'Vous utilisez la version %1$s de WordPress, mais le thème téléversé nécessite la version %2$s.','The PHP version on your server is %1$s, however the uploaded theme requires %2$s.'=>'Votre serveur utilise la version %1$s de PHP, mais le thème téléversé nécessite la version %2$s.','The theme cannot be updated due to the following:'=>'Le thème ne peut pas être mis à jour pour les raisons suivantes :','(not found)'=>'(non trouvé)','Required PHP version'=>'Version de PHP nécessaire','Required WordPress version'=>'Version de WordPress nécessaire','Theme name'=>'Nom du thème','themeCannot Install'=>'Impossible d’installer','Block Editor Patterns'=>'Compositions pour l’éditeur de blocs','Plugin downgraded successfully.'=>'L’extension a bien été rétrogradée.','Plugin downgrade failed.'=>'La rétrogradation de l’extension a échoué.','Downgrading the plugin…'=>'Rétrogradation de l’extension…','Updating the plugin…'=>'Mise à jour de l’extension…','Could not remove the current plugin.'=>'Impossible de supprimer l’extension actuelle.','Removing the current plugin…'=>'Suppression de l’extension actuelle…','Auto-update'=>'Mise à jour auto','Auto-updates disabled'=>'Mises à jour auto désactivées','Auto-updates enabled'=>'Mises à jour auto activées','Are pretty permalinks supported?'=>'Les permaliens sont-ils pris en charge ?','PHP memory limit (only for admin screens)'=>'Limite de mémoire PHP (uniquement pour les écrans d’administration)','Is this site discouraging search engines?'=>'Ce site décourage-t-il les moteurs de recherche ?','Wide Blocks'=>'Blocs larges','Block Editor Styles'=>'Styles de l’éditeur de blocs','Spam'=>'Indésirable','Unable to write to %s file.'=>'Impossible d’écrire dans le fichier %s.','Error: The %s options page is not in the allowed options list.'=>'Erreur : page d’options %s introuvable dans la liste des options autorisées.','Error:'=>'Erreur :','You should update your %s file now.'=>'Vous devez mettre à jour votre fichier %s maintenant.','This localized version contains both the translation and various other localization fixes.'=>'Cette version localisée contient à la fois les traductions et d’autres correctifs de localisation.','Take a look at the %1$d item on the Site Health screen.'=>'Jetez un œil à %1$d élément sur l’écran de santé du site.' . "\0" . 'Jetez un œil à %1$d éléments sur l’écran de santé du site.','Your site’s health is looking good, but there are still some things you can do to improve its performance and security.'=>'L’état de santé de votre site semble correct, mais il reste des choses que vous pourriez faire afin d’améliorer ses performances et sa sécurité.','Great job! Your site currently passes all site health checks.'=>'Bon travail ! Votre site passe actuellement toutes les vérifications de santé du site.','Your site has critical issues that should be addressed as soon as possible to improve its performance and security.'=>'Votre site rencontre des erreurs critiques qui doivent être réglées dès que possible afin d’améliorer ses performances et sa sécurité.','Site health checks will automatically run periodically to gather information about your site. You can also visit the Site Health screen to gather information about your site now.'=>'Des contrôles de santé du site seront automatiquement effectués périodiquement pour recueillir des informations sur votre site. Vous pouvez également vous rendre sur l’écran de Santé du site pour recueillir dès maintenant des informations sur votre site.','No information yet…'=>'Aucune information pour le moment…','The uploaded file exceeds the %1$s directive in %2$s.'=>'Le fichier téléversé dépasse la directive %1$s dans %2$s.','No comments found in Trash.'=>'Aucun commentaire trouvé dans la corbeille.','File is empty. Please upload something more substantial. This error could also be caused by uploads being disabled in your %1$s file or by %2$s being defined as smaller than %3$s in %1$s.'=>'Le fichier est vide. Veuillez téléverser quelque chose de plus substantiel. Cette erreur peut également être due au fait que les téléversements sont désactivés dans votre fichier %1$s ou que %2$s est défini comme inférieur à %3$s dans %1$s.','A test is unavailable'=>'Un test n’est pas disponible','Error: %1$s (%2$s)'=>'Erreur : %1$s (%2$s)','Your site is running on an older version of PHP (%s), which should be updated'=>'Votre site utilise une version dépréciée de PHP (%s), elle devrait être mise à niveau.','Your site is running on an older version of PHP (%s)'=>'Votre site utilise une version ancienne de PHP (%s)','Your site is running a recommended version of PHP (%s)'=>'Votre site utilise une version recommandée de PHP (%s)','No media files found in Trash.'=>'Aucun fichier média trouvé dans la corbeille.','%1$s %2$d – %3$s %4$d, %5$d'=>'%1$s %2$d – %3$s %4$d, %5$d','upcoming events year formatY'=>'Y','upcoming events day formatj'=>'j','%1$s %2$d–%3$d, %4$d'=>'%1$s %2$d–%3$d, %4$d','upcoming events month formatF'=>'F','Resend confirmation requests'=>'Renvoyer les demandes de confirmation','Delete requests'=>'Supprimer les demandes','Table prefix'=>'Préfixe de table','PHP Default Timezone'=>'Fuseau horaire par défaut de PHP','PHP default timezone was changed after WordPress loading by a %s function call. This interferes with correct calculations of dates and times.'=>'Le fuseau horaire par défaut de PHP a été modifié après le chargement de WordPress par un appel à la fonction %s. Cela perturbe le fonctionnement du calcul des dates et des heures.','PHP default timezone is invalid'=>'Le fuseau horaire par défaut de PHP n’est pas valide.','PHP default timezone was configured by WordPress on loading. This is necessary for correct calculations of dates and times.'=>'Le fuseau horaire par défaut de PHP a été configuré au chargement de WordPress. Ceci est nécessaire au fonctionnement du calcul des dates et des heures.','PHP default timezone is valid'=>'Le fuseau horaire par défaut de PHP est valide','The seventh parameter passed to %s should be numeric representing menu position.'=>'Le septième paramètre passé à %s devrait être un nombre entier représentant une position de menu.','The update cannot be installed because WordPress %1$s requires the %2$s PHP extension.'=>'La mise à jour ne peut pas être installée car WordPress %1$s nécessite l’extension PHP %2$s.','https://wordpress.org/about/stats/'=>'https://fr.wordpress.org/about/stats/','Documentation on Export'=>'Documentation sur l’exportation','Documentation on Installing Plugins'=>'Documentation sur l’installation d’extensions','Documentation on Managing Pages'=>'Documentation sur la gestion des pages','Documentation on Managing Posts'=>'Documentation sur la gestion des articles','Documentation on Discussion Settings'=>'Documentation sur les réglages des commentaires','Documentation on Adding New Themes'=>'Documentation sur l’ajout de nouveaux thèmes','Documentation on Uploading Media Files'=>'Documentation sur le téléversement de médias','Descriptions of Roles and Capabilities'=>'Description des rôles et des permissions','Documentation on Managing Users'=>'Documentation sur la gestion des comptes','Documentation on User Profiles'=>'Documentation sur l’écran Profil','Documentation on Media Settings'=>'Documentation sur les réglages des médias','Documentation on Import'=>'Documentation sur l’import','Documentation on Tools'=>'Documentation sur l’écran Outils','This page allows direct access to your site settings. You can break things here. Please be cautious!'=>'Cette page donne un accès direct aux réglages de votre site. Vous pouvez casser des choses ici, donc faites attention !','Format — Post Formats designate how your theme will display a specific post. For example, you could have a standard blog post with a title and paragraphs, or a short aside that omits the title and contains a short text blurb. Your theme could enable all or some of 10 possible formats. Learn more about each post format.'=>'Format - Un format de publication désigne la manière dont votre thème doit afficher une publication donnée. Par exemple, vous pourriez avoir un article de blog classique, avec titre et paragraphes, ou le format En passant pour ne pas utiliser le titre et n’afficher qu’un court texte. Votre thème peut utiliser jusqu’à 10 formats différents. Lisez la documentation (en anglais) pour obtenir une description de chaque format.','Documentation on Editing Pages'=>'Documentation sur la modification des pages','Documentation on Adding New Pages'=>'Documentation sur la création de nouvelles pages','Documentation on Media Library'=>'Documentation sur la médiathèque','Revisions Management'=>'Gestion des révisions','Documentation on Edit Media'=>'Documentation sur la modification des médias','Documentation on Managing Plugins'=>'Documentation sur la gestion des extensions (en anglais)','Documentation on Dashboard'=>'Documentation sur le Tableau de bord','Documentation on Adding New Users'=>'Documentation sur l’ajout de nouveaux comptes','This page can show you every detail about the configuration of your WordPress website. For any improvements that could be made, see the Site Health Status page.'=>'Cette page peut vous afficher tous les détails sur la configuration de votre site WordPress. Pour toute amélioration qui pourrait être apportée, consultez la page État de santé du site.','Results are still loading…'=>'Les résultats sont toujours en cours de chargement…','Documentation on Using Permalinks'=>'Documentation sur l’utilisation des permaliens','Documentation on Permalinks Settings'=>'Documentation sur les réglages des permaliens','Documentation on Updating WordPress'=>'Documentation sur la mise à jour de WordPress','Documentation on Menus'=>'Documentation sur les menus','Documentation on Writing Plugins'=>'Documentation sur l’écriture d’extensions en anglais)','Documentation on Template Tags'=>'Documentation sur les balises de modèles (en anglais)','Documentation on Using Themes'=>'Documentation sur l’utilisation des thèmes','Documentation on Theme Development'=>'Documentation sur le développement de thèmes (en anglais)','Documentation on Comments'=>'Documentation sur les commentaires','Universal time is %s.'=>'L’heure universelle est %s.','Choose either a city in the same timezone as you or a %s (Coordinated Universal Time) time offset.'=>'Choisissez soit une ville dans le même fuseau horaire que vous ou un décalage horaire %s (Temps Universel Coordonné).','Administration Email Address'=>'Adresse e-mail d’administration','Documentation on General Settings'=>'Documentation sur les réglages généraux','You need to make this file writable before you can save your changes. See Changing File Permissions for more information.'=>'Vous devez rendre ce fichier accessible en écriture avant de pouvoir enregistrer vos modifications. Consultez Modifier les permissions des fichiers pour plus d’informations.','Upload failed. Please reload and try again.'=>'Téléversement échoué. Veuillez actualiser et réessayer.','Data erasure has failed.'=>'L’effacement des données a échoué.','Erasure completed.'=>'Effacement terminé.','The attached file cannot be found.'=>'Le fichier attaché ne peut pas être trouvé.','page labelPrivacy Policy Page'=>'Page de politique de confidentialité','page labelPosts Page'=>'Page des articles','page labelFront Page'=>'Page d’accueil','post statusSticky'=>'Épinglé','post statusCustomization Draft'=>'Brouillon de personnalisation','post statusPassword protected'=>'Protégé par mot de passe','The scheduled event, %s, is late to run. Your site still works, but this may indicate that scheduling posts or automated updates may not work as intended.'=>'L’évènement planifié %s, est en retard. Votre site fonctionne toujours, mais cela peut indiquer que la planification des articles ou des mises à jour automatisées peuvent ne pas fonctionner comme prévu.','A scheduled event is late'=>'Un évènement planifié est en retard','An HTTPS connection is a more secure way of browsing the web. Many services now have HTTPS as a requirement. HTTPS allows you to take advantage of new features that can increase site speed, improve search rankings, and gain the trust of your visitors by helping to protect their online privacy.'=>'Une connexion HTTPS est un moyen plus sûr de naviguer sur le web. De nombreux services ont maintenant HTTPS comme exigence. HTTPS vous permet de profiter de nouvelles fonctionnalités qui peuvent augmenter la vitesse du site, améliorer les classements de recherche et gagner la confiance de vos visiteurs en aidant à protéger leur vie privée en ligne.','Your version of WordPress (%s) is up to date'=>'Votre version de WordPress (%s) est à jour','https://wordpress.org/documentation/article/introduction-to-blogging/#managing-comments'=>'https://fr.wordpress.org/support/article/introduction-to-blogging/#gerer-les-commentaires','https://wordpress.org/documentation/article/introduction-to-blogging/#comments'=>'https://fr.wordpress.org/support/article/introduction-to-blogging/#les-commentaires-spam','https://wordpress.org/documentation/article/block-themes/'=>'https://fr.wordpress.org/support/article/block-themes/','Publish on: %s'=>'Publier le : %s','Schedule for: %s'=>'Planifier pour le : %s','Published on: %s'=>'Publié le : %s','Scheduled for: %s'=>'Planifié pour le : %s','publish box time formatH:i'=>'H\\h i \\m\\i\\n','publish box date formatM j, Y'=>'j F Y','The directives (lines) between "BEGIN %1$s" and "END %1$s" are dynamically generated, and should only be modified via WordPress filters. Any changes to the directives between these markers will be overwritten.'=>'Les directives (lignes) entre « BEGIN %1$s » et « END %1$s » sont générées dynamiquement, et doivent être modifiées uniquement via les filtres WordPress. -Toute modification des directives situées entre ces marqueurs sera surchargée.','All automatic updates are disabled.'=>'Toutes les mises à jour automatiques sont désactivées.','Database collation'=>'Classement de base de données','Database charset'=>'Jeu de caractères de la base de données','Inactive Themes'=>'Thèmes inactifs','Parent Theme'=>'Thème parent','Drop-ins are single files, found in the %s directory, that replace or enhance WordPress features in ways that are not possible for traditional plugins.'=>'Les extensions avancées sont des fichiers uniques, trouvés dans le répertoire %s, qui remplacent ou améliorent les fonctionnalités de WordPress d’une manière non accessible aux extensions traditionnelles.','personal data group descriptionOverview of export report.'=>'Vue globale du rapport sur les exportations.','Documentation on Writing Settings'=>'Documentation sur les réglages d’écriture','Documentation on Tags'=>'Documentation sur les étiquettes','Documentation on Categories'=>'Documentation sur les catégories','Your theme determines how content is displayed in browsers. Learn more about feeds.'=>'Votre thème détermine comment le contenu est affiché dans les navigateurs. En savoir plus sur les flux.','For each post in a feed, include'=>'Dans chaque publication du flux, inclure','Warning: these pages should not be the same as your Privacy Policy page!'=>'Avertissement : ces pages ne doivent pas être les mêmes que votre page de politique de confidentialité !','Documentation on Reading Settings'=>'Documentation sur les réglages de lecture','[%s] Delete My Site'=>'[%s] Supprimer mon site','Allow people to submit comments on new posts'=>'Autoriser les commentaires sur les nouvelles publications','Default post settings'=>'Réglages de publication par défaut','You can change your profile picture on Gravatar.'=>'Vous pouvez changer votre image de profil sur Gravatar.','Plugin resumed.'=>'Extension reprise.','Selected plugins deactivated.'=>'Extensions sélectionnées désactivées.','Plugin deactivated.'=>'Extension désactivée.','Selected plugins activated.'=>'Extensions sélectionnées activées.','Plugin activated.'=>'Extension activée.','The selected plugins have been deleted.'=>'Les extensions sélectionnées ont été supprimées.','The selected plugin has been deleted.'=>'L’extension sélectionnée a été supprimée.','The plugin %1$s has been deactivated due to an error: %2$s'=>'L’extension %1$s a été désactivée en raison d’une erreur : %2$s','If you need to tweak more than your theme’s CSS, you might want to try making a child theme.'=>'Si vous avez besoin d’ajuster plus que le CSS de votre thème, vous voudrez peut-être essayer de faire un thème enfant.','You appear to be making direct edits to your theme in the WordPress dashboard. It is not recommended! Editing your theme directly could break your site and your changes may be lost in future updates.'=>'Vous semblez vouloir effectuer des modifications directes pour votre thème dans le tableau de bord WordPress. Ce n’est pas recommandé ! Modifier votre thème directement pourrait casser votre site et vos modifications peuvent être perdues avec les futures mises à jour.','draft_length10'=>'10','File does not exist! Please double check the name and try again.'=>'Le fichier n’existe pas ! Veuillez vérifier le nom et réessayer.','%1$s needs to be a %2$s object.'=>'%1$s doit être un objet %2$s.','You are in recovery mode. This means there may be an error with a theme or plugin. To exit recovery mode, log out or use the Exit button. Exit Recovery Mode'=>'Vous êtes en mode de récupération. Cela signifie qu’il pourrait y avoir une erreur avec un thème ou une extension. Pour sortir du mode de récupération, déconnectez vous ou utilisez le bouton Sortir. Exit Recovery Mode','Site HealthInfo'=>'Informations','Site HealthStatus'=>'État','Themes directory location'=>'Emplacement du répertoire de thèmes','comment statusClosed'=>'Fermé','%s critical issue'=>'%s problème critique' . "\0" . '%s problèmes critiques','https://wordpress.org/documentation/article/updating-wordpress/'=>'https://fr.wordpress.org/support/article/updating-wordpress/','Get help resolving this issue.'=>'Obtenez de l’aide pour résoudre ce problème.','Learn more about what WordPress requires to run.'=>'En savoir plus sur les pré-requis de fonctionnement de WordPress.','https://wordpress.org/about/requirements/'=>'https://fr.wordpress.org/about/requirements/','The SQL server is a required piece of software for the database WordPress uses to store all your site’s content and settings.'=>'Le serveur SQL est un élément obligatoire de l’architecture utilisée par WordPress pour stocker les contenus et réglages de votre site.','PHP modules perform most of the tasks on the server that make your site run. Any changes to these must be made by your server administrator.'=>'Les modules PHP réalisent la plupart des tâches sur le serveur qui fait fonctionner votre site. Toute modification les concernant doit être réalisée par la personne chargée de l’administration de votre serveur.','Manage your themes'=>'Gérez vos thèmes','Manage inactive plugins'=>'Gérer les extensions inactives','Update your plugins'=>'Mettez à jour vos extensions','Manage your plugins'=>'Gérez vos extensions','View Privacy Policy Guide.'=>'Voir le guide de politique de confidentialité.','User Language'=>'Langue du compte','The value, %1$s, has either been enabled by %2$s or added to your configuration file. This will make errors display on the front end of your site.'=>'La valeur, %1$s, a été activée par %2$s ou ajoutée à votre fichier de configuration. Cela fera apparaître les erreurs sur l’interface publique de votre site.','[%s] Background Update Finished'=>'[%s] Mise à jour en arrière-plan terminée','[%s] Background Update Failed'=>'[%s] Mise à jour en arrière-plan échouée','Plugin could not be resumed because it triggered a fatal error.'=>'L’extension n’a pas pu être relancée car elle a déclenché une erreur fatale.','You should remove inactive themes'=>'Vous devriez retirer les thèmes inactifs','Your site has 1 installed theme, and it is up to date.'=>'Votre site a un thème installé, et il est à jour.','Your site has 1 active plugin, and it is up to date.'=>'Votre site a une extension active, et elle est à jour.','Passed tests'=>'Tests passés avec succès','Sorry, you are not allowed to access site health information.'=>'Désolé, vous n’avez pas l’autorisation d’accéder aux informations de santé du site.','Copy site info to clipboard'=>'Copier les informations du site dans le presse-papier','If you want to export a handy list of all the information on this page, you can use the button below to copy it to the clipboard. You can then paste it in a text file and save it to your device, or paste it in an email exchange with a support engineer or theme/plugin developer for example.'=>'Si vous souhaitez exporter une liste de toutes les informations contenues dans cette page, vous pouvez utiliser le bouton ci-dessous pour les copier dans votre presse-papier. Vous pourrez ensuite les coller dans un fichier texte pour les enregistrer sur votre ordinateur, dans un e-mail d’échange avec un support technique, ou encore dans une discussion avec une développeuse ou un développeur de thème/extension.','The Site Health check requires JavaScript.'=>'La vérification de santé du site nécessite JavaScript.','Site Health Info'=>'Informations de santé du site','This update does not work with your version of PHP.'=>'Cette mise à jour ne fonctionne pas avec votre version de PHP.','All formats'=>'Tous les formats','Filter by post format'=>'Filtrer par format de publication','Go to the Plugins screen'=>'Aller à l’écran des extensions','The authenticity of %s could not be verified.'=>'L’authenticité de %s ne peut pas être vérifiée.','The authenticity of %s could not be verified as no signature was found.'=>'L’authenticité de %s n’a pas pu être vérifiée car aucune signature n’a été trouvée.','The authenticity of %s could not be verified as signature verification is unavailable on this system.'=>'L’authenticité de %s ne peut pas être vérifiée car la vérification des signatures est indisponible sur ce système.','Eraser callback is not valid: %s.'=>'Le retour de l’outil de suppression n’est pas valide : %s.','Eraser does not include a callback: %s.'=>'L’outil de suppression n’inclue aucun retour : %s.','Sorry, you are not allowed to perform this action.'=>'Désolé, vous n’avez pas l’autorisation d’effectuer cette action.','HTTP requests have been blocked by the %1$s constant, with some allowed hosts: %2$s.'=>'Les requêtes HTTP ont été bloquées par la constante %1$s, avec certains hôtes autorisés : %2$s.','HTTP requests have been blocked by the %s constant, with no allowed hosts.'=>'Les requêtes HTTP ont été bloquées par la constante %s, avec aucun hôte autorisé.','You are using a %1$s drop-in which might mean that a %2$s database is not being used.'=>'Vous utilisez une extension avancée %1$s, ce qui pourrait signifier que la base de données %2$s n’est pas utilisée.','https://make.wordpress.org/hosting/handbook/handbook/server-environment/#php-extensions'=>'https://make.wordpress.org/hosting/handbook/handbook/server-environment/#php-extensions','The WordPress Hosting Team maintains a list of those modules, both recommended and required, in the team handbook%3$s.'=>'L’équipe Hébergement de WordPress maintient une liste des modules recommandés et obligatoires dans le manuel de l’équipe (en anglais)%3$s.','Performance'=>'Performances','Your site has %1$d inactive theme, other than %2$s, the default WordPress theme, and %3$s, your active theme.'=>'Votre site a %1$d thème inactif, autre que %2$s, le thème par défaut de WordPress, et %3$s, votre thème actif.' . "\0" . 'Votre site a %1$d thèmes inactifs, autres que %2$s, le thème par défaut de WordPress, et %3$s, votre thème actif.','You should consider removing any unused themes to enhance your site’s security.'=>'Nous recommandons de supprimer tous les thèmes non utilisés pour améliorer la sécurité de votre site.','Your site has %1$d inactive theme, other than %2$s, your active theme.'=>'Votre site a %1$d thème inactif, autre que %2$s, votre thème actif.' . "\0" . 'Votre site a %1$d thèmes inactifs, autres que %2$s, votre thème actif.','Your site has %d inactive theme.'=>'Votre site a %d thème inactif.' . "\0" . 'Votre site a %d thèmes inactifs.','Inactive plugins are tempting targets for attackers. If you are not going to use a plugin, you should consider removing it.'=>'Les extensions inactives sont des cibles tentantes pour les pirates. Si vous n’utilisez plus une extension, vous devriez envisager de la retirer.','Your site has %d inactive plugin.'=>'Votre site a %d extension inactive.' . "\0" . 'Votre site a %d extensions inactives.','Security'=>'Sécurité','Erase personal data list'=>'Supprimer la liste de données personnelles','Erase personal data list navigation'=>'Supprimer la navigation dans la liste de données personnelles','Filter erase personal data list'=>'Filtrer la suppression de la liste de données personnelles','Export personal data list'=>'Exporter la liste de données personnelles','Export personal data list navigation'=>'Exporter la navigation dans la liste de données personnelles','Filter export personal data list'=>'Filtrer l’exportation de la liste de données personnelles','There is a new version of %1$s available, but it does not work with your version of PHP. View version %4$s details or learn more about updating PHP.'=>'Il existe une nouvelle version disponible de %1$s, mais elle ne fonctionne pas avec votre version de PHP. Voir les détails de la version %4$s ou en savoir plus sur la mise à jour de PHP.','This plugin failed to load properly and is paused during recovery mode.'=>'Cette extension n’a pas pu se charger correctement et a été mise en pause dans le cadre du mode de récupération.','Go to the Themes screen'=>'Aller à l’écran des thèmes','Total size is not available. Some errors were encountered when determining the size of your installation.'=>'La taille totale n’est pas disponible. Des erreurs ont été rencontrées lors de la détermination de la taille de votre installation.','The size cannot be calculated. The directory is not accessible. Usually caused by invalid permissions.'=>'La taille ne peut pas être calculée. Le répertoire n’est pas accessible. Usuellement cela est causé par des droits d’accès non valides.','The directory size calculation has timed out. Usually caused by a very large number of sub-directories and files.'=>'Le calcul de la taille du répertoire a expiré. Cela est généralement causé par un très grand nombre de sous-répertoires et de fichiers.','These settings alter where and how parts of WordPress are loaded.'=>'Ces réglages modifient où et comment les éléments de WordPress sont chargés.','%s item with no issues detected'=>'%s élément sans problème détecté' . "\0" . '%s éléments sans problème détectés','%s recommended improvement'=>'%s amélioration recommandée' . "\0" . '%s améliorations recommandées','The site health check shows information about your WordPress configuration and items that may need your attention.'=>'La vérification de santé du site affiche des informations critiques à propos de votre configuration WordPress et les éléments qui nécessitent votre attention.','Site Health Status'=>'État de santé du site','Everything is running smoothly here.'=>'Tout fonctionne parfaitement ici.','Great job!'=>'Bon travail !','Secondary menu'=>'Menu secondaire','The loopback request to your site completed successfully.'=>'La demande de bouclage vers votre site s’est bien terminée.','The loopback request returned an unexpected http status code, %d, it was not possible to determine if this will prevent features from working as expected.'=>'La requête de bouclage a renvoyé un code d’état HTTP inattendu, %d. Il n’a pas été possible de déterminer si cela peut empêcher des fonctionnalités de fonctionner comme prévu.','The loopback request to your site failed, this means features relying on them are not currently working as expected.'=>'La requête de bouclage sur votre site a échoué, ce qui signifie que les fonctionnalités qui s’appuient sur ces requêtes ne fonctionnent actuellement pas comme prévu.','No scheduled events exist on this site.'=>'Aucun évènement planifié n’existe sur ce site.','REST API availability'=>'Disponibilité de l’API REST','Loopback request'=>'Demande de bouclage','Debugging enabled'=>'Débogage activé','HTTP Requests'=>'Requêtes HTTP','Scheduled events'=>'Évènements planifiés','Secure communication'=>'Communication sécurisée','HTTPS status'=>'État HTTPS','PHP Extensions'=>'Extensions PHP','Database Server version'=>'Version du serveur de base de données','PHP Version'=>'Version de PHP','Theme Versions'=>'Version des thèmes','Plugin Versions'=>'Versions des extensions','WordPress Version'=>'Version de WordPress','The REST API did not process the %s query parameter correctly.'=>'L’API REST n’a pas traité correctement le paramètre de la requête %s.','The REST API did not behave correctly'=>'L’API REST ne s’est pas correctement comportée','The REST API encountered an unexpected result'=>'L’API REST a rencontré un résultat inattendu','The REST API encountered an error'=>'L’API REST a rencontré une erreur','The REST API is one way that WordPress and other applications communicate with the server. For example, the block editor screen relies on the REST API to display and save your posts and pages.'=>'L’API REST est l’une des façons pour WordPress ou d’autres applications de communiquer avec le serveur. Par exemple, l’écran de l’éditeur s’appuie sur celle-ci pour afficher et enregistrer vos publications.','The REST API is available'=>'L’API REST est disponible','HTTP requests are partially blocked'=>'Les requêtes HTTP sont partiellement bloquées','HTTP requests are blocked'=>'Les requêtes HTTP sont bloquées','It is possible for site maintainers to block all, or some, communication to other sites and services. If set up incorrectly, this may prevent plugins and themes from working as intended.'=>'Il est possible pour les responsables du site de bloquer tout ou partie de la communication vers d’autres sites et services. Si la configuration est incorrecte, cela peut empêcher les extensions et thèmes de fonctionner comme prévu.','HTTP requests seem to be working as expected'=>'Les requêtes HTTP semblent fonctionner comme prévu','Your site could not complete a loopback request'=>'Votre site n’a pas pu terminer la requête de bouclage','Loopback requests are used to run scheduled events, and are also used by the built-in editors for themes and plugins to verify code stability.'=>'Les requêtes de bouclage sont utilisées pour lancer des évènements planifiés, ainsi que par les éditeurs de thèmes et d’extensions pour vérifier la stabilité du code.','Your site can perform loopback requests'=>'Votre site peut lancer des requêtes de bouclage','Background updates may not be working properly'=>'Les mises à jour d’arrière-plan pourraient ne pas fonctionner correctement','Background updates are not working as expected'=>'Les mises à jour d’arrière-plan ne fonctionnent pas comme prévu','Passed'=>'Succès','Background updates ensure that WordPress can auto-update if a security update is released for the version you are currently using.'=>'Les mises à jour d’arrière-plan assurent que WordPress peut se mettre à jour automatiquement si une mise à jour de sécurité est disponible pour la version que vous utilisez actuellement.','Background updates are working'=>'Les mises à jour d’arrière-plan fonctionnent','The scheduled event, %s, failed to run. Your site still works, but this may indicate that scheduling posts or automated updates may not work as intended.'=>'L’évènement planifié %s a échoué. Votre site fonctionne toujours, mais cela pourrait indiquer que les publications planifiées ou les mises à jour automatiques ne fonctionnent pas comme elles le devraient.','A scheduled event has failed'=>'Un évènement planifié a échoué','While trying to test your site’s scheduled events, the following error was returned: %s'=>'Lors du test des évènements planifiés de votre site, l’erreur suivante a été retournée : %s','It was not possible to check your scheduled events'=>'Il n’a pas été possible de vérifier vos évènements planifiés','Scheduled events are what periodically looks for updates to plugins, themes and WordPress itself. It is also what makes sure scheduled posts are published on time. It may also be used by various plugins to make sure that planned actions are executed.'=>'Les évènements planifiés permettent de vérifier périodiquement les mises à jour d’extensions, de thèmes et de WordPress lui-même. Cela permet également de s’assurer que les publications planifiées sont publiées à temps. Ils sont également utilisés par diverses extensions pour exécuter des actions planifiées.','Scheduled events are running'=>'Les évènements planifiés fonctionnent','Talk to your web host about OpenSSL support for PHP.'=>'Demandez à votre hébergeur la prise en charge de OpenSSL pour PHP.','Your site is unable to communicate securely with other services'=>'Votre site n’est pas en mesure de communiquer en toute sécurité avec d’autres services','Your site can communicate securely with other services'=>'Votre site peut communiquer en toute sécurité avec d’autres services','Securely communicating between servers are needed for transactions such as fetching files, conducting sales on store sites, and much more.'=>'Des communications sécurisées entre serveurs sont nécessaires pour des transactions telles que le parcours de fichiers, la vente sur les boutiques en ligne, et plus encore.','Learn more about why you should use HTTPS'=>'Apprenez pourquoi vous devriez utiliser HTTPS','Your website does not use HTTPS'=>'Votre site n’utilise pas HTTPS','Your website is using an active HTTPS connection'=>'Votre site utilise une connexion HTTPS opérationnelle.','You are accessing this website using HTTPS, but your Site Address is not set up to use HTTPS by default.'=>'Vous accédez à ce site en utilisant HTTPS, mais votre Adresse WordPress n’est pas configurée pour utiliser HTTPS par défaut.','Your site is set to display errors to site visitors'=>'Votre site est réglé pour afficher les erreurs aux visiteurs du site','The value, %s, has been added to this website’s configuration file. This means any errors on the site will be written to a file which is potentially available to all users.'=>'La valeur %s a été ajoutée au fichier de configuration de votre site. Cela signifie que toute erreur sur le site sera enregistrée dans un fichier qui est potentiellement visible par tous les comptes.','Your site is set to log errors to a potentially public file'=>'Votre site est configuré pour enregistrer le journal des erreurs dans un fichier potentiellement public','Debug mode is often enabled to gather more details about an error or site failure, but may contain sensitive information which should not be available on a publicly available website.'=>'Le mode débogage est souvent activé pour obtenir plus de détails à propos d’une erreur ou d’une défaillance du site, mais peut contenir des informations sensibles qui ne devraient pas être disponibles sur un site accessible au public.','Your site is not set to output debug information'=>'Votre site n’est pas réglé pour afficher les informations de débogage','Your site is unable to reach WordPress.org at %1$s, and returned the error: %2$s'=>'Votre site ne peut pas rejoindre WordPress.org sur %1$s et a retourné l’erreur suivante : %2$s','Could not reach WordPress.org'=>'Impossible de rejoindre WordPress.org','Communicating with the WordPress servers is used to check for new versions, and to both install and update WordPress core, themes or plugins.'=>'La communication avec les serveurs WordPress est utilisée pour vérifier l’existence de nouvelles versions et pour installer et mettre à jour le cœur WordPress, les thèmes et les extensions.','Can communicate with WordPress.org'=>'Peut communiquer avec WordPress.org','WordPress requires %1$s version %2$s or higher. Contact your web hosting company to correct this.'=>'WordPress nécessite %1$s version %2$s ou plus. Contactez votre hébergeur web pour corriger cela.','Severely outdated SQL server'=>'Serveur SQL fortement obsolète ','For optimal performance and security reasons, you should consider running %1$s version %2$s or higher. Contact your web hosting company to correct this.'=>'Pour des performances optimales et pour des raisons de sécurité, nous recommandons %1$s version %2$s ou supérieure. Contactez votre hébergeur pour corriger cela.','Outdated SQL server'=>'Serveur SQL obsolète','SQL server is up to date'=>'Le serveur SQL est à jour','One or more required modules are missing'=>'Un module nécessaire ou plus sont manquants.','One or more recommended modules are missing'=>'Un ou plusieurs modules recommandés sont manquants','The optional module, %s, is not installed, or has been disabled.'=>'Le module facultatif, %s, n’est pas installé, ou a été désactivé.','The required module, %s, is not installed, or has been disabled.'=>'Le module obligatoire %s n’est pas installé, ou a été désactivé.','Error'=>'Erreur','Required and recommended modules are installed'=>'Les modules obligatoires et recommandés sont installés','Your site does not have any default theme. Default themes are used by WordPress automatically if anything is wrong with your chosen theme.'=>'Votre site n’a pas de thème par défaut. Les thèmes par défaut sont utilisés par WordPress automatiquement si quelque chose ne va pas avec votre thème actif.','Have a default theme available'=>'Avoir un thème par défaut disponible','To enhance your site’s security, you should consider removing any themes you are not using. You should keep %1$s, the default WordPress theme, %2$s, your active theme, and %3$s, its parent theme.'=>'Pour améliorer la sécurité de votre site, vous pourriez envisager de retirer tous les thèmes que vous n’utilisez pas. Vous devriez conserver %1$s, le thème WordPress par défaut, %2$s, votre thème actuel, et %3$s, son thème parent.','To enhance your site’s security, you should consider removing any themes you are not using. You should keep your active theme, %1$s, and %2$s, its parent theme.'=>'Pour améliorer la sécurité de votre site, vous pourriez envisager de retirer tous les thèmes que vous n’utilisez pas. Vous devriez conserver uniquement votre thème actuel, %1$s et %2$s, son thème parent.','You should remove inactive plugins'=>'Vous devriez retirer les extensions inactives','Your site has %d installed theme, and it is up to date.'=>'Votre site a %d thème installé et il est à jour.' . "\0" . 'Votre site a %d thèmes installés et ils sont tous à jour.','Your site has %d theme waiting to be updated.'=>'Votre site à %d thème en attente de mise à jour.' . "\0" . 'Votre site à %d thèmes en attente de mise à jour.','You have themes waiting to be updated'=>'Vous avez des thèmes en attente de mise à jour','Themes add your site’s look and feel. It’s important to keep them up to date, to stay consistent with your brand and keep your site secure.'=>'Les thèmes concernent l’aspect visuel de votre site. Il est important de les tenir à jour, pour la cohérence de votre identité visuelle et pour garder votre site sécurisé.','Your themes are all up to date'=>'Vos thèmes sont à jour','Your site has %d active plugin, and it is up to date.'=>'Votre site a %d extension installée et elle est à jour.' . "\0" . 'Votre site a %d extensions installées et elles sont toutes à jour.','Your site has %d plugin waiting to be updated.'=>'Votre site a %d extension en attente de mise à jour.' . "\0" . 'Votre site a %d extensions en attente de mise à jour.','You have plugins waiting to be updated'=>'Vous avez des extensions en attente de mise à jour','Plugins extend your site’s functionality with things like contact forms, ecommerce and much more. That means they have deep access to your site, so it’s vital to keep them up to date.'=>'Les extensions étendent les fonctionnalités de votre site avec des choses comme des formulaires de contact, une boutique e-commerce et bien plus. Cela signifie qu’elles ont accès à votre site en profondeur, il est donc vital de les tenir à jour.','Your plugins are all up to date'=>'Vos extensions sont à jour','You are currently running the latest version of WordPress available, keep it up!'=>'Vous utilisez actuellement la dernière version disponible de WordPress, gardez-la à jour !','A new minor update is available for your site. Because minor updates often address security, it’s important to install them.'=>'Une mise à jour mineure est disponible pour votre site. Comme les mises à jour mineures concernent souvent la sécurité, il est important de les installer.','A new version of WordPress is available.'=>'Une nouvelle version de WordPress est disponible.','Install the latest version of WordPress'=>'Installer la dernière version de WordPress','WordPress update available (%s)'=>'Mise à jour de WordPress disponible (%s)','Check for updates manually'=>'Vérifier les mises à jour manuellement','Unable to check if any new versions of WordPress are available.'=>'Nous n’avons pas pu vérifier si de nouvelles versions de WordPress sont disponibles.','WordPress security and maintenance releases are blocked by the %s filter.'=>'Les mises à jour de sécurité et de maintenance sont bloquées par le filtre %s.','WordPress security and maintenance releases are blocked by %s.'=>'Les mises à jour de sécurité et de maintenance sont bloquées par %s.','WordPress development updates are blocked by the %s filter.'=>'Les mises à jour de développement WordPress sont bloquées par le filtre %s.','WordPress development updates are blocked by the %s constant.'=>'Les mises à jour de développement WordPress sont bloquées par la constante %s.','All of your WordPress files are writable.'=>'Tous vos fichiers WordPress sont accessibles en écriture.','Some files are not writable by WordPress:'=>'Certains fichiers ne sont pas accessibles par WordPress :','This could mean that connections are failing to WordPress.org.'=>'Cela peut signifier que les connexions à WordPress.org ne fonctionnent pas.','Couldn\'t retrieve a list of the checksums for WordPress %s.'=>'Impossible de récupérer une liste des checksums pour WordPress %s.','Your installation of WordPress does not require FTP credentials to perform updates.'=>'Votre installation de WordPress ne nécessite pas d’identifiants FTP pour effectuer les mises à jour.','(Your site is performing updates over FTP due to file ownership. Talk to your hosting company.)'=>'(Votre site effectue les mises à jour par FTP en raison de la propriété du fichier. Parlez-en à votre hébergeur.)','Your installation of WordPress prompts for FTP credentials to perform updates.'=>'Votre installation de WordPress demande des informations d’identification FTP pour effectuer les mises à jour.','No version control systems were detected.'=>'Aucun système de contrôle de version n’a été détecté.','The folder %1$s was detected as being under version control (%2$s).'=>'Le dossier %1$s a été détecté comme disposant d’un système de contrôle de version (%2$s).','The folder %1$s was detected as being under version control (%2$s), but the %3$s filter is allowing updates.'=>'Le dossier %1$s a été détecté comme disposant d’un système de contrôle de version (%2$s), mais le filtre %3$s autorise les mises à jour.','A previous automatic background update could not occur.'=>'Une précédente mise à jour automatique en arrière-plan n’a pu être effectuée.','The error code was %s.'=>'Le code d’erreur était %s.','When you\'ve been able to update using the "Update now" button on Dashboard > Updates, this error will be cleared for future update attempts.'=>'Lorsque vous aurez pu mettre à jour en utilisant le bouton « Mettre à jour maintenant » dans l’écran « Tableau de bord > Mises à jour », cette erreur ne sera plus affichée sur les futures tentatives de mise à jour.','You would have received an email because of this.'=>'Vous auriez reçu un e-mail à cause de cela.','A previous automatic background update ended with a critical failure, so updates are now disabled.'=>'Une précédente mise à jour automatique en arrière-plan s’est terminée par un échec critique, les mises à jour sont désormais désactivées.','The %s filter is enabled.'=>'Le filtre %s est activé.','A plugin has prevented updates by disabling %s.'=>'Une extension a empêché les mises à jour en désactivant %s.','The must use plugins directory'=>'Le répertoire des extensions indispensables','Theme features'=>'Fonctionnalités de thèmes','Parent theme'=>'Thème parent','Author website'=>'Site de l’auteur ou de l’autrice','(Latest version: %s)'=>'(dernière version : %s)','Version %1$s by %2$s'=>'Version %1$s par %2$s','No version or author information is available.'=>'Aucune information de version ou d’auteur/autrice n’est disponible.','Server version'=>'Version du serveur','Your %s file contains only core WordPress features.'=>'Votre fichier %s ne contient que des fonctionnalités du cœur WordPress.','Custom rules have been added to your %s file.'=>'Des règles personnalisées ont été ajoutées à votre fichier %s.','.htaccess rules'=>'Règles du .htaccess','Is the Imagick library available?'=>'La bibliothèque Imagick est-elle disponible ?','Is SUHOSIN installed?'=>'SUHOSIN est-il installé ?','cURL version'=>'Version de cURL','PHP post max size'=>'Taille maximale d’envoi de PHP','Upload max filesize'=>'Taille maximale de téléversement de fichier','Max input time'=>'Temps d’entrée max','PHP memory limit'=>'Limite de mémoire PHP','PHP time limit'=>'Limite d’exécution PHP','PHP max input variables'=>'Valeur maximale des variables PHP','Unable to determine some settings, as the %s function has been disabled.'=>'Impossible de déterminer certains réglages, car la fonction %s a été désactivée.','Server settings'=>'Réglages du serveur','PHP SAPI'=>'PHP SAPI','(Does not support 64bit values)'=>'(ne prend pas en charge les valeurs 64 bits)','(Supports 64bit values)'=>'(Supporte les valeurs 64 bits)','PHP version'=>'Version de PHP','Unable to determine what web server software is used'=>'Impossible de déterminer le serveur web utilisé','Web server'=>'Serveur web','Unable to determine server architecture'=>'Impossible de déterminer l’architecture du serveur','Server architecture'=>'Architecture serveur','Ghostscript version'=>'Version de Ghostscript','Unable to determine if Ghostscript is installed'=>'Impossible de déterminer si Ghostscript est installé','GD version'=>'Version de GD','Imagick Resource Limits'=>'Limites de ressources Imagick','ImageMagick version string'=>'Chaîne de version ImageMagick','ImageMagick version number'=>'Numéro de version ImageMagick','Not available'=>'Non disponible','Active editor'=>'Éditeur actif','Total installation size'=>'Taille totale de l’installation','Database size'=>'Taille de la base de données','WordPress directory size'=>'Taille du répertoire de WordPress','WordPress directory location'=>'Emplacement du répertoire de WordPress','Plugins directory size'=>'Taille du répertoire des extensions','Plugins directory location'=>'Emplacement du répertoire des extensions','Themes directory size'=>'Taille du répertoire des thèmes','Theme directory location'=>'Emplacement du répertoire des thèmes','Uploads directory size'=>'Taille du répertoire des téléversements','Uploads directory location'=>'Emplacement du répertoire des téléversements','Unable to reach WordPress.org at %1$s: %2$s'=>'Impossible d’atteindre WordPress.org à %1$s : %2$s','WordPress.org is reachable'=>'WordPress.org est accessible','Communication with WordPress.org'=>'Communication avec WordPress.org','Network count'=>'Nombre de réseaux','Site count'=>'Nombre de sites','User count'=>'Nombre de comptes','The themes directory'=>'Le répertoire de thèmes','The plugins directory'=>'Le répertoire d’extensions','The uploads directory'=>'Le répertoire des téléversements','The wp-content directory'=>'Le répertoire wp-content','Not writable'=>'Non accessible en écriture','Writable'=>'Accessible en écriture','The main WordPress directory'=>'Le répertoire principal de WordPress','Shows whether WordPress is able to write to the directories it needs access to.'=>'Montre si WordPress est capable ou non d’écrire dans les répertoires auxquels il a besoin d’accéder.','Filesystem Permissions'=>'Droits des fichiers système','Undefined'=>'Indéfini','WordPress Constants'=>'Constantes WordPress','Database'=>'Base de données','The options shown below relate to your server setup. If changes are required, you may need your web host’s assistance.'=>'Les options ci-dessous sont relatives à votre configuration serveur. Si des modifications sont nécessaires, vous pourriez avoir besoin de l’assistance de votre hébergeur.','Server'=>'Serveur','Media Handling'=>'Traitement des médias','Inactive Plugins'=>'Extensions inactives','Active Plugins'=>'Extensions actives','Must Use Plugins'=>'Extensions indispensables','Active Theme'=>'Thème actif','Drop-ins'=>'Extensions avancées','Directories and Sizes'=>'Répertoires et tailles','Is this a multisite?'=>'S’agit-il d’un multisite ?','Default comment status'=>'État par défaut des commentaires','Can anyone register on this site?'=>'Tout le monde peut-il s’inscrire sur ce site ?','Is this site using HTTPS?'=>'Est-ce que ce site utilise HTTPS ?','No permalink structure set'=>'Aucune structure de permaliens définie','Permalink structure'=>'Structure des permaliens','Site URL'=>'URL du site','Home URL'=>'URL de la page d’accueil','Site Health'=>'Santé du site','requestsAll (%s)'=>'Tous (%s)' . "\0" . 'Tous (%s)','Show comments cookies opt-in checkbox, allowing comment author cookies to be set'=>'Afficher la case à cocher pour accepter les cookies sur les commentaires, ce qui permet l’enregistrement de cookies pour les personnes ayant commenté','Next theme'=>'Thème suivant','Previous theme'=>'Thème précédent','If you change this, an email will be sent at your new address to confirm it. The new address will not become active until confirmed.'=>'Si vous modifiez cela, vous recevrez un e-mail de confirmation à votre nouvelle adresse. La nouvelle adresse ne sera pas active tant que vous n’aurez pas confirmé.','Theme resumed.'=>'Thème relancé.','Theme could not be resumed because it triggered a fatal error.'=>'Le thème n’a pas pu être relancé car il a déclenché une erreur fatale.','If you notice “headers already sent” messages, problems with syndication feeds or other issues, try deactivating or removing this plugin.'=>'Si vous remarquez des messages « headers already sent », des problèmes avec vos flux de syndication ou d’autres soucis, essayez de désactiver ou de supprimer cette extension.','The plugin generated %d character of unexpected output during activation.'=>'Cette extension a généré %d caractère de sortie inattendu lors de son activation.' . "\0" . 'Cette extension a généré %d caractères de sortie inattendus lors de son activation.','Sorry, you are not allowed to resume this plugin.'=>'Désolé, vous n’êtes pas autorisé à relancer cette extension.','WordPress Events and News — Upcoming events near you as well as the latest news from the official WordPress project and the WordPress Planet.'=>'Évènements et actualités WordPress – évènements à venir près de chez vous et dernières actualités officielles du projet WordPress ainsi que de l’écosystème WordPress.','You cannot update because WordPress %2$s requires MySQL version %3$s or higher. You are running version %4$s.'=>'Vous ne pouvez pas mettre à jour car WordPress %2$s nécessite MySQL version %3$s ou plus. Vous utilisez la version %4$s.','You cannot update because WordPress %2$s requires PHP version %3$s or higher. You are running version %4$s.'=>'Vous ne pouvez pas mettre à jour car WordPress %2$s nécessite PHP version %3$s ou plus. Vous utilisez la version %4$s.','Add menu items'=>'Ajouter des éléments de menu','or create a new menu. Do not forget to save your changes!'=>'ou créez un nouveau menu. N’oubliez pas d’enregistrer vos modifications !','Click the Save Menu button to save your changes.'=>'Cliquer sur le bouton « Enregistrer le menu » pour enregistrer vos modifications.','Edit your menu below, or create a new menu. Do not forget to save your changes!'=>'Modifiez votre menu ci-dessous, ou créez un nouveau menu. N’oubliez pas d’enregistrer vos modifications !','Fill in the Menu Name and click the Create Menu button to create your first menu.'=>'Remplissez le nom du menu et cliquez sur le bouton « Créer le menu » pour créer votre premier menu.','Create your first menu below.'=>'Créez votre premier menu ci-dessous.','You cannot install because WordPress %2$s requires MySQL version %3$s or higher. You are running version %4$s.'=>'Vous ne pouvez pas poursuivre l’installation car WordPress %2$s nécessite MySQL version %3$s ou plus. Vous utilisez la version %4$s.','You cannot install because WordPress %2$s requires PHP version %3$s or higher. You are running version %4$s.'=>'Vous ne pouvez pas poursuivre l’installation car WordPress %2$s nécessite PHP version %3$s ou plus. Vous utilisez la version %4$s.','Learn more about updating PHP'=>'En savoir plus sur la mise à jour de PHP','What is PHP and how does it affect my site?'=>'Qu’est-ce que PHP et comment cela affecte t-il mon site ?','PHP Update Required'=>'Mise à jour de PHP nécessaire','You can find more details and make changes on the Plugins screen.'=>'Vous pouvez trouver davantage de détails et faire des modifications sur l’écran des extensions.','One or more plugins failed to load properly.'=>'Le chargement d’une ou plusieurs extensions a échoué.','Could not resume the plugin.'=>'Impossible de relancer l’extension.','Custom PHP fatal error handler.'=>'Gestionnaire d’erreur fatale PHP personnalisée.','Custom PHP error message.'=>'Message d’erreur PHP personnalisé.','Could not remove the old translation.'=>'Impossible de retirer l’ancienne traduction.','Removing the old version of the translation…'=>'Retrait de l’ancienne version de la traduction…','Click here to update WordPress.'=>'Cliquer ici pour mettre WordPress à jour.','Error: This plugin requires a newer version of WordPress.'=>'Erreur : Cette extension nécessite une version plus récente de WordPress.','Click here to learn more about updating PHP.'=>'Cliquez ici pour en savoir plus sur la mise à jour de PHP.','Error: This plugin requires a newer version of PHP.'=>'Erreur : Cette extension nécessite une version plus récente de PHP.','Add widget: %s'=>'Ajouter le widget : %s','Add to: %s'=>'Ajouter à : %s','Track %s.'=>'Piste %s.','My Network'=>'Mon réseau','This plugin does not work with your version of PHP.'=>'Cette extension ne fonctionne pas avec votre version de PHP.','This plugin does not work with your version of WordPress.'=>'Cette extension ne fonctionne pas avec votre version de WordPress.','This plugin does not work with your versions of WordPress and PHP.'=>'Cette extension ne fonctionne pas avec vos versions de WordPress et de PHP.','https://wordpress.org/documentation/wordpress-version/version-%s/'=>'https://wordpress.org/support/wordpress-version/version-%s/','Resume'=>'Relancer','pluginResume %s'=>'Relancer %s','You can find more details and make changes on the Themes screen.'=>'Vous trouverez plus de détails et pouvez apporter des modifications sur l’écran des thèmes.','One or more themes failed to load properly.'=>'Un ou plusieurs thèmes ont échoués à se charger correctement.','Could not resume the theme.'=>'Impossible de relancer le thème.','Deleting a category does not delete the posts in that category. Instead, posts that were only assigned to the deleted category are set to the default category %s. The default category cannot be deleted.'=>'Supprimer une catégorie ne supprime pas les articles de cette catégorie. Les articles ayant été assignés uniquement à cette catégorie se voient assignés à la catégorie par défaut, « %s ». La catégorie par défaut ne peut pas être supprimée.','The block widgets require JavaScript. Please enable JavaScript in your browser settings, or install the Classic Widgets plugin.'=>'Les blocs widgets nécessite JavaScript. Veuillez activer JavaScript dans les paramètres de votre navigateur, ou essayez l’extension Classic Editor.','A post type mismatch has been detected.'=>'Une incohérence de type de publication a été détectée.','A post ID mismatch has been detected.'=>'Une incohérence d’identifiant de publication a été détectée.','Please open the classic editor to use this meta box.'=>'Veuillez ouvrir l’éditeur classique pour utiliser cette boîte méta.','Please activate the Classic Editor plugin to use this meta box.'=>'Veuillez activer l’extension Classic Editor pour utiliser cette boîte méta.','Please install the Classic Editor plugin to use this meta box.'=>'Veuillez installer l’extension Classic Editor pour utiliser cette boîte méta.','This meta box is not compatible with the block editor.'=>'Cette boîte méta n’est pas compatible avec le nouvel éditeur.','To distribute copies of your modified versions to others.'=>'la liberté d’améliorer le programme et de distribuer ces améliorations au public, pour en faire profiter toute la communauté.','The 4th Freedom'=>'La quatrième liberté','To redistribute.'=>'La liberté de redistribution ;','The 3rd Freedom'=>'La troisième liberté','To study how the program works and change it to make it do what you wish.'=>'La liberté d’étudier le fonctionnement du programme et de l’adapter à ses besoins ;','The 2nd Freedom'=>'La deuxième liberté','To run the program for any purpose.'=>'La liberté d’exécuter le programme, pour tous les usages ;','The 1st Freedom'=>'La première liberté','Created'=>'Créé','Welcome to WordPress. This is your first post. Edit or delete it, then start writing!'=>'Bienvenue sur WordPress. Ceci est votre premier article. Modifiez-le ou supprimez-le, puis commencez à écrire !','As a new WordPress user, you should go to your dashboard to delete this page and create new pages for your content. Have fun!'=>'En tant que nouvel utilisateur ou utilisatrice de WordPress, vous devriez vous rendre sur votre tableau de bord pour supprimer cette page et créer de nouvelles pages pour votre contenu. Amusez-vous bien !','The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.'=>'La société 123 Machin Truc a été créée en 1971, et n’a cessé de proposer au public des machins-trucs de qualité depuis lors. Située à Saint-Remy-en-Bouzemont-Saint-Genest-et-Isson, 123 Machin Truc emploie 2 000 personnes, et fabrique toutes sortes de bidules supers pour la communauté bouzemontoise.','...or something like this:'=>'…ou quelque chose comme cela :','Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like piña coladas. (And gettin\' caught in the rain.)'=>'Bonjour ! Je suis un mécanicien qui aspire à devenir acteur, et voici mon site. J’habite à Bordeaux, j’ai un super chien baptisé Russell, et j’aime la vodka (ainsi qu’être surpris par la pluie soudaine lors de longues balades sur la plage au coucher du soleil).','This is an example page. It\'s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:'=>'Ceci est une page d’exemple. C’est différent d’un article de blog parce qu’elle restera au même endroit et apparaîtra dans la navigation de votre site (dans la plupart des thèmes). La plupart des gens commencent par une page « À propos » qui les présente aux personnes visitant le site. Cela pourrait ressembler à quelque chose comme cela :','Export “%s” as JSON'=>'Exporter « %s » en JSON','1 pattern not updated, somebody is editing it.'=>'Une composition n’a pas été mise à jour, quelqu’un est train de la modifier.','%s pattern restored from the Trash.'=>'%s composition restaurée depuis la corbeille.' . "\0" . '%s compositions restaurées depuis la corbeille.','Error: "Table Prefix" must not be empty.'=>'Erreur : le préfixe de table ne doit pas être vide.','This meta box, from the %s plugin, is not compatible with the block editor.'=>'Cette boîte méta de l’extension %s n’est pas compatible avec le nouvel éditeur.','personal data group labelAbout'=>'À propos','page titleAbout'=>'À propos','Edit or preview your Privacy Policy page content.'=>'Modifier ou prévisualiser le contenu de votre page de politique de confidentialité.','Privacy Policy Page'=>'Page de politique de confidentialité','%s (Draft)'=>'%s (Brouillon)','Privacy Policy page updated successfully.'=>'La page de politique de confidentialité a bien été mise à jour.','The suggested privacy policy content should be added by using the %s (or later) action. Please see the inline documentation.'=>'Le contenu suggéré de politique de confidentialité devrait être ajouté en utilisant l’action %s (ou ultérieurement). Veuillez vous référer à la documentation en ligne.','The suggested privacy policy content should be added only in wp-admin by using the %s (or later) action.'=>'Le contenu suggéré de politique de confidentialité devrait être ajouté uniquement dans wp-admin en utilisant l’action %s (ou ultérieurement).','The suggested privacy policy text has changed. Please review the guide and update your privacy policy.'=>'Le texte suggéré pour votre politique de confidentialité a été modifié. Veuillez relire le guide et mettre à jour votre politique de confidentialité.','There are no pages.'=>'Il n’y a aucune page.','Need help putting together your new Privacy Policy page? Check out our privacy policy guide%3$s for recommendations on what content to include, along with policies suggested by your plugins and theme.'=>'Vous avez besoin d’aide pour créer votre nouvelle page de politique de confidentialité ? Consultez notre guide%3$s pour obtenir des recommandations sur les contenus à inclure. Consultez aussi les suggestions faites par les personnes qui éditent vos extensions et votre thème.','Privacy Policy Guide'=>'Guide de la politique de confidentialité','Visitor comments may be checked through an automated spam detection service.'=>'Les commentaires des visiteurs peuvent être vérifiés à l’aide d’un service automatisé de détection des commentaires indésirables.','In this subsection you should note what analytics package you use, how users can opt out of analytics tracking, and a link to your analytics provider’s privacy policy, if any.'=>'Dans cette sous-section, indiquez les outils de statistiques que vous utilisez pour vos mesures d’audience, et le cas échéant faites un lien vers la politique de confidentialité de votre fournisseur.','In this subsection you should note what information may be disclosed by users who can upload media files. All uploaded files are usually publicly accessible.'=>'Dans cette sous-section, indiquez les informations qui pourraient être dévoilées par les comptes pouvant téléverser des fichiers dans votre médiathèque. Les fichiers téléversés sont généralement accessibles publiquement.','In this subsection you should note what information is captured through comments. We have noted the data which WordPress collects by default.'=>'Dans cette sous-section, indiquez les informations qui sont récupérées via les commentaires. Nous avons indiqué les données collectées nativement par WordPress.','In this section you should note what personal data you collect from users and site visitors. This may include personal data, such as name, email address, personal account preferences; transactional data, such as purchase information; and technical data, such as information about cookies.'=>'Dans cette section, indiquez les données personnelles que vous collectez sur les utilisateurs/utilisatrices et personnes visitant votre site. Cela pourrait comprendre les données personnelles comme le nom, l’adresse e-mail, les préférences de compte personnel ; les données transactionnelles comme les informations de commande ; et les données techniques comme les informations sur les cookies.','Suggested text:'=>'Texte suggéré :','The template contains a suggestion of sections you most likely will need. Under each section heading, you will find a short summary of what information you should provide, which will help you to get started. Some sections include suggested policy content, others will have to be completed with information from your theme and plugins.'=>'Le modèle propose des suggestions de sections dont vous pourriez avoir besoin. Sous chaque titre de section, vous trouverez un bref résumé des informations que vous devriez fournir, ce qui vous aidera à rédiger votre page. Certaines sections comprennent des contenus suggérés, d’autres devront être complétées par des informations provenant de votre thème et de vos extensions.','Updated %s.'=>'Mise à jour le %s.','You deactivated this plugin on %s and may no longer need this policy.'=>'Vous avez désactivé l’extension %s et n’avez donc normalement plus besoin de ces informations.','Removed %s.'=>'%s supprimé.','Introduction'=>'Introduction','Need help putting together your new Privacy Policy page? Check out our guide for recommendations on what content to include, along with policies suggested by your plugins and theme.'=>'Vous avez besoin d’aide pour assembler votre nouvelle page de politique de confidentialité ? Consultez notre guide pour des recommandations sur les contenus à proposer, ainsi que sur les politiques de confidentialité de votre thème et de vos extensions.','Erasing data...'=>'Effacement des données…','Add Data Erasure Request'=>'Ajout d’une demande d’effacement de données','Send export link'=>'Envoyer le lien d’exportation','If you are a member of a regulated industry, or if you are subject to additional privacy laws, you may be required to disclose that information here.'=>'Si vous êtes membre d’une industrie régulée, ou si vous êtes sujet à des réglementations spécifiques, il est probablement nécessaire d’afficher ces informations ici.','Industry regulatory disclosure requirements'=>'Affichage des informations liées aux secteurs soumis à des régulations spécifiques','If your website provides a service which includes automated decision making - for example, allowing customers to apply for credit, or aggregating their data into an advertising profile - you must note that this is taking place, and include information about how that information is used, what decisions are made with that aggregated data, and what rights users have over decisions made without human intervention.'=>'Si votre site fournit un service qui inclut la prise de décision automatisée – par exemple, autoriser vos clients à souscrire à un crédit ou agréger leurs données dans un profil publicitaire – vous devez expliciter ce qui est mis en place et inclure des informations sur la façon dont les informations sont utilisées, quelles décisions sont prises avec ces données agrégées et quels sont les droits dont disposent les internautes sur les décisions prises sans intervention humaine.','What automated decision making and/or profiling we do with user data'=>'Opérations de marketing automatisé et/ou de profilage réalisées à l’aide des données personnelles','If your website receives data about users from third parties, including advertisers, this information must be included within the section of your privacy policy dealing with third party data.'=>'Si votre site reçoit des données personnelles depuis des sources tierces – ce qui inclut les sources publicitaires – ces informations doivent être incluses dans la section sur les données issues de sources tierces de votre déclaration de protection de la vie privée.','What third parties we receive data from'=>'Les services tiers qui nous transmettent des données','In this section you should explain what procedures you have in place to deal with data breaches, either potential or real, such as internal reporting systems, contact mechanisms, or bug bounties.'=>'Dans cette section, indiquez les procédures que vous avez mises en place en cas de fuites de données, soit potentielles, soit réelles, comme les systèmes internes de notification, les mécanismes de contact ou les récompenses éventuellement prévues pour les « chasseurs de bogues ».','What data breach procedures we have in place'=>'Procédures mises en œuvre en cas de fuite de données','In this section you should explain what measures you have taken to protect your users’ data. This could include technical measures such as encryption; security measures such as two factor authentication; and measures such as staff training in data protection. If you have carried out a Privacy Impact Assessment, you can mention it here too.'=>'Dans cette section, indiquez les mesures que vous avez prises pour protéger les données de vos comptes. Cela peut inclure des mesures techniques comme le chiffrement, des mesures de sécurité comme l’authentification à deux facteurs ou des mesures humaines comme la mise en place d’une équipe formée à la protection des données. Si vous avez mené une analyse d’impact liée à la fuite de données privées, vous pouvez également l’indiquer ici.','How we protect your data'=>'Comment nous protégeons vos données','If you use your site for commercial purposes and you engage in more complex collection or processing of personal data, you should note the following information in your privacy policy in addition to the information we have already discussed.'=>'Si vous utilisez votre site dans un but commercial et que vous vous engagez dans la collecte et le traitement de données personnelles plus complexes, vous devriez indiquer les informations suivantes dans votre déclaration de protection de la vie privée, en plus des informations détaillées précédemment.','Additional information'=>'Informations supplémentaires','In this section you should provide a contact method for privacy-specific concerns. If you are required to have a Data Protection Officer, list their name and full contact details here as well.'=>'Dans cette section, indiquez la méthode de contact disponible pour les demandes concernant la vie privée. Si vous devez avoir un Délégué à la Protection des Données, indiquez également son nom et ses coordonnées détaillées.','European data protection law requires data about European residents which is transferred outside the European Union to be safeguarded to the same standards as if the data was in Europe. So in addition to listing where data goes, you should describe how you ensure that these standards are met either by yourself or by your third party providers, whether that is through an agreement such as Privacy Shield, model clauses in your contracts, or binding corporate rules.'=>'La loi européenne de protection des données nécessite que les données de résidents européens transférées en dehors de l’Union Européenne soient protégées dans les mêmes conditions que si elles étaient en Europe. En plus de lister les endroits où vont les données, vous devriez décrire comment vous vous assurez, par vous ou par vos sous-traitants, de la mise en conformité avec ces standards, soit par un accord comme le Privacy Shield (Bouclier de Protection des Données UE/États-Unis), des clauses dans vos contrats ou des règles d’entreprise contraignantes.','In this section you should list all transfers of your site data outside the European Union and describe the means by which that data is safeguarded to European data protection standards. This could include your web hosting, cloud storage, or other third party services.'=>'Listez dans cette section tous les transferts de données de votre site vers l’extérieur de l’Union Européenne et décrire en quoi ces données sont protégées au regard des standards européens de protection des données privées. Cela peut inclure votre hébergeur web, le stockage en « cloud » ou d’autres services tiers.','If you have an account on this site, or have left comments, you can request to receive an exported file of the personal data we hold about you, including any data you have provided to us. You can also request that we erase any personal data we hold about you. This does not include any data we are obliged to keep for administrative, legal, or security purposes.'=>'Si vous avez un compte ou si vous avez laissé des commentaires sur le site, vous pouvez demander à recevoir un fichier contenant toutes les données personnelles que nous possédons à votre sujet, incluant celles que vous nous avez fournies. Vous pouvez également demander la suppression des données personnelles vous concernant. Cela ne prend pas en compte les données stockées à des fins administratives, légales ou pour des raisons de sécurité.','In this section you should explain what rights your users have over their data and how they can invoke those rights.'=>'Dans cette section, indiquez les droits des comptes concernant leurs données et comment ils peuvent exercer ces droits.','What rights you have over your data'=>'Les droits que vous avez sur vos données','For users that register on our website (if any), we also store the personal information they provide in their user profile. All users can see, edit, or delete their personal information at any time (except they cannot change their username). Website administrators can also see and edit that information.'=>'Pour les comptes qui s’inscrivent sur notre site (le cas échéant), nous stockons également les données personnelles indiquées dans leur profil. Tous les comptes peuvent voir, modifier ou supprimer leurs informations personnelles à tout moment (à l’exception de leur identifiant). Les gestionnaires du site peuvent aussi voir et modifier ces informations.','If you leave a comment, the comment and its metadata are retained indefinitely. This is so we can recognize and approve any follow-up comments automatically instead of holding them in a moderation queue.'=>'Si vous laissez un commentaire, le commentaire et ses métadonnées sont conservés indéfiniment. Cela permet de reconnaître et approuver automatiquement les commentaires suivants au lieu de les laisser dans la file de modération.','In this section you should explain how long you retain personal data collected or processed by the website. While it is your responsibility to come up with the schedule of how long you keep each dataset for and why you keep it, that information does need to be listed here. For example, you may want to say that you keep contact form entries for six months, analytics records for a year, and customer purchase records for ten years.'=>'Dans cette section, vous devriez indiquer la durée de conservation des données personnelles collectées et traitées par votre site web. Même s’il est de votre responsabilité de fournir un planning de conservation de chaque jeu de données dont vous disposez, cette information n’a pas besoin d’être affichée ici. Par exemple, vous pourriez indiquer que vous conservez les données reçues via vos formulaires de contact pendant six mois, les statistiques de visites pendant un an et les enregistrements liés aux ventes en ligne pendant dix ans.','How long we retain your data'=>'Durées de stockage de vos données','By default WordPress does not share any personal data with anyone.'=>'Par défaut, WordPress ne partage vos informations personnelles avec personne.','In this section you should name and list all third party providers with whom you share site data, including partners, cloud-based services, payment processors, and third party service providers, and note what data you share with them and why. Link to their own privacy policies if possible.'=>'Dans cette section, listez et nommez tous les fournisseurs tiers avec qui vous partagez les données de votre site, en incluant les partenaires, les services en « cloud », les passerelles de paiement, et tous les autres services tiers. Indiquez les données que vous partagez et pourquoi vous le faites. Mettez un lien vers leur politique de confidentialité si possible.','Who we share your data with'=>'Utilisation et transmission de vos données personnelles','By default WordPress does not collect any analytics data. However, many web hosting accounts collect some anonymous analytics data. You may also have installed a WordPress plugin that provides analytics services. In that case, add information from that plugin here.'=>'Par défaut, WordPress ne collecte aucune statistique des visites. Cependant de nombreux hébergeurs collectent des données statistiques anonymes. Vous pouvez également avoir installé une extension WordPress qui fourni des services de statistiques. Dans ce cas, indiquez les informations sur cette extension ici.','Analytics'=>'Statistiques et mesures d’audience','These websites may collect data about you, use cookies, embed additional third-party tracking, and monitor your interaction with that embedded content, including tracking your interaction with the embedded content if you have an account and are logged in to that website.'=>'Ces sites web pourraient collecter des données sur vous, utiliser des cookies, embarquer des outils de suivis tiers, suivre vos interactions avec ces contenus embarqués si vous disposez d’un compte connecté sur leur site web.','Articles on this site may include embedded content (e.g. videos, images, articles, etc.). Embedded content from other websites behaves in the exact same way as if the visitor has visited the other website.'=>'Les articles de ce site peuvent inclure des contenus intégrés (par exemple des vidéos, images, articles…). Le contenu intégré depuis d’autres sites se comporte de la même manière que si le visiteur se rendait sur cet autre site.','Embedded content from other websites'=>'Contenu embarqué depuis d’autres sites','If you edit or publish an article, an additional cookie will be saved in your browser. This cookie includes no personal data and simply indicates the post ID of the article you just edited. It expires after 1 day.'=>'En modifiant ou en publiant une publication, un cookie supplémentaire sera enregistré dans votre navigateur. Ce cookie ne comprend aucune donnée personnelle. Il indique simplement l’ID de la publication que vous venez de modifier. Il expire au bout d’un jour.','When you log in, we will also set up several cookies to save your login information and your screen display choices. Login cookies last for two days, and screen options cookies last for a year. If you select "Remember Me", your login will persist for two weeks. If you log out of your account, the login cookies will be removed.'=>'Lorsque vous vous connecterez, nous mettrons en place un certain nombre de cookies pour enregistrer vos informations de connexion et vos préférences d’écran. La durée de vie d’un cookie de connexion est de deux jours, celle d’un cookie d’option d’écran est d’un an. Si vous cochez « Se souvenir de moi », votre cookie de connexion sera conservé pendant deux semaines. Si vous vous déconnectez de votre compte, le cookie de connexion sera effacé.','If you visit our login page, we will set a temporary cookie to determine if your browser accepts cookies. This cookie contains no personal data and is discarded when you close your browser.'=>'Si vous vous rendez sur la page de connexion, un cookie temporaire sera créé afin de déterminer si votre navigateur accepte les cookies. Il ne contient pas de données personnelles et sera supprimé automatiquement à la fermeture de votre navigateur.','If you leave a comment on our site you may opt-in to saving your name, email address and website in cookies. These are for your convenience so that you do not have to fill in your details again when you leave another comment. These cookies will last for one year.'=>'Si vous déposez un commentaire sur notre site, il vous sera proposé d’enregistrer votre nom, adresse e-mail et site dans des cookies. C’est uniquement pour votre confort afin de ne pas avoir à saisir ces informations si vous déposez un autre commentaire plus tard. Ces cookies expirent au bout d’un an.','In this subsection you should list the cookies your website uses, including those set by your plugins, social media, and analytics. We have provided the cookies which WordPress installs by default.'=>'Dans cette sous-section, vous devriez lister les cookies utilisés par votre site, incluant ceux enregistrés par vos extensions, les réseaux sociaux et vos statistiques de visites. Nous avons indiqué les cookies que WordPress installe par défaut.','Cookies'=>'Cookies','An anonymized string created from your email address (also called a hash) may be provided to the Gravatar service to see if you are using it. The Gravatar service privacy policy is available here: https://automattic.com/privacy/. After approval of your comment, your profile picture is visible to the public in the context of your comment.'=>'Une chaîne anonymisée créée à partir de votre adresse e-mail (également appelée hash) peut être envoyée au service Gravatar pour vérifier si vous utilisez ce dernier. Les clauses de confidentialité du service Gravatar sont disponibles ici : https://automattic.com/privacy/. Après validation de votre commentaire, votre photo de profil sera visible publiquement à coté de votre commentaire.','When visitors leave comments on the site we collect the data shown in the comments form, and also the visitor’s IP address and browser user agent string to help spam detection.'=>'Quand vous laissez un commentaire sur notre site, les données inscrites dans le formulaire de commentaire, ainsi que votre adresse IP et l’agent utilisateur de votre navigateur sont collectés pour nous aider à la détection des commentaires indésirables.','By default, WordPress does not include a contact form. If you use a contact form plugin, use this subsection to note what personal data is captured when someone submits a contact form, and how long you keep it. For example, you may note that you keep contact form submissions for a certain period for customer service purposes, but you do not use the information submitted through them for marketing purposes.'=>'Par défaut, WordPress n’inclut pas de formulaire de contact. Si vous utilisez une extension de formulaire de contact, utilisez cette sous-section pour indiquer quelles données personnelles sont enregistrées lors de la soumission du formulaire, et leur durée de conservation. Par exemple, vous pourriez indiquer que vous conservez les soumissions d’un formulaire de contact pendant une période donnée pour les questions liées au service client, mais que vous ne les utiliserez pas à des fins commerciales.','Contact forms'=>'Formulaires de contact','If you upload images to the website, you should avoid uploading images with embedded location data (EXIF GPS) included. Visitors to the website can download and extract any location data from images on the website.'=>'Si vous téléversez des images sur le site, nous vous conseillons d’éviter de téléverser des images contenant des données EXIF de coordonnées GPS. Les personnes visitant votre site peuvent télécharger et extraire des données de localisation depuis ces images.','By default WordPress does not collect any personal data about visitors, and only collects the data shown on the User Profile screen from registered users. However some of your plugins may collect personal data. You should add the relevant information below.'=>'Par défaut, WordPress ne collecte aucune donnée personnelle sur les visiteurs, et ne collecte que les données présentes dans l’écran « Votre Profil » des comptes inscrits. Cependant certaines de vos extensions peuvent collecter des données personnelles. Dans ce cas, indiquez les informations adéquates ci-dessous.','Personal data is not just created by a user’s interactions with your site. Personal data is also generated from technical processes such as contact forms, comments, cookies, analytics, and third party embeds.'=>'Les données personnelles ne sont pas seulement créées par l’interaction d’une personne avec votre site. Elles sont générées par un processus technique comme un formulaire de contact, les commentaires, les cookies ou l’intégration de services tiers.','In addition to listing what personal data you collect, you need to note why you collect it. These explanations must note either the legal basis for your data collection and retention or the active consent the user has given.'=>'En plus de lister les données personnelles que vous collectez, vous devez indiquer pourquoi vous le faites. Ces explications doivent contenir soit les bases légales de la collecte et la conservation de données, soit le consentement actif donné par l’utilisateur ou l’utilisatrice.','You should also note any collection and retention of sensitive personal data, such as data concerning health.'=>'Vous devriez également inscrire toute collecte ou conservation de données personnelles sensibles comme des données médicales.','What personal data we collect and why we collect it'=>'Utilisation des données personnelles collectées','Our website address is: %s.'=>'L’adresse de notre site est : %s.','The amount of information you may be required to show will vary depending on your local or national business regulations. You may, for example, be required to display a physical address, a registered address, or your company registration number.'=>'La quantité d’informations que vous devez afficher dépend de la réglementation locale ou nationale à laquelle vous êtes soumis. Vous pourriez par exemple devoir afficher une adresse physique, une adresse publique, ou le numéro d’enregistrement de votre entreprise.','In this section you should note your site URL, as well as the name of the company, organization, or individual behind it, and some accurate contact information.'=>'Dans cette section, indiquez l’URL de votre site, votre nom ou celui de votre entreprise ou organisation ainsi que vos informations de contact.','Who we are'=>'Qui sommes-nous ?','It is your responsibility to write a comprehensive privacy policy, to make sure it reflects all national and international legal requirements on privacy, and to keep your policy current and accurate.'=>'Il est de votre responsabilité de rédiger une politique de confidentialité compréhensible, de vous assurer qu’elle reflète les exigences nationales et internationales sur la vie privée et de maintenir cette politique à jour et exacte.','Please edit your privacy policy content, making sure to delete the summaries, and adding any information from your theme and plugins. Once you publish your policy page, remember to add it to your navigation menu.'=>'Veuillez modifier le contenu de votre politique de confidentialité. Assurez-vous de supprimer les exemples de textes et d’ajouter les différentes informations à propos de vos thèmes et extensions. Une fois votre page publiée, pensez à l’ajouter à votre menu de navigation ou à votre pied de page.','This text template will help you to create your website’s privacy policy.'=>'Ce modèle de texte est proposé pour vous aider à créer la politique de confidentialité de votre site.','As a website owner, you may need to follow national or international privacy laws. For example, you may need to create and display a privacy policy.'=>'En tant que propriétaire du site, vous pourriez avoir besoin de suivre des réglementations nationales ou internationales en matière de confidentialité. Par exemple, vous pouvez avoir besoin de créer et d’afficher une politique de confidentialité.','Force erasure has failed.'=>'L’effacement forcé a échoué.','Email could not be sent.'=>'L’e-mail n’a pas pu être envoyé.','date/timeOn'=>'Le','website URLAt URL'=>'À l’URL','website nameFor site'=>'Pour le site','email addressReport generated for'=>'Rapport généré pour','Exporter array at index %s does not include a friendly name.'=>'Le tableau d’exportation ne contient aucun « friendly name » à l’index %s.','Sorry, you are not allowed to erase personal data on this site.'=>'Désolé, vous n’avez pas l’autorisation d’effacer les données personnelles sur ce site.','Sorry, you are not allowed to export personal data on this site.'=>'Désolé, vous n’avez pas l’autorisation d’exporter les données personnelles sur ce site.','Eraser index is out of range.'=>'L’index d’effacement est hors de portée.','Missing eraser index.'=>'Index d’effacement manquant.','Expected done (boolean) in response array from exporter: %s.'=>'Résultat attendu (booléen) dans le tableau de réponse de l’outil d’exportation : %s.','Expected data array in response array from exporter: %s.'=>'Donnée tabulaire attendue dans le tableau de réponse de l’outil d’exportation : %s.','Expected data in response array from exporter: %s.'=>'Donnée attendue dans le tableau de réponse de l’outil d’exportation : %s.','Expected response as an array from exporter: %s.'=>'Réponse attendue de l’outil d’exportation en tant que tableau : %s.','Exporter callback is not a valid callback: %s.'=>'Le retour de l’outil d’exportation n’est pas un rappel valide : %s.','Exporter does not include a callback: %s.'=>'L’outil d’exportation n’inclue aucun rappel : %s.','Expected an array describing the exporter at index %s.'=>'Réponse attendue sous forme de tableau décrivant l’outil d’exportation à l’index %s.','Exporter index is out of range.'=>'L’index d’exportation est hors limite.','Exporter index cannot be negative.'=>'L’index d’exportation ne peut pas être un nombre inférieur à zéro.','An exporter has improperly used the registration filter.'=>'Un outil d’exportation a utilisé le filtre d’inscription de façon erronée.','Missing page index.'=>'Index de page manquant.','Missing exporter index.'=>'Index d’exportation manquant.','Invalid request type.'=>'Type de requête non valide.','Use This Page'=>'Utiliser cette page','Select a Privacy Policy page'=>'Sélectionner une page de politique de confidentialité','Change your Privacy Policy page'=>'Modifier la page de politique de confidentialité','Edit or view your Privacy Policy page content.'=>'Modifiez ou visualisez le contenu de votre page de politique de confidentialité.','You should also review your privacy policy from time to time, especially after installing or updating any themes or plugins. There may be changes or new suggested information for you to consider adding to your policy.'=>'Vous devriez aussi relire votre politique de confidentialité régulièrement, spécialement après l’installation ou la mise à jour de thèmes ou d’extensions. Il se peut que des changements ou de nouvelles informations vous fassent envisager de les ajouter à votre politique.','However, it is your responsibility to use those resources correctly, to provide the information that your privacy policy requires, and to keep that information current and accurate.'=>'Cependant, il est de votre responsabilité d’utiliser ces ressources correctement, afin de fournir les informations que votre politique de confidentialité nécessite, de tenir à jour ces informations et de garantir leur pertinence.','The new page will include help and suggestions for your privacy policy.'=>'La nouvelle page contiendra de l’aide et des suggestions pour votre politique de confidentialité.','If you already have a Privacy Policy page, please select it below. If not, please create one.'=>'Si vous disposez déjà d’une page de politique de confidentialité, veuillez la sélectionner ci-dessous. Sinon, veuillez en créer une.','The currently selected Privacy Policy page is in the Trash. Please create or select a new Privacy Policy page or restore the current page.'=>'La page de politique de confidentialité actuellement sélectionnée est dans la corbeille. Veuillez créer ou sélectionner une nouvelle page de politique de confidentialité ou restaurer la page actuelle.','The currently selected Privacy Policy page does not exist. Please create or select a new page.'=>'La page de politique de confidentialité actuellement sélectionnée n’existe pas. Veuillez créer ou sélectionner une nouvelle page.','Unable to create a Privacy Policy page.'=>'Impossible de créer une page de politique de confidentialité.','privacy-policy'=>'politique-de-confidentialite','Privacy Policy page setting updated successfully. Remember to update your menus!'=>'La page de politique de confidentialité a bien été mise à jour. Pensez à mettre à jour vos menus !','Copy suggested policy text from %s.'=>'Copier la suggestion de politique de confidentialité depuis %s.','Howdy, +Toute modification des directives situées entre ces marqueurs sera surchargée.','All automatic updates are disabled.'=>'Toutes les mises à jour automatiques sont désactivées.','Database collation'=>'Classement de base de données','Database charset'=>'Jeu de caractères de la base de données','Inactive Themes'=>'Thèmes inactifs','Parent Theme'=>'Thème parent','Drop-ins are single files, found in the %s directory, that replace or enhance WordPress features in ways that are not possible for traditional plugins.'=>'Les extensions avancées sont des fichiers uniques, trouvés dans le répertoire %s, qui remplacent ou améliorent les fonctionnalités de WordPress d’une manière non accessible aux extensions traditionnelles.','personal data group descriptionOverview of export report.'=>'Vue globale du rapport sur les exportations.','Documentation on Writing Settings'=>'Documentation sur les réglages d’écriture','Documentation on Tags'=>'Documentation sur les étiquettes','Documentation on Categories'=>'Documentation sur les catégories','Your theme determines how content is displayed in browsers. Learn more about feeds.'=>'Votre thème détermine comment le contenu est affiché dans les navigateurs. En savoir plus sur les flux.','For each post in a feed, include'=>'Dans chaque publication du flux, inclure','Warning: these pages should not be the same as your Privacy Policy page!'=>'Avertissement : ces pages ne doivent pas être les mêmes que votre page de politique de confidentialité !','Documentation on Reading Settings'=>'Documentation sur les réglages de lecture','[%s] Delete My Site'=>'[%s] Supprimer mon site','Allow people to submit comments on new posts'=>'Autoriser les commentaires sur les nouvelles publications','Default post settings'=>'Réglages de publication par défaut','You can change your profile picture on Gravatar.'=>'Vous pouvez changer votre image de profil sur Gravatar.','Plugin resumed.'=>'Extension reprise.','Selected plugins deactivated.'=>'Extensions sélectionnées désactivées.','Plugin deactivated.'=>'Extension désactivée.','Selected plugins activated.'=>'Extensions sélectionnées activées.','Plugin activated.'=>'Extension activée.','The selected plugins have been deleted.'=>'Les extensions sélectionnées ont été supprimées.','The selected plugin has been deleted.'=>'L’extension sélectionnée a été supprimée.','The plugin %1$s has been deactivated due to an error: %2$s'=>'L’extension %1$s a été désactivée en raison d’une erreur : %2$s','If you need to tweak more than your theme’s CSS, you might want to try making a child theme.'=>'Si vous avez besoin d’ajuster plus que le CSS de votre thème, vous voudrez peut-être essayer de faire un thème enfant.','You appear to be making direct edits to your theme in the WordPress dashboard. It is not recommended! Editing your theme directly could break your site and your changes may be lost in future updates.'=>'Vous semblez vouloir effectuer des modifications directes pour votre thème dans le tableau de bord WordPress. Ce n’est pas recommandé ! Modifier votre thème directement pourrait casser votre site et vos modifications peuvent être perdues avec les futures mises à jour.','draft_length10'=>'10','File does not exist! Please double check the name and try again.'=>'Le fichier n’existe pas ! Veuillez vérifier le nom et réessayer.','%1$s needs to be a %2$s object.'=>'%1$s doit être un objet %2$s.','You are in recovery mode. This means there may be an error with a theme or plugin. To exit recovery mode, log out or use the Exit button. Exit Recovery Mode'=>'Vous êtes en mode de récupération. Cela signifie qu’il pourrait y avoir une erreur avec un thème ou une extension. Pour sortir du mode de récupération, déconnectez vous ou utilisez le bouton Sortir. Exit Recovery Mode','Site HealthInfo'=>'Informations','Site HealthStatus'=>'État','Themes directory location'=>'Emplacement du répertoire de thèmes','comment statusClosed'=>'Fermé','%s critical issue'=>'%s problème critique' . "\0" . '%s problèmes critiques','https://wordpress.org/documentation/article/updating-wordpress/'=>'https://fr.wordpress.org/support/article/updating-wordpress/','Get help resolving this issue.'=>'Obtenez de l’aide pour résoudre ce problème.','Learn more about what WordPress requires to run.'=>'En savoir plus sur les pré-requis de fonctionnement de WordPress.','https://wordpress.org/about/requirements/'=>'https://fr.wordpress.org/about/requirements/','The SQL server is a required piece of software for the database WordPress uses to store all your site’s content and settings.'=>'Le serveur SQL est un élément obligatoire de l’architecture utilisée par WordPress pour stocker les contenus et réglages de votre site.','PHP modules perform most of the tasks on the server that make your site run. Any changes to these must be made by your server administrator.'=>'Les modules PHP réalisent la plupart des tâches sur le serveur qui fait fonctionner votre site. Toute modification les concernant doit être réalisée par la personne chargée de l’administration de votre serveur.','Manage your themes'=>'Gérez vos thèmes','Manage inactive plugins'=>'Gérer les extensions inactives','Update your plugins'=>'Mettez à jour vos extensions','Manage your plugins'=>'Gérez vos extensions','View Privacy Policy Guide.'=>'Voir le guide de politique de confidentialité.','User Language'=>'Langue du compte','The value, %1$s, has either been enabled by %2$s or added to your configuration file. This will make errors display on the front end of your site.'=>'La valeur, %1$s, a été activée par %2$s ou ajoutée à votre fichier de configuration. Cela fera apparaître les erreurs sur l’interface publique de votre site.','[%s] Background Update Finished'=>'[%s] Mise à jour en arrière-plan terminée','[%s] Background Update Failed'=>'[%s] Mise à jour en arrière-plan échouée','Plugin could not be resumed because it triggered a fatal error.'=>'L’extension n’a pas pu être relancée car elle a déclenché une erreur fatale.','You should remove inactive themes'=>'Vous devriez retirer les thèmes inactifs','Your site has 1 installed theme, and it is up to date.'=>'Votre site a un thème installé, et il est à jour.','Your site has 1 active plugin, and it is up to date.'=>'Votre site a une extension active, et elle est à jour.','Passed tests'=>'Tests passés avec succès','Sorry, you are not allowed to access site health information.'=>'Désolé, vous n’avez pas l’autorisation d’accéder aux informations de santé du site.','Copy site info to clipboard'=>'Copier les informations du site dans le presse-papier','If you want to export a handy list of all the information on this page, you can use the button below to copy it to the clipboard. You can then paste it in a text file and save it to your device, or paste it in an email exchange with a support engineer or theme/plugin developer for example.'=>'Si vous souhaitez exporter une liste de toutes les informations contenues dans cette page, vous pouvez utiliser le bouton ci-dessous pour les copier dans votre presse-papier. Vous pourrez ensuite les coller dans un fichier texte pour les enregistrer sur votre ordinateur, dans un e-mail d’échange avec un support technique, ou encore dans une discussion avec une développeuse ou un développeur de thème/extension.','The Site Health check requires JavaScript.'=>'La vérification de santé du site nécessite JavaScript.','Site Health Info'=>'Informations de santé du site','This update does not work with your version of PHP.'=>'Cette mise à jour ne fonctionne pas avec votre version de PHP.','All formats'=>'Tous les formats','Filter by post format'=>'Filtrer par format de publication','Go to the Plugins screen'=>'Aller à l’écran des extensions','The authenticity of %s could not be verified.'=>'L’authenticité de %s ne peut pas être vérifiée.','The authenticity of %s could not be verified as no signature was found.'=>'L’authenticité de %s n’a pas pu être vérifiée car aucune signature n’a été trouvée.','The authenticity of %s could not be verified as signature verification is unavailable on this system.'=>'L’authenticité de %s ne peut pas être vérifiée car la vérification des signatures est indisponible sur ce système.','Eraser callback is not valid: %s.'=>'Le retour de l’outil de suppression n’est pas valide : %s.','Eraser does not include a callback: %s.'=>'L’outil de suppression n’inclue aucun retour : %s.','Sorry, you are not allowed to perform this action.'=>'Désolé, vous n’avez pas l’autorisation d’effectuer cette action.','HTTP requests have been blocked by the %1$s constant, with some allowed hosts: %2$s.'=>'Les requêtes HTTP ont été bloquées par la constante %1$s, avec certains hôtes autorisés : %2$s.','HTTP requests have been blocked by the %s constant, with no allowed hosts.'=>'Les requêtes HTTP ont été bloquées par la constante %s, avec aucun hôte autorisé.','You are using a %1$s drop-in which might mean that a %2$s database is not being used.'=>'Vous utilisez une extension avancée %1$s, ce qui pourrait signifier que la base de données %2$s n’est pas utilisée.','https://make.wordpress.org/hosting/handbook/handbook/server-environment/#php-extensions'=>'https://make.wordpress.org/hosting/handbook/handbook/server-environment/#php-extensions','The WordPress Hosting Team maintains a list of those modules, both recommended and required, in the team handbook%3$s.'=>'L’équipe Hébergement de WordPress maintient une liste des modules recommandés et obligatoires dans le manuel de l’équipe (en anglais)%3$s.','Performance'=>'Performances','Your site has %1$d inactive theme, other than %2$s, the default WordPress theme, and %3$s, your active theme.'=>'Votre site a %1$d thème inactif, autre que %2$s, le thème par défaut de WordPress, et %3$s, votre thème actif.' . "\0" . 'Votre site a %1$d thèmes inactifs, autres que %2$s, le thème par défaut de WordPress, et %3$s, votre thème actif.','You should consider removing any unused themes to enhance your site’s security.'=>'Nous recommandons de supprimer tous les thèmes non utilisés pour améliorer la sécurité de votre site.','Your site has %1$d inactive theme, other than %2$s, your active theme.'=>'Votre site a %1$d thème inactif, autre que %2$s, votre thème actif.' . "\0" . 'Votre site a %1$d thèmes inactifs, autres que %2$s, votre thème actif.','Your site has %d inactive theme.'=>'Votre site a %d thème inactif.' . "\0" . 'Votre site a %d thèmes inactifs.','Inactive plugins are tempting targets for attackers. If you are not going to use a plugin, you should consider removing it.'=>'Les extensions inactives sont des cibles tentantes pour les pirates. Si vous n’utilisez plus une extension, vous devriez envisager de la retirer.','Your site has %d inactive plugin.'=>'Votre site a %d extension inactive.' . "\0" . 'Votre site a %d extensions inactives.','Security'=>'Sécurité','Erase personal data list'=>'Supprimer la liste de données personnelles','Erase personal data list navigation'=>'Supprimer la navigation dans la liste de données personnelles','Filter erase personal data list'=>'Filtrer la suppression de la liste de données personnelles','Export personal data list'=>'Exporter la liste de données personnelles','Export personal data list navigation'=>'Exporter la navigation dans la liste de données personnelles','Filter export personal data list'=>'Filtrer l’exportation de la liste de données personnelles','There is a new version of %1$s available, but it does not work with your version of PHP. View version %4$s details or learn more about updating PHP.'=>'Il existe une nouvelle version disponible de %1$s, mais elle ne fonctionne pas avec votre version de PHP. Voir les détails de la version %4$s ou en savoir plus sur la mise à jour de PHP.','This plugin failed to load properly and is paused during recovery mode.'=>'Cette extension n’a pas pu se charger correctement et a été mise en pause dans le cadre du mode de récupération.','Go to the Themes screen'=>'Aller à l’écran des thèmes','Total size is not available. Some errors were encountered when determining the size of your installation.'=>'La taille totale n’est pas disponible. Des erreurs ont été rencontrées lors de la détermination de la taille de votre installation.','The size cannot be calculated. The directory is not accessible. Usually caused by invalid permissions.'=>'La taille ne peut pas être calculée. Le répertoire n’est pas accessible. Usuellement cela est causé par des droits d’accès non valides.','The directory size calculation has timed out. Usually caused by a very large number of sub-directories and files.'=>'Le calcul de la taille du répertoire a expiré. Cela est généralement causé par un très grand nombre de sous-répertoires et de fichiers.','These settings alter where and how parts of WordPress are loaded.'=>'Ces réglages modifient où et comment les éléments de WordPress sont chargés.','%s item with no issues detected'=>'%s élément sans problème détecté' . "\0" . '%s éléments sans problème détectés','%s recommended improvement'=>'%s amélioration recommandée' . "\0" . '%s améliorations recommandées','The site health check shows information about your WordPress configuration and items that may need your attention.'=>'La vérification de santé du site affiche des informations critiques à propos de votre configuration WordPress et les éléments qui nécessitent votre attention.','Site Health Status'=>'État de santé du site','Everything is running smoothly here.'=>'Tout fonctionne parfaitement ici.','Great job!'=>'Bon travail !','Secondary menu'=>'Menu secondaire','The loopback request to your site completed successfully.'=>'La demande de bouclage vers votre site s’est bien terminée.','The loopback request returned an unexpected http status code, %d, it was not possible to determine if this will prevent features from working as expected.'=>'La requête de bouclage a renvoyé un code d’état HTTP inattendu, %d. Il n’a pas été possible de déterminer si cela peut empêcher des fonctionnalités de fonctionner comme prévu.','The loopback request to your site failed, this means features relying on them are not currently working as expected.'=>'La requête de bouclage sur votre site a échoué, ce qui signifie que les fonctionnalités qui s’appuient sur ces requêtes ne fonctionnent actuellement pas comme prévu.','No scheduled events exist on this site.'=>'Aucun évènement planifié n’existe sur ce site.','REST API availability'=>'Disponibilité de l’API REST','Loopback request'=>'Demande de bouclage','Debugging enabled'=>'Débogage activé','HTTP Requests'=>'Requêtes HTTP','Scheduled events'=>'Évènements planifiés','Secure communication'=>'Communication sécurisée','HTTPS status'=>'État HTTPS','PHP Extensions'=>'Extensions PHP','Database Server version'=>'Version du serveur de base de données','PHP Version'=>'Version de PHP','Theme Versions'=>'Version des thèmes','Plugin Versions'=>'Versions des extensions','WordPress Version'=>'Version de WordPress','The REST API did not process the %s query parameter correctly.'=>'L’API REST n’a pas traité correctement le paramètre de la requête %s.','The REST API did not behave correctly'=>'L’API REST ne s’est pas correctement comportée','The REST API encountered an unexpected result'=>'L’API REST a rencontré un résultat inattendu','The REST API encountered an error'=>'L’API REST a rencontré une erreur','The REST API is one way that WordPress and other applications communicate with the server. For example, the block editor screen relies on the REST API to display and save your posts and pages.'=>'L’API REST est l’une des façons pour WordPress ou d’autres applications de communiquer avec le serveur. Par exemple, l’écran de l’éditeur s’appuie sur celle-ci pour afficher et enregistrer vos publications.','The REST API is available'=>'L’API REST est disponible','HTTP requests are partially blocked'=>'Les requêtes HTTP sont partiellement bloquées','HTTP requests are blocked'=>'Les requêtes HTTP sont bloquées','It is possible for site maintainers to block all, or some, communication to other sites and services. If set up incorrectly, this may prevent plugins and themes from working as intended.'=>'Il est possible pour les responsables du site de bloquer tout ou partie de la communication vers d’autres sites et services. Si la configuration est incorrecte, cela peut empêcher les extensions et thèmes de fonctionner comme prévu.','HTTP requests seem to be working as expected'=>'Les requêtes HTTP semblent fonctionner comme prévu','Your site could not complete a loopback request'=>'Votre site n’a pas pu terminer la requête de bouclage','Loopback requests are used to run scheduled events, and are also used by the built-in editors for themes and plugins to verify code stability.'=>'Les requêtes de bouclage sont utilisées pour lancer des évènements planifiés, ainsi que par les éditeurs de thèmes et d’extensions pour vérifier la stabilité du code.','Your site can perform loopback requests'=>'Votre site peut lancer des requêtes de bouclage','Background updates may not be working properly'=>'Les mises à jour d’arrière-plan pourraient ne pas fonctionner correctement','Background updates are not working as expected'=>'Les mises à jour d’arrière-plan ne fonctionnent pas comme prévu','Passed'=>'Succès','Background updates ensure that WordPress can auto-update if a security update is released for the version you are currently using.'=>'Les mises à jour d’arrière-plan assurent que WordPress peut se mettre à jour automatiquement si une mise à jour de sécurité est disponible pour la version que vous utilisez actuellement.','Background updates are working'=>'Les mises à jour d’arrière-plan fonctionnent','The scheduled event, %s, failed to run. Your site still works, but this may indicate that scheduling posts or automated updates may not work as intended.'=>'L’évènement planifié %s a échoué. Votre site fonctionne toujours, mais cela pourrait indiquer que les publications planifiées ou les mises à jour automatiques ne fonctionnent pas comme elles le devraient.','A scheduled event has failed'=>'Un évènement planifié a échoué','While trying to test your site’s scheduled events, the following error was returned: %s'=>'Lors du test des évènements planifiés de votre site, l’erreur suivante a été retournée : %s','It was not possible to check your scheduled events'=>'Il n’a pas été possible de vérifier vos évènements planifiés','Scheduled events are what periodically looks for updates to plugins, themes and WordPress itself. It is also what makes sure scheduled posts are published on time. It may also be used by various plugins to make sure that planned actions are executed.'=>'Les évènements planifiés permettent de vérifier périodiquement les mises à jour d’extensions, de thèmes et de WordPress lui-même. Cela permet également de s’assurer que les publications planifiées sont publiées à temps. Ils sont également utilisés par diverses extensions pour exécuter des actions planifiées.','Scheduled events are running'=>'Les évènements planifiés fonctionnent','Talk to your web host about OpenSSL support for PHP.'=>'Demandez à votre hébergeur la prise en charge de OpenSSL pour PHP.','Your site is unable to communicate securely with other services'=>'Votre site n’est pas en mesure de communiquer en toute sécurité avec d’autres services','Your site can communicate securely with other services'=>'Votre site peut communiquer en toute sécurité avec d’autres services','Securely communicating between servers are needed for transactions such as fetching files, conducting sales on store sites, and much more.'=>'Des communications sécurisées entre serveurs sont nécessaires pour des transactions telles que le parcours de fichiers, la vente sur les boutiques en ligne, et plus encore.','Learn more about why you should use HTTPS'=>'Apprenez pourquoi vous devriez utiliser HTTPS','Your website does not use HTTPS'=>'Votre site n’utilise pas HTTPS','Your website is using an active HTTPS connection'=>'Votre site utilise une connexion HTTPS opérationnelle.','You are accessing this website using HTTPS, but your Site Address is not set up to use HTTPS by default.'=>'Vous accédez à ce site en utilisant HTTPS, mais votre Adresse WordPress n’est pas configurée pour utiliser HTTPS par défaut.','Your site is set to display errors to site visitors'=>'Votre site est réglé pour afficher les erreurs aux visiteurs du site','The value, %s, has been added to this website’s configuration file. This means any errors on the site will be written to a file which is potentially available to all users.'=>'La valeur %s a été ajoutée au fichier de configuration de votre site. Cela signifie que toute erreur sur le site sera enregistrée dans un fichier qui est potentiellement visible par tous les comptes.','Your site is set to log errors to a potentially public file'=>'Votre site est configuré pour enregistrer le journal des erreurs dans un fichier potentiellement public','Debug mode is often enabled to gather more details about an error or site failure, but may contain sensitive information which should not be available on a publicly available website.'=>'Le mode débogage est souvent activé pour obtenir plus de détails à propos d’une erreur ou d’une défaillance du site, mais peut contenir des informations sensibles qui ne devraient pas être disponibles sur un site accessible au public.','Your site is not set to output debug information'=>'Votre site n’est pas réglé pour afficher les informations de débogage','Your site is unable to reach WordPress.org at %1$s, and returned the error: %2$s'=>'Votre site ne peut pas rejoindre WordPress.org sur %1$s et a retourné l’erreur suivante : %2$s','Could not reach WordPress.org'=>'Impossible de rejoindre WordPress.org','Communicating with the WordPress servers is used to check for new versions, and to both install and update WordPress core, themes or plugins.'=>'La communication avec les serveurs WordPress est utilisée pour vérifier l’existence de nouvelles versions et pour installer et mettre à jour le cœur WordPress, les thèmes et les extensions.','Can communicate with WordPress.org'=>'Peut communiquer avec WordPress.org','WordPress requires %1$s version %2$s or higher. Contact your web hosting company to correct this.'=>'WordPress nécessite %1$s version %2$s ou plus. Contactez votre hébergeur web pour corriger cela.','Severely outdated SQL server'=>'Serveur SQL fortement obsolète ','For optimal performance and security reasons, you should consider running %1$s version %2$s or higher. Contact your web hosting company to correct this.'=>'Pour des performances optimales et pour des raisons de sécurité, nous recommandons %1$s version %2$s ou supérieure. Contactez votre hébergeur pour corriger cela.','Outdated SQL server'=>'Serveur SQL obsolète','SQL server is up to date'=>'Le serveur SQL est à jour','One or more required modules are missing'=>'Un module nécessaire ou plus sont manquants.','One or more recommended modules are missing'=>'Un ou plusieurs modules recommandés sont manquants','The optional module, %s, is not installed, or has been disabled.'=>'Le module facultatif, %s, n’est pas installé, ou a été désactivé.','The required module, %s, is not installed, or has been disabled.'=>'Le module obligatoire %s n’est pas installé, ou a été désactivé.','Error'=>'Erreur','Required and recommended modules are installed'=>'Les modules obligatoires et recommandés sont installés','Your site does not have any default theme. Default themes are used by WordPress automatically if anything is wrong with your chosen theme.'=>'Votre site n’a pas de thème par défaut. Les thèmes par défaut sont utilisés par WordPress automatiquement si quelque chose ne va pas avec votre thème actif.','Have a default theme available'=>'Avoir un thème par défaut disponible','To enhance your site’s security, you should consider removing any themes you are not using. You should keep %1$s, the default WordPress theme, %2$s, your active theme, and %3$s, its parent theme.'=>'Pour améliorer la sécurité de votre site, vous pourriez envisager de retirer tous les thèmes que vous n’utilisez pas. Vous devriez conserver %1$s, le thème WordPress par défaut, %2$s, votre thème actuel, et %3$s, son thème parent.','To enhance your site’s security, you should consider removing any themes you are not using. You should keep your active theme, %1$s, and %2$s, its parent theme.'=>'Pour améliorer la sécurité de votre site, vous pourriez envisager de retirer tous les thèmes que vous n’utilisez pas. Vous devriez conserver uniquement votre thème actuel, %1$s et %2$s, son thème parent.','You should remove inactive plugins'=>'Vous devriez retirer les extensions inactives','Your site has %d installed theme, and it is up to date.'=>'Votre site a %d thème installé et il est à jour.' . "\0" . 'Votre site a %d thèmes installés et ils sont tous à jour.','Your site has %d theme waiting to be updated.'=>'Votre site à %d thème en attente de mise à jour.' . "\0" . 'Votre site à %d thèmes en attente de mise à jour.','You have themes waiting to be updated'=>'Vous avez des thèmes en attente de mise à jour','Themes add your site’s look and feel. It’s important to keep them up to date, to stay consistent with your brand and keep your site secure.'=>'Les thèmes concernent l’aspect visuel de votre site. Il est important de les tenir à jour, pour la cohérence de votre identité visuelle et pour garder votre site sécurisé.','Your themes are all up to date'=>'Vos thèmes sont à jour','Your site has %d active plugin, and it is up to date.'=>'Votre site a %d extension installée et elle est à jour.' . "\0" . 'Votre site a %d extensions installées et elles sont toutes à jour.','Your site has %d plugin waiting to be updated.'=>'Votre site a %d extension en attente de mise à jour.' . "\0" . 'Votre site a %d extensions en attente de mise à jour.','You have plugins waiting to be updated'=>'Vous avez des extensions en attente de mise à jour','Plugins extend your site’s functionality with things like contact forms, ecommerce and much more. That means they have deep access to your site, so it’s vital to keep them up to date.'=>'Les extensions étendent les fonctionnalités de votre site avec des choses comme des formulaires de contact, une boutique e-commerce et bien plus. Cela signifie qu’elles ont accès à votre site en profondeur, il est donc vital de les tenir à jour.','Your plugins are all up to date'=>'Vos extensions sont à jour','You are currently running the latest version of WordPress available, keep it up!'=>'Vous utilisez actuellement la dernière version disponible de WordPress, gardez-la à jour !','A new minor update is available for your site. Because minor updates often address security, it’s important to install them.'=>'Une mise à jour mineure est disponible pour votre site. Comme les mises à jour mineures concernent souvent la sécurité, il est important de les installer.','A new version of WordPress is available.'=>'Une nouvelle version de WordPress est disponible.','Install the latest version of WordPress'=>'Installer la dernière version de WordPress','WordPress update available (%s)'=>'Mise à jour de WordPress disponible (%s)','Check for updates manually'=>'Vérifier les mises à jour manuellement','Unable to check if any new versions of WordPress are available.'=>'Nous n’avons pas pu vérifier si de nouvelles versions de WordPress sont disponibles.','WordPress security and maintenance releases are blocked by the %s filter.'=>'Les mises à jour de sécurité et de maintenance sont bloquées par le filtre %s.','WordPress security and maintenance releases are blocked by %s.'=>'Les mises à jour de sécurité et de maintenance sont bloquées par %s.','WordPress development updates are blocked by the %s filter.'=>'Les mises à jour de développement WordPress sont bloquées par le filtre %s.','WordPress development updates are blocked by the %s constant.'=>'Les mises à jour de développement WordPress sont bloquées par la constante %s.','All of your WordPress files are writable.'=>'Tous vos fichiers WordPress sont accessibles en écriture.','Some files are not writable by WordPress:'=>'Certains fichiers ne sont pas accessibles par WordPress :','This could mean that connections are failing to WordPress.org.'=>'Cela peut signifier que les connexions à WordPress.org ne fonctionnent pas.','Couldn\'t retrieve a list of the checksums for WordPress %s.'=>'Impossible de récupérer une liste des checksums pour WordPress %s.','Your installation of WordPress does not require FTP credentials to perform updates.'=>'Votre installation de WordPress ne nécessite pas d’identifiants FTP pour effectuer les mises à jour.','(Your site is performing updates over FTP due to file ownership. Talk to your hosting company.)'=>'(Votre site effectue les mises à jour par FTP en raison de la propriété du fichier. Parlez-en à votre hébergeur.)','Your installation of WordPress prompts for FTP credentials to perform updates.'=>'Votre installation de WordPress demande des informations d’identification FTP pour effectuer les mises à jour.','No version control systems were detected.'=>'Aucun système de contrôle de version n’a été détecté.','The folder %1$s was detected as being under version control (%2$s).'=>'Le dossier %1$s a été détecté comme disposant d’un système de contrôle de version (%2$s).','The folder %1$s was detected as being under version control (%2$s), but the %3$s filter is allowing updates.'=>'Le dossier %1$s a été détecté comme disposant d’un système de contrôle de version (%2$s), mais le filtre %3$s autorise les mises à jour.','A previous automatic background update could not occur.'=>'Une précédente mise à jour automatique en arrière-plan n’a pu être effectuée.','The error code was %s.'=>'Le code d’erreur était %s.','When you\'ve been able to update using the "Update now" button on Dashboard > Updates, this error will be cleared for future update attempts.'=>'Lorsque vous aurez pu mettre à jour en utilisant le bouton « Mettre à jour maintenant » dans l’écran « Tableau de bord > Mises à jour », cette erreur ne sera plus affichée sur les futures tentatives de mise à jour.','You would have received an email because of this.'=>'Vous auriez reçu un e-mail à cause de cela.','A previous automatic background update ended with a critical failure, so updates are now disabled.'=>'Une précédente mise à jour automatique en arrière-plan s’est terminée par un échec critique, les mises à jour sont désormais désactivées.','The %s filter is enabled.'=>'Le filtre %s est activé.','A plugin has prevented updates by disabling %s.'=>'Une extension a empêché les mises à jour en désactivant %s.','The must use plugins directory'=>'Le répertoire des extensions indispensables','Theme features'=>'Fonctionnalités de thèmes','Parent theme'=>'Thème parent','Author website'=>'Site de l’auteur ou de l’autrice','(Latest version: %s)'=>'(dernière version : %s)','Version %1$s by %2$s'=>'Version %1$s par %2$s','No version or author information is available.'=>'Aucune information de version ou d’auteur/autrice n’est disponible.','Server version'=>'Version du serveur','Your %s file contains only core WordPress features.'=>'Votre fichier %s ne contient que des fonctionnalités du cœur WordPress.','Custom rules have been added to your %s file.'=>'Des règles personnalisées ont été ajoutées à votre fichier %s.','.htaccess rules'=>'Règles du .htaccess','Is the Imagick library available?'=>'La bibliothèque Imagick est-elle disponible ?','Is SUHOSIN installed?'=>'SUHOSIN est-il installé ?','cURL version'=>'Version de cURL','PHP post max size'=>'Taille maximale d’envoi de PHP','Upload max filesize'=>'Taille maximale de téléversement de fichier','Max input time'=>'Temps d’entrée max','PHP memory limit'=>'Limite de mémoire PHP','PHP time limit'=>'Limite d’exécution PHP','PHP max input variables'=>'Valeur maximale des variables PHP','Unable to determine some settings, as the %s function has been disabled.'=>'Impossible de déterminer certains réglages, car la fonction %s a été désactivée.','Server settings'=>'Réglages du serveur','PHP SAPI'=>'PHP SAPI','(Does not support 64bit values)'=>'(ne prend pas en charge les valeurs 64 bits)','(Supports 64bit values)'=>'(Supporte les valeurs 64 bits)','PHP version'=>'Version de PHP','Unable to determine what web server software is used'=>'Impossible de déterminer le serveur web utilisé','Web server'=>'Serveur web','Unable to determine server architecture'=>'Impossible de déterminer l’architecture du serveur','Server architecture'=>'Architecture serveur','Ghostscript version'=>'Version de Ghostscript','Unable to determine if Ghostscript is installed'=>'Impossible de déterminer si Ghostscript est installé','GD version'=>'Version de GD','Imagick Resource Limits'=>'Limites de ressources Imagick','ImageMagick version string'=>'Chaîne de version ImageMagick','ImageMagick version number'=>'Numéro de version ImageMagick','Not available'=>'Non disponible','Active editor'=>'Éditeur actif','Total installation size'=>'Taille totale de l’installation','Database size'=>'Taille de la base de données','WordPress directory size'=>'Taille du répertoire de WordPress','WordPress directory location'=>'Emplacement du répertoire de WordPress','Plugins directory size'=>'Taille du répertoire des extensions','Plugins directory location'=>'Emplacement du répertoire des extensions','Themes directory size'=>'Taille du répertoire des thèmes','Theme directory location'=>'Emplacement du répertoire des thèmes','Uploads directory size'=>'Taille du répertoire des téléversements','Uploads directory location'=>'Emplacement du répertoire des téléversements','Unable to reach WordPress.org at %1$s: %2$s'=>'Impossible d’atteindre WordPress.org à %1$s : %2$s','WordPress.org is reachable'=>'WordPress.org est accessible','Communication with WordPress.org'=>'Communication avec WordPress.org','Network count'=>'Nombre de réseaux','Site count'=>'Nombre de sites','User count'=>'Nombre de comptes','The themes directory'=>'Le répertoire de thèmes','The plugins directory'=>'Le répertoire d’extensions','The uploads directory'=>'Le répertoire des téléversements','The wp-content directory'=>'Le répertoire wp-content','Not writable'=>'Non accessible en écriture','Writable'=>'Accessible en écriture','The main WordPress directory'=>'Le répertoire principal de WordPress','Shows whether WordPress is able to write to the directories it needs access to.'=>'Montre si WordPress est capable ou non d’écrire dans les répertoires auxquels il a besoin d’accéder.','Filesystem Permissions'=>'Droits des fichiers système','Undefined'=>'Indéfini','WordPress Constants'=>'Constantes WordPress','Database'=>'Base de données','The options shown below relate to your server setup. If changes are required, you may need your web host’s assistance.'=>'Les options ci-dessous sont relatives à votre configuration serveur. Si des modifications sont nécessaires, vous pourriez avoir besoin de l’assistance de votre hébergeur.','Server'=>'Serveur','Media Handling'=>'Traitement des médias','Inactive Plugins'=>'Extensions inactives','Active Plugins'=>'Extensions actives','Must Use Plugins'=>'Extensions indispensables','Active Theme'=>'Thème actif','Drop-ins'=>'Extensions avancées','Directories and Sizes'=>'Répertoires et tailles','Is this a multisite?'=>'S’agit-il d’un multisite ?','Default comment status'=>'État par défaut des commentaires','Can anyone register on this site?'=>'Tout le monde peut-il s’inscrire sur ce site ?','Is this site using HTTPS?'=>'Est-ce que ce site utilise HTTPS ?','No permalink structure set'=>'Aucune structure de permaliens définie','Permalink structure'=>'Structure des permaliens','Site URL'=>'URL du site','Home URL'=>'URL de la page d’accueil','Site Health'=>'Santé du site','requestsAll (%s)'=>'Tous (%s)' . "\0" . 'Tous (%s)','Show comments cookies opt-in checkbox, allowing comment author cookies to be set'=>'Afficher la case à cocher pour accepter les cookies sur les commentaires, ce qui permet l’enregistrement de cookies pour les personnes ayant commenté','Next theme'=>'Thème suivant','Previous theme'=>'Thème précédent','If you change this, an email will be sent at your new address to confirm it. The new address will not become active until confirmed.'=>'Si vous modifiez cela, vous recevrez un e-mail de confirmation à votre nouvelle adresse. La nouvelle adresse ne sera pas active tant que vous n’aurez pas confirmé.','Theme resumed.'=>'Thème relancé.','Theme could not be resumed because it triggered a fatal error.'=>'Le thème n’a pas pu être relancé car il a déclenché une erreur fatale.','If you notice “headers already sent” messages, problems with syndication feeds or other issues, try deactivating or removing this plugin.'=>'Si vous remarquez des messages « headers already sent », des problèmes avec vos flux de syndication ou d’autres soucis, essayez de désactiver ou de supprimer cette extension.','The plugin generated %d character of unexpected output during activation.'=>'Cette extension a généré %d caractère de sortie inattendu lors de son activation.' . "\0" . 'Cette extension a généré %d caractères de sortie inattendus lors de son activation.','Sorry, you are not allowed to resume this plugin.'=>'Désolé, vous n’êtes pas autorisé à relancer cette extension.','WordPress Events and News — Upcoming events near you as well as the latest news from the official WordPress project and the WordPress Planet.'=>'Évènements et actualités WordPress – évènements à venir près de chez vous et dernières actualités officielles du projet WordPress ainsi que de l’écosystème WordPress.','You cannot update because WordPress %2$s requires MySQL version %3$s or higher. You are running version %4$s.'=>'Vous ne pouvez pas mettre à jour car WordPress %2$s nécessite MySQL version %3$s ou plus. Vous utilisez la version %4$s.','You cannot update because WordPress %2$s requires PHP version %3$s or higher. You are running version %4$s.'=>'Vous ne pouvez pas mettre à jour car WordPress %2$s nécessite PHP version %3$s ou plus. Vous utilisez la version %4$s.','Add menu items'=>'Ajouter des éléments de menu','or create a new menu. Do not forget to save your changes!'=>'ou créez un nouveau menu. N’oubliez pas d’enregistrer vos modifications !','Click the Save Menu button to save your changes.'=>'Cliquer sur le bouton « Enregistrer le menu » pour enregistrer vos modifications.','Edit your menu below, or create a new menu. Do not forget to save your changes!'=>'Modifiez votre menu ci-dessous, ou créez un nouveau menu. N’oubliez pas d’enregistrer vos modifications !','Fill in the Menu Name and click the Create Menu button to create your first menu.'=>'Remplissez le nom du menu et cliquez sur le bouton « Créer le menu » pour créer votre premier menu.','Create your first menu below.'=>'Créez votre premier menu ci-dessous.','You cannot install because WordPress %2$s requires MySQL version %3$s or higher. You are running version %4$s.'=>'Vous ne pouvez pas poursuivre l’installation car WordPress %2$s nécessite MySQL version %3$s ou plus. Vous utilisez la version %4$s.','You cannot install because WordPress %2$s requires PHP version %3$s or higher. You are running version %4$s.'=>'Vous ne pouvez pas poursuivre l’installation car WordPress %2$s nécessite PHP version %3$s ou plus. Vous utilisez la version %4$s.','Learn more about updating PHP'=>'En savoir plus sur la mise à jour de PHP','What is PHP and how does it affect my site?'=>'Qu’est-ce que PHP et comment cela affecte t-il mon site ?','PHP Update Required'=>'Mise à jour de PHP nécessaire','You can find more details and make changes on the Plugins screen.'=>'Vous pouvez trouver davantage de détails et faire des modifications sur l’écran des extensions.','One or more plugins failed to load properly.'=>'Le chargement d’une ou plusieurs extensions a échoué.','Could not resume the plugin.'=>'Impossible de relancer l’extension.','Custom PHP fatal error handler.'=>'Gestionnaire d’erreur fatale PHP personnalisée.','Custom PHP error message.'=>'Message d’erreur PHP personnalisé.','Could not remove the old translation.'=>'Impossible de retirer l’ancienne traduction.','Removing the old version of the translation…'=>'Retrait de l’ancienne version de la traduction…','Click here to update WordPress.'=>'Cliquer ici pour mettre WordPress à jour.','Error: This plugin requires a newer version of WordPress.'=>'Erreur : Cette extension nécessite une version plus récente de WordPress.','Click here to learn more about updating PHP.'=>'Cliquez ici pour en savoir plus sur la mise à jour de PHP.','Error: This plugin requires a newer version of PHP.'=>'Erreur : Cette extension nécessite une version plus récente de PHP.','Add widget: %s'=>'Ajouter le widget : %s','Add to: %s'=>'Ajouter à : %s','Track %s.'=>'Piste %s.','My Network'=>'Mon réseau','This plugin does not work with your version of PHP.'=>'Cette extension ne fonctionne pas avec votre version de PHP.','This plugin does not work with your version of WordPress.'=>'Cette extension ne fonctionne pas avec votre version de WordPress.','This plugin does not work with your versions of WordPress and PHP.'=>'Cette extension ne fonctionne pas avec vos versions de WordPress et de PHP.','https://wordpress.org/documentation/wordpress-version/version-%s/'=>'https://wordpress.org/support/wordpress-version/version-%s/','Resume'=>'Relancer','pluginResume %s'=>'Relancer %s','You can find more details and make changes on the Themes screen.'=>'Vous trouverez plus de détails et pouvez apporter des modifications sur l’écran des thèmes.','One or more themes failed to load properly.'=>'Un ou plusieurs thèmes ont échoués à se charger correctement.','Could not resume the theme.'=>'Impossible de relancer le thème.','Deleting a category does not delete the posts in that category. Instead, posts that were only assigned to the deleted category are set to the default category %s. The default category cannot be deleted.'=>'Supprimer une catégorie ne supprime pas les articles de cette catégorie. Les articles ayant été assignés uniquement à cette catégorie se voient assignés à la catégorie par défaut, « %s ». La catégorie par défaut ne peut pas être supprimée.','The block widgets require JavaScript. Please enable JavaScript in your browser settings, or install the Classic Widgets plugin.'=>'Les blocs widgets nécessite JavaScript. Veuillez activer JavaScript dans les paramètres de votre navigateur, ou essayez l’extension Classic Editor.','A post type mismatch has been detected.'=>'Une incohérence de type de publication a été détectée.','A post ID mismatch has been detected.'=>'Une incohérence d’identifiant de publication a été détectée.','Please open the classic editor to use this meta box.'=>'Veuillez ouvrir l’éditeur classique pour utiliser cette boîte méta.','Please activate the Classic Editor plugin to use this meta box.'=>'Veuillez activer l’extension Classic Editor pour utiliser cette boîte méta.','Please install the Classic Editor plugin to use this meta box.'=>'Veuillez installer l’extension Classic Editor pour utiliser cette boîte méta.','This meta box is not compatible with the block editor.'=>'Cette boîte méta n’est pas compatible avec le nouvel éditeur.','To distribute copies of your modified versions to others.'=>'la liberté d’améliorer le programme et de distribuer ces améliorations au public, pour en faire profiter toute la communauté.','The 4th Freedom'=>'La quatrième liberté','To redistribute.'=>'La liberté de redistribution ;','The 3rd Freedom'=>'La troisième liberté','To study how the program works and change it to make it do what you wish.'=>'La liberté d’étudier le fonctionnement du programme et de l’adapter à ses besoins ;','The 2nd Freedom'=>'La deuxième liberté','To run the program for any purpose.'=>'La liberté d’exécuter le programme, pour tous les usages ;','The 1st Freedom'=>'La première liberté','Created'=>'Créé','Welcome to WordPress. This is your first post. Edit or delete it, then start writing!'=>'Bienvenue sur WordPress. Ceci est votre premier article. Modifiez-le ou supprimez-le, puis commencez à écrire !','As a new WordPress user, you should go to your dashboard to delete this page and create new pages for your content. Have fun!'=>'En tant que nouvel utilisateur ou utilisatrice de WordPress, vous devriez vous rendre sur votre tableau de bord pour supprimer cette page et créer de nouvelles pages pour votre contenu. Amusez-vous bien !','The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.'=>'La société 123 Machin Truc a été créée en 1971, et n’a cessé de proposer au public des machins-trucs de qualité depuis lors. Située à Saint-Remy-en-Bouzemont-Saint-Genest-et-Isson, 123 Machin Truc emploie 2 000 personnes, et fabrique toutes sortes de bidules supers pour la communauté bouzemontoise.','...or something like this:'=>'…ou quelque chose comme cela :','Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like piña coladas. (And gettin\' caught in the rain.)'=>'Bonjour ! Je suis un mécanicien qui aspire à devenir acteur, et voici mon site. J’habite à Bordeaux, j’ai un super chien baptisé Russell, et j’aime la vodka (ainsi qu’être surpris par la pluie soudaine lors de longues balades sur la plage au coucher du soleil).','This is an example page. It\'s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:'=>'Ceci est une page d’exemple. C’est différent d’un article de blog parce qu’elle restera au même endroit et apparaîtra dans la navigation de votre site (dans la plupart des thèmes). La plupart des gens commencent par une page « À propos » qui les présente aux personnes visitant le site. Cela pourrait ressembler à quelque chose comme cela :','Export “%s” as JSON'=>'Exporter « %s » en JSON','1 pattern not updated, somebody is editing it.'=>'Une composition n’a pas été mise à jour, quelqu’un est train de la modifier.','%s pattern restored from the Trash.'=>'%s composition restaurée depuis la corbeille.' . "\0" . '%s compositions restaurées depuis la corbeille.','Error: "Table Prefix" must not be empty.'=>'Erreur : le préfixe de table ne doit pas être vide.','This meta box, from the %s plugin, is not compatible with the block editor.'=>'Cette boîte méta de l’extension %s n’est pas compatible avec le nouvel éditeur.','personal data group labelAbout'=>'À propos','page titleAbout'=>'À propos','Edit or preview your Privacy Policy page content.'=>'Modifier ou prévisualiser le contenu de votre page de politique de confidentialité.','Privacy Policy Page'=>'Page de politique de confidentialité','%s (Draft)'=>'%s (Brouillon)','Privacy Policy page updated successfully.'=>'La page de politique de confidentialité a bien été mise à jour.','The suggested privacy policy content should be added by using the %s (or later) action. Please see the inline documentation.'=>'Le contenu suggéré de politique de confidentialité devrait être ajouté en utilisant l’action %s (ou ultérieurement). Veuillez vous référer à la documentation en ligne.','The suggested privacy policy content should be added only in wp-admin by using the %s (or later) action.'=>'Le contenu suggéré de politique de confidentialité devrait être ajouté uniquement dans wp-admin en utilisant l’action %s (ou ultérieurement).','The suggested privacy policy text has changed. Please review the guide and update your privacy policy.'=>'Le texte suggéré pour votre politique de confidentialité a été modifié. Veuillez relire le guide et mettre à jour votre politique de confidentialité.','There are no pages.'=>'Il n’y a aucune page.','Need help putting together your new Privacy Policy page? Check out the privacy policy guide%3$s for recommendations on what content to include, along with policies suggested by your plugins and theme.'=>'Vous avez besoin d’aide pour créer votre nouvelle page de politique de confidentialité ? Consultez notre guide%3$s pour obtenir des recommandations sur les contenus à inclure. Consultez aussi les suggestions faites par les personnes qui éditent vos extensions et votre thème.','Privacy Policy Guide'=>'Guide de la politique de confidentialité','Visitor comments may be checked through an automated spam detection service.'=>'Les commentaires des visiteurs peuvent être vérifiés à l’aide d’un service automatisé de détection des commentaires indésirables.','In this subsection you should note what analytics package you use, how users can opt out of analytics tracking, and a link to your analytics provider’s privacy policy, if any.'=>'Dans cette sous-section, indiquez les outils de statistiques que vous utilisez pour vos mesures d’audience, et le cas échéant faites un lien vers la politique de confidentialité de votre fournisseur.','In this subsection you should note what information may be disclosed by users who can upload media files. All uploaded files are usually publicly accessible.'=>'Dans cette sous-section, indiquez les informations qui pourraient être dévoilées par les comptes pouvant téléverser des fichiers dans votre médiathèque. Les fichiers téléversés sont généralement accessibles publiquement.','In this subsection you should note what information is captured through comments. We have noted the data which WordPress collects by default.'=>'Dans cette sous-section, indiquez les informations qui sont récupérées via les commentaires. Nous avons indiqué les données collectées nativement par WordPress.','In this section you should note what personal data you collect from users and site visitors. This may include personal data, such as name, email address, personal account preferences; transactional data, such as purchase information; and technical data, such as information about cookies.'=>'Dans cette section, indiquez les données personnelles que vous collectez sur les utilisateurs/utilisatrices et personnes visitant votre site. Cela pourrait comprendre les données personnelles comme le nom, l’adresse e-mail, les préférences de compte personnel ; les données transactionnelles comme les informations de commande ; et les données techniques comme les informations sur les cookies.','Suggested text:'=>'Texte suggéré :','The template contains a suggestion of sections you most likely will need. Under each section heading, you will find a short summary of what information you should provide, which will help you to get started. Some sections include suggested policy content, others will have to be completed with information from your theme and plugins.'=>'Le modèle propose des suggestions de sections dont vous pourriez avoir besoin. Sous chaque titre de section, vous trouverez un bref résumé des informations que vous devriez fournir, ce qui vous aidera à rédiger votre page. Certaines sections comprennent des contenus suggérés, d’autres devront être complétées par des informations provenant de votre thème et de vos extensions.','Updated %s.'=>'Mise à jour le %s.','You deactivated this plugin on %s and may no longer need this policy.'=>'Vous avez désactivé l’extension %s et n’avez donc normalement plus besoin de ces informations.','Removed %s.'=>'%s supprimé.','Introduction'=>'Introduction','Need help putting together your new Privacy Policy page? Check out the guide for recommendations on what content to include, along with policies suggested by your plugins and theme.'=>'Vous avez besoin d’aide pour assembler votre nouvelle page de politique de confidentialité ? Consultez le guide des recommandations sur les contenus à proposer, ainsi que sur les politiques de confidentialité de votre thème et de vos extensions.','Erasing data...'=>'Effacement des données…','Add Data Erasure Request'=>'Ajout d’une demande d’effacement de données','Send export link'=>'Envoyer le lien d’exportation','If you are a member of a regulated industry, or if you are subject to additional privacy laws, you may be required to disclose that information here.'=>'Si vous êtes membre d’une industrie régulée, ou si vous êtes sujet à des réglementations spécifiques, il est probablement nécessaire d’afficher ces informations ici.','Industry regulatory disclosure requirements'=>'Affichage des informations liées aux secteurs soumis à des régulations spécifiques','If your website provides a service which includes automated decision making - for example, allowing customers to apply for credit, or aggregating their data into an advertising profile - you must note that this is taking place, and include information about how that information is used, what decisions are made with that aggregated data, and what rights users have over decisions made without human intervention.'=>'Si votre site fournit un service qui inclut la prise de décision automatisée – par exemple, autoriser vos clients à souscrire à un crédit ou agréger leurs données dans un profil publicitaire – vous devez expliciter ce qui est mis en place et inclure des informations sur la façon dont les informations sont utilisées, quelles décisions sont prises avec ces données agrégées et quels sont les droits dont disposent les internautes sur les décisions prises sans intervention humaine.','What automated decision making and/or profiling we do with user data'=>'Opérations de marketing automatisé et/ou de profilage réalisées à l’aide des données personnelles','If your website receives data about users from third parties, including advertisers, this information must be included within the section of your privacy policy dealing with third party data.'=>'Si votre site reçoit des données personnelles depuis des sources tierces – ce qui inclut les sources publicitaires – ces informations doivent être incluses dans la section sur les données issues de sources tierces de votre déclaration de protection de la vie privée.','What third parties we receive data from'=>'Les services tiers qui nous transmettent des données','In this section you should explain what procedures you have in place to deal with data breaches, either potential or real, such as internal reporting systems, contact mechanisms, or bug bounties.'=>'Dans cette section, indiquez les procédures que vous avez mises en place en cas de fuites de données, soit potentielles, soit réelles, comme les systèmes internes de notification, les mécanismes de contact ou les récompenses éventuellement prévues pour les « chasseurs de bogues ».','What data breach procedures we have in place'=>'Procédures mises en œuvre en cas de fuite de données','In this section you should explain what measures you have taken to protect your users’ data. This could include technical measures such as encryption; security measures such as two factor authentication; and measures such as staff training in data protection. If you have carried out a Privacy Impact Assessment, you can mention it here too.'=>'Dans cette section, indiquez les mesures que vous avez prises pour protéger les données de vos comptes. Cela peut inclure des mesures techniques comme le chiffrement, des mesures de sécurité comme l’authentification à deux facteurs ou des mesures humaines comme la mise en place d’une équipe formée à la protection des données. Si vous avez mené une analyse d’impact liée à la fuite de données privées, vous pouvez également l’indiquer ici.','How we protect your data'=>'Comment nous protégeons vos données','If you use your site for commercial purposes and you engage in more complex collection or processing of personal data, you should note the following information in your privacy policy in addition to the information we have already discussed.'=>'Si vous utilisez votre site dans un but commercial et que vous vous engagez dans la collecte et le traitement de données personnelles plus complexes, vous devriez indiquer les informations suivantes dans votre déclaration de protection de la vie privée, en plus des informations détaillées précédemment.','Additional information'=>'Informations supplémentaires','In this section you should provide a contact method for privacy-specific concerns. If you are required to have a Data Protection Officer, list their name and full contact details here as well.'=>'Dans cette section, indiquez la méthode de contact disponible pour les demandes concernant la vie privée. Si vous devez avoir un Délégué à la Protection des Données, indiquez également son nom et ses coordonnées détaillées.','European data protection law requires data about European residents which is transferred outside the European Union to be safeguarded to the same standards as if the data was in Europe. So in addition to listing where data goes, you should describe how you ensure that these standards are met either by yourself or by your third party providers, whether that is through an agreement such as Privacy Shield, model clauses in your contracts, or binding corporate rules.'=>'La loi européenne de protection des données nécessite que les données de résidents européens transférées en dehors de l’Union Européenne soient protégées dans les mêmes conditions que si elles étaient en Europe. En plus de lister les endroits où vont les données, vous devriez décrire comment vous vous assurez, par vous ou par vos sous-traitants, de la mise en conformité avec ces standards, soit par un accord comme le Privacy Shield (Bouclier de Protection des Données UE/États-Unis), des clauses dans vos contrats ou des règles d’entreprise contraignantes.','In this section you should list all transfers of your site data outside the European Union and describe the means by which that data is safeguarded to European data protection standards. This could include your web hosting, cloud storage, or other third party services.'=>'Listez dans cette section tous les transferts de données de votre site vers l’extérieur de l’Union Européenne et décrire en quoi ces données sont protégées au regard des standards européens de protection des données privées. Cela peut inclure votre hébergeur web, le stockage en « cloud » ou d’autres services tiers.','If you have an account on this site, or have left comments, you can request to receive an exported file of the personal data we hold about you, including any data you have provided to us. You can also request that we erase any personal data we hold about you. This does not include any data we are obliged to keep for administrative, legal, or security purposes.'=>'Si vous avez un compte ou si vous avez laissé des commentaires sur le site, vous pouvez demander à recevoir un fichier contenant toutes les données personnelles que nous possédons à votre sujet, incluant celles que vous nous avez fournies. Vous pouvez également demander la suppression des données personnelles vous concernant. Cela ne prend pas en compte les données stockées à des fins administratives, légales ou pour des raisons de sécurité.','In this section you should explain what rights your users have over their data and how they can invoke those rights.'=>'Dans cette section, indiquez les droits des comptes concernant leurs données et comment ils peuvent exercer ces droits.','What rights you have over your data'=>'Les droits que vous avez sur vos données','For users that register on our website (if any), we also store the personal information they provide in their user profile. All users can see, edit, or delete their personal information at any time (except they cannot change their username). Website administrators can also see and edit that information.'=>'Pour les comptes qui s’inscrivent sur notre site (le cas échéant), nous stockons également les données personnelles indiquées dans leur profil. Tous les comptes peuvent voir, modifier ou supprimer leurs informations personnelles à tout moment (à l’exception de leur identifiant). Les gestionnaires du site peuvent aussi voir et modifier ces informations.','If you leave a comment, the comment and its metadata are retained indefinitely. This is so we can recognize and approve any follow-up comments automatically instead of holding them in a moderation queue.'=>'Si vous laissez un commentaire, le commentaire et ses métadonnées sont conservés indéfiniment. Cela permet de reconnaître et approuver automatiquement les commentaires suivants au lieu de les laisser dans la file de modération.','In this section you should explain how long you retain personal data collected or processed by the website. While it is your responsibility to come up with the schedule of how long you keep each dataset for and why you keep it, that information does need to be listed here. For example, you may want to say that you keep contact form entries for six months, analytics records for a year, and customer purchase records for ten years.'=>'Dans cette section, vous devriez indiquer la durée de conservation des données personnelles collectées et traitées par votre site web. Même s’il est de votre responsabilité de fournir un planning de conservation de chaque jeu de données dont vous disposez, cette information n’a pas besoin d’être affichée ici. Par exemple, vous pourriez indiquer que vous conservez les données reçues via vos formulaires de contact pendant six mois, les statistiques de visites pendant un an et les enregistrements liés aux ventes en ligne pendant dix ans.','How long we retain your data'=>'Durées de stockage de vos données','By default WordPress does not share any personal data with anyone.'=>'Par défaut, WordPress ne partage vos informations personnelles avec personne.','In this section you should name and list all third party providers with whom you share site data, including partners, cloud-based services, payment processors, and third party service providers, and note what data you share with them and why. Link to their own privacy policies if possible.'=>'Dans cette section, listez et nommez tous les fournisseurs tiers avec qui vous partagez les données de votre site, en incluant les partenaires, les services en « cloud », les passerelles de paiement, et tous les autres services tiers. Indiquez les données que vous partagez et pourquoi vous le faites. Mettez un lien vers leur politique de confidentialité si possible.','Who we share your data with'=>'Utilisation et transmission de vos données personnelles','By default WordPress does not collect any analytics data. However, many web hosting accounts collect some anonymous analytics data. You may also have installed a WordPress plugin that provides analytics services. In that case, add information from that plugin here.'=>'Par défaut, WordPress ne collecte aucune statistique des visites. Cependant de nombreux hébergeurs collectent des données statistiques anonymes. Vous pouvez également avoir installé une extension WordPress qui fourni des services de statistiques. Dans ce cas, indiquez les informations sur cette extension ici.','Analytics'=>'Statistiques et mesures d’audience','These websites may collect data about you, use cookies, embed additional third-party tracking, and monitor your interaction with that embedded content, including tracking your interaction with the embedded content if you have an account and are logged in to that website.'=>'Ces sites web pourraient collecter des données sur vous, utiliser des cookies, embarquer des outils de suivis tiers, suivre vos interactions avec ces contenus embarqués si vous disposez d’un compte connecté sur leur site web.','Articles on this site may include embedded content (e.g. videos, images, articles, etc.). Embedded content from other websites behaves in the exact same way as if the visitor has visited the other website.'=>'Les articles de ce site peuvent inclure des contenus intégrés (par exemple des vidéos, images, articles…). Le contenu intégré depuis d’autres sites se comporte de la même manière que si le visiteur se rendait sur cet autre site.','Embedded content from other websites'=>'Contenu embarqué depuis d’autres sites','If you edit or publish an article, an additional cookie will be saved in your browser. This cookie includes no personal data and simply indicates the post ID of the article you just edited. It expires after 1 day.'=>'En modifiant ou en publiant une publication, un cookie supplémentaire sera enregistré dans votre navigateur. Ce cookie ne comprend aucune donnée personnelle. Il indique simplement l’ID de la publication que vous venez de modifier. Il expire au bout d’un jour.','When you log in, we will also set up several cookies to save your login information and your screen display choices. Login cookies last for two days, and screen options cookies last for a year. If you select "Remember Me", your login will persist for two weeks. If you log out of your account, the login cookies will be removed.'=>'Lorsque vous vous connecterez, nous mettrons en place un certain nombre de cookies pour enregistrer vos informations de connexion et vos préférences d’écran. La durée de vie d’un cookie de connexion est de deux jours, celle d’un cookie d’option d’écran est d’un an. Si vous cochez « Se souvenir de moi », votre cookie de connexion sera conservé pendant deux semaines. Si vous vous déconnectez de votre compte, le cookie de connexion sera effacé.','If you visit our login page, we will set a temporary cookie to determine if your browser accepts cookies. This cookie contains no personal data and is discarded when you close your browser.'=>'Si vous vous rendez sur la page de connexion, un cookie temporaire sera créé afin de déterminer si votre navigateur accepte les cookies. Il ne contient pas de données personnelles et sera supprimé automatiquement à la fermeture de votre navigateur.','If you leave a comment on our site you may opt-in to saving your name, email address and website in cookies. These are for your convenience so that you do not have to fill in your details again when you leave another comment. These cookies will last for one year.'=>'Si vous déposez un commentaire sur notre site, il vous sera proposé d’enregistrer votre nom, adresse e-mail et site dans des cookies. C’est uniquement pour votre confort afin de ne pas avoir à saisir ces informations si vous déposez un autre commentaire plus tard. Ces cookies expirent au bout d’un an.','In this subsection you should list the cookies your website uses, including those set by your plugins, social media, and analytics. We have provided the cookies which WordPress installs by default.'=>'Dans cette sous-section, vous devriez lister les cookies utilisés par votre site, incluant ceux enregistrés par vos extensions, les réseaux sociaux et vos statistiques de visites. Nous avons indiqué les cookies que WordPress installe par défaut.','Cookies'=>'Cookies','An anonymized string created from your email address (also called a hash) may be provided to the Gravatar service to see if you are using it. The Gravatar service privacy policy is available here: https://automattic.com/privacy/. After approval of your comment, your profile picture is visible to the public in the context of your comment.'=>'Une chaîne anonymisée créée à partir de votre adresse e-mail (également appelée hash) peut être envoyée au service Gravatar pour vérifier si vous utilisez ce dernier. Les clauses de confidentialité du service Gravatar sont disponibles ici : https://automattic.com/privacy/. Après validation de votre commentaire, votre photo de profil sera visible publiquement à coté de votre commentaire.','When visitors leave comments on the site we collect the data shown in the comments form, and also the visitor’s IP address and browser user agent string to help spam detection.'=>'Quand vous laissez un commentaire sur notre site, les données inscrites dans le formulaire de commentaire, ainsi que votre adresse IP et l’agent utilisateur de votre navigateur sont collectés pour nous aider à la détection des commentaires indésirables.','By default, WordPress does not include a contact form. If you use a contact form plugin, use this subsection to note what personal data is captured when someone submits a contact form, and how long you keep it. For example, you may note that you keep contact form submissions for a certain period for customer service purposes, but you do not use the information submitted through them for marketing purposes.'=>'Par défaut, WordPress n’inclut pas de formulaire de contact. Si vous utilisez une extension de formulaire de contact, utilisez cette sous-section pour indiquer quelles données personnelles sont enregistrées lors de la soumission du formulaire, et leur durée de conservation. Par exemple, vous pourriez indiquer que vous conservez les soumissions d’un formulaire de contact pendant une période donnée pour les questions liées au service client, mais que vous ne les utiliserez pas à des fins commerciales.','Contact forms'=>'Formulaires de contact','If you upload images to the website, you should avoid uploading images with embedded location data (EXIF GPS) included. Visitors to the website can download and extract any location data from images on the website.'=>'Si vous téléversez des images sur le site, nous vous conseillons d’éviter de téléverser des images contenant des données EXIF de coordonnées GPS. Les personnes visitant votre site peuvent télécharger et extraire des données de localisation depuis ces images.','By default WordPress does not collect any personal data about visitors, and only collects the data shown on the User Profile screen from registered users. However some of your plugins may collect personal data. You should add the relevant information below.'=>'Par défaut, WordPress ne collecte aucune donnée personnelle sur les visiteurs, et ne collecte que les données présentes dans l’écran « Votre Profil » des comptes inscrits. Cependant certaines de vos extensions peuvent collecter des données personnelles. Dans ce cas, indiquez les informations adéquates ci-dessous.','Personal data is not just created by a user’s interactions with your site. Personal data is also generated from technical processes such as contact forms, comments, cookies, analytics, and third party embeds.'=>'Les données personnelles ne sont pas seulement créées par l’interaction d’une personne avec votre site. Elles sont générées par un processus technique comme un formulaire de contact, les commentaires, les cookies ou l’intégration de services tiers.','In addition to listing what personal data you collect, you need to note why you collect it. These explanations must note either the legal basis for your data collection and retention or the active consent the user has given.'=>'En plus de lister les données personnelles que vous collectez, vous devez indiquer pourquoi vous le faites. Ces explications doivent contenir soit les bases légales de la collecte et la conservation de données, soit le consentement actif donné par l’utilisateur ou l’utilisatrice.','You should also note any collection and retention of sensitive personal data, such as data concerning health.'=>'Vous devriez également inscrire toute collecte ou conservation de données personnelles sensibles comme des données médicales.','What personal data we collect and why we collect it'=>'Utilisation des données personnelles collectées','Our website address is: %s.'=>'L’adresse de notre site est : %s.','The amount of information you may be required to show will vary depending on your local or national business regulations. You may, for example, be required to display a physical address, a registered address, or your company registration number.'=>'La quantité d’informations que vous devez afficher dépend de la réglementation locale ou nationale à laquelle vous êtes soumis. Vous pourriez par exemple devoir afficher une adresse physique, une adresse publique, ou le numéro d’enregistrement de votre entreprise.','In this section you should note your site URL, as well as the name of the company, organization, or individual behind it, and some accurate contact information.'=>'Dans cette section, indiquez l’URL de votre site, votre nom ou celui de votre entreprise ou organisation ainsi que vos informations de contact.','Who we are'=>'Qui sommes-nous ?','It is your responsibility to write a comprehensive privacy policy, to make sure it reflects all national and international legal requirements on privacy, and to keep your policy current and accurate.'=>'Il est de votre responsabilité de rédiger une politique de confidentialité compréhensible, de vous assurer qu’elle reflète les exigences nationales et internationales sur la vie privée et de maintenir cette politique à jour et exacte.','Please edit your privacy policy content, making sure to delete the summaries, and adding any information from your theme and plugins. Once you publish your policy page, remember to add it to your navigation menu.'=>'Veuillez modifier le contenu de votre politique de confidentialité. Assurez-vous de supprimer les exemples de textes et d’ajouter les différentes informations à propos de vos thèmes et extensions. Une fois votre page publiée, pensez à l’ajouter à votre menu de navigation ou à votre pied de page.','This text template will help you to create your website’s privacy policy.'=>'Ce modèle de texte est proposé pour vous aider à créer la politique de confidentialité de votre site.','As a website owner, you may need to follow national or international privacy laws. For example, you may need to create and display a privacy policy.'=>'En tant que propriétaire du site, vous pourriez avoir besoin de suivre des réglementations nationales ou internationales en matière de confidentialité. Par exemple, vous pouvez avoir besoin de créer et d’afficher une politique de confidentialité.','Force erasure has failed.'=>'L’effacement forcé a échoué.','Email could not be sent.'=>'L’e-mail n’a pas pu être envoyé.','date/timeOn'=>'Le','website URLAt URL'=>'À l’URL','website nameFor site'=>'Pour le site','email addressReport generated for'=>'Rapport généré pour','Exporter array at index %s does not include a friendly name.'=>'Le tableau d’exportation ne contient aucun « friendly name » à l’index %s.','Sorry, you are not allowed to erase personal data on this site.'=>'Désolé, vous n’avez pas l’autorisation d’effacer les données personnelles sur ce site.','Sorry, you are not allowed to export personal data on this site.'=>'Désolé, vous n’avez pas l’autorisation d’exporter les données personnelles sur ce site.','Eraser index is out of range.'=>'L’index d’effacement est hors de portée.','Missing eraser index.'=>'Index d’effacement manquant.','Expected done (boolean) in response array from exporter: %s.'=>'Résultat attendu (booléen) dans le tableau de réponse de l’outil d’exportation : %s.','Expected data array in response array from exporter: %s.'=>'Donnée tabulaire attendue dans le tableau de réponse de l’outil d’exportation : %s.','Expected data in response array from exporter: %s.'=>'Donnée attendue dans le tableau de réponse de l’outil d’exportation : %s.','Expected response as an array from exporter: %s.'=>'Réponse attendue de l’outil d’exportation en tant que tableau : %s.','Exporter callback is not a valid callback: %s.'=>'Le retour de l’outil d’exportation n’est pas un rappel valide : %s.','Exporter does not include a callback: %s.'=>'L’outil d’exportation n’inclue aucun rappel : %s.','Expected an array describing the exporter at index %s.'=>'Réponse attendue sous forme de tableau décrivant l’outil d’exportation à l’index %s.','Exporter index is out of range.'=>'L’index d’exportation est hors limite.','Exporter index cannot be negative.'=>'L’index d’exportation ne peut pas être un nombre inférieur à zéro.','An exporter has improperly used the registration filter.'=>'Un outil d’exportation a utilisé le filtre d’inscription de façon erronée.','Missing page index.'=>'Index de page manquant.','Missing exporter index.'=>'Index d’exportation manquant.','Invalid request type.'=>'Type de requête non valide.','Use This Page'=>'Utiliser cette page','Select a Privacy Policy page'=>'Sélectionner une page de politique de confidentialité','Change your Privacy Policy page'=>'Modifier la page de politique de confidentialité','Edit or view your Privacy Policy page content.'=>'Modifiez ou visualisez le contenu de votre page de politique de confidentialité.','You should also review your privacy policy from time to time, especially after installing or updating any themes or plugins. There may be changes or new suggested information for you to consider adding to your policy.'=>'Vous devriez aussi relire votre politique de confidentialité régulièrement, spécialement après l’installation ou la mise à jour de thèmes ou d’extensions. Il se peut que des changements ou de nouvelles informations vous fassent envisager de les ajouter à votre politique.','However, it is your responsibility to use those resources correctly, to provide the information that your privacy policy requires, and to keep that information current and accurate.'=>'Cependant, il est de votre responsabilité d’utiliser ces ressources correctement, afin de fournir les informations que votre politique de confidentialité nécessite, de tenir à jour ces informations et de garantir leur pertinence.','The new page will include help and suggestions for your privacy policy.'=>'La nouvelle page contiendra de l’aide et des suggestions pour votre politique de confidentialité.','If you already have a Privacy Policy page, please select it below. If not, please create one.'=>'Si vous disposez déjà d’une page de politique de confidentialité, veuillez la sélectionner ci-dessous. Sinon, veuillez en créer une.','The currently selected Privacy Policy page is in the Trash. Please create or select a new Privacy Policy page or restore the current page.'=>'La page de politique de confidentialité actuellement sélectionnée est dans la corbeille. Veuillez créer ou sélectionner une nouvelle page de politique de confidentialité ou restaurer la page actuelle.','The currently selected Privacy Policy page does not exist. Please create or select a new page.'=>'La page de politique de confidentialité actuellement sélectionnée n’existe pas. Veuillez créer ou sélectionner une nouvelle page.','Unable to create a Privacy Policy page.'=>'Impossible de créer une page de politique de confidentialité.','privacy-policy'=>'politique-de-confidentialite','Privacy Policy page setting updated successfully. Remember to update your menus!'=>'La page de politique de confidentialité a bien été mise à jour. Pensez à mettre à jour vos menus !','Copy suggested policy text from %s.'=>'Copier la suggestion de politique de confidentialité depuis %s.','Howdy, Your request for an export of personal data has been completed. You may download your personal data by clicking on the link below. For privacy @@ -52,11 +52,11 @@ Votre demande d’exportation de données personnelles a été traitée. Vous po Cordialement, L’équipe de ###SITENAME### -###SITEURL###','Email sent.'=>'E-mail envoyé.','Sending email...'=>'Envoi de l’e-mail…','Download personal data again'=>'Retélécharger les données personnelles','Unable to send personal data export email.'=>'Impossible d’envoyer l’exportation des données personnelles par e-mail.','[%s] Personal Data Export'=>'[%s] Exportation de données personnelles','Invalid request ID when sending personal data export email.'=>'ID non valide lors de l’envoi par e-mail des données d’exportation.','Personal Data Export'=>'Exportation de données personnelles','Personal Data Export for %s'=>'Exportation de données personnelles pour %s','A valid email address must be given.'=>'Erreur : une adresse e-mail valide doit être fournie.','Force erase personal data'=>'Forcer l’effacement des données personnelles','Remove request'=>'Supprimer la demande','Waiting for confirmation'=>'Attente de confirmation','Retry'=>'Réessayer','Downloading data...'=>'Téléchargement des données…','Download personal data'=>'Télécharger les données personnelles','Requested'=>'Demande envoyée','Requester'=>'Origine de la demande','Send Request'=>'Envoyer la demande de confirmation','Username or email address'=>'Identifiant ou adresse e-mail','Add Data Export Request'=>'Ajouter une demande d’exportation de données','Confirmation request initiated successfully.'=>'Demande de confirmation bien initialisée.','Unable to add this request. A valid email address or username must be supplied.'=>'Impossible d’ajouter cette demande. Une adresse e-mail ou un identifiant valide doit être fourni.','Confirmation request sent again successfully.'=>'Demande de confirmation bien ré-envoyée.','Unable to initiate confirmation request.'=>'Impossible d’initialiser la demande de confirmation.','Invalid request ID.'=>'ID de demande non valide.','Expected done flag in response array from %1$s eraser (index %2$d).'=>'Marqueur de résultat attendu dans le tableau de réponse de l’effaceur %1$s (index %2$d).','Expected messages key to reference an array in response array from %1$s eraser (index %2$d).'=>'Clé de messages de référence d’un tableau attendue dans le tableau de réponse de l’effaceur %1$s (index %2$d).','Expected messages key in response array from %1$s eraser (index %2$d).'=>'Clé de messages attendue dans le tableau de réponse de l’effaceur %1$s (index %2$d).','Expected items_retained key in response array from %1$s eraser (index %2$d).'=>'Clé items_retained attendue dans le tableau de réponse de l’effaceur %1$s (index %2$d).','Expected items_removed key in response array from %1$s eraser (index %2$d).'=>'Clé items_removed attendue dans le tableau de réponse de l’effaceur %1$s (index %2$d).','Did not receive array from %1$s eraser (index %2$d).'=>'Pas de tableau reçu depuis l’effaceur %1$s (index %2$d).','Eraser array at index %d does not include a friendly name.'=>'Le tableau d’effacement à l’index %d ne contient pas de nom élégant.','Expected an array describing the eraser at index %d.'=>'Un tableau décrivant l’effaceur à l’index %d est attendu.','Page index cannot be less than one.'=>'L’index de page ne peut pas être inférieur à 1.','Eraser index cannot be less than one.'=>'L’index de suppression ne peut pas être inférieur à 1.','Invalid email address in request.'=>'Adresse e-mail non valide dans la demande.','Requires PHP Version:'=>'Nécessite PHP en version :','This changeset cannot be further modified.'=>'Ce jeu de modifications ne peut pas être modifié davantage.','This data is used to provide general enhancements to WordPress, which includes helping to protect your site by finding and automatically installing new updates. It is also used to calculate statistics, such as those shown on the WordPress.org stats page.'=>'Ces données sont utilisées pour vous fournir des améliorations générales sur WordPress et pour vous aider à protéger votre site en vérifiant et en installant automatiquement les nouvelles mises à jour. Elles sont aussi utilisées à des fins statistiques comme celles que vous pouvez consulter sur la page des statistiques de WordPress.org.','There is no need to change your CSS here — you can edit and live preview CSS changes in the built-in CSS editor.'=>'Vous n’avez pas besoin de modifier votre CSS ici. Vous pouvez le faire et voir vos changements directement dans l’éditeur de CSS embarqué.','Did you know?'=>'Le saviez-vous ?','Noteworthy Contributors'=>'Contributrices & contributeurs remarquables','If you decide to go ahead with direct edits anyway, use a file manager to create a copy with a new name and hang on to the original. That way, you can re-enable a functional version if something goes wrong.'=>'Si vous décidez de foncer et de tout de même modifier le code directement, utilisez un gestionnaire de fichiers pour en créer une copie avec un autre nom et gardez-le près du code original. Ainsi, vous pourrez réactiver une version fonctionnelle si quelque chose tourne mal.','If you absolutely have to make direct edits to this plugin, use a file manager to create a copy with a new name and hang on to the original. That way, you can re-enable a functional version if something goes wrong.'=>'Si vous devez absolument modifier directement cette extension, utilisez un gestionnaire de fichiers pour en créer une copie avec un autre nom et gardez-le près du code original. Ainsi, vous pourrez réactiver une version fonctionnelle si quelque chose tourne mal.','You appear to be making direct edits to your plugin in the WordPress dashboard. Editing plugins directly is not recommended as it may introduce incompatibilities that break your site and your changes may be lost in future updates.'=>'Il semble que vous soyez en train de modifier directement votre extension dans le tableau de bord de WordPress. Ce n’est pas recommandé ! Modifier directement les extensions peut introduire des incompatibilités futures qui pourraient casser votre site et vos modifications risquent d’être perdues lors de futures mises à jour.','WordPress is not notifying any Update Services because of your site’s visibility settings.'=>'WordPress ne notifie aucun service de mise à jour du fait de vos réglages de visibilité.','Error: The root directory of your site is not writable, so creating a file automatically was not possible. This is the URL rewrite rule you should have in your %2$s file. Create a new file called %2$s in the root directory of your site. Click in the field and press %3$s (or %4$s on Mac) to select all. Then insert this code into the %2$s file.'=>'Si le répertoire racine de votre site était accessible en écriture, cela aurait pu être fait automatiquement, mais ce n’est pas le cas donc voici la règle de réécriture des URL que vous devriez placer dans votre fichier %2$s. Créez un nouveau fichier nommé %2$s sur le répertoire racine de votre site. Cliquez dans le champ et appuyez sur %3$s (ou %4$s sur Mac) pour tout sélectionner. Insérez ensuite ce code dans votre fichier %2$s.','Enter the same address here unless you want your site home page to be different from your WordPress installation directory.'=>'Saisissez la même adresse, sauf si vous souhaitez que la page d’accueil de votre site soit différente du répertoire de votre installation WordPress.','We take privacy and transparency very seriously. To learn more about what data we collect, and how we use it, please visit our Privacy Policy.'=>'Nous prenons très au sérieux le respect de la vie privée et la transparence. Pour en savoir plus sur les données que nous collectons, et comment nous les utilisons, veuillez visiter notre politique de confidentialité.','https://wordpress.org/about/license/'=>'https://fr.wordpress.org/about/license/','From time to time, your WordPress site may send data to WordPress.org — including, but not limited to — the version you are using, and a list of installed plugins and themes.'=>'De temps en temps, votre site WordPress peut envoyer des données sur WordPress.org incluant entre autres la version de WordPress utilisée et la liste des extensions et des thèmes installés.','Uploaded on: %s'=>'Téléversé le : %s','Downloading installation package from %s…'=>'Téléchargement du paquet d’installation depuis %s…','Downloading translation from %s…'=>'Téléchargement des traductions depuis %s…','Downloading update from %s…'=>'Téléchargement de la mise à jour depuis %s…','Likely direct inclusion of %1$s in order to use %2$s. This is very wrong. Hook the %2$s call into the %3$s action instead.'=>'Probable inclusion directe de %1$s afin d’utiliser %2$s. Ceci est vraiment une mauvaise idée. Vous devriez plutôt crocheter l’appel %2$s dans l’action %3$s.','Customization Draft'=>'Brouillon de personnalisation','This draft comes from your unpublished customization changes. You can edit, but there is no need to publish now. It will be published automatically with those changes.'=>'Ce brouillon vient de vos changements de personnalisation non publiés. Vous pouvez le modifier, mais inutile de le publier maintenant. Il sera publié automatiquement avec ces changements.','Theme Files'=>'Fichiers du thème','folder'=>'dossier','Unable to communicate back with site to check for fatal errors, so the PHP change was reverted. You will need to upload your PHP file change by some other means, such as by using SFTP.'=>'Impossible d’envoyer un message au site afin de vérifier l’absence d’erreurs fatales. Du coup, la modification PHP a été annulée. Vous allez devoir téléverser votre fichier PHP modifié par un autre moyen, par exemple en utilisant un client FTP.','Installation Required'=>'Installation nécessaire','Could not fully remove the plugin %s.'=>'Impossible de supprimer l’extension %s.','User has been created, but could not be added to this site.'=>'Le compte a été créé, mais il ne peut pas être ajouté à ce site.','That user could not be added to this site.'=>'Ce compte ne peut pas être ajouté à ce site.','Disable syntax highlighting when editing code'=>'Désactiver le surlignage syntaxique lors de l’édition de code','Syntax Highlighting'=>'Édition de code','Run the installation'=>'Lancer l’installation','https://wordpress.org/about/privacy/'=>'https://fr.wordpress.org/about/privacy/','Press This is not available. Please contact your site administrator.'=>'Press This n’est pas disponible. Veuillez contacter l’administrateur ou l’administratrice du site.','Press This is not installed. Please install Press This from the main site.'=>'Press This n’est pas installé. Veuillez installer Press This depuis le site principal.','Activate Press This'=>'Activer Press This','I understand'=>'Je comprends','Heads up!'=>'Faites attention !','Warning: Making changes to active plugins is not recommended.'=>'Avertissement : Effectuer des modifications dans les extensions actives n’est pas recommandé.','Selected file content:'=>'Contenu du fichier sélectionné :','There was an error while trying to update the file. You may need to fix something and try updating again.'=>'Une erreur s’est produite lors de la mise à jour. Vous devriez essayer de corriger quelque chose et réessayer.','Homepage: %s'=>'Page d’accueil : %s','Available tags:'=>'Balises disponibles :','%s (already used in permalink structure)'=>'%s (déjà utilisé dans la structure de permalien)','%s added to permalink structure'=>'%s ajouté à la structure du permalien','%s (A sanitized version of the author name.)'=>'%s (Une version normalisée du nom de l’auteur ou de l’autrice)','%s (Category slug. Nested sub-categories appear as nested directories in the URL.)'=>'%s (slug de catégorie. Les sous-catégories imbriquées apparaissent sous la forme de sous-répertoires dans l’URL.)','%s (The sanitized post title (slug).)'=>'%s (Le titre normalisé de la publication, ou slug)','%s (The unique ID of the post, for example 423.)'=>'%s (L’ID unique de la publication, par exemple 423)','%s (Second of the minute, for example 33.)'=>'%s (Seconde de la minute, par exemple 33.)','%s (Minute of the hour, for example 43.)'=>'%s (Minute de l’heure, par exemple 43.)','%s (Hour of the day, for example 15.)'=>'%s (Heure de la journée, par exemple 15.)','%s (Day of the month, for example 28.)'=>'%s (Jour du mois, par exemple 28.)','%s (Month of the year, for example 05.)'=>'%s (Mois de l’année, par exemple 05.)','%s (The year of the post, four digits, for example 2004.)'=>'%s (L’année de la publication, en quatre chiffres, par exemple 2004)','Theme Installation'=>'Installation du thème','%s is currently editing this post.'=>'%s modifie actuellement cette publication.','%s is currently editing this post. Do you want to take over?'=>'%s modifie actuellement cette publication. Voulez-vous prendre la main ?','Custom installation script.'=>'Script personnalisé d’installation.','Active Installations:'=>'Installations actives :','Plugin Installation'=>'Installation de l’extension','Settings — This page shows a list of all settings associated with this site. Some are created by WordPress and others are created by plugins you activate. Note that some fields are grayed out and say Serialized Data. You cannot modify these values due to the way the setting is stored in the database.'=>'Réglages — Cette page affiche une liste de tous les réglages associés à ce site. Certains sont créés par WordPress, d’autres par les extensions que vous activez. Notez que certains champs sont grisé et affichent « Serialized Data » ; vous ne pouvez pas modifier ces valeurs en raison de la manière dont elles sont stockées dans la base de données.','Themes — This area shows themes that are not already enabled across the network. Enabling a theme in this menu makes it accessible to this site. It does not activate the theme, but allows it to show in the site’s Appearance menu. To enable a theme for the entire network, see the Network Themes screen.'=>'Thèmes — Cette zone affiche les thèmes qui n’ont pas encore été activés sur le réseau. Un thème activé dans ce menu le rendra accessible au présent site. Cela n’active pas le thème, mais l’affichera dans le menu Apparence du site. Pour activer un thème sur l’ensemble du réseau, allez sur l’écran Thèmes du réseau.','Users — This displays the users associated with this site. You can also change their role, reset their password, or remove them from the site. Removing the user from the site does not remove the user from the network.'=>'Comptes — Cette page affiche les comptes associés à ce site. Vous pouvez modifier leur rôle, réinitialiser leur mot de passe, ou les supprimer du site. Supprimer un compte d’un site ne le supprime pas du réseau.','Info — The site URL is rarely edited as this can cause the site to not work properly. The Registered date and Last Updated date are displayed. Network admins can mark a site as archived, spam, deleted and mature, to remove from public listings or disable.'=>'Info — L’URL du site est rarement modifiée, car cela peut empêcher le site de fonctionner correctement. Les dates de création et de dernière mise à jour sont affichées. Les administrateurs ou administratrices du réseau peuvent archiver un site, le marquer comme indésirable, le supprimer et le marquer comme étant « pour adultes », afin de le retirer de la liste publique, ou le désactiver.','The menu is for editing information specific to individual sites, particularly if the admin area of a site is unavailable.'=>'Le menu sert à modifier les informations propres à chaque site, notamment si leur interface d’administration est inaccessible.','Unable to write to file.'=>'Impossible d’écrire sur le fichier.','Your PHP code changes were not applied due to an error on line %1$s of file %2$s. Please fix and try saving again.'=>'Vos modifications de code PHP ont été annulées en raison d’une erreur sur la ligne %1$s du fichier %2$s. Veuillez la corriger et réessayer d’enregistrer.','Events and News dashboard widgethttps://wordpress.org/news/'=>'https://fr.wordpress.org/news/','Your Recent Drafts'=>'Vos brouillons récents','nameUnknown'=>'Inconnu','View posts by %s'=>'Voir les publications par %s','No description'=>'Aucune description','%s Active Installations'=>'%s installations actives','Theme installation failed.'=>'L’installation du thème a échoué.','Plugin installation failed.'=>'L’installation de l’extension a échoué.','Activate Plugin & Go to Press This'=>'Activer l’extension et aller sur Press This','Your scheduled changes just published'=>'Votre planification vient d’être publiée','themeActivate'=>'Activer','Allow link notifications from other blogs (pingbacks and trackbacks) on new posts'=>'Autoriser les notifications de lien en provenance d’autres blogs (pings et rétroliens) sur les nouvelles publications','Collapse Main menu'=>'Replier le menu principal','pluginNetwork Activate %s'=>'Activer %s sur le réseau','pluginActivate %s'=>'Activer %s','No media files found.'=>'Aucun fichier média trouvé.','Run Importer'=>'Lancer l’outil d’importation','Run %s'=>'Lancer %s','comment statusOpen'=>'Ouvert','Image Rotation'=>'Rotation de l’image','There are no events scheduled near you at the moment. Would you like to organize a WordPress event?'=>'Il n’y a aucun évènement planifié à proximité de vous pour le moment. Voulez-vous en organiser un ?','Edit User %s'=>'Modifier le compte %s','Edit widget: %s'=>'Modifier le widget : %s','https://make.wordpress.org/community/handbook/meetup-organizer/welcome/'=>'https://make.wordpress.org/community/handbook/meetup-organizer/welcome/','There are no events scheduled near %1$s at the moment. Would you like to organize a WordPress event?'=>'Il n’y a aucun évènement planifié à proximité de %1$s pour le moment. Voulez-vous en organiser un ?','Attend an upcoming event near %s.'=>'Participez à un évènement à venir près de %s.','Cincinnati'=>'Paris','City:'=>'Ville :','WordCamps'=>'WordCamps','Meetups'=>'Meetups','An error occurred. Please try again.'=>'Une erreur est survenue. Veuillez essayer à nouveau.','WordPress Events and News'=>'Évènements et nouveautés WordPress','l, M j, Y'=>'l j M Y','Unknown API error.'=>'Erreur d’API inconnue.','Invalid API response code (%d).'=>'Code de réponse d’API non valide (%d).','Sorry, you are not allowed to delete users.'=>'Désolé, vous n’avez pas l’autorisation de supprimer des comptes.','Sorry, you are not allowed to create users.'=>'Désolé, vous n’avez pas l’autorisation de créer des comptes.','short (~12 characters) label for hide controls buttonHide Controls'=>'Masquer les controles','Expand Sidebar'=>'Étendre la colonne latérale','Display location'=>'Afficher l’emplacement','ID #%1$s: %2$s Sorry, you are not allowed to remove this user.'=>'ID #%1$s : %2$s Désolé, vous n’avez pas l’autorisation pour supprimer ce compte.','You can select the language you wish to use while using the WordPress administration screen without affecting the language site visitors see.'=>'Vous pouvez sélectionner la langue que vous voulez utiliser pour l’administration de WordPress sans affecter la langue que les visiteurs du site voient.','Edit Filters'=>'Modifier les filtres','Clear current filters'=>'Réinitialiser les filtres actuels','Select one or more Theme features to filter by'=>'Sélectionner une ou plusieurs fonctionnalités de thèmes à filtrer','(%s ratings)'=>'(%s votes)','Current Background Image'=>'Image d’arrière plan actuelle','Current Header Image'=>'Image d’entête actuelle','Set status'=>'État','“%s” is locked'=>'« %s » est verrouillé','Active plugin installationsLess Than 10'=>'Inférieur à 10','Sorry, you are not allowed to attach files to this post.'=>'Désolé, vous n’avez pas l’autorisation d’attacher des fichiers à cette publication.','https://wordpress.org/plugins/'=>'https://fr.wordpress.org/plugins/','The Customizer allows you to preview changes to your site before publishing them. You can navigate to different pages on your site within the preview. Edit shortcuts are shown for some editable elements. The Customizer is intended for use with non-block themes.'=>'L’outil de personnalisation vous permet de prévisualiser les modifications sur votre site avant de les publier. Vous pouvez naviguer sur différentes pages de votre site au sein de la prévisualisation. Des raccourcis sont affichés pour certains éléments modifiables. La personnalisation est destinée à être utilisée avec des thèmes non basé sur les blocs.','Customize New Changes'=>'Personnaliser les nouvelles modifications','Background ScrollScroll'=>'Défilement','Background RepeatRepeat'=>'Répétition','Support'=>'Forums d’entraide','You can find new plugins to install by searching or browsing the directory right here in your own Plugins section.'=>'Vous pouvez trouver des nouvelles extensions à installer en recherchant ou en parcourant le répertoire ici même dans votre section des extensions.','Plugins hook into WordPress to extend its functionality with custom features. Plugins are developed independently from the core WordPress application by thousands of developers all over the world. All plugins in the official WordPress Plugin Directory are compatible with the license WordPress uses.'=>'Les extensions étendent les fonctionnalités de WordPress avec des fonctions personnalisées. Les extensions sont développées indépendamment du cœur de WordPress par des milliers de développeurs partout dans le monde. Toutes les extensions dans le répertoire WordPress sont compatibles avec la licence d’utilisation de WordPress.','Search plugins by:'=>'Rechercher des extensions par :','Import posts, pages, comments, custom fields, categories, and tags from a WordPress export file.'=>'Importer des articles, pages, commentaires, champs personnalisés, catégories et étiquettes depuis un fichier d’exportation de WordPress.','Import posts & media from Tumblr using their API.'=>'Importer des articles et des fichiers média depuis Tumblr via leur API.','Import posts from an RSS feed.'=>'Importer des articles depuis un flux RSS.','Import posts and comments from a Movable Type or TypePad blog.'=>'Importer des articles et commentaires depuis un blog Movable Type ou TypePad.','Import posts from LiveJournal using their API.'=>'Importer des articles depuis LiveJournal via leur API.','Convert existing categories to tags or tags to categories, selectively.'=>'Convertir les catégories existantes en étiquettes, ou les étiquettes en catégories, de manière sélective.','Import posts, comments, and users from a Blogger blog.'=>'Importer des articles, commentaires et comptes depuis un blog Blogger.','pluginDeactivate %s'=>'Désactiver %s','pluginDelete %s'=>'Supprimer %s','pluginNetwork Deactivate %s'=>'Désactiver %s du réseau','By default, new users will receive an email letting them know they’ve been added as a user for your site. This email will also contain a password reset link. Uncheck the box if you do not want to send the new user a welcome email.'=>'Par défaut, les nouveaux comptes recevront un e-mail leur indiquant leur ajout en tant que membre de votre site. Cet e-mail contiendra également un lien de réinitialisation de leur mot de passe. Cochez la case si vous ne souhaitez pas envoyer de message de bienvenue.','New users are automatically assigned a password, which they can change after logging in. You can view or edit the assigned password by clicking the Show Password button. The username cannot be changed once the user has been added.'=>'Les nouveaux comptes reçoivent automatiquement un mot de passe, qui peut être changé après connexion. Vous pouvez afficher le mot de passe ou le modifier en cliquant sur le bouton « Afficher ». L’identifiant ne peut pas être modifié une fois que le compte a été créé.','plugin%s was successfully deleted.'=>'%s a bien été supprimée.','The search for installed plugins will search for terms in their name, description, or author.'=>'La recherche dans les extensions installées sera faite sur les noms des extensions, leurs descriptions, leurs auteurs ou autrices.','Custom Logo'=>'Logo personnalisé','Sorry, you are not allowed to remove users.'=>'Désolé, vous n’avez pas l’autorisation de supprimer des comptes.','Sorry, you are not allowed to add users to this network.'=>'Désolé, vous n’avez pas l’autorisation d’ajouter des comptes pour ce réseau.','Sorry, you are not allowed to edit this changeset.'=>'Désolé, vous n’avez pas l’autorisation de modifier ce groupe de modifications.','Sorry, you are not allowed to update themes for this site.'=>'Désolé, vous n’avez pas l’autorisation de mettre à jour les thèmes de ce site.','Sorry, you are not allowed to update this site.'=>'Désolé, vous n’avez pas l’autorisation de mettre à jour ce site.','New version available. '=>'Nouvelle version disponible. ','The Theme Installer screen requires JavaScript.'=>'L’écran d’installation de thèmes nécessite JavaScript.','Sorry, you are not allowed to edit templates for this site.'=>'Désolé, vous n’avez pas l’autorisation de modifier les modèles de ce site.','Error: "Table Prefix" is invalid.'=>'Erreur : préfixe de table invalide.','Sorry, you are not allowed to deactivate plugins for this site.'=>'Désolé, vous n’avez pas l’autorisation de désactiver les extensions de ce site.','Sorry, you are not allowed to activate plugins for this site.'=>'Désolé, vous n’avez pas l’autorisation d’activer les extensions de ce site.','Sorry, you are not allowed to edit plugins for this site.'=>'Désolé, vous n’avez pas l’autorisation de modifier les extensions de ce site.','Sorry, you are not allowed to modify unregistered settings for this site.'=>'Désolé, vous n’avez pas l’autorisation de modifier les réglages non enregistrés de ce site.','Sorry, you are not allowed to manage options for this site.'=>'Désolé, vous n’avez pas l’autorisation de gérer les options de ce site.','Manage with Live Preview'=>'Gérer avec la prévisualisation en direct','Sorry, you are not allowed to delete this site.'=>'Désolé, vous n’avez pas l’autorisation de supprimer ce site.','Sorry, you are not allowed to add links to this site.'=>'Désolé, vous n’avez pas l’autorisation d’ajouter des liens pour ce site.','Hi, this is a comment. +###SITEURL###','Email sent.'=>'E-mail envoyé.','Sending email...'=>'Envoi de l’e-mail…','Download personal data again'=>'Retélécharger les données personnelles','Unable to send personal data export email.'=>'Impossible d’envoyer l’exportation des données personnelles par e-mail.','[%s] Personal Data Export'=>'[%s] Exportation de données personnelles','Invalid request ID when sending personal data export email.'=>'ID non valide lors de l’envoi par e-mail des données d’exportation.','Personal Data Export'=>'Exportation de données personnelles','Personal Data Export for %s'=>'Exportation de données personnelles pour %s','A valid email address must be given.'=>'Erreur : une adresse e-mail valide doit être fournie.','Force erase personal data'=>'Forcer l’effacement des données personnelles','Remove request'=>'Supprimer la demande','Waiting for confirmation'=>'Attente de confirmation','Retry'=>'Réessayer','Downloading data...'=>'Téléchargement des données…','Download personal data'=>'Télécharger les données personnelles','Requested'=>'Demande envoyée','Requester'=>'Origine de la demande','Send Request'=>'Envoyer la demande de confirmation','Username or email address'=>'Identifiant ou adresse e-mail','Add Data Export Request'=>'Ajouter une demande d’exportation de données','Confirmation request initiated successfully.'=>'Demande de confirmation bien initialisée.','Unable to add this request. A valid email address or username must be supplied.'=>'Impossible d’ajouter cette demande. Une adresse e-mail ou un identifiant valide doit être fourni.','Confirmation request sent again successfully.'=>'Demande de confirmation bien ré-envoyée.','Unable to initiate confirmation request.'=>'Impossible d’initialiser la demande de confirmation.','Invalid request ID.'=>'ID de demande non valide.','Expected done flag in response array from %1$s eraser (index %2$d).'=>'Marqueur de résultat attendu dans le tableau de réponse de l’effaceur %1$s (index %2$d).','Expected messages key to reference an array in response array from %1$s eraser (index %2$d).'=>'Clé de messages de référence d’un tableau attendue dans le tableau de réponse de l’effaceur %1$s (index %2$d).','Expected messages key in response array from %1$s eraser (index %2$d).'=>'Clé de messages attendue dans le tableau de réponse de l’effaceur %1$s (index %2$d).','Expected items_retained key in response array from %1$s eraser (index %2$d).'=>'Clé items_retained attendue dans le tableau de réponse de l’effaceur %1$s (index %2$d).','Expected items_removed key in response array from %1$s eraser (index %2$d).'=>'Clé items_removed attendue dans le tableau de réponse de l’effaceur %1$s (index %2$d).','Did not receive array from %1$s eraser (index %2$d).'=>'Pas de tableau reçu depuis l’effaceur %1$s (index %2$d).','Eraser array at index %d does not include a friendly name.'=>'Le tableau d’effacement à l’index %d ne contient pas de nom élégant.','Expected an array describing the eraser at index %d.'=>'Un tableau décrivant l’effaceur à l’index %d est attendu.','Page index cannot be less than one.'=>'L’index de page ne peut pas être inférieur à 1.','Eraser index cannot be less than one.'=>'L’index de suppression ne peut pas être inférieur à 1.','Invalid email address in request.'=>'Adresse e-mail non valide dans la demande.','Requires PHP Version:'=>'Nécessite PHP en version :','This data is used to provide general enhancements to WordPress, which includes helping to protect your site by finding and automatically installing new updates. It is also used to calculate statistics, such as those shown on the WordPress.org stats page.'=>'Ces données sont utilisées pour vous fournir des améliorations générales sur WordPress et pour vous aider à protéger votre site en vérifiant et en installant automatiquement les nouvelles mises à jour. Elles sont aussi utilisées à des fins statistiques comme celles que vous pouvez consulter sur la page des statistiques de WordPress.org.','There is no need to change your CSS here — you can edit and live preview CSS changes in the built-in CSS editor.'=>'Vous n’avez pas besoin de modifier votre CSS ici. Vous pouvez le faire et voir vos changements directement dans l’éditeur de CSS embarqué.','Did you know?'=>'Le saviez-vous ?','Noteworthy Contributors'=>'Contributrices & contributeurs remarquables','If you decide to go ahead with direct edits anyway, use a file manager to create a copy with a new name and hang on to the original. That way, you can re-enable a functional version if something goes wrong.'=>'Si vous décidez de foncer et de tout de même modifier le code directement, utilisez un gestionnaire de fichiers pour en créer une copie avec un autre nom et gardez-le près du code original. Ainsi, vous pourrez réactiver une version fonctionnelle si quelque chose tourne mal.','If you absolutely have to make direct edits to this plugin, use a file manager to create a copy with a new name and hang on to the original. That way, you can re-enable a functional version if something goes wrong.'=>'Si vous devez absolument modifier directement cette extension, utilisez un gestionnaire de fichiers pour en créer une copie avec un autre nom et gardez-le près du code original. Ainsi, vous pourrez réactiver une version fonctionnelle si quelque chose tourne mal.','You appear to be making direct edits to your plugin in the WordPress dashboard. Editing plugins directly is not recommended as it may introduce incompatibilities that break your site and your changes may be lost in future updates.'=>'Il semble que vous soyez en train de modifier directement votre extension dans le tableau de bord de WordPress. Ce n’est pas recommandé ! Modifier directement les extensions peut introduire des incompatibilités futures qui pourraient casser votre site et vos modifications risquent d’être perdues lors de futures mises à jour.','WordPress is not notifying any Update Services because of your site’s visibility settings.'=>'WordPress ne notifie aucun service de mise à jour du fait de vos réglages de visibilité.','Error: The root directory of your site is not writable, so creating a file automatically was not possible. This is the URL rewrite rule you should have in your %2$s file. Create a new file called %2$s in the root directory of your site. Click in the field and press %3$s (or %4$s on Mac) to select all. Then insert this code into the %2$s file.'=>'Si le répertoire racine de votre site était accessible en écriture, cela aurait pu être fait automatiquement, mais ce n’est pas le cas donc voici la règle de réécriture des URL que vous devriez placer dans votre fichier %2$s. Créez un nouveau fichier nommé %2$s sur le répertoire racine de votre site. Cliquez dans le champ et appuyez sur %3$s (ou %4$s sur Mac) pour tout sélectionner. Insérez ensuite ce code dans votre fichier %2$s.','Enter the same address here unless you want your site home page to be different from your WordPress installation directory.'=>'Saisissez la même adresse, sauf si vous souhaitez que la page d’accueil de votre site soit différente du répertoire de votre installation WordPress.','https://wordpress.org/about/license/'=>'https://fr.wordpress.org/about/license/','From time to time, your WordPress site may send data to WordPress.org — including, but not limited to — the version you are using, and a list of installed plugins and themes.'=>'De temps en temps, votre site WordPress peut envoyer des données sur WordPress.org incluant entre autres la version de WordPress utilisée et la liste des extensions et des thèmes installés.','Uploaded on: %s'=>'Téléversé le : %s','Downloading installation package from %s…'=>'Téléchargement du paquet d’installation depuis %s…','Downloading translation from %s…'=>'Téléchargement des traductions depuis %s…','Downloading update from %s…'=>'Téléchargement de la mise à jour depuis %s…','Likely direct inclusion of %1$s in order to use %2$s. This is very wrong. Hook the %2$s call into the %3$s action instead.'=>'Probable inclusion directe de %1$s afin d’utiliser %2$s. Ceci est vraiment une mauvaise idée. Vous devriez plutôt crocheter l’appel %2$s dans l’action %3$s.','Customization Draft'=>'Brouillon de personnalisation','This draft comes from your unpublished customization changes. You can edit, but there is no need to publish now. It will be published automatically with those changes.'=>'Ce brouillon vient de vos changements de personnalisation non publiés. Vous pouvez le modifier, mais inutile de le publier maintenant. Il sera publié automatiquement avec ces changements.','Theme Files'=>'Fichiers du thème','folder'=>'dossier','Unable to communicate back with site to check for fatal errors, so the PHP change was reverted. You will need to upload your PHP file change by some other means, such as by using SFTP.'=>'Impossible d’envoyer un message au site afin de vérifier l’absence d’erreurs fatales. Du coup, la modification PHP a été annulée. Vous allez devoir téléverser votre fichier PHP modifié par un autre moyen, par exemple en utilisant un client FTP.','Installation Required'=>'Installation nécessaire','Could not fully remove the plugin %s.'=>'Impossible de supprimer l’extension %s.','User has been created, but could not be added to this site.'=>'Le compte a été créé, mais il ne peut pas être ajouté à ce site.','That user could not be added to this site.'=>'Ce compte ne peut pas être ajouté à ce site.','Disable syntax highlighting when editing code'=>'Désactiver le surlignage syntaxique lors de l’édition de code','Syntax Highlighting'=>'Édition de code','Run the installation'=>'Lancer l’installation','https://wordpress.org/about/privacy/'=>'https://fr.wordpress.org/about/privacy/','Press This is not available. Please contact your site administrator.'=>'Press This n’est pas disponible. Veuillez contacter l’administrateur ou l’administratrice du site.','Press This is not installed. Please install Press This from the main site.'=>'Press This n’est pas installé. Veuillez installer Press This depuis le site principal.','Activate Press This'=>'Activer Press This','I understand'=>'Je comprends','Heads up!'=>'Faites attention !','Warning: Making changes to active plugins is not recommended.'=>'Avertissement : Effectuer des modifications dans les extensions actives n’est pas recommandé.','Selected file content:'=>'Contenu du fichier sélectionné :','There was an error while trying to update the file. You may need to fix something and try updating again.'=>'Une erreur s’est produite lors de la mise à jour. Vous devriez essayer de corriger quelque chose et réessayer.','Homepage: %s'=>'Page d’accueil : %s','Available tags:'=>'Balises disponibles :','%s (already used in permalink structure)'=>'%s (déjà utilisé dans la structure de permalien)','%s added to permalink structure'=>'%s ajouté à la structure du permalien','%s (A sanitized version of the author name.)'=>'%s (Une version normalisée du nom de l’auteur ou de l’autrice)','%s (Category slug. Nested sub-categories appear as nested directories in the URL.)'=>'%s (slug de catégorie. Les sous-catégories imbriquées apparaissent sous la forme de sous-répertoires dans l’URL.)','%s (The sanitized post title (slug).)'=>'%s (Le titre normalisé de la publication, ou slug)','%s (The unique ID of the post, for example 423.)'=>'%s (L’ID unique de la publication, par exemple 423)','%s (Second of the minute, for example 33.)'=>'%s (Seconde de la minute, par exemple 33.)','%s (Minute of the hour, for example 43.)'=>'%s (Minute de l’heure, par exemple 43.)','%s (Hour of the day, for example 15.)'=>'%s (Heure de la journée, par exemple 15.)','%s (Day of the month, for example 28.)'=>'%s (Jour du mois, par exemple 28.)','%s (Month of the year, for example 05.)'=>'%s (Mois de l’année, par exemple 05.)','%s (The year of the post, four digits, for example 2004.)'=>'%s (L’année de la publication, en quatre chiffres, par exemple 2004)','Theme Installation'=>'Installation du thème','%s is currently editing this post.'=>'%s modifie actuellement cette publication.','%s is currently editing this post. Do you want to take over?'=>'%s modifie actuellement cette publication. Voulez-vous prendre la main ?','Custom installation script.'=>'Script personnalisé d’installation.','Active Installations:'=>'Installations actives :','Plugin Installation'=>'Installation de l’extension','Settings — This page shows a list of all settings associated with this site. Some are created by WordPress and others are created by plugins you activate. Note that some fields are grayed out and say Serialized Data. You cannot modify these values due to the way the setting is stored in the database.'=>'Réglages — Cette page affiche une liste de tous les réglages associés à ce site. Certains sont créés par WordPress, d’autres par les extensions que vous activez. Notez que certains champs sont grisé et affichent « Serialized Data » ; vous ne pouvez pas modifier ces valeurs en raison de la manière dont elles sont stockées dans la base de données.','Themes — This area shows themes that are not already enabled across the network. Enabling a theme in this menu makes it accessible to this site. It does not activate the theme, but allows it to show in the site’s Appearance menu. To enable a theme for the entire network, see the Network Themes screen.'=>'Thèmes — Cette zone affiche les thèmes qui n’ont pas encore été activés sur le réseau. Un thème activé dans ce menu le rendra accessible au présent site. Cela n’active pas le thème, mais l’affichera dans le menu Apparence du site. Pour activer un thème sur l’ensemble du réseau, allez sur l’écran Thèmes du réseau.','Users — This displays the users associated with this site. You can also change their role, reset their password, or remove them from the site. Removing the user from the site does not remove the user from the network.'=>'Comptes — Cette page affiche les comptes associés à ce site. Vous pouvez modifier leur rôle, réinitialiser leur mot de passe, ou les supprimer du site. Supprimer un compte d’un site ne le supprime pas du réseau.','Info — The site URL is rarely edited as this can cause the site to not work properly. The Registered date and Last Updated date are displayed. Network admins can mark a site as archived, spam, deleted and mature, to remove from public listings or disable.'=>'Info — L’URL du site est rarement modifiée, car cela peut empêcher le site de fonctionner correctement. Les dates de création et de dernière mise à jour sont affichées. Les administrateurs ou administratrices du réseau peuvent archiver un site, le marquer comme indésirable, le supprimer et le marquer comme étant « pour adultes », afin de le retirer de la liste publique, ou le désactiver.','The menu is for editing information specific to individual sites, particularly if the admin area of a site is unavailable.'=>'Le menu sert à modifier les informations propres à chaque site, notamment si leur interface d’administration est inaccessible.','Unable to write to file.'=>'Impossible d’écrire sur le fichier.','Your PHP code changes were not applied due to an error on line %1$s of file %2$s. Please fix and try saving again.'=>'Vos modifications de code PHP ont été annulées en raison d’une erreur sur la ligne %1$s du fichier %2$s. Veuillez la corriger et réessayer d’enregistrer.','Events and News dashboard widgethttps://wordpress.org/news/'=>'https://fr.wordpress.org/news/','Your Recent Drafts'=>'Vos brouillons récents','nameUnknown'=>'Inconnu','View posts by %s'=>'Voir les publications par %s','No description'=>'Aucune description','%s Active Installations'=>'%s installations actives','Theme installation failed.'=>'L’installation du thème a échoué.','Plugin installation failed.'=>'L’installation de l’extension a échoué.','Activate Plugin & Go to Press This'=>'Activer l’extension et aller sur Press This','Your scheduled changes just published'=>'Votre planification vient d’être publiée','themeActivate'=>'Activer','Allow link notifications from other blogs (pingbacks and trackbacks) on new posts'=>'Autoriser les notifications de lien en provenance d’autres blogs (pings et rétroliens) sur les nouvelles publications','pluginNetwork Activate %s'=>'Activer %s sur le réseau','pluginActivate %s'=>'Activer %s','No media files found.'=>'Aucun fichier média trouvé.','Run Importer'=>'Lancer l’outil d’importation','Run %s'=>'Lancer %s','comment statusOpen'=>'Ouvert','Image Rotation'=>'Rotation de l’image','There are no events scheduled near you at the moment. Would you like to organize a WordPress event?'=>'Il n’y a aucun évènement planifié à proximité de vous pour le moment. Voulez-vous en organiser un ?','Edit User %s'=>'Modifier le compte %s','Edit widget: %s'=>'Modifier le widget : %s','https://make.wordpress.org/community/handbook/meetup-organizer/welcome/'=>'https://make.wordpress.org/community/handbook/meetup-organizer/welcome/','There are no events scheduled near %1$s at the moment. Would you like to organize a WordPress event?'=>'Il n’y a aucun évènement planifié à proximité de %1$s pour le moment. Voulez-vous en organiser un ?','Attend an upcoming event near %s.'=>'Participez à un évènement à venir près de %s.','Cincinnati'=>'Paris','City:'=>'Ville :','WordCamps'=>'WordCamps','Meetups'=>'Meetups','An error occurred. Please try again.'=>'Une erreur s’est produite. Veuillez réessayer.','WordPress Events and News'=>'Évènements et nouveautés WordPress','l, M j, Y'=>'l j M Y','Unknown API error.'=>'Erreur d’API inconnue.','Invalid API response code (%d).'=>'Code de réponse d’API non valide (%d).','Sorry, you are not allowed to delete users.'=>'Désolé, vous n’avez pas l’autorisation de supprimer des comptes.','Sorry, you are not allowed to create users.'=>'Désolé, vous n’avez pas l’autorisation de créer des comptes.','short (~12 characters) label for hide controls buttonHide Controls'=>'Masquer les controles','Expand Sidebar'=>'Étendre la colonne latérale','Display location'=>'Afficher l’emplacement','ID #%1$s: %2$s Sorry, you are not allowed to remove this user.'=>'ID #%1$s : %2$s Désolé, vous n’avez pas l’autorisation pour supprimer ce compte.','You can select the language you wish to use while using the WordPress administration screen without affecting the language site visitors see.'=>'Vous pouvez sélectionner la langue que vous voulez utiliser pour l’administration de WordPress sans affecter la langue que les visiteurs du site voient.','Edit Filters'=>'Modifier les filtres','Clear current filters'=>'Réinitialiser les filtres actuels','Select one or more Theme features to filter by'=>'Sélectionner une ou plusieurs fonctionnalités de thèmes à filtrer','(%s ratings)'=>'(%s votes)','Current Background Image'=>'Image d’arrière plan actuelle','Current Header Image'=>'Image d’entête actuelle','Set status'=>'État','“%s” is locked'=>'« %s » est verrouillé','Active plugin installationsLess Than 10'=>'Inférieur à 10','Sorry, you are not allowed to attach files to this post.'=>'Désolé, vous n’avez pas l’autorisation d’attacher des fichiers à cette publication.','https://wordpress.org/plugins/'=>'https://fr.wordpress.org/plugins/','The Customizer allows you to preview changes to your site before publishing them. You can navigate to different pages on your site within the preview. Edit shortcuts are shown for some editable elements. The Customizer is intended for use with non-block themes.'=>'L’outil de personnalisation vous permet de prévisualiser les modifications sur votre site avant de les publier. Vous pouvez naviguer sur différentes pages de votre site au sein de la prévisualisation. Des raccourcis sont affichés pour certains éléments modifiables. La personnalisation est destinée à être utilisée avec des thèmes non basé sur les blocs.','Customize New Changes'=>'Personnaliser les nouvelles modifications','Background ScrollScroll'=>'Défilement','Background RepeatRepeat'=>'Répétition','You can find new plugins to install by searching or browsing the directory right here in your own Plugins section.'=>'Vous pouvez trouver des nouvelles extensions à installer en recherchant ou en parcourant le répertoire ici même dans votre section des extensions.','Plugins hook into WordPress to extend its functionality with custom features. Plugins are developed independently from the core WordPress application by thousands of developers all over the world. All plugins in the official WordPress Plugin Directory are compatible with the license WordPress uses.'=>'Les extensions étendent les fonctionnalités de WordPress avec des fonctions personnalisées. Les extensions sont développées indépendamment du cœur de WordPress par des milliers de développeurs partout dans le monde. Toutes les extensions dans le répertoire WordPress sont compatibles avec la licence d’utilisation de WordPress.','Search plugins by:'=>'Rechercher des extensions par :','Import posts, pages, comments, custom fields, categories, and tags from a WordPress export file.'=>'Importer des articles, pages, commentaires, champs personnalisés, catégories et étiquettes depuis un fichier d’exportation de WordPress.','Import posts & media from Tumblr using their API.'=>'Importer des articles et des fichiers média depuis Tumblr via leur API.','Import posts from an RSS feed.'=>'Importer des articles depuis un flux RSS.','Import posts and comments from a Movable Type or TypePad blog.'=>'Importer des articles et commentaires depuis un blog Movable Type ou TypePad.','Import posts from LiveJournal using their API.'=>'Importer des articles depuis LiveJournal via leur API.','Convert existing categories to tags or tags to categories, selectively.'=>'Convertir les catégories existantes en étiquettes, ou les étiquettes en catégories, de manière sélective.','Import posts, comments, and users from a Blogger blog.'=>'Importer des articles, commentaires et comptes depuis un blog Blogger.','pluginDeactivate %s'=>'Désactiver %s','pluginDelete %s'=>'Supprimer %s','pluginNetwork Deactivate %s'=>'Désactiver %s du réseau','By default, new users will receive an email letting them know they’ve been added as a user for your site. This email will also contain a password reset link. Uncheck the box if you do not want to send the new user a welcome email.'=>'Par défaut, les nouveaux comptes recevront un e-mail leur indiquant leur ajout en tant que membre de votre site. Cet e-mail contiendra également un lien de réinitialisation de leur mot de passe. Cochez la case si vous ne souhaitez pas envoyer de message de bienvenue.','New users are automatically assigned a password, which they can change after logging in. You can view or edit the assigned password by clicking the Show Password button. The username cannot be changed once the user has been added.'=>'Les nouveaux comptes reçoivent automatiquement un mot de passe, qui peut être changé après connexion. Vous pouvez afficher le mot de passe ou le modifier en cliquant sur le bouton « Afficher ». L’identifiant ne peut pas être modifié une fois que le compte a été créé.','plugin%s was successfully deleted.'=>'%s a bien été supprimée.','The search for installed plugins will search for terms in their name, description, or author.'=>'La recherche dans les extensions installées sera faite sur les noms des extensions, leurs descriptions, leurs auteurs ou autrices.','Custom Logo'=>'Logo personnalisé','Sorry, you are not allowed to remove users.'=>'Désolé, vous n’avez pas l’autorisation de supprimer des comptes.','Sorry, you are not allowed to add users to this network.'=>'Désolé, vous n’avez pas l’autorisation d’ajouter des comptes pour ce réseau.','Sorry, you are not allowed to edit this changeset.'=>'Désolé, vous n’avez pas l’autorisation de modifier ce groupe de modifications.','Sorry, you are not allowed to update themes for this site.'=>'Désolé, vous n’avez pas l’autorisation de mettre à jour les thèmes de ce site.','Sorry, you are not allowed to update this site.'=>'Désolé, vous n’avez pas l’autorisation de mettre à jour ce site.','New version available. '=>'Nouvelle version disponible. ','The Theme Installer screen requires JavaScript.'=>'L’écran d’installation de thèmes nécessite JavaScript.','Sorry, you are not allowed to edit templates for this site.'=>'Désolé, vous n’avez pas l’autorisation de modifier les modèles de ce site.','Error: "Table Prefix" is invalid.'=>'Erreur : préfixe de table invalide.','Sorry, you are not allowed to deactivate plugins for this site.'=>'Désolé, vous n’avez pas l’autorisation de désactiver les extensions de ce site.','Sorry, you are not allowed to activate plugins for this site.'=>'Désolé, vous n’avez pas l’autorisation d’activer les extensions de ce site.','Sorry, you are not allowed to edit plugins for this site.'=>'Désolé, vous n’avez pas l’autorisation de modifier les extensions de ce site.','Sorry, you are not allowed to modify unregistered settings for this site.'=>'Désolé, vous n’avez pas l’autorisation de modifier les réglages non enregistrés de ce site.','Sorry, you are not allowed to manage options for this site.'=>'Désolé, vous n’avez pas l’autorisation de gérer les options de ce site.','Manage with Live Preview'=>'Gérer avec la prévisualisation en direct','Sorry, you are not allowed to delete this site.'=>'Désolé, vous n’avez pas l’autorisation de supprimer ce site.','Sorry, you are not allowed to add links to this site.'=>'Désolé, vous n’avez pas l’autorisation d’ajouter des liens pour ce site.','Hi, this is a comment. To get started with moderating, editing, and deleting comments, please visit the Comments screen in the dashboard. Commenter avatars come from Gravatar.'=>'Bonjour, ceci est un commentaire. Pour débuter avec la modération, la modification et la suppression de commentaires, veuillez visiter l’écran des Commentaires dans le Tableau de bord. -Les avatars des personnes qui commentent arrivent depuis Gravatar.','theme%s was successfully deleted.'=>'%s a bien été supprimé.','WordPress %2$s is available! Please notify the site administrator.'=>'WordPress %2$s est disponible ! Veuillez informer l’administrateur ou l’administratrice du site.','Please update WordPress now'=>'Veuillez mettre WordPress à jour maintenant','WordPress %2$s is available! Please update now.'=>'WordPress %2$s est disponible ! Veuillez mettre à jour maintenant.','Portfolio'=>'Portfolio','Photography'=>'Photographie','News'=>'Actualités','Food & Drink'=>'Nourriture & Boisson','Entertainment'=>'Divertissement','Education'=>'Éducation','E-Commerce'=>'E-Commerce','Blog'=>'Blog','Footer Widgets'=>'Widgets de pied de page','Grid Layout'=>'Style en grille','This will replace the current editor content with the last backup version. You can use undo and redo in the editor to get the old content back or to return to the restored version.'=>'Cela remplacera le contenu actuel de l’éditeur par la dernière version sauvegardée. Vous pouvez utiliser les outils Annuler et Rétablir pour rétablir l’ancien contenu ou revenir à la version sauvegardée.','Close media attachment panel'=>'Fermer le panneau des fichiers joints.','Info'=>'Info','Need help? Use the Help tab above the screen title.'=>'Besoin d’aide ? Utilisez l’onglet « Aide » au dessus du titre de l’écran.','Sorry, you are not allowed to access this page.'=>'Désolé, vous n’avez pas l’autorisation d’accéder à cette page.','Embed Footer Template'=>'Modèle intégré de pied de page','Embed Header Template'=>'Modèle intégré d’entête','Embed Content Template'=>'Modèle intégré de contenu','Embed 404 Template'=>'Modèle intégré 404','Embed Template'=>'Modèle intégré','pluginActive'=>'Actif','(Private post)'=>'(Publication privée)','Sorry, you are not allowed to edit the links for this site.'=>'Désolé, vous n’avez pas l’autorisation de modifier les liens de ce site.','Sorry, you are not allowed to manage privacy options on this site.'=>'Désolé, vous n’avez pas l’autorisation de gérer les options de confidentialité sur ce site.','Plugin could not be deleted.'=>'L’extension ne peut pas être supprimée.','Sorry, you are not allowed to update plugins for this site.'=>'Désolé, vous n’avez pas l’autorisation de mettre à jour des extensions sur ce site.','Sorry, you are not allowed to activate plugins on this site.'=>'Désolé, vous n’avez pas l’autorisation d’activer des extensions sur ce site.','Theme could not be deleted.'=>'Le thème ne peut pas être supprimé.','Sorry, you are not allowed to delete themes on this site.'=>'Désolé, vous n’avez pas l’autorisation de supprimer les thèmes de ce site.','Sorry, you are not allowed to install themes on this site.'=>'Désolé, vous n’avez pas l’autorisation d’installer des thèmes sur ce site.','No theme specified.'=>'Aucun thème spécifié.','Sorry, you are not allowed to import content into this site.'=>'Désolé, vous n’avez pas l’autorisation d’importer du contenu sur ce site.','Sorry, you are not allowed to export the content of this site.'=>'Désolé, vous n’avez pas l’autorisation d’exporter le contenu de ce site.','You can filter the list of posts by post status using the text links above the posts list to only show posts with that status. The default view is to show all posts.'=>'Vous pouvez filtrer la liste des articles par état en utilisant les liens au dessus de la liste des articles pour n’afficher que les articles avec cet état. La vue par défaut affiche tous les articles.','Close the Customizer and go back to the previous page'=>'Fermer l’outil de personnalisation et retour vers la page précédente.','Sorry, you are not allowed to customize headers.'=>'Désolé, vous n’avez pas l’autorisation de personnaliser les entêtes.','Release Deputy'=>'Assistant·e de la direction de cette version','Release Design Lead'=>'Responsable du design de cette version','Custom fields can be used to add extra metadata to a post that you can use in your theme.'=>'Les champs personnalisés peuvent être utilisés pour ajouter des métadonnées supplémentaires à une publication, que vous pouvez ensuite utiliser dans votre thème.','Trackbacks are a way to notify legacy blog systems that you’ve linked to them. If you link other WordPress sites, they’ll be notified automatically using pingbacks, no other action necessary.'=>'Un rétrolien est une manière de notifier les anciens systèmes de blog que vous avez fait un lien vers eux. Si vous faites des liens vers des sites WordPress, ils seront notifiés automatiquement à l’aide des pings (en), sans que vous n’ayez rien à faire.','Excerpts are optional hand-crafted summaries of your content that can be used in your theme. Learn more about manual excerpts.'=>'Les extraits sont des résumés facultatifs de vos articles, écrits à la main. Il se peut que votre thème s’en serve. En savoir plus.','The Text mode allows you to enter HTML along with your post text. Note that <p> and <br> tags are converted to line breaks when switching to the Text editor to make it less cluttered. When you type, a single line break can be used instead of typing <br>, and two line breaks instead of paragraph tags. The line breaks are converted back to tags automatically.'=>'Le mode textuel vous permet de saisir de saisir votre texte encadré par votre code HTML. Notez que les balises <p> et <br> sont converties en retours à la ligne lorsque vous entrez dans le mode texte, afin de moins encombrer la fenêtre. Lorsque vous saisissez du texte, un retour à la ligne vous suffit à générer un <br>, et deux retours à la ligne créeront une balise de paragraphe. Les retours à la ligne sont automatiquement convertis en balises HTML.','Visual mode gives you an editor that is similar to a word processor. Click the Toolbar Toggle button to get a second row of controls.'=>'Le mode visuel vous donne accès à un éditeur comparable à un traitement de texte. Cliquez sur le bouton d’ouverture/fermeture de la barre d’outils pour afficher une seconde rangée d’options.','Error saving media file.'=>'Une erreur est survenue lors de l’enregistrement du fichier média.','%s media file restored from the Trash.'=>'%s fichier média restauré depuis la corbeille.' . "\0" . '%s fichiers médias restaurés depuis la corbeille.','%s media file moved to the Trash.'=>'%s fichier média déplacé dans la corbeille.' . "\0" . '%s fichiers médias déplacés dans la corbeille.','%s media file permanently deleted.'=>'%s fichier média supprimé définitivement.' . "\0" . '%s fichiers médias supprimés définitivement.','%s media file detached.'=>'%s fichier média détaché.' . "\0" . '%s fichiers médias détachés.','Media file detached.'=>'Fichier média détaché.','%s media file attached.'=>'%s fichier média attaché.' . "\0" . '%s fichiers médias attachés.','Media file attached.'=>'Fichier média attaché.','Media file updated.'=>'Fichier média mis à jour.','View %1$s version %2$s details'=>'Voir les détails de la version %2$s de %1$s','dashboard%1$s, %2$s'=>'%1$s, %2$s','Publish — You can set the terms of publishing your post in the Publish box. For Status, Visibility, and Publish (immediately), click on the Edit link to reveal more options. Visibility includes options for password-protecting a post or making it stay at the top of your blog indefinitely (sticky). The Password protected option allows you to set an arbitrary password for each post. The Private option hides the post from everyone except editors and administrators. Publish (immediately) allows you to set a future or past date and time, so you can schedule a post to be published in the future or backdate a post.'=>'Publier - Vous pouvez définir la manière dont votre publication est mise en ligne dans la section « Publier ». Pour « État », « Visibilité », et « Publier tout de suite », un clic sur le lien « Modifier » affichera plus d’options. « Visibilité » inclut des options pour protéger la publication avec un mot de passe ou faire en sorte qu’elle reste haut de page indéfiniment (en avant). L’option de protection par mot de passe vous permet de protéger chacune de vos publications avec un mot de passe. L’option « Privée » cache la publication pour tout le monde, sauf aux éditeurs/éditrices et administrateurs/administratrices. « Publier tout de suite » vous permet de planifier la sortie de votre publication à une date précise, dans le futur ou le passé ; cela vous permet d’écrire à l’avance les publications à mettre en ligne, ou de les antidater.','There is a pending change of your email to %s.'=>'Il y a une modification de votre adresse e-mail en attente, en faveur de %s.','Error while saving the new email address. Please try again.'=>'Une erreur est survenue lors de l’enregistrement de votre adresse e-mail. Veuillez réessayer.','You can narrow the list by file type/status or by date using the dropdown menus above the media table.'=>'Vous pouvez limiter cette liste par type de fichier ou par état à l’aide des filtres situés au-dessus de la liste de médias.','The following themes are installed but incomplete.'=>'Les thèmes suivants sont installés mais incomplets.','New theme activated.'=>'Nouveau thème activé.','Settings saved and theme activated.'=>'Réglages enregistrés et thème activé.','https://wordpress.org/themes/'=>'https://fr.wordpress.org/themes/','Sorry, you are not allowed to delete that user.'=>'Désolé, vous n’avez pas l’autorisation de supprimer ce compte.','Your database password.'=>'Votre mot de passe de base de données.','Your database username.'=>'Votre identifiant MySQL.','The name of the database you want to use with WordPress.'=>'Le nom de la base de données avec laquelle vous souhaitez utiliser WordPress.','plugin%1$s by %2$s'=>'%1$s par %2$s','%1$s by %2$s (will also delete its data)'=>'%1$s par %2$s (attention : supprimera également les données liées)','There is a pending change of the admin email to %s.'=>'Il y a une modification en attente de l’adresse e-mail d’administration vers %s.','WordPress has been installed. Thank you, and enjoy!'=>'WordPress est installé. Merci et profitez bien !','The constant %s cannot be defined when installing WordPress.'=>'La constante %s ne peut pas être définie lors de l’installation de WordPress.','Your %s file has an empty database table prefix, which is not supported.'=>'Votre fichier %s a un préfixe de base de donnée vide, ce qui n’est pas supporté.','Dismiss the welcome panel'=>'Ignorer le panneau de bienvenue','Theme zip file'=>'Fichier zip du thème','Attach to existing content'=>'Attacher à un contenu existant','Click the image to edit or update'=>'Cliquez sur l’image pour la modifier ou la mettre à jour.','Reviews with %1$d star: %2$s. Opens in a new tab.'=>'Avis avec %1$d étoile : %2$s. S’ouvre dans une nouvelle fenêtre.' . "\0" . 'Avis avec %1$d étoiles : %2$s. S’ouvre dans une nouvelle fenêtre.','Read all reviews on WordPress.org or write your own!'=>'Lisez tous les avis sur WordPress.org ou écrivez le vôtre !','Reviews'=>'Avis','You are using a development version of WordPress. These feature plugins are also under development. Learn more.'=>'Vous utilisez une version en développement de WordPress. Ces fonctionnalités d’extensions sont aussi en développement. En savoir plus.','Thumbnail Settings Help'=>'Aide aux réglages de la miniature','selection height'=>'hauteur de la sélection','selection width'=>'largeur de la sélection','crop ratio height'=>'Proportion verticale','crop ratio width'=>'Proportion horizontale','Image Crop Help'=>'Aide au recadrage d’image','scale height'=>'redimensionner en hauteur','New dimensions:'=>'Nouvelles dimensions :','Scale Image Help'=>'Aide sur le redimensionnement d’image','Single Page'=>'Page individuelle','Singular Template'=>'Modèle individuel','Date Template'=>'Modèle de date','Taxonomy Template'=>'Modèle de taxonomie','Dismiss the browser warning panel'=>'Masquer l’alerte du navigateur','View more comments'=>'Voir plus de commentaires','dashboard%1$s on %2$s %3$s'=>'%1$s sur %2$s %3$s','View this comment'=>'Voir ce commentaire','Another update is currently in progress.'=>'Une autre mise à jour est actuellement en cours.','Update progress'=>'Progression de la mise à jour','View “%s” archive'=>'Voir l’archive pour « %s »','Delete “%s”'=>'Supprimer « %s »','Quick edit “%s” inline'=>'Modifier rapidement « %s » en ligne','Search for plugins in the WordPress Plugin Directory.'=>'Rechercher des extensions dans le répertoire des extensions WordPress.','Restore “%s” from the Trash'=>'Restaurer « %s » depuis la corbeille','Delete “%s” permanently'=>'Supprimer « %s » définitivement','Move “%s” to the Trash'=>'Déplacer « %s » dans la corbeille','Attach “%s” to existing content'=>'Attacher « %s » à du contenu existant','Detach from “%s”'=>'Détacher de « %s »','“%s” (Edit)'=>'« %s » (Modifier)','attachment filterTrash'=>'Corbeille','Quick edit this comment inline'=>'Modifier ce commentaire sur cette page','Edit this comment'=>'Modifier ce commentaire','Restore this comment from the spam'=>'Restaurer ce commentaire depuis les indésirables','user autocomplete result%1$s (%2$s)'=>'%1$s (%2$s)','The %s importer is invalid or is not installed.'=>'L’outil d’importation %s n’est pas installé ou n’est pas valide.','comment statusPending'=>'En attente','Suggested height is %s.'=>'La hauteur suggérée est de %s.','Suggested width is %s.'=>'La largeur suggérée est de %s.','Images should be at least %s tall.'=>'Les images devraient faire au moins %s de haut.','%d pixels'=>'%d pixels','Images should be at least %s wide.'=>'Les images doivent être large de %s minimum.','Send the new user an email about their account'=>'Envoyer un e-mail à la personne à propos de son nouveau compte.','Send User Notification'=>'Envoyer une notification au compte','menu location(Currently set to: %s)'=>'(Actuellement réglé sur : %s)','Version %s addressed one security issue.'=>'La version %s a corrigé une faille de sécurité.','https://gravatar.com/'=>'https://fr.gravatar.com/','Profile Picture'=>'Illustration du profil','Maintenance and Security Releases'=>'Mises à jour de maintenance et de sécurité','Security Releases'=>'Mises à jour de sécurité','Maintenance Releases'=>'Mises à jour de maintenance','Plain'=>'Simple','WordPress offers you the ability to create a custom URL structure for your permalinks and archives. Custom URL structures can improve the aesthetics, usability, and forward-compatibility of your links. A number of tags are available, and here are some examples to get you started.'=>'WordPress vous offre la possibilité de créer une structure personnalisée d’URL pour vos permaliens et archives. Ceci peut améliorer l’esthétique, l’utilisabilité et la pérennité de vos liens. De nombreuses balises sont disponibles, et nous vous donnons quelques exemples pour commencer.','Permalinks can contain useful information, such as the post date, title, or other elements. You can choose from any of the suggested permalink formats, or you can craft your own if you select Custom Structure.'=>'Un permalien peut contenir des informations utiles, telles que le titre de l’article, sa date de publication ou d’autres éléments. Vous pouvez choisir n’importe quel type de format de permalien parmi les réglages les plus courants, ou concevoir votre propre structure personnalisée.','You can create the %s file manually and paste the following text into it.'=>'Vous pouvez créer le fichier %s manuellement et y coller le contenu suivant.','You should be able to get this info from your web host, if %s does not work.'=>'Si %s ne fonctionne pas, demandez cette information à l’hébergeur de votre site.','If for any reason this automatic file creation does not work, do not worry. All this does is fill in the database information to a configuration file. You may also simply open %1$s in a text editor, fill in your information, and save it as %2$s.'=>'Si pour une raison ou pour une autre la création automatique du fichier ne fonctionne pas, ne vous inquiétez pas. Sa seule action est d’ajouter les informations de la base de données dans un fichier de configuration. Vous pouvez aussi simplement ouvrir %1$s dans un éditeur de texte, y remplir vos informations et l’enregistrer sous le nom de %2$s.','Default is %s'=>'Par défaut, %s','The language pack is missing either the %1$s, %2$s, or %3$s files.'=>'Il manque les fichiers %1$s, %2$s, ou %3$s au paquet de langue.','The %s stylesheet does not contain a valid theme header.'=>'Le fichier %s ne contient pas d’entête de thème valide.','The theme is missing the %s stylesheet.'=>'Le thème n’a pas de fichier %s.','If you have marked themes as favorites on WordPress.org, you can browse them here.'=>'Si vous avez mis des thèmes en favoris sur WordPress.org, vous pourrez les parcourir ici.','themesFavorites'=>'Favoris','Database repair results'=>'Résultats de la réparation de la base de données','Allow automatic database repair'=>'Autoriser la réparation automatique de la base de données','Successful database connection'=>'La connexion à la base de données s’est bien faite','Set up your database connection'=>'Configurer la connexion à votre base de données','Before getting started'=>'Avant de commencer','WordPress database repair'=>'Réparation de la base de données de WordPress','Check secret keys'=>'Vérifier les clés secrètes','%s has been updated.'=>'%s a été mis à jour.','The Walker class named %s does not exist.'=>'La classe Walker nommée %s n’existe pas.','Requires %1$s in %2$s file.'=>'Nécessite la constance %1$s dans le fichier %2$s.','Standard time begins on: %s.'=>'Le passage à l’heure d’hiver commence le %s.','Daylight saving time begins on: %s.'=>'Le passage à l’heure d’été commence le %s.','You are about to delete %s.'=>'Vous êtes sur le point de supprimer %s.','Files in the %s directory are executed automatically.'=>'Les fichiers du répertoire %s sont exécutés automatiquement.','This will clear all items from the inactive widgets list. You will not be able to restore any customizations.'=>'Cela supprimera tous les éléments de la liste des widgets désactivés. Vous ne pourrez récupérer aucune personnalisation.','Clear Inactive Widgets'=>'Vider les widgets désactivés','One of the selected users is not a member of this site.'=>'Un des comptes sélectionnés n’est pas membre de ce site.','Users list'=>'Liste des comptes','Users list navigation'=>'Navigation de la liste des comptes','Filter users list'=>'Liste des filtres utilisateurs','Media items list'=>'Liste des éléments média','Media items list navigation'=>'Navigation de la liste des éléments média','Filter media items list'=>'Filtrer la liste des fichiers média.','Install Parent Theme'=>'Installer le thème parent','Themes list'=>'Liste des thèmes','Filter themes list'=>'Filtrer la liste des thèmes','All selected plugins are up to date.'=>'Toutes les extensions sélectionnées sont à jour.','Plugins list'=>'Liste des extensions','Plugins list navigation'=>'Navigation de la liste des extensions','Filter plugins list'=>'Filtrer la liste des extensions','Browsing %s (inactive)'=>'Parcours de %s (désactivée)','Editing %s (inactive)'=>'Modification de %s (désactivée)','Browsing %s (active)'=>'Parcours de %s (activée)','Editing %s (active)'=>'Modification de %s (activée)','Local time is %s.'=>'L’heure locale est %s.','Links list'=>'Liste des liens','Get Version %s'=>'Obtenir la version %s','Toggle panel: %s'=>'Ouvrir/fermer la section %s','Saving revision…'=>'Enregistrement de la révision…','Edit permalink'=>'Modifier le permalien','The %1$s plugin header is deprecated. Use %2$s instead.'=>'L’entête d’extensions %1$s est obsolète. Utilisez plutôt %2$s.','Warning'=>'Avertissement','Warning:'=>'Attention :','Once you hit “Confirm Deletion”, these users will be permanently removed.'=>'Dès que vous aurez cliqué sur « Confirmer cette action », ces comptes seront définitivement supprimés.','Once you hit “Confirm Deletion”, the user will be permanently removed.'=>'Dès que vous aurez cliqué sur « Confirmer cette action », le compte sera définitivement supprimé.','User has no sites or content and will be deleted.'=>'Le compte n’a pas de site ou de contenu, et sera supprimé.','Site: %s'=>'Site : %s','Select a user'=>'Sélectionnez un compte','What should be done with content owned by %s?'=>'Que faire du contenu ayant %s pour propriétaire ?','Warning! User cannot be deleted. The user %s is a network administrator.'=>'Avertissement ! Le compte ne peut pas être supprimé. %s est administrateur ou administratrice du réseau.','Warning! User %s cannot be deleted.'=>'Avertissement ! Le compte %s ne peut pas être supprimé.','You have chosen to delete the following users from all networks and sites.'=>'Vous avez choisi de supprimer les comptes suivants de tous les réseaux et sites.','You have chosen to delete the user from all networks and sites.'=>'Vous avez choisi de supprimer le compte de tous les réseaux et sites.','Invalid image URL.'=>'URL non valide pour l’image.','Theme Header'=>'Entête du thème','Theme Footer'=>'Pied de page du thème','M jS Y'=>'j M Y','From %1$s %2$s'=>'De %1$s %2$s','View all drafts'=>'Voir tous les brouillons','no user rolesNone'=>'Aucun','No role'=>'Aucun rôle','An error occurred while updating %1$s: %2$s'=>'Une erreur est survenue lors de la mise à jour de %1$s : %2$s','View mode'=>'Mode d’affichage','%s column'=>'%s colonne' . "\0" . '%s colonnes','Additional settings'=>'Réglages supplémentaires','Items list'=>'Liste des éléments','Items list navigation'=>'Navigation de la liste des éléments','Filter items list'=>'Filtrer la liste des éléments','Network Only'=>'Réseau uniquement','Network Active'=>'Activé sur le réseau','No pending comments'=>'Aucun commentaire en attente','Failed to initialize a SFTP subsystem session with the SSH2 Server %s'=>'Échec de l’initialisation d’une session de sous-système SFTP avec le serveur SSH2 %s.','column nameSubmitted on'=>'Envoyé le','commentsTrash (%s)'=>'Mis à la corbeille (%s)' . "\0" . 'Mis à la corbeille (%s)','commentsSpam (%s)'=>'Indésirable (%s)' . "\0" . 'Indésirables (%s)','commentsApproved (%s)'=>'Approuvé (%s)' . "\0" . 'Approuvés (%s)','commentsPending (%s)'=>'En attente (%s)' . "\0" . 'En attente (%s)','commentsAll (%s)'=>'Tous (%s) ' . "\0" . 'Tous (%s) ','User %s added'=>'Le compte %s a été ajouté','End date:'=>'Date de fin :','Content to export'=>'Contenu à exporter','You can view posts in a simple title list or with an excerpt using the Screen Options tab.'=>'Vous pouvez voir la liste des publications en titre simple ou avec un extrait à l’aide du bouton « Options de l’écran ».','Submitted on: %s'=>'Envoyé le : %s','commentPermalink:'=>'Permalien :','Page draft updated.'=>'Le brouillon de la page a été mis à jour.','Page scheduled for: %s.'=>'Page planifiée pour le %s.','Page submitted.'=>'Page envoyée.','Post draft updated.'=>'Le brouillon de la publication a été mis à jour.','Post scheduled for: %s.'=>'Publication planifiée pour le %s.','Post submitted.'=>'Publication transmise.','View page'=>'Voir la page','Preview page'=>'Prévisualiser la page','Preview post'=>'Prévisualiser la publication','Comments list'=>'Liste des commentaires','Comments list navigation'=>'Navigation de la liste des commentaires','Filter comments list'=>'Filtrer la liste des commentaires','In the Submitted on column, the date and time the comment was left on your site appears. Clicking on the date/time link will take you to that comment on your live site.'=>'Dans la colonne « Envoyé le », vous trouverez la date et l’heure de publication du commentaire sur votre site. En cliquant sur le lien, vous ouvrirez la publication où se situe le commentaire.','In the Comment column, hovering over any comment gives you options to approve, reply (and approve), quick edit, edit, spam mark, or trash that comment.'=>'Dans la colonne Commentaire, survolez n’importe quel commentaire avec votre souris afin d’afficher les liens pour approuver ce commentaire, y répondre (en l’approuvant), le modifier rapidement, le marquer comme indésirable, ou le mettre à la corbeille.','Comments (%s)'=>'Commentaires (%s)','Comments (%1$s) on “%2$s”'=>'Commentaires (%1$s) sur « %2$s »','Sorry, you are not allowed to modify themes.'=>'Désolé, vous n’avez pas l’autorisation de modifier les thèmes.','The active theme does not support a flexible sized header image.'=>'Le thème actif ne prend pas en charge les images d’entête de taille variable.','The active theme does not support uploading a custom header image.'=>'Le thème actif ne prend pas en charge le téléversement d’images d’entête personnalisées.','You are using the auto-generated password for your account. Would you like to change it?'=>'Vous utilisez le mot de passe auto-généré pour votre compte. Voulez-vous le changer ?','You have specified this user for removal:'=>'Vous avez indiqué que ce compte devait être supprimé :','Log %s out of all locations.'=>'Déconnecter %s de tous les emplacements.','Did you lose your phone or leave your account logged in at a public computer? You can log out everywhere else, and stay logged in here.'=>'Avez-vous perdu votre téléphone ou laissé votre compte ouvert sur un ordinateur public ? Vous pouvez garder votre compte connecté ici tout en vous déconnectant partout ailleurs.','Log Out Everywhere Else'=>'Déconnecter partout ailleurs','Sessions'=>'Sessions','Cancel password change'=>'Annuler la modification du mot de passe','Generate password'=>'Générer un mot de passe','Account Management'=>'Gestion du compte','You will need this password to log in. Please store it in a secure location.'=>'Vous aurez besoin de ce mot de passe pour vous connecter. Pensez à le stocker dans un lieu sûr.','No approved comments'=>'Aucun commentaire approuvé','%s pending comment'=>'%s commentaire en attente' . "\0" . '%s commentaires en attente','%s approved comment'=>'%s commentaire approuvé' . "\0" . '%s commentaires approuvés','Image could not be processed.'=>'L’image n’a pas pu être traitée.','Confirm Password'=>'Confirmer le mot de passe','Remove Site Icon'=>'Supprimer l’icône du site','While you are editing your %1$s file, take a moment to make sure you have all 8 keys and that they are unique. You can generate these using the WordPress.org secret key service.'=>'Tandis que vous modifiez le fichier %1$s, prenez quelques minutes pour vous assurer que vous avez les 8 clés, et qu’elles sont bien uniques. Vous pouvez les générer avec le service de clés secrètes de WordPress.org.','Set as Site Icon'=>'Définir comme icône du site','Choose a Site Icon'=>'Choisir une icône de site','Show more details'=>'Afficher plus de détails','Your theme supports %s menu. Select which menu appears in each location.'=>'Votre thème peut utiliser %s menu. Sélectionnez le menu qui devra apparaître à chaque emplacement.' . "\0" . 'Votre thème peut utiliser %s menus. Sélectionnez les menus qui devront apparaître à chaque emplacement.','%s post by this author'=>'%s publication par cet auteur/autrice' . "\0" . '%s publications par cet auteur/autrice','Live Preview “%s”'=>'Prévisualisation de « %s »','last page'=>'dernière page','first page'=>'première page','In response to: %s'=>'En réponse à : %s','Date and time'=>'Date et heure','You can also embed media from many popular websites including Twitter, YouTube, Flickr and others by pasting the media URL on its own line into the content of your post/page. Learn more about embeds.'=>'Vous pouvez également insérer des contenus en provenance de nombreux sites populaires, comme Twitter, YouTube, Flickr et d’autres, simplement en collant l’URL du contenu dans sa propre ligne dans le texte de votre publication. En apprendre plus sur les contenus embarqués.','Documentation on Custom Background'=>'Documentation sur l’arrière-plan personnalisé (en anglais)','Documentation on Link Categories'=>'Documentation sur les catégories de liens (en anglais)','Documentation on Creating Links'=>'Documentation sur la création de liens (en anglais)','Documentation on Managing Links'=>'Documentation sur la gestion des liens (en anglais)','Documentation on Custom Header'=>'Documentation sur l’entête personnalisé','Documentation on My Sites'=>'Documentation sur Mes Sites (en anglais)','The theme you are currently using is not widget-aware, meaning that it has no sidebars that you are able to change. For information on making your theme widget-aware, please follow these instructions.'=>'Le thème que vous utilisez n’est pas conçu pour les widgets, ce qui signifie qu’il ne dispose pas d’une colonne latérale que vous pouvez modifier. Pour obtenir des informations sur la manière de rendre votre thème compatible avec les widgets, lisez ces instructions (en anglais).','When you publish a new post, WordPress automatically notifies the following site update services. For more about this, see the Update Services documentation article. Separate multiple service URLs with line breaks.'=>'Quand vous publiez un nouvel article, WordPress notifie automatiquement un service de mise à jour. Une explication est disponible sur la documentation de WordPress. Séparez les URL de services par des retours à la ligne.','The character encoding of your site (UTF-8 is recommended)'=>'Le codage de caractères utilisé par votre site (nous recommandons UTF-8)','example: www.wordpress.org'=>'exemple : www.wordpress.org','The search for installed themes will search for terms in their name, description, author, or tag.'=>'La recherche parmi les thèmes installés se fait sur leur nom, leur description, leur auteur/autrice ou leurs étiquettes.','Alternately, you can browse the themes that are Popular or Latest. When you find a theme you like, you can preview it or install it.'=>'Autrement, vous pouvez parcourir les thèmes populaires, ou les derniers en date. Lorsque vous avez trouvé un thème qui vous plaît, vous pouvez le prévisualiser ou l’installer.','You can Search for themes by keyword, author, or tag, or can get more specific and search by criteria listed in the feature filter.'=>'Vous pouvez rechercher des thèmes par mot-clé, auteur/autrice ou étiquette, ou faire une recherche plus précise en utilisant les critères listés dans le filtre de fonctionnalités.','Number of Themes found: %d'=>'Nombre de thèmes trouvés : %d','Custom time format:'=>'Format d’heure personnalisé :','enter a custom time format in the following field'=>'saisissez un format d’heure personnalisé dans le champ suivant','Custom date format:'=>'Format de date personnalisé :','enter a custom date format in the following field'=>'saisir un format de date personnalisé dans le champ suivant','Plugins updated successfully.'=>'Les extensions ont bien été mises à jour.','Active plugin installations%s+ Million'=>'%s million et +' . "\0" . '%s millions et +','XML Error: %1$s at line %2$s'=>'Erreur XML : %1$s à la ligne %2$s','Main menu'=>'Menu principal','Enter the location on the server where the public and private keys are located. If a passphrase is needed, enter that in the password field above.'=>'Saisissez l’emplacement sur le serveur où se trouvent les clés publiques et privées. S’il vous faut une passphrase, saisissez-la dans le champ de mot de passe ci-dessus.','%s user deleted.'=>'%s compte supprimé.' . "\0" . '%s comptes supprimés.','What should be done with content owned by these users?'=>'Que doit-il arriver aux contenus appartenant à ces comptes ?','You have specified these users for deletion:'=>'Vous avez indiqué que vous voulez supprimer ces comptes :','You are about to remove the following plugins:'=>'Vous êtes sur le point de supprimer les extensions suivantes :','These plugins may be active on other sites in the network.'=>'Ces extensions peuvent être actives sur d’autres sites du réseau.','Delete Plugins'=>'Supprimer les extensions','1 page not updated, somebody is editing it.'=>'Une page n’a pas été mise à jour, car quelqu’un est en train de la modifier.','1 post not updated, somebody is editing it.'=>'Un article n’a pas été mis à jour, car quelqu’un est en train de le modifier.','You can log out of other devices, such as your phone or a public computer, by clicking the Log Out Everywhere Else button.'=>'Vous pouvez vous déconnecter d’autres appareils, tels que votre téléphone ou un ordinateur public, en cliquant sur « Déconnecter partout ailleurs »','New translations are available.'=>'De nouvelles traductions sont disponibles.','This theme has not been rated yet.'=>'Ce thème n’a pas encore reçu de note.','timezone date formatY-m-d H:i:s'=>'Y-m-d H:i:s','To add a custom link, expand the Custom Links section, enter a URL and link text, and click Add to Menu'=>'Pour ajouter un lien personnalisé ouvrez la section « Liens personnalisés », saisissez une URL et un texte pour le lien, et cliquez sur « Ajouter au menu »','Howdy ###USERNAME###, +Les avatars des personnes qui commentent arrivent depuis Gravatar.','theme%s was successfully deleted.'=>'%s a bien été supprimé.','WordPress %2$s is available! Please notify the site administrator.'=>'WordPress %2$s est disponible ! Veuillez informer l’administrateur ou l’administratrice du site.','Please update WordPress now'=>'Veuillez mettre WordPress à jour maintenant','WordPress %2$s is available! Please update now.'=>'WordPress %2$s est disponible ! Veuillez mettre à jour maintenant.','Portfolio'=>'Portfolio','Photography'=>'Photographie','News'=>'Actualités','Food & Drink'=>'Nourriture & Boisson','Entertainment'=>'Divertissement','Education'=>'Éducation','E-Commerce'=>'E-Commerce','Blog'=>'Blog','Footer Widgets'=>'Widgets de pied de page','Grid Layout'=>'Style en grille','This will replace the current editor content with the last backup version. You can use undo and redo in the editor to get the old content back or to return to the restored version.'=>'Cela remplacera le contenu actuel de l’éditeur par la dernière version sauvegardée. Vous pouvez utiliser les outils Annuler et Rétablir pour rétablir l’ancien contenu ou revenir à la version sauvegardée.','Close media attachment panel'=>'Fermer le panneau des fichiers joints.','Info'=>'Info','Need help? Use the Help tab above the screen title.'=>'Besoin d’aide ? Utilisez l’onglet « Aide » au dessus du titre de l’écran.','Sorry, you are not allowed to access this page.'=>'Désolé, vous n’avez pas l’autorisation d’accéder à cette page.','Embed Footer Template'=>'Modèle intégré de pied de page','Embed Header Template'=>'Modèle intégré d’entête','Embed Content Template'=>'Modèle intégré de contenu','Embed 404 Template'=>'Modèle intégré 404','Embed Template'=>'Modèle intégré','pluginActive'=>'Actif','(Private post)'=>'(Publication privée)','Sorry, you are not allowed to edit the links for this site.'=>'Désolé, vous n’avez pas l’autorisation de modifier les liens de ce site.','Sorry, you are not allowed to manage privacy options on this site.'=>'Désolé, vous n’avez pas l’autorisation de gérer les options de confidentialité sur ce site.','Plugin could not be deleted.'=>'L’extension ne peut pas être supprimée.','Sorry, you are not allowed to update plugins for this site.'=>'Désolé, vous n’avez pas l’autorisation de mettre à jour des extensions sur ce site.','Sorry, you are not allowed to activate plugins on this site.'=>'Désolé, vous n’avez pas l’autorisation d’activer des extensions sur ce site.','Theme could not be deleted.'=>'Le thème ne peut pas être supprimé.','Sorry, you are not allowed to delete themes on this site.'=>'Désolé, vous n’avez pas l’autorisation de supprimer les thèmes de ce site.','Sorry, you are not allowed to install themes on this site.'=>'Désolé, vous n’avez pas l’autorisation d’installer des thèmes sur ce site.','No theme specified.'=>'Aucun thème spécifié.','Sorry, you are not allowed to import content into this site.'=>'Désolé, vous n’avez pas l’autorisation d’importer du contenu sur ce site.','Sorry, you are not allowed to export the content of this site.'=>'Désolé, vous n’avez pas l’autorisation d’exporter le contenu de ce site.','You can filter the list of posts by post status using the text links above the posts list to only show posts with that status. The default view is to show all posts.'=>'Vous pouvez filtrer la liste des articles par état en utilisant les liens au dessus de la liste des articles pour n’afficher que les articles avec cet état. La vue par défaut affiche tous les articles.','Close the Customizer and go back to the previous page'=>'Fermer l’outil de personnalisation et retour vers la page précédente.','Sorry, you are not allowed to customize headers.'=>'Désolé, vous n’avez pas l’autorisation de personnaliser les entêtes.','Release Deputy'=>'Assistant·e de la direction de cette version','Release Design Lead'=>'Responsable du design','Editor improvements'=>'Amélioration de l’éditeur','Custom fields can be used to add extra metadata to a post that you can use in your theme.'=>'Les champs personnalisés peuvent être utilisés pour ajouter des métadonnées supplémentaires à une publication, que vous pouvez ensuite utiliser dans votre thème.','Trackbacks are a way to notify legacy blog systems that you’ve linked to them. If you link other WordPress sites, they’ll be notified automatically using pingbacks, no other action necessary.'=>'Un rétrolien est une manière de notifier les anciens systèmes de blog que vous avez fait un lien vers eux. Si vous faites des liens vers des sites WordPress, ils seront notifiés automatiquement à l’aide des pings (en), sans que vous n’ayez rien à faire.','Excerpts are optional hand-crafted summaries of your content that can be used in your theme. Learn more about manual excerpts.'=>'Les extraits sont des résumés facultatifs de vos articles, écrits à la main. Il se peut que votre thème s’en serve. En savoir plus.','The Code mode allows you to enter HTML along with your post text. Note that <p> and <br> tags are converted to line breaks when switching to the Code editor to make it less cluttered. When you type, a single line break can be used instead of typing <br>, and two line breaks instead of paragraph tags. The line breaks are converted back to tags automatically.'=>'Le mode Code vous permet de saisir de saisir votre texte encadré par votre code HTML. Notez que les balises <p> et <br> sont converties en retours à la ligne lorsque vous entrez dans le mode code, afin de moins encombrer la fenêtre. Lorsque vous saisissez du texte, un retour à la ligne vous suffit à générer un <br>, et deux retours à la ligne créeront une balise de paragraphe. Les retours à la ligne sont automatiquement convertis en balises HTML.','Visual mode gives you an editor that is similar to a word processor. Click the Toolbar Toggle button to get a second row of controls.'=>'Le mode visuel vous donne accès à un éditeur comparable à un traitement de texte. Cliquez sur le bouton d’ouverture/fermeture de la barre d’outils pour afficher une seconde rangée d’options.','Error saving media file.'=>'Une erreur est survenue lors de l’enregistrement du fichier média.','%s media file restored from the Trash.'=>'%s fichier média restauré depuis la corbeille.' . "\0" . '%s fichiers médias restaurés depuis la corbeille.','%s media file moved to the Trash.'=>'%s fichier média déplacé dans la corbeille.' . "\0" . '%s fichiers médias déplacés dans la corbeille.','%s media file permanently deleted.'=>'%s fichier média supprimé définitivement.' . "\0" . '%s fichiers médias supprimés définitivement.','%s media file detached.'=>'%s fichier média détaché.' . "\0" . '%s fichiers médias détachés.','Media file detached.'=>'Fichier média détaché.','%s media file attached.'=>'%s fichier média attaché.' . "\0" . '%s fichiers médias attachés.','Media file attached.'=>'Fichier média attaché.','Media file updated.'=>'Fichier média mis à jour.','View %1$s version %2$s details'=>'Voir les détails de la version %2$s de %1$s','dashboard%1$s, %2$s'=>'%1$s, %2$s','Publish — You can set the terms of publishing your post in the Publish box. For Status, Visibility, and Publish (immediately), click on the Edit link to reveal more options. Visibility includes options for password-protecting a post or making it stay at the top of your blog indefinitely (sticky). The Password protected option allows you to set an arbitrary password for each post. The Private option hides the post from everyone except editors and administrators. Publish (immediately) allows you to set a future or past date and time, so you can schedule a post to be published in the future or backdate a post.'=>'Publier - Vous pouvez définir la manière dont votre publication est mise en ligne dans la section « Publier ». Pour « État », « Visibilité », et « Publier tout de suite », un clic sur le lien « Modifier » affichera plus d’options. « Visibilité » inclut des options pour protéger la publication avec un mot de passe ou faire en sorte qu’elle reste haut de page indéfiniment (en avant). L’option de protection par mot de passe vous permet de protéger chacune de vos publications avec un mot de passe. L’option « Privée » cache la publication pour tout le monde, sauf aux éditeurs/éditrices et administrateurs/administratrices. « Publier tout de suite » vous permet de planifier la sortie de votre publication à une date précise, dans le futur ou le passé ; cela vous permet d’écrire à l’avance les publications à mettre en ligne, ou de les antidater.','There is a pending change of your email to %s.'=>'Il y a une modification de votre adresse e-mail en attente, en faveur de %s.','Error while saving the new email address. Please try again.'=>'Une erreur est survenue lors de l’enregistrement de votre adresse e-mail. Veuillez réessayer.','You can narrow the list by file type/status or by date using the dropdown menus above the media table.'=>'Vous pouvez limiter cette liste par type de fichier ou par état à l’aide des filtres situés au-dessus de la liste de médias.','The following themes are installed but incomplete.'=>'Les thèmes suivants sont installés mais incomplets.','New theme activated.'=>'Nouveau thème activé.','Settings saved and theme activated.'=>'Réglages enregistrés et thème activé.','https://wordpress.org/themes/'=>'https://fr.wordpress.org/themes/','Sorry, you are not allowed to delete that user.'=>'Désolé, vous n’avez pas l’autorisation de supprimer ce compte.','Your database password.'=>'Votre mot de passe de base de données.','Your database username.'=>'Votre identifiant MySQL.','The name of the database you want to use with WordPress.'=>'Le nom de la base de données avec laquelle vous souhaitez utiliser WordPress.','plugin%1$s by %2$s'=>'%1$s par %2$s','%1$s by %2$s (will also delete its data)'=>'%1$s par %2$s (attention : supprimera également les données liées)','There is a pending change of the admin email to %s.'=>'Il y a une modification en attente de l’adresse e-mail d’administration vers %s.','WordPress has been installed. Thank you, and enjoy!'=>'WordPress est installé. Merci et profitez bien !','The constant %s cannot be defined when installing WordPress.'=>'La constante %s ne peut pas être définie lors de l’installation de WordPress.','Your %s file has an empty database table prefix, which is not supported.'=>'Votre fichier %s a un préfixe de base de donnée vide, ce qui n’est pas supporté.','Dismiss the welcome panel'=>'Ignorer le panneau de bienvenue','Theme zip file'=>'Fichier zip du thème','Attach to existing content'=>'Attacher à un contenu existant','Click the image to edit or update'=>'Cliquez sur l’image pour la modifier ou la mettre à jour.','Reviews with %1$d star: %2$s. Opens in a new tab.'=>'Avis avec %1$d étoile : %2$s. S’ouvre dans une nouvelle fenêtre.' . "\0" . 'Avis avec %1$d étoiles : %2$s. S’ouvre dans une nouvelle fenêtre.','Read all reviews on WordPress.org or write your own!'=>'Lisez tous les avis sur WordPress.org ou écrivez le vôtre !','Reviews'=>'Avis','You are using a development version of WordPress. These feature plugins are also under development. Learn more.'=>'Vous utilisez une version en développement de WordPress. Ces fonctionnalités d’extensions sont aussi en développement. En savoir plus.','Thumbnail Settings Help'=>'Aide aux réglages de la miniature','selection height'=>'hauteur de la sélection','selection width'=>'largeur de la sélection','crop ratio height'=>'Proportion verticale','crop ratio width'=>'Proportion horizontale','Image Crop Help'=>'Aide au recadrage d’image','scale height'=>'redimensionner en hauteur','New dimensions:'=>'Nouvelles dimensions :','Scale Image Help'=>'Aide sur le redimensionnement d’image','Single Page'=>'Page individuelle','Singular Template'=>'Modèle individuel','Date Template'=>'Modèle de date','Taxonomy Template'=>'Modèle de taxonomie','Dismiss the browser warning panel'=>'Masquer l’alerte du navigateur','View more comments'=>'Voir plus de commentaires','dashboard%1$s on %2$s %3$s'=>'%1$s sur %2$s %3$s','View this comment'=>'Voir ce commentaire','Another update is currently in progress.'=>'Une autre mise à jour est actuellement en cours.','Update progress'=>'Progression de la mise à jour','View “%s” archive'=>'Voir l’archive pour « %s »','Delete “%s”'=>'Supprimer « %s »','Quick edit “%s” inline'=>'Modifier rapidement « %s » en ligne','Search for plugins in the WordPress Plugin Directory.'=>'Rechercher des extensions dans le répertoire des extensions WordPress.','Restore “%s” from the Trash'=>'Restaurer « %s » depuis la corbeille','Delete “%s” permanently'=>'Supprimer « %s » définitivement','Move “%s” to the Trash'=>'Déplacer « %s » dans la corbeille','Attach “%s” to existing content'=>'Attacher « %s » à du contenu existant','Detach from “%s”'=>'Détacher de « %s »','“%s” (Edit)'=>'« %s » (Modifier)','attachment filterTrash'=>'Corbeille','Quick edit this comment inline'=>'Modifier ce commentaire sur cette page','Edit this comment'=>'Modifier ce commentaire','Restore this comment from the spam'=>'Restaurer ce commentaire depuis les indésirables','user autocomplete result%1$s (%2$s)'=>'%1$s (%2$s)','The %s importer is invalid or is not installed.'=>'L’outil d’importation %s n’est pas installé ou n’est pas valide.','comment statusPending'=>'En attente','Suggested height is %s.'=>'La hauteur suggérée est de %s.','Suggested width is %s.'=>'La largeur suggérée est de %s.','Images should be at least %s tall.'=>'Les images devraient faire au moins %s de haut.','%d pixels'=>'%d pixels','Images should be at least %s wide.'=>'Les images doivent être large de %s minimum.','Send the new user an email about their account'=>'Envoyer un e-mail à la personne à propos de son nouveau compte.','Send User Notification'=>'Envoyer une notification au compte','menu location(Currently set to: %s)'=>'(Actuellement réglé sur : %s)','Version %s addressed one security issue.'=>'La version %s a corrigé une faille de sécurité.','https://gravatar.com/'=>'https://fr.gravatar.com/','Profile Picture'=>'Illustration du profil','Maintenance and Security Releases'=>'Mises à jour de maintenance et de sécurité','Security Releases'=>'Mises à jour de sécurité','Maintenance Releases'=>'Mises à jour de maintenance','Plain'=>'Simple','WordPress offers you the ability to create a custom URL structure for your permalinks and archives. Custom URL structures can improve the aesthetics, usability, and forward-compatibility of your links. A number of tags are available, and here are some examples to get you started.'=>'WordPress vous offre la possibilité de créer une structure personnalisée d’URL pour vos permaliens et archives. Ceci peut améliorer l’esthétique, l’utilisabilité et la pérennité de vos liens. De nombreuses balises sont disponibles, et nous vous donnons quelques exemples pour commencer.','Permalinks can contain useful information, such as the post date, title, or other elements. You can choose from any of the suggested permalink formats, or you can craft your own if you select Custom Structure.'=>'Un permalien peut contenir des informations utiles, telles que le titre de l’article, sa date de publication ou d’autres éléments. Vous pouvez choisir n’importe quel type de format de permalien parmi les réglages les plus courants, ou concevoir votre propre structure personnalisée.','You can create the %s file manually and paste the following text into it.'=>'Vous pouvez créer le fichier %s manuellement et y coller le contenu suivant.','You should be able to get this info from your web host, if %s does not work.'=>'Si %s ne fonctionne pas, demandez cette information à l’hébergeur de votre site.','If for any reason this automatic file creation does not work, do not worry. All this does is fill in the database information to a configuration file. You may also simply open %1$s in a text editor, fill in your information, and save it as %2$s.'=>'Si pour une raison ou pour une autre la création automatique du fichier ne fonctionne pas, ne vous inquiétez pas. Sa seule action est d’ajouter les informations de la base de données dans un fichier de configuration. Vous pouvez aussi simplement ouvrir %1$s dans un éditeur de texte, y remplir vos informations et l’enregistrer sous le nom de %2$s.','Default is %s'=>'Par défaut, %s','The language pack is missing either the %1$s, %2$s, or %3$s files.'=>'Il manque les fichiers %1$s, %2$s, ou %3$s au paquet de langue.','The %s stylesheet does not contain a valid theme header.'=>'Le fichier %s ne contient pas d’entête de thème valide.','The theme is missing the %s stylesheet.'=>'Le thème n’a pas de fichier %s.','If you have marked themes as favorites on WordPress.org, you can browse them here.'=>'Si vous avez mis des thèmes en favoris sur WordPress.org, vous pourrez les parcourir ici.','themesFavorites'=>'Favoris','Database repair results'=>'Résultats de la réparation de la base de données','Allow automatic database repair'=>'Autoriser la réparation automatique de la base de données','Successful database connection'=>'La connexion à la base de données s’est bien faite','Set up your database connection'=>'Configurer la connexion à votre base de données','Before getting started'=>'Avant de commencer','WordPress database repair'=>'Réparation de la base de données de WordPress','Check secret keys'=>'Vérifier les clés secrètes','%s has been updated.'=>'%s a été mis à jour.','The Walker class named %s does not exist.'=>'La classe Walker nommée %s n’existe pas.','Requires %1$s in %2$s file.'=>'Nécessite la constance %1$s dans le fichier %2$s.','Standard time begins on: %s.'=>'Le passage à l’heure d’hiver commence le %s.','Daylight saving time begins on: %s.'=>'Le passage à l’heure d’été commence le %s.','You are about to delete %s.'=>'Vous êtes sur le point de supprimer %s.','Files in the %s directory are executed automatically.'=>'Les fichiers du répertoire %s sont exécutés automatiquement.','This will clear all items from the inactive widgets list. You will not be able to restore any customizations.'=>'Cela supprimera tous les éléments de la liste des widgets désactivés. Vous ne pourrez récupérer aucune personnalisation.','Clear Inactive Widgets'=>'Vider les widgets désactivés','One of the selected users is not a member of this site.'=>'Un des comptes sélectionnés n’est pas membre de ce site.','Users list'=>'Liste des comptes','Users list navigation'=>'Navigation de la liste des comptes','Filter users list'=>'Liste des filtres utilisateurs','Media items list'=>'Liste des éléments média','Media items list navigation'=>'Navigation de la liste des éléments média','Filter media items list'=>'Filtrer la liste des fichiers média.','Install Parent Theme'=>'Installer le thème parent','Themes list'=>'Liste des thèmes','Filter themes list'=>'Filtrer la liste des thèmes','All selected plugins are up to date.'=>'Toutes les extensions sélectionnées sont à jour.','Plugins list'=>'Liste des extensions','Plugins list navigation'=>'Navigation de la liste des extensions','Filter plugins list'=>'Filtrer la liste des extensions','Browsing %s (inactive)'=>'Parcours de %s (désactivée)','Editing %s (inactive)'=>'Modification de %s (désactivée)','Browsing %s (active)'=>'Parcours de %s (activée)','Editing %s (active)'=>'Modification de %s (activée)','Local time is %s.'=>'L’heure locale est %s.','Links list'=>'Liste des liens','Get Version %s'=>'Obtenir la version %s','Toggle panel: %s'=>'Ouvrir/fermer la section %s','Saving revision…'=>'Enregistrement de la révision…','Edit permalink'=>'Modifier le permalien','The %1$s plugin header is deprecated. Use %2$s instead.'=>'L’entête d’extensions %1$s est obsolète. Utilisez plutôt %2$s.','Warning'=>'Avertissement','Warning:'=>'Attention :','Once you hit “Confirm Deletion”, these users will be permanently removed.'=>'Dès que vous aurez cliqué sur « Confirmer cette action », ces comptes seront définitivement supprimés.','Once you hit “Confirm Deletion”, the user will be permanently removed.'=>'Dès que vous aurez cliqué sur « Confirmer cette action », le compte sera définitivement supprimé.','User has no sites or content and will be deleted.'=>'Le compte n’a pas de site ou de contenu, et sera supprimé.','Site: %s'=>'Site : %s','Select a user'=>'Sélectionnez un compte','What should be done with content owned by %s?'=>'Que faire du contenu ayant %s pour propriétaire ?','Warning! User cannot be deleted. The user %s is a network administrator.'=>'Avertissement ! Le compte ne peut pas être supprimé. %s est administrateur ou administratrice du réseau.','Warning! User %s cannot be deleted.'=>'Avertissement ! Le compte %s ne peut pas être supprimé.','You have chosen to delete the following users from all networks and sites.'=>'Vous avez choisi de supprimer les comptes suivants de tous les réseaux et sites.','You have chosen to delete the user from all networks and sites.'=>'Vous avez choisi de supprimer le compte de tous les réseaux et sites.','Invalid image URL.'=>'URL non valide pour l’image.','Theme Header'=>'Entête du thème','Theme Footer'=>'Pied de page du thème','M jS Y'=>'j M Y','From %1$s %2$s'=>'De %1$s %2$s','View all drafts'=>'Voir tous les brouillons','no user rolesNone'=>'Aucun','No role'=>'Aucun rôle','An error occurred while updating %1$s: %2$s'=>'Une erreur s’est produite lors de la mise à jour de %1$s : %2$s','View mode'=>'Mode d’affichage','%s column'=>'%s colonne' . "\0" . '%s colonnes','Additional settings'=>'Réglages supplémentaires','Items list'=>'Liste des éléments','Items list navigation'=>'Navigation de la liste des éléments','Filter items list'=>'Filtrer la liste des éléments','Network Only'=>'Réseau uniquement','Network Active'=>'Activé sur le réseau','No pending comments'=>'Aucun commentaire en attente','Failed to initialize a SFTP subsystem session with the SSH2 Server %s'=>'Échec de l’initialisation d’une session de sous-système SFTP avec le serveur SSH2 %s.','column nameSubmitted on'=>'Envoyé le','commentsTrash (%s)'=>'Mis à la corbeille (%s)' . "\0" . 'Mis à la corbeille (%s)','commentsSpam (%s)'=>'Indésirable (%s)' . "\0" . 'Indésirables (%s)','commentsApproved (%s)'=>'Approuvé (%s)' . "\0" . 'Approuvés (%s)','commentsPending (%s)'=>'En attente (%s)' . "\0" . 'En attente (%s)','commentsAll (%s)'=>'Tous (%s) ' . "\0" . 'Tous (%s) ','User %s added'=>'Le compte %s a été ajouté','End date:'=>'Date de fin :','Content to export'=>'Contenu à exporter','You can view posts in a simple title list or with an excerpt using the Screen Options tab.'=>'Vous pouvez voir la liste des publications en titre simple ou avec un extrait à l’aide du bouton « Options de l’écran ».','Submitted on: %s'=>'Envoyé le : %s','commentPermalink:'=>'Permalien :','Page draft updated.'=>'Le brouillon de la page a été mis à jour.','Page scheduled for: %s.'=>'Page planifiée pour le %s.','Page submitted.'=>'Page envoyée.','Post draft updated.'=>'Le brouillon de la publication a été mis à jour.','Post scheduled for: %s.'=>'Publication planifiée pour le %s.','Post submitted.'=>'Publication transmise.','View page'=>'Voir la page','Preview page'=>'Prévisualiser la page','Preview post'=>'Prévisualiser la publication','Comments list'=>'Liste des commentaires','Comments list navigation'=>'Navigation de la liste des commentaires','Filter comments list'=>'Filtrer la liste des commentaires','In the Submitted on column, the date and time the comment was left on your site appears. Clicking on the date/time link will take you to that comment on your live site.'=>'Dans la colonne « Envoyé le », vous trouverez la date et l’heure de publication du commentaire sur votre site. En cliquant sur le lien, vous ouvrirez la publication où se situe le commentaire.','In the Comment column, hovering over any comment gives you options to approve, reply (and approve), quick edit, edit, spam mark, or trash that comment.'=>'Dans la colonne Commentaire, survolez n’importe quel commentaire avec votre souris afin d’afficher les liens pour approuver ce commentaire, y répondre (en l’approuvant), le modifier rapidement, le marquer comme indésirable, ou le mettre à la corbeille.','Comments (%s)'=>'Commentaires (%s)','Comments (%1$s) on “%2$s”'=>'Commentaires (%1$s) sur « %2$s »','Sorry, you are not allowed to modify themes.'=>'Désolé, vous n’avez pas l’autorisation de modifier les thèmes.','The active theme does not support a flexible sized header image.'=>'Le thème actif ne prend pas en charge les images d’entête de taille variable.','You are using the auto-generated password for your account. Would you like to change it?'=>'Vous utilisez le mot de passe auto-généré pour votre compte. Voulez-vous le changer ?','You have specified this user for removal:'=>'Vous avez indiqué que ce compte devait être supprimé :','Log %s out of all locations.'=>'Déconnecter %s de tous les emplacements.','Did you lose your phone or leave your account logged in at a public computer? You can log out everywhere else, and stay logged in here.'=>'Avez-vous perdu votre téléphone ou laissé votre compte ouvert sur un ordinateur public ? Vous pouvez garder votre compte connecté ici tout en vous déconnectant partout ailleurs.','Log Out Everywhere Else'=>'Déconnecter partout ailleurs','Sessions'=>'Sessions','Cancel password change'=>'Annuler la modification du mot de passe','Generate password'=>'Générer un mot de passe','Account Management'=>'Gestion du compte','You will need this password to log in. Please store it in a secure location.'=>'Vous aurez besoin de ce mot de passe pour vous connecter. Pensez à le stocker dans un lieu sûr.','No approved comments'=>'Aucun commentaire approuvé','%s pending comment'=>'%s commentaire en attente' . "\0" . '%s commentaires en attente','%s approved comment'=>'%s commentaire approuvé' . "\0" . '%s commentaires approuvés','Image could not be processed.'=>'L’image n’a pas pu être traitée.','Confirm Password'=>'Confirmer le mot de passe','Remove Site Icon'=>'Supprimer l’icône du site','While you are editing your %1$s file, take a moment to make sure you have all 8 keys and that they are unique. You can generate these using the WordPress.org secret key service.'=>'Tandis que vous modifiez le fichier %1$s, prenez quelques minutes pour vous assurer que vous avez les 8 clés, et qu’elles sont bien uniques. Vous pouvez les générer avec le service de clés secrètes de WordPress.org.','Set as Site Icon'=>'Définir comme icône du site','Choose a Site Icon'=>'Choisir une icône de site','Show more details'=>'Afficher plus de détails','Your theme supports %s menu. Select which menu appears in each location.'=>'Votre thème peut utiliser %s menu. Sélectionnez le menu qui devra apparaître à chaque emplacement.' . "\0" . 'Votre thème peut utiliser %s menus. Sélectionnez les menus qui devront apparaître à chaque emplacement.','%s post by this author'=>'%s publication par cet auteur/autrice' . "\0" . '%s publications par cet auteur/autrice','Live Preview “%s”'=>'Prévisualisation de « %s »','last page'=>'dernière page','first page'=>'première page','In response to: %s'=>'En réponse à : %s','Date and time'=>'Date et heure','You can also embed media from many popular websites including Twitter, YouTube, Flickr and others by pasting the media URL on its own line into the content of your post/page. Learn more about embeds.'=>'Vous pouvez également insérer des contenus en provenance de nombreux sites populaires, comme Twitter, YouTube, Flickr et d’autres, simplement en collant l’URL du contenu dans sa propre ligne dans le texte de votre publication. En apprendre plus sur les contenus embarqués.','Documentation on Custom Background'=>'Documentation sur l’arrière-plan personnalisé (en anglais)','Documentation on Link Categories'=>'Documentation sur les catégories de liens (en anglais)','Documentation on Creating Links'=>'Documentation sur la création de liens (en anglais)','Documentation on Managing Links'=>'Documentation sur la gestion des liens (en anglais)','Documentation on Custom Header'=>'Documentation sur l’entête personnalisé','Documentation on My Sites'=>'Documentation sur Mes Sites (en anglais)','The theme you are currently using is not widget-aware, meaning that it has no sidebars that you are able to change. For information on making your theme widget-aware, please follow these instructions.'=>'Le thème que vous utilisez n’est pas conçu pour les widgets, ce qui signifie qu’il ne dispose pas d’une colonne latérale que vous pouvez modifier. Pour obtenir des informations sur la manière de rendre votre thème compatible avec les widgets, lisez ces instructions (en anglais).','When you publish a new post, WordPress automatically notifies the following site update services. For more about this, see the Update Services documentation article. Separate multiple service URLs with line breaks.'=>'Quand vous publiez un nouvel article, WordPress notifie automatiquement un service de mise à jour. Une explication est disponible sur la documentation de WordPress. Séparez les URL de services par des retours à la ligne.','The character encoding of your site (UTF-8 is recommended)'=>'Le codage de caractères utilisé par votre site (nous recommandons UTF-8)','example: www.wordpress.org'=>'exemple : www.wordpress.org','The search for installed themes will search for terms in their name, description, author, or tag.'=>'La recherche parmi les thèmes installés se fait sur leur nom, leur description, leur auteur/autrice ou leurs étiquettes.','Alternately, you can browse the themes that are Popular or Latest. When you find a theme you like, you can preview it or install it.'=>'Autrement, vous pouvez parcourir les thèmes populaires, ou les derniers en date. Lorsque vous avez trouvé un thème qui vous plaît, vous pouvez le prévisualiser ou l’installer.','You can Search for themes by keyword, author, or tag, or can get more specific and search by criteria listed in the feature filter.'=>'Vous pouvez rechercher des thèmes par mot-clé, auteur/autrice ou étiquette, ou faire une recherche plus précise en utilisant les critères listés dans le filtre de fonctionnalités.','Number of Themes found: %d'=>'Nombre de thèmes trouvés : %d','Custom time format:'=>'Format d’heure personnalisé :','enter a custom time format in the following field'=>'saisissez un format d’heure personnalisé dans le champ suivant','Custom date format:'=>'Format de date personnalisé :','enter a custom date format in the following field'=>'saisir un format de date personnalisé dans le champ suivant','Plugins updated successfully.'=>'Les extensions ont bien été mises à jour.','Active plugin installations%s+ Million'=>'%s million et +' . "\0" . '%s millions et +','XML Error: %1$s at line %2$s'=>'Erreur XML : %1$s à la ligne %2$s','Main menu'=>'Menu principal','Enter the location on the server where the public and private keys are located. If a passphrase is needed, enter that in the password field above.'=>'Saisissez l’emplacement sur le serveur où se trouvent les clés publiques et privées. S’il vous faut une passphrase, saisissez-la dans le champ de mot de passe ci-dessus.','%s user deleted.'=>'%s compte supprimé.' . "\0" . '%s comptes supprimés.','What should be done with content owned by these users?'=>'Que doit-il arriver aux contenus appartenant à ces comptes ?','You have specified these users for deletion:'=>'Vous avez indiqué que vous voulez supprimer ces comptes :','You are about to remove the following plugins:'=>'Vous êtes sur le point de supprimer les extensions suivantes :','These plugins may be active on other sites in the network.'=>'Ces extensions peuvent être actives sur d’autres sites du réseau.','Delete Plugins'=>'Supprimer les extensions','1 page not updated, somebody is editing it.'=>'Une page n’a pas été mise à jour, car quelqu’un est en train de la modifier.','1 post not updated, somebody is editing it.'=>'Un article n’a pas été mis à jour, car quelqu’un est en train de le modifier.','You can log out of other devices, such as your phone or a public computer, by clicking the Log Out Everywhere Else button.'=>'Vous pouvez vous déconnecter d’autres appareils, tels que votre téléphone ou un ordinateur public, en cliquant sur « Déconnecter partout ailleurs »','New translations are available.'=>'De nouvelles traductions sont disponibles.','This theme has not been rated yet.'=>'Ce thème n’a pas encore reçu de note.','timezone date formatY-m-d H:i:s'=>'Y-m-d H:i:s','To add a custom link, expand the Custom Links section, enter a URL and link text, and click Add to Menu'=>'Pour ajouter un lien personnalisé ouvrez la section « Liens personnalisés », saisissez une URL et un texte pour le lien, et cliquez sur « Ajouter au menu »','Howdy ###USERNAME###, You recently clicked the \'Delete Site\' link on your site and filled in a form on that page. @@ -134,11 +134,11 @@ Nous espérons que vous aimerez votre nouveau site ! Merci à vous ! --L’équipe WordPress https://wordpress.org/ -','You cannot delete a theme while it has an active child theme.'=>'Vous ne pouvez pas supprimer un thème qui est actuellement utilisé par l’un de ses thèmes-enfant.','Mystery Person'=>'Personne mystère','Usernames can have only alphanumeric characters, spaces, underscores, hyphens, periods, and the @ symbol.'=>'Les identifiants ne peuvent utiliser que des caractères alphanumériques, des espaces, des tirets bas ("_"), des traits d’union ("-"), des points et le symbole @.','Enable full-height editor and distraction-free functionality.'=>'Activer l’éditeur plein-écran et la fonctionnalité d’écriture sans distraction.','https://planet.wordpress.org/feed/'=>'https://rss.wpfr.net/wp-planet','https://planet.wordpress.org/'=>'https://fr.wordpress.org/news/','Untested with your version of WordPress'=>'Non testé avec votre version de WordPress','All categories'=>'Toutes les catégories','Filter by comment type'=>'Filtrer par type de commentaire','%s has been logged out.'=>'%s a été déconnecté·e.','You are now logged out everywhere else.'=>'Vous êtes désormais déconnecté·e partout ailleurs.','Could not log out user sessions. Please try again.'=>'Impossible de déconnecter les sessions des comptes. Veuillez réessayer.','This preview is unavailable in the editor.'=>'Cette prévisualisation n’est pas disponible dans l’éditeur.','You can insert media files by clicking the button above the post editor and following the directions. You can align or edit images using the inline formatting toolbar available in Visual mode.'=>'Vous pouvez insérer des fichiers média en cliquant sur les icônes situées au-dessus de l’éditeur, puis en suivant les instructions. Vous pouvez aligner ou modifier les images à l’aide de la barre de mise en forme disponible dans le mode Visuel.','Post editor — Enter the text for your post. There are two modes of editing: Visual and Text. Choose the mode by clicking on the appropriate tab.'=>'Éditeur d’article — Saisissez-y le contenu de votre article. Vous disposez pour ce faire de deux modes : Visuel ou Texte. Choisissez un mode en cliquant sur l’onglet correspondant.','You can now manage and live-preview Custom Header in the Customizer.'=>'Vous pouvez gérer et prévisualiser l’entête personnalisée dans l’outil de personnalisation.','You can now manage and live-preview Custom Backgrounds in the Customizer.'=>'Vous pouvez gérer et prévisualiser les arrières-plans personnalisés dans l’outil de personnalisation.','Welcome panelWelcome'=>'Bienvenue','usersAll (%s)'=>'Tous (%s)' . "\0" . 'Tous (%s)','link nameName'=>'Nom','If you like, you may enter custom structures for your category and tag URLs here. For example, using topics as your category base would make your category links like %s/topics/uncategorized/. If you leave these blank the defaults will be used.'=>'Si vous le souhaitez, vous pouvez spécifier ici une structure personnalisée pour les URL de vos étiquettes et de vos catégories. Par exemple, en utilisant sujets comme préfixe pour vos catégories, vous obtiendrez des adresses web comme %s/sujets/non-classe/. Si vous laissez ce champ vide, la valeur par défaut sera appliquée.','Release Lead'=>'Responsable de cette version','Use the arrow buttons at the top of the dialog, or the left and right arrow keys on your keyboard, to navigate between media items quickly.'=>'Utilisez les boutons fléchées au-dessus de la fenêtre ou les flèches gauche et droite du clavier pour passer rapidement d’un média à l’autre.','You can also delete individual items and access the extended edit screen from the details dialog.'=>'Vous pouvez aussi supprimer les éléments individuellement et accéder à l’écran des modifications étendues par la fenêtre des détails.','Clicking an item will display an Attachment Details dialog, which allows you to preview media and make quick edits. Any changes you make to the attachment details will be automatically saved.'=>'Cliquer sur un élément affichera une fenêtre avec les détails du fichier, ce qui vous permettra de prévisualiser le média et réaliser de rapides modifications. Toutes les modifications que vous ferez dans les détails du média seront automatiquement enregistrées.','To delete media items, click the Bulk Select button at the top of the screen. Select any items you wish to delete, then click the Delete Selected button. Clicking the Cancel Selection button takes you back to viewing your media.'=>'Pour supprimer des éléments de la liste des médias, cliquez sur le bouton de Sélection multiple en haut de l’écran. Sélectionnez tous les éléments à supprimer, puis cliquez sur le bouton Supprimer la sélection. En cliquant sur le bouton Annuler la sélection vous reviendrez sur la vue normale des médias.','You can view your media in a simple visual grid or a list with columns. Switch between these views using the icons to the left above the media.'=>'Vous pouvez voir vos médias dans une grille ou dans une liste avec des colonnes. Passez de l’un à l’autre en utilisant les icônes en haut à gauche des médias.','All the files you’ve uploaded are listed in the Media Library, with the most recent uploads listed first.'=>'Tous les fichiers que vous avez téléversés sont listés dans la médiathèque, avec le dernier téléversé qui apparaît en premier.','If you just want to get an idea of what’s available, you can browse Featured and Popular plugins by using the links above the plugins list. These sections rotate regularly.'=>'Si vous voulez juste vous faire une idée de ce qui est disponible, vous pouvez parcourir les rubriques Mises en avant et Populaires en utilisant les liens en haut à gauche de l’écran. Ces sections sont régulièrement renouvelées.','Browse Plugins'=>'Parcourir les extensions','Add Plugins'=>'Ajouter des extensions','The %1$s constant in your %2$s file is no longer needed.'=>'La constante %1$s de votre fichier %2$s n’est plus nécessaire.','Invalid translation type.'=>'Type de traduction non valide.','Welcome to the famous five-minute WordPress installation process! Just fill in the information below and you’ll be on your way to using the most extendable and powerful personal publishing platform in the world.'=>'Bienvenue dans la très célèbre installation en 5 minutes de WordPress ! Vous n’avez qu’à remplir les informations demandées ci-dessous et vous serez prêt à utiliser la plus extensible et puissante plateforme de publication de contenu au monde.','Compatible with your version of WordPress'=>'Compatible avec votre version de WordPress','Incompatible with your version of WordPress'=>'Incompatible avec votre version de WordPress','%d star'=>'%d étoile' . "\0" . '%d étoiles','Select bulk action'=>'Sélectionnez l’action groupée','Add the user without sending an email that requires their confirmation'=>'Ajouter le compte sans envoyer de message de confirmation.','The grid view for the Media Library requires JavaScript. Switch to the list view.'=>'La vue en grille de la médiathèque nécessite JavaScript. Passer à la vue en liste.','Contributors'=>'Crédits','Donate to this plugin »'=>'Faire un don à cette extension »','Plugin installer section titleReviews'=>'Avis','The WordPress team is willing to help you. Forward this email to %s and the team will work with you to make sure your site is working.'=>'L’équipe de WordPress est prête à vous aider. Transférez ce message à %s et l’équipe vous aidera à faire en sorte que vous site fonctionne.','themesRecently Updated'=>'Mis à jour récemment','Number/count of itemsCount'=>'Total','View details'=>'Afficher les détails','More Details'=>'Plus de détails','Plugin installer group titleTools'=>'Outils','Plugin installer group titleSocial'=>'Social','Plugin installer group titlePerformance'=>'Performances','Plugin InstallerBeta Testing'=>'Test de phase beta','%s failed to embed.'=>'%s n’a pas pu être intégré.','Filtering by:'=>'Trier par :','Displayed on attachment pages.'=>'affichée sur les pages du fichier joint.','You can edit the image while preserving the thumbnail. For example, you may wish to have a square thumbnail that displays just a section of the image.'=>'Vous pouvez modifier l’image tout en préservant sa miniature. Par exemple, vous pourriez vouloir avoir une miniature carrée qui n’afficherait qu’une partie de l’image.','Once you have made your selection, you can adjust it by entering the size in pixels. The minimum selection size is the thumbnail size as set in the Media settings.'=>'Une fois que votre sélection est faite, vous pouvez l’ajuster en saisissant une taille en pixels. La taille minimale de la sélection est celle des miniatures, tel que défini dans les réglages des Média.','The aspect ratio is the relationship between the width and height. You can preserve the aspect ratio by holding down the shift key while resizing your selection. Use the input box to specify the aspect ratio, e.g. 1:1 (square), 4:3, 16:9, etc.'=>'Les proportions d’une image sont le rapport entre sa largeur et sa hauteur. Vous pouvez préserver les proportions en maintenant appuyée la touche Maj tandis que vous redimensionnez votre sélection. Utilisez le champ de saisie pour préciser la proportion à respecter, par exemple 1:1 (carré), 4:3, 16:9, etc.','To crop the image, click on it and drag to make your selection.'=>'Pour couper l’image, cliquez dessus et déplacez la souris pour créer la sélection.','You can proportionally scale the original image. For best results, scaling should be done before you crop, flip, or rotate. Images can only be scaled down, not up.'=>'Vous pouvez redimensionner l’image originale de manière proportionnelle. Pour obtenir de meilleurs résultats, le redimensionnement doit être fait avant tout recadrage, retournement ou rotation. La taille des images ne peut être que réduite, pas augmentée.','Keyboard users: When you are working in the visual editor, you can use %s to access the toolbar.'=>'Personnes utilisant le clavier : lorsque vous travaillez dans l’éditeur visuel, vous pouvez utiliser %s pour accéder à la barre d’outils.','A red bar on the left means the comment is waiting for you to moderate it.'=>'Une barre rouge sur la gauche signifie que le commentaire attention votre validation.','All comment types'=>'Tous les types de commentaire','themesLatest'=>'Derniers en date','themesPopular'=>'Populaires','themesFeatured'=>'Mis en avant','Attribute all content to:'=>'Attribuer tout le contenu à :','Delete all content.'=>'Supprimer tout le contenu.','What should be done with content owned by this user?'=>'Que faire du contenu ayant ce compte pour propriétaire ?','Delete brings you to the Delete Users screen for confirmation, where you can permanently remove a user from your site and delete their content. You can also delete multiple users at once by using bulk actions.'=>'« Supprimer » vous amène à l’écran de suppression des comptes pour confirmer votre action, d’où vous pouvez supprimer un compte de manière permanente et supprimer son contenu. Vous pouvez également supprimer plusieurs comptes à la fois avec les actions groupées.','Remove allows you to remove a user from your site. It does not delete their content. You can also remove multiple users at once by using bulk actions.'=>'Supprimer vous permet de supprimer un compte de votre site. Cela ne supprime pas son contenu. Vous pouvez également supprimer plusieurs comptes à la fois avec les actions groupées.','themeDetails & Preview'=>'Détails et prévisualisation','Search Themes'=>'Rechercher des thèmes','Add Themes'=>'Ajouter des thèmes','https://wordpress.org/support/forum/how-to-and-troubleshooting'=>'https://wpfr.net/support/forum/support-de-wordpress/','At a Glance — Displays a summary of the content on your site and identifies which theme and version of WordPress you are using.'=>'D’un coup d’œil - Affiche un résumé du contenu de votre site, et indique le thème et la version de WordPress que vous utilisez.','Box Controls — Click the title bar of the box to expand or collapse it. Some boxes added by plugins may have configurable content, and will show a “Configure” link in the title bar if you hover over it.'=>'Contrôles des sections – Cliquez sur la barre de titre d’une section pour l’ouvrir ou la fermer. Certaines sections ajoutées par des extensions peuvent avoir un contenu configurable, et afficheront donc un lien « Configurer » dans la barre de titre lors du survol de la souris.','Sorry, you are not allowed to resume this theme.'=>'Désolé, vous n’avez pas l’autorisation d’ajouter ce thème.','Edit date and time'=>'Modifier la date et l’heure','Browse revisions'=>'Parcourir les révisions','Edit visibility'=>'Modifier la visibilité','Edit status'=>'Modifier l’état','Support forums'=>'Forums d’entraide','Thank you for creating with WordPress.'=>'Merci de faire de WordPress votre outil de création de contenu.','Translations — The files translating WordPress into your language are updated for you whenever any other updates occur. But if these files are out of date, you can click the “Update Translations” button.'=>'Traductions – Les fichiers qui traduisent WordPress dans votre langue sont mis à jour dès qu’une modification est faite. Mais si ces fichiers ne sont plus à jour, vous pouvez cliquer sur le bouton « Mettre à jour les traductions ».','In most cases, WordPress will automatically apply maintenance and security updates in the background for you.'=>'Dans la plupart des cas, WordPress appliquera automatiquement les mises à jour de maintenance et de sécurité en arrière-plan.','WordPress — Updating your WordPress installation is a simple one-click procedure: just click on the “Update now” button when you are notified that a new version is available.'=>'WordPress – Mise à jour de votre installation WordPress en un clic : cliquez sur le bouton « Mettre à jour » quand vous êtes notifié·e qu’une nouvelle version est disponible.','If an update is available, you᾿ll see a notification appear in the Toolbar and navigation menu.'=>'Si une mise à jour est disponible, vous verrez une notification apparaître dans la barre d’outils.','Themes and Plugins — To update individual themes or plugins from this screen, use the checkboxes to make your selection, then click on the appropriate “Update” button. To update all of your themes or plugins at once, you can check the box at the top of the section to select all before clicking the update button.'=>'Thèmes et extensions – Pour mettre à jour les thèmes et extensions individuellement depuis cet écran, utilisez les cases à cocher pour faire votre sélection, puis cliquez sur le bouton « Mettre à jour » approprié. Pour mettre à jour tous les thèmes et toutes les extensions en une seule opération, vous pouvez cocher la case en haut de la section pour tout sélectionner avant de cliquer sur le bouton de mise à jour.','On this screen, you can update to the latest version of WordPress, as well as update your themes, plugins, and translations from the WordPress.org repositories.'=>'Sur cet écran, vous pouvez faire la mise à jour vers la dernière version de WordPress, et mettre à jour les thèmes et extensions depuis les dépôts de WordPress.org.','If you would like to see more themes to choose from, click on the “Add New Theme” button and you will be able to browse or search for additional themes from the WordPress Theme Directory. Themes in the WordPress Theme Directory are designed and developed by third parties, and are compatible with the license WordPress uses. Oh, and they are free!'=>'Si vous souhaitez voir plus de thèmes, cliquez sur le bouton « Ajouter un thème » et vous pourrez parcourir le répertoire des thèmes de WordPress.org et y rechercher des thèmes supplémentaires. Les thèmes du répertoire de WordPress.org sont conçus et développés par des tiers, et sont compatibles avec la licence de WordPress. Et ils sont gratuits !','%1$s MB (%2$s%%) Space Used'=>'%1$s Mo (%2$s%%) d’espace utilisés','%s MB Space Allowed'=>'%s Mo d’espace autorisés','M jS'=>'j M','%s Page'=>'%s page' . "\0" . '%s pages','%s Post'=>'%s article' . "\0" . '%s articles','When this setting is in effect, a reminder is shown in the At a Glance box of the Dashboard that says, “Search engines discouraged”, to remind you that you have directed search engines to not crawl your site.'=>'Lorsque ce réglage est actif, un rappel est affiché dans la section « D’un coup d’œil » du Tableau de bord, indiquant « Moteurs de recherche refusés » pour que vous n’oubliez pas que vous avez indiqué aux moteurs de recherche de ne pas parcourir votre site.','At a Glance'=>'D’un coup d’œil','themeActive:'=>'Activé :','Accessibility Ready'=>'Optimisé pour l’accessibilité','This is a child theme of %s.'=>'Ce thème est un thème enfant de %s.','When previewing on smaller monitors, you can use the collapse icon at the bottom of the left-hand pane. This will hide the pane, giving you more room to preview your site in the new theme. To bring the pane back, click on the collapse icon again.'=>'Lors de la prévisualisation sur de petits écrans, vous pouvez utiliser l’icône de réduction en bas à gauche du panneau. Cela masquera le panneau, vous donnant ainsi plus de place pour prévisualiser le site avec le nouveau thème. Pour ramener le panneau, recliquez sur l’icône de réduction.','The theme being previewed is fully interactive — navigate to different pages to see how the theme handles posts, archives, and other page templates. The settings may differ depending on what theme features the theme being previewed supports. To accept the new settings and activate the theme all in one step, click the Activate & Publish button above the menu.'=>'Le thème en cours de prévisualisation est totalement interactif — naviguez sur les différentes pages pour voir comment le thème affiche vos articles, archives et autres modèles de pages. Les réglages peuvent différer selon les fonctionnalités pour lesquelles le thème a été conçu. Pour valider les nouveaux réglages et activer le thème en un clic, cliquez sur le bouton « Activer et publier » en haut du menu.','Tap or hover on any theme then click the Live Preview button to see a live preview of that theme and change theme options in a separate, full-screen view. You can also find a Live Preview button at the bottom of the theme details screen. Any installed theme can be previewed and customized in this way.'=>'Touchez ou survolez n’importe quel thème puis cliquez sur le bouton « Prévisualiser en direct » pour avoir un aperçu de celui-ci et modifier ses options dans une vue séparée et plein écran. Vous pouvez également trouver un bouton « Prévisualiser en direct » en bas de l’écran de détails du thème. Tout thème installé peut être prévisualisé et personnalisé de cette manière.','The active theme is displayed highlighted as the first theme.'=>'Le thème actif est mis en avant en tant que premier thème.','Click Customize for the active theme or Live Preview for any other theme to see a live preview'=>'Cliquer sur « Personnaliser » pour le thème actif ou « Prévisualiser en direct » pour n’importe quel autre thème afin d’afficher la prévisualisation.','Click on the theme to see the theme name, version, author, description, tags, and the Delete link'=>'Cliquer sur le thème pour voir le nom du thème, sa version, son auteur/autrice, sa description, ses étiquettes et le bouton « Supprimer ».','Hover or tap to see Activate and Live Preview buttons'=>'Survoler ou toucher pour voir les boutons « Activer » et « Prévisualiser en direct ».','This screen is used for managing your installed themes. Aside from the default theme(s) included with your WordPress installation, themes are designed and developed by third parties.'=>'Cet écran est utilisé pour gérer vos thèmes installés. En dehors des thèmes par défaut inclus dans votre installation de WordPress, les thèmes sont conçus et développés par des tiers.','To activate a widget drag it to a sidebar or click on it. To deactivate a widget and delete its settings, drag it back.'=>'Pour activer un widget, glissez-le dans la colonne latérale ou cliquez dessus. Pour désactiver un widget et supprimer ses réglages, enlevez-le de la colonne latérale.','%s rating'=>'Note : %s','%1$s rating based on %2$s rating'=>'Une note de %1$s basée sur %2$s vote' . "\0" . 'Une note de %1$s basée sur %2$s votes','This screen shows an individual user all of their sites in this network, and also allows that user to set a primary site. They can use the links under each site to visit either the front end or the dashboard for that site.'=>'Cet écran affiche à un compte individuel tous ses sites sur ce réseau, et permet également à ce comptes de régler son site principal. Il peut utiliser les liens sous chaque site pour se rendre soit sur son interface publique, soit sur son administration.','Error: [%1$s] %2$s'=>'Erreur : [%1$s] %2$s','Rollback Error: [%1$s] %2$s'=>'Erreur de restauration : [%1$s] %2$s','The following translations failed to update:'=>'Les traductions suivantes n’ont pas pu être mises à jour :','The following themes failed to update:'=>'Les thèmes suivants n’ont pas pu être mis à jour :','The following plugins failed to update:'=>'Les extensions suivantes n’ont pas pu être mises à jour :','The following translations were successfully updated:'=>'Les traductions suivantes ont bien été mises à jour :','The following themes were successfully updated:'=>'Les thèmes suivants ont bien été mis à jour :','The following plugins were successfully updated:'=>'Les extensions suivantes ont bien été mises à jour :','Add Widget'=>'Ajouter le widget','Show next theme'=>'Afficher le thème suivant','Show previous theme'=>'Afficher le thème précédent','Update Available'=>'Mise à jour disponible','Add New Theme'=>'Ajouter un thème','Are you sure you want to delete this theme? +','You cannot delete a theme while it has an active child theme.'=>'Vous ne pouvez pas supprimer un thème qui est actuellement utilisé par l’un de ses thèmes-enfant.','Mystery Person'=>'Personne mystère','Usernames can have only alphanumeric characters, spaces, underscores, hyphens, periods, and the @ symbol.'=>'Les identifiants ne peuvent utiliser que des caractères alphanumériques, des espaces, des tirets bas ("_"), des traits d’union ("-"), des points et le symbole @.','Enable full-height editor and distraction-free functionality.'=>'Activer l’éditeur plein-écran et la fonctionnalité d’écriture sans distraction.','https://planet.wordpress.org/feed/'=>'https://rss.wpfr.net/wp-planet','https://planet.wordpress.org/'=>'https://fr.wordpress.org/news/','Untested with your version of WordPress'=>'Non testé avec votre version de WordPress','All categories'=>'Toutes les catégories','Filter by comment type'=>'Filtrer par type de commentaire','%s has been logged out.'=>'%s a été déconnecté·e.','You are now logged out everywhere else.'=>'Vous êtes désormais déconnecté·e partout ailleurs.','Could not log out user sessions. Please try again.'=>'Impossible de déconnecter les sessions des comptes. Veuillez réessayer.','This preview is unavailable in the editor.'=>'Cette prévisualisation n’est pas disponible dans l’éditeur.','You can insert media files by clicking the button above the post editor and following the directions. You can align or edit images using the inline formatting toolbar available in Visual mode.'=>'Vous pouvez insérer des fichiers média en cliquant sur les icônes situées au-dessus de l’éditeur, puis en suivant les instructions. Vous pouvez aligner ou modifier les images à l’aide de la barre de mise en forme disponible dans le mode Visuel.','Post editor — Enter the text for your post. There are two modes of editing: Visual and Code. Choose the mode by clicking on the appropriate tab.'=>'Éditeur d’article — Saisissez-y le contenu de votre article. Vous disposez pour ce faire de deux modes : Visuel et Code. Choisissez un mode en cliquant sur l’onglet correspondant.','You can now manage and live-preview Custom Header in the Customizer.'=>'Vous pouvez gérer et prévisualiser l’entête personnalisée dans l’outil de personnalisation.','You can now manage and live-preview Custom Backgrounds in the Customizer.'=>'Vous pouvez gérer et prévisualiser les arrières-plans personnalisés dans l’outil de personnalisation.','Welcome panelWelcome'=>'Bienvenue','usersAll (%s)'=>'Tous (%s)' . "\0" . 'Tous (%s)','link nameName'=>'Nom','If you like, you may enter custom structures for your category and tag URLs here. For example, using topics as your category base would make your category links like %s/topics/uncategorized/. If you leave these blank the defaults will be used.'=>'Si vous le souhaitez, vous pouvez spécifier ici une structure personnalisée pour les URL de vos étiquettes et de vos catégories. Par exemple, en utilisant sujets comme préfixe pour vos catégories, vous obtiendrez des adresses web comme %s/sujets/non-classe/. Si vous laissez ce champ vide, la valeur par défaut sera appliquée.','Release Lead'=>'Responsable de la version','Use the arrow buttons at the top of the dialog, or the left and right arrow keys on your keyboard, to navigate between media items quickly.'=>'Utilisez les boutons fléchées au-dessus de la fenêtre ou les flèches gauche et droite du clavier pour passer rapidement d’un média à l’autre.','You can also delete individual items and access the extended edit screen from the details dialog.'=>'Vous pouvez aussi supprimer les éléments individuellement et accéder à l’écran des modifications étendues par la fenêtre des détails.','Clicking an item will display an Attachment Details dialog, which allows you to preview media and make quick edits. Any changes you make to the attachment details will be automatically saved.'=>'Cliquer sur un élément affichera une fenêtre avec les détails du fichier, ce qui vous permettra de prévisualiser le média et réaliser de rapides modifications. Toutes les modifications que vous ferez dans les détails du média seront automatiquement enregistrées.','To delete media items, click the Bulk Select button at the top of the screen. Select any items you wish to delete, then click the Delete Selected button. Clicking the Cancel Selection button takes you back to viewing your media.'=>'Pour supprimer des éléments de la liste des médias, cliquez sur le bouton de Sélection multiple en haut de l’écran. Sélectionnez tous les éléments à supprimer, puis cliquez sur le bouton Supprimer la sélection. En cliquant sur le bouton Annuler la sélection vous reviendrez sur la vue normale des médias.','You can view your media in a simple visual grid or a list with columns. Switch between these views using the icons to the left above the media.'=>'Vous pouvez voir vos médias dans une grille ou dans une liste avec des colonnes. Passez de l’un à l’autre en utilisant les icônes en haut à gauche des médias.','All the files you’ve uploaded are listed in the Media Library, with the most recent uploads listed first.'=>'Tous les fichiers que vous avez téléversés sont listés dans la médiathèque, avec le dernier téléversé qui apparaît en premier.','If you just want to get an idea of what’s available, you can browse Featured and Popular plugins by using the links above the plugins list. These sections rotate regularly.'=>'Si vous voulez juste vous faire une idée de ce qui est disponible, vous pouvez parcourir les rubriques Mises en avant et Populaires en utilisant les liens en haut à gauche de l’écran. Ces sections sont régulièrement renouvelées.','Browse Plugins'=>'Parcourir les extensions','Add Plugins'=>'Ajouter des extensions','The %1$s constant in your %2$s file is no longer needed.'=>'La constante %1$s de votre fichier %2$s n’est plus nécessaire.','Invalid translation type.'=>'Type de traduction non valide.','Welcome to the famous five-minute WordPress installation process! Just fill in the information below and you’ll be on your way to using the most extendable and powerful personal publishing platform in the world.'=>'Bienvenue dans la très célèbre installation en 5 minutes de WordPress ! Vous n’avez qu’à remplir les informations demandées ci-dessous et vous serez prêt à utiliser la plus extensible et puissante plateforme de publication de contenu au monde.','Compatible with your version of WordPress'=>'Compatible avec votre version de WordPress','Incompatible with your version of WordPress'=>'Incompatible avec votre version de WordPress','%d star'=>'%d étoile' . "\0" . '%d étoiles','Select bulk action'=>'Sélectionnez l’action groupée','Add the user without sending an email that requires their confirmation'=>'Ajouter le compte sans envoyer de message de confirmation.','The grid view for the Media Library requires JavaScript. Switch to the list view.'=>'La vue en grille de la médiathèque nécessite JavaScript. Passer à la vue en liste.','Contributors'=>'Crédits','Donate to this plugin »'=>'Faire un don à cette extension »','Plugin installer section titleReviews'=>'Avis','The WordPress team is willing to help you. Forward this email to %s and the team will work with you to make sure your site is working.'=>'L’équipe de WordPress est prête à vous aider. Transférez ce message à %s et l’équipe vous aidera à faire en sorte que vous site fonctionne.','themesRecently Updated'=>'Mis à jour récemment','Number/count of itemsCount'=>'Total','View details'=>'Afficher les détails','More Details'=>'Plus de détails','Plugin installer group titleTools'=>'Outils','Plugin installer group titleSocial'=>'Social','Plugin installer group titlePerformance'=>'Performances','Plugin InstallerBeta Testing'=>'Test de phase beta','%s failed to embed.'=>'%s n’a pas pu être intégré.','Filtering by:'=>'Trier par :','Displayed on attachment pages.'=>'affichée sur les pages du fichier joint.','You can edit the image while preserving the thumbnail. For example, you may wish to have a square thumbnail that displays just a section of the image.'=>'Vous pouvez modifier l’image tout en préservant sa miniature. Par exemple, vous pourriez vouloir avoir une miniature carrée qui n’afficherait qu’une partie de l’image.','Once you have made your selection, you can adjust it by entering the size in pixels. The minimum selection size is the thumbnail size as set in the Media settings.'=>'Une fois que votre sélection est faite, vous pouvez l’ajuster en saisissant une taille en pixels. La taille minimale de la sélection est celle des miniatures, tel que défini dans les réglages des Média.','The aspect ratio is the relationship between the width and height. You can preserve the aspect ratio by holding down the shift key while resizing your selection. Use the input box to specify the aspect ratio, e.g. 1:1 (square), 4:3, 16:9, etc.'=>'Les proportions d’une image sont le rapport entre sa largeur et sa hauteur. Vous pouvez préserver les proportions en maintenant appuyée la touche Maj tandis que vous redimensionnez votre sélection. Utilisez le champ de saisie pour préciser la proportion à respecter, par exemple 1:1 (carré), 4:3, 16:9, etc.','To crop the image, click on it and drag to make your selection.'=>'Pour couper l’image, cliquez dessus et déplacez la souris pour créer la sélection.','You can proportionally scale the original image. For best results, scaling should be done before you crop, flip, or rotate. Images can only be scaled down, not up.'=>'Vous pouvez redimensionner l’image originale de manière proportionnelle. Pour obtenir de meilleurs résultats, le redimensionnement doit être fait avant tout recadrage, retournement ou rotation. La taille des images ne peut être que réduite, pas augmentée.','Keyboard users: When you are working in the visual editor, you can use %s to access the toolbar.'=>'Personnes utilisant le clavier : lorsque vous travaillez dans l’éditeur visuel, vous pouvez utiliser %s pour accéder à la barre d’outils.','A red bar on the left means the comment is waiting for you to moderate it.'=>'Une barre rouge sur la gauche signifie que le commentaire attention votre validation.','All comment types'=>'Tous les types de commentaire','themesLatest'=>'Derniers en date','themesPopular'=>'Populaires','themesFeatured'=>'Mis en avant','Attribute all content to:'=>'Attribuer tout le contenu à :','Delete all content.'=>'Supprimer tout le contenu.','What should be done with content owned by this user?'=>'Que faire du contenu ayant ce compte pour propriétaire ?','Delete brings you to the Delete Users screen for confirmation, where you can permanently remove a user from your site and delete their content. You can also delete multiple users at once by using bulk actions.'=>'« Supprimer » vous amène à l’écran de suppression des comptes pour confirmer votre action, d’où vous pouvez supprimer un compte de manière permanente et supprimer son contenu. Vous pouvez également supprimer plusieurs comptes à la fois avec les actions groupées.','Remove allows you to remove a user from your site. It does not delete their content. You can also remove multiple users at once by using bulk actions.'=>'Supprimer vous permet de supprimer un compte de votre site. Cela ne supprime pas son contenu. Vous pouvez également supprimer plusieurs comptes à la fois avec les actions groupées.','themeDetails & Preview'=>'Détails et prévisualisation','Search Themes'=>'Rechercher des thèmes','Add Themes'=>'Ajouter des thèmes','https://wordpress.org/support/forum/how-to-and-troubleshooting'=>'https://wpfr.net/support/forum/support-de-wordpress/','At a Glance — Displays a summary of the content on your site and identifies which theme and version of WordPress you are using.'=>'D’un coup d’œil - Affiche un résumé du contenu de votre site, et indique le thème et la version de WordPress que vous utilisez.','Box Controls — Click the title bar of the box to expand or collapse it. Some boxes added by plugins may have configurable content, and will show a “Configure” link in the title bar if you hover over it.'=>'Contrôles des sections – Cliquez sur la barre de titre d’une section pour l’ouvrir ou la fermer. Certaines sections ajoutées par des extensions peuvent avoir un contenu configurable, et afficheront donc un lien « Configurer » dans la barre de titre lors du survol de la souris.','Sorry, you are not allowed to resume this theme.'=>'Désolé, vous n’avez pas l’autorisation d’ajouter ce thème.','Edit date and time'=>'Modifier la date et l’heure','Browse revisions'=>'Parcourir les révisions','Edit visibility'=>'Modifier la visibilité','Edit status'=>'Modifier l’état','Support forums'=>'Forums d’entraide','Thank you for creating with WordPress.'=>'Merci de faire de WordPress votre outil de création de contenu.','Translations — The files translating WordPress into your language are updated for you whenever any other updates occur. But if these files are out of date, you can click the “Update Translations” button.'=>'Traductions – Les fichiers qui traduisent WordPress dans votre langue sont mis à jour dès qu’une modification est faite. Mais si ces fichiers ne sont plus à jour, vous pouvez cliquer sur le bouton « Mettre à jour les traductions ».','In most cases, WordPress will automatically apply maintenance and security updates in the background for you.'=>'Dans la plupart des cas, WordPress appliquera automatiquement les mises à jour de maintenance et de sécurité en arrière-plan.','WordPress — Updating your WordPress installation is a simple one-click procedure: just click on the “Update now” button when you are notified that a new version is available.'=>'WordPress – Mise à jour de votre installation WordPress en un clic : cliquez sur le bouton « Mettre à jour » quand vous êtes notifié·e qu’une nouvelle version est disponible.','If an update is available, you᾿ll see a notification appear in the Toolbar and navigation menu.'=>'Si une mise à jour est disponible, vous verrez une notification apparaître dans la barre d’outils.','Themes and Plugins — To update individual themes or plugins from this screen, use the checkboxes to make your selection, then click on the appropriate “Update” button. To update all of your themes or plugins at once, you can check the box at the top of the section to select all before clicking the update button.'=>'Thèmes et extensions – Pour mettre à jour les thèmes et extensions individuellement depuis cet écran, utilisez les cases à cocher pour faire votre sélection, puis cliquez sur le bouton « Mettre à jour » approprié. Pour mettre à jour tous les thèmes et toutes les extensions en une seule opération, vous pouvez cocher la case en haut de la section pour tout sélectionner avant de cliquer sur le bouton de mise à jour.','On this screen, you can update to the latest version of WordPress, as well as update your themes, plugins, and translations from the WordPress.org repositories.'=>'Sur cet écran, vous pouvez faire la mise à jour vers la dernière version de WordPress, et mettre à jour les thèmes et extensions depuis les dépôts de WordPress.org.','If you would like to see more themes to choose from, click on the “Add Theme” button and you will be able to browse or search for additional themes from the WordPress Theme Directory. Themes in the WordPress Theme Directory are designed and developed by third parties, and are compatible with the license WordPress uses. Oh, and they are free!'=>'Si vous souhaitez voir plus de thèmes, cliquez sur le bouton « Ajouter un thème » et vous pourrez parcourir le répertoire des thèmes de WordPress.org et y rechercher des thèmes supplémentaires. Les thèmes du répertoire de WordPress.org sont conçus et développés par des tiers, et sont compatibles avec la licence de WordPress. Et ils sont gratuits !','%1$s MB (%2$s%%) Space Used'=>'%1$s Mo (%2$s%%) d’espace utilisés','%s MB Space Allowed'=>'%s Mo d’espace autorisés','M jS'=>'j M','%s Page'=>'%s page' . "\0" . '%s pages','%s Post'=>'%s article' . "\0" . '%s articles','When this setting is in effect, a reminder is shown in the At a Glance box of the Dashboard that says, “Search engines discouraged”, to remind you that you have directed search engines to not crawl your site.'=>'Lorsque ce réglage est actif, un rappel est affiché dans la section « D’un coup d’œil » du Tableau de bord, indiquant « Moteurs de recherche refusés » pour que vous n’oubliez pas que vous avez indiqué aux moteurs de recherche de ne pas parcourir votre site.','At a Glance'=>'D’un coup d’œil','themeActive:'=>'Activé :','Accessibility Ready'=>'Optimisé pour l’accessibilité','This is a child theme of %s.'=>'Ce thème est un thème enfant de %s.','When previewing on smaller monitors, you can use the collapse icon at the bottom of the left-hand pane. This will hide the pane, giving you more room to preview your site in the new theme. To bring the pane back, click on the collapse icon again.'=>'Lors de la prévisualisation sur de petits écrans, vous pouvez utiliser l’icône de réduction en bas à gauche du panneau. Cela masquera le panneau, vous donnant ainsi plus de place pour prévisualiser le site avec le nouveau thème. Pour ramener le panneau, recliquez sur l’icône de réduction.','The theme being previewed is fully interactive — navigate to different pages to see how the theme handles posts, archives, and other page templates. The settings may differ depending on what theme features the theme being previewed supports. To accept the new settings and activate the theme all in one step, click the Activate & Publish button above the menu.'=>'Le thème en cours de prévisualisation est totalement interactif — naviguez sur les différentes pages pour voir comment le thème affiche vos articles, archives et autres modèles de pages. Les réglages peuvent différer selon les fonctionnalités pour lesquelles le thème a été conçu. Pour valider les nouveaux réglages et activer le thème en un clic, cliquez sur le bouton « Activer et publier » en haut du menu.','Tap or hover on any theme then click the Live Preview button to see a live preview of that theme and change theme options in a separate, full-screen view. You can also find a Live Preview button at the bottom of the theme details screen. Any installed theme can be previewed and customized in this way.'=>'Touchez ou survolez n’importe quel thème puis cliquez sur le bouton « Prévisualiser en direct » pour avoir un aperçu de celui-ci et modifier ses options dans une vue séparée et plein écran. Vous pouvez également trouver un bouton « Prévisualiser en direct » en bas de l’écran de détails du thème. Tout thème installé peut être prévisualisé et personnalisé de cette manière.','The active theme is displayed highlighted as the first theme.'=>'Le thème actif est mis en avant en tant que premier thème.','Click Customize for the active theme or Live Preview for any other theme to see a live preview'=>'Cliquer sur « Personnaliser » pour le thème actif ou « Prévisualiser en direct » pour n’importe quel autre thème afin d’afficher la prévisualisation.','Click on the theme to see the theme name, version, author, description, tags, and the Delete link'=>'Cliquer sur le thème pour voir le nom du thème, sa version, son auteur/autrice, sa description, ses étiquettes et le bouton « Supprimer ».','Hover or tap to see Activate and Live Preview buttons'=>'Survoler ou toucher pour voir les boutons « Activer » et « Prévisualiser en direct ».','This screen is used for managing your installed themes. Aside from the default theme(s) included with your WordPress installation, themes are designed and developed by third parties.'=>'Cet écran est utilisé pour gérer vos thèmes installés. En dehors des thèmes par défaut inclus dans votre installation de WordPress, les thèmes sont conçus et développés par des tiers.','To activate a widget drag it to a sidebar or click on it. To deactivate a widget and delete its settings, drag it back.'=>'Pour activer un widget, glissez-le dans la colonne latérale ou cliquez dessus. Pour désactiver un widget et supprimer ses réglages, enlevez-le de la colonne latérale.','%s rating'=>'Note : %s','%1$s rating based on %2$s rating'=>'Une note de %1$s basée sur %2$s vote' . "\0" . 'Une note de %1$s basée sur %2$s votes','This screen shows an individual user all of their sites in this network, and also allows that user to set a primary site. They can use the links under each site to visit either the front end or the dashboard for that site.'=>'Cet écran affiche à un compte individuel tous ses sites sur ce réseau, et permet également à ce comptes de régler son site principal. Il peut utiliser les liens sous chaque site pour se rendre soit sur son interface publique, soit sur son administration.','Error: [%1$s] %2$s'=>'Erreur : [%1$s] %2$s','Rollback Error: [%1$s] %2$s'=>'Erreur de restauration : [%1$s] %2$s','The following translations failed to update:'=>'Les traductions suivantes n’ont pas pu être mises à jour :','The following themes failed to update:'=>'Les thèmes suivants n’ont pas pu être mis à jour :','The following plugins failed to update:'=>'Les extensions suivantes n’ont pas pu être mises à jour :','The following translations were successfully updated:'=>'Les traductions suivantes ont bien été mises à jour :','The following themes were successfully updated:'=>'Les thèmes suivants ont bien été mis à jour :','The following plugins were successfully updated:'=>'Les extensions suivantes ont bien été mises à jour :','Add Widget'=>'Ajouter le widget','Show next theme'=>'Afficher le thème suivant','Show previous theme'=>'Afficher le thème précédent','Update Available'=>'Mise à jour disponible','Are you sure you want to delete this theme? Click \'Cancel\' to go back, \'OK\' to confirm the delete.'=>'Confirmez-vous la suppression de ce thème ? -« Annuler » pour arrêter, « OK » pour supprimer.','Unable to submit this form, please refresh and try again.'=>'Impossible d’envoyer ce formulaire. Veuillez recharger la page et réessayer.','Quick Draft — Allows you to create a new post and save it as a draft. Also displays links to the 3 most recent draft posts you\'ve started.'=>'Brouillon rapide — Vous permet de créer une nouvelle publication et de l’enregistrer en tant que brouillon. Affiche également des liens vers les 3 derniers brouillons que vous avez créés.','Activity — Shows the upcoming scheduled posts, recently published posts, and the most recent comments on your posts and allows you to moderate them.'=>'Activité – Affiche les publications planifiées, celles qui ont été publiées récemment, et les commentaires récents, que vous pouvez valider ou non.','Screen Options — Use the Screen Options tab to choose which Dashboard boxes to show.'=>'Options de l’écran — Utilisez l’onglet Options de l’écran pour choisir les sections à afficher dans le Tableau de bord.','Manage Uploads'=>'Gérer les téléversements','Popular Plugin'=>'Extensions populaires','Tomorrow'=>'Demain','No activity yet!'=>'Aucune activité pour le moment !','Recently Published'=>'Publié récemment','Publishing Soon'=>'Bientôt publié','What’s on your mind?'=>'Qu’avez-vous en tête ?','WordPress %1$s running %2$s theme.'=>'WordPress %1$s avec le thème %2$s.','Quick Draft'=>'Brouillon rapide','Activity'=>'Activité','FAILED: %s'=>'ÉCHEC : %s','SUCCESS: %s'=>'SUCCÈS : %s','FAILED: WordPress failed to update to %s'=>'ÉCHEC : WordPress n’a pas pu être mis à jour en %s','SUCCESS: WordPress was successfully updated to %s'=>'SUCCÈS : WordPress a bien été mis à jour vers %s','WordPress site: %s'=>'Site WordPress : %s','Your site was running version %s.'=>'Votre site utilise la version %s.','Your site at %1$s experienced a critical failure while trying to update WordPress to version %2$s.'=>'Votre site à l’adresse %1$s a rencontré un échec critique en essayant de faire une mise à jour de WordPress vers la version %2$s.','WordPress %s is also now available.'=>'WordPress %s est disponible.','The update cannot be installed because your site is unable to copy some files. This is usually due to inconsistent file permissions.'=>'La mise à jour ne peut pas être installée parce que le site ne peut pas copier certains fichiers. Ce problème est généralement dû à des incohérences dans les permissions de fichiers.','Your translations are all up to date.'=>'Vos traductions sont toutes à jour.','Translations'=>'Traductions','Error code: %s'=>'Code d’erreur : %s','Your hosting company, support forum volunteers, or a friendly developer may be able to use this information to help you:'=>'Votre hébergeur, les volontaires du forum d’entraide ou un ami développeur devraient pouvoir vous aider à comprendre cette information pour vous aider :','The WordPress Team'=>'L’équipe WordPress','You also have some plugins or themes with updates available. Update them now:'=>'Certains de vos thèmes et extensions ont également des mises à jour disponibles. Veuillez les mettre à jour dès maintenant :','If you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.'=>'Si vous rencontrez des problèmes ou avez besoin d’assistance, les volontaires du forum d’entraide de WPFR (https://wpfr.net/support) devraient pouvoir vous aider.','Keeping your site updated is important for security. It also makes the internet a safer place for you and your readers.'=>'Pour des questions de sécurité, il est important de garder votre site à jour. Par ailleurs, cela rend le web plus sûr pour vous et pour votre audience.','Please check out your site now. It\'s possible that everything is working. If it says you need to update, you should do so:'=>'Veuillez vérifier votre site immédiatement. Il se peut que tout fonctionne. S’il affiche que vous devez faire une mise à jour, vous devriez suivre son conseil :','This means your site may be offline or broken. Don\'t panic; this can be fixed.'=>'Cela signifie que votre site est peut-être hors ligne ou cassé. Ne paniquez pas, cela peut être réparé.','Your site at %1$s experienced a critical failure while trying to update to the latest version of WordPress, %2$s.'=>'Votre site à l’adresse %1$s a fait face à un échec critique en essayant de faire une mise à jour vers la dernière version de WordPress, la %2$s.','Updating is easy and only takes a few moments:'=>'La mise à jour est facile et ne nécessite que quelques secondes :','Please update your site at %1$s to WordPress %2$s.'=>'Veuillez mettre à jour votre site à l’adresse %1$s pour le passer à WordPress %2$s.','For more on version %s, see the About WordPress screen:'=>'Pour en savoir plus sur la version %s, lisez l’écran À Propos de WordPress : ','No further action is needed on your part.'=>'Vous n’avez rien de plus à faire.','Howdy! Your site at %1$s has been updated automatically to WordPress %2$s.'=>'Bonjour ! Votre site à l’adresse %1$s a été automatiquement mis à jour vers WordPress %2$s.','[%1$s] URGENT: Your site may be down due to a failed update'=>'[%1$s] URGENT : suite à une mise à jour échouée, votre site est peut-être inaccessible.','[%1$s] WordPress %2$s is available. Please update!'=>'[%1$s] WordPress %2$s est disponible. Veuillez mettre à jour !','[%1$s] Your site has updated to WordPress %2$s'=>'[%1$s] Votre site a été mis à jour vers WordPress %2$s','Translations for %s'=>'Traductions pour %s','Updating translations for %1$s (%2$s)…'=>'Mise à jour de la traduction de %1$s (%2$s)…','Update Translations'=>'Mettre à jour les traductions','Background updates'=>'Mises à jour en arrière-plan','There is not enough free disk space to complete the update.'=>'Il n’y a pas assez d’espace sur le disque pour terminer la mise à jour.','Updating plugin: %s'=>'Mise à jour de l’extension : %s','Updating theme: %s'=>'Mise à jour du thème : %s','Translation updated successfully.'=>'La traduction a bien été mise à jour.','Translation update failed.'=>'La mise à jour de la traduction a échoué.','Some of your translations need updating. Sit tight for a few more seconds while they are updated as well.'=>'Certaines de vos traductions ont besoin d’être mises à jour. Veuillez patienter quelques secondes, le temps qu’elles soient également mises à jour.','Create a brand new user and add them to this site.'=>'Créer un nouveau compte et l’ajouter à ce site.','Upgrading to a newer version of the same theme will override changes made here. To avoid this, consider creating a child theme instead.'=>'La mise à jour vers une nouvelle version du thème supprimera les modifications que vous aurez faites. Pour éviter cela, nous vous conseillons de passer plutôt par un Thème-Enfant.','The sizes listed below determine the maximum dimensions in pixels to use when adding an image to the Media Library.'=>'Les tailles précisées ci-dessous déterminent les dimensions maximales (en pixels) à utiliser lors de l’insertion d’une image dans la médiathèque.','Comment must be manually approved'=>'Le commentaire doit être approuvé manuellement','Clicking the arrow to the right of any menu item in the editor will reveal a standard group of settings. Additional settings such as link target, CSS classes, link relationships, and link descriptions can be enabled and disabled via the Screen Options tab.'=>'En cliquant sur le titre de n’importe élément du menu dans l’éditeur, un ensemble de réglages standards s’ouvrira. D’autres réglages, tels que la cible du lien, les classes CSS, les relations du lien et la description du lien, peuvent être activés et désactivés dans l’onglet « Options de l’écran ».','Menus can be displayed in locations defined by your theme, even used in sidebars by adding a “Navigation Menu” widget on the Widgets screen. If your theme does not support the navigation menus feature (the default themes, %2$s and %3$s, do), you can learn about adding this support by following the documentation link to the side.'=>'Les menus peuvent être affichés à des emplacements définis par votre thème, et même dans les colonnes latérales grâce au widget « Menus personnalisés » de l’écran Widgets. Si votre thème ne reconnaît pas encore cette fonctionnalité (les thèmes par défaut, %2$s and %3$s, les intègrent très bien), vous pouvez apprendre à ajouter cette reconnaissance vous-même en suivant le lien de documentation situé sur le côté.','Your theme does not natively support menus, but you can use them in sidebars by adding a “Navigation Menu” widget on the Widgets screen.'=>'Votre thème ne prend pas en charge nativement les menus, mais vous pouvez les utiliser dans la colonne latérale en ajoutant le widget « Menu de navigation » depuis l’écran Widgets.','Sorry, that is not a valid email address. Email addresses look like username@example.com.'=>'Désolé, ce n’est pas une adresse e-mail valide. Les adresses de messagerie ressemblent à cela : identifiant@example.com.','You must provide an email address.'=>'Vous devez saisir une adresse e-mail.','Your passwords do not match. Please try again.'=>'Vos mots de passe ne correspondent pas. Veuillez réessayer.','The username you provided has invalid characters.'=>'L’identifiant que vous avez fourni contient des caractères non valides.','Please provide a valid username.'=>'Veuillez saisir un identifiant valide.','Copying the required files…'=>'Copie des fichiers nécessaires…','Preparing to install the latest version…'=>'Préparation de l’installation de la dernière version…','This password will not be stored on the server.'=>'Le mot de passe ne sera pas stocké sur le serveur.','The checksum of the file (%1$s) does not match the expected checksum value (%2$s).'=>'L’empreinte de contrôle (ou checksum) de votre fichier (%1$s) ne correspond pas à la valeur de l’empreinte attendue (%2$s).','WordPress %s'=>'WordPress %s','Updating to WordPress %s'=>'Mise à jour vers WordPress %s','Due to an error during updating, WordPress has been restored to your previous version.'=>'Suite à une erreur pendant la mise à jour, WordPress vous a ramené à votre version précédente.','Looking for %1$s in %2$s'=>'Recherche %1$s dans %2$s','%s page restored from the Trash.'=>'%s page récupérée depuis la corbeille.' . "\0" . '%s pages récupérées depuis la corbeille.','%s page moved to the Trash.'=>'%s page déplacée dans la corbeille.' . "\0" . '%s pages déplacées dans la corbeille.','%s page permanently deleted.'=>'%s page définitivement supprimée.' . "\0" . '%s pages définitivement supprimées.','%s page not updated, somebody is editing it.'=>'%s page n’a pas été mise à jour : quelqu’un est déjà en train de la modifier.' . "\0" . '%s pages n’ont pas été mises à jour : quelqu’un est déjà en train de les modifier.','%s page updated.'=>'%s page mise à jour.' . "\0" . '%s pages mises à jour.','%s post restored from the Trash.'=>'%s publication récupérée depuis la corbeille.' . "\0" . '%s publications récupérées depuis la corbeille.','%s post moved to the Trash.'=>'%s publication déplacée dans la corbeille.' . "\0" . '%s publications déplacées dans la corbeille.','%s post permanently deleted.'=>'%s publication supprimée définitivement.' . "\0" . '%s publications supprimées définitivement.','%s post not updated, somebody is editing it.'=>'%s publication n’a pas été mise à jour : quelqu’un est déjà en train de la modifier.' . "\0" . '%s publications n’ont pas été mises à jour : quelqu’un est déjà en train de les modifier.','Tags deleted.'=>'Étiquettes supprimées.','Tag not updated.'=>'Étiquette non mise à jour.','Tag not added.'=>'Étiquette non ajoutée.','Tag updated.'=>'Étiquette mise à jour.','Tag deleted.'=>'Étiquette supprimée.','Tag added.'=>'Étiquette ajoutée.','Categories deleted.'=>'Catégories supprimées.','Category not updated.'=>'Catégorie non mise à jour.','Category not added.'=>'Catégorie non ajoutée.','Category updated.'=>'Catégorie mise à jour.','Category deleted.'=>'Catégorie effacée.','Category added.'=>'Catégorie ajoutée.','Compare two different revisions by selecting the “Compare any two revisions” box to the side.'=>'Comparez deux révisions différentes en cochant la case « Comparer n’importe quelles révisions » sur le côté.','Compare any two revisions'=>'Comparer n’importe quelles révisions','Restore This Autosave'=>'Rétablir cette sauvegarde automatique','Current Revision by %s'=>'Révision actuelle par %s','Autosave by %s'=>'Sauvegarde automatique par %s','revisionsBrowse'=>'Parcourir','Revisions: %s'=>'Révisions : %s','"%s".'=>'%s.','"%1$s" by %2$s.'=>'%1$s par %2$s.','"%1$s" from %2$s.'=>'« %1$s » depuis %2$s.','"%1$s" from %2$s by %3$s.'=>'%1$s tiré de %2$s par %3$s.','Revision by %s'=>'Révision par %s','Connection lost. Saving has been disabled until you are reconnected.'=>'Connexion perdue. L’enregistrement a été désactivé jusqu’à votre reconnexion.','Sorry, something went wrong. The requested comparison could not be loaded.'=>'Désolé, quelque chose s’est mal déroulé. La comparaison demandée n’a pas pu être chargée.','Repeat Password'=>'Répétez le mot de passe','Repeat New Password'=>'Répétez le nouveau mot de passe','Add menu items from the column on the left.'=>'Ajouter des éléments de menu depuis la colonne de gauche.','Plugins extend and expand the functionality of WordPress. You may install plugins in the WordPress Plugin Directory right from here, or upload a plugin in .zip format by clicking the button at the top of this page.'=>'Les extensions étendent les fonctionnalités de WordPress, et en ajoutent de nouvelles. Vous pouvez installer des extensions automatiquement en provenance du répertoire des extensions WordPress, ou téléverser une extension au format .zip en cliquant sur le bouton en haut de cette page.','http://wordpress.org/plugins/hello-dolly/'=>'https://fr.wordpress.org/plugins/hello-dolly/','The theme contains no files.'=>'Ce thème ne contient aucun fichier.','The package contains no files.'=>'Ce paquet ne contient aucun fichier.','To navigate between revisions, drag the slider handle left or right or use the Previous or Next buttons.'=>'Pour naviguer entre les révisions, faites glisser le curseur vers la gauche ou vers la droite ou utilisez les boutons Précédente ou Suivante.','Loading…'=>'Chargement…','This item has already been deleted.'=>'Cet élément a déjà été supprimé.','The item you are trying to restore from the Trash no longer exists.'=>'L’élément que vous essayez de sortir de la corbeille n’existe plus.','The item you are trying to move to the Trash no longer exists.'=>'L’élément que vous essayez de placer dans la corbeille n’existe plus.','Drag the items into the order you prefer. Click the arrow on the right of the item to reveal additional configuration options.'=>'Glissez chaque élément pour les placer dans l’ordre que vous préférez. Cliquez sur la flèche à droite de l’élément pour révéler d’autres options de configuration.','If you have not yet created any menus, click the ’create a new menu’ link to get started'=>'Si vous n’avez pas encore créé de menu, cliquez sur le lien « Créer un nouveau menu » pour vous lancer','To restore a revision, click Restore This Revision.'=>'Pour rétablir cette révision, cliquez sur « Rétablir cette révision ».','From this screen you can review, compare, and restore revisions:'=>'Depuis cet écran, vous pouvez visualiser, comparer et rétablir les révisions :','Revisions are saved copies of your post or page, which are periodically created as you update your content. The red text on the left shows the content that was removed. The green text on the right shows the content that was added.'=>'Les révisions sont des copies de votre article ou votre page, périodiquement créées tandis que vous modifiez votre contenu. Sur la gauche, le texte en rouge indique le contenu qui a été retiré. Sur la droite, le texte en vert indique le contenu qui a été ajouté.','This screen is used for managing your content revisions.'=>'Cet écran est utilisé pour gérer les révisions de vos contenus.','Followed by post revision infoTo:'=>'Vers :','Button label for a next revisionNext'=>'Suivante','Button label for a previous revisionPrevious'=>'Précédente','Followed by post revision infoFrom:'=>'Depuis :','menuUse new menu'=>'Utiliser le nouveau menu','menuEdit'=>'Modifier','Select a Menu'=>'Choisir un menu','Assigned Menu'=>'Menu assigné','Theme Location'=>'Emplacement du thème','Manage Locations'=>'Gérer les emplacements','Edit Menus'=>'Modifier les menus','To add a new menu instead of assigning an existing one, click the ’Use new menu’ link. Your new menu will be automatically assigned to that theme location'=>'Pour ajouter un menu au lieu d’en assigner un qui existe déjà, cliquez sur le lien « Utiliser un nouveau menu ». Votre nouveau menu sera automatiquement ajouté à cet emplacement du thème','To edit a menu currently assigned to a theme location, click the adjacent ’Edit’ link'=>'Pour modifier un menu actuellement assigné à un emplacement du thème, cliquez sur le lien « Modifier » adjacent','To assign menus to one or more theme locations, select a menu from each location’s dropdown. When you are finished, click Save Changes'=>'Pour assigner des menus à un ou plusieurs emplacements, sélectionnez le menu depuis la liste déroulante de chaque emplacement. Lorsque vous avez terminé, cliquez sur « Enregistrer les modifications »','This screen is used for globally assigning menus to locations defined by your theme.'=>'Cet écran est utilisé pour assigner de manière globale vos menus à des emplacements définis par votre thème.','Editing Menus'=>'Modification des menus','Delete a menu item by expanding it and clicking the Remove link'=>'Supprimez un élément du menu en l’ouvrant et en cliquant sur le bouton Supprimer','To reorganize menu items, drag and drop items with your mouse or use your keyboard. Drag or move a menu item a little to the right to make it a submenu'=>'Pour réorganiser les éléments du menu, glissez/déposez les éléments avec la souris ou utilisez votre clavier. Glissez ou déplacez légèrement un élement du menu pour en faire un sous-menu','Add one or several items at once by selecting the checkbox next to each item and clicking Add to Menu'=>'Ajoutez un ou plusieurs éléments à la fois en cochant la case à côté de chaque élément puis en cliquant sur « Ajouter au menu »','Each navigation menu may contain a mix of links to pages, categories, custom URLs or other content types. Menu links are added by selecting items from the expanding boxes in the left-hand column below.'=>'Chaque menu de navigation peut contenir un mélange de liens vers des pages, des catégories, des URL personnalisées ou d’autres types de contenu. Les liens de menu sont ajoutés en sélectionnant un élément dans l’une des sections situées dans la colonne de gauche ci-dessous.','Menu Management'=>'Gestion des menus','You can assign theme locations to individual menus by selecting the desired settings at the bottom of the menu editor. To assign menus to all theme locations at once, visit the Manage Locations tab at the top of the screen.'=>'Vous pouvez assigner un emplacement du thème à chaque menu en sélectionnant les réglages souhaités en bas de l’éditeur de menu. Pour assigner un menu à tous les emplacements d’un coup, rendez-vous dans l’onglet Gérer les emplacements en haut de l’écran.','To edit an existing menu, choose a menu from the dropdown and click Select'=>'Pour modifier un menu existant, choisissez un menu depuis la liste déroulante et cliquez sur « Sélectionner »','The menu management box at the top of the screen is used to control which menu is opened in the editor below.'=>'La section de gestion des menus, en haut de l’écran, est utilisée pour contrôler le menu qui est ouvert dans l’éditeur ci-dessous.','Add, organize, and modify individual menu items'=>'Ajouter, organiser et modifier des éléments de menu individuels','Create, edit, and delete menus'=>'Créer, modifier et supprimer des menus','From this screen you can:'=>'Depuis cet écran, vous pouvez :','This screen is used for managing your navigation menus.'=>'Cet écran est utilisé pour gérer vos menus de navigation.','Menu locations updated.'=>'Les emplacements de menu ont été mis à jour.','Your latest changes were saved as a revision.'=>'Vos dernières modifications ont été enregistrées dans une révision.','Audio Codec:'=>'Codec audio :','Audio Format:'=>'Format audio :','Genre: %s.'=>'Genre : %s.','Track %1$s of %2$s.'=>'Piste %1$s sur %2$s.','Released: %d.'=>'Date de sortie : %d.','%1$s by %2$s.'=>'%1$s par %2$s.','Restore This Revision'=>'Rétablir cette révision','Denied: %s'=>'Refusé : %s','Capabilities'=>'Permissions','Menu Settings'=>'Réglages du menu','Menu structure'=>'Structure du menu','To the top'=>'Tout en haut','Down one'=>'Descendre d’un cran','Up one'=>'Un cran vers le haut','Move'=>'Déplacer','Draft created on %1$s at %2$s'=>'Brouillon créé le %1$s à %2$s','You cannot move this item to the Trash. %s is currently editing.'=>'Vous ne pouvez pas déplacer cet élément dans la corbeille. %s est en train de le modifier.','%s has taken over and is currently editing.'=>'%s a pris la main et modifie actuellement ce contenu.','Select a menu to edit:'=>'Sélectionnez le menu à modifier :','Thank you for Updating! Please visit the Upgrade Network page to update all your sites.'=>'Merci d’avoir fait cette mise à jour ! Veuillez vous rendre sur la page de mise à jour du réseau afin de mettre à jour tous vos sites.','All right, sparky! You’ve made it through this part of the installation. WordPress can now communicate with your database. If you are ready, time now to…'=>'C’est parfait ! Vous avez passé la première partie de l’installation. WordPress peut désormais communiquer avec votre base de données. Préparez-vous, il est maintenant temps de…','Client version'=>'Version du client','Auto add pages'=>'Ajoutez automatiquement des pages','Give your menu a name, then click Create Menu.'=>'Donnez à votre menu un nom, puis cliquez sur « Créer le menu ».','Edit your default menu by adding or removing items. Drag the items into the order you prefer. Click Create Menu to save your changes.'=>'Modifiez votre menu par défaut en ajoutant ou en retirant des éléments. Faites glissez chaque élément pour les mettre dans l’ordre que vous souhaitez. Cliquez sur « Créer le menu » pour enregistrer vos modifications.','Selected menus have been successfully deleted.'=>'Les menus sélectionnés ont bien été supprimés.','For PHP files, you can use the documentation dropdown to select from functions recognized in that file. Look Up takes you to a web page with reference material about that particular function.'=>'Pour les fichiers PHP, vous pouvez utiliser le menu déroulant « Documentation » pour en apprendre plus sur les fonctions trouvées dans le ce fichier. Le bouton « Consulter » vous enverra sur la page dédiée de cette fonction.','Look Up'=>'Consulter','The documentation menu below the editor lists the PHP functions recognized in the plugin file. Clicking Look Up takes you to a web page about that particular function.'=>'Le menu « Documentation », situé sous l’éditeur, liste les fonctions PHP reconnues dans le fichier de l’extension. En cliquant sur « Consulter », vous serez envoyé sur une page web documentant cette fonction.','%s is currently editing'=>'%s modifie actuellement ce contenu','You can upload and insert media (images, audio, documents, etc.) by clicking the Add Media button. You can select from the images and files already uploaded to the Media Library, or upload new media to add to your page or post. To create an image gallery, select the images to add and click the “Create a new gallery” button.'=>'Vous pouvez téléverser et insérer des fichiers média (images, sons, documents, etc.) en cliquant sur le bouton « Ajouter un média ». Vous pouvez sélectionner vos images et fichiers parmi ceux déjà présents dans la médiathèque, ou en téléverser de nouveaux à ajouter à votre article/page. Pour créer une galerie d’images, sélectionnez les images à ajouter et cliquez sur le bouton « Créer une nouvelle galerie ».','Introducing Twenty Twenty-Five'=>'Découvrez Twenty Twenty-Five','Image rotation is not supported by your web host.'=>'La rotation d’image n’est pas disponible avec cet hébergeur.','If you are looking to use the link manager, please install the Link Manager plugin.'=>'Si vous souhaitez utiliser le gestionnaire de liens, veuillez installer l’extension Link Manager.','When changing themes, there is often some variation in the number and setup of widget areas/sidebars and sometimes these conflicts make the transition a bit less smooth. If you changed themes and seem to be missing widgets, scroll down on this screen to the Inactive Widgets area, where all of your widgets and their settings will have been saved.'=>'En changeant de thème, il y a souvent des variations sur le nombre et l’agencement des zones de widgets et des colonnes latérales, et parfois tout cela entre en conflit, rendant la transition moins aisée. Si vous avez changé de thème et que certains widgets semblent manquer, faites défiler cet écran jusqu’en bas pour les retrouver dans la zone des widgets inactifs, où ils ont été conservés avec leurs derniers réglages.','Parent — Categories, unlike tags, can have a hierarchy. You might have a Jazz category, and under that have child categories for Bebop and Big Band. Totally optional. To create a subcategory, just choose another category from the Parent dropdown.'=>'Parent — Les catégories, contrairement aux étiquettes, peuvent avoir une hiérarchie. Vous pouvez avoir une catégorie nommée « Jazz », et à l’intérieur, plusieurs catégories comme « Bebop » et « Big Band ». Le fait d’avoir une hiérarchie est totalement facultatif. Pour créer une sous-catégorie, choisissez juste une autre catégorie depuis la liste déroulante « Parente ».','Several boxes on this screen contain settings for how your content will be published, including:'=>'Plusieurs sections de cet écran vous permettez de régler la manière dont votre contenu sera publié, notamment :','Inserting Media'=>'Insertion de média','The title field and the big Post Editing Area are fixed in place, but you can reposition all the other boxes using drag and drop. You can also minimize or expand them by clicking the title bar of each box. Use the Screen Options tab to unhide more boxes (Excerpt, Send Trackbacks, Custom Fields, Discussion, Slug, Author) or to choose a 1- or 2-column layout for this screen.'=>'Le champ du titre et la zone d’édition de la publication sont inamovibles, mais vous pouvez déplacer toutes les autres sections par simple glisser/déposer. Vous pouvez également les fermer/ouvrir en cliquant sur la barre de titre de chaque section. Utilisez l’onglet « Options de l’écran » pour masquer d’autres sections (Extrait, Envoyer des rétroliens, Champs personnalisés, Commentaires, Slug, Auteur ou autrice) ou pour choisir un affichage sur une ou deux colonnes pour cet écran.','Do not forget to click “Save Changes” when you are done!'=>'N’oubliez pas de cliquer sur « Enregistrer les modifications » quand vous avez terminé !','To use a background image, simply upload it or choose an image that has already been uploaded to your Media Library by clicking the “Choose Image” button. You can display a single instance of your image, or tile it to fill the screen. You can have your background fixed in place, so your site content moves on top of it, or you can have it scroll with your site.'=>'Pour utiliser une image de fond, téléversez-la simplement ou choisissez une image déjà téléversée dans votre médiathèque en cliquant sur le bouton « Choisir l’image ». Vous pouvez n’afficher qu’une occurrence de l’image, ou la répéter afin de remplir l’écran. Vous pouvez choisir de garder le fond en place quand vous faites défiler le contenu, ou au contraire faire que le fond défile en même temps.','You are using the multi-file uploader. Problems? Try the browser uploader instead.'=>'Vous utilisez l’outil de téléversement multi-fichiers. Si vous rencontrez des problèmes, essayez la méthode du navigateur à la place.','media itemEdit'=>'Modifier','colorDefault: %s'=>'Par défaut : %s','column nameUploaded to'=>'Téléversé sur ','The uploaded file is not a valid image. Please try again.'=>'Le fichier téléversé n’est pas une image valide. Veuillez réessayer.','Choose a Custom Header'=>'Choisir un entête personnalisé','Choose a Background Image'=>'Choisir une image d’arrière-plan','In the Header Text section of this page, you can choose whether to display this text or hide it. You can also choose a color for the text by clicking the Select Color button and either typing in a legitimate HTML hex value, e.g. “#ff0000” for red, or by choosing a color using the color picker.'=>'Dans la section « Texte d’entête » de cette page, vous pouvez choisir d’afficher ce texte ou de le masquer. Vous pouvez également choisir une couleur pour ce texte en cliquant sur le bouton « Sélecteur de couleur » et soit en saisissant une valeur HTML valide (ex. : « #ff0000 » pour du rouge) ou en cliquant sur le sélecteur de couleur.','You can also choose a background color by clicking the Select Color button and either typing in a legitimate HTML hex value, e.g. “#ff0000” for red, or by choosing a color using the color picker.'=>'Vous pouvez également choisir une couleur pour ce texte en cliquant sur le bouton de sélection de couleur ou en saisissant une valeur HTML valide (exemple : « #ff0000 » pour du rouge) ou en utilisant la palette de couleurs.','In the In response to column, there are three elements. The text is the name of the post that inspired the comment, and links to the post editor for that entry. The View Post link leads to that post on your live site. The small bubble with the number in it shows the number of approved comments that post has received. If there are pending comments, a red notification circle with the number of pending comments is displayed. Clicking the notification circle will filter the comments screen to show only pending comments on that post.'=>'Dans la colonne En réponse à se trouvent trois éléments. Le texte correspond au titre de l’article qui a inspiré ce commentaire, et un clic sur ce lien vous permettra de modifier cet article. Le lien « Afficher l’article » mène à l’article sur le site. La petite bulle avec un nombre vous indique le nombre de commentaires approuvés que l’article a reçu. S’il y a des commentaires en attente de validation, un cercle de notification rouge contenant le nombre de commentaires en attente sera affiché. Un clic sur ce cercle de notification filtrera la liste des commentaires pour n’ afficher que ceux qui sont liés à cet article.','ID #%1$s: %2$s'=>'ID n°%1$s : %2$s','ID #%1$s: %2$s The current user will not be deleted.'=>'ID n°%1$s : %2$s Le compte actuel ne sera pas supprimé.','Used: %1$s%% of %2$s'=>'Taux d’utilisation : %1$s%% sur %2$s','Please select an option.'=>'Veuillez sélectionner une option.','After you’ve done that, click “Run the installation”.'=>'Après cela, cliquez sur « Lancer l’installation »','If you want to install a plugin that you’ve downloaded elsewhere, click the Upload Plugin button above the plugins list. You will be prompted to upload the .zip package, and once uploaded, you can activate the new plugin.'=>'Si vous voulez installer une extension que vous avez téléchargée depuis un site tiers, cliquez sur le bouton « Téléverser une extension ». Il vous sera demandé d’indiquer le fichier .zip à téléverser, et ceci fait, vous pourrez activer l’extension.','You can also browse a user’s favorite plugins, by using the Favorites link above the plugins list and entering their WordPress.org username.'=>'Vous pouvez voir les extensions favorites d’un compte WordPress.org en utilisant le lien « Favorites » situé en haut à gauche de l’écran, et en renseignant son identifiant WordPress.org.','If you know what you are looking for, Search is your best bet. The Search screen has options to search the WordPress Plugin Directory for a particular Term, Author, or Tag. You can also search the directory by selecting popular tags. Tags in larger type mean more plugins have been labeled with that tag.'=>'Si vous savez ce que vous voulez, commencez par le champ « Recherche » : il vous permet de lancer une recherche sur le dépôt d’extensions de WordPress.org, pour un terme, un auteur/autrice, ou une étiquette en particulier. Vous pouvez également lancer une recherche en cliquant sur une des étiquettes populaires. Plus une étiquette est grande, plus elle fait référence à un grand nombre d’extensions.','It is up to search engines to honor this request.'=>'Certains moteurs de recherche peuvent décider de l’indexer malgré tout.','Discourage search engines from indexing this site'=>'Demander aux moteurs de recherche de ne pas indexer ce site','Allow search engines to index this site'=>'Autoriser les moteurs de recherche à indexer ce site','Search engine visibility'=>'Visibilité par les moteurs de recherche','Welcome to WordPress %1$s. You will be redirected to the About WordPress screen. If not, click here.'=>'Bienvenue sur WordPress %1$s. Vous allez être redirigé vers l’écran « À propos » de WordPress. Si ce n’est pas le cas, cliquez ici.','Get Favorites'=>'Afficher les favoris','Your WordPress.org username:'=>'Votre identifiant WordPress.org :','If you have marked plugins as favorites on WordPress.org, you can browse them here.'=>'Si vous avez mis des extensions en favoris sur WordPress.org, vous pouvez les voir ici.','Welcome to WordPress!'=>'Bienvenue sur WordPress !','Search engines discouraged'=>'Moteurs de recherche refusés','This child theme requires its parent theme, %2$s.'=>'Ce thème enfant nécessite son thème parent, %2$s.','Plugin InstallerFavorites'=>'Favorites','To install the theme so you can preview it with your site’s content and customize its theme options, click the "Install" button at the top of the left-hand pane. The theme files will be downloaded to your website automatically. When this is complete, the theme is now available for activation, which you can do by clicking the "Activate" link, or by navigating to your Manage Themes screen and clicking the "Live Preview" link under any installed theme’s thumbnail image.'=>'Pour installer un thème dans le but de le prévisualiser avec le contenu de votre site et d’en personnaliser les options, cliquez sur le bouton « Installer » en haut du panneau de gauche. Les fichiers du thème seront automatiquement téléchargés vers votre site. Ceci fait, le thème sera disponible, et vous pourrez l’activer en cliquant sur le lien « Activer », ou en vous rendant sur l’écran « Gérer les thèmes » et en cliquant sur le lien « Prévisualiser en direct » situé sous la miniature de chaque thème.','widgetAdd'=>'Ajouter','widgetEdit'=>'Modifier','Search by tag'=>'Recherche par étiquette','Search by author'=>'Recherche par auteur ou autrice','Search by keyword'=>'Rechercher par mot-clé','Type of search'=>'Type de recherche','Screen Options Tab'=>'Onglet des options de l’écran','Contextual Help Tab'=>'Onglet d’aide contextuelle','Select comment'=>'Sélectionnez un commentaire','Tags can be selectively converted to categories using the tag to category converter.'=>'Les étiquettes peuvent être converties de manière sélective en catégories via le convertisseur étiquettes vers catégories.','You can delete Link Categories in the Bulk Action pull-down, but that action does not delete the links within the category. Instead, it moves them to the default Link Category.'=>'Vous pouvez supprimer des catégories de liens avec la liste déroulante « Actions groupées », mais cette action ne supprime pas les liens contenus dans la catégorie. Au lieu de cela, ils sont déplacés dans la catégorie de liens par défaut.','Creating a Page is very similar to creating a Post, and the screens can be customized in the same way using drag and drop, the Screen Options tab, and expanding/collapsing boxes as you choose. This screen also has the distraction-free writing space, available in both the Visual and Text modes via the Fullscreen buttons. The Page editor mostly works the same as the Post editor, but there are some Page-specific features in the Page Attributes box.'=>'Le processus de création d’une page reste très proche de celui d’un article, et les écrans respectifs peuvent être personnalisés de la même manière, par le biais de glisser/déposer, de l’onglet « Option de l’écran », et en ouvrant/fermant les sections selon vos besoins. Cet écran dispose également du mode « aucune distraction », tant dans le mode Visuel que dans le mode Texte, via les boutons « Plein écran ». L’éditeur de page fonctionne globalement comme celui des articles, mais dispose de certaines spécificités, disponibles dans la section « Attributs de page » :','You can select an image to be shown at the top of your site by uploading from your computer or choosing from your media library. After selecting an image you will be able to crop it.'=>'Vous pouvez choisir une image d’entête personnalisée en la téléversant depuis votre ordinateur ou en la choisissant dans votre médiathèque. Après avoir sélectionné l’image, vous pourrez la recadrer.','Skip to main content'=>'Aller au contenu principal','You can set a custom image header for your site. Simply upload the image and crop it, and the new header will go live immediately. Alternatively, you can use an image that has already been uploaded to your Media Library by clicking the “Choose Image” button.'=>'Vous pouvez utiliser une image d’entête personnalisée pour votre site. Téléversez simplement l’image, recadrez-la, et le nouvel entête sera aussitôt en ligne. Autrement, vous pouvez utiliser une image qui a déjà été téléversée dans votre médiathèque, en cliquant sur le bouton « Choisissez une image ».','Skip Cropping, Publish Image as Is'=>'Aucun recadrage, utiliser l’image telle quelle','Choose Image'=>'Choisissez une image','Or choose an image from your media library:'=>'Ou choisissez une image dans votre médiathèque :','Select Image'=>'Sélectionnez une image','Collapse'=>'Réduire','If you do not want a header image to be displayed on your site at all, click the “Remove Header Image” button at the bottom of the Header Image section of this page. If you want to re-enable the header image later, you just have to select one of the other image options and click “Save Changes”.'=>'Si vous ne souhaitez pas que votre site utilise une image d’entête, cliquez sur le bouton « Retirer l’image d’entête » en bas de la section « Image d’entête » de cette page. Si vous souhaitez réactiver l’image d’entête, il vous suffit de sélectionner l’une des autres options d’images, et de la valider en cliquant sur « Enregistrer les modifications ».','This theme is already installed and is up to date'=>'Ce thème est déjà installé et à jour','pluginInstalled'=>'Installée','Previewing and Customizing'=>'Prévisualisation et personnalisation','Previewing and Installing'=>'Prévisualisation et installation','Once you have generated a list of themes, you can preview and install any of them. Click on the thumbnail of the theme you are interested in previewing. It will open up in a full-screen Preview page to give you a better idea of how that theme will look.'=>'Une fois que vous avez généré une liste de thèmes, vous pouvez les prévisualiser et les installer. Cliquez sur la miniature du thème que vous souhaitez prévisualiser. Cela ouvrira une page de prévisualisation en plein écran, afin de vous donner une meilleure idée de l’aspect de ce thème.','You are using the browser’s built-in file uploader. The WordPress uploader includes multiple file selection and drag and drop capability. Switch to the multi-file uploader.'=>'Vous utilisez l’outil de téléversement du navigateur. Le nouvel outil de téléversement de WordPress inclut la possibilité de téléverser plusieurs fichiers à la fois par glisser/déposer. Passer au nouvel outil de téléversement.','Preview %s'=>'Prévisualisation de %s','The Categories and Tags Converter link on this screen will take you to the Import screen, where that Converter is one of the plugins you can install. Once that plugin is installed, the Activate Plugin & Run Importer link will take you to a screen where you can choose to convert tags into categories or vice versa.'=>'Le lien « Convertisseur de catégories-étiquettes » vous mènera à la page d’import, où ledit convertisseur est l’une des extensions que vous pouvez installer. Une fois installée, le lien « Lancer l’outil d’importation » vous mènera à l’écran d’où vous pourrez choisir de lancer une conversion dans un sens ou dans l’autre.','Categories have hierarchy, meaning that you can nest sub-categories. Tags do not have hierarchy and cannot be nested. Sometimes people start out using one on their posts, then later realize that the other would work better for their content.'=>'Les catégories disposent d’une hiérarchie, ce qui signifie que vous pouvez leur donner des sous-catégories. Les étiquettes n’ont pas de hiérarchie et ne peuvent être imbriquées. Parfois, des auteurs ou autrices commencent par utiliser une sorte de caractérisation, pour se rendre compte par la suite qu’ils préfèrent l’autre.','For most themes, the header text is your Site Title and Tagline, as defined in the General Settings section.'=>'Pour la plupart des thèmes, le texte d’entête est le titre de votre site et son slogan, tels que définis dans la section Réglages généraux.','If your theme has more than one default header image, or you have uploaded more than one custom header image, you have the option of having WordPress display a randomly different image on each page of your site. Click the “Random” radio button next to the Uploaded Images or Default Images section to enable this feature.'=>'Si votre thème a plus d’une image d’entête par défaut, ou si vous avez téléversé plus d’une image d’entête personnalisée, vous pouvez faire en sorte que WordPress affiche une image aléatoire différente à chaque chargement de votre site. Sélectionnez l’option « Au hasard » dans la section « Images par défaut » ou « Images téléversées » pour activer cette fonctionnalité.','Some themes come with additional header images bundled. If you see multiple images displayed, select the one you would like and click the “Save Changes” button.'=>'Certains thèmes disposent d’une série d’images d’entête. Si vous voyez plusieurs images affichées, sélectionnez celle que vous aimez et cliquez sur le bouton « Enregistrer les modifications ».','You can choose from the theme’s default header images, or use one of your own. You can also customize how your Site Title and Tagline are displayed.'=>'Vous pouvez choisir à partir des images d’entête par défaut du thème, ou utiliser l’une des vôtres. Vous pouvez également personnaliser la manière dont s’affichent le titre de votre site et son slogan.','This screen is used to customize the header section of your theme.'=>'Cet écran est utilisé pour personnaliser la section d’entête de votre thème.','Configuration Error'=>'Erreur de configuration','Revert to the Browser Uploader by clicking the link below the drag and drop box.'=>'Revenez à l’outil de téléversement du navigateur en cliquant sur le lien sous la zone de glisser-déposer.','User deleted.'=>'Compte supprimé.','Could not copy files. You may have run out of disk space.'=>'Impossible de copier les fichiers. Il se pourrait que vous manquiez de place.','Find a theme based on specific features.'=>'Trouver un thème selon des critères précis.','Search for themes by keyword.'=>'Rechercher des thèmes par mot-clé.','In all likelihood, these items were supplied to you by your web host. If you do not have this information, then you will need to contact them before you can continue. If you are ready…'=>'Vous devriez normalement avoir reçu ces informations de la part de votre hébergeur. Si vous ne les avez pas, il vous faudra contacter votre hébergeur afin de continuer. Si vous avez tout le nécessaire, alors…','This theme is broken.'=>'Le thème est cassé.','Set as header'=>'Utiliser comme entête','Set as background'=>'Utiliser comme image de fond','Customize “%s”'=>'Personnaliser « %s »','(required)'=>'(nécessaire)','Edit Link'=>'Modifier le lien','Error: This email is already registered. Please choose another one.'=>'Erreur : cet e-mail est déjà inscrit. Veuillez en choisir un autre.','Error: Please enter a nickname.'=>'Erreur : veuillez saisir un pseudonyme.','https://wordpress.org/about/'=>'https://fr.wordpress.org/about/','Select All'=>'Tout sélectionner','Public, Sticky'=>'Public, épinglé','Privately Published'=>'Mis en ligne en privé','Save as Pending'=>'Mettre en attente','Enter a link URL or click above for presets.'=>'Saisissez une adresse de lien ou cliquez ci-dessus pour les liens prédéfinis.','Link URL'=>'URL du lien','No comments yet.'=>'Aucun commentaire pour l’instant.','Version:'=>'Version : ','Collapse Sidebar'=>'Réduire la colonne latérale','Plugin'=>'Extension','All'=>'Tout','Word count: %s'=>'Nombre de mots : %s','Edit comment'=>'Modifier le commentaire','Preview:'=>'Aperçu :','E-mail'=>'E-mail','The parent theme could not be found. You will need to install the parent theme, %s, before you can use this child theme.'=>'Le thème parent n’a pas pu être trouvé. Vous allez devoir installer le thème parent, %s, avant de pouvoir utiliser ce thème enfant.','Successfully installed the parent theme, %1$s %2$s.'=>'Le thème parent, %1$s %2$s, a bien été installé.','The parent theme, %1$s %2$s, is currently installed.'=>'Le thème parent, %1$s %2$s, est bien installé.','Preparing to install %1$s %2$s…'=>'Préparation à l’installation de %1$s %2$s…','This theme requires a parent theme. Checking if it is installed…'=>'Ce thème nécessite un thème parent. Nous vérifions s’il est installé…','Show header text with your image.'=>'Afficher le texte d’entête avec l’image.','Header Text'=>'Texte de l’entête','There is a new version of %1$s available. View version %4$s details or update now.'=>'Une nouvelle version pour %1$s est disponible. Afficher les détails de la version %4$s ou mettre à jour maintenant.','By %s.'=>'par %s.','Add Comment'=>'Ajouter un commentaire','Add New Comment'=>'Ajouter un commentaire','http://ma.tt/'=>'https://ma.tt/','This is not just a plugin, it symbolizes the hope and enthusiasm of an entire generation summed up in two words sung most famously by Louis Armstrong: Hello, Dolly. When activated you will randomly see a lyric from Hello, Dolly in the upper right of your admin screen on every page.'=>'Ce n’est pas qu’une extension. Elle symbolise l’espoir et l’enthousiasme de toute une génération, résumé en deux mots, qu’a notamment chanté Louis Armstrong : Hello, Dolly. Une fois activée, elle affichera une ligne aléatoirement des paroles de la chanson Hello, Dolly, en haut à droite de toutes les pages de l’administration.','Hello Dolly'=>'Hello Dolly','Welcome — Shows links for some of the most common tasks when setting up a new site.'=>'Bienvenue — Affiche des liens pour certaines des tâches les plus courantes lors de la configuration d’un nouveau site.','There is a new version of %1$s available. View version %4$s details. Automatic update is unavailable for this theme.'=>'Une nouvelle version pour %1$s est disponible. Afficher les détails de la version %4$s. La mise à jour automatique n’est pas disponible pour ce thème.','HowdyWelcome'=>'Bienvenue','Delete My Site Permanently'=>'Effacer mon site définitivement','I\'m sure I want to permanently delete my site, and I am aware I can never get it back or use %s again.'=>'Je suis certain·e de vouloir effacer mon site définitivement, et je me rends compte que je ne pourrais jamais le récupérer ni utiliser %s pour un nouveau site.','Remember, once deleted your site cannot be restored.'=>'Rappelez-vous qu’une fois supprimé, votre site ne peut être rétabli.','If you do not want to use your %s site any more, you can delete it using the form below. When you click Delete My Site Permanently you will be sent an email with a link in it. Click on this link to delete your site.'=>'Si vous ne souhaitez plus utiliser votre site %s, vous pouvez l’effacer à l’aide du formulaire ci-dessous. Après avoir cliqué sur Effacer mon site, vous recevrez un message avec un lien. Cliquez sur ce lien pour effacer votre site.','Thank you. Please check your email for a link to confirm your action. Your site will not be deleted until this link is clicked.'=>'Merci. Veuillez consulter le message que nous vous avons envoyé pour confirmer cette action. Votre site ne sera pas effacé tant que vous n’aurez pas cliqué le lien qu’il contient.','Sorry, the link you clicked is stale. Please select another option.'=>'Désolé, mais le lien que vous avez cliqué est avarié. Veuillez sélectionner une autre option.','Thank you for using %s, your site has been deleted. Happy trails to you until we meet again.'=>'Merci à vous d’avoir utilisé %s, votre site a été effacé. Nous espérons vous revoir.','Primary Site'=>'Site principal','British English'=>'Anglais (UK)','American English'=>'Anglais (US)','View Site'=>'Afficher le site','Visit Dashboard'=>'Se rendre sur le Tableau de bord','Your Sites'=>'Vos sites','If you reached this screen by accident and meant to visit one of your own sites, here are some shortcuts to help you find your way.'=>'Si vous êtes arrivé sur cet écran par accident, et que vous vouliez en fait vous rendre sur l’un de vos propres sites, voici quelques raccourcis pour vous aider à trouver votre chemin.','You attempted to access the "%1$s" dashboard, but you do not currently have privileges on this site. If you believe you should be able to access the "%1$s" dashboard, please contact your network administrator.'=>'Vous avez tenté d’accéder au tableau de bord de « %1$s ». Cependant, vous ne disposez pas pour le moment des droits nécessaires sur ce site. Si vous pensez que vous devriez pouvoir accéder au tableau de bord de « %1$s », contactez l’administrateur ou l’administratrice du réseau.','MB (Leave blank for network default)'=>'Mo (Laisser vide pour utiliser la valeur par défaut du réseau)','[%s] New Admin Email Address'=>'[%s] Nouvelle adresse e-mail d’administration','Disabled'=>'Désactivé','Paused (%s)'=>'Mis en pause (%s)' . "\0" . 'Mis en pause (%s)','Global Settings'=>'Réglages globaux','You must be a member of at least one site to use this page.'=>'Vous devez être membre d’au moins un site pour utiliser cette page.','The primary site you chose does not exist.'=>'Le site principal que vous avez choisi n’existe pas.','If you want to run multiple WordPress installations in a single database, change this.'=>'Si vous souhaitez faire tourner plusieurs installations de WordPress sur une même base de données, modifiez ce réglage.','Table Prefix'=>'Préfixe des tables','Database Host'=>'Adresse de la base de données','example passwordpassword'=>'mot de passe','example usernameusername'=>'Identifiant','Database Name'=>'Nom de la base de données','Below you should enter your database connection details. If you are not sure about these, contact your host.'=>'Vous devez saisir ci-dessous les détails de connexion à votre base de données. Si vous ne les connaissez pas, contactez votre hébergeur.','Let’s go!'=>'C’est parti !','Table prefix (if you want to run more than one WordPress in a single database)'=>'Préfixe de table (si vous souhaitez avoir plusieurs WordPress sur une même base de données)','Database host'=>'Hôte de base de données','Database password'=>'Mot de passe de base de données','Database username'=>'Identifiant MySQL','Database name'=>'Nom de la base de données','WordPress › Setup Configuration File'=>'WordPress › Fichier de configuration','The file %1$s already exists one level above your WordPress installation. If you need to reset any of the configuration items in this file, please delete it first. You may try installing now.'=>'Le fichier %1$s existe déjà, un niveau au-dessus de votre installation WordPress. Si vous devez mettre à zéro vos éléments de configuration, veuillez d’abord effacer ce fichier. Vous pouvez essayer de lancer l’installation maintenant.','The file %1$s already exists. If you need to reset any of the configuration items in this file, please delete it first. You may try installing now.'=>'Le fichier %1$s existe déjà. Si vous devez mettre à zéro n’importe quelle valeur de configuration dans ce fichier, veuillez commencer par le supprimer. Vous pouvez essayer de lancer l’installation maintenant.','Sorry, I need a %s file to work from. Please re-upload this file to your WordPress installation.'=>'Désolé, il est nécessaire de disposer d’un fichier %s à partir duquel travailler. Veuillez retéléverser ce fichier au sein de votre installation WordPress.','To allow use of this page to automatically repair database problems, please add the following line to your %s file. Once this line is added to your config, reload this page.'=>'Pour autoriser cette page à réparer automatiquement les problèmes de base de données, veuillez ajouter la ligne suivante dans votre fichier %s. Une fois cette ligne ajoutée à votre configuration, rechargez cette page.','No comments awaiting moderation.'=>'Aucun commentaire en attente de modération.','Plugin installer section titleOther Notes'=>'Autres notes','Plugin installer section titleChangelog'=>'Journal des modifications','Plugin installer section titleScreenshots'=>'Captures d’écrans','Plugin installer section titleFAQ'=>'FAQ','Plugin installer section titleInstallation'=>'Installation','Plugin installer section titleDescription'=>'Description','Plugin Homepage »'=>'Site de l’extension »','You can export a file of your site’s content in order to import it into another installation or platform. The export file will be an XML file format called WXR. Posts, pages, comments, custom fields, categories, and tags can be included. You can choose for the WXR file to include only certain posts or pages by setting the dropdown filters to limit the export by category, author, date range by month, or publishing status.'=>'Vous pouvez exporter le contenu de votre site dans un fichier, afin de l’importer dans une autre installation autonome ou une autre plateforme. Le fichier d’export utilise un format de type XML, baptisé WXR. Il peut contenir vos articles, pages, commentaires, champs personnalisés, catégories et étiquettes. Vous pouvez utiliser des filtres pour que le fichier WXR ne contienne les articles que d’une certaine plage de dates (par mois), un auteur ou autrice donné, une catégorie précise, ou des états de publication.','Failed to repair the %1$s table. Error: %2$s'=>'Impossible de réparer la table %1$s. Erreur : %2$s','New users will receive an email letting them know they’ve been added as a user for your site. This email will also contain their password. Check the box if you do not want the user to receive a welcome email.'=>'Les nouveaux comptes reçoivent un e-mail les informant qu’ils ont été ajoutés à votre site. Cet e-mail contient également leur mot de passe. Cochez la case si vous ne voulez pas envoyer ce message de bienvenue.','There are unsaved changes that will be lost. \'OK\' to continue, \'Cancel\' to return to the Image Editor.'=>'Les modifications qui n’ont pas été enregistrées seront perdues. « OK » pour continuer, « Annuler » pour revenir à l’éditeur d’image.','Post via email settings allow you to send your WordPress installation an email with the content of your post. You must set up a secret email account with POP3 access to use this, and any mail received at this address will be posted, so it’s a good idea to keep this address very secret.'=>'Les réglages de publication par e-mail vous permettant d’envoyer à votre installation WordPress un e-mail dont le contenu sera publié dans un article. Vous devez définir un compte de messagerie secret avec un accès POP3. Tout message reçu à cette adresse sera publié. Il vaut donc mieux garder cette adresse à l’abri des regards.','You can filter the list of users by User Role using the text links above the users list to show All, Administrator, Editor, Author, Contributor, or Subscriber. The default view is to show all users. Unused User Roles are not listed.'=>'Vous pouvez filtrer la liste des comptes par rôle, à l’aide des liens textuels au-dessus de la liste des comptes, afin d’afficher tous les comptes, ou seulement les administrateurs/administratrices, éditeurs/éditrices, auteurs/autrices ou contributeurs/contributrices. Par défaut, tous les comptes sont affichés. Les rôles sans compte associé ne sont pas listés.','In previous versions of WordPress, all importers were built-in. They have been turned into plugins since most people only use them once or infrequently.'=>'Dans les versions précédentes de WordPress, tous les outils d’importation étaient directement inclus. Nous les avons convertis en extensions, car la plupart des gens ne s’en servent que très rarement, voire une seule fois.','There is an autosave of this post that is more recent than the version below. View the autosave'=>'Une sauvegarde automatique existe pour cette publication ; elle est plus récente que la version affichée ci-dessous. Afficher cette sauvegarde automatique.','Image could not be processed. Please go back and try again.'=>'L’image n’a pas pu être traitée. Veuillez revenir en arrière en réessayer.','The active theme is broken. Reverting to the default theme.'=>'Le thème courant est endommagé. Retour au thème par défaut.','WordPress can also attempt to optimize the database. This improves performance in some situations. Repairing and optimizing the database can take a long time and the database will be locked while optimizing.'=>'WordPress peut également tenter d’optimiser la base de données. Cela peut améliorer ses performances dans certains cas. La réparation et l’optimisation peuvent prendre longtemps, et la base de données sera verrouillée durant l’optimisation.','WordPress can automatically look for some common database problems and repair them. Repairing can take a while, so please be patient.'=>'WordPress peut automatiquement rechercher les problèmes courants de base de données et les réparer. La réparation peut prendre un certain temps, veuillez être patient.','Repairs complete. Please remove the following line from wp-config.php to prevent this page from being used by unauthorized users.'=>'Réparations effectuées. Veuillez retirer la ligne suivante de votre fichier wp-config.php, pour empêcher que cette page soit utilisée par des comptes non autorisés.','The %1$s table is not okay. It is reporting the following error: %2$s. WordPress will attempt to repair this table…'=>'La table %1$s est dans un mauvais état. Elle renvoie l’erreur suivante : %2$s. WordPress va tenter de la réparer…','Enter the email address or username of an existing user on this network to invite them to this site. That person will be sent an email asking them to confirm the invite.'=>'Pour inviter un compte de ce réseau sur ce site, saisissez son adresse e-mail ou son identifiant. Cette personne recevra alors un message lui proposant de confirmer son ajout.','Enter the email address of an existing user on this network to invite them to this site. That person will be sent an email asking them to confirm the invite.'=>'Saisissez l’adresse e-mail d’un compte existant sur votre réseau, afin de l’inviter sur ce site. Cette personne recevra un message lui demandant de confirmer l’invitation.','Show Toolbar when viewing site'=>'Afficher la barre d’outils lorsque vous visitez le site','For more information, see the release notes.'=>'Pour plus d’informations, consultez les notes de publication.','Version %1$s addressed some security issues and fixed %2$s bug.'=>'La version %1$s a corrigé quelques problèmes de sécurité et %2$s bogue.' . "\0" . 'La version %1$s a corrigé quelques problèmes de sécurité et %2$s bogues.','Version %1$s addressed a security issue and fixed %2$s bug.'=>'La version %1$s a corrigé un problème de sécurité et %2$s bogue.' . "\0" . 'La version %1$s a corrigé un problème de sécurité et %2$s bogues.','Version %1$s addressed %2$s bug.'=>'La version %1$s a corrigé %2$s bogue.' . "\0" . 'La version %1$s a corrigé %2$s bogues.','Version %s addressed some security issues.'=>'La version %s a corrigé quelques problèmes de sécurité.','Maintenance and Security Release'=>'Mise à jour de maintenance et de sécurité','Security Release'=>'Mise à jour de sécurité','Maintenance Release'=>'Mise à jour de maintenance','What’s New'=>'Nouveautés','This screen allows you to choose your permalink structure. You can choose from common settings or create custom URL structures.'=>'Cet écran vous permet de choisir la structure de permalien par défaut. Vous pouvez choisir les réglages les plus courants, ou créer votre propre structure de liens.','Welcome to WordPress %1$s. Learn more.'=>'Bienvenue sur WordPress %1$s. En savoir plus.','You can upload media files here without creating a post first. This allows you to upload files to use with posts and pages later and/or to get a web link for a particular file that you can share. There are three options for uploading files:'=>'Vous pouvez ici téléverser des fichiers sans avoir besoin de créer un publication au préalable. Ceci vous permet de téléverser des fichiers qui seront utilisables par les articles et les pages ultérieurement et/ou seront utilisés via un lien internet pour partager un fichier particulier. Il y a 3 méthodes pour téléverser des fichiers :','Adding Tags'=>'Ajout d’étiquettes','Adding Categories'=>'Ajout de catégories','Troubleshooting'=>'Diagnostic','How to Update'=>'Comment faire les mises à jour','Once you’ve saved the download file, you can use the Import function in another WordPress installation to import the content from this site.'=>'Une fois que le fichier téléchargé a été enregistré, vous pouvez utiliser la fonction Importer d’un autre site WordPress pour importer ce fichier dans cet autre site.','Attaching Files'=>'Joindre des fichiers','You can also edit or move multiple posts to the Trash at once. Select the posts you want to act on using the checkboxes, then select the action you want to take from the Bulk actions menu and click Apply.'=>'Vous pouvez également modifier plusieurs articles à la fois, ou les déplacer dans la corbeille d’un coup. Sélectionnez les articles sur lesquels vous voulez lancer une action en cochant leurs cases, puis sélectionnez l’action que vous voulez lancer dans le menu « Actions groupées » et cliquez sur « Appliquer ».','Available Actions'=>'Actions disponibles','You can customize the display of this screen’s contents in a number of ways:'=>'Vous pouvez personnaliser l’affichage de cet écran de plusieurs manières :','Screen Content'=>'Contenu de l’écran','This screen provides access to all of your posts. You can customize the display of this screen to suit your workflow.'=>'Cet écran vous donne accès à tous vos articles. Vous pouvez personnaliser son affichage afin qu’il corresponde au mieux à vos besoins.','If the importer you need is not listed, search the plugin directory to see if an importer is available.'=>'Si l’outil d’importation dont vous avez besoin n’est pas listé, faites une recherche dans le répertoire officiel des extensions pour voir s’il y en a un qui répond à votre besoin.','Moderating Comments'=>'Modération des commentaires','If you want to convert your categories to tags (or vice versa), use the Categories and Tags Converter available from the Import screen.'=>'Si vous souhaitez convertir vos catégories en étiquettes (et vice versa), utilisez le Convertisseur de catégories-étiquettes, disponible depuis l’écran des outils d’importation.','Adding Plugins'=>'Ajout d’extensions','Adding Themes'=>'Ajout de thèmes','Subscribers can read comments/comment/receive newsletters, etc. but cannot create regular site content.'=>'Les abonnés et abonnées peuvent lire les commentaires/commenter/recevoir les newsletters… mais ne peuvent pas créer de contenu sur le site.','Authors can publish and manage their own posts, and are able to upload files.'=>'Les auteurs ou autrices peuvent publier et gérer leurs propres articles, ils peuvent également téléverser des fichiers.','Here is a basic overview of the different user roles and the permissions associated with each one:'=>'Voici un rapide survol des différents rôles assignables aux comptes, et des droits qui leurs sont associés :','User Roles'=>'Rôles des comptes','Remember to click the Add New User button at the bottom of this screen when you are finished.'=>'N’oubliez pas de cliquer sur le bouton « Ajouter un compte », en bas de cet écran, quand vous aurez terminé.','To add a new user to your site, fill in the form on this screen and click the Add New User button at the bottom.'=>'Pour ajouter un nouveau compte à votre site, remplissez le formulaire de cet écran et cliquez sur le bouton « Ajouter un compte » en bas de l’écran.','Custom Structures'=>'Structure personnalisée','Common Settings'=>'Réglages les plus courants','Permalinks are the permanent URLs to your individual pages and blog posts, as well as your category and tag archives. A permalink is the web address used to link to your content. The URL to each post should be permanent, and never change — hence the name permalink.'=>'Les permaliens sont des adresses web permanentes vers vos pages individuelles et vos articles, ainsi que vos archives de catégorie et d’étiquette. Ils offrent un lien plus compréhensible vers votre contenu. Les adresses de chaque article devraient être permanentes et ne jamais changer, d’où le nom de permalien.','You can submit content in several different ways; this screen holds the settings for all of them. The top section controls the editor within the dashboard, while the rest control external publishing methods. For more information on any of these methods, use the documentation links.'=>'Vous disposez de plusieurs méthodes pour envoyer du contenu. Cet écran vous présente les réglages de chacune. La première section gère l’éditeur de l’administration de WordPress, tandis que les autres gèrent les méthodes externes. Pour obtenir plus d’informations sur toutes ces méthodes, suivez les liens vers la documentation.','Uploading Files allows you to choose the folder and path for storing your uploaded files.'=>'L’option « Téléversement des médias » vous permet de choisir le dossier et le chemin de stockage de vos fichiers téléversés.','Installing themes on Multisite can only be done from the Network Admin section.'=>'En mode Multisite, vous pouvez installer des thèmes depuis la section Admin du Réseau.','If desired, WordPress will automatically alert various services of your new posts.'=>'Si vous le souhaitez, WordPress peut automatiquement informer différents services en ligne de vos nouvelles publications.','Post Via Email'=>'Envoi d’article par e-mail','This screen provides many options for controlling the management and display of comments and links to your posts/pages. So many, in fact, they will not all fit here! :) Use the documentation links to get information on what each discussion setting does.'=>'Cet écran offre plusieurs options pour contrôler la gestion et l’affichage des commentaires et liens sur vos articles/pages. D’ailleurs, il y en a tellement qu’elles ne tiennent pas toutes ici :) Utiliser le lien vers la documentation pour obtenir des informations sur ce que fait chaque réglage des commentaires.','You can change your password, turn on keyboard shortcuts, change the color scheme of your WordPress administration screens, and turn off the WYSIWYG (Visual) editor, among other things. You can hide the Toolbar (formerly called the Admin Bar) from the front end of your site, however it cannot be disabled on the admin screens.'=>'Vous pouvez modifier votre mot de passe, activer les raccourcis clavier, modifier le jeu de couleurs des écrans de l’administration de votre WordPress, et désactiver l’éditeur visuel (WYSIWYG), entre autres choses. Vous pouvez également masquer la barre d’outils (anciennement « barre d’administration ») sur l’interface publique de votre site, mais elle ne peut pas être désactivée sur les écrans d’administration.','This sidebar is no longer available and does not show anywhere on your site. Remove each of the widgets below to fully remove this inactive sidebar.'=>'Cette colonne latérale n’est plus disponible, et ne s’affiche nulle part sur le site. Vous pouvez en retirer les widgets ci-dessous afin de la supprimer totalement.','Inactive Sidebar (not used)'=>'Colonne latérale inactive (inutilisée)','Clicking Select Files opens a navigation window showing you files in your operating system. Selecting Open after clicking on the file you want activates a progress bar on the uploader screen.'=>'Un clic sur Sélectionner des fichiers ouvre la fenêtre de navigation, vous donnant accès aux fichiers de votre machine. Après avoir cliqué sur un fichier, cliquez sur Ouvrir pour l’affichage de la barre de téléchargement.','Drag and drop your files into the area below. Multiple files are allowed.'=>'Glissez/déposez vos fichiers dans la zone ci-dessous. Vous pouvez en déposer plusieurs à la fois.','You can assign keywords to your posts using tags. Unlike categories, tags have no hierarchy, meaning there is no relationship from one tag to another.'=>'Vous pouvez assigner des étiquettes à vos articles via la section dédiée. Au contraire des catégories, les étiquettes n’ont aucune hiérarchie, ce qui signifie qu’elles ne peuvent pas être liées entre elles.','You can create groups of links by using Link Categories. Link Category names must be unique and Link Categories are separate from the categories you use for posts.'=>'Vous pouvez créer des groupes de liens en utilisant les catégories de liens. Le nom d’une catégorie de liens doit être unique, et les catégories de liens ne sont pas les mêmes que les catégories de vos articles.','Missing Widgets'=>'Widgets manquants','Removing and Reusing'=>'Retirer et réutiliser','If a media file has not been attached to any content, you will see that in the Uploaded To column, and can click on Attach to launch a small popup that will allow you to search for existing content and attach the file.'=>'Le fait qu’un fichier média n’est attaché à aucun article vous sera indiqué dans la colonne « Téléversé sur », et vous pourrez cliquer sur le lien « Joindre » pour afficher une petite fenêtre vous permettant de rechercher du contenu auquel attacher le fichier.','All the files you’ve uploaded are listed in the Media Library, with the most recent uploads listed first. You can use the Screen Options tab to customize the display of this screen.'=>'Tous les fichiers que vous avez téléversés sont listés dans la médiathèque, les plus récents en premier. Vous pouvez utiliser l’onglet « Options de l’écran » pour personnaliser l’affichage de cet écran.','You can also perform the same types of actions, including narrowing the list by using the filters, acting on a page using the action links that appear when you hover over a row, or using the Bulk actions menu to edit the metadata for multiple pages at once.'=>'Vous pouvez également réaliser les mêmes sortes d’actions, comme réduire la liste par le biais des filtres, en passant par les liens qui apparaissent quand la souris passe au-dessus d’une ligne, ou en utilisant le menu « Actions groupées » pour modifier les métadonnées de plusieurs pages d’un seul coup.','Managing pages is very similar to managing posts, and the screens can be customized in the same way.'=>'La gestion des pages est très proche de celle des articles, et les écrans peuvent être personnalisés de la même manière.','Pages are similar to posts in that they have a title, body text, and associated metadata, but they are different in that they are not part of the chronological blog stream, kind of like permanent posts. Pages are not categorized or tagged, but can have a hierarchy. You can nest pages under other pages by making one the “Parent” of the other, creating a group of pages.'=>'Les pages sont comme des articles, en cela qu’elles ont un titre, un contenu et des métadonnées associées ; mais elles diffèrent en cela qu’elles ne font pas partie du flux chronologique du blog - un peu comme des articles permanents. Les pages ne sont pas catégorisées et ne reçoivent pas d’étiquettes, mais peuvent disposer d’une hiérarchie. En effet, vous pouvez imbriquer des pages sous d’autres pages, faisant de ces dernières les « parentes » des premières, créant ainsi un groupement de pages.','Many people take advantage of keyboard shortcuts to moderate their comments more quickly. Use the link to the side to learn more.'=>'De nombreuses personnes utilisent les raccourcis clavier pour modérer leurs commentaires plus rapidement. Suivez le lien sur le côté pour en savoir plus.','In the Author column, in addition to the author’s name, email address, and site URL, the commenter’s IP address is shown. Clicking on this link will show you all the comments made from this IP address.'=>'Dans la colonne Auteur/autrice, en plus de trouver le nom de l’auteur ou de l’autrice, son adresse e-mail et celle de son site, vous trouverez son adresse IP. En cliquant dessus, vous obtiendrez une liste de tous les commentaires faits depuis cette adresse IP.','You can manage comments made on your site similar to the way you manage posts and other content. This screen is customizable in the same ways as other management screens, and you can act on comments using the on-hover action links or the bulk actions.'=>'Vous pouvez gérer les commentaires sur votre site de la même manière que vous gérez les articles et autres contenus. Cet écran est personnalisable de la même manière que les autres écrans de gestion, et vous pouvez agir sur les commentaires par le biais des liens qui apparaissent au survol de la souris, ou via le menu « Actions groupées ».','Links in the Toolbar at the top of the screen connect your dashboard and the front end of your site, and provide access to your profile and helpful WordPress information.'=>'Les liens contenus dans la barre d’outils placée en haut de l’écran relient votre tableau de bord à la partie publique de votre site, et fournissent un accès rapide à votre profil et de précieuses informations sur WordPress.','Deleting Links'=>'Suppression de liens','Links may be separated into Link Categories; these are different than the categories used on your posts.'=>'Les liens peuvent être rangés dans des catégories de liens ; ce ne sont pas les mêmes catégories que pour vos articles.','Learn more about WordPress %2$s.'=>'À propos de WordPress %2$s.','Edit takes you to the editable profile screen for that user. You can also reach that screen by clicking on the username.'=>'« Modifier » vous envoie sur l’écran de modification de ce compte. Vous pouvez également vous rendre sur cet écran en cliquant sur le nom du compte.','Hovering over a row in the users list will display action links that allow you to manage users. You can perform the following actions:'=>'Passer la souris au-dessus d’une ligne de la liste des comptes affichera des liens vous permettant de gérer le compte. Vous pouvez lancer les actions suivantes :','You can view all posts made by a user by clicking on the number under the Posts column.'=>'Vous pouvez voir tous les articles faits par un même compte en cliquant sur le nombre sous la colonne « Articles ».','You can hide/display columns based on your needs and decide how many users to list per screen using the Screen Options tab.'=>'Vous pouvez masquer/afficher les colonnes en fonction de vos besoins, et décider du nombre de comptes à afficher par écran à l’aide de l’onglet « Options de l’écran ».','Managing Pages'=>'Gestion de pages','Preview will show you what your draft post will look like if you publish it. View will take you to your live site to view the post. Which link is available depends on your post’s status.'=>'Prévisualiser vous donnera une idée de ce à quoi votre brouillon ressemble si vous le publiez tel quel. Afficher vous enverra sur votre site, à l’adresse de la publication. L’action disponible dépend de l’état de votre publication.','Trash removes your post from this list and places it in the Trash, from which you can permanently delete it.'=>'Mettre à la corbeille retire l’article de la liste et le déplace dans la corbeille, d’où vous pourrez le supprimer définitivement.','Quick Edit provides inline access to the metadata of your post, allowing you to update post details without leaving this screen.'=>'Modification Rapide vous donne un accès rapide aux métadonnées de votre article, vous permettant de mettre à jour certains détails sans devoir quitter la liste.','Edit takes you to the editing screen for that post. You can also reach that screen by clicking on the post title.'=>'Modifier vous envoie sur l’écran de modification de cette publication. Vous pouvez également vous rendre sur cet écran en cliquant sur le titre de la publication.','Because this is a multisite installation, you may add accounts that already exist on the Network by specifying a username or email, and defining a role. For more options, such as specifying a password, you have to be a Network Administrator and use the hover link under an existing user’s name to Edit the user profile under Network Admin > All Users.'=>'Parce qu’il s’agit d’une installation multisite, vous pouvez ajouter des comptes qui existent déjà sur le Réseau, en indiquant un identifiant ou une adresse e-mail, et en assignant un rôle. Pour avoir plus d’options, telle que le choix du mot de passe, vous devez être Administrateur ou administratrice du Réseau, et utiliser les liens qui apparaissent au survol sous le nom de l’utilisateur ou de l’utilisatrice pour modifier son compte, depuis l’écran « Tous les comptes ».','Welcome to WordPress %s'=>'Bienvenue sur WordPress %s','Go to Dashboard → Home'=>'Aller sur l’accueil','Go to Dashboard → Updates'=>'Aller sur Tableau de bord → Mises à jour','Profile updated.'=>'Profil mis à jour.','Hi, +« Annuler » pour arrêter, « OK » pour supprimer.','Unable to submit this form, please refresh and try again.'=>'Impossible d’envoyer ce formulaire. Veuillez recharger la page et réessayer.','Quick Draft — Allows you to create a new post and save it as a draft. Also displays links to the 3 most recent draft posts you\'ve started.'=>'Brouillon rapide — Vous permet de créer une nouvelle publication et de l’enregistrer en tant que brouillon. Affiche également des liens vers les 3 derniers brouillons que vous avez créés.','Activity — Shows the upcoming scheduled posts, recently published posts, and the most recent comments on your posts and allows you to moderate them.'=>'Activité – Affiche les publications planifiées, celles qui ont été publiées récemment, et les commentaires récents, que vous pouvez valider ou non.','Screen Options — Use the Screen Options tab to choose which Dashboard boxes to show.'=>'Options de l’écran — Utilisez l’onglet Options de l’écran pour choisir les sections à afficher dans le Tableau de bord.','Manage Uploads'=>'Gérer les téléversements','Popular Plugin'=>'Extensions populaires','Tomorrow'=>'Demain','No activity yet!'=>'Aucune activité pour le moment !','Recently Published'=>'Publié récemment','Publishing Soon'=>'Bientôt publié','What’s on your mind?'=>'Qu’avez-vous en tête ?','WordPress %1$s running %2$s theme.'=>'WordPress %1$s avec le thème %2$s.','Quick Draft'=>'Brouillon rapide','Activity'=>'Activité','FAILED: %s'=>'ÉCHEC : %s','SUCCESS: %s'=>'SUCCÈS : %s','FAILED: WordPress failed to update to %s'=>'ÉCHEC : WordPress n’a pas pu être mis à jour en %s','SUCCESS: WordPress was successfully updated to %s'=>'SUCCÈS : WordPress a bien été mis à jour vers %s','WordPress site: %s'=>'Site WordPress : %s','Your site was running version %s.'=>'Votre site utilise la version %s.','Your site at %1$s experienced a critical failure while trying to update WordPress to version %2$s.'=>'Votre site à l’adresse %1$s a rencontré un échec critique en essayant de faire une mise à jour de WordPress vers la version %2$s.','WordPress %s is also now available.'=>'WordPress %s est disponible.','The update cannot be installed because your site is unable to copy some files. This is usually due to inconsistent file permissions.'=>'La mise à jour ne peut pas être installée parce que le site ne peut pas copier certains fichiers. Ce problème est généralement dû à des incohérences dans les permissions de fichiers.','Your translations are all up to date.'=>'Vos traductions sont toutes à jour.','Translations'=>'Traductions','Error code: %s'=>'Code d’erreur : %s','Your hosting company, support forum volunteers, or a friendly developer may be able to use this information to help you:'=>'Votre hébergeur, les volontaires du forum d’entraide ou un ami développeur devraient pouvoir vous aider à comprendre cette information pour vous aider :','The WordPress Team'=>'L’équipe WordPress','You also have some plugins or themes with updates available. Update them now:'=>'Certains de vos thèmes et extensions ont également des mises à jour disponibles. Veuillez les mettre à jour dès maintenant :','If you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.'=>'Si vous rencontrez des problèmes ou avez besoin d’assistance, les volontaires du forum d’entraide de WPFR (https://wpfr.net/support) devraient pouvoir vous aider.','Keeping your site updated is important for security. It also makes the internet a safer place for you and your readers.'=>'Pour des questions de sécurité, il est important de garder votre site à jour. Par ailleurs, cela rend le web plus sûr pour vous et pour votre audience.','Please check out your site now. It\'s possible that everything is working. If it says you need to update, you should do so:'=>'Veuillez vérifier votre site immédiatement. Il se peut que tout fonctionne. S’il affiche que vous devez faire une mise à jour, vous devriez suivre son conseil :','This means your site may be offline or broken. Don\'t panic; this can be fixed.'=>'Cela signifie que votre site est peut-être hors ligne ou cassé. Ne paniquez pas, cela peut être réparé.','Your site at %1$s experienced a critical failure while trying to update to the latest version of WordPress, %2$s.'=>'Votre site à l’adresse %1$s a fait face à un échec critique en essayant de faire une mise à jour vers la dernière version de WordPress, la %2$s.','Updating is easy and only takes a few moments:'=>'La mise à jour est facile et ne nécessite que quelques secondes :','Please update your site at %1$s to WordPress %2$s.'=>'Veuillez mettre à jour votre site à l’adresse %1$s pour le passer à WordPress %2$s.','For more on version %s, see the About WordPress screen:'=>'Pour en savoir plus sur la version %s, lisez l’écran À Propos de WordPress : ','No further action is needed on your part.'=>'Vous n’avez rien de plus à faire.','Howdy! Your site at %1$s has been updated automatically to WordPress %2$s.'=>'Bonjour ! Votre site à l’adresse %1$s a été automatiquement mis à jour vers WordPress %2$s.','[%1$s] URGENT: Your site may be down due to a failed update'=>'[%1$s] URGENT : suite à une mise à jour échouée, votre site est peut-être inaccessible.','[%1$s] WordPress %2$s is available. Please update!'=>'[%1$s] WordPress %2$s est disponible. Veuillez mettre à jour !','[%1$s] Your site has updated to WordPress %2$s'=>'[%1$s] Votre site a été mis à jour vers WordPress %2$s','Translations for %s'=>'Traductions pour %s','Updating translations for %1$s (%2$s)…'=>'Mise à jour de la traduction de %1$s (%2$s)…','Update Translations'=>'Mettre à jour les traductions','Background updates'=>'Mises à jour en arrière-plan','There is not enough free disk space to complete the update.'=>'Il n’y a pas assez d’espace sur le disque pour terminer la mise à jour.','Updating plugin: %s'=>'Mise à jour de l’extension : %s','Updating theme: %s'=>'Mise à jour du thème : %s','Translation updated successfully.'=>'La traduction a bien été mise à jour.','Translation update failed.'=>'La mise à jour de la traduction a échoué.','Some of your translations need updating. Sit tight for a few more seconds while they are updated as well.'=>'Certaines de vos traductions ont besoin d’être mises à jour. Veuillez patienter quelques secondes, le temps qu’elles soient également mises à jour.','Create a brand new user and add them to this site.'=>'Créer un nouveau compte et l’ajouter à ce site.','Upgrading to a newer version of the same theme will override changes made here. To avoid this, consider creating a child theme instead.'=>'La mise à jour vers une nouvelle version du thème supprimera les modifications que vous aurez faites. Pour éviter cela, nous vous conseillons de passer plutôt par un Thème-Enfant.','The sizes listed below determine the maximum dimensions in pixels to use when adding an image to the Media Library.'=>'Les tailles précisées ci-dessous déterminent les dimensions maximales (en pixels) à utiliser lors de l’insertion d’une image dans la médiathèque.','Comment must be manually approved'=>'Le commentaire doit être approuvé manuellement','Clicking the arrow to the right of any menu item in the editor will reveal a standard group of settings. Additional settings such as link target, CSS classes, link relationships, and link descriptions can be enabled and disabled via the Screen Options tab.'=>'En cliquant sur le titre de n’importe élément du menu dans l’éditeur, un ensemble de réglages standards s’ouvrira. D’autres réglages, tels que la cible du lien, les classes CSS, les relations du lien et la description du lien, peuvent être activés et désactivés dans l’onglet « Options de l’écran ».','Menus can be displayed in locations defined by your theme, even used in sidebars by adding a “Navigation Menu” widget on the Widgets screen. If your theme does not support the navigation menus feature (the default themes, %2$s and %3$s, do), you can learn about adding this support by following the documentation link to the side.'=>'Les menus peuvent être affichés à des emplacements définis par votre thème, et même dans les colonnes latérales grâce au widget « Menus personnalisés » de l’écran Widgets. Si votre thème ne reconnaît pas encore cette fonctionnalité (les thèmes par défaut, %2$s and %3$s, les intègrent très bien), vous pouvez apprendre à ajouter cette reconnaissance vous-même en suivant le lien de documentation situé sur le côté.','Your theme does not natively support menus, but you can use them in sidebars by adding a “Navigation Menu” widget on the Widgets screen.'=>'Votre thème ne prend pas en charge nativement les menus, mais vous pouvez les utiliser dans la colonne latérale en ajoutant le widget « Menu de navigation » depuis l’écran Widgets.','Sorry, that is not a valid email address. Email addresses look like username@example.com.'=>'Désolé, ce n’est pas une adresse e-mail valide. Les adresses de messagerie ressemblent à cela : identifiant@example.com.','You must provide an email address.'=>'Vous devez saisir une adresse e-mail.','Your passwords do not match. Please try again.'=>'Vos mots de passe ne correspondent pas. Veuillez réessayer.','The username you provided has invalid characters.'=>'L’identifiant que vous avez fourni contient des caractères non valides.','Please provide a valid username.'=>'Veuillez saisir un identifiant valide.','Copying the required files…'=>'Copie des fichiers nécessaires…','Preparing to install the latest version…'=>'Préparation de l’installation de la dernière version…','This password will not be stored on the server.'=>'Le mot de passe ne sera pas stocké sur le serveur.','The checksum of the file (%1$s) does not match the expected checksum value (%2$s).'=>'L’empreinte de contrôle (ou checksum) de votre fichier (%1$s) ne correspond pas à la valeur de l’empreinte attendue (%2$s).','WordPress %s'=>'WordPress %s','Updating to WordPress %s'=>'Mise à jour vers WordPress %s','Due to an error during updating, WordPress has been restored to your previous version.'=>'Suite à une erreur pendant la mise à jour, WordPress vous a ramené à votre version précédente.','Looking for %1$s in %2$s'=>'Recherche %1$s dans %2$s','%s page restored from the Trash.'=>'%s page récupérée depuis la corbeille.' . "\0" . '%s pages récupérées depuis la corbeille.','%s page moved to the Trash.'=>'%s page déplacée dans la corbeille.' . "\0" . '%s pages déplacées dans la corbeille.','%s page permanently deleted.'=>'%s page définitivement supprimée.' . "\0" . '%s pages définitivement supprimées.','%s page not updated, somebody is editing it.'=>'%s page n’a pas été mise à jour : quelqu’un est déjà en train de la modifier.' . "\0" . '%s pages n’ont pas été mises à jour : quelqu’un est déjà en train de les modifier.','%s page updated.'=>'%s page mise à jour.' . "\0" . '%s pages mises à jour.','%s post restored from the Trash.'=>'%s publication récupérée depuis la corbeille.' . "\0" . '%s publications récupérées depuis la corbeille.','%s post moved to the Trash.'=>'%s publication déplacée dans la corbeille.' . "\0" . '%s publications déplacées dans la corbeille.','%s post permanently deleted.'=>'%s publication supprimée définitivement.' . "\0" . '%s publications supprimées définitivement.','%s post not updated, somebody is editing it.'=>'%s publication n’a pas été mise à jour : quelqu’un est déjà en train de la modifier.' . "\0" . '%s publications n’ont pas été mises à jour : quelqu’un est déjà en train de les modifier.','Tags deleted.'=>'Étiquettes supprimées.','Tag not updated.'=>'Étiquette non mise à jour.','Tag not added.'=>'Étiquette non ajoutée.','Tag updated.'=>'Étiquette mise à jour.','Tag deleted.'=>'Étiquette supprimée.','Tag added.'=>'Étiquette ajoutée.','Categories deleted.'=>'Catégories supprimées.','Category not updated.'=>'Catégorie non mise à jour.','Category not added.'=>'Catégorie non ajoutée.','Category updated.'=>'Catégorie mise à jour.','Category deleted.'=>'Catégorie effacée.','Category added.'=>'Catégorie ajoutée.','Compare two different revisions by selecting the “Compare any two revisions” box to the side.'=>'Comparez deux révisions différentes en cochant la case « Comparer n’importe quelles révisions » sur le côté.','Compare any two revisions'=>'Comparer n’importe quelles révisions','Restore This Autosave'=>'Rétablir cette sauvegarde automatique','Current Revision by %s'=>'Révision actuelle par %s','Autosave by %s'=>'Sauvegarde automatique par %s','revisionsBrowse'=>'Parcourir','Revisions: %s'=>'Révisions : %s','"%s".'=>'%s.','"%1$s" by %2$s.'=>'%1$s par %2$s.','"%1$s" from %2$s.'=>'« %1$s » depuis %2$s.','"%1$s" from %2$s by %3$s.'=>'%1$s tiré de %2$s par %3$s.','Revision by %s'=>'Révision par %s','Connection lost. Saving has been disabled until you are reconnected.'=>'Connexion perdue. L’enregistrement a été désactivé jusqu’à votre reconnexion.','Repeat Password'=>'Répétez le mot de passe','Repeat New Password'=>'Répétez le nouveau mot de passe','Add menu items from the column on the left.'=>'Ajouter des éléments de menu depuis la colonne de gauche.','Plugins extend and expand the functionality of WordPress. You may install plugins in the WordPress Plugin Directory right from here, or upload a plugin in .zip format by clicking the button at the top of this page.'=>'Les extensions étendent les fonctionnalités de WordPress, et en ajoutent de nouvelles. Vous pouvez installer des extensions automatiquement en provenance du répertoire des extensions WordPress, ou téléverser une extension au format .zip en cliquant sur le bouton en haut de cette page.','http://wordpress.org/plugins/hello-dolly/'=>'https://fr.wordpress.org/plugins/hello-dolly/','The theme contains no files.'=>'Ce thème ne contient aucun fichier.','The package contains no files.'=>'Ce paquet ne contient aucun fichier.','To navigate between revisions, drag the slider handle left or right or use the Previous or Next buttons.'=>'Pour naviguer entre les révisions, faites glisser le curseur vers la gauche ou vers la droite ou utilisez les boutons Précédente ou Suivante.','Loading…'=>'Chargement…','This item has already been deleted.'=>'Cet élément a déjà été supprimé.','The item you are trying to restore from the Trash no longer exists.'=>'L’élément que vous essayez de sortir de la corbeille n’existe plus.','The item you are trying to move to the Trash no longer exists.'=>'L’élément que vous essayez de placer dans la corbeille n’existe plus.','Drag the items into the order you prefer. Click the arrow on the right of the item to reveal additional configuration options.'=>'Glissez chaque élément pour les placer dans l’ordre que vous préférez. Cliquez sur la flèche à droite de l’élément pour révéler d’autres options de configuration.','If you have not yet created any menus, click the ’create a new menu’ link to get started'=>'Si vous n’avez pas encore créé de menu, cliquez sur le lien « Créer un nouveau menu » pour vous lancer','To restore a revision, click Restore This Revision.'=>'Pour rétablir cette révision, cliquez sur « Rétablir cette révision ».','From this screen you can review, compare, and restore revisions:'=>'Depuis cet écran, vous pouvez visualiser, comparer et rétablir les révisions :','Revisions are saved copies of your post or page, which are periodically created as you update your content. The red text on the left shows the content that was removed. The green text on the right shows the content that was added.'=>'Les révisions sont des copies de votre article ou votre page, périodiquement créées tandis que vous modifiez votre contenu. Sur la gauche, le texte en rouge indique le contenu qui a été retiré. Sur la droite, le texte en vert indique le contenu qui a été ajouté.','This screen is used for managing your content revisions.'=>'Cet écran est utilisé pour gérer les révisions de vos contenus.','Followed by post revision infoTo:'=>'Vers :','Button label for a next revisionNext'=>'Suivante','Button label for a previous revisionPrevious'=>'Précédente','Followed by post revision infoFrom:'=>'Depuis :','menuUse new menu'=>'Utiliser le nouveau menu','menuEdit'=>'Modifier','Select a Menu'=>'Choisir un menu','Assigned Menu'=>'Menu assigné','Theme Location'=>'Emplacement du thème','Manage Locations'=>'Gérer les emplacements','Edit Menus'=>'Modifier les menus','To add a new menu instead of assigning an existing one, click the ’Use new menu’ link. Your new menu will be automatically assigned to that theme location'=>'Pour ajouter un menu au lieu d’en assigner un qui existe déjà, cliquez sur le lien « Utiliser un nouveau menu ». Votre nouveau menu sera automatiquement ajouté à cet emplacement du thème','To edit a menu currently assigned to a theme location, click the adjacent ’Edit’ link'=>'Pour modifier un menu actuellement assigné à un emplacement du thème, cliquez sur le lien « Modifier » adjacent','To assign menus to one or more theme locations, select a menu from each location’s dropdown. When you are finished, click Save Changes'=>'Pour assigner des menus à un ou plusieurs emplacements, sélectionnez le menu depuis la liste déroulante de chaque emplacement. Lorsque vous avez terminé, cliquez sur « Enregistrer les modifications »','This screen is used for globally assigning menus to locations defined by your theme.'=>'Cet écran est utilisé pour assigner de manière globale vos menus à des emplacements définis par votre thème.','Editing Menus'=>'Modification des menus','Delete a menu item by expanding it and clicking the Remove link'=>'Supprimez un élément du menu en l’ouvrant et en cliquant sur le bouton Supprimer','To reorganize menu items, drag and drop items with your mouse or use your keyboard. Drag or move a menu item a little to the right to make it a submenu'=>'Pour réorganiser les éléments du menu, glissez/déposez les éléments avec la souris ou utilisez votre clavier. Glissez ou déplacez légèrement un élement du menu pour en faire un sous-menu','Add one or several items at once by selecting the checkbox next to each item and clicking Add to Menu'=>'Ajoutez un ou plusieurs éléments à la fois en cochant la case à côté de chaque élément puis en cliquant sur « Ajouter au menu »','Each navigation menu may contain a mix of links to pages, categories, custom URLs or other content types. Menu links are added by selecting items from the expanding boxes in the left-hand column below.'=>'Chaque menu de navigation peut contenir un mélange de liens vers des pages, des catégories, des URL personnalisées ou d’autres types de contenu. Les liens de menu sont ajoutés en sélectionnant un élément dans l’une des sections situées dans la colonne de gauche ci-dessous.','Menu Management'=>'Gestion des menus','You can assign theme locations to individual menus by selecting the desired settings at the bottom of the menu editor. To assign menus to all theme locations at once, visit the Manage Locations tab at the top of the screen.'=>'Vous pouvez assigner un emplacement du thème à chaque menu en sélectionnant les réglages souhaités en bas de l’éditeur de menu. Pour assigner un menu à tous les emplacements d’un coup, rendez-vous dans l’onglet Gérer les emplacements en haut de l’écran.','To edit an existing menu, choose a menu from the dropdown and click Select'=>'Pour modifier un menu existant, choisissez un menu depuis la liste déroulante et cliquez sur « Sélectionner »','The menu management box at the top of the screen is used to control which menu is opened in the editor below.'=>'La section de gestion des menus, en haut de l’écran, est utilisée pour contrôler le menu qui est ouvert dans l’éditeur ci-dessous.','Add, organize, and modify individual menu items'=>'Ajouter, organiser et modifier des éléments de menu individuels','Create, edit, and delete menus'=>'Créer, modifier et supprimer des menus','From this screen you can:'=>'Depuis cet écran, vous pouvez :','This screen is used for managing your navigation menus.'=>'Cet écran est utilisé pour gérer vos menus de navigation.','Menu locations updated.'=>'Les emplacements de menu ont été mis à jour.','Your latest changes were saved as a revision.'=>'Vos dernières modifications ont été enregistrées dans une révision.','Audio Codec:'=>'Codec audio :','Audio Format:'=>'Format audio :','Genre: %s.'=>'Genre : %s.','Track %1$s of %2$s.'=>'Piste %1$s sur %2$s.','Released: %d.'=>'Date de sortie : %d.','%1$s by %2$s.'=>'%1$s par %2$s.','Restore This Revision'=>'Rétablir cette révision','Denied: %s'=>'Refusé : %s','Capabilities'=>'Permissions','Menu Settings'=>'Réglages du menu','Menu structure'=>'Structure du menu','To the top'=>'Tout en haut','Down one'=>'Descendre d’un cran','Up one'=>'Un cran vers le haut','Move'=>'Déplacer','Draft created on %1$s at %2$s'=>'Brouillon créé le %1$s à %2$s','You cannot move this item to the Trash. %s is currently editing.'=>'Vous ne pouvez pas déplacer cet élément dans la corbeille. %s est en train de le modifier.','%s has taken over and is currently editing.'=>'%s a pris la main et modifie actuellement ce contenu.','Select a menu to edit:'=>'Sélectionnez le menu à modifier :','Thank you for Updating! Please visit the Upgrade Network page to update all your sites.'=>'Merci d’avoir fait cette mise à jour ! Veuillez vous rendre sur la page de mise à jour du réseau afin de mettre à jour tous vos sites.','All right, sparky! You’ve made it through this part of the installation. WordPress can now communicate with your database. If you are ready, time now to…'=>'C’est parfait ! Vous avez passé la première partie de l’installation. WordPress peut désormais communiquer avec votre base de données. Préparez-vous, il est maintenant temps de…','Client version'=>'Version du client','Auto add pages'=>'Ajoutez automatiquement des pages','Give your menu a name, then click Create Menu.'=>'Donnez à votre menu un nom, puis cliquez sur « Créer le menu ».','Edit your default menu by adding or removing items. Drag the items into the order you prefer. Click Create Menu to save your changes.'=>'Modifiez votre menu par défaut en ajoutant ou en retirant des éléments. Faites glissez chaque élément pour les mettre dans l’ordre que vous souhaitez. Cliquez sur « Créer le menu » pour enregistrer vos modifications.','Selected menus have been successfully deleted.'=>'Les menus sélectionnés ont bien été supprimés.','For PHP files, you can use the documentation dropdown to select from functions recognized in that file. Look Up takes you to a web page with reference material about that particular function.'=>'Pour les fichiers PHP, vous pouvez utiliser le menu déroulant « Documentation » pour en apprendre plus sur les fonctions trouvées dans le ce fichier. Le bouton « Consulter » vous enverra sur la page dédiée de cette fonction.','Look Up'=>'Consulter','The documentation menu below the editor lists the PHP functions recognized in the plugin file. Clicking Look Up takes you to a web page about that particular function.'=>'Le menu « Documentation », situé sous l’éditeur, liste les fonctions PHP reconnues dans le fichier de l’extension. En cliquant sur « Consulter », vous serez envoyé sur une page web documentant cette fonction.','%s is currently editing'=>'%s modifie actuellement ce contenu','You can upload and insert media (images, audio, documents, etc.) by clicking the Add Media button. You can select from the images and files already uploaded to the Media Library, or upload new media to add to your page or post. To create an image gallery, select the images to add and click the “Create a new gallery” button.'=>'Vous pouvez téléverser et insérer des fichiers média (images, sons, documents, etc.) en cliquant sur le bouton « Ajouter un média ». Vous pouvez sélectionner vos images et fichiers parmi ceux déjà présents dans la médiathèque, ou en téléverser de nouveaux à ajouter à votre article/page. Pour créer une galerie d’images, sélectionnez les images à ajouter et cliquez sur le bouton « Créer une nouvelle galerie ».','Image rotation is not supported by your web host.'=>'La rotation d’image n’est pas disponible avec cet hébergeur.','If you are looking to use the link manager, please install the Link Manager plugin.'=>'Si vous souhaitez utiliser le gestionnaire de liens, veuillez installer l’extension Link Manager.','When changing themes, there is often some variation in the number and setup of widget areas/sidebars and sometimes these conflicts make the transition a bit less smooth. If you changed themes and seem to be missing widgets, scroll down on this screen to the Inactive Widgets area, where all of your widgets and their settings will have been saved.'=>'En changeant de thème, il y a souvent des variations sur le nombre et l’agencement des zones de widgets et des colonnes latérales, et parfois tout cela entre en conflit, rendant la transition moins aisée. Si vous avez changé de thème et que certains widgets semblent manquer, faites défiler cet écran jusqu’en bas pour les retrouver dans la zone des widgets inactifs, où ils ont été conservés avec leurs derniers réglages.','Parent — Categories, unlike tags, can have a hierarchy. You might have a Jazz category, and under that have child categories for Bebop and Big Band. Totally optional. To create a subcategory, just choose another category from the Parent dropdown.'=>'Parent — Les catégories, contrairement aux étiquettes, peuvent avoir une hiérarchie. Vous pouvez avoir une catégorie nommée « Jazz », et à l’intérieur, plusieurs catégories comme « Bebop » et « Big Band ». Le fait d’avoir une hiérarchie est totalement facultatif. Pour créer une sous-catégorie, choisissez juste une autre catégorie depuis la liste déroulante « Parente ».','Several boxes on this screen contain settings for how your content will be published, including:'=>'Plusieurs sections de cet écran vous permettez de régler la manière dont votre contenu sera publié, notamment :','Inserting Media'=>'Insertion de média','The title field and the big Post Editing Area are fixed in place, but you can reposition all the other boxes using drag and drop. You can also minimize or expand them by clicking the title bar of each box. Use the Screen Options tab to unhide more boxes (Excerpt, Send Trackbacks, Custom Fields, Discussion, Slug, Author) or to choose a 1- or 2-column layout for this screen.'=>'Le champ du titre et la zone d’édition de la publication sont inamovibles, mais vous pouvez déplacer toutes les autres sections par simple glisser/déposer. Vous pouvez également les fermer/ouvrir en cliquant sur la barre de titre de chaque section. Utilisez l’onglet « Options de l’écran » pour masquer d’autres sections (Extrait, Envoyer des rétroliens, Champs personnalisés, Commentaires, Slug, Auteur ou autrice) ou pour choisir un affichage sur une ou deux colonnes pour cet écran.','Do not forget to click “Save Changes” when you are done!'=>'N’oubliez pas de cliquer sur « Enregistrer les modifications » quand vous avez terminé !','To use a background image, simply upload it or choose an image that has already been uploaded to your Media Library by clicking the “Choose Image” button. You can display a single instance of your image, or tile it to fill the screen. You can have your background fixed in place, so your site content moves on top of it, or you can have it scroll with your site.'=>'Pour utiliser une image de fond, téléversez-la simplement ou choisissez une image déjà téléversée dans votre médiathèque en cliquant sur le bouton « Choisir l’image ». Vous pouvez n’afficher qu’une occurrence de l’image, ou la répéter afin de remplir l’écran. Vous pouvez choisir de garder le fond en place quand vous faites défiler le contenu, ou au contraire faire que le fond défile en même temps.','You are using the multi-file uploader. Problems? Try the browser uploader instead.'=>'Vous utilisez l’outil de téléversement multi-fichiers. Si vous rencontrez des problèmes, essayez la méthode du navigateur à la place.','media itemEdit'=>'Modifier','colorDefault: %s'=>'Par défaut : %s','column nameUploaded to'=>'Téléversé sur ','The uploaded file is not a valid image. Please try again.'=>'Le fichier téléversé n’est pas une image valide. Veuillez réessayer.','Choose a Custom Header'=>'Choisir un entête personnalisé','Choose a Background Image'=>'Choisir une image d’arrière-plan','In the Header Text section of this page, you can choose whether to display this text or hide it. You can also choose a color for the text by clicking the Select Color button and either typing in a legitimate HTML hex value, e.g. “#ff0000” for red, or by choosing a color using the color picker.'=>'Dans la section « Texte d’entête » de cette page, vous pouvez choisir d’afficher ce texte ou de le masquer. Vous pouvez également choisir une couleur pour ce texte en cliquant sur le bouton « Sélecteur de couleur » et soit en saisissant une valeur HTML valide (ex. : « #ff0000 » pour du rouge) ou en cliquant sur le sélecteur de couleur.','You can also choose a background color by clicking the Select Color button and either typing in a legitimate HTML hex value, e.g. “#ff0000” for red, or by choosing a color using the color picker.'=>'Vous pouvez également choisir une couleur pour ce texte en cliquant sur le bouton de sélection de couleur ou en saisissant une valeur HTML valide (exemple : « #ff0000 » pour du rouge) ou en utilisant la palette de couleurs.','In the In response to column, there are three elements. The text is the name of the post that inspired the comment, and links to the post editor for that entry. The View Post link leads to that post on your live site. The small bubble with the number in it shows the number of approved comments that post has received. If there are pending comments, a red notification circle with the number of pending comments is displayed. Clicking the notification circle will filter the comments screen to show only pending comments on that post.'=>'Dans la colonne En réponse à se trouvent trois éléments. Le texte correspond au titre de l’article qui a inspiré ce commentaire, et un clic sur ce lien vous permettra de modifier cet article. Le lien « Afficher l’article » mène à l’article sur le site. La petite bulle avec un nombre vous indique le nombre de commentaires approuvés que l’article a reçu. S’il y a des commentaires en attente de validation, un cercle de notification rouge contenant le nombre de commentaires en attente sera affiché. Un clic sur ce cercle de notification filtrera la liste des commentaires pour n’ afficher que ceux qui sont liés à cet article.','ID #%1$s: %2$s'=>'ID n°%1$s : %2$s','ID #%1$s: %2$s The current user will not be deleted.'=>'ID n°%1$s : %2$s Le compte actuel ne sera pas supprimé.','Used: %1$s%% of %2$s'=>'Taux d’utilisation : %1$s%% sur %2$s','Please select an option.'=>'Veuillez sélectionner une option.','After you’ve done that, click “Run the installation”.'=>'Après cela, cliquez sur « Lancer l’installation »','If you want to install a plugin that you’ve downloaded elsewhere, click the Upload Plugin button above the plugins list. You will be prompted to upload the .zip package, and once uploaded, you can activate the new plugin.'=>'Si vous voulez installer une extension que vous avez téléchargée depuis un site tiers, cliquez sur le bouton « Téléverser une extension ». Il vous sera demandé d’indiquer le fichier .zip à téléverser, et ceci fait, vous pourrez activer l’extension.','You can also browse a user’s favorite plugins, by using the Favorites link above the plugins list and entering their WordPress.org username.'=>'Vous pouvez voir les extensions favorites d’un compte WordPress.org en utilisant le lien « Favorites » situé en haut à gauche de l’écran, et en renseignant son identifiant WordPress.org.','If you know what you are looking for, Search is your best bet. The Search screen has options to search the WordPress Plugin Directory for a particular Term, Author, or Tag. You can also search the directory by selecting popular tags. Tags in larger type mean more plugins have been labeled with that tag.'=>'Si vous savez ce que vous voulez, commencez par le champ « Recherche » : il vous permet de lancer une recherche sur le dépôt d’extensions de WordPress.org, pour un terme, un auteur/autrice, ou une étiquette en particulier. Vous pouvez également lancer une recherche en cliquant sur une des étiquettes populaires. Plus une étiquette est grande, plus elle fait référence à un grand nombre d’extensions.','It is up to search engines to honor this request.'=>'Certains moteurs de recherche peuvent décider de l’indexer malgré tout.','Discourage search engines from indexing this site'=>'Demander aux moteurs de recherche de ne pas indexer ce site','Allow search engines to index this site'=>'Autoriser les moteurs de recherche à indexer ce site','Search engine visibility'=>'Visibilité par les moteurs de recherche','Welcome to WordPress %1$s. You will be redirected to the About WordPress screen. If not, click here.'=>'Bienvenue sur WordPress %1$s. Vous allez être redirigé vers l’écran « À propos » de WordPress. Si ce n’est pas le cas, cliquez ici.','Get Favorites'=>'Afficher les favoris','Your WordPress.org username:'=>'Votre identifiant WordPress.org :','If you have marked plugins as favorites on WordPress.org, you can browse them here.'=>'Si vous avez mis des extensions en favoris sur WordPress.org, vous pouvez les voir ici.','Welcome to WordPress!'=>'Bienvenue sur WordPress !','Search engines discouraged'=>'Moteurs de recherche refusés','This child theme requires its parent theme, %2$s.'=>'Ce thème enfant nécessite son thème parent, %2$s.','Plugin InstallerFavorites'=>'Favorites','To install the theme so you can preview it with your site’s content and customize its theme options, click the "Install" button at the top of the left-hand pane. The theme files will be downloaded to your website automatically. When this is complete, the theme is now available for activation, which you can do by clicking the "Activate" link, or by navigating to your Manage Themes screen and clicking the "Live Preview" link under any installed theme’s thumbnail image.'=>'Pour installer un thème dans le but de le prévisualiser avec le contenu de votre site et d’en personnaliser les options, cliquez sur le bouton « Installer » en haut du panneau de gauche. Les fichiers du thème seront automatiquement téléchargés vers votre site. Ceci fait, le thème sera disponible, et vous pourrez l’activer en cliquant sur le lien « Activer », ou en vous rendant sur l’écran « Gérer les thèmes » et en cliquant sur le lien « Prévisualiser en direct » situé sous la miniature de chaque thème.','widgetAdd'=>'Ajouter','widgetEdit'=>'Modifier','Search by tag'=>'Recherche par étiquette','Search by author'=>'Recherche par auteur ou autrice','Search by keyword'=>'Rechercher par mot-clé','Type of search'=>'Type de recherche','Screen Options Tab'=>'Onglet des options de l’écran','Contextual Help Tab'=>'Onglet d’aide contextuelle','Select comment'=>'Sélectionnez un commentaire','Tags can be selectively converted to categories using the tag to category converter.'=>'Les étiquettes peuvent être converties de manière sélective en catégories via le convertisseur étiquettes vers catégories.','You can delete Link Categories in the Bulk Action pull-down, but that action does not delete the links within the category. Instead, it moves them to the default Link Category.'=>'Vous pouvez supprimer des catégories de liens avec la liste déroulante « Actions groupées », mais cette action ne supprime pas les liens contenus dans la catégorie. Au lieu de cela, ils sont déplacés dans la catégorie de liens par défaut.','Creating a Page is very similar to creating a Post, and the screens can be customized in the same way using drag and drop, the Screen Options tab, and expanding/collapsing boxes as you choose. This screen also has the distraction-free writing space, available in both the Visual and Code modes via the Fullscreen buttons. The Page editor mostly works the same as the Post editor, but there are some Page-specific features in the Page Attributes box.'=>'Le processus de création d’une page reste très proche de celui d’un article, et les écrans respectifs peuvent être personnalisés de la même manière, par le biais de glisser/déposer, de l’onglet « Option de l’écran », et en ouvrant/fermant les sections selon vos besoins. Cet écran dispose également du mode « aucune distraction », tant dans le mode Visuel que dans le mode Code, via les boutons « Plein écran ». L’éditeur de page fonctionne globalement comme celui des articles, mais dispose de certaines spécificités, disponibles dans la section « Attributs de page ».','You can select an image to be shown at the top of your site by uploading from your computer or choosing from your media library. After selecting an image you will be able to crop it.'=>'Vous pouvez choisir une image d’entête personnalisée en la téléversant depuis votre ordinateur ou en la choisissant dans votre médiathèque. Après avoir sélectionné l’image, vous pourrez la recadrer.','Skip to main content'=>'Aller au contenu principal','You can set a custom image header for your site. Simply upload the image and crop it, and the new header will go live immediately. Alternatively, you can use an image that has already been uploaded to your Media Library by clicking the “Choose Image” button.'=>'Vous pouvez utiliser une image d’entête personnalisée pour votre site. Téléversez simplement l’image, recadrez-la, et le nouvel entête sera aussitôt en ligne. Autrement, vous pouvez utiliser une image qui a déjà été téléversée dans votre médiathèque, en cliquant sur le bouton « Choisissez une image ».','Skip Cropping, Publish Image as Is'=>'Aucun recadrage, utiliser l’image telle quelle','Choose Image'=>'Choisissez une image','Or choose an image from your media library:'=>'Ou choisissez une image dans votre médiathèque :','Select Image'=>'Sélectionnez une image','Collapse'=>'Réduire','If you do not want a header image to be displayed on your site at all, click the “Remove Header Image” button at the bottom of the Header Image section of this page. If you want to re-enable the header image later, you just have to select one of the other image options and click “Save Changes”.'=>'Si vous ne souhaitez pas que votre site utilise une image d’entête, cliquez sur le bouton « Retirer l’image d’entête » en bas de la section « Image d’entête » de cette page. Si vous souhaitez réactiver l’image d’entête, il vous suffit de sélectionner l’une des autres options d’images, et de la valider en cliquant sur « Enregistrer les modifications ».','pluginInstalled'=>'Installée','Previewing and Customizing'=>'Prévisualisation et personnalisation','Previewing and Installing'=>'Prévisualisation et installation','Once you have generated a list of themes, you can preview and install any of them. Click on the thumbnail of the theme you are interested in previewing. It will open up in a full-screen Preview page to give you a better idea of how that theme will look.'=>'Une fois que vous avez généré une liste de thèmes, vous pouvez les prévisualiser et les installer. Cliquez sur la miniature du thème que vous souhaitez prévisualiser. Cela ouvrira une page de prévisualisation en plein écran, afin de vous donner une meilleure idée de l’aspect de ce thème.','You are using the browser’s built-in file uploader. The WordPress uploader includes multiple file selection and drag and drop capability. Switch to the multi-file uploader.'=>'Vous utilisez l’outil de téléversement du navigateur. Le nouvel outil de téléversement de WordPress inclut la possibilité de téléverser plusieurs fichiers à la fois par glisser/déposer. Passer au nouvel outil de téléversement.','The Categories and Tags Converter link on this screen will take you to the Import screen, where that Converter is one of the plugins you can install. Once that plugin is installed, the Activate Plugin & Run Importer link will take you to a screen where you can choose to convert tags into categories or vice versa.'=>'Le lien « Convertisseur de catégories-étiquettes » vous mènera à la page d’import, où ledit convertisseur est l’une des extensions que vous pouvez installer. Une fois installée, le lien « Lancer l’outil d’importation » vous mènera à l’écran d’où vous pourrez choisir de lancer une conversion dans un sens ou dans l’autre.','Categories have hierarchy, meaning that you can nest sub-categories. Tags do not have hierarchy and cannot be nested. Sometimes people start out using one on their posts, then later realize that the other would work better for their content.'=>'Les catégories disposent d’une hiérarchie, ce qui signifie que vous pouvez leur donner des sous-catégories. Les étiquettes n’ont pas de hiérarchie et ne peuvent être imbriquées. Parfois, des auteurs ou autrices commencent par utiliser une sorte de caractérisation, pour se rendre compte par la suite qu’ils préfèrent l’autre.','For most themes, the header text is your Site Title and Tagline, as defined in the General Settings section.'=>'Pour la plupart des thèmes, le texte d’entête est le titre de votre site et son slogan, tels que définis dans la section Réglages généraux.','If your theme has more than one default header image, or you have uploaded more than one custom header image, you have the option of having WordPress display a randomly different image on each page of your site. Click the “Random” radio button next to the Uploaded Images or Default Images section to enable this feature.'=>'Si votre thème a plus d’une image d’entête par défaut, ou si vous avez téléversé plus d’une image d’entête personnalisée, vous pouvez faire en sorte que WordPress affiche une image aléatoire différente à chaque chargement de votre site. Sélectionnez l’option « Au hasard » dans la section « Images par défaut » ou « Images téléversées » pour activer cette fonctionnalité.','Some themes come with additional header images bundled. If you see multiple images displayed, select the one you would like and click the “Save Changes” button.'=>'Certains thèmes disposent d’une série d’images d’entête. Si vous voyez plusieurs images affichées, sélectionnez celle que vous aimez et cliquez sur le bouton « Enregistrer les modifications ».','You can choose from the theme’s default header images, or use one of your own. You can also customize how your Site Title and Tagline are displayed.'=>'Vous pouvez choisir à partir des images d’entête par défaut du thème, ou utiliser l’une des vôtres. Vous pouvez également personnaliser la manière dont s’affichent le titre de votre site et son slogan.','This screen is used to customize the header section of your theme.'=>'Cet écran est utilisé pour personnaliser la section d’entête de votre thème.','Configuration Error'=>'Erreur de configuration','Revert to the Browser Uploader by clicking the link below the drag and drop box.'=>'Revenez à l’outil de téléversement du navigateur en cliquant sur le lien sous la zone de glisser-déposer.','User deleted.'=>'Compte supprimé.','Could not copy files. You may have run out of disk space.'=>'Impossible de copier les fichiers. Il se pourrait que vous manquiez de place.','Find a theme based on specific features.'=>'Trouver un thème selon des critères précis.','Search for themes by keyword.'=>'Rechercher des thèmes par mot-clé.','In all likelihood, these items were supplied to you by your web host. If you do not have this information, then you will need to contact them before you can continue. If you are ready…'=>'Vous devriez normalement avoir reçu ces informations de la part de votre hébergeur. Si vous ne les avez pas, il vous faudra contacter votre hébergeur afin de continuer. Si vous avez tout le nécessaire, alors…','This theme is broken.'=>'Le thème est cassé.','Set as header'=>'Utiliser comme entête','Set as background'=>'Utiliser comme image de fond','Customize “%s”'=>'Personnaliser « %s »','(required)'=>'(nécessaire)','Edit Link'=>'Modifier le lien','Error: This email is already registered. Please choose another one.'=>'Erreur : cet e-mail est déjà inscrit. Veuillez en choisir un autre.','Error: Please enter a nickname.'=>'Erreur : veuillez saisir un pseudonyme.','https://wordpress.org/about/'=>'https://fr.wordpress.org/about/','Select All'=>'Tout sélectionner','Public, Sticky'=>'Public, épinglé','Privately Published'=>'Mis en ligne en privé','Save as Pending'=>'Mettre en attente','Enter a link URL or click above for presets.'=>'Saisissez une adresse de lien ou cliquez ci-dessus pour les liens prédéfinis.','Link URL'=>'URL du lien','No comments yet.'=>'Aucun commentaire pour l’instant.','Version:'=>'Version : ','Collapse Sidebar'=>'Réduire la colonne latérale','Plugin'=>'Extension','All'=>'Tout','Word count: %s'=>'Nombre de mots : %s','Edit comment'=>'Modifier le commentaire','Preview:'=>'Aperçu :','E-mail'=>'E-mail','The parent theme could not be found. You will need to install the parent theme, %s, before you can use this child theme.'=>'Le thème parent n’a pas pu être trouvé. Vous allez devoir installer le thème parent, %s, avant de pouvoir utiliser ce thème enfant.','Successfully installed the parent theme, %1$s %2$s.'=>'Le thème parent, %1$s %2$s, a bien été installé.','The parent theme, %1$s %2$s, is currently installed.'=>'Le thème parent, %1$s %2$s, est bien installé.','Preparing to install %1$s %2$s…'=>'Préparation à l’installation de %1$s %2$s…','This theme requires a parent theme. Checking if it is installed…'=>'Ce thème nécessite un thème parent. Nous vérifions s’il est installé…','Show header text with your image.'=>'Afficher le texte d’entête avec l’image.','Header Text'=>'Texte de l’entête','There is a new version of %1$s available. View version %4$s details or update now.'=>'Une nouvelle version pour %1$s est disponible. Afficher les détails de la version %4$s ou mettre à jour maintenant.','By %s.'=>'par %s.','Add Comment'=>'Ajouter un commentaire','http://ma.tt/'=>'https://ma.tt/','This is not just a plugin, it symbolizes the hope and enthusiasm of an entire generation summed up in two words sung most famously by Louis Armstrong: Hello, Dolly. When activated you will randomly see a lyric from Hello, Dolly in the upper right of your admin screen on every page.'=>'Ce n’est pas qu’une extension. Elle symbolise l’espoir et l’enthousiasme de toute une génération, résumé en deux mots, qu’a notamment chanté Louis Armstrong : Hello, Dolly. Une fois activée, elle affichera une ligne aléatoirement des paroles de la chanson Hello, Dolly, en haut à droite de toutes les pages de l’administration.','Hello Dolly'=>'Hello Dolly','Welcome — Shows links for some of the most common tasks when setting up a new site.'=>'Bienvenue — Affiche des liens pour certaines des tâches les plus courantes lors de la configuration d’un nouveau site.','There is a new version of %1$s available. View version %4$s details. Automatic update is unavailable for this theme.'=>'Une nouvelle version pour %1$s est disponible. Afficher les détails de la version %4$s. La mise à jour automatique n’est pas disponible pour ce thème.','HowdyWelcome'=>'Bienvenue','Delete My Site Permanently'=>'Effacer mon site définitivement','I\'m sure I want to permanently delete my site, and I am aware I can never get it back or use %s again.'=>'Je suis certain·e de vouloir effacer mon site définitivement, et je me rends compte que je ne pourrais jamais le récupérer ni utiliser %s pour un nouveau site.','Remember, once deleted your site cannot be restored.'=>'Rappelez-vous qu’une fois supprimé, votre site ne peut être rétabli.','If you do not want to use your %s site any more, you can delete it using the form below. When you click Delete My Site Permanently you will be sent an email with a link in it. Click on this link to delete your site.'=>'Si vous ne souhaitez plus utiliser votre site %s, vous pouvez l’effacer à l’aide du formulaire ci-dessous. Après avoir cliqué sur Effacer mon site, vous recevrez un message avec un lien. Cliquez sur ce lien pour effacer votre site.','Thank you. Please check your email for a link to confirm your action. Your site will not be deleted until this link is clicked.'=>'Merci. Veuillez consulter le message que nous vous avons envoyé pour confirmer cette action. Votre site ne sera pas effacé tant que vous n’aurez pas cliqué le lien qu’il contient.','Sorry, the link you clicked is stale. Please select another option.'=>'Désolé, mais le lien que vous avez cliqué est avarié. Veuillez sélectionner une autre option.','Thank you for using %s, your site has been deleted. Happy trails to you until we meet again.'=>'Merci à vous d’avoir utilisé %s, votre site a été effacé. Nous espérons vous revoir.','Primary Site'=>'Site principal','British English'=>'Anglais (UK)','American English'=>'Anglais (US)','View Site'=>'Afficher le site','Visit Dashboard'=>'Se rendre sur le Tableau de bord','Your Sites'=>'Vos sites','If you reached this screen by accident and meant to visit one of your own sites, here are some shortcuts to help you find your way.'=>'Si vous êtes arrivé sur cet écran par accident, et que vous vouliez en fait vous rendre sur l’un de vos propres sites, voici quelques raccourcis pour vous aider à trouver votre chemin.','You attempted to access the "%1$s" dashboard, but you do not currently have privileges on this site. If you believe you should be able to access the "%1$s" dashboard, please contact your network administrator.'=>'Vous avez tenté d’accéder au tableau de bord de « %1$s ». Cependant, vous ne disposez pas pour le moment des droits nécessaires sur ce site. Si vous pensez que vous devriez pouvoir accéder au tableau de bord de « %1$s », contactez l’administrateur ou l’administratrice du réseau.','MB (Leave blank for network default)'=>'Mo (Laisser vide pour utiliser la valeur par défaut du réseau)','[%s] New Admin Email Address'=>'[%s] Nouvelle adresse e-mail d’administration','Disabled'=>'Désactivé','Paused (%s)'=>'Mis en pause (%s)' . "\0" . 'Mis en pause (%s)','Global Settings'=>'Réglages globaux','You must be a member of at least one site to use this page.'=>'Vous devez être membre d’au moins un site pour utiliser cette page.','The primary site you chose does not exist.'=>'Le site principal que vous avez choisi n’existe pas.','If you want to run multiple WordPress installations in a single database, change this.'=>'Si vous souhaitez faire tourner plusieurs installations de WordPress sur une même base de données, modifiez ce réglage.','Table Prefix'=>'Préfixe des tables','Database Host'=>'Adresse de la base de données','example passwordpassword'=>'mot de passe','example usernameusername'=>'Identifiant','Database Name'=>'Nom de la base de données','Below you should enter your database connection details. If you are not sure about these, contact your host.'=>'Vous devez saisir ci-dessous les détails de connexion à votre base de données. Si vous ne les connaissez pas, contactez votre hébergeur.','Let’s go!'=>'C’est parti !','Table prefix (if you want to run more than one WordPress in a single database)'=>'Préfixe de table (si vous souhaitez avoir plusieurs WordPress sur une même base de données)','Database host'=>'Hôte de base de données','Database password'=>'Mot de passe de base de données','Database username'=>'Identifiant MySQL','Database name'=>'Nom de la base de données','WordPress › Setup Configuration File'=>'WordPress › Fichier de configuration','The file %1$s already exists one level above your WordPress installation. If you need to reset any of the configuration items in this file, please delete it first. You may try installing now.'=>'Le fichier %1$s existe déjà, un niveau au-dessus de votre installation WordPress. Si vous devez mettre à zéro vos éléments de configuration, veuillez d’abord effacer ce fichier. Vous pouvez essayer de lancer l’installation maintenant.','The file %1$s already exists. If you need to reset any of the configuration items in this file, please delete it first. You may try installing now.'=>'Le fichier %1$s existe déjà. Si vous devez mettre à zéro n’importe quelle valeur de configuration dans ce fichier, veuillez commencer par le supprimer. Vous pouvez essayer de lancer l’installation maintenant.','Sorry, I need a %s file to work from. Please re-upload this file to your WordPress installation.'=>'Désolé, il est nécessaire de disposer d’un fichier %s à partir duquel travailler. Veuillez retéléverser ce fichier au sein de votre installation WordPress.','To allow use of this page to automatically repair database problems, please add the following line to your %s file. Once this line is added to your config, reload this page.'=>'Pour autoriser cette page à réparer automatiquement les problèmes de base de données, veuillez ajouter la ligne suivante dans votre fichier %s. Une fois cette ligne ajoutée à votre configuration, rechargez cette page.','No comments awaiting moderation.'=>'Aucun commentaire en attente de modération.','Plugin installer section titleOther Notes'=>'Autres notes','Plugin installer section titleChangelog'=>'Journal des modifications','Plugin installer section titleScreenshots'=>'Captures d’écrans','Plugin installer section titleFAQ'=>'FAQ','Plugin installer section titleInstallation'=>'Installation','Plugin installer section titleDescription'=>'Description','Plugin Homepage »'=>'Site de l’extension »','You can export a file of your site’s content in order to import it into another installation or platform. The export file will be an XML file format called WXR. Posts, pages, comments, custom fields, categories, and tags can be included. You can choose for the WXR file to include only certain posts or pages by setting the dropdown filters to limit the export by category, author, date range by month, or publishing status.'=>'Vous pouvez exporter le contenu de votre site dans un fichier, afin de l’importer dans une autre installation autonome ou une autre plateforme. Le fichier d’export utilise un format de type XML, baptisé WXR. Il peut contenir vos articles, pages, commentaires, champs personnalisés, catégories et étiquettes. Vous pouvez utiliser des filtres pour que le fichier WXR ne contienne les articles que d’une certaine plage de dates (par mois), un auteur ou autrice donné, une catégorie précise, ou des états de publication.','Failed to repair the %1$s table. Error: %2$s'=>'Impossible de réparer la table %1$s. Erreur : %2$s','New users will receive an email letting them know they’ve been added as a user for your site. This email will also contain their password. Check the box if you do not want the user to receive a welcome email.'=>'Les nouveaux comptes reçoivent un e-mail les informant qu’ils ont été ajoutés à votre site. Cet e-mail contient également leur mot de passe. Cochez la case si vous ne voulez pas envoyer ce message de bienvenue.','There are unsaved changes that will be lost. \'OK\' to continue, \'Cancel\' to return to the Image Editor.'=>'Les modifications qui n’ont pas été enregistrées seront perdues. « OK » pour continuer, « Annuler » pour revenir à l’éditeur d’image.','Post via email settings allow you to send your WordPress installation an email with the content of your post. You must set up a secret email account with POP3 access to use this, and any mail received at this address will be posted, so it’s a good idea to keep this address very secret.'=>'Les réglages de publication par e-mail vous permettant d’envoyer à votre installation WordPress un e-mail dont le contenu sera publié dans un article. Vous devez définir un compte de messagerie secret avec un accès POP3. Tout message reçu à cette adresse sera publié. Il vaut donc mieux garder cette adresse à l’abri des regards.','You can filter the list of users by User Role using the text links above the users list to show All, Administrator, Editor, Author, Contributor, or Subscriber. The default view is to show all users. Unused User Roles are not listed.'=>'Vous pouvez filtrer la liste des comptes par rôle, à l’aide des liens textuels au-dessus de la liste des comptes, afin d’afficher tous les comptes, ou seulement les administrateurs/administratrices, éditeurs/éditrices, auteurs/autrices ou contributeurs/contributrices. Par défaut, tous les comptes sont affichés. Les rôles sans compte associé ne sont pas listés.','In previous versions of WordPress, all importers were built-in. They have been turned into plugins since most people only use them once or infrequently.'=>'Dans les versions précédentes de WordPress, tous les outils d’importation étaient directement inclus. Nous les avons convertis en extensions, car la plupart des gens ne s’en servent que très rarement, voire une seule fois.','There is an autosave of this post that is more recent than the version below. View the autosave'=>'Une sauvegarde automatique existe pour cette publication ; elle est plus récente que la version affichée ci-dessous. Afficher cette sauvegarde automatique.','Image could not be processed. Please go back and try again.'=>'L’image n’a pas pu être traitée. Veuillez revenir en arrière en réessayer.','The active theme is broken. Reverting to the default theme.'=>'Le thème courant est endommagé. Retour au thème par défaut.','WordPress can also attempt to optimize the database. This improves performance in some situations. Repairing and optimizing the database can take a long time and the database will be locked while optimizing.'=>'WordPress peut également tenter d’optimiser la base de données. Cela peut améliorer ses performances dans certains cas. La réparation et l’optimisation peuvent prendre longtemps, et la base de données sera verrouillée durant l’optimisation.','WordPress can automatically look for some common database problems and repair them. Repairing can take a while, so please be patient.'=>'WordPress peut automatiquement rechercher les problèmes courants de base de données et les réparer. La réparation peut prendre un certain temps, veuillez être patient.','Repairs complete. Please remove the following line from wp-config.php to prevent this page from being used by unauthorized users.'=>'Réparations effectuées. Veuillez retirer la ligne suivante de votre fichier wp-config.php, pour empêcher que cette page soit utilisée par des comptes non autorisés.','The %1$s table is not okay. It is reporting the following error: %2$s. WordPress will attempt to repair this table…'=>'La table %1$s est dans un mauvais état. Elle renvoie l’erreur suivante : %2$s. WordPress va tenter de la réparer…','Enter the email address or username of an existing user on this network to invite them to this site. That person will be sent an email asking them to confirm the invite.'=>'Pour inviter un compte de ce réseau sur ce site, saisissez son adresse e-mail ou son identifiant. Cette personne recevra alors un message lui proposant de confirmer son ajout.','Enter the email address of an existing user on this network to invite them to this site. That person will be sent an email asking them to confirm the invite.'=>'Saisissez l’adresse e-mail d’un compte existant sur votre réseau, afin de l’inviter sur ce site. Cette personne recevra un message lui demandant de confirmer l’invitation.','Show Toolbar when viewing site'=>'Afficher la barre d’outils lorsque vous visitez le site','For more information, see the release notes.'=>'Pour plus d’informations, consultez les notes de publication.','Version %1$s addressed some security issues and fixed %2$s bug.'=>'La version %1$s a corrigé quelques problèmes de sécurité et %2$s bogue.' . "\0" . 'La version %1$s a corrigé quelques problèmes de sécurité et %2$s bogues.','Version %1$s addressed a security issue and fixed %2$s bug.'=>'La version %1$s a corrigé un problème de sécurité et %2$s bogue.' . "\0" . 'La version %1$s a corrigé un problème de sécurité et %2$s bogues.','Version %1$s addressed %2$s bug.'=>'La version %1$s a corrigé %2$s bogue.' . "\0" . 'La version %1$s a corrigé %2$s bogues.','Version %s addressed some security issues.'=>'La version %s a corrigé quelques problèmes de sécurité.','Maintenance and Security Release'=>'Mise à jour de maintenance et de sécurité','Security Release'=>'Mise à jour de sécurité','Maintenance Release'=>'Mise à jour de maintenance','What’s New'=>'Nouveautés','This screen allows you to choose your permalink structure. You can choose from common settings or create custom URL structures.'=>'Cet écran vous permet de choisir la structure de permalien par défaut. Vous pouvez choisir les réglages les plus courants, ou créer votre propre structure de liens.','Welcome to WordPress %1$s. Learn more.'=>'Bienvenue sur WordPress %1$s. En savoir plus.','You can upload media files here without creating a post first. This allows you to upload files to use with posts and pages later and/or to get a web link for a particular file that you can share. There are three options for uploading files:'=>'Vous pouvez ici téléverser des fichiers sans avoir besoin de créer un publication au préalable. Ceci vous permet de téléverser des fichiers qui seront utilisables par les articles et les pages ultérieurement et/ou seront utilisés via un lien internet pour partager un fichier particulier. Il y a 3 méthodes pour téléverser des fichiers :','Adding Tags'=>'Ajout d’étiquettes','Adding Categories'=>'Ajout de catégories','Troubleshooting'=>'Diagnostic','How to Update'=>'Comment faire les mises à jour','Once you’ve saved the download file, you can use the Import function in another WordPress installation to import the content from this site.'=>'Une fois que le fichier téléchargé a été enregistré, vous pouvez utiliser la fonction Importer d’un autre site WordPress pour importer ce fichier dans cet autre site.','Attaching Files'=>'Joindre des fichiers','You can also edit or move multiple posts to the Trash at once. Select the posts you want to act on using the checkboxes, then select the action you want to take from the Bulk actions menu and click Apply.'=>'Vous pouvez également modifier plusieurs articles à la fois, ou les déplacer dans la corbeille d’un coup. Sélectionnez les articles sur lesquels vous voulez lancer une action en cochant leurs cases, puis sélectionnez l’action que vous voulez lancer dans le menu « Actions groupées » et cliquez sur « Appliquer ».','Available Actions'=>'Actions disponibles','You can customize the display of this screen’s contents in a number of ways:'=>'Vous pouvez personnaliser l’affichage de cet écran de plusieurs manières :','Screen Content'=>'Contenu de l’écran','This screen provides access to all of your posts. You can customize the display of this screen to suit your workflow.'=>'Cet écran vous donne accès à tous vos articles. Vous pouvez personnaliser son affichage afin qu’il corresponde au mieux à vos besoins.','If the importer you need is not listed, search the plugin directory to see if an importer is available.'=>'Si l’outil d’importation dont vous avez besoin n’est pas listé, faites une recherche dans le répertoire officiel des extensions pour voir s’il y en a un qui répond à votre besoin.','Moderating Comments'=>'Modération des commentaires','If you want to convert your categories to tags (or vice versa), use the Categories and Tags Converter available from the Import screen.'=>'Si vous souhaitez convertir vos catégories en étiquettes (et vice versa), utilisez le Convertisseur de catégories-étiquettes, disponible depuis l’écran des outils d’importation.','Adding Plugins'=>'Ajout d’extensions','Adding Themes'=>'Ajout de thèmes','Subscribers can read comments/comment/receive newsletters, etc. but cannot create regular site content.'=>'Les abonnés et abonnées peuvent lire les commentaires/commenter/recevoir les newsletters… mais ne peuvent pas créer de contenu sur le site.','Authors can publish and manage their own posts, and are able to upload files.'=>'Les auteurs ou autrices peuvent publier et gérer leurs propres articles, ils peuvent également téléverser des fichiers.','Here is a basic overview of the different user roles and the permissions associated with each one:'=>'Voici un rapide survol des différents rôles assignables aux comptes, et des droits qui leurs sont associés :','User Roles'=>'Rôles des comptes','Remember to click the Add User button at the bottom of this screen when you are finished.'=>'N’oubliez pas de cliquer sur le bouton « Ajouter un compte », en bas de cet écran, quand vous aurez terminé.','To add a new user to your site, fill in the form on this screen and click the Add User button at the bottom.'=>'Pour ajouter un nouveau compte à votre site, remplissez le formulaire de cet écran et cliquez sur le bouton « Ajouter un compte » en bas de l’écran.','Custom Structures'=>'Structure personnalisée','Common Settings'=>'Réglages les plus courants','Permalinks are the permanent URLs to your individual pages and blog posts, as well as your category and tag archives. A permalink is the web address used to link to your content. The URL to each post should be permanent, and never change — hence the name permalink.'=>'Les permaliens sont des adresses web permanentes vers vos pages individuelles et vos articles, ainsi que vos archives de catégorie et d’étiquette. Ils offrent un lien plus compréhensible vers votre contenu. Les adresses de chaque article devraient être permanentes et ne jamais changer, d’où le nom de permalien.','You can submit content in several different ways; this screen holds the settings for all of them. The top section controls the editor within the dashboard, while the rest control external publishing methods. For more information on any of these methods, use the documentation links.'=>'Vous disposez de plusieurs méthodes pour envoyer du contenu. Cet écran vous présente les réglages de chacune. La première section gère l’éditeur de l’administration de WordPress, tandis que les autres gèrent les méthodes externes. Pour obtenir plus d’informations sur toutes ces méthodes, suivez les liens vers la documentation.','Uploading Files allows you to choose the folder and path for storing your uploaded files.'=>'L’option « Téléversement des médias » vous permet de choisir le dossier et le chemin de stockage de vos fichiers téléversés.','Installing themes on Multisite can only be done from the Network Admin section.'=>'En mode Multisite, vous pouvez installer des thèmes depuis la section Admin du Réseau.','If desired, WordPress will automatically alert various services of your new posts.'=>'Si vous le souhaitez, WordPress peut automatiquement informer différents services en ligne de vos nouvelles publications.','Post Via Email'=>'Envoi d’article par e-mail','This screen provides many options for controlling the management and display of comments and links to your posts/pages. So many, in fact, they will not all fit here! :) Use the documentation links to get information on what each discussion setting does.'=>'Cet écran offre plusieurs options pour contrôler la gestion et l’affichage des commentaires et liens sur vos articles/pages. D’ailleurs, il y en a tellement qu’elles ne tiennent pas toutes ici :) Utiliser le lien vers la documentation pour obtenir des informations sur ce que fait chaque réglage des commentaires.','You can change your password, turn on keyboard shortcuts, change the color scheme of your WordPress administration screens, and turn off the WYSIWYG (Visual) editor, among other things. You can hide the Toolbar (formerly called the Admin Bar) from the front end of your site, however it cannot be disabled on the admin screens.'=>'Vous pouvez modifier votre mot de passe, activer les raccourcis clavier, modifier le jeu de couleurs des écrans de l’administration de votre WordPress, et désactiver l’éditeur visuel (WYSIWYG), entre autres choses. Vous pouvez également masquer la barre d’outils (anciennement « barre d’administration ») sur l’interface publique de votre site, mais elle ne peut pas être désactivée sur les écrans d’administration.','This sidebar is no longer available and does not show anywhere on your site. Remove each of the widgets below to fully remove this inactive sidebar.'=>'Cette colonne latérale n’est plus disponible, et ne s’affiche nulle part sur le site. Vous pouvez en retirer les widgets ci-dessous afin de la supprimer totalement.','Inactive Sidebar (not used)'=>'Colonne latérale inactive (inutilisée)','Clicking Select Files opens a navigation window showing you files in your operating system. Selecting Open after clicking on the file you want activates a progress bar on the uploader screen.'=>'Un clic sur Sélectionner des fichiers ouvre la fenêtre de navigation, vous donnant accès aux fichiers de votre machine. Après avoir cliqué sur un fichier, cliquez sur Ouvrir pour l’affichage de la barre de téléchargement.','Drag and drop your files into the area below. Multiple files are allowed.'=>'Glissez/déposez vos fichiers dans la zone ci-dessous. Vous pouvez en déposer plusieurs à la fois.','You can assign keywords to your posts using tags. Unlike categories, tags have no hierarchy, meaning there is no relationship from one tag to another.'=>'Vous pouvez assigner des étiquettes à vos articles via la section dédiée. Au contraire des catégories, les étiquettes n’ont aucune hiérarchie, ce qui signifie qu’elles ne peuvent pas être liées entre elles.','You can create groups of links by using Link Categories. Link Category names must be unique and Link Categories are separate from the categories you use for posts.'=>'Vous pouvez créer des groupes de liens en utilisant les catégories de liens. Le nom d’une catégorie de liens doit être unique, et les catégories de liens ne sont pas les mêmes que les catégories de vos articles.','Missing Widgets'=>'Widgets manquants','Removing and Reusing'=>'Retirer et réutiliser','If a media file has not been attached to any content, you will see that in the Uploaded To column, and can click on Attach to launch a small popup that will allow you to search for existing content and attach the file.'=>'Le fait qu’un fichier média n’est attaché à aucun article vous sera indiqué dans la colonne « Téléversé sur », et vous pourrez cliquer sur le lien « Joindre » pour afficher une petite fenêtre vous permettant de rechercher du contenu auquel attacher le fichier.','All the files you’ve uploaded are listed in the Media Library, with the most recent uploads listed first. You can use the Screen Options tab to customize the display of this screen.'=>'Tous les fichiers que vous avez téléversés sont listés dans la médiathèque, les plus récents en premier. Vous pouvez utiliser l’onglet « Options de l’écran » pour personnaliser l’affichage de cet écran.','You can also perform the same types of actions, including narrowing the list by using the filters, acting on a page using the action links that appear when you hover over a row, or using the Bulk actions menu to edit the metadata for multiple pages at once.'=>'Vous pouvez également réaliser les mêmes sortes d’actions, comme réduire la liste par le biais des filtres, en passant par les liens qui apparaissent quand la souris passe au-dessus d’une ligne, ou en utilisant le menu « Actions groupées » pour modifier les métadonnées de plusieurs pages d’un seul coup.','Managing pages is very similar to managing posts, and the screens can be customized in the same way.'=>'La gestion des pages est très proche de celle des articles, et les écrans peuvent être personnalisés de la même manière.','Pages are similar to posts in that they have a title, body text, and associated metadata, but they are different in that they are not part of the chronological blog stream, kind of like permanent posts. Pages are not categorized or tagged, but can have a hierarchy. You can nest pages under other pages by making one the “Parent” of the other, creating a group of pages.'=>'Les pages sont comme des articles, en cela qu’elles ont un titre, un contenu et des métadonnées associées ; mais elles diffèrent en cela qu’elles ne font pas partie du flux chronologique du blog - un peu comme des articles permanents. Les pages ne sont pas catégorisées et ne reçoivent pas d’étiquettes, mais peuvent disposer d’une hiérarchie. En effet, vous pouvez imbriquer des pages sous d’autres pages, faisant de ces dernières les « parentes » des premières, créant ainsi un groupement de pages.','Many people take advantage of keyboard shortcuts to moderate their comments more quickly. Use the link to the side to learn more.'=>'De nombreuses personnes utilisent les raccourcis clavier pour modérer leurs commentaires plus rapidement. Suivez le lien sur le côté pour en savoir plus.','In the Author column, in addition to the author’s name, email address, and site URL, the commenter’s IP address is shown. Clicking on this link will show you all the comments made from this IP address.'=>'Dans la colonne Auteur/autrice, en plus de trouver le nom de l’auteur ou de l’autrice, son adresse e-mail et celle de son site, vous trouverez son adresse IP. En cliquant dessus, vous obtiendrez une liste de tous les commentaires faits depuis cette adresse IP.','You can manage comments made on your site similar to the way you manage posts and other content. This screen is customizable in the same ways as other management screens, and you can act on comments using the on-hover action links or the bulk actions.'=>'Vous pouvez gérer les commentaires sur votre site de la même manière que vous gérez les articles et autres contenus. Cet écran est personnalisable de la même manière que les autres écrans de gestion, et vous pouvez agir sur les commentaires par le biais des liens qui apparaissent au survol de la souris, ou via le menu « Actions groupées ».','Links in the Toolbar at the top of the screen connect your dashboard and the front end of your site, and provide access to your profile and helpful WordPress information.'=>'Les liens contenus dans la barre d’outils placée en haut de l’écran relient votre tableau de bord à la partie publique de votre site, et fournissent un accès rapide à votre profil et de précieuses informations sur WordPress.','Deleting Links'=>'Suppression de liens','Links may be separated into Link Categories; these are different than the categories used on your posts.'=>'Les liens peuvent être rangés dans des catégories de liens ; ce ne sont pas les mêmes catégories que pour vos articles.','Learn more about WordPress %2$s.'=>'À propos de WordPress %2$s.','Edit takes you to the editable profile screen for that user. You can also reach that screen by clicking on the username.'=>'« Modifier » vous envoie sur l’écran de modification de ce compte. Vous pouvez également vous rendre sur cet écran en cliquant sur le nom du compte.','Hovering over a row in the users list will display action links that allow you to manage users. You can perform the following actions:'=>'Passer la souris au-dessus d’une ligne de la liste des comptes affichera des liens vous permettant de gérer le compte. Vous pouvez lancer les actions suivantes :','You can view all posts made by a user by clicking on the number under the Posts column.'=>'Vous pouvez voir tous les articles faits par un même compte en cliquant sur le nombre sous la colonne « Articles ».','You can hide/display columns based on your needs and decide how many users to list per screen using the Screen Options tab.'=>'Vous pouvez masquer/afficher les colonnes en fonction de vos besoins, et décider du nombre de comptes à afficher par écran à l’aide de l’onglet « Options de l’écran ».','Managing Pages'=>'Gestion de pages','Preview will show you what your draft post will look like if you publish it. View will take you to your live site to view the post. Which link is available depends on your post’s status.'=>'Prévisualiser vous donnera une idée de ce à quoi votre brouillon ressemble si vous le publiez tel quel. Afficher vous enverra sur votre site, à l’adresse de la publication. L’action disponible dépend de l’état de votre publication.','Trash removes your post from this list and places it in the Trash, from which you can permanently delete it.'=>'Mettre à la corbeille retire l’article de la liste et le déplace dans la corbeille, d’où vous pourrez le supprimer définitivement.','Quick Edit provides inline access to the metadata of your post, allowing you to update post details without leaving this screen.'=>'Modification Rapide vous donne un accès rapide aux métadonnées de votre article, vous permettant de mettre à jour certains détails sans devoir quitter la liste.','Edit takes you to the editing screen for that post. You can also reach that screen by clicking on the post title.'=>'Modifier vous envoie sur l’écran de modification de cette publication. Vous pouvez également vous rendre sur cet écran en cliquant sur le titre de la publication.','Because this is a multisite installation, you may add accounts that already exist on the Network by specifying a username or email, and defining a role. For more options, such as specifying a password, you have to be a Network Administrator and use the hover link under an existing user’s name to Edit the user profile under Network Admin > All Users.'=>'Parce qu’il s’agit d’une installation multisite, vous pouvez ajouter des comptes qui existent déjà sur le Réseau, en indiquant un identifiant ou une adresse e-mail, et en assignant un rôle. Pour avoir plus d’options, telle que le choix du mot de passe, vous devez être Administrateur ou administratrice du Réseau, et utiliser les liens qui apparaissent au survol sous le nom de l’utilisateur ou de l’utilisatrice pour modifier son compte, depuis l’écran « Tous les comptes ».','Go to Dashboard → Home'=>'Aller sur l’accueil','Go to Dashboard → Updates'=>'Aller sur Tableau de bord → Mises à jour','Profile updated.'=>'Profil mis à jour.','Hi, You\'ve been invited to join \'%1$s\' at %2$s with the role of %3$s. @@ -149,7 +149,7 @@ Please click the following link to confirm the invite: Vous avez été invité·e à rejoindre « %1$s » sur %2$s en tant que %3$s. Veuillez cliquer sur le lien suivant pour confirmer l’invitation : -%4$s','Core Developer'=>'Développeur cœur','No valid plugins were found.'=>'Aucune extension valide trouvée.','The plugin contains no files.'=>'Cette extension ne contient aucun fichier.','The package could not be installed.'=>'L’archive n’a pas pu être installée.','Attachment Post URL'=>'Adresse de la page du fichier joint','admin menuAll Links'=>'Tous les liens','%s plugins'=>'%s extensions','%s plugin'=>'%s extension','Failed to optimize the %1$s table. Error: %2$s'=>'Impossible d’optimiser la table %1$s. Erreur : %2$s','Successfully optimized the %s table.'=>'La table %s a bien été optimisée.','The %s table is already optimized.'=>'La table %s a déjà été optimisée.','Successfully repaired the %s table.'=>'La table %s a bien été réparée.','The %s table is okay.'=>'La table %s est correcte.','View version %s details.'=>'Afficher les détails de la version %s.','Tumblr'=>'Tumblr','Update %2$s or learn how to browse happy'=>'Mettez %2$s à jour, ou apprenez à naviguer sereinement','Scale images to match the large size selected in %1$simage options%2$s (%3$d × %4$d).'=>'Redimensionner les images pour correspondre à la taille large définie dans les %1$sréglages des médias%2$s (%3$d × %4$d).','Audio, Video, or Other File'=>'Audio, vidéo ou un autre format','Insert media from another website'=>'Insérer un média depuis un autre site','Error: Could not connect to the server. Please verify the settings are correct.'=>'Erreur : connexion au serveur impossible, veuillez vérifier que les réglages sont corrects.','Drag and Drop — To rearrange the boxes, drag and drop by clicking on the title bar of the selected box and releasing when you see a gray dotted-line rectangle appear in the location you want to place the box.'=>'Glisser/déposer - Pour réarranger les sections, glissez/déposez-les en cliquant sur la barre de titre de la section sélectionnée, et relâchez-la lorsque vous apercevez un rectangle avec une bordure grise à l’emplacement où vous souhaitez placer la section.','You can use the following controls to arrange your Dashboard screen to suit your workflow. This is true on most other administration screens as well.'=>'Vous pouvez utiliser les contrôles suivants pour organiser l’écran du tableau de bord afin qu’il s’adapte à votre manière de l’utiliser. La plupart des écrans de la console d’administration peuvent également être organisés de cette manière.','The left-hand navigation menu provides links to all of the WordPress administration screens, with submenu items displayed on hover. You can minimize this menu to a narrow icon strip by clicking on the Collapse Menu arrow at the bottom.'=>'La navigation située à gauche de l’écran fournit tous les liens pour accéder à la console d’administration de WordPress, avec les sous-menus qui s’affichent au survol. Vous pouvez réduire ce menu à ses seules icônes en cliquant sur la flèche de repliement située en bas du menu.','Overview'=>'Vue d’ensemble','Updates %s'=>'Mises à jour %s','Installed Plugins'=>'Extensions installées','Plugins %s'=>'Extensions %s','All Users'=>'Tous les comptes','Confirm Deletion'=>'Confirmer cette action','Role'=>'Rôle','Add Existing User'=>'Ajouter un compte existant','Search Users'=>'Rechercher des comptes','User removed from this site.'=>'Compte supprimé de ce site.','Changed roles.'=>'Rôles modifiés.','Caution:'=>'Attention :','Add New User'=>'Ajouter un compte','User added.'=>'Compte ajouté.','Super Admin'=>'Super-admin','Version %s'=>'Version %s','Update Available (%s)'=>'À mettre à jour (%s)' . "\0" . 'À mettre à jour (%s)','Deactivate'=>'Désactiver','Delete Site'=>'Supprimer le site','Settings saved.'=>'Réglages enregistrés.','For more information:'=>'Plus d’informations :','About Pages'=>'À propos des pages','Title and Post Editor'=>'Titre et éditeur de publications','Customizing This Display'=>'Personnaliser cet écran','Note: Neither of these options blocks access to your site — it is up to search engines to honor your request.'=>'Note : Aucune de ces options ne bloque l’accès à votre site — c’est au moteur de recherche de respecter votre demande.','Post name'=>'Titre de la publication','sample permalink structuresample-post'=>'exemple-article','sample permalink basearchives'=>'archives','This importer is not installed. Please install importers from the main site.'=>'Cet importateur n’est pas installé. Veuillez installer les outils d’importation depuis le site principal.','Site Language'=>'Langue du site','Attempt to notify any blogs linked to from the post'=>'Tenter de notifier les sites liés depuis la publication','Hi, +%4$s','Core Developer'=>'Développeur cœur','No valid plugins were found.'=>'Aucune extension valide trouvée.','The plugin contains no files.'=>'Cette extension ne contient aucun fichier.','The package could not be installed.'=>'L’archive n’a pas pu être installée.','Attachment Post URL'=>'Adresse de la page du fichier joint','admin menuAll Links'=>'Tous les liens','%s plugins'=>'%s extensions','%s plugin'=>'%s extension','Failed to optimize the %1$s table. Error: %2$s'=>'Impossible d’optimiser la table %1$s. Erreur : %2$s','Successfully optimized the %s table.'=>'La table %s a bien été optimisée.','The %s table is already optimized.'=>'La table %s a déjà été optimisée.','Successfully repaired the %s table.'=>'La table %s a bien été réparée.','The %s table is okay.'=>'La table %s est correcte.','View version %s details.'=>'Afficher les détails de la version %s.','Tumblr'=>'Tumblr','Update %2$s or learn how to browse happy'=>'Mettez %2$s à jour, ou apprenez à naviguer sereinement','Scale images to match the large size selected in %1$simage options%2$s (%3$d × %4$d).'=>'Redimensionner les images pour correspondre à la taille large définie dans les %1$sréglages des médias%2$s (%3$d × %4$d).','Audio, Video, or Other File'=>'Audio, vidéo ou un autre format','Insert media from another website'=>'Insérer un média depuis un autre site','Error: Could not connect to the server. Please verify the settings are correct.'=>'Erreur : connexion au serveur impossible, veuillez vérifier que les réglages sont corrects.','Drag and Drop — To rearrange the boxes, drag and drop by clicking on the title bar of the selected box and releasing when you see a gray dotted-line rectangle appear in the location you want to place the box.'=>'Glisser/déposer - Pour réarranger les sections, glissez/déposez-les en cliquant sur la barre de titre de la section sélectionnée, et relâchez-la lorsque vous apercevez un rectangle avec une bordure grise à l’emplacement où vous souhaitez placer la section.','You can use the following controls to arrange your Dashboard screen to suit your workflow. This is true on most other administration screens as well.'=>'Vous pouvez utiliser les contrôles suivants pour organiser l’écran du tableau de bord afin qu’il s’adapte à votre manière de l’utiliser. La plupart des écrans de la console d’administration peuvent également être organisés de cette manière.','The left-hand navigation menu provides links to all of the WordPress administration screens, with submenu items displayed on hover. You can minimize this menu to a narrow icon strip by clicking on the Collapse Menu arrow at the bottom.'=>'La navigation située à gauche de l’écran fournit tous les liens pour accéder à la console d’administration de WordPress, avec les sous-menus qui s’affichent au survol. Vous pouvez réduire ce menu à ses seules icônes en cliquant sur la flèche de repliement située en bas du menu.','Updates %s'=>'Mises à jour %s','Installed Plugins'=>'Extensions installées','Plugins %s'=>'Extensions %s','All Users'=>'Tous les comptes','Confirm Deletion'=>'Confirmer cette action','Role'=>'Rôle','Add Existing User'=>'Ajouter un compte existant','Search Users'=>'Rechercher des comptes','User removed from this site.'=>'Compte supprimé de ce site.','Changed roles.'=>'Rôles modifiés.','Caution:'=>'Attention :','User added.'=>'Compte ajouté.','Super Admin'=>'Super-admin','Version %s'=>'Version %s','Update Available (%s)'=>'À mettre à jour (%s)' . "\0" . 'À mettre à jour (%s)','Deactivate'=>'Désactiver','Delete Site'=>'Supprimer le site','Settings saved.'=>'Réglages enregistrés.','For more information:'=>'Plus d’informations :','About Pages'=>'À propos des pages','Title and Post Editor'=>'Titre et éditeur de publications','Customizing This Display'=>'Personnaliser cet écran','Note: Neither of these options blocks access to your site — it is up to search engines to honor your request.'=>'Note : Aucune de ces options ne bloque l’accès à votre site — c’est au moteur de recherche de respecter votre demande.','Post name'=>'Titre de la publication','sample permalink structuresample-post'=>'exemple-article','sample permalink basearchives'=>'archives','This importer is not installed. Please install importers from the main site.'=>'Cet importateur n’est pas installé. Veuillez installer les outils d’importation depuis le site principal.','Site Language'=>'Langue du site','Attempt to notify any blogs linked to from the post'=>'Tenter de notifier les sites liés depuis la publication','Hi, You\'ve been invited to join \'%1$s\' at %2$s with the role of %3$s. If you do not want to join this site please ignore @@ -163,8 +163,8 @@ Si vous ne souhaitez pas rejoindre ce site, veuillez ignorer cet e-mail. L’invitation expirera dans quelques jours. Veuillez cliquer sur le lien suivant pour activer votre compte : -%%s','Post Formats'=>'Format d’article','Full Width Template'=>'Modèle pleine largeur','Featured Images'=>'Images mises en avant','Featured Image Header'=>'Image d’entête mise en avant','It looks like you\'re using an old version of %s. For the best WordPress experience, please update your browser.'=>'Il semble que vous utilisez une vieille version de %s. Pour utiliser WordPress dans les meilleures conditions, veuillez mettre à jour votre navigateur.','It looks like you\'re using an insecure version of %s. Using an outdated browser makes your computer unsafe. For the best WordPress experience, please update your browser.'=>'Il semble que vous utilisez une version peu sûre de %s. Un navigateur dépassé met votre ordinateur en danger. Pour utiliser WordPress dans des conditions optimales, veuillez mettre à jour votre navigateur.','There are some invalid menu items. Please check or delete them.'=>'Certains éléments du menu ne sont pas valides. Veuillez les vérifier ou les effacer.','term nameName'=>'Nom','meta nameName'=>'Nom','theme nameName'=>'Nom','You can find additional themes for your site by using the Theme Browser/Installer on this screen, which will display themes from the WordPress Theme Directory. These themes are designed and developed by third parties, are available free of charge, and are compatible with the license WordPress uses.'=>'Vous pouvez trouver plus de thèmes pour votre site en utilisant le navigateur/installeur de thème sur cet écran, qui affiche les thèmes en provenance du dépôt de thèmes de WordPress.org. Ces thèmes sont conçus et développés par des tiers, sont gratuits et utilisent une licence compatible avec celle de WordPress.','If you would like to see more plugins to choose from, click on the “Add New Plugin” button and you will be able to browse or search for additional plugins from the WordPress Plugin Directory. Plugins in the WordPress Plugin Directory are designed and developed by third parties, and are compatible with the license WordPress uses. Oh, and they are free!'=>'Si vous souhaitez choisir parmi plus d’extensions, cliquez sur le bouton « Ajouter une extension » et vous pourrez parcourir le répertoire d’extensions de WordPress.org, ou y lancer une recherche. Les extensions du répertoire sont conçues et développées par des tiers, et utilisent une licence compatible avec celle de WordPress. Et oui, elles sont gratuites !','The uploaded file exceeds the %s directive that was specified in the HTML form.'=>'La taille du fichier envoyé excède celle indiquée dans la directive %s du formulaire HTML.','External Libraries'=>'Bibliothèques tierces','Network Setup'=>'Création du réseau','Available Tools'=>'Outils disponibles','Translate this to be the equivalent of English Translators in your language for the credits page Translators sectionTranslators'=>'Traductrices & traducteurs','Every plugin and theme in WordPress.org’s directory is 100%% GPL or a similarly free and compatible license, so you can feel safe finding plugins and themes there. If you get a plugin or theme from another source, make sure to ask them if it’s GPL first. If they do not respect the WordPress license, it is not recommended to use them.'=>'Tous les thèmes et extensions disponibles sur le répertoire WordPress.org respectent à 100%% la licence GPL, ou une licence libre et compatible. Ainsi, vous pouvez en toute sûreté y rechercher des extensions et des thèmes. Si vous téléchargez une extension ou un thème en provenance d’une autre source, vérifiez bien que la licence GPL est respectée. Si cela n’est pas le cas, il vaut mieux ne pas l’utiliser.','WordPress grows when people like you tell their friends about it, and the thousands of businesses and services that are built on and around WordPress share that fact with their users. We are flattered every time someone spreads the good word, just make sure to check out our trademark guidelines first.'=>'WordPress prend davantage d’ampleur à chaque fois que vous en parlez à vos amis et à chaque fois que les milliers de sociétés et services dans le monde bâtis à l’aide de ou autour de WordPress en font mention à leurs utilisateurs et utilisatrices. La communauté apprécie que vous vantiez les mérites de cet outil ; veillez simplement à respecter les conditions d’utilisation de la marque déposée « WordPress ».','All Comments'=>'Tous les commentaires','Lead Developer'=>'Développeur principal','Cofounder, Project Lead'=>'Cofondateur, chef de projet','Core Contributors to WordPress %s'=>'Contributrices & contributeurs au cœur de WordPress %s','Project Leaders'=>'Chefs de projet','Credits'=>'Crédits','removing-widgetDeactivate'=>'Désactiver','Your browser is out of date!'=>'Votre navigateur est obsolète !','You are using an insecure browser!'=>'Vous utilisez un navigateur peu sûr !','Freedoms'=>'Libertés','You can use one of these cool headers or show a random one on each page.'=>'Vous pouvez choisir parmi ces entêtes, ou en afficher un aléatoirement à chaque chargement de page.','If you do not want to upload your own image, you can use one of these cool headers, or show a random one.'=>'Si vous ne voulez pas téléverser d’image, vous pouvez utiliser l’un de ces entêtes, ou en afficher un aléatoirement.','You can choose one of your previously uploaded headers, or show a random one.'=>'Vous pouvez choisir un entête parmi ceux que vous avez déjà téléversés, ou en afficher un aléatoirement.','Collapse menu'=>'Réduire le menu','Uploaded Images'=>'Images téléversées','Random: Show a different image on each page.'=>'Aléatoire : affiche une image différente sur chaque page.','You have specified this user for deletion:'=>'Vous avez choisi de supprimer ce compte :','%s Page Template'=>'Modèle de page %s','You cannot delete a plugin while it is active on the main site.'=>'Vous ne pouvez pas effacer une extension tant qu’elle est activée sur le site principal.','This plugin may be active on other sites in the network.'=>'Cette extension peut uniquement être activée sur l’ensemble des sites du réseau.','Default Post Format'=>'Format par défaut des articles','Any edits to files from this screen will be reflected on all sites in the network.'=>'Toute modification aux fichiers de cet écran affectera l’ensemble des sites du réseau.','This screen lists all the existing users for your site. Each user has one of five defined roles as set by the site admin: Site Administrator, Editor, Author, Contributor, or Subscriber. Users with roles other than Administrator will see fewer options in the dashboard navigation when they are logged in, based on their role.'=>'Cet écran liste tous les comptes actuels de votre site. Chaque compte a l’un des 5 rôles prédéfinis, tel qu’assigné par l’administrateur ou l’administratrice du site : administrateur/administratrice, éditeur/éditrice, auteur/autrice, contributeur/contributrice ou abonné/abonnée. Les comptes avec un rôle autre qu’administrateur ou administratrice verront moins d’options quand ils seront connectés, en fonction de leur rôle.','If you want to make changes but do not want them to be overwritten when the plugin is updated, you may be ready to think about writing your own plugin. For information on how to edit plugins, write your own from scratch, or just better understand their anatomy, check out the links below.'=>'Si vous voulez faire des modifications et ne pas les perdre à la prochaine mise à jour, cela signifie que vous êtes prêt à écrire votre propre extension. Pour obtenir des informations sur la manière de modifier une extension ou d’en créer une, ou simplement pour comprendre leur fonctionnement, suivez les liens ci-contre.','The boxes on your Dashboard screen are:'=>'Les sections de l’écran du tableau de bord sont :','sample-page'=>'page-d-exemple','Sample Page'=>'Page d’exemple','Retro (Generated)'=>'Rétro (généré)','You only have one theme enabled for this site right now. Visit the Network Admin to enable more themes.'=>'Vous n’avez qu’un thème activé sur ce site actuellement. Veuillez vous rendre sur la page d’administration du réseau pour activer plus de thèmes.','You only have one theme enabled for this site right now. Visit the Network Admin to enable or install more themes.'=>'Vous n’avez qu’un thème activé sur ce site actuellement. Veuillez vous rendre sur la page d’administration du réseau pour activer ou installer plus de thèmes.','Super admin privileges cannot be removed because this user has the network admin email.'=>'Les privilèges de super-admin ne peuvent pas être retirés, car ce compte est celui avec l’adresse e-mail administrative du réseau.','You only have one theme installed right now. Live a little! You can choose from over 1,000 free themes in the WordPress Theme Directory at any time: just click on the Install Themes tab above.'=>'Vous n’avez qu’un seul thème d’installé pour le moment. Faites vivre votre site ! Vous pouvez quand vous le voulez choisir parmi plus de 1 000 thèmes sur le dépôt de thèmes de WordPress.org : cliquez simplement sur l’onglet « Ajouter » ci-dessus.','One or more database tables are unavailable. To allow WordPress to attempt to repair these tables, press the “Repair Database” button. Repairing can take a while, so please be patient.'=>'Une ou plusieurs tables de votre base de données sont indisponibles. Pour autoriser WordPress à tenter de réparer ces tables, cliquez sur le bouton « Réparer la base de données ». La réparation peut prendre un certain temps, merci donc d’être patient.','Visual Editor RTL Stylesheet'=>'Feuille de style de l’éditeur visuel (lecture de droite à gauche)','This is a file in your current parent theme.'=>'Ceci est un fichier de votre thème parent actuel.','This child theme inherits templates from a parent theme, %s.'=>'Ce thème enfant hérite de certains modèles de son thème parent, %s.','Network Enable'=>'Activer sur le réseau','Your WordPress database has been successfully updated!'=>'La base de données de WordPress a bien été mise à jour !','Update Complete'=>'Mise à jour terminée','Update WordPress Database'=>'Mettre à jour la base de données de WordPress','The database update process may take a little while, so please be patient.'=>'Le processus de mise à jour peut prendre un certain temps, merci donc pour votre patience.','Database Update Required'=>'Mise à jour de la base de données nécessaire','No Update Required'=>'Aucune mise à jour nécessaire','WordPress › Update'=>'WordPress › Mise à jour','You are about to install WordPress %s in English (US). There is a chance this update will break your translation. You may prefer to wait for the localized version to be released.'=>'Vous êtes sur le point d’installer WordPress %s en anglais (US). Il se peut que cette mise à jour ne fonctionne pas avec la traduction de WordPress dont vous disposez. Vous devriez sans doute patienter, le temps que cette version soit officiellement traduite dans votre langue.','There is a new version of %1$s available. View version %4$s details. Automatic update is unavailable for this plugin.'=>'Une nouvelle version pour %1$s est disponible. Afficher les détails de la version %4$s. La mise à jour automatique n’est pas disponible pour cette extension.','Update Theme'=>'Mettre à jour le thème','Update Plugin'=>'Mettre à jour l’extension','Theme updated successfully.'=>'Le thème a bien été mis à jour.','Theme update failed.'=>'La mise à jour du thème a échoué.','Plugin updated successfully.'=>'L’extension a bien été mise à jour.','Plugin update failed.'=>'La mise à jour de l’extension a échoué.','Update package not available.'=>'Aucune archive de mise à jour disponible.','Date range:'=>'Date de création :','Authors:'=>'Auteurs/autrices :','This will contain all of your posts, pages, comments, custom fields, terms, navigation menus, and custom posts.'=>'Il contiendra tous vos articles, pages, commentaires, champs personnalisés, termes, menus de navigation et types de publications personnalisés.','All content'=>'Tout le contenu','Choose what to export'=>'Choisir les données à exporter','commentsMine (%s)'=>'Le mien (%s)' . "\0" . 'Les miens (%s)','%s — WordPress'=>'%s – WordPress','column nameIn Response To'=>'En réponse à','The Available Widgets section contains all the widgets you can choose from. Once you drag a widget into a sidebar, it will open to allow you to configure its settings. When you are happy with the widget settings, click the Save button and the widget will go live on your site. If you click Delete, it will remove the widget.'=>'La section « Widgets disponibles » contient tous les widgets que vous pouvez utiliser. Une fois le widget glissé dans la colonne latérale, il s’ouvrira pour vous permettre d’en modifier les réglages. Quand vos réglages vous satisfont, cliquez sur le bouton « Enregistrer » et le widget sera lancé sur votre site. Si vous cliquez sur « Supprimer », le widget sera retiré du site.','Remember to click Update to save metadata entered or changed.'=>'Pensez bien à cliquer sur le bouton « Mettre à jour » afin de conserver les métadonnées ajoutées ou modifiées.','Note that you crop the image by clicking on it (the Crop icon is already selected) and dragging the cropping frame to select the desired part. Then click Save to retain the cropping.'=>'Pour recadrer une image, cliquez sur l’icône Recadrer puis sélectionnez la zone à conserver en cliquant sur l’image et en faisant glisser le curseur de la souris. Ensuite, cliquez sur Enregistrer pour conserver votre modification.','For images only, you can click on Edit Image under the thumbnail to expand out an inline image editor with icons for cropping, rotating, or flipping the image as well as for undoing and redoing. The boxes on the right give you more options for scaling the image, for cropping it, and for cropping the thumbnail in a different way than you crop the original image. You can click on Help in those boxes to get more information.'=>'Pour les images (et seulement elles), vous pouvez cliquer sur « Modifier l’Image », sous la miniature, afin de faire apparaître un éditeur d’image, vous permettant de recadrer, d’appliquer une rotation ou d’inverser une image, ainsi que de défaire et refaire vos modifications. Les sections sur la droite vous donnent accès à d’autres options pour le changement d’échelle, le recadrage et même le recadrage de la miniature, qui peut être différent de celui de l’image originale. Cliquez sur le bouton « Aide » de ces sections pour obtenir plus d’informations.','This screen allows you to edit fields for metadata in a file within the media library.'=>'Cet écran vous permet de modifier les champs des métadonnées des fichiers dans la médiathèque.','Email or Username'=>'E-mail ou identifiant','Search installed themes'=>'Rechercher des thèmes installés','Please Note: Any customizations you have made to theme files will be lost. Please consider using child themes for modifications.'=>'Notez bien : toutes les personnalisations que vous pourriez avoir apportées aux fichiers des thèmes seront perdues. Pensez à utiliser des thèmes enfants pour vos modifications.','postsSticky (%s)'=>'Épinglé (%s)' . "\0" . 'Épinglés (%s)','Check again.'=>'Vérifier à nouveau.','Last checked on %1$s at %2$s.'=>'Dernière vérification le %1$s à %2$s.','Please select one or more plugins to update.'=>'Veuillez sélectionner une ou plusieurs extensions à mettre à jour.','Please select one or more themes to update.'=>'Veuillez sélectionner un ou plusieurs thèmes à mettre à jour.','The update process is starting. This process may take a while on some hosts, so please be patient.'=>'Le processus de mise à jour se lance. Il peut prendre un certain temps chez certains hébergeurs, merci pour votre patience.','Apply Filters'=>'Appliquer les filtres','Editor Style'=>'Éditeur de style','Sorry, you are not allowed to edit users.'=>'Désolé, vous n’avez pas l’autorisation de modifier les comptes.','To perform the requested action, WordPress needs to access your web server.'=>'Pour lancer la requête demandée, WordPress a besoin d’accéder à votre serveur web.','Current Page'=>'Page actuelle','No themes match your request.'=>'Aucun thème ne correspond à votre requête.','Search Sites'=>'Rechercher des sites','Create a New User'=>'Créer un nouveau compte','You have %1$s and %2$s.'=>'Vous avez %1$s et %2$s.','%s site'=>'%s site' . "\0" . '%s sites','%s user'=>'%s compte' . "\0" . '%s comptes','https://wordpress.org/news/feed/'=>'https://fr.wordpress.org/news/feed/','https://wordpress.org/news/'=>'https://wpfr.net/','(Signup has been disabled. Only members of this site can comment.)'=>'(L’inscription a été désactivée. Seuls les membres de ce site peuvent laisser un commentaire.)','There is a new version of %1$s available. View version %4$s details.'=>'Une nouvelle version pour %1$s est disponible. Afficher les détails de la version %4$s.','Go to Themes page'=>'Aller sur la page des thèmes','Go to WordPress Updates page'=>'Aller à la page des mises à jour de WordPress','Go to Plugins page'=>'Aller sur la page des extensions','Click Save Menu to make pending menu items public.'=>'Cliquez sur « Enregistrer le menu » pour rendre publics les éléments en attente.','Storage Space'=>'Espace disque','Create a New Site'=>'Créer un nouveau site','Images of exactly %1$d × %2$d pixels will be used as-is.'=>'Les images ayant pour taille exacte %1$d pixels par %2$d seront utilisées telles quelles.','Crop and Publish'=>'Recadrer et publier','XFN stands for XHTML Friends Network, which is optional. WordPress allows the generation of XFN attributes to show how you are related to the authors/owners of the site to which you are linking.'=>'XFN signifie XHTML Friends Network, c’est-à-dire Réseau XHTML d’Amis. Son usage est facultatif. WordPress permet de générer les attributs XFN de vos liens, afin d’indiquer votre relation avec l’auteur/autrice ou la personne qui est propriétaire de la page liée.','FTP Password'=>'Mot de passe FTP','FTP Username'=>'Identifiant FTP','FTP/SSH Password'=>'Mot de passe FTP/SSH','FTP/SSH Username'=>'Identifiant FTP/SSH','Many themes show some sidebar widgets by default until you edit your sidebars, but they are not automatically displayed in your sidebar management tool. After you make your first widget change, you can re-add the default widgets by adding them from the Available Widgets area.'=>'De nombreux thèmes affichent par défaut quelques widgets dans la colonne latérale, jusqu’à ce que vous la modifiez vous-mêmes. Ces widgets par défaut ne sont pas automatiquement affichés dans le gestionnaire de colonne latérale. Après avoir fait vos propres modifications de widgets, vous pouvez rajouter les widgets par défaut depuis la section « Widgets Disponibles ».','You can choose what’s displayed on the homepage of your site. It can be posts in reverse chronological order (classic blog), or a fixed/static page. To set a static homepage, you first need to create two Pages. One will become the homepage, and the other will be where your posts are displayed.'=>'Vous pouvez choisir ce qui est affiché en page d’accueil de votre site. Au choix, le mode « blog » classique (les articles dans l’ordre chronologique inverse) ou une page statique. Pour mettre en place une page statique, vous devez d’abord créer deux pages : la première servira de page d’accueil, la seconde affichera vos articles.','The Optional fields let you customize the “category” and “tag” base names that will appear in archive URLs. For example, the page listing all posts in the “Uncategorized” category could be /topics/uncategorized instead of /category/uncategorized.'=>'Les champs facultatifs, en bas de page, vous permettent de personnaliser les dénominations utilisées pour les chemins /category/ et /tag/ lors de l’affichage des archives. Par exemple, la page listant tous les articles de la catégorie « Non classé » pourrait se lire comme /sujet/non-classe/ plutôt que /categorie/non-classe/.','When you assign multiple categories or tags to a post, only one can show up in the permalink: the lowest numbered category. This applies if your custom structure includes %1$s or %2$s.'=>'Quand vous assignez un article à plusieurs catégories ou étiquettes, une seule apparaîtra dans le permalien : la catégorie avec l’identifiant numérique le plus bas. Idem pour les mots-clés. Cela s’applique si votre structure comprend %1$s ou %2$s.','If you pick an option other than Plain, your general URL path with structure tags (terms surrounded by %s) will also appear in the custom structure field and your path can be further modified there.'=>'Si vous choisissez une option autre que « Simple », la structure générale de vos liens, avec les balises de structure (encadrés par %s), apparaîtra dans le champ de « Structure personnalisée », d’où vous pourrez l’adapter à vos besoins précis.','If you want to remove the widget but save its setting for possible future use, just drag it into the Inactive Widgets area. You can add them back anytime from there. This is especially helpful when you switch to a theme with fewer or different widget areas.'=>'Si vous voulez retirer le widget, mais conserver ses réglages pour un possible usage futur, glissez-le simplement dans la zone « Widgets désactivés ». De là, vous pouvez les réajouter n’importe quand. C’est particulièrement utile quand vous passez à un thème avec moins de zones à widgets, ou des zones différentes.','To add a new user for your site, click the Add New User button at the top of the screen or Add New User in the Users menu section.'=>'Pour ajouter un nouveau compte à votre site, cliquez sur le bouton « Ajouter » en haut de l’écran, ou l’option « Ajouter » du menu « Comptes ».','You can set maximum sizes for images inserted into your written content; you can also insert an image as Full Size.'=>'Vous pouvez indiquer une taille maximale pour les images insérées dans votre contenu textuel. Vous pourrez insérer l’image dans sa taille d’origine.','Most themes show the site title at the top of every page, in the title bar of the browser, and as the identifying name for syndicated feeds. Many themes also show the tagline.'=>'La plupart des thèmes affichent le titre du site en haut de chaque page, dans la barre de titre du navigateur, et en tant qu’identifiant pour les flux de syndication. Le slogan est également utilisé par de nombreux thèmes.','Order — Pages are usually ordered alphabetically, but you can choose your own order by entering a number (1 for first, etc.) in this field.'=>'Ordre — Les pages sont généralement affichées par ordre alphabétique, mais vous pouvez saisir un nombre dans ce champ pour modifier l’ordre d’apparition : 1 pour premier, etc.','If you do not remember your credentials, you should contact your web host.'=>'Si vous ne vous souvenez pas de votre identifiant, vous devriez contacter votre hébergeur.','Please enter your FTP credentials to proceed.'=>'Veuillez saisir votre identifiant FTP pour continuer.','Please enter your FTP or SSH credentials to proceed.'=>'Veuillez saisir votre identifiant FTP ou SSH pour continuer.','Your profile contains information about you (your “account”) as well as some personal options related to using WordPress.'=>'Votre profil contient les informations à votre propos (votre « compte »), ainsi que quelques options liées à votre utilisation personnelle de WordPress.','You can Upload a theme manually if you have already downloaded its ZIP archive onto your computer (make sure it is from a trusted and original source). You can also do it the old-fashioned way and copy a downloaded theme’s folder via FTP into your %s directory.'=>'Vous pouvez téléverser un thème manuellement si vous avez déjà téléchargé son archive Zip sur votre ordinateur (assurez-vous que le thème vient d’une source de confiance). Vous pouvez également le faire à l’ancienne, c’est-à-dire passer par un client FTP pour mettre le répertoire du thème dans le répertoire %s.','Send Trackbacks — Trackbacks are a way to notify legacy blog systems that you’ve linked to them. Enter the URL(s) you want to send trackbacks. If you link to other WordPress sites they’ll be notified automatically using pingbacks, and this field is unnecessary.'=>'Envoyer des rétroliens — Un rétrolien est une manière explicite de notifier les anciens systèmes de blog que vous avez fait un lien vers eux. Saisissez les adresses web que vous voulez notifier. Si dans votre article vous faites des liens vers des sites WordPress, ils seront notifiés automatiquement à l’aide de pings, sans devoir passer par un rétrolien explicite.','Contributors can write and manage their posts but not publish posts or upload media files.'=>'Les contributeurs peuvent écrire et gérer leurs articles, mais ils ne peuvent pas publier les articles ou téléverser des fichiers média.','Administrators have access to all the administration features.'=>'Les administrateurs et les administratrices peuvent accéder à toutes les fonctionnalités de l’administration.','You can use the plugin file editor to make changes to any of your plugins’ individual PHP files. Be aware that if you make changes, plugins updates will overwrite your customizations.'=>'Vous pouvez utiliser l’éditeur de fichiers des extensions pour personnaliser n’importe quel fichier PHP de vos extensions. Soyez cependant conscient que si vous modifiez les fichiers, les mises à jour des extensions annuleront vos changements.','If you delete a link, it will be removed permanently, as Links do not have a Trash function yet.'=>'Si vous supprimez un lien, il sera supprimé définitivement, car les liens n’ont pas accès à la corbeille pour le moment.','You can add links here to be displayed on your site, usually using Widgets. By default, links to several sites in the WordPress community are included as examples.'=>'Vous pouvez ajouter ici les liens que vous voulez voir affichés sur votre site, généralement par le biais de widgets. Des liens vers de nombreux sites de la communauté WordPress sont inclus par défaut.','Slug — The “slug” is the URL-friendly version of the name. It is usually all lowercase and contains only letters, numbers, and hyphens.'=>'Slug — Le slug est la version normalisée du nom. Il ne contient généralement que des lettres minuscules non accentuées, des chiffres et des traits d’union.','You can also create posts with the Press This bookmarklet.'=>'Vous pouvez également créer des articles avec le bookmarklet Press This.','Do not forget to click on the Save Changes button when you are finished.'=>'N’oubliez pas de cliquer sur « Enregistrer les modifications » quand vous avez terminé.','You can customize the look of your site without touching any of your theme’s code by using a custom background. Your background can be an image or a color.'=>'Vous pouvez personnaliser l’apparence de votre site sans jamais toucher au code de votre thème, en utilisant un fond personnalisé. Votre fond peut être une image ou juste une couleur.','Editors can publish posts, manage posts as well as manage other people’s posts, etc.'=>'Les éditeurs ou éditrices peuvent publier et gérer leurs propres publication, ainsi que ceux des autres membres, etc.','Remember to click the Update Profile button when you are finished.'=>'Pensez bien à cliquer sur le bouton « Mettre à jour le profil » quand vous aurez terminé.','Required fields are indicated; the rest are optional. Profile information will only be displayed if your theme is set up to do so.'=>'Les champs nécessaires sont indiqués, les autres sont facultatifs. Les informations du profil ne sont affichées que si votre thème a été conçu pour les exploiter.','Your username cannot be changed, but you can use other fields to enter your real name or a nickname, and change which name to display on your posts.'=>'Votre identifiant ne peut être modifié, mais vous pouvez utiliser les autres champs pour saisir votre nom complet ou un pseudonyme, et changer ensuite le nom à afficher dans vos articles.','You can also moderate the comment from this screen using the Status box, where you can also change the timestamp of the comment.'=>'Vous pouvez également modérer le commentaire depuis cet écran, à l’aide de la section « État », d’où vous pouvez également changer l’horodatage du commentaire.','You can edit the information left in a comment if needed. This is often useful when you notice that a commenter has made a typographical error.'=>'Si besoin, vous pouvez modifier les informations laissées dans un commentaire. Par exemple, si un commentateur a fait une faute d’orthographe.','You can also control the display of your content in RSS feeds, including the maximum number of posts to display and whether to show full text or an excerpt. Learn more about feeds.'=>'Vous pouvez également contrôler l’affichage de votre contenu dans les flux RSS, comme le nombre maximum d’entrées à afficher, s’il faut afficher l’article en entier ou juste un résumé. En savoir plus sur les flux.','This screen contains the settings that affect the display of your content.'=>'Cet écran présente les réglages qui influent sur l’affichage de votre contenu.','UTC means Coordinated Universal Time.'=>'UTC signifie « Temps universel coordonné ».','The fields on this screen determine some of the basics of your site setup.'=>'Les champs de cet écran déterminent certains des réglages de base de votre site.','You must click the Save Changes button at the bottom of the screen for new settings to take effect.'=>'Vous devez cliquer sur « Enregistrer les modifications » en bas de l’écran pour que les nouveaux réglages prennent effet.','The boxes for link name, web address, and description have fixed positions, while the others may be repositioned using drag and drop. You can also hide boxes you do not use in the Screen Options tab, or minimize boxes by clicking on the title bar of the box.'=>'Les sections pour le nom, l’adresse web et la description sont fixes, tandis que les autres peuvent être repositionnées par glisser/déposer. Vous pouvez également masquer les sections que vous n’utilisez pas via l’onglet « Options de l’écran », et fermer les sections en cliquant sur leur barre de titre.','Your themes are all up to date.'=>'Vos thèmes sont tous à jour.','Your plugins are all up to date.'=>'Vos extensions sont toutes à jour.','While your site is being updated, it will be in maintenance mode. As soon as your updates are complete, this mode will be deactivated.'=>'Durant le processus de mise à jour, votre site sera mis en mode de maintenance. Dès que le processus sera achevé, ce mode sera désactivé.','An updated version of WordPress is available.'=>'Une nouvelle version de WordPress est disponible.','You have the latest version of WordPress.'=>'Vous avez la dernière version de WordPress.','Function Name…'=>'Nom de la fonction…','Activate Plugin & Run Importer'=>'Activer l’extension & lancer l’outil d’importation','You can add or edit links on this screen by entering information in each of the boxes. Only the link’s web address and name (the text you want to display on your site as the link) are required fields.'=>'Vous pouvez ajouter ou modifier des liens sur cet écran, en saisissant dans chacune des sections. Seuls sont nécessaires les champs « Adresse web » et « Nom » (le texte que vous voulez voir affiché sur votre site pour cette adresse).','Categories can be selectively converted to tags using the category to tag converter.'=>'Les catégories peuvent être converties de manière sélective en étiquettes via le convertisseur catégories vers étiquettes.','This screen lists links to plugins to import data from blogging/content management platforms. Choose the platform you want to import from, and click Install Now when you are prompted in the popup window. If your platform is not listed, click the link to search the plugin directory for other importer plugins to see if there is one for your platform.'=>'Cet écran liste les liens vers les extensions servant à importer des données en provenance d’autres plateformes de blogs ou gestionnaires de contenus. Choisissez la plateforme d’origine, et cliquez sur « Installer maintenant » dans la fenêtre qui s’affiche. Si vous ne trouvez pas votre plateforme, cliquez sur le lien « Recherche dans le répertoire officiel » et lancez une recherche - peut-être qu’une autre extension répondra à vos attentes.','Once generated, your WXR file can be imported by another WordPress site or by another blogging platform able to access this format.'=>'Une fois généré, le fichier WXR peut être importé dans une autre installation WordPress, ou une autre plateforme de blog capable de lire ce format.','Choose a plugin to edit from the dropdown menu and click the Select button. Click once on any file name to load it in the editor, and make your changes. Do not forget to save your changes (Update File) when you are finished.'=>'Choisissez une extension à modifier dans le menu déroulant et cliquez sur le bouton « Sélectionner ». Cliquez une fois sur n’importe quel nom de fichier pour le charger dans l’éditeur, puis faites vos modifications. N’oubliez pas d’enregistrer vos modifications (bouton « Mettre à jour le fichier ») quand vous aurez terminé.','You can customize the display of this screen using the Screen Options tab and/or the dropdown filters above the links table.'=>'Vous pouvez personnaliser l’affichage de cet écran en utilisant les réglages d’affichage et/ou le filtre déroulant présent au-dessous du tableau de liens.','Most of the time, plugins play nicely with the core of WordPress and with other plugins. Sometimes, though, a plugin’s code will get in the way of another plugin, causing compatibility issues. If your site starts doing strange things, this may be the problem. Try deactivating all your plugins and re-activating them in various combinations until you isolate which one(s) caused the issue.'=>'La plupart du temps, les extensions fonctionnent comme il le faut, tant avec WordPress qu’entre elles. Mais parfois, les ajouts d’une extension peuvent empiéter sur celles d’une autre, ce qui provoque une incompatibilité. Si votre site réagit bizarrement, le problème vient peut-être de là. Essayez de désactiver toutes les extensions, puis de les réactiver une à une pour trouver celle(s) en cause.','Enabling Accessibility Mode, via Screen Options, allows you to use Add and Edit buttons instead of using drag and drop.'=>'En activant le mode « Accessibilité », via les options d’écrans, vous autorisez l’utilisation des boutons « Ajouter » et « Modifier » à la place du glisser/déposer.','Widgets may be used multiple times. You can give each widget a title, to display on your site, but it’s not required.'=>'Les widgets peuvent être utilisés à plusieurs reprises. Vous pouvez donner un titre pour chaque widget, afin de l’afficher sur votre site, mais ce n’est pas obligatoire.','Widgets are independent sections of content that can be placed into any widgetized area provided by your theme (commonly called sidebars). To populate your sidebars/widget areas with individual widgets, drag and drop the title bars into the desired area. By default, only the first widget area is expanded. To populate additional widget areas, click on their title bars to expand them.'=>'Les widgets sont des conteneurs de contenu indépendants, qui peuvent être placés dans n’importe quelle zone à widgets de votre thème (le plus souvent, la colonne latérale). Pour remplir les zones à widgets de votre colonne latérale, glissez/déposez les barres de titre dans la zone désirée. Par défaut, seule la première zone de widgets sera ouverte. Pour remplir les autres zones à widgets, cliquez sur leur barre de titre afin de les ouvrir.','Advice: Think very carefully about your site crashing if you are live-editing the theme currently in use.'=>'Conseil : gardez bien en tête que si vous modifiez le thème actuellement utilisé, vos visiteurs pourraient avoir une vision déroutante de votre site.','After typing in your edits, click Update File.'=>'Après avoir fait vos modifications, cliquez sur « Mettre à jour le fichier ».','Begin by choosing a theme to edit from the dropdown menu and clicking the Select button. A list then appears of the theme’s template files. Clicking once on any file name causes the file to appear in the large Editor box.'=>'Commencez par choisir un thème à modifier via le menu déroulant, et cliquez sur « Sélectionner ». Une liste apparaîtra ensuite avec tous les fichiers modèles. En cliquant sur n’importe lequel de ces fichiers, vous verrez son contenu apparaître dans l’éditeur.','You can use the theme file editor to edit the individual CSS and PHP files which make up your theme.'=>'Vous pouvez utiliser l’éditeur de fichiers des thèmes pour modifier les fichiers CSS et PHP qui composent votre thème.','(no parent)'=>'(pas de parent)','Template — Some themes have custom templates you can use for certain pages that might have additional features or custom layouts. If so, you’ll see them in this dropdown menu.'=>'Modèle — Certains thèmes utilisent des modèles spéciaux que vous pouvez appliquer à pages des pages précises, avec des fonctionnalités supplémentaires ou une mise en page qui leur est propre. Si c’est le cas, vous les verrez dans ce menu déroulant.','Parent — You can arrange your pages in hierarchies. For example, you could have an “About” page that has “Life Story” and “My Dog” pages under it. There are no limits to how many levels you can nest pages.'=>'Parent — Vous pouvez arranger vos pages en hiérarchies. Par exemple, vous pourriez avoir une page « À propos », avec comme sous-pages « Ma vie » et « Mon œuvre ». Il n’y a pas de limite à la profondeur des sous-pages.','All updates have been completed.'=>'Toutes les mises à jour sont terminées.','You can change the display of this screen using the Screen Options tab to set how many items are displayed per screen and to display/hide columns in the table.'=>'Vous pouvez modifier l’affichage de cet écran via l’onglet « Options de l’écran », afin de définir le nombre d’éléments à afficher par écran, et afficher/masquer les colonnes du tableau.','Description — The description is not prominent by default; however, some themes may display it.'=>'Description — La description n’est pas très utilisée par défaut, cependant de plus en plus de thèmes l’affichent.','Name — The name is how it appears on your site.'=>'Nom — Le nom est utilisé un peu partout sur votre site.','When adding a new tag on this screen, you’ll fill in the following fields:'=>'Quand vous ajoutez une nouvelle étiquette via cet écran, vous devez remplir les champs suivants :','When adding a new category on this screen, you’ll fill in the following fields:'=>'Quand vous ajoutez une nouvelle catégorie via cet écran, vous devez remplir les champs suivants :','What’s the difference between categories and tags? Normally, tags are ad-hoc keywords that identify important information in your post (names, subjects, etc) that may or may not recur in other posts, while categories are pre-determined sections. If you think of your site like a book, the categories are like the Table of Contents and the tags are like the terms in the index.'=>'Quelle est la différence entre les catégories et les étiquettes ? Normalement, les étiquettes identifient les informations importantes dans votre article (noms, sujets, etc.) qui seraient susceptibles de revenir dans d’autres articles, ou pas. De leur côté, les catégories ont des sections prédéterminées. Si vous voyez votre site comme un livre, alors les catégories sont la table des matières, et les étiquettes forment l’index.','You can use categories to define sections of your site and group related posts. The default category is “Uncategorized” until you change it in your writing settings.'=>'Vous pouvez utiliser les catégories pour donner des sections à votre site, et grouper les articles connexes. La catégorie par défaut est « Non classé » ; vous pouvez la modifier dans vos options d’écriture.','You need JavaScript to choose a part of the image.'=>'Vous avez besoin de la fonctionnalité JavaScript de votre navigateur web pour choisir une partie de l’image.','Crop Header Image'=>'Recadrer l’image d’entête','Image Upload Error'=>'Erreur lors du téléversement de l’image','Text Color'=>'Couleur du texte','Restore Original Header Image'=>'Rétablir l’image d’entête d’origine','This will restore the original header image. You will not be able to restore any customizations.'=>'Ceci remettra en place l’image d’entête d’origine. Il ne vous sera pas possible de récupérer vos personnalisations.','Reset Image'=>'Remettre l’image d’origine','Remove Header Image'=>'Retirer l’image d’entête','This will remove the header image. You will not be able to restore any customizations.'=>'Ceci retirera l’image d’entête. Il ne vous sera pas possible de rétablir vos personnalisations.','Default Images'=>'Images par défaut','Delete this comment permanently'=>'Supprimer définitivement ce commentaire','Restore this comment from the Trash'=>'Récupérer ce commentaire depuis la corbeille','Allow comments'=>'Autoriser les commentaires.','Discussion — You can turn comments and pings on or off, and if there are comments on the post, you can see them here and moderate them.'=>'Commentaires — Vous pouvez activer ou désactiver les commentaires et pings, et si votre article reçoit des commentaires, vous pourrez les voir ici et les modérer.','%s — This allows you to associate an image with your post without inserting it. This is usually useful only if your theme makes use of the image as a post thumbnail on the home page, a custom header, etc.'=>'%s – Vous pouvez associer une image à votre publication, sans pour autant l’y insérer. Cela ne sert vraiment que si votre thème fait usage de cette fonctionnalité, sous la forme d’une miniature pour la page d’accueil, d’un entête personnalisé, etc.','Title — Enter a title for your post. After you enter a title, you’ll see the permalink below, which you can edit.'=>'Titre — Saisissez un titre pour votre article. Après avoir saisi le titre, un permalien s’affichera en dessous, que vous pourrez modifier à loisir.','Hovering over a row in the posts list will display action links that allow you to manage your post. You can perform the following actions:'=>'Passer la souris au-dessus d’une ligne de la liste des publications affichera des liens vous permettant de gérer la publication. Vous pouvez lancer les actions suivantes :','You can refine the list to show only posts in a specific category or from a specific month by using the dropdown menus above the posts list. Click the Filter button after making your selection. You also can refine the list by clicking on the post author, category or tag in the posts list.'=>'Vous pouvez affiner la liste pour qu’elle n’affiche que les articles d’une catégorie spécifique ou d’un mois donné, à l’aide du menu déroulant situé au-dessus de la liste. Cliquez sur le bouton « Filtrer » après avoir fait votre choix. Vous pouvez également affiner la liste en cliquant sur l’auteur ou autrice d’un article, sa catégorie ou une étiquette.','You can hide/display columns based on your needs and decide how many posts to list per screen using the Screen Options tab.'=>'Vous pouvez afficher/masquer les colonnes en fonction de vos besoins, et décider du nombre de publications à afficher par écran à l’aide de l’onglet « Options de l’écran ».','You can customize the display of this screen in a number of ways:'=>'Vous pouvez personnaliser l’affichage de cet écran de plusieurs manières :','Search installed plugins'=>'Rechercher des extensions installées','Your theme supports one menu. Select which menu you would like to use.'=>'Votre thème peut utiliser un menu. Sélectionnez le menu que vous voudriez utiliser.','Your theme does not support navigation menus or widgets.'=>'Le thème actuel n’accepte pas les menus de navigation ni les widgets.','Categories and Tags Converter'=>'Convertisseur de catégories et étiquettes','Most Recent'=>'Les plus récentes','Start date:'=>'Date de début :','Theme InstallerTag'=>'Étiquette','Plugin InstallerTag'=>'Étiquette','verbClear'=>'Effacer','commentMark as spam'=>'Marquer comme indésirable','Remove Background Image'=>'Retirer l’image d’arrière-plan','Comments on “%s”'=>'Commentaires sur « %s »','Show advanced menu properties'=>'Afficher les propriétés avancées du menu','You have version %1$s installed. Update to %2$s.'=>'Vous utilisez la version %1$s. Mettez à jour vers la version %2$s.','Enabled'=>'Activé','commentNot Spam'=>'Non indésirable','This will restore the original background image. You will not be able to restore any customizations.'=>'Ceci remettra en place l’image d’arrière-plan originale. Il ne vous sera pas possible de récupérer vos personnalisations.','WordPress Blog'=>'Blog WordPress','Remove Users from Site'=>'Supprimer des comptes de ce site','— No role for this site —'=>'— Aucun rôle sur ce site —','New WordPress Site'=>'Nouveau site WordPress','My Site'=>'Mon site','Sorry, you are not allowed to create posts or drafts on this site.'=>'Désolé, vous n’avez pas l’autorisation de créer des articles ou des brouillons sur ce site.','Sorry, you are not allowed to create pages on this site.'=>'Désolé, vous n’avez pas l’autorisation de créer des pages sur ce site.','Custom site suspended message.'=>'Message personnalisé de site suspendu.','Custom site inactive message.'=>'Message personnalisé de site inactif.','Custom site deleted message.'=>'Message personnalisé de site supprimé.','If you have posts or comments in another system, WordPress can import those into this site. To get started, choose a system to import from below:'=>'Si vous avez des articles ou des commentaires dans un autre système de site, WordPress peut les importer dans votre site actuel. Pour commencer, choisissez un système d’origine ci-dessous :','No items.'=>'Aucune entrée.','To use a subdomain configuration, you must have a wildcard entry in your DNS. This usually means adding a %s hostname record pointing at your web server in your DNS configuration tool.'=>'Pour utiliser la configuration en sous-domaine, il vous faut ajouter un enregistrement générique (joker) à vos enregistrements DNS. Cela signifie généralement ajouter un hôte %s pointant vers votre serveur dans votre outil de configuration DNS.','The installer attempted to contact a random hostname (%s) on your domain.'=>'L’installateur a tenté de contacter un nom d’hôte au hasard (%s) sur votre domaine.','The menu item has been successfully deleted.'=>'L’élément du menu a bien été supprimé.','Please provide a custom field name.'=>'Veuillez saisir un nom pour le champ personnalisé.','Display Options'=>'Options d’affichage','Remove Image'=>'Retirer l’image','Other users have been removed.'=>'Les autres comptes ont été supprimés.','You cannot remove the current user.'=>'Vous ne pouvez pas supprimer le compte actuellement utilisé.','There are no valid users selected for removal.'=>'Aucun compte valide n’est sélectionné pour la suppression.','Confirm Removal'=>'Confirmer cette action','You have specified these users for removal:'=>'Vous avez choisi de supprimer ces comptes :','User deletion is not allowed from this screen.'=>'La suppression d’un compte n’est pas autorisée depuis cet écran.','%s updated successfully.'=>'%s a bien été mis à jour.','No thanks, do not remind me again'=>'Non, ne pas me relancer à ce sujet','Yes, take me to my profile page'=>'Oui, je veux aller sur mon profil maintenant','Your chosen password.'=>'Le mot de passe que vous avez choisi.','Sorry, you are not allowed to restore this item from the Trash.'=>'Désolé, vous n’avez pas l’autorisation de récupérer cet élément depuis la corbeille.','Sorry, you are not allowed to move this item to the Trash.'=>'Désolé, vous n’avez pas l’autorisation de déplacer cet élément dans la corbeille.','%s comment restored from the Trash.'=>'%s commentaire récupéré depuis la corbeille.' . "\0" . '%s commentaires récupérés depuis la corbeille.','%s comment moved to the Trash.'=>'%s commentaire déplacé dans la corbeille.' . "\0" . '%s commentaires déplacés dans la corbeille.','The following themes have new versions available. Check the ones you want to update and then click “Update Themes”.'=>'Les thèmes suivants disposent d’une nouvelle version. Cochez ceux que vous voulez mettre à jour, puis cliquez sur « Mettre à jour les thèmes ».','That user is already a member of this site.'=>'Ce compte est déjà membre de ce site.','User has been added to your site.'=>'Le compte a été ajouté à votre site.','Invitation email sent to user. A confirmation link must be clicked for them to be added to your site.'=>'L’invitation a été envoyée à l’adresse e-mail liée au compte. La personne concernée devra cliquer sur un lien de confirmation pour être ajoutée à votre site.','The following plugins have new versions available. Check the ones you want to update and then click “Update Plugins”.'=>'Les extensions suivantes disposent d’une nouvelle version. Cochez celles que vous voulez mettre à jour, puis cliquez sur « Mettre à jour les extensions ».','This will remove the background image. You will not be able to restore any customizations.'=>'Ceci supprimera l’image d’arrière-plan. Il ne vous sera pas possible de rétablir vos personnalisations.','Only the active theme is available to you. Contact the %s administrator for information about accessing additional themes.'=>'Vous n’avez accès qu’au thème déjà actif. Contactez l’administrateur ou l’administratrice de %s pour obtenir des informations sur l’accès à d’autres thèmes.','Tag Template'=>'Modèle pour étiquette','Author Template'=>'Modèle pour les auteurs/autrices','Visual Editor Stylesheet'=>'Feuille de style de l’éditeur visuel','Page saved.'=>'Page enregistrée.','More information about %s'=>'Plus d’informations à propos de %s','Grant this user super admin privileges for the Network.'=>'Donner les privilèges de super-admin à ce compte pour le réseau.','This user has super admin privileges.'=>'Ce compte possède les privilèges de super-admin.','Important:'=>'Important :','Update to version %s'=>'Mettre à jour vers la version %s','Error: "Table Prefix" can only contain numbers, letters, and underscores.'=>'Erreur : le préfixe de table ne doit contenir que des chiffres, des lettres ou le caractère tiret bas.','Usernames cannot be changed.'=>'Les identifiants ne peuvent pas être modifiés.','items'=>'éléments','The menu has been successfully deleted.'=>'Le menu a bien été supprimé.','Site visibility'=>'Visibilité du site','CSS Classes (optional)'=>'Classes CSS (facultatives)','Link Target'=>'Cible du lien','Save Menu'=>'Enregistrer le menu','Updating Theme %1$s (%2$d/%3$d)'=>'Mise à jour du thème %1$s (%2$d/%3$d)','You can still use your site but any subdomain you create may not be accessible. If you know your DNS is correct, ignore this message.'=>'Vous pouvez toujours utiliser votre site, mais tout sous-domaine créé pourrait ne pas être accessible. Si vous êtes sûr de votre configuration DNS, ignorez ce message.','This resulted in an error message: %s'=>'Cela a abouti à ce message d’erreur : %s','You must provide a valid email address.'=>'Vous devez saisir une adresse de e-mail valide.','The network already exists.'=>'Le réseau existe déjà.','You must provide a name for your network of sites.'=>'Vous devez fournir un nom pour votre réseau de sites.','You must provide a domain name.'=>'Vous devez fournir un nom de domaine.','Notice:'=>'Avertissement :','Get Shortlink'=>'Obtenir le lien court','The update of %s failed.'=>'La mise à jour de %s a échoué.','Updating Plugin %1$s (%2$d/%3$d)'=>'Mise à jour de l’extension %1$s (%2$d/%3$d)','The password you chose during installation.'=>'Le mot de passe que vous avez choisi pendant l’installation.','User already exists. Password inherited.'=>'Le compte existe déjà et a hérité du mot de passe.','WordPress updated successfully.'=>'WordPress a bien été mis à jour.','Update WordPress'=>'Mettre à jour WordPress','Update Plugins'=>'Mettre à jour les extensions','You cannot update because WordPress %2$s requires PHP version %3$s or higher and MySQL version %4$s or higher. You are running PHP version %5$s and MySQL version %6$s.'=>'Cette mise à jour ne peut être installée, car WordPress %2$s nécessite une version de PHP égale ou supérieure à %3$s, et une version de MySQL égale ou supérieure à %4$s. Votre hébergement utilise PHP version %5$s et MySQL version %6$s.','WordPress Updates'=>'Mises à jour de WordPress','Edit menu item'=>'Modifier un élément du menu','Go to Dashboard'=>'Aller sur le tableau de bord','Drop-in (%s)'=>'Avancée (%s)' . "\0" . 'Avancées (%s)','Must-Use (%s)'=>'Indispensable (%s)' . "\0" . 'Indispensables (%s)','Inactive:'=>'Inactif :','Yes, delete these files and data'=>'Oui, supprimer ces fichiers et données','Are you sure you want to delete these files and data?'=>'Confirmez-vous la suppression de ces fichiers et données ?','You are about to remove the following plugin:'=>'Vous êtes sur le point de supprimer l’extension suivante :','Delete Plugin'=>'Supprimer l’extension','This timezone does not observe daylight saving time.'=>'Ce fuseau horaire n’a pas d’heure d’été.','This timezone is currently in daylight saving time.'=>'Ce fuseau horaire est actuellement à l’heure d’été.','This address is used for admin purposes. If you change this, an email will be sent to your new address to confirm it. The new address will not become active until confirmed.'=>'Cette adresse est utilisée à des fins d’administration. Si vous la changez, vous recevrez un e-mail à la nouvelle adresse afin de la confirmer. La nouvelle adresse ne sera pas active tant que vous ne l’aurez pas confirmée.','View All'=>'Tout voir','Please enter a valid menu name.'=>'Veuillez saisir un nom de menu valide.','You cannot install because WordPress %2$s requires PHP version %3$s or higher and MySQL version %4$s or higher. You are running PHP version %5$s and MySQL version %6$s.'=>'Vous ne pouvez pas installer WordPress %2$s, car cette version nécessite une version de PHP égale ou supérieure à la %3$s, et une version de MySQL égale ou supérieure à la %4$s. Votre hébergement utilise PHP version %5$s et MySQL version %6$s.','Executed before Multisite is loaded.'=>'Exécuté avant que la fonctionnalité multisites ne soit chargée.','External object cache.'=>'Cache d’objet externe.','Custom maintenance message.'=>'Message personnalisé pour la maintenance.','Custom database error message.'=>'Message personnalisé pour l’erreur de base de données.','Custom database class.'=>'Classe personnalisée de connexion à la base de données.','Advanced caching plugin.'=>'Extension de cache avancée.','File is empty. Please upload something more substantial.'=>'Le fichier est vide. Veuillez téléverser quelque chose de plus substantiel.','This comment is already marked as spam.'=>'Ce commentaire est déjà marqué comme indésirable.','View Trash'=>'Voir la corbeille','This comment is already in the Trash.'=>'Ce commentaire est déjà marqué comme indésirable.','This comment is already approved.'=>'Ce commentaire est déjà approuvé.','This comment is currently in the Trash.'=>'Ce commentaire est actuellement dans la corbeille.','This comment is currently marked as spam.'=>'Ce commentaire est actuellement marqué comme indésirable.','This comment is currently approved.'=>'Ce commentaire est actuellement approuvé.','Moderate Comment'=>'Modérer le commentaire','Categories:'=>'Catégories :','Drag widgets here to remove them from the sidebar but keep their settings.'=>'Glissez ici les widgets que vous voulez retirer de la colonne latérale, tout en conservant leurs réglages actuels.','Available Widgets'=>'Widgets disponibles','Error in displaying the widget settings form.'=>'Une erreur est survenue lors de l’affichage du formulaire de réglage du widget.','Error while saving.'=>'Erreur lors de la sauvegarde.','Changes saved.'=>'Modifications enregistrées.','Save Widget'=>'Enregistrer le widget','Select both the sidebar for this widget and the position of the widget in that sidebar.'=>'Sélectionnez à la fois la colonne latérale pour ce widget, et la position du widget dans cette colonne latérale.','Widget %s'=>'Widget %s','Inactive Widgets'=>'Widgets désactivés','Change role to…'=>'Changer de rôle pour…','%1$s (%2$s)'=>'%1$s (%2$s)','Other users have been deleted.'=>'Les autres comptes ont été supprimés.','You cannot delete the current user.'=>'Vous ne pouvez pas supprimer le compte en cours d’utilisation.','Other user roles have been changed.'=>'Les rôles des autres comptes ont été modifiés.','The current user’s role must have user editing capabilities.'=>'Le compte actuel doit avoir un rôle lui permettant de modifier les permissions des comptes.','New user created.'=>'Le nouveau compte a été créé.','There are no valid users selected for deletion.'=>'Aucun compte valide n’est sélectionné pour la suppression.','Delete Users'=>'Supprimer des comptes','Skip Confirmation Email'=>'Passer la confirmation par e-mail','Invitation email sent to new user. A confirmation link must be clicked before their account is created.'=>'Envoi d’un message d’invitation au nouveau compte. Un lien de confirmation devra d’abord être cliqué avant la création du compte.','[%s] Joining Confirmation'=>'[%s] Confirmation d’inscription','Update User'=>'Mettre à jour le compte','Update Profile'=>'Mettre à jour le profil','Additional Capabilities'=>'Permissions supplémentaires','Type your new password again.'=>'Veuillez saisir une deuxième fois votre mot de passe.','New Password'=>'Nouveau mot de passe','Share a little biographical information to fill out your profile. This may be shown publicly.'=>'Donnez quelques informations biographiques pour remplir votre profil. Ceci peut être affiché publiquement.','Biographical Info'=>'Renseignements biographiques','About the user'=>'À propos du compte','About Yourself'=>'À propos de vous','Contact Info'=>'Informations de contact','Display name publicly as'=>'Nom à afficher publiquement','Nickname'=>'Pseudonyme','Last Name'=>'Nom','First Name'=>'Prénom','Enable keyboard shortcuts for comment moderation.'=>'Activer les raccourcis clavier pour la modération de commentaires.','Admin Color Scheme'=>'Couleurs de l’interface d’administration','Disable the visual editor when writing'=>'Désactiver l’éditeur visuel pour écrire','Visual Editor'=>'Éditeur visuel','Personal Options'=>'Options personnelles','User updated.'=>'Compte mis à jour.','Always use https when visiting the admin'=>'Toujours utiliser HTTPS lors de l’utilisation de l’administration','Use https'=>'Utiliser https','Edit user'=>'Modifier le compte','Media file restored from the Trash.'=>'Fichier média récupéré depuis la corbeille.','Media file moved to the Trash.'=>'Fichier média déplacé dans la corbeille.','Media file permanently deleted.'=>'Fichier média définitivement supprimé.','Sorry, you are not allowed to delete these items.'=>'Désolé, vous n’avez pas l’autorisation de supprimer ces éléments.','Your WordPress database is already up to date!'=>'Votre base de données WordPress est déjà à jour !','Installing theme from uploaded file: %s'=>'Installation du thème à partir du fichier téléversé : %s','Upload Theme'=>'Téléverser un thème','Installing Theme: %s'=>'Installation du thème : %s','Installing plugin from uploaded file: %s'=>'Installation de l’extension à partir du fichier téléversé : %s','Upload Plugin'=>'Téléverser une extension','Installing Plugin: %s'=>'Extension en cours d’installation : %s','Plugin failed to reactivate due to a fatal error.'=>'L’extension n’a pu être réactivée suite à une erreur fatale.','Plugin reactivated successfully.'=>'L’extension a bien été réactivée.','Plugin Reactivation'=>'Réactivation d’extension','Installation failed.'=>'Échec de l’installation','Compatibility with WordPress %s: Unknown'=>'Compatibilité avec WordPress %s : inconnue','Compatibility with WordPress %s: 100%% (according to its author)'=>'Compatibilité avec WordPress %s : 100%% (selon l’auteur ou l’autrice)','Hide hidden updates'=>'Masquer les mises à jour cachées','Show hidden updates'=>'Afficher les mises à jour cachées','Bring back this update'=>'Réafficher cette mise à jour','Hide this update'=>'Masquer cette mise à jour','Broken Themes'=>'Thèmes endommagés','You are about to delete this theme \'%s\' +%%s','Post Formats'=>'Format d’article','Full Width Template'=>'Modèle pleine largeur','Featured Images'=>'Images mises en avant','Featured Image Header'=>'Image d’entête mise en avant','It looks like you\'re using an old version of %s. For the best WordPress experience, please update your browser.'=>'Il semble que vous utilisez une vieille version de %s. Pour utiliser WordPress dans les meilleures conditions, veuillez mettre à jour votre navigateur.','It looks like you\'re using an insecure version of %s. Using an outdated browser makes your computer unsafe. For the best WordPress experience, please update your browser.'=>'Il semble que vous utilisez une version peu sûre de %s. Un navigateur dépassé met votre ordinateur en danger. Pour utiliser WordPress dans des conditions optimales, veuillez mettre à jour votre navigateur.','There are some invalid menu items. Please check or delete them.'=>'Certains éléments du menu ne sont pas valides. Veuillez les vérifier ou les effacer.','term nameName'=>'Nom','meta nameName'=>'Nom','theme nameName'=>'Nom','You can find additional themes for your site by using the Theme Browser/Installer on this screen, which will display themes from the WordPress Theme Directory. These themes are designed and developed by third parties, are available free of charge, and are compatible with the license WordPress uses.'=>'Vous pouvez trouver plus de thèmes pour votre site en utilisant le navigateur/installeur de thème sur cet écran, qui affiche les thèmes en provenance du dépôt de thèmes de WordPress.org. Ces thèmes sont conçus et développés par des tiers, sont gratuits et utilisent une licence compatible avec celle de WordPress.','If you would like to see more plugins to choose from, click on the “Add Plugin” button and you will be able to browse or search for additional plugins from the WordPress Plugin Directory. Plugins in the WordPress Plugin Directory are designed and developed by third parties, and are compatible with the license WordPress uses. Oh, and they are free!'=>'Si vous souhaitez choisir parmi plus d’extensions, cliquez sur le bouton « Ajouter une extension » et vous pourrez parcourir le répertoire d’extensions de WordPress.org, ou y lancer une recherche. Les extensions du répertoire sont conçues et développées par des tiers, et utilisent une licence compatible avec celle de WordPress. Et oui, elles sont gratuites !','The uploaded file exceeds the %s directive that was specified in the HTML form.'=>'La taille du fichier envoyé excède celle indiquée dans la directive %s du formulaire HTML.','External Libraries'=>'Bibliothèques tierces','Network Setup'=>'Création du réseau','Available Tools'=>'Outils disponibles','Translate this to be the equivalent of English Translators in your language for the credits page Translators sectionTranslators'=>'Traductrices & traducteurs','Every plugin and theme in WordPress.org’s directory is 100%% GPL or a similarly free and compatible license, so you can feel safe finding plugins and themes there. If you get a plugin or theme from another source, make sure to ask them if it’s GPL first. If they do not respect the WordPress license, it is not recommended to use them.'=>'Tous les thèmes et extensions disponibles sur le répertoire WordPress.org respectent à 100%% la licence GPL, ou une licence libre et compatible. Ainsi, vous pouvez en toute sûreté y rechercher des extensions et des thèmes. Si vous téléchargez une extension ou un thème en provenance d’une autre source, vérifiez bien que la licence GPL est respectée. Si cela n’est pas le cas, il vaut mieux ne pas l’utiliser.','WordPress grows when people like you tell their friends about it, and the thousands of businesses and services that are built on and around WordPress share that fact with their users. The WordPress community is flattered every time someone spreads the good word, just make sure to check out the WordPress Foundation trademark guidelines first.'=>'WordPress prend davantage d’ampleur à chaque fois que vous en parlez à vos amis et à chaque fois que les milliers de sociétés et services dans le monde bâtis à l’aide de ou autour de WordPress en font mention à leurs utilisateurs et utilisatrices. La communauté WordPress apprécie que vous vantiez les mérites de cet outil ; veillez simplement à respecter les conditions d’utilisation des marques déposées par la WordPress Foundation.','All Comments'=>'Tous les commentaires','Lead Developer'=>'Développeur principal','Cofounder, Project Lead'=>'Cofondateur, chef de projet','Core Contributors to WordPress %s'=>'Contributrices & contributeurs au cœur de WordPress %s','Project Leaders'=>'Chefs de projet','Credits'=>'Crédits','removing-widgetDeactivate'=>'Désactiver','Your browser is out of date!'=>'Votre navigateur est obsolète !','You are using an insecure browser!'=>'Vous utilisez un navigateur peu sûr !','Freedoms'=>'Libertés','You can use one of these cool headers or show a random one on each page.'=>'Vous pouvez choisir parmi ces entêtes, ou en afficher un aléatoirement à chaque chargement de page.','If you do not want to upload your own image, you can use one of these cool headers, or show a random one.'=>'Si vous ne voulez pas téléverser d’image, vous pouvez utiliser l’un de ces entêtes, ou en afficher un aléatoirement.','You can choose one of your previously uploaded headers, or show a random one.'=>'Vous pouvez choisir un entête parmi ceux que vous avez déjà téléversés, ou en afficher un aléatoirement.','Collapse Menu'=>'Replier le menu','Uploaded Images'=>'Images téléversées','Random: Show a different image on each page.'=>'Aléatoire : affiche une image différente sur chaque page.','You have specified this user for deletion:'=>'Vous avez choisi de supprimer ce compte :','%s Page Template'=>'Modèle de page %s','You cannot delete a plugin while it is active on the main site.'=>'Vous ne pouvez pas effacer une extension tant qu’elle est activée sur le site principal.','This plugin may be active on other sites in the network.'=>'Cette extension peut uniquement être activée sur l’ensemble des sites du réseau.','Default Post Format'=>'Format par défaut des articles','Any edits to files from this screen will be reflected on all sites in the network.'=>'Toute modification aux fichiers de cet écran affectera l’ensemble des sites du réseau.','This screen lists all the existing users for your site. Each user has one of five defined roles as set by the site admin: Site Administrator, Editor, Author, Contributor, or Subscriber. Users with roles other than Administrator will see fewer options in the dashboard navigation when they are logged in, based on their role.'=>'Cet écran liste tous les comptes actuels de votre site. Chaque compte a l’un des 5 rôles prédéfinis, tel qu’assigné par l’administrateur ou l’administratrice du site : administrateur/administratrice, éditeur/éditrice, auteur/autrice, contributeur/contributrice ou abonné/abonnée. Les comptes avec un rôle autre qu’administrateur ou administratrice verront moins d’options quand ils seront connectés, en fonction de leur rôle.','If you want to make changes but do not want them to be overwritten when the plugin is updated, you may be ready to think about writing your own plugin. For information on how to edit plugins, write your own from scratch, or just better understand their anatomy, check out the links below.'=>'Si vous voulez faire des modifications et ne pas les perdre à la prochaine mise à jour, cela signifie que vous êtes prêt à écrire votre propre extension. Pour obtenir des informations sur la manière de modifier une extension ou d’en créer une, ou simplement pour comprendre leur fonctionnement, suivez les liens ci-contre.','The boxes on your Dashboard screen are:'=>'Les sections de l’écran du tableau de bord sont :','sample-page'=>'page-d-exemple','Sample Page'=>'Page d’exemple','Retro (Generated)'=>'Rétro (généré)','You only have one theme enabled for this site right now. Visit the Network Admin to enable more themes.'=>'Vous n’avez qu’un thème activé sur ce site actuellement. Veuillez vous rendre sur la page d’administration du réseau pour activer plus de thèmes.','You only have one theme enabled for this site right now. Visit the Network Admin to enable or install more themes.'=>'Vous n’avez qu’un thème activé sur ce site actuellement. Veuillez vous rendre sur la page d’administration du réseau pour activer ou installer plus de thèmes.','Super admin privileges cannot be removed because this user has the network admin email.'=>'Les privilèges de super-admin ne peuvent pas être retirés, car ce compte est celui avec l’adresse e-mail administrative du réseau.','You only have one theme installed right now. Live a little! You can choose from over 1,000 free themes in the WordPress Theme Directory at any time: just click on the Install Themes tab above.'=>'Vous n’avez qu’un seul thème d’installé pour le moment. Faites vivre votre site ! Vous pouvez quand vous le voulez choisir parmi plus de 1 000 thèmes sur le dépôt de thèmes de WordPress.org : cliquez simplement sur l’onglet « Ajouter » ci-dessus.','One or more database tables are unavailable. To allow WordPress to attempt to repair these tables, press the “Repair Database” button. Repairing can take a while, so please be patient.'=>'Une ou plusieurs tables de votre base de données sont indisponibles. Pour autoriser WordPress à tenter de réparer ces tables, cliquez sur le bouton « Réparer la base de données ». La réparation peut prendre un certain temps, merci donc d’être patient.','Visual Editor RTL Stylesheet'=>'Feuille de style de l’éditeur visuel (lecture de droite à gauche)','This is a file in your current parent theme.'=>'Ceci est un fichier de votre thème parent actuel.','This child theme inherits templates from a parent theme, %s.'=>'Ce thème enfant hérite de certains modèles de son thème parent, %s.','Network Enable'=>'Activer sur le réseau','Your WordPress database has been successfully updated!'=>'La base de données de WordPress a bien été mise à jour !','Update Complete'=>'Mise à jour terminée','Update WordPress Database'=>'Mettre à jour la base de données de WordPress','The database update process may take a little while, so please be patient.'=>'Le processus de mise à jour peut prendre un certain temps, merci donc pour votre patience.','Database Update Required'=>'Mise à jour de la base de données nécessaire','No Update Required'=>'Aucune mise à jour nécessaire','WordPress › Update'=>'WordPress › Mise à jour','You are about to install WordPress %s in English (US). There is a chance this update will break your translation. You may prefer to wait for the localized version to be released.'=>'Vous êtes sur le point d’installer WordPress %s en anglais (US). Il se peut que cette mise à jour ne fonctionne pas avec la traduction de WordPress dont vous disposez. Vous devriez sans doute patienter, le temps que cette version soit officiellement traduite dans votre langue.','There is a new version of %1$s available. View version %4$s details. Automatic update is unavailable for this plugin.'=>'Une nouvelle version pour %1$s est disponible. Afficher les détails de la version %4$s. La mise à jour automatique n’est pas disponible pour cette extension.','Update Theme'=>'Mettre à jour le thème','Update Plugin'=>'Mettre à jour l’extension','Theme updated successfully.'=>'Le thème a bien été mis à jour.','Theme update failed.'=>'La mise à jour du thème a échoué.','Plugin updated successfully.'=>'L’extension a bien été mise à jour.','Plugin update failed.'=>'La mise à jour de l’extension a échoué.','Update package not available.'=>'Aucune archive de mise à jour disponible.','Date range:'=>'Date de création :','Authors:'=>'Auteurs/autrices :','This will contain all of your posts, pages, comments, custom fields, terms, navigation menus, and custom posts.'=>'Il contiendra tous vos articles, pages, commentaires, champs personnalisés, termes, menus de navigation et types de publications personnalisés.','All content'=>'Tout le contenu','Choose what to export'=>'Choisir les données à exporter','commentsMine (%s)'=>'Le mien (%s)' . "\0" . 'Les miens (%s)','%s — WordPress'=>'%s – WordPress','column nameIn Response To'=>'En réponse à','The Available Widgets section contains all the widgets you can choose from. Once you drag a widget into a sidebar, it will open to allow you to configure its settings. When you are happy with the widget settings, click the Save button and the widget will go live on your site. If you click Delete, it will remove the widget.'=>'La section « Widgets disponibles » contient tous les widgets que vous pouvez utiliser. Une fois le widget glissé dans la colonne latérale, il s’ouvrira pour vous permettre d’en modifier les réglages. Quand vos réglages vous satisfont, cliquez sur le bouton « Enregistrer » et le widget sera lancé sur votre site. Si vous cliquez sur « Supprimer », le widget sera retiré du site.','Remember to click Update to save metadata entered or changed.'=>'Pensez bien à cliquer sur le bouton « Mettre à jour » afin de conserver les métadonnées ajoutées ou modifiées.','Note that you crop the image by clicking on it (the Crop icon is already selected) and dragging the cropping frame to select the desired part. Then click Save to retain the cropping.'=>'Pour recadrer une image, cliquez sur l’icône Recadrer puis sélectionnez la zone à conserver en cliquant sur l’image et en faisant glisser le curseur de la souris. Ensuite, cliquez sur Enregistrer pour conserver votre modification.','For images only, you can click on Edit Image under the thumbnail to expand out an inline image editor with icons for cropping, rotating, or flipping the image as well as for undoing and redoing. The boxes on the right give you more options for scaling the image, for cropping it, and for cropping the thumbnail in a different way than you crop the original image. You can click on Help in those boxes to get more information.'=>'Pour les images (et seulement elles), vous pouvez cliquer sur « Modifier l’Image », sous la miniature, afin de faire apparaître un éditeur d’image, vous permettant de recadrer, d’appliquer une rotation ou d’inverser une image, ainsi que de défaire et refaire vos modifications. Les sections sur la droite vous donnent accès à d’autres options pour le changement d’échelle, le recadrage et même le recadrage de la miniature, qui peut être différent de celui de l’image originale. Cliquez sur le bouton « Aide » de ces sections pour obtenir plus d’informations.','This screen allows you to edit fields for metadata in a file within the media library.'=>'Cet écran vous permet de modifier les champs des métadonnées des fichiers dans la médiathèque.','Email or Username'=>'E-mail ou identifiant','Search installed themes'=>'Rechercher des thèmes installés','Please Note: Any customizations you have made to theme files will be lost. Please consider using child themes for modifications.'=>'Notez bien : toutes les personnalisations que vous pourriez avoir apportées aux fichiers des thèmes seront perdues. Pensez à utiliser des thèmes enfants pour vos modifications.','postsSticky (%s)'=>'Épinglé (%s)' . "\0" . 'Épinglés (%s)','Check again.'=>'Vérifier à nouveau.','Last checked on %1$s at %2$s.'=>'Dernière vérification le %1$s à %2$s.','Please select one or more plugins to update.'=>'Veuillez sélectionner une ou plusieurs extensions à mettre à jour.','Please select one or more themes to update.'=>'Veuillez sélectionner un ou plusieurs thèmes à mettre à jour.','The update process is starting. This process may take a while on some hosts, so please be patient.'=>'Le processus de mise à jour se lance. Il peut prendre un certain temps chez certains hébergeurs, merci pour votre patience.','Apply Filters'=>'Appliquer les filtres','Editor Style'=>'Éditeur de style','Sorry, you are not allowed to edit users.'=>'Désolé, vous n’avez pas l’autorisation de modifier les comptes.','To perform the requested action, WordPress needs to access your web server.'=>'Pour lancer la requête demandée, WordPress a besoin d’accéder à votre serveur web.','Current Page'=>'Page actuelle','No themes match your request.'=>'Aucun thème ne correspond à votre requête.','Search Sites'=>'Rechercher des sites','Create a New User'=>'Créer un nouveau compte','You have %1$s and %2$s.'=>'Vous avez %1$s et %2$s.','%s site'=>'%s site' . "\0" . '%s sites','%s user'=>'%s compte' . "\0" . '%s comptes','https://wordpress.org/news/feed/'=>'https://fr.wordpress.org/news/feed/','https://wordpress.org/news/'=>'https://wpfr.net/','(Signup has been disabled. Only members of this site can comment.)'=>'(L’inscription a été désactivée. Seuls les membres de ce site peuvent laisser un commentaire.)','There is a new version of %1$s available. View version %4$s details.'=>'Une nouvelle version pour %1$s est disponible. Afficher les détails de la version %4$s.','Go to Themes page'=>'Aller sur la page des thèmes','Go to WordPress Updates page'=>'Aller à la page des mises à jour de WordPress','Go to Plugins page'=>'Aller sur la page des extensions','Click Save Menu to make pending menu items public.'=>'Cliquez sur « Enregistrer le menu » pour rendre publics les éléments en attente.','Storage Space'=>'Espace disque','Create a New Site'=>'Créer un nouveau site','Images of exactly %1$d × %2$d pixels will be used as-is.'=>'Les images ayant pour taille exacte %1$d pixels par %2$d seront utilisées telles quelles.','Crop and Publish'=>'Recadrer et publier','XFN stands for XHTML Friends Network, which is optional. WordPress allows the generation of XFN attributes to show how you are related to the authors/owners of the site to which you are linking.'=>'XFN signifie XHTML Friends Network, c’est-à-dire Réseau XHTML d’Amis. Son usage est facultatif. WordPress permet de générer les attributs XFN de vos liens, afin d’indiquer votre relation avec l’auteur/autrice ou la personne qui est propriétaire de la page liée.','FTP Password'=>'Mot de passe FTP','FTP Username'=>'Identifiant FTP','FTP/SSH Password'=>'Mot de passe FTP/SSH','FTP/SSH Username'=>'Identifiant FTP/SSH','Many themes show some sidebar widgets by default until you edit your sidebars, but they are not automatically displayed in your sidebar management tool. After you make your first widget change, you can re-add the default widgets by adding them from the Available Widgets area.'=>'De nombreux thèmes affichent par défaut quelques widgets dans la colonne latérale, jusqu’à ce que vous la modifiez vous-mêmes. Ces widgets par défaut ne sont pas automatiquement affichés dans le gestionnaire de colonne latérale. Après avoir fait vos propres modifications de widgets, vous pouvez rajouter les widgets par défaut depuis la section « Widgets Disponibles ».','You can choose what’s displayed on the homepage of your site. It can be posts in reverse chronological order (classic blog), or a fixed/static page. To set a static homepage, you first need to create two Pages. One will become the homepage, and the other will be where your posts are displayed.'=>'Vous pouvez choisir ce qui est affiché en page d’accueil de votre site. Au choix, le mode « blog » classique (les articles dans l’ordre chronologique inverse) ou une page statique. Pour mettre en place une page statique, vous devez d’abord créer deux pages : la première servira de page d’accueil, la seconde affichera vos articles.','The Optional fields let you customize the “category” and “tag” base names that will appear in archive URLs. For example, the page listing all posts in the “Uncategorized” category could be /topics/uncategorized instead of /category/uncategorized.'=>'Les champs facultatifs, en bas de page, vous permettent de personnaliser les dénominations utilisées pour les chemins /category/ et /tag/ lors de l’affichage des archives. Par exemple, la page listant tous les articles de la catégorie « Non classé » pourrait se lire comme /sujet/non-classe/ plutôt que /categorie/non-classe/.','When you assign multiple categories or tags to a post, only one can show up in the permalink: the lowest numbered category. This applies if your custom structure includes %1$s or %2$s.'=>'Quand vous assignez un article à plusieurs catégories ou étiquettes, une seule apparaîtra dans le permalien : la catégorie avec l’identifiant numérique le plus bas. Idem pour les mots-clés. Cela s’applique si votre structure comprend %1$s ou %2$s.','If you pick an option other than Plain, your general URL path with structure tags (terms surrounded by %s) will also appear in the custom structure field and your path can be further modified there.'=>'Si vous choisissez une option autre que « Simple », la structure générale de vos liens, avec les balises de structure (encadrés par %s), apparaîtra dans le champ de « Structure personnalisée », d’où vous pourrez l’adapter à vos besoins précis.','If you want to remove the widget but save its setting for possible future use, just drag it into the Inactive Widgets area. You can add them back anytime from there. This is especially helpful when you switch to a theme with fewer or different widget areas.'=>'Si vous voulez retirer le widget, mais conserver ses réglages pour un possible usage futur, glissez-le simplement dans la zone « Widgets désactivés ». De là, vous pouvez les réajouter n’importe quand. C’est particulièrement utile quand vous passez à un thème avec moins de zones à widgets, ou des zones différentes.','To add a new user for your site, click the Add User button at the top of the screen or Add User in the Users menu section.'=>'Pour ajouter un nouveau compte à votre site, cliquez sur le bouton « Ajouter » en haut de l’écran, ou l’option « Ajouter » du menu « Comptes ».','You can set maximum sizes for images inserted into your written content; you can also insert an image as Full Size.'=>'Vous pouvez indiquer une taille maximale pour les images insérées dans votre contenu textuel. Vous pourrez insérer l’image dans sa taille d’origine.','Most themes show the site title at the top of every page, in the title bar of the browser, and as the identifying name for syndicated feeds. Many themes also show the tagline.'=>'La plupart des thèmes affichent le titre du site en haut de chaque page, dans la barre de titre du navigateur, et en tant qu’identifiant pour les flux de syndication. Le slogan est également utilisé par de nombreux thèmes.','Order — Pages are usually ordered alphabetically, but you can choose your own order by entering a number (1 for first, etc.) in this field.'=>'Ordre — Les pages sont généralement affichées par ordre alphabétique, mais vous pouvez saisir un nombre dans ce champ pour modifier l’ordre d’apparition : 1 pour premier, etc.','If you do not remember your credentials, you should contact your web host.'=>'Si vous ne vous souvenez pas de votre identifiant, vous devriez contacter votre hébergeur.','Please enter your FTP credentials to proceed.'=>'Veuillez saisir votre identifiant FTP pour continuer.','Please enter your FTP or SSH credentials to proceed.'=>'Veuillez saisir votre identifiant FTP ou SSH pour continuer.','Your profile contains information about you (your “account”) as well as some personal options related to using WordPress.'=>'Votre profil contient les informations à votre propos (votre « compte »), ainsi que quelques options liées à votre utilisation personnelle de WordPress.','You can Upload a theme manually if you have already downloaded its ZIP archive onto your computer (make sure it is from a trusted and original source). You can also do it the old-fashioned way and copy a downloaded theme’s folder via FTP into your %s directory.'=>'Vous pouvez téléverser un thème manuellement si vous avez déjà téléchargé son archive Zip sur votre ordinateur (assurez-vous que le thème vient d’une source de confiance). Vous pouvez également le faire à l’ancienne, c’est-à-dire passer par un client FTP pour mettre le répertoire du thème dans le répertoire %s.','Send Trackbacks — Trackbacks are a way to notify legacy blog systems that you’ve linked to them. Enter the URL(s) you want to send trackbacks. If you link to other WordPress sites they’ll be notified automatically using pingbacks, and this field is unnecessary.'=>'Envoyer des rétroliens — Un rétrolien est une manière explicite de notifier les anciens systèmes de blog que vous avez fait un lien vers eux. Saisissez les adresses web que vous voulez notifier. Si dans votre article vous faites des liens vers des sites WordPress, ils seront notifiés automatiquement à l’aide de pings, sans devoir passer par un rétrolien explicite.','Contributors can write and manage their posts but not publish posts or upload media files.'=>'Les contributeurs peuvent écrire et gérer leurs articles, mais ils ne peuvent pas publier les articles ou téléverser des fichiers média.','Administrators have access to all the administration features.'=>'Les administrateurs et les administratrices peuvent accéder à toutes les fonctionnalités de l’administration.','You can use the plugin file editor to make changes to any of your plugins’ individual PHP files. Be aware that if you make changes, plugins updates will overwrite your customizations.'=>'Vous pouvez utiliser l’éditeur de fichiers des extensions pour personnaliser n’importe quel fichier PHP de vos extensions. Soyez cependant conscient que si vous modifiez les fichiers, les mises à jour des extensions annuleront vos changements.','If you delete a link, it will be removed permanently, as Links do not have a Trash function yet.'=>'Si vous supprimez un lien, il sera supprimé définitivement, car les liens n’ont pas accès à la corbeille pour le moment.','You can add links here to be displayed on your site, usually using Widgets. By default, links to several sites in the WordPress community are included as examples.'=>'Vous pouvez ajouter ici les liens que vous voulez voir affichés sur votre site, généralement par le biais de widgets. Des liens vers de nombreux sites de la communauté WordPress sont inclus par défaut.','Slug — The “slug” is the URL-friendly version of the name. It is usually all lowercase and contains only letters, numbers, and hyphens.'=>'Slug — Le slug est la version normalisée du nom. Il ne contient généralement que des lettres minuscules non accentuées, des chiffres et des traits d’union.','You can also create posts with the Press This bookmarklet.'=>'Vous pouvez également créer des articles avec le bookmarklet Press This.','Do not forget to click on the Save Changes button when you are finished.'=>'N’oubliez pas de cliquer sur « Enregistrer les modifications » quand vous avez terminé.','You can customize the look of your site without touching any of your theme’s code by using a custom background. Your background can be an image or a color.'=>'Vous pouvez personnaliser l’apparence de votre site sans jamais toucher au code de votre thème, en utilisant un fond personnalisé. Votre fond peut être une image ou juste une couleur.','Editors can publish posts, manage posts as well as manage other people’s posts, etc.'=>'Les éditeurs ou éditrices peuvent publier et gérer leurs propres publication, ainsi que ceux des autres membres, etc.','Remember to click the Update Profile button when you are finished.'=>'Pensez bien à cliquer sur le bouton « Mettre à jour le profil » quand vous aurez terminé.','Required fields are indicated; the rest are optional. Profile information will only be displayed if your theme is set up to do so.'=>'Les champs nécessaires sont indiqués, les autres sont facultatifs. Les informations du profil ne sont affichées que si votre thème a été conçu pour les exploiter.','Your username cannot be changed, but you can use other fields to enter your real name or a nickname, and change which name to display on your posts.'=>'Votre identifiant ne peut être modifié, mais vous pouvez utiliser les autres champs pour saisir votre nom complet ou un pseudonyme, et changer ensuite le nom à afficher dans vos articles.','You can also moderate the comment from this screen using the Status box, where you can also change the timestamp of the comment.'=>'Vous pouvez également modérer le commentaire depuis cet écran, à l’aide de la section « État », d’où vous pouvez également changer l’horodatage du commentaire.','You can edit the information left in a comment if needed. This is often useful when you notice that a commenter has made a typographical error.'=>'Si besoin, vous pouvez modifier les informations laissées dans un commentaire. Par exemple, si un commentateur a fait une faute d’orthographe.','You can also control the display of your content in RSS feeds, including the maximum number of posts to display and whether to show full text or an excerpt. Learn more about feeds.'=>'Vous pouvez également contrôler l’affichage de votre contenu dans les flux RSS, comme le nombre maximum d’entrées à afficher, s’il faut afficher l’article en entier ou juste un résumé. En savoir plus sur les flux.','This screen contains the settings that affect the display of your content.'=>'Cet écran présente les réglages qui influent sur l’affichage de votre contenu.','UTC means Coordinated Universal Time.'=>'UTC signifie « Temps universel coordonné ».','The fields on this screen determine some of the basics of your site setup.'=>'Les champs de cet écran déterminent certains des réglages de base de votre site.','You must click the Save Changes button at the bottom of the screen for new settings to take effect.'=>'Vous devez cliquer sur « Enregistrer les modifications » en bas de l’écran pour que les nouveaux réglages prennent effet.','The boxes for link name, web address, and description have fixed positions, while the others may be repositioned using drag and drop. You can also hide boxes you do not use in the Screen Options tab, or minimize boxes by clicking on the title bar of the box.'=>'Les sections pour le nom, l’adresse web et la description sont fixes, tandis que les autres peuvent être repositionnées par glisser/déposer. Vous pouvez également masquer les sections que vous n’utilisez pas via l’onglet « Options de l’écran », et fermer les sections en cliquant sur leur barre de titre.','Your themes are all up to date.'=>'Vos thèmes sont tous à jour.','Your plugins are all up to date.'=>'Vos extensions sont toutes à jour.','While your site is being updated, it will be in maintenance mode. As soon as your updates are complete, this mode will be deactivated.'=>'Durant le processus de mise à jour, votre site sera mis en mode de maintenance. Dès que le processus sera achevé, ce mode sera désactivé.','An updated version of WordPress is available.'=>'Une nouvelle version de WordPress est disponible.','You have the latest version of WordPress.'=>'Vous avez la dernière version de WordPress.','Function Name…'=>'Nom de la fonction…','Activate Plugin & Run Importer'=>'Activer l’extension & lancer l’outil d’importation','You can add or edit links on this screen by entering information in each of the boxes. Only the link’s web address and name (the text you want to display on your site as the link) are required fields.'=>'Vous pouvez ajouter ou modifier des liens sur cet écran, en saisissant dans chacune des sections. Seuls sont nécessaires les champs « Adresse web » et « Nom » (le texte que vous voulez voir affiché sur votre site pour cette adresse).','Categories can be selectively converted to tags using the category to tag converter.'=>'Les catégories peuvent être converties de manière sélective en étiquettes via le convertisseur catégories vers étiquettes.','This screen lists links to plugins to import data from blogging/content management platforms. Choose the platform you want to import from, and click Install Now when you are prompted in the popup window. If your platform is not listed, click the link to search the plugin directory for other importer plugins to see if there is one for your platform.'=>'Cet écran liste les liens vers les extensions servant à importer des données en provenance d’autres plateformes de blogs ou gestionnaires de contenus. Choisissez la plateforme d’origine, et cliquez sur « Installer maintenant » dans la fenêtre qui s’affiche. Si vous ne trouvez pas votre plateforme, cliquez sur le lien « Recherche dans le répertoire officiel » et lancez une recherche - peut-être qu’une autre extension répondra à vos attentes.','Once generated, your WXR file can be imported by another WordPress site or by another blogging platform able to access this format.'=>'Une fois généré, le fichier WXR peut être importé dans une autre installation WordPress, ou une autre plateforme de blog capable de lire ce format.','Choose a plugin to edit from the dropdown menu and click the Select button. Click once on any file name to load it in the editor, and make your changes. Do not forget to save your changes (Update File) when you are finished.'=>'Choisissez une extension à modifier dans le menu déroulant et cliquez sur le bouton « Sélectionner ». Cliquez une fois sur n’importe quel nom de fichier pour le charger dans l’éditeur, puis faites vos modifications. N’oubliez pas d’enregistrer vos modifications (bouton « Mettre à jour le fichier ») quand vous aurez terminé.','You can customize the display of this screen using the Screen Options tab and/or the dropdown filters above the links table.'=>'Vous pouvez personnaliser l’affichage de cet écran en utilisant les réglages d’affichage et/ou le filtre déroulant présent au-dessous du tableau de liens.','Most of the time, plugins play nicely with the core of WordPress and with other plugins. Sometimes, though, a plugin’s code will get in the way of another plugin, causing compatibility issues. If your site starts doing strange things, this may be the problem. Try deactivating all your plugins and re-activating them in various combinations until you isolate which one(s) caused the issue.'=>'La plupart du temps, les extensions fonctionnent comme il le faut, tant avec WordPress qu’entre elles. Mais parfois, les ajouts d’une extension peuvent empiéter sur celles d’une autre, ce qui provoque une incompatibilité. Si votre site réagit bizarrement, le problème vient peut-être de là. Essayez de désactiver toutes les extensions, puis de les réactiver une à une pour trouver celle(s) en cause.','Enabling Accessibility Mode, via Screen Options, allows you to use Add and Edit buttons instead of using drag and drop.'=>'En activant le mode « Accessibilité », via les options d’écrans, vous autorisez l’utilisation des boutons « Ajouter » et « Modifier » à la place du glisser/déposer.','Widgets may be used multiple times. You can give each widget a title, to display on your site, but it’s not required.'=>'Les widgets peuvent être utilisés à plusieurs reprises. Vous pouvez donner un titre pour chaque widget, afin de l’afficher sur votre site, mais ce n’est pas obligatoire.','Widgets are independent sections of content that can be placed into any widgetized area provided by your theme (commonly called sidebars). To populate your sidebars/widget areas with individual widgets, drag and drop the title bars into the desired area. By default, only the first widget area is expanded. To populate additional widget areas, click on their title bars to expand them.'=>'Les widgets sont des conteneurs de contenu indépendants, qui peuvent être placés dans n’importe quelle zone à widgets de votre thème (le plus souvent, la colonne latérale). Pour remplir les zones à widgets de votre colonne latérale, glissez/déposez les barres de titre dans la zone désirée. Par défaut, seule la première zone de widgets sera ouverte. Pour remplir les autres zones à widgets, cliquez sur leur barre de titre afin de les ouvrir.','Advice: Think very carefully about your site crashing if you are live-editing the theme currently in use.'=>'Conseil : gardez bien en tête que si vous modifiez le thème actuellement utilisé, vos visiteurs pourraient avoir une vision déroutante de votre site.','After typing in your edits, click Update File.'=>'Après avoir fait vos modifications, cliquez sur « Mettre à jour le fichier ».','Begin by choosing a theme to edit from the dropdown menu and clicking the Select button. A list then appears of the theme’s template files. Clicking once on any file name causes the file to appear in the large Editor box.'=>'Commencez par choisir un thème à modifier via le menu déroulant, et cliquez sur « Sélectionner ». Une liste apparaîtra ensuite avec tous les fichiers modèles. En cliquant sur n’importe lequel de ces fichiers, vous verrez son contenu apparaître dans l’éditeur.','You can use the theme file editor to edit the individual CSS and PHP files which make up your theme.'=>'Vous pouvez utiliser l’éditeur de fichiers des thèmes pour modifier les fichiers CSS et PHP qui composent votre thème.','(no parent)'=>'(pas de parent)','Template — Some themes have custom templates you can use for certain pages that might have additional features or custom layouts. If so, you’ll see them in this dropdown menu.'=>'Modèle — Certains thèmes utilisent des modèles spéciaux que vous pouvez appliquer à pages des pages précises, avec des fonctionnalités supplémentaires ou une mise en page qui leur est propre. Si c’est le cas, vous les verrez dans ce menu déroulant.','Parent — You can arrange your pages in hierarchies. For example, you could have an “About” page that has “Life Story” and “My Dog” pages under it. There are no limits to how many levels you can nest pages.'=>'Parent — Vous pouvez arranger vos pages en hiérarchies. Par exemple, vous pourriez avoir une page « À propos », avec comme sous-pages « Ma vie » et « Mon œuvre ». Il n’y a pas de limite à la profondeur des sous-pages.','All updates have been completed.'=>'Toutes les mises à jour sont terminées.','You can change the display of this screen using the Screen Options tab to set how many items are displayed per screen and to display/hide columns in the table.'=>'Vous pouvez modifier l’affichage de cet écran via l’onglet « Options de l’écran », afin de définir le nombre d’éléments à afficher par écran, et afficher/masquer les colonnes du tableau.','Description — The description is not prominent by default; however, some themes may display it.'=>'Description — La description n’est pas très utilisée par défaut, cependant de plus en plus de thèmes l’affichent.','Name — The name is how it appears on your site.'=>'Nom — Le nom est utilisé un peu partout sur votre site.','When adding a new tag on this screen, you’ll fill in the following fields:'=>'Quand vous ajoutez une nouvelle étiquette via cet écran, vous devez remplir les champs suivants :','When adding a new category on this screen, you’ll fill in the following fields:'=>'Quand vous ajoutez une nouvelle catégorie via cet écran, vous devez remplir les champs suivants :','What’s the difference between categories and tags? Normally, tags are ad-hoc keywords that identify important information in your post (names, subjects, etc) that may or may not recur in other posts, while categories are pre-determined sections. If you think of your site like a book, the categories are like the Table of Contents and the tags are like the terms in the index.'=>'Quelle est la différence entre les catégories et les étiquettes ? Normalement, les étiquettes identifient les informations importantes dans votre article (noms, sujets, etc.) qui seraient susceptibles de revenir dans d’autres articles, ou pas. De leur côté, les catégories ont des sections prédéterminées. Si vous voyez votre site comme un livre, alors les catégories sont la table des matières, et les étiquettes forment l’index.','You can use categories to define sections of your site and group related posts. The default category is “Uncategorized” until you change it in your writing settings.'=>'Vous pouvez utiliser les catégories pour donner des sections à votre site, et grouper les articles connexes. La catégorie par défaut est « Non classé » ; vous pouvez la modifier dans vos options d’écriture.','You need JavaScript to choose a part of the image.'=>'Vous avez besoin de la fonctionnalité JavaScript de votre navigateur web pour choisir une partie de l’image.','Crop Header Image'=>'Recadrer l’image d’entête','Image Upload Error'=>'Erreur lors du téléversement de l’image','Text Color'=>'Couleur du texte','Restore Original Header Image'=>'Rétablir l’image d’entête d’origine','This will restore the original header image. You will not be able to restore any customizations.'=>'Ceci remettra en place l’image d’entête d’origine. Il ne vous sera pas possible de récupérer vos personnalisations.','Reset Image'=>'Remettre l’image d’origine','Remove Header Image'=>'Retirer l’image d’entête','This will remove the header image. You will not be able to restore any customizations.'=>'Ceci retirera l’image d’entête. Il ne vous sera pas possible de rétablir vos personnalisations.','Default Images'=>'Images par défaut','Delete this comment permanently'=>'Supprimer définitivement ce commentaire','Restore this comment from the Trash'=>'Récupérer ce commentaire depuis la corbeille','Allow comments'=>'Autoriser les commentaires.','Discussion — You can turn comments and pings on or off, and if there are comments on the post, you can see them here and moderate them.'=>'Commentaires — Vous pouvez activer ou désactiver les commentaires et pings, et si votre article reçoit des commentaires, vous pourrez les voir ici et les modérer.','%s — This allows you to associate an image with your post without inserting it. This is usually useful only if your theme makes use of the image as a post thumbnail on the home page, a custom header, etc.'=>'%s – Vous pouvez associer une image à votre publication, sans pour autant l’y insérer. Cela ne sert vraiment que si votre thème fait usage de cette fonctionnalité, sous la forme d’une miniature pour la page d’accueil, d’un entête personnalisé, etc.','Title — Enter a title for your post. After you enter a title, you’ll see the permalink below, which you can edit.'=>'Titre — Saisissez un titre pour votre article. Après avoir saisi le titre, un permalien s’affichera en dessous, que vous pourrez modifier à loisir.','Hovering over a row in the posts list will display action links that allow you to manage your post. You can perform the following actions:'=>'Passer la souris au-dessus d’une ligne de la liste des publications affichera des liens vous permettant de gérer la publication. Vous pouvez lancer les actions suivantes :','You can refine the list to show only posts in a specific category or from a specific month by using the dropdown menus above the posts list. Click the Filter button after making your selection. You also can refine the list by clicking on the post author, category or tag in the posts list.'=>'Vous pouvez affiner la liste pour qu’elle n’affiche que les articles d’une catégorie spécifique ou d’un mois donné, à l’aide du menu déroulant situé au-dessus de la liste. Cliquez sur le bouton « Filtrer » après avoir fait votre choix. Vous pouvez également affiner la liste en cliquant sur l’auteur ou autrice d’un article, sa catégorie ou une étiquette.','You can hide/display columns based on your needs and decide how many posts to list per screen using the Screen Options tab.'=>'Vous pouvez afficher/masquer les colonnes en fonction de vos besoins, et décider du nombre de publications à afficher par écran à l’aide de l’onglet « Options de l’écran ».','You can customize the display of this screen in a number of ways:'=>'Vous pouvez personnaliser l’affichage de cet écran de plusieurs manières :','Search installed plugins'=>'Rechercher des extensions installées','Your theme supports one menu. Select which menu you would like to use.'=>'Votre thème peut utiliser un menu. Sélectionnez le menu que vous voudriez utiliser.','Your theme does not support navigation menus or widgets.'=>'Le thème actuel n’accepte pas les menus de navigation ni les widgets.','Categories and Tags Converter'=>'Convertisseur de catégories et étiquettes','Most Recent'=>'Les plus récentes','Start date:'=>'Date de début :','Theme InstallerTag'=>'Étiquette','Plugin InstallerTag'=>'Étiquette','verbClear'=>'Effacer','commentMark as spam'=>'Marquer comme indésirable','Remove Background Image'=>'Retirer l’image d’arrière-plan','Comments on “%s”'=>'Commentaires sur « %s »','Show advanced menu properties'=>'Afficher les propriétés avancées du menu','You have version %1$s installed. Update to %2$s.'=>'Vous utilisez la version %1$s. Mettez à jour vers la version %2$s.','Enabled'=>'Activé','commentNot Spam'=>'Non indésirable','This will restore the original background image. You will not be able to restore any customizations.'=>'Ceci remettra en place l’image d’arrière-plan originale. Il ne vous sera pas possible de récupérer vos personnalisations.','WordPress Blog'=>'Blog WordPress','Remove Users from Site'=>'Supprimer des comptes de ce site','— No role for this site —'=>'— Aucun rôle sur ce site —','New WordPress Site'=>'Nouveau site WordPress','My Site'=>'Mon site','Sorry, you are not allowed to create posts or drafts on this site.'=>'Désolé, vous n’avez pas l’autorisation de créer des articles ou des brouillons sur ce site.','Sorry, you are not allowed to create pages on this site.'=>'Désolé, vous n’avez pas l’autorisation de créer des pages sur ce site.','Custom site suspended message.'=>'Message personnalisé de site suspendu.','Custom site inactive message.'=>'Message personnalisé de site inactif.','Custom site deleted message.'=>'Message personnalisé de site supprimé.','If you have posts or comments in another system, WordPress can import those into this site. To get started, choose a system to import from below:'=>'Si vous avez des articles ou des commentaires dans un autre système de site, WordPress peut les importer dans votre site actuel. Pour commencer, choisissez un système d’origine ci-dessous :','No items.'=>'Aucune entrée.','To use a subdomain configuration, you must have a wildcard entry in your DNS. This usually means adding a %s hostname record pointing at your web server in your DNS configuration tool.'=>'Pour utiliser la configuration en sous-domaine, il vous faut ajouter un enregistrement générique (joker) à vos enregistrements DNS. Cela signifie généralement ajouter un hôte %s pointant vers votre serveur dans votre outil de configuration DNS.','The installer attempted to contact a random hostname (%s) on your domain.'=>'L’installateur a tenté de contacter un nom d’hôte au hasard (%s) sur votre domaine.','The menu item has been successfully deleted.'=>'L’élément du menu a bien été supprimé.','Please provide a custom field name.'=>'Veuillez saisir un nom pour le champ personnalisé.','Display Options'=>'Options d’affichage','Remove Image'=>'Retirer l’image','Other users have been removed.'=>'Les autres comptes ont été supprimés.','You cannot remove the current user.'=>'Vous ne pouvez pas supprimer le compte actuellement utilisé.','There are no valid users selected for removal.'=>'Aucun compte valide n’est sélectionné pour la suppression.','Confirm Removal'=>'Confirmer cette action','You have specified these users for removal:'=>'Vous avez choisi de supprimer ces comptes :','User deletion is not allowed from this screen.'=>'La suppression d’un compte n’est pas autorisée depuis cet écran.','%s updated successfully.'=>'%s a bien été mis à jour.','No thanks, do not remind me again'=>'Non, ne pas me relancer à ce sujet','Yes, take me to my profile page'=>'Oui, je veux aller sur mon profil maintenant','Your chosen password.'=>'Le mot de passe que vous avez choisi.','Sorry, you are not allowed to restore this item from the Trash.'=>'Désolé, vous n’avez pas l’autorisation de récupérer cet élément depuis la corbeille.','Sorry, you are not allowed to move this item to the Trash.'=>'Désolé, vous n’avez pas l’autorisation de déplacer cet élément dans la corbeille.','%s comment restored from the Trash.'=>'%s commentaire récupéré depuis la corbeille.' . "\0" . '%s commentaires récupérés depuis la corbeille.','%s comment moved to the Trash.'=>'%s commentaire déplacé dans la corbeille.' . "\0" . '%s commentaires déplacés dans la corbeille.','The following themes have new versions available. Check the ones you want to update and then click “Update Themes”.'=>'Les thèmes suivants disposent d’une nouvelle version. Cochez ceux que vous voulez mettre à jour, puis cliquez sur « Mettre à jour les thèmes ».','That user is already a member of this site.'=>'Ce compte est déjà membre de ce site.','User has been added to your site.'=>'Le compte a été ajouté à votre site.','Invitation email sent to user. A confirmation link must be clicked for them to be added to your site.'=>'L’invitation a été envoyée à l’adresse e-mail liée au compte. La personne concernée devra cliquer sur un lien de confirmation pour être ajoutée à votre site.','The following plugins have new versions available. Check the ones you want to update and then click “Update Plugins”.'=>'Les extensions suivantes disposent d’une nouvelle version. Cochez celles que vous voulez mettre à jour, puis cliquez sur « Mettre à jour les extensions ».','This will remove the background image. You will not be able to restore any customizations.'=>'Ceci supprimera l’image d’arrière-plan. Il ne vous sera pas possible de rétablir vos personnalisations.','Only the active theme is available to you. Contact the %s administrator for information about accessing additional themes.'=>'Vous n’avez accès qu’au thème déjà actif. Contactez l’administrateur ou l’administratrice de %s pour obtenir des informations sur l’accès à d’autres thèmes.','Tag Template'=>'Modèle pour étiquette','Author Template'=>'Modèle pour les auteurs/autrices','Visual Editor Stylesheet'=>'Feuille de style de l’éditeur visuel','Page saved.'=>'Page enregistrée.','More information about %s'=>'Plus d’informations à propos de %s','Grant this user super admin privileges for the Network.'=>'Donner les privilèges de super-admin à ce compte pour le réseau.','This user has super admin privileges.'=>'Ce compte possède les privilèges de super-admin.','Important:'=>'Important :','Update to version %s'=>'Mettre à jour vers la version %s','Error: "Table Prefix" can only contain numbers, letters, and underscores.'=>'Erreur : le préfixe de table ne doit contenir que des chiffres, des lettres ou le caractère tiret bas.','Usernames cannot be changed.'=>'Les identifiants ne peuvent pas être modifiés.','items'=>'éléments','The menu has been successfully deleted.'=>'Le menu a bien été supprimé.','Site visibility'=>'Visibilité du site','CSS Classes (optional)'=>'Classes CSS (facultatives)','Link Target'=>'Cible du lien','Save Menu'=>'Enregistrer le menu','Updating Theme %1$s (%2$d/%3$d)'=>'Mise à jour du thème %1$s (%2$d/%3$d)','You can still use your site but any subdomain you create may not be accessible. If you know your DNS is correct, ignore this message.'=>'Vous pouvez toujours utiliser votre site, mais tout sous-domaine créé pourrait ne pas être accessible. Si vous êtes sûr de votre configuration DNS, ignorez ce message.','This resulted in an error message: %s'=>'Cela a abouti à ce message d’erreur : %s','You must provide a valid email address.'=>'Vous devez saisir une adresse de e-mail valide.','The network already exists.'=>'Le réseau existe déjà.','You must provide a name for your network of sites.'=>'Vous devez fournir un nom pour votre réseau de sites.','You must provide a domain name.'=>'Vous devez fournir un nom de domaine.','Notice:'=>'Avertissement :','Get Shortlink'=>'Obtenir le lien court','The update of %s failed.'=>'La mise à jour de %s a échoué.','Updating Plugin %1$s (%2$d/%3$d)'=>'Mise à jour de l’extension %1$s (%2$d/%3$d)','The password you chose during installation.'=>'Le mot de passe que vous avez choisi pendant l’installation.','User already exists. Password inherited.'=>'Le compte existe déjà et a hérité du mot de passe.','WordPress updated successfully.'=>'WordPress a bien été mis à jour.','Update WordPress'=>'Mettre à jour WordPress','Update Plugins'=>'Mettre à jour les extensions','You cannot update because WordPress %2$s requires PHP version %3$s or higher and MySQL version %4$s or higher. You are running PHP version %5$s and MySQL version %6$s.'=>'Cette mise à jour ne peut être installée, car WordPress %2$s nécessite une version de PHP égale ou supérieure à %3$s, et une version de MySQL égale ou supérieure à %4$s. Votre hébergement utilise PHP version %5$s et MySQL version %6$s.','WordPress Updates'=>'Mises à jour de WordPress','Edit menu item'=>'Modifier un élément du menu','Go to Dashboard'=>'Aller sur le tableau de bord','Drop-in (%s)'=>'Avancée (%s)' . "\0" . 'Avancées (%s)','Must-Use (%s)'=>'Indispensable (%s)' . "\0" . 'Indispensables (%s)','Inactive:'=>'Inactif :','Yes, delete these files and data'=>'Oui, supprimer ces fichiers et données','Are you sure you want to delete these files and data?'=>'Confirmez-vous la suppression de ces fichiers et données ?','You are about to remove the following plugin:'=>'Vous êtes sur le point de supprimer l’extension suivante :','Delete Plugin'=>'Supprimer l’extension','This timezone does not observe daylight saving time.'=>'Ce fuseau horaire n’a pas d’heure d’été.','This timezone is currently in daylight saving time.'=>'Ce fuseau horaire est actuellement à l’heure d’été.','This address is used for admin purposes. If you change this, an email will be sent to your new address to confirm it. The new address will not become active until confirmed.'=>'Cette adresse est utilisée à des fins d’administration. Si vous la changez, vous recevrez un e-mail à la nouvelle adresse afin de la confirmer. La nouvelle adresse ne sera pas active tant que vous ne l’aurez pas confirmée.','View All'=>'Tout voir','Please enter a valid menu name.'=>'Veuillez saisir un nom de menu valide.','You cannot install because WordPress %2$s requires PHP version %3$s or higher and MySQL version %4$s or higher. You are running PHP version %5$s and MySQL version %6$s.'=>'Vous ne pouvez pas installer WordPress %2$s, car cette version nécessite une version de PHP égale ou supérieure à la %3$s, et une version de MySQL égale ou supérieure à la %4$s. Votre hébergement utilise PHP version %5$s et MySQL version %6$s.','Executed before Multisite is loaded.'=>'Exécuté avant que la fonctionnalité multisites ne soit chargée.','External object cache.'=>'Cache d’objet externe.','Custom maintenance message.'=>'Message personnalisé pour la maintenance.','Custom database error message.'=>'Message personnalisé pour l’erreur de base de données.','Custom database class.'=>'Classe personnalisée de connexion à la base de données.','Advanced caching plugin.'=>'Extension de cache avancée.','File is empty. Please upload something more substantial.'=>'Le fichier est vide. Veuillez téléverser quelque chose de plus substantiel.','This comment is already marked as spam.'=>'Ce commentaire est déjà marqué comme indésirable.','View Trash'=>'Voir la corbeille','This comment is already in the Trash.'=>'Ce commentaire est déjà marqué comme indésirable.','This comment is already approved.'=>'Ce commentaire est déjà approuvé.','This comment is currently in the Trash.'=>'Ce commentaire est actuellement dans la corbeille.','This comment is currently marked as spam.'=>'Ce commentaire est actuellement marqué comme indésirable.','This comment is currently approved.'=>'Ce commentaire est actuellement approuvé.','Moderate Comment'=>'Modérer le commentaire','Categories:'=>'Catégories :','Drag widgets here to remove them from the sidebar but keep their settings.'=>'Glissez ici les widgets que vous voulez retirer de la colonne latérale, tout en conservant leurs réglages actuels.','Available Widgets'=>'Widgets disponibles','Error in displaying the widget settings form.'=>'Une erreur est survenue lors de l’affichage du formulaire de réglage du widget.','Error while saving.'=>'Erreur lors de la sauvegarde.','Changes saved.'=>'Modifications enregistrées.','Save Widget'=>'Enregistrer le widget','Select both the sidebar for this widget and the position of the widget in that sidebar.'=>'Sélectionnez à la fois la colonne latérale pour ce widget, et la position du widget dans cette colonne latérale.','Widget %s'=>'Widget %s','Inactive Widgets'=>'Widgets désactivés','Change role to…'=>'Changer de rôle pour…','%1$s (%2$s)'=>'%1$s (%2$s)','Other users have been deleted.'=>'Les autres comptes ont été supprimés.','You cannot delete the current user.'=>'Vous ne pouvez pas supprimer le compte en cours d’utilisation.','Other user roles have been changed.'=>'Les rôles des autres comptes ont été modifiés.','The current user’s role must have user editing capabilities.'=>'Le compte actuel doit avoir un rôle lui permettant de modifier les permissions des comptes.','New user created.'=>'Le nouveau compte a été créé.','There are no valid users selected for deletion.'=>'Aucun compte valide n’est sélectionné pour la suppression.','Delete Users'=>'Supprimer des comptes','Skip Confirmation Email'=>'Passer la confirmation par e-mail','Invitation email sent to new user. A confirmation link must be clicked before their account is created.'=>'Envoi d’un message d’invitation au nouveau compte. Un lien de confirmation devra d’abord être cliqué avant la création du compte.','[%s] Joining Confirmation'=>'[%s] Confirmation d’inscription','Update User'=>'Mettre à jour le compte','Update Profile'=>'Mettre à jour le profil','Additional Capabilities'=>'Permissions supplémentaires','Type your new password again.'=>'Veuillez saisir une deuxième fois votre mot de passe.','New Password'=>'Nouveau mot de passe','Share a little biographical information to fill out your profile. This may be shown publicly.'=>'Donnez quelques informations biographiques pour remplir votre profil. Ceci peut être affiché publiquement.','Biographical Info'=>'Renseignements biographiques','About the user'=>'À propos du compte','About Yourself'=>'À propos de vous','Contact Info'=>'Informations de contact','Display name publicly as'=>'Nom à afficher publiquement','Nickname'=>'Pseudonyme','Last Name'=>'Nom','First Name'=>'Prénom','Enable keyboard shortcuts for comment moderation.'=>'Activer les raccourcis clavier pour la modération de commentaires.','Admin Color Scheme'=>'Couleurs de l’interface d’administration','Disable the visual editor when writing'=>'Désactiver l’éditeur visuel pour écrire','Visual Editor'=>'Éditeur visuel','Personal Options'=>'Options personnelles','User updated.'=>'Compte mis à jour.','Always use https when visiting the admin'=>'Toujours utiliser HTTPS lors de l’utilisation de l’administration','Use https'=>'Utiliser https','Edit user'=>'Modifier le compte','Media file restored from the Trash.'=>'Fichier média récupéré depuis la corbeille.','Media file moved to the Trash.'=>'Fichier média déplacé dans la corbeille.','Media file permanently deleted.'=>'Fichier média définitivement supprimé.','Sorry, you are not allowed to delete these items.'=>'Désolé, vous n’avez pas l’autorisation de supprimer ces éléments.','Your WordPress database is already up to date!'=>'Votre base de données WordPress est déjà à jour !','Installing theme from uploaded file: %s'=>'Installation du thème à partir du fichier téléversé : %s','Upload Theme'=>'Téléverser un thème','Installing Theme: %s'=>'Installation du thème : %s','Installing plugin from uploaded file: %s'=>'Installation de l’extension à partir du fichier téléversé : %s','Upload Plugin'=>'Téléverser une extension','Installing Plugin: %s'=>'Extension en cours d’installation : %s','Plugin failed to reactivate due to a fatal error.'=>'L’extension n’a pu être réactivée suite à une erreur fatale.','Plugin reactivated successfully.'=>'L’extension a bien été réactivée.','Plugin Reactivation'=>'Réactivation d’extension','Installation failed.'=>'Échec de l’installation','Compatibility with WordPress %s: Unknown'=>'Compatibilité avec WordPress %s : inconnue','Compatibility with WordPress %s: 100%% (according to its author)'=>'Compatibilité avec WordPress %s : 100%% (selon l’auteur ou l’autrice)','Hide hidden updates'=>'Masquer les mises à jour cachées','Show hidden updates'=>'Afficher les mises à jour cachées','Bring back this update'=>'Réafficher cette mise à jour','Hide this update'=>'Masquer cette mise à jour','Broken Themes'=>'Thèmes endommagés','You are about to delete this theme \'%s\' \'Cancel\' to stop, \'OK\' to delete.'=>'Vous êtes sur le point de supprimer le thème « %s ». -« Annuler » pour arrêter, « OK » pour supprimer.','Theme deleted.'=>'Thème supprimé.','Select theme to edit:'=>'Sélectionnez le thème à modifier :','Edit Themes'=>'Modifier les thèmes','Tags:'=>'Étiquettes :','Compare Revisions of “%s”'=>'Comparer les révisions de « %s »','You cannot edit this item because it is in the Trash. Please restore it and try again.'=>'Vous ne pouvez pas modifier ce contenu, car il est dans la corbeille. Sortez-l’en, puis réessayez.','Sorry, you are not allowed to edit this item.'=>'Désolé, vous n’avez pas l’autorisation de modifier cet élément.','You attempted to edit an item that does not exist. Perhaps it was deleted?'=>'Vous tentez de modifier un contenu qui n’existe pas. Peut-être a-t-il été supprimé ?','No plugins found.'=>'Aucune extension trouvée.','Inactive (%s)'=>'Désactivée (%s)' . "\0" . 'Désactivées (%s)','Recently Active (%s)'=>'Récemment désactivée (%s)' . "\0" . 'Récemment désactivées (%s)','Active (%s)'=>'Activée (%s)' . "\0" . 'Activées (%s)','pluginsAll (%s)'=>'Toutes (%s)' . "\0" . 'Toutes (%s)','Clear List'=>'Vider la liste','Visit plugin site'=>'Aller sur le site de l’extension','Plugin could not be deleted due to an error: %s'=>'L’extension n’a pu être supprimée suite à une erreur fatale : %s','Plugin could not be activated because it triggered a fatal error.'=>'L’extension n’a pas pu être activée, car elle a déclenché une erreur fatale.','If something goes wrong with a plugin and you cannot use WordPress, delete or rename that file in the %s directory and it will be automatically deactivated.'=>'Si une extension ne fonctionne pas correctement et que vous ne pouvez plus utiliser WordPress, supprimez ou renommez son fichier dans le répertoire %s et elle sera automatiquement désactivée.','Plugins extend and expand the functionality of WordPress. Once a plugin is installed, you may activate it or deactivate it here.'=>'Les extensions étendent les fonctionnalités de WordPress. Une fois une extension installée, vous pouvez l’activer ou la désactiver ici.','No, return me to the plugin list'=>'Non, retourner à la liste des extensions','Yes, delete these files'=>'Oui, supprimer ces fichiers','Are you sure you want to delete these files?'=>'Confirmez-vous la suppression de ces fichiers ?','Plugin InstallerPopular'=>'Populaires','Plugin InstallerFeatured'=>'Mises en avant','Update File'=>'Mettre à jour le fichier','Documentation:'=>'Documentation :','Plugin Files'=>'Fichiers de l’extension','Select plugin to edit:'=>'Sélectionnez l’extension à modifier :','File edited successfully.'=>'Le fichier a bien été modifié.','Files of this type are not editable.'=>'Les fichiers de ce type ne sont pas éditables.','Edit Plugins'=>'Modifier les extensions','All Settings'=>'Toutes les options','Update Services'=>'Services de mise à jour','Default Mail Category'=>'Catégorie par défaut des articles envoyés par e-mail','Login Name'=>'Identifiant','Port'=>'Port','Mail Server'=>'Serveur de messagerie','To post to WordPress by email, you must set up a secret email account with POP3 access. Any mail received at this address will be posted, so it’s a good idea to keep this address very secret. Here are three random strings you could use: %1$s, %2$s, %3$s.'=>'Pour publier par e-mail sur WordPress, vous devez définir un compte de messagerie secret avec un accès POP3. Tout message reçu à cette adresse sera publié. Il vaut donc mieux garder cette adresse à l’abri des regards indiscrets. Voici trois chaines aléatoires que vous pourriez utiliser : %1$s, %2$s, %3$s.','Post via email'=>'Publier par e-mail','Default Link Category'=>'Catégorie par défaut des liens','Default Post Category'=>'Catégorie par défaut des articles','WordPress should correct invalidly nested XHTML automatically'=>'WordPress doit automatiquement corriger l’imbrication XHTML erronée','Convert emoticons like :-) and :-P to graphics on display'=>'Convertir les émoticônes, comme :-) et :-P, en images lors de l’affichage','Formatting'=>'Mise en forme','Writing Settings'=>'Réglages d’écriture','Encoding for pages and feeds'=>'Codage pour les pages et les flux RSS','Full text'=>'Le texte complet','Syndication feeds show the most recent'=>'Les flux de syndication affichent les derniers','posts'=>'articles','Blog pages show at most'=>'Les pages du site doivent afficher au plus','Warning: these pages should not be the same!'=>'Avertissement : ces pages ne devraient pas être les mêmes !','Posts page: %s'=>'Page des articles : %s','A static page (select below)'=>'Une page statique (choisir ci-dessous)','Reading Settings'=>'Réglages de lecture','Privacy Settings'=>'Réglages de confidentialité','If you temporarily make your site’s root directory writable to generate the %s file automatically, do not forget to revert the permissions after the file has been created.'=>'Si vous rendez temporairement le dossier racine accessible en écriture pour que WordPress y génère directement le fichier %s, n’oubliez surtout pas de remettre les droits originaux en place une fois que les règles ont été enregistrées.','If you temporarily make your %s file writable to generate rewrite rules automatically, do not forget to revert the permissions after the rule has been saved.'=>'Si vous rendez le fichier %s accessible en écriture afin de générer automatiquement les règles de réécriture, n’oubliez surtout pas de remettre les droits originaux en place une fois que les règles ont été enregistrées.','Tag base'=>'Préfixe des étiquettes','Category base'=>'Préfixe des catégories','Optional'=>'Facultatif','Custom Structure'=>'Structure personnalisée','Numeric'=>'Numérique','Month and name'=>'Mois et titre','Day and name'=>'Date et titre','Permalink structure updated.'=>'Structure des permaliens enregistrée.','Permalink structure updated. Remove write access on %s file now!'=>'La structure des permaliens a été mise à jour. Retirez les droits d’accès au fichier %s dès maintenant !','Permalink Settings'=>'Réglages des permaliens','Organize my uploads into month- and year-based folders'=>'Organiser mes téléversements dans des dossiers mensuels et annuels','Configuring this is optional. By default, it should be blank.'=>'Ce réglage est facultatif. Par défaut, ce champ devrait être vide.','Full URL path to files'=>'Adresse web complète pour les fichiers','Store uploads in this folder'=>'Stocker les téléversements dans ce dossier','Uploading Files'=>'Téléversement des médias','Large size'=>'Grande taille','Max Height'=>'Hauteur maximale','Max Width'=>'Largeur maximale','Medium size'=>'Taille moyenne','Crop thumbnail to exact dimensions (normally thumbnails are proportional)'=>'Recadrer les images pour parvenir aux dimensions exactes (par défaut, les miniatures sont proportionnelles)','Thumbnail size'=>'Taille des miniatures','Image sizes'=>'Tailles des images','Media Settings'=>'Réglages des médias','Week Starts On'=>'La semaine débute le','Custom:'=>'Personnalisé :','This timezone is currently in standard time.'=>'Ce fuseau horaire est actuellement à l’heure d’hiver.','Timezone'=>'Fuseau horaire','New User Default Role'=>'Rôle par défaut de tout nouveau compte','Anyone can register'=>'Tout le monde peut s’inscrire','Membership'=>'Inscription','General Settings'=>'Réglages généraux','MonsterID (Generated)'=>'MonsterID (généré)','Wavatar (Generated)'=>'Wavatar (généré)','Identicon (Generated)'=>'Identicon (généré)','Gravatar Logo'=>'Logo Gravatar','Blank'=>'Vide','For users without a custom avatar of their own, you can either display a generic logo or a generated one based on their email address.'=>'Les comptes n’ayant pas d’avatar peuvent se voir attribuer un logo générique, ou un avatar généré à partir de leur adresse e-mail.','X — Even more mature than above'=>'X — Réservés aux adultes','R — Intended for adult audiences above 17'=>'R — Réservés aux personnes de plus de 17 ans','PG — Possibly offensive, usually for audiences 13 and above'=>'PG — Possiblement offensants, réservés normalement aux personnes de 13 ans et plus','G — Suitable for all audiences'=>'G — Visibles par tous','Maximum Rating'=>'Classement maximal','Show Avatars'=>'Afficher les avatars','Avatar Display'=>'Affichage des avatars','Avatars'=>'Avatars','When a comment contains any of these words in its content, author name, URL, email, IP address, or browser’s user agent string, it will be put in the Trash. One word or IP address per line. It will match inside words, so “press” will match “WordPress”.'=>'Lorsqu’un commentaire contient l’un de ces mots dans son contenu, son nom, son URL, son e-mail, son adresse IP ou encore la chaîne d’agent utilisateur du navigateur, il sera mis à la corbeille. Un seul mot ou une seule adresse IP par ligne. Cette fonction reconnaît l’intérieur des mots, donc « press » suffira pour reconnaître « WordPress ».','When a comment contains any of these words in its content, author name, URL, email, IP address, or browser’s user agent string, it will be held in the moderation queue. One word or IP address per line. It will match inside words, so “press” will match “WordPress”.'=>'Lorsqu’un commentaire contient l’un de ces mots dans son contenu, nom d’auteur ou d’autrice, URL, e-mail, adresse IP ou encore la chaîne d’agent utilisateur du navigateur, il sera retenu dans la file de modération. Un seul mot ou une seule adresse IP par ligne. Cette fonction reconnaît l’intérieur des mots, donc « press » suffira pour reconnaître « WordPress ».','Hold a comment in the queue if it contains %s or more links. (A common characteristic of comment spam is a large number of hyperlinks.)'=>'Garder un commentaire dans la file d’attente s’il contient plus de %s lien(s) (une des caractéristiques typiques d’un commentaire indésirable (spam) est son nombre important de liens)','Comment Moderation'=>'Modération de commentaires','Comment author must have a previously approved comment'=>'L’auteur ou l’autrice d’un commentaire doit avoir déjà au moins un commentaire approuvé','Before a comment appears'=>'Avant la publication d’un commentaire','A comment is held for moderation'=>'Un commentaire est en attente de modération','Anyone posts a comment'=>'Un nouveau commentaire est publié','Email me whenever'=>'M’envoyer un message lorsque','newer'=>'récent','older'=>'ancien','Users must be registered and logged in to comment'=>'Un compte doit être inscrit et connecté pour publier des commentaires','Comment author must fill out name and email'=>'L’auteur ou l’autrice d’un commentaire doit renseigner son nom et son adresse e-mail','Other comment settings'=>'Autres réglages des commentaires','Discussion Settings'=>'Réglages des commentaires','No users found.'=>'Aucun compte trouvé.','Update Themes'=>'Mettre à jour les thèmes','Visit'=>'Visiter','Removed'=>'Retiré','Multisite support is not enabled.'=>'Le support multisites n’est pas activé.','Permalinks'=>'Permaliens','Privacy'=>'Confidentialité','Reading'=>'Lecture','Writing'=>'Écriture','settings screenGeneral'=>'Général','Profile'=>'Profil','Comments %s'=>'Commentaires %s','Library'=>'Médiathèque','Upload New Media'=>'Téléverser un média','Repair and Optimize Database'=>'Réparer et optimiser la base de données','Repair Database'=>'Réparer la base de données','Some database problems could not be repaired. Please copy-and-paste the following list of errors to the WordPress support forums to get additional assistance.'=>'Certains problèmes de la base de données n’ont pas pu être réparés. Veuillez copier-coller la liste d’erreurs suivantes sur le forum de support de WordPress pour recevoir plus d’informations.','WordPress › Database Repair'=>'WordPress > Réparation de la base de données','Link not found.'=>'Lien non trouvé.','No links found.'=>'Aucun lien trouvé.','Search Links'=>'Rechercher des liens','%s link deleted.'=>'%s lien supprimé.' . "\0" . '%s liens supprimés.','Add New Link'=>'Ajouter un lien','Success!'=>'Quel succès !','Please provide the following information. Do not worry, you can always change these settings later.'=>'Veuillez renseigner les informations suivantes. Ne vous inquiétez pas, vous pourrez les modifier plus tard.','Information needed'=>'Informations nécessaires','Install WordPress'=>'Installer WordPress','Double-check your email address before continuing.'=>'Vérifiez bien cette adresse e-mail avant de continuer.','Your Email'=>'Votre e-mail','User(s) already exists.'=>'Le compte existe déjà.','WordPress › Installation'=>'WordPress » Installation','Error: Please enter an email address.'=>'Erreur : veuillez saisir une adresse e-mail.','Error: Passwords may not contain the character "\\".'=>'Erreur : le mot de passe ne doit pas contenir le caractère « \\ ».','Error: Please enter a password.'=>'Erreur : veuillez saisir un mot de passe.','Default post slughello-world'=>'bonjour-tout-le-monde','Hello world!'=>'Bonjour tout le monde !','Welcome to %s. This is your first post. Edit or delete it, then start writing!'=>'Bienvenue sur %s. Ceci est votre premier article. Modifiez-le ou supprimez-le, puis lancez-vous !','Default category slugUncategorized'=>'Non classé','Note that password carefully! It is a random password that was generated just for you.'=>'Notez bien ce mot de passe sans vous tromper ! Il a été créé aléatoirement et vous est unique.','An automated WordPress update has failed to complete! Please notify the site administrator.'=>'Une mise à jour automatique de WordPress a échoué en cours de route ! Veuillez en notifier l’administrateur ou l’administratrice du site.','An automated WordPress update has failed to complete - please attempt the update again now.'=>'Une mise à jour automatique de WordPress a échoué en cours de route ; vous pouvez tenter de la relancer.','Latest'=>'Dernière version','Update to %s'=>'Mettre à jour vers la version %s','You are using a development version (%1$s). Cool! Please stay updated.'=>'Vous utilisez une version de développement (%1$s). C’est super ! Veillez à rester à jour.','Upgrading database…'=>'Mise à jour de la base de données…','The update could not be unpacked'=>'La mise à jour ne peut pas être décompressée','Verifying the unpacked files…'=>'Vérification des fichiers décompressés…','The update cannot be installed because WordPress %1$s requires MySQL version %2$s or higher. You are running version %3$s.'=>'Cette mise à jour ne peut être installée car WordPress %1$s nécessite une version de MySQL égale ou supérieure à la %2$s. Votre hébergement utilise MySQL version %3$s.','The update cannot be installed because WordPress %1$s requires PHP version %2$s or higher. You are running version %3$s.'=>'Cette mise à jour ne peut être installée car WordPress %1$s nécessite une version de PHP égale ou supérieure à la %2$s. Votre hébergement utilise PHP version %3$s.','The update cannot be installed because WordPress %1$s requires PHP version %2$s or higher and MySQL version %3$s or higher. You are running PHP version %4$s and MySQL version %5$s.'=>'Cette mise à jour ne peut être installée car WordPress %1$s nécessite une version de PHP égale ou supérieure à la %2$s, et une version de MySQL égale ou supérieure à la %3$s. Votre hébergement utilise PHP version %4$s et MySQL version %5$s.','Could not fully remove the theme %s.'=>'Impossible de supprimer complètement le thème %s.','Unable to locate WordPress theme directory.'=>'Impossible de localiser le dossier des thèmes de WordPress.','This theme is already installed.'=>'Ce thème est déjà installé.','Version: %s'=>'Version : %s','If you have a theme in a .zip format, you may install or update it by uploading it here.'=>'Si vous avez un thème au format .zip, vous pouvez l’installer en le téléversant ici.','Find Themes'=>'Trouver des thèmes','Holiday'=>'Vacances','Subject'=>'Thème','Sticky Post'=>'Article épinglé','Theme Options'=>'Options du thème','Custom Colors'=>'Couleurs personnalisées','Features'=>'Fonctionnalités','Right Sidebar'=>'Colonne latérale droite','Left Sidebar'=>'Colonne latérale gauche','Four Columns'=>'Quatre colonnes','Three Columns'=>'Trois colonnes','Two Columns'=>'Deux colonnes','One Column'=>'Une colonne','Feature Filter'=>'Filtre de fonctionnalités','Screen Options'=>'Options de l’écran','Disable accessibility mode'=>'Désactiver le mode Accessibilité','Enable accessibility mode'=>'Activer le mode « Accessibilité »','Install Themes'=>'Installer des thèmes','Upload file and import'=>'Téléverser et importer le fichier','Maximum size: %s'=>'Taille maximale : %s','Choose a file from your computer:'=>'Choisissez un fichier sur votre ordinateur :','Before you can upload your import file, you will need to fix the following error:'=>'Avant de téléverser votre fichier d’import, il vous faut corriger l’erreur suivante :','Add Custom Field'=>'Ajouter un champ personnalisé','Enter new'=>'Saisissez-en un nouveau','Add New Custom Field:'=>'Ajouter un champ personnalisé :','Key'=>'Clé','Comment by %s marked as spam.'=>'Commentaire de %s marqué comme indésirable.','Comment by %s moved to the Trash.'=>'Commentaire par %s déplacé dans la corbeille.','Submit Reply'=>'Envoyer la réponse','Reply to Comment'=>'Répondre au commentaire','Missed schedule'=>'Planification manquée','Make this post sticky'=>'Épingler ce contenu','Not Sticky'=>'Non épinglé','Allow Pings'=>'Autoriser les notifications par ping','Allow Comments'=>'Autoriser les commentaires','Do not allow'=>'Refuser','Allow'=>'Autoriser','–OR–'=>'– OU –','— No Change —'=>'– Aucun changement –','Bulk Edit'=>'Modifications groupées','Visible'=>'Visible','Relationship'=>'Relation','column nameComment'=>'Commentaire','column nameDate'=>'Date','column nameFile'=>'Fichier','column nameTitle'=>'Titre','Quick Edit'=>'Modification rapide','Quick Edit'=>'Modification rapide','Warning! Wildcard DNS may not be configured correctly!'=>'Avertissement ! L’enregistrement DNS générique (joker) peut ne pas être configuré correctement !','Just another %s site'=>'Un site utilisant %s','Just another WordPress site'=>'Un site utilisant WordPress','Permalink:'=>'Permalien :','Auto Draft'=>'Brouillon auto','Sorry, you are not allowed to edit posts as this user.'=>'Désolé, vous n’avez pas l’autorisation de modifier des articles avec ce compte.','Sorry, you are not allowed to edit pages as this user.'=>'Désolé, vous n’avez pas l’autorisation de modifier des pages avec ce compte.','The plugin does not have a valid header.'=>'Cette extension ne dispose pas d’un entête valide.','Plugin file does not exist.'=>'Le fichier de l’extension n’existe pas.','Invalid plugin path.'=>'Chemin d’extension non valide.','Could not fully remove the plugins %s.'=>'Impossible de supprimer complètement la ou les extensions %s.','One of the plugins is invalid.'=>'L’une des extensions n’est pas valide.','The plugin generated unexpected output.'=>'Cette extension a produit un résultat inattendu.','Warning: This plugin has not been tested with your current version of WordPress.'=>'Avertissement : cette extension n’a pas été testée avec votre version actuelle de WordPress.','Average Rating'=>'Moyenne des notes','WordPress.org Plugin Page »'=>'Page WordPress.org de l’extension »','Compatible up to:'=>'Compatible jusqu’à la version : ','%s or higher'=>'%s ou plus','Requires WordPress Version:'=>'Nécessite WordPress en version :','Last Updated:'=>'Dernière mise à jour :','(based on %s rating)'=>'(basée sur %s vote)' . "\0" . '(basée sur %s votes)','Plugin zip file'=>'Archive Zip de l’extension','If you have a plugin in a .zip format, you may install or update it by uploading it here.'=>'Si vous avez une extension au format .zip, vous pouvez l’installer ou la mettre à jour en la téléversant ici.','Search Plugins'=>'Rechercher des extensions','You may also browse based on the most popular tags in the Plugin Directory:'=>'Vous pouvez également naviguer en fonction des étiquettes les plus populaires sur WordPress.org :','Popular tags'=>'Étiquettes populaires','(Leave at 0 for no rating.)'=>'(Laissez à 0 pour ne pas donner de note.)','Rating'=>'Note','Notes'=>'Commentaires','RSS Address'=>'Adresse du flux RSS','Image Address'=>'Adresse de l’image','If the link is to a person, you can specify your relationship with them using the above form. If you would like to learn more about the idea check out XFN.'=>'Si le lien pointe vers une personne, vous pouvez préciser la relation que vous entretenez avec elle via le formulaire ci-dessus. Si vous souhaitez en savoir plus sur ce système, consultez le site de XFN.','sweetheart'=>'être aimé','date'=>'amoureuse/amoureux','crush'=>'coup de foudre','muse'=>'muse','romantic'=>'romantique','spouse'=>'conjoint','sibling'=>'frère/sœur','parent'=>'parent','kin'=>'apparenté','child'=>'enfant','family'=>'famille','neighbor'=>'voisin','co-resident'=>'colocataire','geographical'=>'géographique','colleague'=>'confrère','co-worker'=>'collègue de travail','professional'=>'professionnel','met'=>'rencontré·e','physical'=>'physique','friend'=>'ami·e','acquaintance'=>'connaissance','contact'=>'contact','friendship'=>'amitié','another web address of mine'=>'une autre de mes adresses web','identity'=>'identité','rel:'=>'rel :','Choose the target frame for your link.'=>'Choisissez le cadre dans lequel le lien doit s’ouvrir.','_none — same window or tab.'=>'_none — même fenêtre ou onglet.','_top — current window or tab, with no frames.'=>'_top — fenêtre ou onglet en cours, sans cadre incorporé (frame).','_blank — new window or tab.'=>'_blank — nouvelle fenêtre ou onglet.','You are about to delete this link \'%s\' +« Annuler » pour arrêter, « OK » pour supprimer.','Theme deleted.'=>'Thème supprimé.','Select theme to edit:'=>'Sélectionnez le thème à modifier :','Edit Themes'=>'Modifier les thèmes','Tags:'=>'Étiquettes :','Compare Revisions of “%s”'=>'Comparer les révisions de « %s »','You cannot edit this item because it is in the Trash. Please restore it and try again.'=>'Vous ne pouvez pas modifier ce contenu, car il est dans la corbeille. Sortez-l’en, puis réessayez.','Sorry, you are not allowed to edit this item.'=>'Désolé, vous n’avez pas l’autorisation de modifier cet élément.','You attempted to edit an item that does not exist. Perhaps it was deleted?'=>'Vous tentez de modifier un contenu qui n’existe pas. Peut-être a-t-il été supprimé ?','No plugins found.'=>'Aucune extension trouvée.','Inactive (%s)'=>'Désactivée (%s)' . "\0" . 'Désactivées (%s)','Recently Active (%s)'=>'Récemment désactivée (%s)' . "\0" . 'Récemment désactivées (%s)','Active (%s)'=>'Activée (%s)' . "\0" . 'Activées (%s)','pluginsAll (%s)'=>'Toutes (%s)' . "\0" . 'Toutes (%s)','Clear List'=>'Vider la liste','Visit plugin site'=>'Aller sur le site de l’extension','Plugin could not be deleted due to an error: %s'=>'L’extension n’a pu être supprimée suite à une erreur fatale : %s','Plugin could not be activated because it triggered a fatal error.'=>'L’extension n’a pas pu être activée, car elle a déclenché une erreur fatale.','If something goes wrong with a plugin and you cannot use WordPress, delete or rename that file in the %s directory and it will be automatically deactivated.'=>'Si une extension ne fonctionne pas correctement et que vous ne pouvez plus utiliser WordPress, supprimez ou renommez son fichier dans le répertoire %s et elle sera automatiquement désactivée.','Plugins extend and expand the functionality of WordPress. Once a plugin is installed, you may activate it or deactivate it here.'=>'Les extensions étendent les fonctionnalités de WordPress. Une fois une extension installée, vous pouvez l’activer ou la désactiver ici.','No, return me to the plugin list'=>'Non, retourner à la liste des extensions','Yes, delete these files'=>'Oui, supprimer ces fichiers','Are you sure you want to delete these files?'=>'Confirmez-vous la suppression de ces fichiers ?','Plugin InstallerPopular'=>'Populaires','Plugin InstallerFeatured'=>'Mises en avant','Update File'=>'Mettre à jour le fichier','Documentation:'=>'Documentation :','Plugin Files'=>'Fichiers de l’extension','Select plugin to edit:'=>'Sélectionnez l’extension à modifier :','File edited successfully.'=>'Le fichier a bien été modifié.','Files of this type are not editable.'=>'Les fichiers de ce type ne sont pas éditables.','Edit Plugins'=>'Modifier les extensions','All Settings'=>'Toutes les options','Update Services'=>'Services de mise à jour','Default Mail Category'=>'Catégorie par défaut des articles envoyés par e-mail','Login Name'=>'Identifiant','Port'=>'Port','Mail Server'=>'Serveur de messagerie','To post to WordPress by email, you must set up a secret email account with POP3 access. Any mail received at this address will be posted, so it’s a good idea to keep this address very secret. Here are three random strings you could use: %1$s, %2$s, %3$s.'=>'Pour publier par e-mail sur WordPress, vous devez définir un compte de messagerie secret avec un accès POP3. Tout message reçu à cette adresse sera publié. Il vaut donc mieux garder cette adresse à l’abri des regards indiscrets. Voici trois chaines aléatoires que vous pourriez utiliser : %1$s, %2$s, %3$s.','Post via email'=>'Publier par e-mail','Default Link Category'=>'Catégorie par défaut des liens','Default Post Category'=>'Catégorie par défaut des articles','WordPress should correct invalidly nested XHTML automatically'=>'WordPress doit automatiquement corriger l’imbrication XHTML erronée','Convert emoticons like :-) and :-P to graphics on display'=>'Convertir les émoticônes, comme :-) et :-P, en images lors de l’affichage','Formatting'=>'Mise en forme','Writing Settings'=>'Réglages d’écriture','Encoding for pages and feeds'=>'Codage pour les pages et les flux RSS','Full text'=>'Le texte complet','Syndication feeds show the most recent'=>'Les flux de syndication affichent les derniers','posts'=>'articles','Blog pages show at most'=>'Les pages du site doivent afficher au plus','Warning: these pages should not be the same!'=>'Avertissement : ces pages ne devraient pas être les mêmes !','Posts page: %s'=>'Page des articles : %s','A static page (select below)'=>'Une page statique (choisir ci-dessous)','Reading Settings'=>'Réglages de lecture','Privacy Settings'=>'Réglages de confidentialité','If you temporarily make your site’s root directory writable to generate the %s file automatically, do not forget to revert the permissions after the file has been created.'=>'Si vous rendez temporairement le dossier racine accessible en écriture pour que WordPress y génère directement le fichier %s, n’oubliez surtout pas de remettre les droits originaux en place une fois que les règles ont été enregistrées.','If you temporarily make your %s file writable to generate rewrite rules automatically, do not forget to revert the permissions after the rule has been saved.'=>'Si vous rendez le fichier %s accessible en écriture afin de générer automatiquement les règles de réécriture, n’oubliez surtout pas de remettre les droits originaux en place une fois que les règles ont été enregistrées.','Tag base'=>'Préfixe des étiquettes','Category base'=>'Préfixe des catégories','Optional'=>'Facultatif','Custom Structure'=>'Structure personnalisée','Numeric'=>'Numérique','Month and name'=>'Mois et titre','Day and name'=>'Date et titre','Permalink structure updated.'=>'Structure des permaliens enregistrée.','Permalink structure updated. Remove write access on %s file now!'=>'La structure des permaliens a été mise à jour. Retirez les droits d’accès au fichier %s dès maintenant !','Permalink Settings'=>'Réglages des permaliens','Organize my uploads into month- and year-based folders'=>'Organiser mes téléversements dans des dossiers mensuels et annuels','Configuring this is optional. By default, it should be blank.'=>'Ce réglage est facultatif. Par défaut, ce champ devrait être vide.','Full URL path to files'=>'Adresse web complète pour les fichiers','Store uploads in this folder'=>'Stocker les téléversements dans ce dossier','Uploading Files'=>'Téléversement des médias','Large size'=>'Grande taille','Max Height'=>'Hauteur maximale','Max Width'=>'Largeur maximale','Medium size'=>'Taille moyenne','Crop thumbnail to exact dimensions (normally thumbnails are proportional)'=>'Recadrer les images pour parvenir aux dimensions exactes (par défaut, les miniatures sont proportionnelles)','Thumbnail size'=>'Taille des miniatures','Image sizes'=>'Tailles des images','Media Settings'=>'Réglages des médias','Week Starts On'=>'La semaine débute le','Custom:'=>'Personnalisé :','This timezone is currently in standard time.'=>'Ce fuseau horaire est actuellement à l’heure d’hiver.','Timezone'=>'Fuseau horaire','New User Default Role'=>'Rôle par défaut de tout nouveau compte','Anyone can register'=>'Tout le monde peut s’inscrire','Membership'=>'Inscription','General Settings'=>'Réglages généraux','MonsterID (Generated)'=>'MonsterID (généré)','Wavatar (Generated)'=>'Wavatar (généré)','Identicon (Generated)'=>'Identicon (généré)','Gravatar Logo'=>'Logo Gravatar','Blank'=>'Vide','For users without a custom avatar of their own, you can either display a generic logo or a generated one based on their email address.'=>'Les comptes n’ayant pas d’avatar peuvent se voir attribuer un logo générique, ou un avatar généré à partir de leur adresse e-mail.','X — Even more mature than above'=>'X — Réservés aux adultes','R — Intended for adult audiences above 17'=>'R — Réservés aux personnes de plus de 17 ans','PG — Possibly offensive, usually for audiences 13 and above'=>'PG — Possiblement offensants, réservés normalement aux personnes de 13 ans et plus','G — Suitable for all audiences'=>'G — Visibles par tous','Maximum Rating'=>'Classement maximal','Show Avatars'=>'Afficher les avatars','Avatar Display'=>'Affichage des avatars','Avatars'=>'Avatars','When a comment contains any of these words in its content, author name, URL, email, IP address, or browser’s user agent string, it will be put in the Trash. One word or IP address per line. It will match inside words, so “press” will match “WordPress”.'=>'Lorsqu’un commentaire contient l’un de ces mots dans son contenu, son nom, son URL, son e-mail, son adresse IP ou encore la chaîne d’agent utilisateur du navigateur, il sera mis à la corbeille. Un seul mot ou une seule adresse IP par ligne. Cette fonction reconnaît l’intérieur des mots, donc « press » suffira pour reconnaître « WordPress ».','When a comment contains any of these words in its content, author name, URL, email, IP address, or browser’s user agent string, it will be held in the moderation queue. One word or IP address per line. It will match inside words, so “press” will match “WordPress”.'=>'Lorsqu’un commentaire contient l’un de ces mots dans son contenu, nom d’auteur ou d’autrice, URL, e-mail, adresse IP ou encore la chaîne d’agent utilisateur du navigateur, il sera retenu dans la file de modération. Un seul mot ou une seule adresse IP par ligne. Cette fonction reconnaît l’intérieur des mots, donc « press » suffira pour reconnaître « WordPress ».','Hold a comment in the queue if it contains %s or more links. (A common characteristic of comment spam is a large number of hyperlinks.)'=>'Garder un commentaire dans la file d’attente s’il contient plus de %s lien(s) (une des caractéristiques typiques d’un commentaire indésirable (spam) est son nombre important de liens)','Comment Moderation'=>'Modération de commentaires','Comment author must have a previously approved comment'=>'L’auteur ou l’autrice d’un commentaire doit avoir déjà au moins un commentaire approuvé','Before a comment appears'=>'Avant la publication d’un commentaire','A comment is held for moderation'=>'Un commentaire est en attente de modération','Anyone posts a comment'=>'Un nouveau commentaire est publié','Email me whenever'=>'M’envoyer un message lorsque','newer'=>'récent','older'=>'ancien','Users must be registered and logged in to comment'=>'Un compte doit être inscrit et connecté pour publier des commentaires','Comment author must fill out name and email'=>'L’auteur ou l’autrice d’un commentaire doit renseigner son nom et son adresse e-mail','Other comment settings'=>'Autres réglages des commentaires','Discussion Settings'=>'Réglages des commentaires','No users found.'=>'Aucun compte trouvé.','Update Themes'=>'Mettre à jour les thèmes','Visit'=>'Visiter','Removed'=>'Retiré','Multisite support is not enabled.'=>'Le support multisites n’est pas activé.','Permalinks'=>'Permaliens','Privacy'=>'Confidentialité','Reading'=>'Lecture','Writing'=>'Écriture','settings screenGeneral'=>'Général','Profile'=>'Profil','Comments %s'=>'Commentaires %s','Library'=>'Médiathèque','Upload New Media'=>'Téléverser un média','Repair and Optimize Database'=>'Réparer et optimiser la base de données','Repair Database'=>'Réparer la base de données','Some database problems could not be repaired. Please copy-and-paste the following list of errors to the WordPress support forums to get additional assistance.'=>'Certains problèmes de la base de données n’ont pas pu être réparés. Veuillez copier-coller la liste d’erreurs suivantes sur le forum de support de WordPress pour recevoir plus d’informations.','WordPress › Database Repair'=>'WordPress > Réparation de la base de données','Link not found.'=>'Lien non trouvé.','No links found.'=>'Aucun lien trouvé.','Search Links'=>'Rechercher des liens','%s link deleted.'=>'%s lien supprimé.' . "\0" . '%s liens supprimés.','Success!'=>'Quel succès !','Please provide the following information. Do not worry, you can always change these settings later.'=>'Veuillez renseigner les informations suivantes. Ne vous inquiétez pas, vous pourrez les modifier plus tard.','Information needed'=>'Informations nécessaires','Install WordPress'=>'Installer WordPress','Double-check your email address before continuing.'=>'Vérifiez bien cette adresse e-mail avant de continuer.','Your Email'=>'Votre e-mail','User(s) already exists.'=>'Le compte existe déjà.','WordPress › Installation'=>'WordPress » Installation','Error: Please enter an email address.'=>'Erreur : veuillez saisir une adresse e-mail.','Error: Passwords may not contain the character "\\".'=>'Erreur : le mot de passe ne doit pas contenir le caractère « \\ ».','Error: Please enter a password.'=>'Erreur : veuillez saisir un mot de passe.','Default post slughello-world'=>'bonjour-tout-le-monde','Hello world!'=>'Bonjour tout le monde !','Welcome to %s. This is your first post. Edit or delete it, then start writing!'=>'Bienvenue sur %s. Ceci est votre premier article. Modifiez-le ou supprimez-le, puis lancez-vous !','Default category slugUncategorized'=>'Non classé','Note that password carefully! It is a random password that was generated just for you.'=>'Notez bien ce mot de passe sans vous tromper ! Il a été créé aléatoirement et vous est unique.','An automated WordPress update has failed to complete! Please notify the site administrator.'=>'Une mise à jour automatique de WordPress a échoué en cours de route ! Veuillez en notifier l’administrateur ou l’administratrice du site.','An automated WordPress update has failed to complete - please attempt the update again now.'=>'Une mise à jour automatique de WordPress a échoué en cours de route ; vous pouvez tenter de la relancer.','Latest'=>'Dernière version','Update to %s'=>'Mettre à jour vers la version %s','You are using a development version (%1$s). Cool! Please stay updated.'=>'Vous utilisez une version de développement (%1$s). C’est super ! Veillez à rester à jour.','Upgrading database…'=>'Mise à jour de la base de données…','The update could not be unpacked'=>'La mise à jour ne peut pas être décompressée','Verifying the unpacked files…'=>'Vérification des fichiers décompressés…','The update cannot be installed because WordPress %1$s requires MySQL version %2$s or higher. You are running version %3$s.'=>'Cette mise à jour ne peut être installée car WordPress %1$s nécessite une version de MySQL égale ou supérieure à la %2$s. Votre hébergement utilise MySQL version %3$s.','The update cannot be installed because WordPress %1$s requires PHP version %2$s or higher. You are running version %3$s.'=>'Cette mise à jour ne peut être installée car WordPress %1$s nécessite une version de PHP égale ou supérieure à la %2$s. Votre hébergement utilise PHP version %3$s.','The update cannot be installed because WordPress %1$s requires PHP version %2$s or higher and MySQL version %3$s or higher. You are running PHP version %4$s and MySQL version %5$s.'=>'Cette mise à jour ne peut être installée car WordPress %1$s nécessite une version de PHP égale ou supérieure à la %2$s, et une version de MySQL égale ou supérieure à la %3$s. Votre hébergement utilise PHP version %4$s et MySQL version %5$s.','Could not fully remove the theme %s.'=>'Impossible de supprimer complètement le thème %s.','Unable to locate WordPress theme directory.'=>'Impossible de localiser le dossier des thèmes de WordPress.','This theme is already installed.'=>'Ce thème est déjà installé.','Version: %s'=>'Version : %s','If you have a theme in a .zip format, you may install or update it by uploading it here.'=>'Si vous avez un thème au format .zip, vous pouvez l’installer en le téléversant ici.','Find Themes'=>'Trouver des thèmes','Holiday'=>'Vacances','Subject'=>'Thème','Sticky Post'=>'Article épinglé','Theme Options'=>'Options du thème','Features'=>'Fonctionnalités','Right Sidebar'=>'Colonne latérale droite','Left Sidebar'=>'Colonne latérale gauche','Four Columns'=>'Quatre colonnes','Three Columns'=>'Trois colonnes','Two Columns'=>'Deux colonnes','One Column'=>'Une colonne','Feature Filter'=>'Filtre de fonctionnalités','Screen Options'=>'Options de l’écran','Disable accessibility mode'=>'Désactiver le mode Accessibilité','Enable accessibility mode'=>'Activer le mode « Accessibilité »','Install Themes'=>'Installer des thèmes','Upload file and import'=>'Téléverser et importer le fichier','Maximum size: %s'=>'Taille maximale : %s','Choose a file from your computer:'=>'Choisissez un fichier sur votre ordinateur :','Before you can upload your import file, you will need to fix the following error:'=>'Avant de téléverser votre fichier d’import, il vous faut corriger l’erreur suivante :','Add Custom Field'=>'Ajouter un champ personnalisé','Enter new'=>'Saisissez-en un nouveau','Key'=>'Clé','Comment by %s marked as spam.'=>'Commentaire de %s marqué comme indésirable.','Comment by %s moved to the Trash.'=>'Commentaire par %s déplacé dans la corbeille.','Submit Reply'=>'Envoyer la réponse','Reply to Comment'=>'Répondre au commentaire','Missed schedule'=>'Planification manquée','Make this post sticky'=>'Épingler ce contenu','Not Sticky'=>'Non épinglé','Allow Pings'=>'Autoriser les notifications par ping','Allow Comments'=>'Autoriser les commentaires','Do not allow'=>'Refuser','Allow'=>'Autoriser','–OR–'=>'– OU –','— No Change —'=>'– Aucun changement –','Bulk Edit'=>'Modifications groupées','Visible'=>'Visible','Relationship'=>'Relation','column nameComment'=>'Commentaire','column nameDate'=>'Date','column nameFile'=>'Fichier','column nameTitle'=>'Titre','Quick Edit'=>'Modification rapide','Quick Edit'=>'Modification rapide','Warning! Wildcard DNS may not be configured correctly!'=>'Avertissement ! L’enregistrement DNS générique (joker) peut ne pas être configuré correctement !','Just another %s site'=>'Un site utilisant %s','Just another WordPress site'=>'Un site utilisant WordPress','Auto Draft'=>'Brouillon auto','Sorry, you are not allowed to edit posts as this user.'=>'Désolé, vous n’avez pas l’autorisation de modifier des articles avec ce compte.','Sorry, you are not allowed to edit pages as this user.'=>'Désolé, vous n’avez pas l’autorisation de modifier des pages avec ce compte.','The plugin does not have a valid header.'=>'Cette extension ne dispose pas d’un entête valide.','Plugin file does not exist.'=>'Le fichier de l’extension n’existe pas.','Invalid plugin path.'=>'Chemin d’extension non valide.','Could not fully remove the plugins %s.'=>'Impossible de supprimer complètement la ou les extensions %s.','One of the plugins is invalid.'=>'L’une des extensions n’est pas valide.','The plugin generated unexpected output.'=>'Cette extension a produit un résultat inattendu.','Warning: This plugin has not been tested with your current version of WordPress.'=>'Avertissement : cette extension n’a pas été testée avec votre version actuelle de WordPress.','Average Rating'=>'Moyenne des notes','WordPress.org Plugin Page »'=>'Page WordPress.org de l’extension »','Compatible up to:'=>'Compatible jusqu’à la version : ','%s or higher'=>'%s ou plus','Requires WordPress Version:'=>'Nécessite WordPress en version :','Last Updated:'=>'Dernière mise à jour :','(based on %s rating)'=>'(basée sur %s vote)' . "\0" . '(basée sur %s votes)','Plugin zip file'=>'Archive Zip de l’extension','If you have a plugin in a .zip format, you may install or update it by uploading it here.'=>'Si vous avez une extension au format .zip, vous pouvez l’installer ou la mettre à jour en la téléversant ici.','Search Plugins'=>'Rechercher des extensions','You may also browse based on the most popular tags in the Plugin Directory:'=>'Vous pouvez également naviguer en fonction des étiquettes les plus populaires sur WordPress.org :','Popular tags'=>'Étiquettes populaires','(Leave at 0 for no rating.)'=>'(Laissez à 0 pour ne pas donner de note.)','Rating'=>'Note','Notes'=>'Commentaires','RSS Address'=>'Adresse du flux RSS','Image Address'=>'Adresse de l’image','If the link is to a person, you can specify your relationship with them using the above form. If you would like to learn more about the idea check out XFN.'=>'Si le lien pointe vers une personne, vous pouvez préciser la relation que vous entretenez avec elle via le formulaire ci-dessus. Si vous souhaitez en savoir plus sur ce système, consultez le site de XFN.','sweetheart'=>'être aimé','date'=>'amoureuse/amoureux','crush'=>'coup de foudre','muse'=>'muse','romantic'=>'romantique','spouse'=>'conjoint','sibling'=>'frère/sœur','parent'=>'parent','kin'=>'apparenté','child'=>'enfant','family'=>'famille','neighbor'=>'voisin','co-resident'=>'colocataire','geographical'=>'géographique','colleague'=>'confrère','co-worker'=>'collègue de travail','professional'=>'professionnel','met'=>'rencontré·e','physical'=>'physique','friend'=>'ami·e','acquaintance'=>'connaissance','contact'=>'contact','friendship'=>'amitié','another web address of mine'=>'une autre de mes adresses web','identity'=>'identité','rel:'=>'rel :','Choose the target frame for your link.'=>'Choisissez le cadre dans lequel le lien doit s’ouvrir.','_none — same window or tab.'=>'_none — même fenêtre ou onglet.','_top — current window or tab, with no frames.'=>'_top — fenêtre ou onglet en cours, sans cadre incorporé (frame).','_blank — new window or tab.'=>'_blank — nouvelle fenêtre ou onglet.','You are about to delete this link \'%s\' \'Cancel\' to stop, \'OK\' to delete.'=>'Vous êtes sur le point de supprimer le lien « %s ». -« Annuler » pour arrêter, « OK » pour supprimer.','Keep this link private'=>'Ce lien est privé','Visit Link'=>'Visiter le lien','Main Page (no parent)'=>'Publication principale (pas de publication parente)','Show comments'=>'Afficher les commentaires','Separate multiple URLs with spaces'=>'Séparez les URL par des espaces','Send trackbacks to:'=>'Envoyer un rétrolien vers :','Already pinged:'=>'Déjà notifié(s) par ping :','New category name'=>'Nom de la nouvelle catégorie','+ Add New Category'=>'+ Ajouter une catégorie','Publish immediately'=>'Publier tout de suite','Stick this post to the front page'=>'Épingler cet article sur la page d’accueil','Status:'=>'État :','Preview Changes'=>'Prévisualiser les modifications','Link text, e.g. “Ransom Demands (PDF)”'=>'Texte du lien, par exemple « Théorie sur le chaos (PDF) »','Link to image'=>'Lier à l’image','Link Image To:'=>'Lier l’image à :','Image Caption'=>'Légende de l’image','Filter »'=>'Filtrer »','All Types'=>'Tous les types','Search Media'=>'Chercher parmi les médias','Update gallery settings'=>'Mettre à jour les réglages de galerie','Gallery columns:'=>'Colonnes de galerie :','Order:'=>'Ordre :','Random'=>'Aléatoire','Date/Time'=>'Horodatage','Menu order'=>'Ordre du menu','Order images by:'=>'Ranger les images par :','Image File'=>'Fichier image','Link thumbnails to:'=>'Lier les miniatures à :','Descending'=>'Décroissant','Ascending'=>'Croissant','Sort Order:'=>'Ordre de tri :','All Tabs:'=>'Tous les onglets :','Save all changes'=>'Enregistrer toutes les modifications','Add media files from your computer'=>'Ajouter un fichier média depuis votre ordinateur','Insert into Post'=>'Insérer dans la publication','Upload date:'=>'Date de téléversement :','Hide'=>'Masquer','Location of the uploaded file.'=>'Emplacement du fichier envoyé.','Alt text for the image, e.g. “The Mona Lisa”'=>'Texte alternatif de l’image, par ex. : « La Joconde »','File URL'=>'URL du fichier','WordPress'=>'WordPress','Uploads'=>'Téléversements','Gallery (%s)'=>'Galerie (%s)','From URL'=>'Depuis l’URL','From Computer'=>'Depuis votre ordinateur','Image saved'=>'Image enregistrée','Unable to save the image.'=>'Impossible d’enregistrer l’image.','Nothing to save, the image has not changed.'=>'Rien à enregistrer, l’image n’a pas été modifiée.','Error while saving the scaled image. Please reload the page and try again.'=>'Une erreur est survenue lors de la modification de l’échelle de l’image. Veuillez recharger la page et réessayer.','Unable to create new image.'=>'Impossible de créer une nouvelle image.','Image restored successfully.'=>'L’image a bien été rétablie.','Image metadata is inconsistent.'=>'Les métadonnées de l’image ne sont pas cohérentes.','Cannot save image metadata.'=>'Impossible d’enregistrer les métadonnées de l’image.','Cannot load image metadata.'=>'Impossible de charger les métadonnées de l’image.','All sizes except thumbnail'=>'Toutes les tailles sauf la miniature','All image sizes'=>'Toutes les tailles','Apply changes to:'=>'Appliquer les modifications à :','Current thumbnail'=>'Miniature actuelle','Thumbnail Settings'=>'Réglages de la miniature','Selection:'=>'Sélection :','Aspect ratio:'=>'Proportion de taille :','Crop Selection'=>'Sélection de recadrage','Crop Aspect Ratio'=>'Proportion de taille du recadrage','Restore image'=>'Rétablir l’image','Previously edited copies of the image will not be deleted.'=>'Les copies de l’image précédemment modifiées ne seront pas effacées.','Discard any changes and restore the original image.'=>'Abandonner toutes modifications et rétablir l’image originale.','Restore Original Image'=>'Rétablir l’image originale','Original dimensions %s'=>'Taille originale : %s','Scale Image'=>'Redimensionnement de l’image','Flip horizontal'=>'Retourner horizontalement','Flip vertical'=>'Retourner verticalement','Image data does not exist. Please re-upload the image.'=>'Il n’y a aucune donnée d’image. Veuillez retéléverser l’image.','Proceed'=>'Continuer','Connection Type'=>'Type de connexion','Private Key:'=>'Clé privée :','Public Key:'=>'Clé publique :','Authentication Keys'=>'Clés d’authentification','Hostname'=>'Nom de l’hôte :','Connection Information'=>'Informations de connexion','SSH2'=>'SSH2','FTPS (SSL)'=>'FTPS (SSL)','FTP'=>'FTP','Empty archive.'=>'Archive vide.','Could not copy file.'=>'Impossible de copier le fichier.','Could not extract file from archive.'=>'Impossible d’extraire les fichiers depuis l’archive.','Could not retrieve file from archive.'=>'Impossible de récupérer le fichier depuis l’archive.','Could not create temporary file.'=>'Impossible de créer le fichier temporaire.','Specified file failed upload test.'=>'Le test de téléversement du fichier spécifié a échoué.','Invalid form submission.'=>'Envoi non valide du formulaire.','File upload stopped by extension.'=>'Le téléversement de fichier est arrêté par l’extension.','Failed to write file to disk.'=>'Échec de l’écriture du fichier sur le disque.','Missing a temporary folder.'=>'Un dossier temporaire est manquant.','No file was uploaded.'=>'Aucun fichier n’a été envoyé.','The uploaded file was only partially uploaded.'=>'Le fichier n’a été que partiellement envoyé.','Sorry, that file cannot be edited.'=>'Désolé, ce fichier ne peut être modifié.','Popup Comments Template'=>'Modèle de la fenêtre surgissante de commentaires','Comments Template'=>'Modèle pour les commentaires','.htaccess (for rewrite rules )'=>'.htaccess (pour les règles de réécriture)','my-hacks.php (legacy hacks support)'=>'my-hacks.php (reconnaissance des hacks existants)','Application Attachment Template'=>'Modèle pour les programmes attachés','Audio Attachment Template'=>'Modèle pour les fichiers audio attachés','Video Attachment Template'=>'Modèle pour les vidéos attachées','Image Attachment Template'=>'Modèle pour les images attachées','Attachment Template'=>'Modèle pour les fichiers attachés','Theme Functions'=>'Fonctions du thème','Links Template'=>'Modèle pour les liens','404 Template'=>'Modèle pour l’erreur 404','Single Post'=>'Publication seule','Search Form'=>'Formulaire de recherche','Search Requests'=>'Recherche dans les demandes','Category Template'=>'Modèle pour les catégories','Popup Comments'=>'Fenêtre surgissante de commentaires','RTL Stylesheet'=>'Feuille de style RTL','Main Index Template'=>'Modèle pour la page d’accueil','This widget requires JavaScript.'=>'Ce widget nécessite JavaScript.','dashboard%1$s %2$s'=>'%1$s dans %2$s','[Pending]'=>'[En attente]','From %1$s on %2$s %3$s'=>'Par %1$s, sur %2$s%3$s','Move this comment to the Trash'=>'Déplacer ce commentaire dans la corbeille','verbSpam'=>'Indésirable','Mark this comment as spam'=>'Marquer ce commentaire comme indésirable','Reply to this comment'=>'Répondre à ce commentaire','Unapprove this comment'=>'Désapprouver ce commentaire','Approve this comment'=>'Approuver ce commentaire','Page'=>'Page','Configure'=>'Configurer','View all'=>'Tout voir','Other WordPress News'=>'Autres actualités de WordPress (en français)','Right Now'=>'Aujourd’hui','The uploaded file could not be moved to %s.'=>'Le fichier n’a pas pu être déplacé vers %s.','Please select a file'=>'Veuillez choisir un fichier','Return to the Theme Installer'=>'Retourner à l’installation des thèmes','Preview “%s”'=>'Prévisualiser « %s »','Successfully installed the theme %1$s %2$s.'=>'Le thème %1$s %2$s a bien été installé.','Return to the Plugin Installer'=>'Retourner à l’installation des extensions','Successfully installed the plugin %1$s %2$s.'=>'L’extension %1$s %2$s a bien été installée.','Activate Plugin'=>'Activer l’extension','Could not copy files.'=>'Impossible de copier les fichiers.','WordPress is at the latest version.'=>'Vous avez la dernière version de WordPress.','Theme installed successfully.'=>'Le thème a bien été installé.','Installing the theme…'=>'Installation du thème…','Could not remove the old theme.'=>'Impossible de supprimer l’ancien thème.','Removing the old version of the theme…'=>'Retrait de l’ancienne version du thème…','The theme is at the latest version.'=>'Vous avez la dernière version de ce thème.','Plugin installed successfully.'=>'L’extension a bien été installée.','Installing the plugin…'=>'Installation de l’extension…','Unpacking the package…'=>'Décompression de l’archive de l’extension…','Installation package not available.'=>'L’archive d’installation n’est pas disponible.','Could not remove the old plugin.'=>'Impossible de supprimer l’ancienne extension.','Removing the old version of the plugin…'=>'Retrait de l’ancienne version de l’extension…','Unpacking the update…'=>'Décompression de la mise à jour…','The plugin is at the latest version.'=>'Vous avez la dernière version de cette extension.','Disabling Maintenance mode…'=>'Désactivation du mode maintenance…','Enabling Maintenance mode…'=>'Activation du mode maintenance…','Incompatible Archive.'=>'Archive incompatible.','Could not create directory.'=>'Impossible de créer le dossier.','Destination folder already exists.'=>'Le dossier de destination existe déjà.','Installing the latest version…'=>'Installation de la dernière version…','Download failed.'=>'Le téléchargement a échoué.','Unable to locate needed folder (%s).'=>'Impossible de localiser le dossier nécessaire (%s).','Unable to locate WordPress content directory'=>'Impossible de localiser le répertoire de contenu de WordPress.','Unable to locate WordPress plugin directory.'=>'Impossible de localiser le répertoire d’extension de WordPress.','Unable to locate WordPress root directory.'=>'Impossible de localiser le répertoire racine de WordPress.','Filesystem error.'=>'Erreur du système de fichier.','Could not access filesystem'=>'Impossible d’accéder au système de fichiers.','Invalid data provided.'=>'Les données fournies ne sont pas valides.','Unable to perform command: %s'=>'Impossible de lancer la commande : %s','Public and Private keys incorrect for %s'=>'Les clés publiques et privées de %s ne sont pas correctes','Failed to connect to SSH2 Server %s'=>'Impossible de se connecter au serveur SSH2 %s','SSH2 password is required'=>'Le mot de passe SSH2 est nécessaire','SSH2 username is required'=>'L’identifiant SSH2 est nécessaire','SSH2 hostname is required'=>'Le nom de l’hôte SSH2 est nécessaire','The ssh2 PHP extension is not available'=>'L’extension ssh2 de PHP n’est pas disponible','Username/Password incorrect for %s'=>'Le couple identifiant/mot de passe est incorrect pour %s','Failed to connect to FTP Server %s'=>'Impossible de se connecter au serveur FTP %s','FTP password is required'=>'Le mot de passe FTP est nécessaire','FTP username is required'=>'L’identifiant FTP est nécessaire','FTP hostname is required'=>'Le nom de l’hôte FTP est nécessaire','The ftp PHP extension is not available'=>'L’extension ftp de PHP n’est pas disponible','Found %s'=>'Trouvé %s','Changing to %s'=>'Modifier à %s','Could not insert link into the database.'=>'Impossible d’insérer le lien dans la base de données.','Could not update link in the database.'=>'Impossible de mettre à jour le lien dans la base de données.','Movable Type and TypePad'=>'Movable Type et TypePad','LiveJournal'=>'LiveJournal','Try Again'=>'Recommencer','Blogger'=>'Blogger','No importers are available.'=>'Aucun outil d’importation n’est disponible.','Download Export File'=>'Télécharger le fichier d’exportation','This format, which is called WordPress eXtended RSS or WXR, will contain your posts, pages, comments, custom fields, categories, and tags.'=>'Ce format nommé WordPress eXtended RSS (ou WXR) contient tous vos articles, pages, commentaires, champs personnalisés, catégories et étiquettes.','When you click the button below WordPress will create an XML file for you to save to your computer.'=>'Cliquez sur ce bouton pour que WordPress crée un fichier XML que vous pourrez enregistrer sur votre ordinateur.','Export'=>'Exporter','postsAll (%s)'=>'Tous (%s)' . "\0" . 'Tous (%s)','postsMine (%s)'=>'Le mien (%s)' . "\0" . 'Les miens (%s)','%s pattern not updated, somebody is editing it.'=>'Une composition n’a pas été mise à jour : quelqu’un est en train de la modifier.' . "\0" . '%s compositions n’ont pas été mises à jour : quelqu’un est en train de les modifier.','%s post updated.'=>'%s publication mise à jour.' . "\0" . '%s publications mises à jour.','Sorry, you are not allowed to delete this item.'=>'Désolé, vous n’avez pas l’autorisation de supprimer cet élément.','Item not added.'=>'Contenu non ajouté.','Item updated.'=>'Contenu mis à jour.','Item deleted.'=>'Contenu supprimé.','Categories, unlike tags, can have a hierarchy. You might have a Jazz category, and under that have children categories for Bebop and Big Band. Totally optional.'=>'Les catégories, contrairement aux étiquettes, peuvent avoir une hiérarchie. Vous pouvez avoir une catégorie nommée Jazz, et à l’intérieur, plusieurs catégories comme Bebop et Big Band. Ceci est totalement facultatif.','This will be shown when someone hovers over the link in the blogroll, or optionally below the link.'=>'Cette description sera affichée lors du survol du lien dans la liste de liens ; elle pourra également apparaître sous le lien si votre thème le prévoit.','Example: https://wordpress.org/ — do not forget the https://'=>'Exemple : https://fr.wordpress.org/ — Et n’oubliez pas le https://','Web Address'=>'Adresse web','Example: Nifty blogging software'=>'Exemple : Logiciel de création de sites rapide, puissant et efficace','Link added.'=>'Lien ajouté.','Links / Add New Link'=>'Liens / Ajouter un lien','Update Link'=>'Mettre à jour le lien','Links / Edit Link'=>'Liens / Modifier le lien','Visit site'=>'Aller sur le site','Update Comment'=>'Mettre à jour le commentaire','Last edited on %1$s at %2$s'=>'Dernière modification le %1$s à %2$s','Last edited by %1$s on %2$s at %3$s'=>'Dernière modification par %1$s, le %2$s à %3$s','Custom Fields'=>'Champs personnalisés','Send Trackbacks'=>'Envoyer des rétroliens','Page restored to revision from %s.'=>'Page rétablie à partir de la révision du %s.','Post saved.'=>'Publication enregistrée.','Post restored to revision from %s.'=>'Publication rétablie à partir de la révision du %s.','Custom field deleted.'=>'Champ personnalisé supprimé.','Custom field updated.'=>'Champ personnalisé mis à jour.','No comments found.'=>'Aucun commentaire trouvé.','Empty Trash'=>'Vider la corbeille','Empty Spam'=>'Supprimer tous les indésirables','Filter'=>'Filtrer','Pings'=>'Pings','Approve'=>'Approuver','Unapprove'=>'Désapprouver','Bulk actions'=>'Actions groupées','Displaying %1$s–%2$s of %3$s'=>'Affichage de %1$s à %2$s sur %3$ss','Search Comments'=>'Rechercher des commentaires','Approved'=>'Approuvé','%s comment permanently deleted.'=>'%s commentaire supprimé définitivement.' . "\0" . '%s commentaires supprimés définitivement.','%s comment restored from the spam.'=>'%s commentaire rétabli depuis les commentaires indésirables.' . "\0" . '%s commentaires rétablis depuis les commentaires indésirables.','%s comment marked as spam.'=>'%s commentaire marqué comme indésirable.' . "\0" . '%s commentaires marqués comme indésirables.','%s comment approved.'=>'%s commentaire approuvé.' . "\0" . '%s commentaires approuvés.','Attach'=>'Joindre','(Unattached)'=>'(Non attaché)','Unpublished'=>'Non publié','View “%s”'=>'Afficher « %s »','Delete Permanently'=>'Supprimer définitivement','Edit “%s”'=>'Modifier « %s »','Choose the part of the image you want to use as your header.'=>'Choisissez la partie de l’image que vous voulez utiliser comme entête.','Image Processing Error'=>'Erreur lors du traitement de l’image','Header updated. Visit your site to see how it looks.'=>'L’entête a été mis à jour. Visiter le site pour voir son nouvel aspect.','Custom Header'=>'Personnalisation de l’entête','Save Changes'=>'Enregistrer les modifications','Choose an image from your computer:'=>'Choisissez une image sur votre ordinateur :','Background updated. Visit your site to see how it looks.'=>'L’arrière-plan a été mis à jour. Afficher votre site pour voir le rendu.','Custom Background'=>'Arrière-plan personnalisé','Unknown action.'=>'Action inconnue.','Approve comment'=>'Approuver le commentaire','You are about to approve the following comment:'=>'Vous êtes sur le point d’approuver le commentaire suivant :','Permanently delete comment'=>'Supprimer définitivement le commentaire','You are about to delete the following comment:'=>'Vous êtes sur le point de supprimer le commentaire suivant :','You are about to move the following comment to the Trash:'=>'Vous êtes sur le point de déplacer le commentaire suivant dans la corbeille :','You are about to mark the following comment as spam:'=>'Vous êtes sur le point de marquer le commentaire suivant comme indésirable :','This comment is in the Trash. Please move it out of the Trash if you want to edit it.'=>'Ce commentaire est dans la corbeille. Veuillez l’en sortir avant de le modifier.','Sorry, you are not allowed to edit comments on this post.'=>'Désolé, vous n’avez pas l’autorisation de modifier les commentaires de cette publication.','Go Back'=>'Retour','Edit Comment'=>'Modifier le commentaire','Import'=>'Importer','Cannot load %s.'=>'Impossible de charger %s.','Invalid plugin page.'=>'Page d’extension non valide.','Item not updated.'=>'L’élément n’a pas été mis à jour.','Saving is disabled: %s is currently editing this post.'=>'Enregistrement automatique désactivé : %s modifie actuellement cette publication.','Saving is disabled: %s is currently editing this page.'=>'Enregistrement automatique désactivé : %s modifie actuellement cette page.','Someone'=>'Quelqu’un','Draft saved at %s.'=>'Brouillon enregistré à %s.','g:i:s a'=>'G\\h i\\m s\\s','Please provide a custom field value.'=>'Veuillez saisir une valeur pour le champ personnalisé.','Sorry, you must be logged in to reply to a comment.'=>'Désolé, vous devez être connecté·e pour répondre à un commentaire.','You did not enter a category name.'=>'Vous n’avez pas saisi de nom de catégorie.','Comment %d does not exist'=>'Le commentaire %d n’existe pas.','»'=>'»','«'=>'«']]; \ No newline at end of file +« Annuler » pour arrêter, « OK » pour supprimer.','Keep this link private'=>'Ce lien est privé','Visit Link'=>'Visiter le lien','Main Page (no parent)'=>'Publication principale (pas de publication parente)','Show comments'=>'Afficher les commentaires','Separate multiple URLs with spaces'=>'Séparez les URL par des espaces','Send trackbacks to:'=>'Envoyer un rétrolien vers :','Already pinged:'=>'Déjà notifié(s) par ping :','New category name'=>'Nom de la nouvelle catégorie','Publish immediately'=>'Publier tout de suite','Stick this post to the front page'=>'Épingler cet article sur la page d’accueil','Status:'=>'État :','Preview Changes'=>'Prévisualiser les modifications','Link text, e.g. “Ransom Demands (PDF)”'=>'Texte du lien, par exemple « Théorie sur le chaos (PDF) »','Link to image'=>'Lier à l’image','Link Image To:'=>'Lier l’image à :','Image Caption'=>'Légende de l’image','Filter »'=>'Filtrer »','All Types'=>'Tous les types','Search Media'=>'Chercher parmi les médias','Update gallery settings'=>'Mettre à jour les réglages de galerie','Gallery columns:'=>'Colonnes de galerie :','Order:'=>'Ordre :','Random'=>'Aléatoire','Date/Time'=>'Horodatage','Menu order'=>'Ordre du menu','Order images by:'=>'Ranger les images par :','Image File'=>'Fichier image','Link thumbnails to:'=>'Lier les miniatures à :','Descending'=>'Décroissant','Ascending'=>'Croissant','Sort Order:'=>'Ordre de tri :','All Tabs:'=>'Tous les onglets :','Save all changes'=>'Enregistrer toutes les modifications','Add media files from your computer'=>'Ajouter un fichier média depuis votre ordinateur','Insert into Post'=>'Insérer dans la publication','Upload date:'=>'Date de téléversement :','Hide'=>'Masquer','Location of the uploaded file.'=>'Emplacement du fichier envoyé.','Alt text for the image, e.g. “The Mona Lisa”'=>'Texte alternatif de l’image, par ex. : « La Joconde »','File URL'=>'URL du fichier','WordPress'=>'WordPress','Uploads'=>'Téléversements','Gallery (%s)'=>'Galerie (%s)','From URL'=>'Depuis l’URL','From Computer'=>'Depuis votre ordinateur','Image saved'=>'Image enregistrée','Unable to save the image.'=>'Impossible d’enregistrer l’image.','Nothing to save, the image has not changed.'=>'Rien à enregistrer, l’image n’a pas été modifiée.','Error while saving the scaled image. Please reload the page and try again.'=>'Une erreur est survenue lors de la modification de l’échelle de l’image. Veuillez recharger la page et réessayer.','Unable to create new image.'=>'Impossible de créer une nouvelle image.','Image restored successfully.'=>'L’image a bien été rétablie.','Image metadata is inconsistent.'=>'Les métadonnées de l’image ne sont pas cohérentes.','Cannot save image metadata.'=>'Impossible d’enregistrer les métadonnées de l’image.','Cannot load image metadata.'=>'Impossible de charger les métadonnées de l’image.','All sizes except thumbnail'=>'Toutes les tailles sauf la miniature','All image sizes'=>'Toutes les tailles','Apply changes to:'=>'Appliquer les modifications à :','Current thumbnail'=>'Miniature actuelle','Thumbnail Settings'=>'Réglages de la miniature','Selection:'=>'Sélection :','Aspect ratio:'=>'Proportion de taille :','Crop Selection'=>'Sélection de recadrage','Crop Aspect Ratio'=>'Proportion de taille du recadrage','Restore image'=>'Rétablir l’image','Previously edited copies of the image will not be deleted.'=>'Les copies de l’image précédemment modifiées ne seront pas effacées.','Discard any changes and restore the original image.'=>'Abandonner toutes modifications et rétablir l’image originale.','Restore Original Image'=>'Rétablir l’image originale','Original dimensions %s'=>'Taille originale : %s','Scale Image'=>'Redimensionnement de l’image','Flip horizontal'=>'Retourner horizontalement','Flip vertical'=>'Retourner verticalement','Image data does not exist. Please re-upload the image.'=>'Il n’y a aucune donnée d’image. Veuillez retéléverser l’image.','Proceed'=>'Continuer','Connection Type'=>'Type de connexion','Private Key:'=>'Clé privée :','Public Key:'=>'Clé publique :','Authentication Keys'=>'Clés d’authentification','Hostname'=>'Nom de l’hôte :','Connection Information'=>'Informations de connexion','SSH2'=>'SSH2','FTPS (SSL)'=>'FTPS (SSL)','FTP'=>'FTP','Empty archive.'=>'Archive vide.','Could not copy file.'=>'Impossible de copier le fichier.','Could not extract file from archive.'=>'Impossible d’extraire les fichiers depuis l’archive.','Could not retrieve file from archive.'=>'Impossible de récupérer le fichier depuis l’archive.','Could not create temporary file.'=>'Impossible de créer le fichier temporaire.','Specified file failed upload test.'=>'Le test de téléversement du fichier spécifié a échoué.','Invalid form submission.'=>'Envoi non valide du formulaire.','File upload stopped by extension.'=>'Le téléversement de fichier est arrêté par l’extension.','Failed to write file to disk.'=>'Échec de l’écriture du fichier sur le disque.','Missing a temporary folder.'=>'Un dossier temporaire est manquant.','No file was uploaded.'=>'Aucun fichier n’a été envoyé.','The uploaded file was only partially uploaded.'=>'Le fichier n’a été que partiellement envoyé.','Sorry, that file cannot be edited.'=>'Désolé, ce fichier ne peut être modifié.','Popup Comments Template'=>'Modèle de la fenêtre surgissante de commentaires','Comments Template'=>'Modèle pour les commentaires','.htaccess (for rewrite rules )'=>'.htaccess (pour les règles de réécriture)','my-hacks.php (legacy hacks support)'=>'my-hacks.php (reconnaissance des hacks existants)','Application Attachment Template'=>'Modèle pour les programmes attachés','Audio Attachment Template'=>'Modèle pour les fichiers audio attachés','Video Attachment Template'=>'Modèle pour les vidéos attachées','Image Attachment Template'=>'Modèle pour les images attachées','Attachment Template'=>'Modèle pour les fichiers attachés','Theme Functions'=>'Fonctions du thème','Links Template'=>'Modèle pour les liens','404 Template'=>'Modèle pour l’erreur 404','Single Post'=>'Publication seule','Search Form'=>'Formulaire de recherche','Search Requests'=>'Recherche dans les demandes','Category Template'=>'Modèle pour les catégories','Popup Comments'=>'Fenêtre surgissante de commentaires','RTL Stylesheet'=>'Feuille de style RTL','Main Index Template'=>'Modèle pour la page d’accueil','This widget requires JavaScript.'=>'Ce widget nécessite JavaScript.','dashboard%1$s %2$s'=>'%1$s dans %2$s','[Pending]'=>'[En attente]','From %1$s on %2$s %3$s'=>'Par %1$s, sur %2$s%3$s','Move this comment to the Trash'=>'Déplacer ce commentaire dans la corbeille','verbSpam'=>'Indésirable','Mark this comment as spam'=>'Marquer ce commentaire comme indésirable','Reply to this comment'=>'Répondre à ce commentaire','Unapprove this comment'=>'Désapprouver ce commentaire','Approve this comment'=>'Approuver ce commentaire','Page'=>'Page','Configure'=>'Configurer','View all'=>'Tout voir','Other WordPress News'=>'Autres actualités de WordPress (en français)','Right Now'=>'Aujourd’hui','The uploaded file could not be moved to %s.'=>'Le fichier n’a pas pu être déplacé vers %s.','Please select a file'=>'Veuillez choisir un fichier','Return to the Theme Installer'=>'Retourner à l’installation des thèmes','Preview “%s”'=>'Prévisualiser « %s »','Successfully installed the theme %1$s %2$s.'=>'Le thème %1$s %2$s a bien été installé.','Return to the Plugin Installer'=>'Retourner à l’installation des extensions','Successfully installed the plugin %1$s %2$s.'=>'L’extension %1$s %2$s a bien été installée.','Activate Plugin'=>'Activer l’extension','Could not copy files.'=>'Impossible de copier les fichiers.','WordPress is at the latest version.'=>'Vous avez la dernière version de WordPress.','Theme installed successfully.'=>'Le thème a bien été installé.','Installing the theme…'=>'Installation du thème…','Could not remove the old theme.'=>'Impossible de supprimer l’ancien thème.','Removing the old version of the theme…'=>'Retrait de l’ancienne version du thème…','The theme is at the latest version.'=>'Vous avez la dernière version de ce thème.','Plugin installed successfully.'=>'L’extension a bien été installée.','Installing the plugin…'=>'Installation de l’extension…','Unpacking the package…'=>'Décompression de l’archive de l’extension…','Installation package not available.'=>'L’archive d’installation n’est pas disponible.','Could not remove the old plugin.'=>'Impossible de supprimer l’ancienne extension.','Removing the old version of the plugin…'=>'Retrait de l’ancienne version de l’extension…','Unpacking the update…'=>'Décompression de la mise à jour…','The plugin is at the latest version.'=>'Vous avez la dernière version de cette extension.','Disabling Maintenance mode…'=>'Désactivation du mode maintenance…','Enabling Maintenance mode…'=>'Activation du mode maintenance…','Incompatible Archive.'=>'Archive incompatible.','Could not create directory.'=>'Impossible de créer le dossier.','Destination folder already exists.'=>'Le dossier de destination existe déjà.','Installing the latest version…'=>'Installation de la dernière version…','Download failed.'=>'Le téléchargement a échoué.','Unable to locate needed folder (%s).'=>'Impossible de localiser le dossier nécessaire (%s).','Unable to locate WordPress content directory'=>'Impossible de localiser le répertoire de contenu de WordPress.','Unable to locate WordPress plugin directory.'=>'Impossible de localiser le répertoire d’extension de WordPress.','Unable to locate WordPress root directory.'=>'Impossible de localiser le répertoire racine de WordPress.','Filesystem error.'=>'Erreur du système de fichier.','Could not access filesystem'=>'Impossible d’accéder au système de fichiers.','Invalid data provided.'=>'Les données fournies ne sont pas valides.','Unable to perform command: %s'=>'Impossible de lancer la commande : %s','Public and Private keys incorrect for %s'=>'Les clés publiques et privées de %s ne sont pas correctes','Failed to connect to SSH2 Server %s'=>'Impossible de se connecter au serveur SSH2 %s','SSH2 password is required'=>'Le mot de passe SSH2 est nécessaire','SSH2 username is required'=>'L’identifiant SSH2 est nécessaire','SSH2 hostname is required'=>'Le nom de l’hôte SSH2 est nécessaire','The ssh2 PHP extension is not available'=>'L’extension ssh2 de PHP n’est pas disponible','Username/Password incorrect for %s'=>'Le couple identifiant/mot de passe est incorrect pour %s','Failed to connect to FTP Server %s'=>'Impossible de se connecter au serveur FTP %s','FTP password is required'=>'Le mot de passe FTP est nécessaire','FTP username is required'=>'L’identifiant FTP est nécessaire','FTP hostname is required'=>'Le nom de l’hôte FTP est nécessaire','The ftp PHP extension is not available'=>'L’extension ftp de PHP n’est pas disponible','Found %s'=>'Trouvé %s','Changing to %s'=>'Modifier à %s','Could not insert link into the database.'=>'Impossible d’insérer le lien dans la base de données.','Could not update link in the database.'=>'Impossible de mettre à jour le lien dans la base de données.','Movable Type and TypePad'=>'Movable Type et TypePad','LiveJournal'=>'LiveJournal','Try Again'=>'Recommencer','Blogger'=>'Blogger','No importers are available.'=>'Aucun outil d’importation n’est disponible.','Download Export File'=>'Télécharger le fichier d’exportation','This format, which is called WordPress eXtended RSS or WXR, will contain your posts, pages, comments, custom fields, categories, and tags.'=>'Ce format nommé WordPress eXtended RSS (ou WXR) contient tous vos articles, pages, commentaires, champs personnalisés, catégories et étiquettes.','When you click the button below WordPress will create an XML file for you to save to your computer.'=>'Cliquez sur ce bouton pour que WordPress crée un fichier XML que vous pourrez enregistrer sur votre ordinateur.','Export'=>'Exporter','postsAll (%s)'=>'Tous (%s)' . "\0" . 'Tous (%s)','postsMine (%s)'=>'Le mien (%s)' . "\0" . 'Les miens (%s)','%s pattern not updated, somebody is editing it.'=>'Une composition n’a pas été mise à jour : quelqu’un est en train de la modifier.' . "\0" . '%s compositions n’ont pas été mises à jour : quelqu’un est en train de les modifier.','%s post updated.'=>'%s publication mise à jour.' . "\0" . '%s publications mises à jour.','Sorry, you are not allowed to delete this item.'=>'Désolé, vous n’avez pas l’autorisation de supprimer cet élément.','Item not added.'=>'Contenu non ajouté.','Item updated.'=>'Contenu mis à jour.','Item deleted.'=>'Contenu supprimé.','Categories, unlike tags, can have a hierarchy. You might have a Jazz category, and under that have children categories for Bebop and Big Band. Totally optional.'=>'Les catégories, contrairement aux étiquettes, peuvent avoir une hiérarchie. Vous pouvez avoir une catégorie nommée Jazz, et à l’intérieur, plusieurs catégories comme Bebop et Big Band. Ceci est totalement facultatif.','This will be shown when someone hovers over the link in the blogroll, or optionally below the link.'=>'Cette description sera affichée lors du survol du lien dans la liste de liens ; elle pourra également apparaître sous le lien si votre thème le prévoit.','Example: https://wordpress.org/ — do not forget the https://'=>'Exemple : https://fr.wordpress.org/ — Et n’oubliez pas le https://','Web Address'=>'Adresse web','Example: Nifty blogging software'=>'Exemple : Logiciel de création de sites rapide, puissant et efficace','Link added.'=>'Lien ajouté.','Links / Add Link'=>'Liens / Ajouter un lien','Update Link'=>'Mettre à jour le lien','Links / Edit Link'=>'Liens / Modifier le lien','Visit site'=>'Aller sur le site','Update Comment'=>'Mettre à jour le commentaire','Last edited on %1$s at %2$s'=>'Dernière modification le %1$s à %2$s','Last edited by %1$s on %2$s at %3$s'=>'Dernière modification par %1$s, le %2$s à %3$s','Custom Fields'=>'Champs personnalisés','Send Trackbacks'=>'Envoyer des rétroliens','Page restored to revision from %s.'=>'Page rétablie à partir de la révision du %s.','Post saved.'=>'Publication enregistrée.','Post restored to revision from %s.'=>'Publication rétablie à partir de la révision du %s.','Custom field deleted.'=>'Champ personnalisé supprimé.','Custom field updated.'=>'Champ personnalisé mis à jour.','No comments found.'=>'Aucun commentaire trouvé.','Empty Trash'=>'Vider la corbeille','Empty Spam'=>'Supprimer tous les indésirables','Filter'=>'Filtrer','Pings'=>'Pings','Approve'=>'Approuver','Unapprove'=>'Désapprouver','Bulk actions'=>'Actions groupées','Displaying %1$s–%2$s of %3$s'=>'Affichage de %1$s à %2$s sur %3$ss','Search Comments'=>'Rechercher des commentaires','Approved'=>'Approuvé','%s comment permanently deleted.'=>'%s commentaire supprimé définitivement.' . "\0" . '%s commentaires supprimés définitivement.','%s comment restored from the spam.'=>'%s commentaire rétabli depuis les commentaires indésirables.' . "\0" . '%s commentaires rétablis depuis les commentaires indésirables.','%s comment marked as spam.'=>'%s commentaire marqué comme indésirable.' . "\0" . '%s commentaires marqués comme indésirables.','%s comment approved.'=>'%s commentaire approuvé.' . "\0" . '%s commentaires approuvés.','Attach'=>'Joindre','(Unattached)'=>'(Non attaché)','Unpublished'=>'Non publié','View “%s”'=>'Afficher « %s »','Delete Permanently'=>'Supprimer définitivement','Edit “%s”'=>'Modifier « %s »','Choose the part of the image you want to use as your header.'=>'Choisissez la partie de l’image que vous voulez utiliser comme entête.','Image Processing Error'=>'Erreur lors du traitement de l’image','Header updated. Visit your site to see how it looks.'=>'L’entête a été mis à jour. Visiter le site pour voir son nouvel aspect.','Custom Header'=>'Personnalisation de l’entête','Save Changes'=>'Enregistrer les modifications','Choose an image from your computer:'=>'Choisissez une image sur votre ordinateur :','Background updated. Visit your site to see how it looks.'=>'L’arrière-plan a été mis à jour. Afficher votre site pour voir le rendu.','Custom Background'=>'Arrière-plan personnalisé','Unknown action.'=>'Action inconnue.','Approve comment'=>'Approuver le commentaire','You are about to approve the following comment:'=>'Vous êtes sur le point d’approuver le commentaire suivant :','Permanently delete comment'=>'Supprimer définitivement le commentaire','You are about to delete the following comment:'=>'Vous êtes sur le point de supprimer le commentaire suivant :','You are about to move the following comment to the Trash:'=>'Vous êtes sur le point de déplacer le commentaire suivant dans la corbeille :','You are about to mark the following comment as spam:'=>'Vous êtes sur le point de marquer le commentaire suivant comme indésirable :','This comment is in the Trash. Please move it out of the Trash if you want to edit it.'=>'Ce commentaire est dans la corbeille. Veuillez l’en sortir avant de le modifier.','Sorry, you are not allowed to edit comments on this post.'=>'Désolé, vous n’avez pas l’autorisation de modifier les commentaires de cette publication.','Go Back'=>'Retour','Edit Comment'=>'Modifier le commentaire','Import'=>'Importer','Cannot load %s.'=>'Impossible de charger %s.','Invalid plugin page.'=>'Page d’extension non valide.','Item not updated.'=>'L’élément n’a pas été mis à jour.','Saving is disabled: %s is currently editing this post.'=>'Enregistrement automatique désactivé : %s modifie actuellement cette publication.','Saving is disabled: %s is currently editing this page.'=>'Enregistrement automatique désactivé : %s modifie actuellement cette page.','Someone'=>'Quelqu’un','Draft saved at %s.'=>'Brouillon enregistré à %s.','g:i:s a'=>'G\\h i\\m s\\s','Please provide a custom field value.'=>'Veuillez saisir une valeur pour le champ personnalisé.','Sorry, you must be logged in to reply to a comment.'=>'Désolé, vous devez être connecté·e pour répondre à un commentaire.','You did not enter a category name.'=>'Vous n’avez pas saisi de nom de catégorie.','Comment %d does not exist'=>'Le commentaire %d n’existe pas.','»'=>'»','«'=>'«']]; \ No newline at end of file diff --git a/web/app/languages/admin-fr_FR.mo b/web/app/languages/admin-fr_FR.mo old mode 100755 new mode 100644 index 914ec9d1..af26695d Binary files a/web/app/languages/admin-fr_FR.mo and b/web/app/languages/admin-fr_FR.mo differ diff --git a/web/app/languages/admin-fr_FR.po b/web/app/languages/admin-fr_FR.po old mode 100755 new mode 100644 index 0cfddcd1..7a8c509a --- a/web/app/languages/admin-fr_FR.po +++ b/web/app/languages/admin-fr_FR.po @@ -1,15 +1,15 @@ -# Translation of WordPress - 6.7.x - Development - Administration in French (France) -# This file is distributed under the same license as the WordPress - 6.7.x - Development - Administration package. +# Translation of WordPress - 6.8.x - Development - Administration in French (France) +# This file is distributed under the same license as the WordPress - 6.8.x - Development - Administration package. msgid "" msgstr "" -"PO-Revision-Date: 2024-11-28 10:44:04+0000\n" +"PO-Revision-Date: 2025-06-12 14:40:36+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: GlotPress/4.0.1\n" "Language: fr\n" -"Project-Id-Version: WordPress - 6.7.x - Development - Administration\n" +"Project-Id-Version: WordPress - 6.8.x - Development - Administration\n" #. translators: Default start of the week. 0 = Sunday, 1 = Monday. #: wp-admin/includes/schema.php:418 @@ -37,6 +37,254 @@ msgctxt "default GMT offset or timezone string" msgid "0" msgstr "Europe/Paris" +#: wp-admin/about.php:93 +msgid "Speculative loading speeds up navigation by preloading links before users navigate to them, bcrypt hashing strengthens password security automatically, and database optimizations improve performance." +msgstr "Le chargement spéculatif accélère la navigation en préchargeant les liens avant que les internautes ne les consultent, le hachage bcrypt renforce automatiquement la sécurité des mots de passe, et les optimisations de la base de données améliorent les performances." + +#. translators: 1: URL to WordPress release notes, 2: WordPress version number, +#. 3: The PHP extension name needed. +#: wp-admin/upgrade.php:68 +msgid "You cannot upgrade because WordPress %2$s requires the %3$s PHP extension." +msgstr "Vous ne pouvez pas effectuer la mise à niveau car WordPress %2$s nécessite l’extension PHP %3$s." + +#: wp-admin/themes.php:70 +msgid "An error occurred while deleting the theme." +msgstr "Une erreur s‘est produite lors de la suppression du thème." + +#: wp-admin/theme-install.php:57 wp-admin/themes.php:234 +#: wp-admin/themes.php:255 wp-admin/network/menu.php:86 +#: wp-admin/network/themes.php:366 +msgid "Add Theme" +msgstr "Ajouter un thème" + +#. translators: %s: https://wordpress.org/about/privacy +#: wp-admin/privacy.php:62 +msgid "WordPress.org takes privacy and transparency very seriously. To learn more about what data is collected, and how it is used, please visit the WordPress.org Privacy Policy." +msgstr "WordPress.org prend en compte la confidentialité et la transparence vraiment sérieusement. Pour en apprendre plus à propos des données collectées, et comment elles sont utilisées, veuillez visiter la politique de confidentialité de WordPress.org." + +#: wp-admin/privacy.php:29 +msgid "WordPress.org takes privacy and transparency very seriously" +msgstr "WordPress.org prend la confidentialité et la transparence très au sérieux" + +#. translators: %s: File path. +#: wp-admin/plugin-editor.php:246 wp-admin/theme-editor.php:245 +msgid "File: %s" +msgstr "Fichier : %s" + +#: wp-admin/menu.php:332 wp-admin/menu.php:334 wp-admin/menu.php:342 +#: wp-admin/menu.php:344 wp-admin/user-edit.php:269 wp-admin/user-new.php:269 +#: wp-admin/user-new.php:391 wp-admin/user-new.php:515 +#: wp-admin/user-new.php:667 wp-admin/users.php:781 +#: wp-admin/network/menu.php:62 wp-admin/network/site-users.php:336 +#: wp-admin/network/site-users.php:380 wp-admin/network/user-new.php:100 +#: wp-admin/network/user-new.php:107 wp-admin/network/user-new.php:161 +#: wp-admin/network/users.php:292 +msgid "Add User" +msgstr "Ajouter un compte" + +#: wp-admin/menu.php:311 wp-admin/plugins.php:770 wp-admin/network/menu.php:111 +msgid "Add Plugin" +msgstr "Ajouter une extension" + +#: wp-admin/menu.php:217 +msgctxt "design menu item" +msgid "Design" +msgstr "Conception" + +#: wp-admin/menu-header.php:285 +msgid "Collapse Main Menu" +msgstr "Replier le menu principal" + +#: wp-admin/media-upload.php:39 +msgid "Invalid item ID. You can view all media items in the Media Library." +msgstr "ID d’élément invalide. Vous pouvez voir tous les éléments media dans la Médiathèque." + +#: wp-admin/media-upload.php:38 +msgid "An error occurred during the upload process." +msgstr "Une erreur s’est produite lors du processus de téléversement." + +#. translators: 1: URL to WordPress release notes, 2: WordPress version number, +#. 3: The PHP extension name needed. +#: wp-admin/install.php:312 +msgid "You cannot install because WordPress %2$s requires the %3$s PHP extension." +msgstr "Vous ne pouvez pas installer car WordPress %2$s nécessite l’extension PHP %3$s." + +#: wp-admin/includes/template.php:738 +msgid "Add Custom Field:" +msgstr "Ajouter un champ personnalisé :" + +#: wp-admin/includes/revision.php:469 +msgid "An error occurred while loading the comparison. Please refresh the page and try again." +msgstr "Une erreur s’est produite lors du chargement de la comparaison. Veuillez actualiser la page et réessayer." + +#. translators: Hidden accessibility text. +#: wp-admin/includes/meta-boxes.php:1203 wp-admin/includes/meta-boxes.php:1208 +msgid "+ Add Category" +msgstr "+ Ajouter une Catégorie" + +#: wp-admin/includes/class-wp-debug-data.php:1715 +msgid "Does not exist" +msgstr "N’existe pas" + +#: wp-admin/includes/class-wp-debug-data.php:530 +msgid "robots.txt" +msgstr "robots.txt" + +#. translators: %s: robots.txt +#: wp-admin/includes/class-wp-debug-data.php:525 +msgid "WordPress cannot dynamically serve a %s file due to a lack of rewrite rule support" +msgstr "WordPress ne peut pas traiter dynamiquement un fichier %s en raison de l‘absence de la prise en charge des règles de réécriture." + +#. translators: %s: robots.txt +#: wp-admin/includes/class-wp-debug-data.php:519 +msgid "Your site is using the dynamic %s file which is generated by WordPress." +msgstr "Votre site utilise le fichier %s dynamique qui est généré par WordPress." + +#. translators: %s: robots.txt +#: wp-admin/includes/class-wp-debug-data.php:513 +msgid "There is a static %s file in your installation folder. WordPress cannot dynamically serve one." +msgstr "Il y a un fichier %s statique dans votre dossier d’installation. WordPress ne peut pas l’exploiter dynamiquement." + +#: wp-admin/includes/class-custom-image-header.php:834 +#: wp-admin/includes/class-custom-image-header.php:1022 +msgid "The active theme does not support uploading a custom header image. Please ensure your theme supports custom headers and try again." +msgstr "Le thème actif ne prend pas en charge le téléversement d’une image d’entête personnalisée. Veuillez vous assurer que le thème prenne en charge les entêtes personnalisés et réessayer." + +#: wp-admin/includes/class-custom-image-header.php:833 +#: wp-admin/includes/class-custom-image-header.php:1021 +#: wp-admin/includes/class-custom-image-header.php:1032 +msgid "An error occurred while processing your header image." +msgstr "Une erreur s’est produite lors du traitement de l’image d’entête." + +#: wp-admin/customize.php:80 +msgid "Please try again or start a new changeset. This changeset cannot be further modified." +msgstr "Veuillez réessayer ou commencer un nouveau jeu de modifications. Ce jeu de modifications ne peut pas être modifié davantage." + +#: wp-admin/customize.php:79 +msgid "An error occurred while saving your changeset." +msgstr "Une erreur s’est produite lors de l’enregistrement de votre jeu de modifications." + +#: wp-admin/credits.php:150 +msgid "Triage Lead" +msgstr "Responsable du triage" + +#: wp-admin/credits.php:149 +msgid "Tech Lead" +msgstr "Responsable technique" + +#: wp-admin/credits.php:148 +msgid "Default Theme Development Lead" +msgstr "Responsable du développement du thème par défaut" + +#: wp-admin/credits.php:147 +msgid "Default Theme Design Lead" +msgstr "Responsable de la conception du thème natif" + +#: wp-admin/credits.php:146 +msgid "Performance Lead" +msgstr "Responsable des performances" + +#: wp-admin/credits.php:145 +msgid "Design Lead" +msgstr "Responsable du design" + +#: wp-admin/credits.php:144 +msgid "Test Lead" +msgstr "Responsable des tests" + +#: wp-admin/credits.php:143 +msgid "Documentation Lead" +msgstr "Responsable de la documentation" + +#: wp-admin/credits.php:142 +msgid "Editor Triage Lead" +msgstr "Responsable du triage de l’éditeur" + +#: wp-admin/credits.php:141 +msgid "Editor Tech Lead" +msgstr "Responsable technique côté éditeur" + +#: wp-admin/credits.php:140 +msgid "Core Triage Lead" +msgstr "Responsable du triage du cœur" + +#: wp-admin/credits.php:139 +msgid "Core Tech Lead" +msgstr "Responsable technique" + +#: wp-admin/credits.php:137 +msgid "Minor Release Lead" +msgstr "Responsable de la version mineure" + +#: wp-admin/credits.php:136 +msgid "Release Coordination" +msgstr "Coordination de la version" + +#: wp-admin/about.php:194 +msgid "WordPress 6.8 packs a wide range of performance fixes and enhancements to speed up everything from editing to browsing. Beyond speculative loading, WordPress 6.8 pays special attention to the block editor, block type registration, and query caching. Plus, imagine never waiting longer than 50 milliseconds—for any interaction. In WordPress 6.8, the Interactivity API takes a first step toward that goal." +msgstr "WordPress 6.8 propose de nombreuses corrections et améliorations de performances pour accélérer l’ensemble de votre site, de l’administration aux temps de chargement ressentis par les personnes qui visitent votre site. Au-delà du chargement spéculatif désormais intégré nativement, WordPress 6.8 accorde une attention particulière à l’éditeur de blocs, à l’enregistrement des types de blocs et à la mise en cache des requêtes. N’attendez jamais plus de 50 millisecondes entre chaque interaction. Dans WordPress 6.8, l’API de gestion de l’interactivité constitue un premier pas vers cet objectif." + +#: wp-admin/about.php:181 +msgid "Work continues on optimizing cache key generation in the WP_Query class. The goal is, as ever, to boost your site’s performance, in this case by taking some more of the load off your database. This is especially good if you get a lot of traffic." +msgstr "Le travail se poursuit sur l‘optimisation de la génération des clés de cache dans la classe WP_Query. L‘objectif est, comme toujours, d‘améliorer les performances de votre site, dans ce cas en réduisant davantage la charge de votre base de données. Cela est particulièrement utile si vous avez beaucoup de trafic." + +#: wp-admin/about.php:180 +msgid "Take a load off the database" +msgstr "Allégement de la base de données" + +#: wp-admin/about.php:172 +msgid "100+ accessibility fixes and enhancements touch a broad spectrum of the WordPress experience. This release includes fixes to every bundled theme, improvements to the navigation menu management, the customizer, and simplified labeling. The Block Editor has over 70 improvements to blocks, DataViews, and to its overall user experience." +msgstr "Plus de 100 correctifs et améliorations en matière d’accessibilité touchent un large champ de l’expérience WordPress. Cette version inclut des correctifs pour chaque thème natif, des améliorations de la gestion des menus de navigation, de l’outil de personnalisation, et un étiquetage simplifié. L’éditeur de blocs bénéficie de plus de 70 améliorations concernant les blocs, les vues de données, et l’expérience globale des utilisateurs et utilisatrices." + +#: wp-admin/about.php:158 +msgid "Now passwords are harder to crack with bcrypt hashing, which takes a lot more computing power to break. This strengthens overall security, as do other encryption improvements across WordPress. You don’t need to do anything—everything updates automatically." +msgstr "Les mots de passe sont désormais plus difficiles à déchiffrer grâce au hachage bcrypt, qui nécessite beaucoup plus de puissance de calcul pour être cassé. Cela renforce la sécurité globale, tout comme d‘autres améliorations de chiffrement dans WordPress. Vous n’avez rien à faire : tout se met à jour automatiquement." + +#: wp-admin/about.php:157 +msgid "Stronger password security with bcrypt" +msgstr "Sécurité renforcée des mots de passe avec bcrypt" + +#: wp-admin/about.php:141 +msgid "In WordPress 6.8, pages load faster than ever. When you or your user hovers over or clicks a link, WordPress may preload the next page, for a smoother, near-instant experience. The system balances speed and efficiency, and you can control how it works, with a plugin or your own code. This feature only works in modern browsers—older ones will simply ignore it without any impact." +msgstr "Dans WordPress 6.8, les pages se chargent plus rapidement que jamais. Lorsque vous ou tout internaute survolez ou cliquez sur un lien, WordPress peut précharger la page suivante pour une expérience plus fluide et quasi instantanée. Le système équilibre vitesse et efficacité, et vous pouvez contrôler son fonctionnement avec une extension ou votre propre code. Cette fonctionnalité fonctionne uniquement dans les navigateurs modernes ; les anciens l’ignoreront simplement sans aucun impact." + +#: wp-admin/about.php:140 +msgid "Near-instant page loads, thanks to Speculative Loading" +msgstr "Chargement quasi instantané des pages, grâce au chargement spéculatif" + +#: wp-admin/about.php:134 +msgid "Easier ways to see your options in Data Views, and you can exclude sticky posts from the Query Loop. Plus, you’ll find lots of little improvements in the editor that smooth your way through everything you build." +msgstr "Visualisez plus facilement vos options dans les vues de données et excluez les publications épinglées de la boucle de requête. De plus, l’éditeur propose de nombreuses améliorations qui simplifient la création de contenu." + +#: wp-admin/about.php:113 +msgid "Plus, now you can see it in Classic themes that have editor-styles or a theme.json file. Find the Style Book under Appearance > Design and use it to preview your theme’s evolution, as you edit CSS or make changes in the Customizer." +msgstr "De plus, vous pouvez désormais en profiter dans les thèmes classiques dotés de styles destinés à l’éditeur ou d’un fichier theme.json. Vous pouvez accéder au guide de styles dans Apparence > Design. Utilisez-le pour prévisualiser l’évolution de votre thème lorsque vous modifiez ses CSS ou effectuez des modifications dans l’outil de personnalisation." + +#. translators: %s is a direct link to the Style Book. +#: wp-admin/about.php:109 +msgid "Plus, now you can see it in Classic themes that have editor-styles or a theme.json file. Find the Style Book under Appearance > Design and use it to preview your theme’s evolution, as you edit CSS or make changes in the Customizer." +msgstr "De plus, vous pouvez désormais en profiter dans les thèmes classiques dotés de styles destinés à l’éditeur ou d’un fichier theme.json. Vous pouvez accéder au guide de styles dans Apparence > Design. Utilisez-le pour prévisualiser l’évolution de votre thème lorsque vous modifiez ses CSS ou effectuez des modifications dans l’outil de personnalisation." + +#: wp-admin/about.php:101 +msgid "The Style Book has a new, structured layout and clearer labels, to make it even easier to edit colors, typography—almost all your site styles—in one place." +msgstr "Le guide de styles présente une nouvelle mise en page structurée et des libellés plus clairs, pour faciliter encore plus la modification des couleurs, de la typographie et de presque tous les styles de votre site, en un seul endroit." + +#: wp-admin/about.php:99 +msgid "The Style Book gets a cleaner look—and a few new tricks" +msgstr "Le guide de style fait peau neuve et s’enrichit de quelques nouvelles fonctionnalités" + +#: wp-admin/about.php:92 +msgid "The Style Book now has a structured layout and works with Classic themes, giving you more control over global styles." +msgstr "Le guide de styles a maintenant une mise en page structurée et fonctionne désormais avec les thèmes classiques, ce qui vous apporte plus de contrôle sur les styles globaux de votre site." + +#: wp-admin/about.php:91 +msgid "WordPress 6.8 polishes and refines the tools you use every day, making your site faster, more secure, and easier to manage." +msgstr "WordPress 6.8 améliore et affine les outils que vous utilisez tous les jours, rendant votre site plus rapide, plus sûr et plus facile à gérer." + +#: wp-admin/about.php:90 +msgid "A release polished to a high sheen." +msgstr "Une version peaufinée à la perfection" + #: wp-admin/plugins.php:613 msgid "If a dependent plugin is missing some dependencies, its activation button will be disabled until the required dependencies are activated." msgstr "S‘il manque des dépendances à une extension dépendante, son bouton d‘activation sera désactivé jusqu‘à ce que les dépendances nécessaires soient activées." @@ -110,16 +358,16 @@ msgstr "Sélectionnez une révision" msgid "A directory could not be read." msgstr "Un répertoire n’a pu être lu." -#: wp-admin/includes/class-wp-debug-data.php:1583 +#: wp-admin/includes/class-wp-debug-data.php:1611 msgid "Database Extension" msgstr "Extension de la base de données" -#: wp-admin/includes/class-wp-debug-data.php:1439 -#: wp-admin/includes/class-wp-debug-data.php:1448 +#: wp-admin/includes/class-wp-debug-data.php:1467 +#: wp-admin/includes/class-wp-debug-data.php:1476 msgid "Empty value" msgstr "Valeur vide" -#: wp-admin/includes/class-wp-debug-data.php:611 +#: wp-admin/includes/class-wp-debug-data.php:639 msgid "Max simultaneous file uploads" msgstr "Nombre maximal de fichiers téléversés en simultané." @@ -131,77 +379,21 @@ msgstr "Ordre du menu" msgid "Menu Parent" msgstr "Menu parent" -#: wp-admin/edit-form-advanced.php:549 +#: wp-admin/edit-form-advanced.php:545 msgid "Skip to Editor" msgstr "Aller à l’éditeur" #. translators: %s: WordPress version number. -#: wp-admin/about.php:279 +#: wp-admin/about.php:289 msgid "WordPress %s Field Guide" msgstr "Guide technique de WordPress %s" #. translators: %s: WordPress version number. -#: wp-admin/about.php:252 +#: wp-admin/about.php:262 msgid "WordPress %s Release Notes" msgstr "Notes de version de WordPress %s" -#: wp-admin/about.php:184 -msgid "65+ accessibility fixes and enhancements focus on foundational aspects of the WordPress experience, from improving user interface components and keyboard navigation in the Editor, to an accessible heading on WordPress login screens and clearer labeling throughout." -msgstr "Plus de 65 correctifs et améliorations d’accessibilité focalisées sur les aspects fondamentaux de l’expérience de WordPress, de l’amélioration des composants d’interface d’administration à la navigation clavier dans l’éditeur, en passant par des niveaux de titres plus accessibles dans les écrans de connexion et de meilleurs libellés." - -#: wp-admin/about.php:175 -msgid "WordPress 6.7 delivers important performance updates, including faster pattern loading, optimized previews in the data views component, improved PHP 8+ support and removal of deprecated code, auto sizes for lazy-loaded images, and more efficient tag processing in the HTML API." -msgstr "WordPress 6.7 propose d’importantes mises à jour en matière de performances, notamment un chargement plus rapide des compositions, des aperçus optimisés pour le composant des vues de données, une meilleure prise en charge de PHP 8 et plus, la suppression du code obsolète, des tailles automatiques pour les images en chargement différé, ainsi qu’un traitement plus efficace des balises dans l’API HTML." - -#: wp-admin/about.php:159 -msgid "Create, edit, remove, and apply font size presets with the next addition to the Styles interface. Override theme defaults or create your own custom font size, complete with fluid typography for responsive font scaling. Get into the details!" -msgstr "Créez, modifiez, retirez et appliquez des préréglages de taille de police avec le dernier apport à l’interface des Styles. Surchargez le thème par défaut ou créez votre propre taille de police personnalisée, avec une typographie dynamique pour un redimensionnement responsive des polices. Prenez soin des détails !" - -#: wp-admin/about.php:158 -msgid "New style section, new possibilities" -msgstr "Nouvelle section de style, nouvelles possibilités" - -#: wp-admin/about.php:156 -msgid "Embrace your inner font nerd" -msgstr "Laissez s’exprimer votre passion pour la typographie" - -#: wp-admin/about.php:139 -msgid "This feature introduces a new UI for connecting blocks to custom fields, putting control of dynamic content directly in the editor. Link blocks with fields in just a few clicks, enhancing flexibility and efficiency when building. Your clients will love you—as if they didn’t already." -msgstr "Cette fonctionnalité introduit une nouvelle interface pour connecter des blocs à des champs personnalisés. Cela vous donne le contrôle d’éléments dynamiques directement dans l’éditeur. Vous pouvez relier des blocs à des champs en quelques clics, ce qui améliore la flexibilité et l’efficacité de ces actions. Vos clients vont adorer ça." - -#: wp-admin/about.php:138 -msgid "A streamlined way to create dynamic content" -msgstr "Une manière simplifiée de créer du contenu dynamique" - -#: wp-admin/about.php:136 -msgid "Connect blocks and custom fields with no hassle (or code)" -msgstr "Connectez des blocs et des champs personnalisés sans souci (ou code)" - -#: wp-admin/about.php:129 -msgid "Edit and arrange entire sections of your content like never before. A broader view of your site lets you add, edit, shuffle, or remove patterns to your liking. Embrace your inner architect." -msgstr "Modifiez et organisez des sections entières de votre contenu comme jamais auparavant. Une vue plus large de votre site vous permet d‘ajouter, de modifier, de mélanger ou de supprimer des compositions à votre guise. Laissez s‘exprimer l‘architecte qui est en vous." - -#: wp-admin/about.php:128 -msgid "Explore your content from a new perspective" -msgstr "Explorez votre contenu sous un nouvel angle" - -#: wp-admin/about.php:126 -msgid "Get the big picture with Zoom Out" -msgstr "Obtenez une vue d’ensemble en dézoomant" - -#: wp-admin/about.php:109 -msgid "Twenty Twenty-Five offers a flexible, design-focused theme that lets you build stunning sites with ease. Tailor your aesthetic with an array of style options, block patterns, and color palettes. Pared down to the essentials, this is a theme that can truly grow with you." -msgstr "Twenty Twenty-Five est un thème polyvalent, axé sur le design, qui vous permet de créer des sites époustouflants en toute simplicité. Personnalisez votre esthétisme grâce à un éventail d‘options de style, de compositions de blocs et de palettes de couleurs. Réduit à l‘essentiel, c‘est un thème qui peut vraiment évoluer avec vous." - -#: wp-admin/about.php:108 -msgid "Endless possibility without complexity" -msgstr "Une infinité de possibilités sans complexité" - -#: wp-admin/about.php:99 -msgid "WordPress 6.7 debuts the modern Twenty Twenty-Five theme, offering ultimate design flexibility for any blog at any scale. Control your site typography like never before with new font management features. The new Zoom Out feature lets you design your site with a macro view, stepping back from the details to bring the big picture to life." -msgstr "WordPress 6.7 introduit le thème Twenty Twenty-Five, vous offrant une flexibilité de conception ultime pour n’importe quel site, à n’importe quelle échelle. Contrôlez la typographie de votre site comme jamais auparavant grâce aux nouvelles fonctionnalités de gestion des polices. La nouvelle fonction de zoom arrière vous permet de concevoir votre site avec une vue macro, en prenant du recul par rapport aux détails pour obtenir une vue d’ensemble." - -#: wp-admin/includes/class-wp-debug-data.php:1893 +#: wp-admin/includes/class-wp-debug-data.php:1926 msgid "The directory does not exist." msgstr "Le répertoire n’existe pas." @@ -213,7 +405,7 @@ msgstr "Documentation on Editing Files" msgstr "Documentation sur la modification de fichiers (en anglais)" -#: wp-admin/plugin-editor.php:151 +#: wp-admin/plugin-editor.php:154 msgid "Documentation on Editing Plugins" msgstr "Documentation sur la modification d’extensions (en anglais)" @@ -238,7 +430,7 @@ msgstr "https://developer.wordpress.org/advanced-administration/wordpress/feeds/ msgid "Documentation on Nginx configuration." msgstr "Documentation sur les réglages de Nginx (en anglais)." -#: wp-admin/options-general.php:35 wp-admin/options-general.php:255 +#: wp-admin/options-general.php:35 wp-admin/options-general.php:254 msgid "https://developer.wordpress.org/advanced-administration/server/wordpress-in-directory/" msgstr "https://developer.wordpress.org/advanced-administration/server/wordpress-in-directory/" @@ -262,8 +454,8 @@ msgstr "L’URL n’est pas renseignée." #: wp-admin/includes/file.php:329 wp-admin/options-permalink.php:468 #: wp-admin/options-permalink.php:500 wp-admin/options-permalink.php:536 -#: wp-admin/plugin-editor.php:326 wp-admin/setup-config.php:487 -#: wp-admin/theme-editor.php:362 +#: wp-admin/plugin-editor.php:336 wp-admin/setup-config.php:487 +#: wp-admin/theme-editor.php:367 msgid "https://developer.wordpress.org/advanced-administration/server/file-permissions/" msgstr "https://developer.wordpress.org/advanced-administration/server/file-permissions/" @@ -314,19 +506,19 @@ msgstr "https://developer.wordpress.org/advanced-administration/performance/opti msgid "https://developer.wordpress.org/advanced-administration/performance/optimization/#caching" msgstr "https://developer.wordpress.org/advanced-administration/performance/optimization/#caching" -#: wp-admin/includes/class-wp-debug-data.php:832 +#: wp-admin/includes/class-wp-debug-data.php:860 msgid "Fonts directory size" msgstr "Taille du répertoire de polices" -#: wp-admin/includes/class-wp-debug-data.php:828 +#: wp-admin/includes/class-wp-debug-data.php:856 msgid "Fonts directory location" msgstr "Emplacement du répertoire de polices" -#: wp-admin/includes/class-wp-debug-data.php:1683 +#: wp-admin/includes/class-wp-debug-data.php:1712 msgid "The fonts directory" msgstr "Le répertoire de polices" -#: wp-admin/includes/class-wp-automatic-updater.php:1331 +#: wp-admin/includes/class-wp-automatic-updater.php:1350 msgid "The following plugins failed to update. If there was a fatal error in the update, the previously installed version has been restored." msgstr "Les extensions suivantes n’ont pas pu être mises à jour. S’il y a eu une erreur fatale lors de la mise à jour, la version précédente a été restaurée." @@ -354,31 +546,31 @@ msgstr "Si vous êtes l’auteur ou l’autrice d’une extension, vous pouvez e #: wp-admin/erase-personal-data.php:59 msgid "If you are a plugin author, you can learn more about how to add the Personal Data Eraser to a plugin." -msgstr "Si vous êtes l’auteur/autrice d’une extension, vous pouvez en apprendre plus sur comment implémenter l’outil de suppression des données personnelles sur votre extension (en anglais)." +msgstr "Si vous êtes l’auteur ou l’autrice d’une extension, vous pouvez en apprendre plus sur comment implémenter l’outil de suppression des données personnelles sur votre extension (en anglais)." -#: wp-admin/about.php:205 +#: wp-admin/about.php:215 msgid "See everything new" msgstr "Découvrez toutes les nouveautés" -#: wp-admin/about.php:205 -msgid "https://wordpress.org/download/releases/6-7/" -msgstr "https://wordpress.org/download/releases/6-7/" +#: wp-admin/about.php:215 +msgid "https://wordpress.org/download/releases/6-8/" +msgstr "https://wordpress.org/download/releases/6-8/" #. translators: %s: Version number. -#: wp-admin/about.php:197 +#: wp-admin/about.php:207 msgid "For a comprehensive overview of all the new features and enhancements in WordPress %s, please visit the feature-showcase website." msgstr "Pour une vision complète de toutes les nouvelles fonctionnalités et améliorations de WordPress %s, veuillez consulter le site de démonstration des fonctionnalités (en anglais)." -#: wp-admin/about.php:191 +#: wp-admin/about.php:201 msgid "And much more" msgstr "Et bien plus encore" -#: wp-admin/menu.php:209 +#: wp-admin/menu.php:219 msgctxt "patterns menu item" msgid "Patterns" msgstr "Compositions" -#: wp-admin/options-general.php:192 wp-admin/options-general.php:198 +#: wp-admin/options-general.php:191 wp-admin/options-general.php:197 msgid "Change Site Icon" msgstr "Modifier l’icône du site" @@ -396,7 +588,7 @@ msgctxt "plugin" msgid "Update Now" msgstr "Mettre à jour maintenant" -#: wp-admin/includes/class-wp-theme-install-list-table.php:340 +#: wp-admin/includes/class-wp-theme-install-list-table.php:339 #: wp-admin/includes/theme-install.php:207 msgctxt "theme" msgid "Install Now" @@ -512,13 +704,13 @@ msgstr "Installer maintenant" msgid "Created by a worldwide team of passionate individuals" msgstr "Créé par une équipe de personnes passionnées, réparties sur toute la planète." -#: wp-admin/about.php:183 +#: wp-admin/about.php:171 msgid "Accessibility improvements" -msgstr "Améliorations de l’accessibilité" +msgstr "Amélioration de l’accessibilité" -#: wp-admin/about.php:174 +#: wp-admin/about.php:193 msgid "Performance updates" -msgstr "Améliorations des performances" +msgstr "Amélioration des performances" #: wp-admin/update.php:158 wp-admin/update.php:310 msgid "Only .zip archives may be uploaded." @@ -530,25 +722,19 @@ msgid "The block widgets require JavaScript. Please enable JavaScript in your br msgstr "Les blocs widget requiert JavaScript. Veuillez activer JavaScript dans les paramètres de votre navigateur ou activez l’extension Classic Widgets." #. translators: %s: Link to install the Classic Editor plugin. -#: wp-admin/edit-form-blocks.php:368 +#: wp-admin/edit-form-blocks.php:405 msgid "The block editor requires JavaScript. Please enable JavaScript in your browser settings, or install the Classic Editor plugin." msgstr "L’éditeur de blocs requiert JavaScript. Veuillez activer JavaScript dans les paramètres de votre navigateur ou activez l’extension Classic Editor." #. translators: %s: Link to activate the Classic Editor plugin. -#: wp-admin/edit-form-blocks.php:359 +#: wp-admin/edit-form-blocks.php:396 msgid "The block editor requires JavaScript. Please enable JavaScript in your browser settings, or activate the Classic Editor plugin." msgstr "L’éditeur de blocs requiert JavaScript. Veuillez activer JavaScript dans les paramètres de votre navigateur ou activez l’extension Classic Editor." -#: wp-admin/my-sites.php:81 wp-admin/network/menu.php:53 -#: wp-admin/network/site-new.php:182 wp-admin/network/site-new.php:192 -#: wp-admin/network/sites.php:391 +#: wp-admin/my-sites.php:81 msgid "Add New Site" msgstr "Ajouter un site" -#: wp-admin/menu.php:300 wp-admin/plugins.php:770 wp-admin/network/menu.php:106 -msgid "Add New Plugin" -msgstr "Ajouter une extension" - #: wp-admin/includes/image-edit.php:80 msgid "Rotate 180°" msgstr "Rotation de 180°" @@ -589,12 +775,12 @@ msgid "When using Bulk Edit, you can change the metadata (categories, author, et msgstr "Lorsque vous utilisez les actions groupées, vous pouvez modifier les métadonnées (catégories, auteur/autrice, etc.) pour tous les articles sélectionnés en une seule fois. Pour retirer un article de la sélection, il suffit de cliquer sur le bouton %sremove situé devant le nom de l’article dans la liste." #. translators: %s: WordPress version number. -#: wp-admin/about.php:262 +#: wp-admin/about.php:272 msgid "Read the WordPress %s Release Notes for information on installation, enhancements, fixed issues, release contributors, learning resources, and the list of file changes." msgstr "Lisez les notes de version de WordPress %s pour obtenir des informations sur l’installation, les améliorations, les problèmes corrigés, les contributeurs et contributrices de la version, les ressources d’apprentissage et la liste des modifications apportées aux fichiers." #. translators: %s: WordPress version number. -#: wp-admin/about.php:289 +#: wp-admin/about.php:299 msgid "Explore the WordPress %s Field Guide. Learn about the changes in this release with detailed developer notes to help you build with WordPress." msgstr "Explorez le guide des changements techniques de WordPress %s. Découvrez les changements de cette version avec les notes détaillées des développeurs et développeuses qui vous permettent de construire votre site avec WordPress." @@ -615,7 +801,7 @@ msgid "Your WordPress version is %1$s, however the new plugin version requires % msgstr "La version de WordPress sur votre serveur est %1$s, alors que la nouvelle version de l’extension nécessite une version %2$s." #. translators: %s: WordPress version. -#: wp-admin/about.php:78 +#: wp-admin/about.php:79 msgid "https://wordpress.org/support/wordpress-version/version-%s/" msgstr "https://wordpress.org/support/wordpress-version/version-%s/" @@ -639,7 +825,7 @@ msgstr "Sur les systèmes avec moins de ressources, ça peut mener à des dépas msgid "This feature will create a temporary backup of a plugin or theme before it is upgraded. This backup is used to restore the plugin or theme back to its previous state if there is an error during the update process." msgstr "Cette fonctionnalité va créer une sauvegarde temporaire d’une extension ou thème avant sa mise à jour. Cette sauvegarde est utilisée pour restaurer l’extension ou le thème à son état précédent, en cas d’erreur pendant le processus." -#: wp-admin/site-editor.php:196 +#: wp-admin/site-editor.php:327 msgid "The site editor requires JavaScript. Please enable JavaScript in your browser settings." msgstr "L’éditeur de site nécessite JavaScript. Veuillez autoriser JavaScript dans vos réglages navigateur." @@ -661,7 +847,7 @@ msgid "New custom field name" msgstr "Nouveau nom de champ personnalisé" #. translators: Hidden accessibility text. -#: wp-admin/includes/media.php:2753 +#: wp-admin/includes/media.php:2758 msgid "Search Media:" msgstr "Rechercher un média :" @@ -703,7 +889,7 @@ msgstr "Enregistrer les modifications" msgid "Cancel Editing" msgstr "Annuler la modification" -#: wp-admin/includes/file.php:2009 +#: wp-admin/includes/file.php:2027 msgid "Could not create the destination directory." msgstr "Impossible de créer le répertoire de destination." @@ -928,28 +1114,28 @@ msgstr "Tableau trié par URL." msgid "Table ordered by Name." msgstr "Tableau trié par nom." -#: wp-admin/includes/class-wp-debug-data.php:519 +#: wp-admin/includes/class-wp-debug-data.php:547 msgid "Current Server time" msgstr "Heure actuelle du serveur" -#: wp-admin/includes/class-wp-debug-data.php:515 +#: wp-admin/includes/class-wp-debug-data.php:543 msgid "Current UTC time" msgstr "Heure UTC actuelle" -#: wp-admin/includes/class-wp-debug-data.php:511 +#: wp-admin/includes/class-wp-debug-data.php:539 msgid "Current time" msgstr "Heure actuelle" #. translators: Hidden accessibility text. -#: wp-admin/includes/class-wp-comments-list-table.php:591 +#: wp-admin/includes/class-wp-comments-list-table.php:595 msgid "Ordered by Comment Date, descending." msgstr "Tableau trié par date de commentaire décroissante." -#: wp-admin/includes/class-wp-comments-list-table.php:547 +#: wp-admin/includes/class-wp-comments-list-table.php:551 msgid "Table ordered by Post Replied To." msgstr "Tableau trié par commentaire lié à l’article." -#: wp-admin/includes/class-wp-comments-list-table.php:546 +#: wp-admin/includes/class-wp-comments-list-table.php:550 msgid "Table ordered by Comment Author." msgstr "Tableau trié par l’auteur du commentaire." @@ -1082,28 +1268,29 @@ msgid "Be the future of WordPress" msgstr "Participez à l‘avenir de WordPress" #. translators: 1: Learn WordPress link, 2: Workshops link. -#: wp-admin/about.php:230 +#: wp-admin/about.php:240 msgid "Learn WordPress is a free resource for new and experienced WordPress users. Learn is stocked with how-to videos on using various features in WordPress, interactive workshops for exploring topics in-depth, and lesson plans for diving deep into specific areas of WordPress." msgstr "Learn WordPress est une ressource gratuite pour les personnes qui utilisent WordPress, qu’elles soient débutantes ou expérimentées. Learn contient des vidéos pratiques sur l’utilisation de diverses fonctionnalités de WordPress, des évènements interactifs pour explorer des sujets en profondeur, et des plans de cours pour approfondir des domaines spécifiques de WordPress." #: wp-admin/comment.php:73 wp-admin/edit-comments.php:232 -#: wp-admin/edit-form-advanced.php:320 wp-admin/edit-form-advanced.php:338 -#: wp-admin/edit-form-advanced.php:356 wp-admin/edit-link-form.php:77 -#: wp-admin/edit-tags.php:312 wp-admin/edit.php:302 wp-admin/edit.php:327 +#: wp-admin/edit-form-advanced.php:313 wp-admin/edit-form-advanced.php:331 +#: wp-admin/edit-form-advanced.php:349 wp-admin/edit-link-form.php:77 +#: wp-admin/edit-tags.php:315 wp-admin/edit.php:302 wp-admin/edit.php:327 #: wp-admin/erase-personal-data.php:66 wp-admin/export-personal-data.php:66 -#: wp-admin/export.php:60 wp-admin/includes/class-custom-background.php:111 +#: wp-admin/export.php:60 wp-admin/import.php:33 +#: wp-admin/includes/class-custom-background.php:111 #: wp-admin/includes/class-custom-image-header.php:146 wp-admin/index.php:133 #: wp-admin/link-manager.php:80 wp-admin/media-new.php:62 -#: wp-admin/my-sites.php:53 wp-admin/nav-menus.php:772 +#: wp-admin/my-sites.php:53 wp-admin/nav-menus.php:774 #: wp-admin/options-discussion.php:33 wp-admin/options-general.php:61 #: wp-admin/options-media.php:42 wp-admin/options-permalink.php:67 #: wp-admin/options-reading.php:54 wp-admin/options-writing.php:54 -#: wp-admin/plugin-editor.php:153 wp-admin/plugin-install.php:122 +#: wp-admin/plugin-editor.php:156 wp-admin/plugin-install.php:122 #: wp-admin/plugins.php:622 wp-admin/revision.php:160 #: wp-admin/theme-editor.php:56 wp-admin/theme-install.php:157 #: wp-admin/themes.php:210 wp-admin/tools.php:57 wp-admin/update-core.php:1055 #: wp-admin/upload.php:200 wp-admin/upload.php:402 wp-admin/user-edit.php:79 -#: wp-admin/user-new.php:311 wp-admin/users.php:84 wp-admin/widgets-form.php:72 +#: wp-admin/user-new.php:316 wp-admin/users.php:84 wp-admin/widgets-form.php:72 #: wp-admin/network.php:83 wp-admin/network/settings.php:65 #: wp-admin/network/themes.php:340 wp-admin/network/upgrade.php:33 msgid "Support forums" @@ -1121,7 +1308,7 @@ msgstr "Voir vous emmène sur l’archive publique de l’auteu msgid "Download file downloads the original media file to your device." msgstr "Télécharger le fichier télécharge le fichier média original sur votre appareil." -#: wp-admin/site-editor.php:38 +#: wp-admin/site-editor.php:121 msgctxt "site editor title tag" msgid "Editor" msgstr "Éditeur" @@ -1161,7 +1348,7 @@ msgstr "Il est important de différencier URL de WordPress et URL du site. L’U msgid "RoboHash (Generated)" msgstr "RoboHash (généré)" -#: wp-admin/menu.php:207 +#: wp-admin/menu.php:212 msgctxt "site editor menu item" msgid "Editor" msgstr "Éditeur" @@ -1180,19 +1367,19 @@ msgid "https://wordpress.org/documentation/article/what-is-an-excerpt-classic-ed msgstr "https://fr.wordpress.org/support/article/excerpt/" #. translators: %s: The function name. -#: wp-admin/includes/file.php:2771 +#: wp-admin/includes/file.php:2789 msgid "%s expects a non-empty string." msgstr "%s attend une chaine non vide." -#: wp-admin/includes/file.php:2090 +#: wp-admin/includes/file.php:2108 msgid "The destination directory already exists and could not be removed." msgstr "Le répertoire de destination existe déjà et ne peut être supprimé." -#: wp-admin/includes/file.php:2087 +#: wp-admin/includes/file.php:2105 msgid "The destination folder already exists." msgstr "Le dossier de destination existe déjà." -#: wp-admin/includes/file.php:2082 +#: wp-admin/includes/file.php:2100 msgid "The source and destination are the same." msgstr "La source et la destination sont identiques." @@ -1201,7 +1388,7 @@ msgid "Expand or collapse the elements by clicking on their headings, and arrang msgstr "Dépliez et repliez les éléments en cliquant sur leur titre, et déplacez-les en glissant leur titre ou en cliquant sur les flèches haut et bas." #. translators: %s: Attachment title. -#: wp-admin/includes/class-wp-media-list-table.php:840 +#: wp-admin/includes/class-wp-media-list-table.php:847 msgid "Download “%s”" msgstr "Télécharger « %s »" @@ -1210,7 +1397,7 @@ msgstr "Télécharger « %s »" msgid "The \"%s\" argument must be a non-empty string." msgstr "L’argument « %s » doit être une chaine non vide." -#: wp-admin/edit-form-advanced.php:319 +#: wp-admin/edit-form-advanced.php:312 msgid "Documentation on Writing and Editing Posts" msgstr "Documentation sur la rédaction d’articles" @@ -1227,12 +1414,12 @@ msgid "Docum msgstr "Documentation sur l’outil de personnalisation" #. translators: The localized WordPress download URL. -#: wp-admin/about.php:370 +#: wp-admin/about.php:380 msgid "https://wordpress.org/download/" msgstr "https://wordpress.org/download/" #. translators: %s: The major version of WordPress for this branch. -#: wp-admin/about.php:367 +#: wp-admin/about.php:377 msgid "This is the final release of WordPress %s" msgstr "Il s’agit de la version finale de WordPress %s" @@ -1244,7 +1431,7 @@ msgstr "Éditeur de site" msgid "Send password reset sends the user an email with a link to set a new password." msgstr "Envoyer une réinitialisation de mot de passe envoie à l’utilisatrice ou l’utilisateur un e-mail contenant un lien pour définir un nouveau mot de passe." -#: wp-admin/user-edit.php:863 +#: wp-admin/user-edit.php:865 msgid "https://developer.wordpress.org/apis/wp-config-php/#wp-environment-type" msgstr "https://developer.wordpress.org/apis/wp-config-php/#wp-environment-type" @@ -1297,10 +1484,6 @@ msgstr "Les éléments recommandés sont considérés comme bénéfiques pour vo msgid "Critical issues are items that may have a high impact on your sites performance or security, and resolving these issues should be prioritized." msgstr "Les anomalies critiques sont des éléments qui peuvent avoir un impact important sur les performances ou la sécurité de votre site, et la résolution de ces problèmes doit être une priorité." -#: wp-admin/site-editor.php:31 wp-admin/site-editor.php:33 -msgid "The theme you are currently using is not compatible with the Site Editor." -msgstr "Le thème que vous utilisez actuellement n’est pas compatible avec l’éditeur de site." - #. translators: %s: wp-config.php #: wp-admin/setup-config.php:441 msgid "Configuration rules for %s:" @@ -1322,7 +1505,7 @@ msgid "%s removed from permalink structure" msgstr "%s retiré de la structure de permaliens" #. translators: %s: Number of critical Site Health checks. -#: wp-admin/menu.php:367 +#: wp-admin/menu.php:378 msgid "Site Health %s" msgstr "Santé du site %s" @@ -1521,12 +1704,12 @@ msgstr "Votre site ne dispose d’aucun thème installé." msgid "Your site does not have any active plugins." msgstr "Votre site ne dispose d’aucune extension installée." -#: wp-admin/includes/class-wp-site-health-auto-updates.php:188 +#: wp-admin/includes/class-wp-site-health-auto-updates.php:197 msgid "Another attempt will be made with the next release." msgstr "Une autre tentative sera faite avec la prochaine version." #. translators: 1: Name of the constant used. 2: Value of the constant used. -#: wp-admin/includes/class-wp-site-health-auto-updates.php:78 +#: wp-admin/includes/class-wp-site-health-auto-updates.php:79 msgid "The %1$s constant is defined as %2$s" msgstr "La constante %1$s est définie à %2$s" @@ -1542,39 +1725,39 @@ msgid "The %s argument must be an array." msgstr "Le paramètre %s doit être un tableau." #. translators: 1: Plugin name, 2: Version number, 3: Plugin URL. -#: wp-admin/includes/class-wp-automatic-updater.php:1353 -#: wp-admin/includes/class-wp-automatic-updater.php:1425 +#: wp-admin/includes/class-wp-automatic-updater.php:1372 +#: wp-admin/includes/class-wp-automatic-updater.php:1444 msgid "- %1$s version %2$s%3$s" msgstr "- %1$s version %2$s%3$s" #. translators: 1: Plugin name, 2: Current version number, 3: New version #. number, 4: Plugin URL. -#: wp-admin/includes/class-wp-automatic-updater.php:1344 -#: wp-admin/includes/class-wp-automatic-updater.php:1416 +#: wp-admin/includes/class-wp-automatic-updater.php:1363 +#: wp-admin/includes/class-wp-automatic-updater.php:1435 msgid "- %1$s (from version %2$s to %3$s)%4$s" msgstr "- %1$s (de la version %2$s vers %3$s)%4$s" -#: wp-admin/includes/class-wp-automatic-updater.php:1061 +#: wp-admin/includes/class-wp-automatic-updater.php:1069 msgid "Reach out to WordPress Core developers to ensure you'll never have this problem again." msgstr "Contactez les développeuses et développeurs du cœur de WordPress pour vous assurer que vous ne rencontrerez plus ce problème." #. translators: 1: WordPress version number, 2: Link to update WordPress -#: wp-admin/about.php:364 +#: wp-admin/about.php:374 msgid "Important! Your version of WordPress (%1$s) will stop receiving security updates in the near future. To keep your site secure, please update to the latest version of WordPress." msgstr "Important ! Votre version de WordPress (%1$s) ne recevra bientôt plus aucune mise à jour de sécurité. Pour garder votre site sécurisé, veuillez mettre à jour vers la dernière version de WordPress." #. translators: 1: WordPress version number, 2: Link to update WordPress -#: wp-admin/about.php:361 +#: wp-admin/about.php:371 msgid "Important! Your version of WordPress (%1$s) is no longer supported, you will not receive any security updates for your website. To keep your site secure, please update to the latest version of WordPress." msgstr "Important ! Votre version de WordPress (%1$s) n‘est plus prise en charge, vous ne recevrez aucune mise à jour de sécurité pour votre site. Pour garder votre site sécurisé, veuillez mettre à jour vers la dernière version de WordPress." #. translators: %s: WordPress version number. -#: wp-admin/about.php:26 +#: wp-admin/about.php:27 msgid "https://make.wordpress.org/core/wordpress-%s-field-guide/" msgstr "https://fr.wordpress.org/2024/10/28/guide-des-changements-techniques-de-wordpress-6-7/" #. translators: %s: Version number. -#: wp-admin/about.php:221 +#: wp-admin/about.php:231 msgid "Learn more about WordPress %s" msgstr "En savoir plus sur WordPress %s" @@ -1588,13 +1771,13 @@ msgid "You cannot remove users." msgstr "Vous ne pouvez pas supprimer ces comptes." #. translators: 1: URL to my-sites.php, 2: Number of sites the user has. -#: wp-admin/user-edit.php:797 +#: wp-admin/user-edit.php:799 msgid "Application passwords grant access to the %2$s site on the network as you have Super Admin rights." msgid_plural "Application passwords grant access to all %2$s sites on the network as you have Super Admin rights." msgstr[0] "Les mots de passe d’applications donnent accès à l’unique site du réseau, car vous disposez de droits Super Admin." msgstr[1] "Les mots de passe d’applications donnent accès aux %2$s sites du réseau, car vous disposez de droits Super Admin." -#: wp-admin/upgrade.php:141 +#: wp-admin/upgrade.php:160 msgid "WordPress has been updated! Next and final step is to update your database to the newest version." msgstr "WordPress a été mis à jour ! La dernière étape est de mettre à jour votre base de données." @@ -1634,17 +1817,17 @@ msgstr "Erreur : votre fichier %1$s n’est pas set the environment type accordingly to enable application passwords." msgstr "S’il s’agit d’une version de développement du site, vous pouvez définir le type d’environnement correspondant afin d’autoriser les mots de passe d’applications." -#: wp-admin/user-edit.php:857 +#: wp-admin/user-edit.php:859 msgid "The application password feature requires HTTPS, which is not enabled on this site." msgstr "La fonctionnalité de mot de passe de l’application nécessite HTTPS, qui n’est pas activé sur ce site." @@ -1916,11 +2098,11 @@ msgctxt "plugin" msgid "Cannot Activate" msgstr "Impossible à activer" -#: wp-admin/includes/class-wp-debug-data.php:1629 +#: wp-admin/includes/class-wp-debug-data.php:1657 msgid "Max connections number" msgstr "Nombre maximal de connexions" -#: wp-admin/includes/class-wp-debug-data.php:1625 +#: wp-admin/includes/class-wp-debug-data.php:1653 msgid "Max allowed packet size" msgstr "Taille maximale autorisée du paquet" @@ -1930,7 +2112,7 @@ msgstr "Votre site semble utiliser une authentification de base, ce qui n’est #. translators: Editor admin screen title. 1: "Edit item" text for the post #. type, 2: Post title. -#: wp-admin/admin-header.php:60 +#: wp-admin/admin-header.php:65 msgid "%1$s “%2$s”" msgstr "%1$s « %2$s »" @@ -1973,35 +2155,32 @@ msgstr "L’extension %1$s version %2$s a été désactivée à cause d’une in msgid "%1$s %2$s was deactivated due to incompatibility with WordPress %3$s, please upgrade to %1$s %4$s or later." msgstr "L’extension %1$s version %2$s a été désactivée à cause d’une incompatibilité avec WordPress %3$s, veuillez mettre à jour vers %1$s version %4$s ou plus." -#: wp-admin/privacy.php:29 -msgid "We take privacy and transparency very seriously" -msgstr "Nous accordons une importance toute particulière à la confidentialité des données personnelles" - #: wp-admin/freedoms.php:30 msgid "The Four Freedoms" msgstr "Les quatre libertés" #. translators: %s: Theme name. -#: wp-admin/themes.php:1246 +#: wp-admin/themes.php:1311 #: wp-admin/includes/class-wp-ms-themes-list-table.php:641 msgctxt "theme" msgid "Delete %s" msgstr "Supprimer %s" #. translators: %s: Theme name. -#: wp-admin/themes.php:622 wp-admin/themes.php:992 +#: wp-admin/themes.php:631 wp-admin/themes.php:650 wp-admin/themes.php:1022 +#: wp-admin/themes.php:1040 wp-admin/themes.php:1267 wp-admin/themes.php:1289 msgctxt "theme" msgid "Live Preview %s" msgstr "Prévisualiser %s" #. translators: %s: Theme name. -#: wp-admin/themes.php:608 wp-admin/themes.php:979 +#: wp-admin/themes.php:610 wp-admin/themes.php:1002 msgctxt "theme" msgid "Customize %s" msgstr "Personnaliser %s" #. translators: %s: Theme name. -#: wp-admin/themes.php:584 wp-admin/themes.php:955 +#: wp-admin/themes.php:584 wp-admin/themes.php:976 msgctxt "theme" msgid "View Theme Details for %s" msgstr "Voir les détails du thème %s" @@ -2026,15 +2205,15 @@ msgstr "Vous devez rendre le fichier %1$s accessible en écriture avant de pouvo msgid "Rewrite rules:" msgstr "Règles de réécriture :" -#: wp-admin/nav-menus.php:1166 +#: wp-admin/nav-menus.php:1168 msgid "List of menu items selected for deletion:" msgstr "Liste des éléments de menu sélectionnés pour la suppression :" -#: wp-admin/nav-menus.php:1164 +#: wp-admin/nav-menus.php:1166 msgid "Remove Selected Items" msgstr "Supprimer les éléments sélectionnés" -#: wp-admin/nav-menus.php:1127 wp-admin/nav-menus.php:1162 +#: wp-admin/nav-menus.php:1129 wp-admin/nav-menus.php:1164 msgid "Bulk Select" msgstr "Sélection groupée" @@ -2049,7 +2228,7 @@ msgid "item %s" msgstr "élément %s" #. translators: %s: Number of available theme updates. -#: wp-admin/menu.php:204 wp-admin/network/menu.php:63 +#: wp-admin/menu.php:209 wp-admin/network/menu.php:68 msgid "Themes %s" msgstr "Thèmes %s" @@ -2080,19 +2259,19 @@ msgstr "Apprenez comment naviguer s msgid "Internet Explorer does not give you the best WordPress experience. Switch to Microsoft Edge, or another more modern browser to get the most from your site." msgstr "Internet Explorer ne vous offre pas la meilleure expérience WordPress. Passez à Microsoft Edge, ou à un autre navigateur plus moderne, pour tirer le meilleur parti de votre site." -#: wp-admin/includes/class-wp-debug-data.php:692 +#: wp-admin/includes/class-wp-debug-data.php:720 msgid "GD supported file formats" msgstr "Formats de fichier GD pris en charge" -#: wp-admin/includes/class-wp-debug-data.php:652 +#: wp-admin/includes/class-wp-debug-data.php:680 msgid "Unable to determine" msgstr "Impossible à déterminer" -#: wp-admin/includes/class-wp-debug-data.php:651 +#: wp-admin/includes/class-wp-debug-data.php:679 msgid "ImageMagick supported file formats" msgstr "Formats de fichier ImageMagik pris en charge" -#: wp-admin/includes/class-wp-debug-data.php:570 +#: wp-admin/includes/class-wp-debug-data.php:598 msgid "Imagick version" msgstr "Version de Imagick" @@ -2117,7 +2296,7 @@ msgid "Current" msgstr "Actuelle" #. translators: %s: A link to activate the Link Manager plugin. -#: wp-admin/includes/bookmark.php:370 +#: wp-admin/includes/bookmark.php:371 msgid "Please activate the Link Manager plugin to use the link manager." msgstr "Veuillez activer l’extension Link Manager pour utiliser ce gestionnaire de lien." @@ -2182,11 +2361,11 @@ msgid "Password reset link sent." msgstr "Le lien de réinitialisation du mot de passe a été envoyé." #. translators: %s: User's display name. -#: wp-admin/user-edit.php:729 +#: wp-admin/user-edit.php:731 msgid "Send %s a link to reset their password. This will not change their password, nor will it force a change." msgstr "Envoyez à %s un lien pour réinitialiser son mot de passe. Cela ne changera pas son mot de passe, ni ne l’obligera à le modifier." -#: wp-admin/user-edit.php:722 +#: wp-admin/user-edit.php:724 msgid "Send Reset Link" msgstr "Envoyer le lien de réinitialisation" @@ -2346,15 +2525,15 @@ msgid "Send password reset" msgstr "Réinitialisation de mot de passe" #. translators: Default privacy policy heading. -#: wp-admin/includes/class-wp-privacy-policy-content.php:614 +#: wp-admin/includes/class-wp-privacy-policy-content.php:612 msgid "Contact information" msgstr "Informations de contact" -#: wp-admin/includes/class-wp-privacy-policy-content.php:433 +#: wp-admin/includes/class-wp-privacy-policy-content.php:431 msgid "Copy suggested policy text to clipboard" msgstr "Copier la suggestion de texte de politique de confidentialité dans le presse-papier" -#: wp-admin/includes/file.php:2000 +#: wp-admin/includes/file.php:2018 msgid "Directory listing failed." msgstr "Le listage du répertoire a échoué." @@ -2410,7 +2589,7 @@ msgstr "Votre site utilise une version obsolète de PHP (%s), qui devrait être msgid "PHP Update Recommended" msgstr "Mise à jour PHP recommandée" -#: wp-admin/user-edit.php:840 +#: wp-admin/user-edit.php:842 msgid "Your website appears to use Basic Authentication, which is not currently compatible with Application Passwords." msgstr "Votre site semble utiliser l’authentification basique, qui n’est pas compatible avec les mots de passe d’application." @@ -2468,20 +2647,20 @@ msgid "Site Health Status — Informs you of any potential msgstr "Santé du site — Vous informe de tout problème potentiel qui devrait être résolu pour améliorer les performances ou la sécurité de votre site." #. translators: %s: Application name. -#: wp-admin/authorize-application.php:209 wp-admin/user-edit.php:981 +#: wp-admin/authorize-application.php:209 wp-admin/user-edit.php:983 #: wp-admin/js/auth-app.js:90 msgid "Your new password for %s is:" msgstr "Votre nouveau mot de passe pour %s est :" -#: wp-admin/user-edit.php:835 -msgid "Add New Application Password" +#: wp-admin/user-edit.php:837 +msgid "Add Application Password" msgstr "Ajouter un mot de passe d’application" -#: wp-admin/user-edit.php:821 +#: wp-admin/user-edit.php:823 msgid "Required to create an Application Password, but not to update the user." msgstr "Nécessaire pour créer un mot de passe d’application, mais pas pour mettre à jour le compte." -#: wp-admin/about.php:305 +#: wp-admin/about.php:315 msgid "Go to Updates" msgstr "Aller aux mises à jour" @@ -2573,39 +2752,39 @@ msgstr "La demande d’autorisation pour les applications n’est pas autorisée msgid "Authorize Application" msgstr "Autoriser l’application" -#: wp-admin/authorize-application.php:215 wp-admin/user-edit.php:990 +#: wp-admin/authorize-application.php:215 wp-admin/user-edit.php:992 #: wp-admin/js/auth-app.js:98 msgid "Be sure to save this in a safe location. You will not be able to retrieve it." msgstr "Assurez-vous de le conserver en lieu sûr. Vous ne pourrez pas le récupérer." -#: wp-admin/authorize-application.php:247 wp-admin/user-edit.php:819 +#: wp-admin/authorize-application.php:247 wp-admin/user-edit.php:821 msgid "New Application Password Name" msgstr "Nouveau nom du mot de passe d’application" #. translators: 1: URL to my-sites.php, 2: Number of sites the user has. -#: wp-admin/user-edit.php:789 +#: wp-admin/user-edit.php:791 msgid "Application passwords grant access to the %2$s site in this installation that you have permissions on." msgid_plural "Application passwords grant access to all %2$s sites in this installation that you have permissions on." msgstr[0] "Les mots de passe d’application donnent accès au site sur lequel vous avez des droits sur cette installation." msgstr[1] "Les mots de passe d’application donnent accès aux %2$s sites sur lesquels vous avez des droits sur cette installation." -#: wp-admin/user-edit.php:777 +#: wp-admin/user-edit.php:779 msgid "Application passwords allow authentication via non-interactive systems, such as XML-RPC or the REST API, without providing your actual password. Application passwords can be easily revoked. They cannot be used for traditional logins to your website." msgstr "Les mots de passe d’application autorisent l’authentification via des systèmes non-interactifs tels que XML-RPC ou l’API REST, sans fournir votre vrai mot de passe. Les mots de passe d’application peuvent facilement être révoqués. Ils ne peuvent pas être utilisés pour une connexion classique à votre site." -#: wp-admin/user-edit.php:776 +#: wp-admin/user-edit.php:778 msgid "Application Passwords" msgstr "Mots de passe d’application" -#: wp-admin/user-edit.php:700 +#: wp-admin/user-edit.php:702 msgid "Type the new password again." msgstr "Saisissez à nouveau le nouveau mot de passe." -#: wp-admin/user-edit.php:676 +#: wp-admin/user-edit.php:678 msgid "Set New Password" msgstr "Définir le nouveau mot de passe" -#: wp-admin/user-new.php:612 +#: wp-admin/user-new.php:617 msgid "Type the password again." msgstr "Saisissez à nouveau le nouveau mot de passe." @@ -2655,12 +2834,12 @@ msgstr "Effacer les données personnelles" #. translators: 1: Theme name, 2: Current version number, 3: New version #. number. -#: wp-admin/includes/class-wp-automatic-updater.php:1376 -#: wp-admin/includes/class-wp-automatic-updater.php:1447 +#: wp-admin/includes/class-wp-automatic-updater.php:1395 +#: wp-admin/includes/class-wp-automatic-updater.php:1466 msgid "- %1$s (from version %2$s to %3$s)" msgstr "- %1$s (de la version %2$s à %3$s)" -#: wp-admin/includes/template.php:2434 +#: wp-admin/includes/template.php:2433 msgid "Current Header Video" msgstr "Vidéo d’entête actuelle" @@ -2701,7 +2880,7 @@ msgid "The URL must be served over a secure connection." msgstr "L’URL doit être accédée via une connexion sécurisée." #. translators: Default privacy policy text. -#: wp-admin/includes/class-wp-privacy-policy-content.php:572 +#: wp-admin/includes/class-wp-privacy-policy-content.php:570 msgid "If you request a password reset, your IP address will be included in the reset email." msgstr "Si vous demandez une réinitialisation de votre mot de passe, votre adresse IP sera incluse dans l’e-mail de réinitialisation." @@ -2722,41 +2901,41 @@ msgid "Mark export request for “%s” as completed." msgstr "Marquer la demande d’exportation pour « %s » comme terminée." #. translators: %d: Number of requests. -#: wp-admin/includes/class-wp-privacy-requests-table.php:341 +#: wp-admin/includes/class-wp-privacy-requests-table.php:346 msgid "%d request deleted successfully." msgid_plural "%d requests deleted successfully." msgstr[0] "%d demande bien supprimée." msgstr[1] "%d demandes bien supprimées." #. translators: %d: Number of requests. -#: wp-admin/includes/class-wp-privacy-requests-table.php:324 +#: wp-admin/includes/class-wp-privacy-requests-table.php:329 msgid "%d request failed to delete." msgid_plural "%d requests failed to delete." msgstr[0] "%d demande de suppression a échoué." msgstr[1] "%d demandes de suppression ont échoué." #. translators: %d: Number of requests. -#: wp-admin/includes/class-wp-privacy-requests-table.php:298 +#: wp-admin/includes/class-wp-privacy-requests-table.php:303 msgid "%d request marked as complete." msgid_plural "%d requests marked as complete." msgstr[0] "%d demande marquée comme terminée." msgstr[1] "%d demandes marquées comme terminées." #. translators: %d: Number of requests. -#: wp-admin/includes/class-wp-privacy-requests-table.php:271 +#: wp-admin/includes/class-wp-privacy-requests-table.php:276 msgid "%d confirmation request re-sent successfully." msgid_plural "%d confirmation requests re-sent successfully." msgstr[0] "%d demande de confirmation renvoyée avec succès." msgstr[1] "%d demandes de confirmation renvoyées avec succès." #. translators: %d: Number of requests. -#: wp-admin/includes/class-wp-privacy-requests-table.php:254 +#: wp-admin/includes/class-wp-privacy-requests-table.php:259 msgid "%d confirmation request failed to resend." msgid_plural "%d confirmation requests failed to resend." msgstr[0] "%d demande de confirmation n’a pas pu être renvoyée." msgstr[1] "%d demandes de confirmation n’ont pas pu être renvoyées." -#: wp-admin/includes/class-wp-privacy-requests-table.php:212 +#: wp-admin/includes/class-wp-privacy-requests-table.php:217 msgid "Mark requests as completed" msgstr "Marquer les demandes comme terminées" @@ -2789,7 +2968,7 @@ msgid "Unable to generate personal data export file. ZipArchive not available." msgstr "Impossible de générer le fichier d’exportation de confidentialité du compte. La fonction ZipArchive n’est pas disponible." #. translators: %s: Search query. -#: wp-admin/edit-comments.php:282 wp-admin/edit-tags.php:340 +#: wp-admin/edit-comments.php:282 wp-admin/edit-tags.php:343 #: wp-admin/edit.php:429 wp-admin/link-manager.php:111 wp-admin/plugins.php:778 #: wp-admin/upload.php:430 wp-admin/users.php:795 wp-admin/js/updates.js:3139 #: wp-admin/network/sites.php:399 wp-admin/network/themes.php:374 @@ -2818,7 +2997,7 @@ msgstr "Type d’environnement" msgid "Auto-updates are only available for plugins recognized by WordPress.org, or that include a compatible update system." msgstr "Les mises à jour auto ne sont disponibles que pour les extensions reconnues par WordPress.org, ou qui incluent un système de mise à jour compatible." -#: wp-admin/includes/theme.php:902 wp-admin/themes.php:1122 +#: wp-admin/includes/theme.php:902 wp-admin/themes.php:1164 msgid "Update Incompatible" msgstr "Mise à jour non compatible" @@ -2908,24 +3087,24 @@ msgstr "La directive %1$s dans le fichier %2$s détermine si le téléversement msgid "Files can be uploaded" msgstr "Les fichiers peuvent être téléversés" -#: wp-admin/includes/class-wp-debug-data.php:607 +#: wp-admin/includes/class-wp-debug-data.php:635 msgid "Max effective file size" msgstr "Taille de fichier effective maximale" -#: wp-admin/includes/class-wp-debug-data.php:603 +#: wp-admin/includes/class-wp-debug-data.php:631 msgid "Max size of an uploaded file" msgstr "Taille maximale des fichiers téléversés" -#: wp-admin/includes/class-wp-debug-data.php:599 +#: wp-admin/includes/class-wp-debug-data.php:627 msgid "Max size of post data allowed" msgstr "Taille maximale autorisée pour les données des publications" -#: wp-admin/includes/class-wp-debug-data.php:594 +#: wp-admin/includes/class-wp-debug-data.php:622 #: wp-admin/includes/class-wp-site-health.php:2759 msgid "File uploads" msgstr "Téléversements de fichiers" -#: wp-admin/includes/class-wp-debug-data.php:576 +#: wp-admin/includes/class-wp-debug-data.php:604 msgid "File upload settings" msgstr "Réglages des téléversements de fichiers" @@ -2942,7 +3121,7 @@ msgid "Install %s" msgstr "Installer %s" #. translators: %s: Theme name. -#: wp-admin/includes/class-wp-theme-install-list-table.php:339 +#: wp-admin/includes/class-wp-theme-install-list-table.php:338 #: wp-admin/theme-install.php:445 msgctxt "theme" msgid "Install %s" @@ -2955,8 +3134,8 @@ msgid "Update %s now" msgstr "Mettre à jour %s maintenant" #. translators: 1: Theme name, 2: Version number. -#: wp-admin/includes/class-wp-automatic-updater.php:1384 -#: wp-admin/includes/class-wp-automatic-updater.php:1455 +#: wp-admin/includes/class-wp-automatic-updater.php:1403 +#: wp-admin/includes/class-wp-automatic-updater.php:1474 msgid "- %1$s version %2$s" msgstr "- %1$s version %2$s" @@ -2992,14 +3171,14 @@ msgid "Install %s now" msgstr "Installer %s maintenant" #. translators: Hidden accessibility text. -#: wp-admin/user-edit.php:995 wp-admin/js/application-passwords.js:203 -#: wp-admin/js/common.js:1103 +#: wp-admin/user-edit.php:997 wp-admin/js/application-passwords.js:203 +#: wp-admin/js/common.js:1109 msgid "Dismiss this notice." msgstr "Ignorer cette notification." #. translators: %s: Theme name. -#: wp-admin/theme-install.php:430 wp-admin/themes.php:629 -#: wp-admin/themes.php:998 wp-admin/themes.php:1232 +#: wp-admin/theme-install.php:430 wp-admin/themes.php:641 +#: wp-admin/themes.php:1031 wp-admin/themes.php:1299 msgctxt "theme" msgid "Cannot Activate %s" msgstr "Impossible d’activer %s" @@ -3065,7 +3244,7 @@ msgstr "Veuillez vous connecter à l’administration de votre réseau pour gér msgid "The admin email verification page will reappear after %s." msgstr "La page de vérification de l’e-mail d’administration réapparaîtra après %s." -#: wp-admin/includes/class-wp-debug-data.php:1140 wp-admin/plugins.php:594 +#: wp-admin/includes/class-wp-debug-data.php:1168 wp-admin/plugins.php:594 #: wp-admin/themes.php:197 wp-admin/update-core.php:1025 #: wp-admin/network/themes.php:326 msgid "Auto-updates" @@ -3087,8 +3266,8 @@ msgid "Important: Before updating, please back msgstr "Important : Avant de procéder aux mises à jour, veuillez sauvegarder votre base de données et vos fichiers. Pour obtenir de l’aide à propos des mises à jour, consultez la page de documentation Comment mettre à jour WordPress." #: wp-admin/customize.php:203 wp-admin/theme-install.php:433 -#: wp-admin/theme-install.php:495 wp-admin/themes.php:631 -#: wp-admin/themes.php:1000 wp-admin/themes.php:1238 +#: wp-admin/theme-install.php:495 wp-admin/themes.php:645 +#: wp-admin/themes.php:1035 wp-admin/themes.php:1303 msgctxt "theme" msgid "Cannot Activate" msgstr "Impossible à activer" @@ -3097,7 +3276,7 @@ msgstr "Impossible à activer" msgid "You cannot edit this comment because the associated post is in the Trash. Please restore the post first, then try again." msgstr "Vous ne pouvez pas modifier ce commentaire car la publication associée est dans la corbeille. Veuillez d’abord restaurer la publication, puis essayer de nouveau." -#: wp-admin/async-upload.php:73 +#: wp-admin/async-upload.php:70 msgctxt "media item" msgid "Success" msgstr "Succès" @@ -3145,88 +3324,88 @@ msgid "You cannot reply to a comment on a draft post." msgstr "Erreur : vous ne pouvez pas répondre aux commentaires sur une publication en brouillon." #. translators: %s: Themes screen URL. -#: wp-admin/includes/class-wp-automatic-updater.php:1480 +#: wp-admin/includes/class-wp-automatic-updater.php:1499 msgid "To manage themes on your site, visit the Themes page: %s" msgstr "Pour gérer les thèmes de votre site, visitez la page des thèmes : %s" #. translators: %s: Plugins screen URL. -#: wp-admin/includes/class-wp-automatic-updater.php:1471 +#: wp-admin/includes/class-wp-automatic-updater.php:1490 msgid "To manage plugins on your site, visit the Plugins page: %s" msgstr "Pour gérer les thèmes de votre site, visitez la page des extensions : %s" -#: wp-admin/includes/class-wp-automatic-updater.php:1441 +#: wp-admin/includes/class-wp-automatic-updater.php:1460 msgid "These themes are now up to date:" msgstr "Ces thèmes sont maintenant à jour :" -#: wp-admin/includes/class-wp-automatic-updater.php:1403 +#: wp-admin/includes/class-wp-automatic-updater.php:1422 msgid "These plugins are now up to date:" msgstr "Ces extensions sont maintenant à jour :" -#: wp-admin/includes/class-wp-automatic-updater.php:1370 +#: wp-admin/includes/class-wp-automatic-updater.php:1389 msgid "These themes failed to update:" msgstr "Ces thèmes n’ont pas été mis à jour :" -#: wp-admin/includes/class-wp-automatic-updater.php:1326 +#: wp-admin/includes/class-wp-automatic-updater.php:1345 msgid "Please check your site now. It’s possible that everything is working. If there are updates available, you should update." msgstr "Veuillez maintenant vérifier votre site. Il est possible que tout fonctionne. Si des mises à jour sont disponibles, vous devriez les faire." #. translators: %s: Home URL. -#: wp-admin/includes/class-wp-automatic-updater.php:1316 +#: wp-admin/includes/class-wp-automatic-updater.php:1335 msgid "Howdy! Themes failed to update on your site at %s." msgstr "Bonjour ! Des mises à jour de thèmes ont échoué sur votre site situé à l’adresse %s." #. translators: %s: Site title. -#: wp-admin/includes/class-wp-automatic-updater.php:1313 +#: wp-admin/includes/class-wp-automatic-updater.php:1332 msgid "[%s] Some themes have failed to update" msgstr "[%s] Certaines mises à jour de thèmes ont échoué" #. translators: %s: Home URL. -#: wp-admin/includes/class-wp-automatic-updater.php:1308 +#: wp-admin/includes/class-wp-automatic-updater.php:1327 msgid "Howdy! Plugins failed to update on your site at %s." msgstr "Bonjour ! Certaines mises à jour d’extensions ont échoué sur votre site situé à l’adresse %s." #. translators: %s: Site title. -#: wp-admin/includes/class-wp-automatic-updater.php:1305 +#: wp-admin/includes/class-wp-automatic-updater.php:1324 msgid "[%s] Some plugins have failed to update" msgstr "[%s] Certaines mises à jour d’extensions ont échoué" #. translators: %s: Home URL. -#: wp-admin/includes/class-wp-automatic-updater.php:1300 +#: wp-admin/includes/class-wp-automatic-updater.php:1319 msgid "Howdy! Plugins and themes failed to update on your site at %s." msgstr "Bonjour ! Certaines mises à jour d’extensions et de thèmes ont échoué sur votre site situé à l’adresse %s." #. translators: %s: Site title. -#: wp-admin/includes/class-wp-automatic-updater.php:1297 +#: wp-admin/includes/class-wp-automatic-updater.php:1316 msgid "[%s] Some plugins and themes have failed to update" msgstr "[%s] Certaines mises à jour d’extensions et de thèmes ont échoué" #. translators: %s: Home URL. -#: wp-admin/includes/class-wp-automatic-updater.php:1287 +#: wp-admin/includes/class-wp-automatic-updater.php:1306 msgid "Howdy! Some themes have automatically updated to their latest versions on your site at %s. No further action is needed on your part." msgstr "Bonjour ! Des thèmes ont été mis à jour automatiquement vers leurs dernières versions sur votre site à l’adresse %s. Vous n’avez rien de plus à faire." #. translators: %s: Site title. -#: wp-admin/includes/class-wp-automatic-updater.php:1284 +#: wp-admin/includes/class-wp-automatic-updater.php:1303 msgid "[%s] Some themes were automatically updated" msgstr "[%s] Certains thèmes ont été mis à jour automatiquement" #. translators: %s: Home URL. -#: wp-admin/includes/class-wp-automatic-updater.php:1279 +#: wp-admin/includes/class-wp-automatic-updater.php:1298 msgid "Howdy! Some plugins have automatically updated to their latest versions on your site at %s. No further action is needed on your part." msgstr "Bonjour ! Des extensions ont été mises à jour automatiquement vers leurs dernières versions sur votre site à l’adresse %s. Vous n’avez rien de plus à faire." #. translators: %s: Site title. -#: wp-admin/includes/class-wp-automatic-updater.php:1276 +#: wp-admin/includes/class-wp-automatic-updater.php:1295 msgid "[%s] Some plugins were automatically updated" msgstr "[%s] Certaines extensions ont été mises à jour automatiquement" #. translators: %s: Home URL. -#: wp-admin/includes/class-wp-automatic-updater.php:1271 +#: wp-admin/includes/class-wp-automatic-updater.php:1290 msgid "Howdy! Some plugins and themes have automatically updated to their latest versions on your site at %s. No further action is needed on your part." msgstr "Bonjour ! Des extensions et thèmes ont été mis à jour automatiquement vers leurs dernières versions sur votre site situé à l’adresse %s. Vous n’avez rien de plus à faire." #. translators: %s: Site title. -#: wp-admin/includes/class-wp-automatic-updater.php:1268 +#: wp-admin/includes/class-wp-automatic-updater.php:1287 msgid "[%s] Some plugins and themes have automatically updated" msgstr "[%s] Des extensions et thèmes ont été mis à jour automatiquement" @@ -3240,7 +3419,7 @@ msgstr "Déplacer la boite %s vers le bas" msgid "Move %s box up" msgstr "Déplacer la boite %s vers le haut" -#: wp-admin/includes/class-wp-comments-list-table.php:377 +#: wp-admin/includes/class-wp-comments-list-table.php:381 msgctxt "comment" msgid "Not spam" msgstr "N’est pas un indésirable" @@ -3360,14 +3539,14 @@ msgid "The active theme has the following error: \"%s\"." msgstr "Le thème actif contient l’erreur suivante : « %s »." #: wp-admin/includes/class-wp-plugins-list-table.php:1324 -#: wp-admin/themes.php:780 wp-admin/js/updates.js:3474 -#: wp-admin/includes/class-wp-ms-themes-list-table.php:817 +#: wp-admin/themes.php:801 wp-admin/js/updates.js:3474 +#: wp-admin/includes/class-wp-ms-themes-list-table.php:823 msgid "Enable auto-updates" msgstr "Activer les mises à jour auto" #: wp-admin/includes/class-wp-plugins-list-table.php:1320 -#: wp-admin/themes.php:776 wp-admin/js/updates.js:3463 -#: wp-admin/includes/class-wp-ms-themes-list-table.php:813 +#: wp-admin/themes.php:797 wp-admin/js/updates.js:3463 +#: wp-admin/includes/class-wp-ms-themes-list-table.php:819 msgid "Disable auto-updates" msgstr "Désactiver les mises à jour auto" @@ -3425,8 +3604,8 @@ msgstr "Annuler et revenir en arrière" #: wp-admin/includes/class-theme-installer-skin.php:354 msgctxt "theme" -msgid "Replace active with uploaded" -msgstr "Remplacer le thème actif par celui que vous avez téléversé" +msgid "Replace installed with uploaded" +msgstr "Remplacer le thème installé par celui que vous avez téléversé" #. translators: %s: Documentation URL. #: wp-admin/includes/class-theme-installer-skin.php:342 @@ -3435,8 +3614,8 @@ msgstr "Vous mettez à jour un thème. Assurez-vous de sauvegarde #. translators: %s: Documentation URL. #: wp-admin/includes/class-theme-installer-skin.php:336 -msgid "You are uploading an older version of the active theme. You can continue to install the older version, but be sure to back up your database and files first." -msgstr "Vous téléversez une ancienne version d’un thème actif. Vous pouvez continuer d’installer l’ancienne version, mais au préalable, assurez-vous de sauvegarder votre base de données et vos fichiers." +msgid "You are uploading an older version of the installed theme. You can continue to install the older version, but be sure to back up your database and files first." +msgstr "Vous téléversez une ancienne version du thème installé. Vous pouvez continuer d’installer l’ancienne version, mais au préalable, assurez-vous de sauvegarder votre base de données et vos fichiers." #. translators: 1: Current WordPress version, 2: Version required by the #. uploaded theme. @@ -3508,23 +3687,23 @@ msgstr "Impossible de supprimer l’extension actuelle." msgid "Removing the current plugin…" msgstr "Suppression de l’extension actuelle…" -#: wp-admin/includes/class-wp-debug-data.php:1251 +#: wp-admin/includes/class-wp-debug-data.php:1279 msgid "Auto-update" msgstr "Mise à jour auto" -#: wp-admin/includes/class-wp-debug-data.php:977 -#: wp-admin/includes/class-wp-debug-data.php:1357 +#: wp-admin/includes/class-wp-debug-data.php:1005 +#: wp-admin/includes/class-wp-debug-data.php:1385 #: wp-admin/includes/class-wp-plugins-list-table.php:1311 -#: wp-admin/themes.php:771 wp-admin/js/updates.js:3476 -#: wp-admin/includes/class-wp-ms-themes-list-table.php:804 +#: wp-admin/themes.php:792 wp-admin/js/updates.js:3476 +#: wp-admin/includes/class-wp-ms-themes-list-table.php:810 msgid "Auto-updates disabled" msgstr "Mises à jour auto désactivées" -#: wp-admin/includes/class-wp-debug-data.php:975 -#: wp-admin/includes/class-wp-debug-data.php:1355 +#: wp-admin/includes/class-wp-debug-data.php:1003 +#: wp-admin/includes/class-wp-debug-data.php:1383 #: wp-admin/includes/class-wp-plugins-list-table.php:1309 -#: wp-admin/themes.php:773 wp-admin/js/updates.js:3465 -#: wp-admin/includes/class-wp-ms-themes-list-table.php:802 +#: wp-admin/themes.php:794 wp-admin/js/updates.js:3465 +#: wp-admin/includes/class-wp-ms-themes-list-table.php:808 msgid "Auto-updates enabled" msgstr "Mises à jour auto activées" @@ -3563,7 +3742,7 @@ msgid "Error: The %s options page is not in the allowed options msgstr "Erreur : page d’options %s introuvable dans la liste des options autorisées." #: wp-admin/import.php:65 wp-admin/themes.php:348 wp-admin/users.php:345 -#: wp-admin/includes/network.php:117 +#: wp-admin/includes/network.php:117 wp-admin/includes/network.php:161 msgid "Error:" msgstr "Erreur :" @@ -3653,7 +3832,7 @@ msgstr "Aucun fichier média trouvé dans la corbeille." #. translators: Date string for upcoming events. 1: Starting month, 2: Starting #. day, 3: Ending month, 4: Ending day, 5: Ending year. #: wp-admin/includes/class-wp-community-events.php:427 -#: wp-admin/js/dashboard.js:778 +#: wp-admin/js/dashboard.js:784 msgid "%1$s %2$d – %3$s %4$d, %5$d" msgstr "%1$s %2$d – %3$s %4$d, %5$d" @@ -3661,7 +3840,7 @@ msgstr "%1$s %2$d – %3$s %4$d, %5$d" #. https://www.php.net/manual/datetime.format.php #: wp-admin/includes/class-wp-community-events.php:422 #: wp-admin/includes/class-wp-community-events.php:432 -#: wp-admin/js/dashboard.js:791 wp-admin/js/dashboard.js:802 +#: wp-admin/js/dashboard.js:797 wp-admin/js/dashboard.js:808 msgctxt "upcoming events year format" msgid "Y" msgstr "Y" @@ -3672,8 +3851,8 @@ msgstr "Y" #: wp-admin/includes/class-wp-community-events.php:420 #: wp-admin/includes/class-wp-community-events.php:429 #: wp-admin/includes/class-wp-community-events.php:431 -#: wp-admin/js/dashboard.js:789 wp-admin/js/dashboard.js:790 -#: wp-admin/js/dashboard.js:799 wp-admin/js/dashboard.js:801 +#: wp-admin/js/dashboard.js:795 wp-admin/js/dashboard.js:796 +#: wp-admin/js/dashboard.js:805 wp-admin/js/dashboard.js:807 msgctxt "upcoming events day format" msgid "j" msgstr "j" @@ -3681,7 +3860,7 @@ msgstr "j" #. translators: Date string for upcoming events. 1: Month, 2: Starting day, 3: #. Ending day, 4: Year. #: wp-admin/includes/class-wp-community-events.php:416 -#: wp-admin/js/dashboard.js:776 +#: wp-admin/js/dashboard.js:782 msgid "%1$s %2$d–%3$d, %4$d" msgstr "%1$s %2$d–%3$d, %4$d" @@ -3689,21 +3868,21 @@ msgstr "%1$s %2$d–%3$d, %4$d" #. https://www.php.net/manual/datetime.format.php #: wp-admin/includes/class-wp-community-events.php:410 #: wp-admin/includes/class-wp-community-events.php:411 -#: wp-admin/js/dashboard.js:788 wp-admin/js/dashboard.js:798 -#: wp-admin/js/dashboard.js:800 +#: wp-admin/js/dashboard.js:794 wp-admin/js/dashboard.js:804 +#: wp-admin/js/dashboard.js:806 msgctxt "upcoming events month format" msgid "F" msgstr "F" -#: wp-admin/includes/class-wp-privacy-requests-table.php:211 +#: wp-admin/includes/class-wp-privacy-requests-table.php:216 msgid "Resend confirmation requests" msgstr "Renvoyer les demandes de confirmation" -#: wp-admin/includes/class-wp-privacy-requests-table.php:213 +#: wp-admin/includes/class-wp-privacy-requests-table.php:218 msgid "Delete requests" msgstr "Supprimer les demandes" -#: wp-admin/includes/class-wp-debug-data.php:1610 +#: wp-admin/includes/class-wp-debug-data.php:1638 msgid "Table prefix" msgstr "Préfixe de table" @@ -3735,7 +3914,7 @@ msgid "The seventh parameter passed to %s should be numeric representing menu po msgstr "Le septième paramètre passé à %s devrait être un nombre entier représentant une position de menu." #. translators: 1: WordPress version number, 2: The PHP extension name needed. -#: wp-admin/includes/update-core.php:1187 +#: wp-admin/includes/update-core.php:1207 msgid "The update cannot be installed because WordPress %1$s requires the %2$s PHP extension." msgstr "La mise à jour ne peut pas être installée car WordPress %1$s nécessite l’extension PHP %2$s." @@ -3799,15 +3978,15 @@ msgstr "Docum msgid "This page allows direct access to your site settings. You can break things here. Please be cautious!" msgstr "Cette page donne un accès direct aux réglages de votre site. Vous pouvez casser des choses ici, donc faites attention !" -#: wp-admin/edit-form-advanced.php:380 +#: wp-admin/edit-form-advanced.php:373 msgid "Format — Post Formats designate how your theme will display a specific post. For example, you could have a standard blog post with a title and paragraphs, or a short aside that omits the title and contains a short text blurb. Your theme could enable all or some of 10 possible formats. Learn more about each post format." msgstr "Format - Un format de publication désigne la manière dont votre thème doit afficher une publication donnée. Par exemple, vous pourriez avoir un article de blog classique, avec titre et paragraphes, ou le format En passant pour ne pas utiliser le titre et n’afficher qu’un court texte. Votre thème peut utiliser jusqu’à 10 formats différents. Lisez la documentation (en anglais) pour obtenir une description de chaque format." -#: wp-admin/edit-form-advanced.php:337 +#: wp-admin/edit-form-advanced.php:330 msgid "Documentation on Editing Pages" msgstr "Documentation sur la modification des pages" -#: wp-admin/edit-form-advanced.php:336 +#: wp-admin/edit-form-advanced.php:329 msgid "Documentation on Adding New Pages" msgstr "Documentation sur la création de nouvelles pages" @@ -3819,7 +3998,7 @@ msgstr "Revisions Management" msgstr "Gestion des révisions" -#: wp-admin/edit-form-advanced.php:355 +#: wp-admin/edit-form-advanced.php:348 msgid "Documentation on Edit Media" msgstr "Documentation sur la modification des médias" @@ -3831,7 +4010,7 @@ msgstr "Documentation on Dashboard" msgstr "Documentation sur le Tableau de bord" -#: wp-admin/user-new.php:310 +#: wp-admin/user-new.php:315 msgid "Documentation on Adding New Users" msgstr "Documentation sur l’ajout de nouveaux comptes" @@ -3856,11 +4035,11 @@ msgstr "Documentation on Updating WordPress" msgstr "Documentation sur la mise à jour de WordPress" -#: wp-admin/nav-menus.php:771 +#: wp-admin/nav-menus.php:773 msgid "Documentation on Menus" msgstr "Documentation sur les menus" -#: wp-admin/plugin-editor.php:152 +#: wp-admin/plugin-editor.php:155 msgid "Documentation on Writing Plugins" msgstr "Documentation sur l’écriture d’extensions en anglais)" @@ -3881,16 +4060,16 @@ msgid " msgstr "Documentation sur les commentaires" #. translators: %s: UTC time. -#: wp-admin/options-general.php:406 +#: wp-admin/options-general.php:405 msgid "Universal time is %s." msgstr "L’heure universelle est %s." #. translators: %s: UTC abbreviation -#: wp-admin/options-general.php:395 +#: wp-admin/options-general.php:394 msgid "Choose either a city in the same timezone as you or a %s (Coordinated Universal Time) time offset." msgstr "Choisissez soit une ville dans le même fuseau horaire que vous ou un décalage horaire %s (Temps Universel Coordonné)." -#: wp-admin/options-general.php:266 +#: wp-admin/options-general.php:265 msgid "Administration Email Address" msgstr "Adresse e-mail d’administration" @@ -3899,8 +4078,8 @@ msgid "Documentation sur les réglages généraux" #. translators: %s: Documentation URL. -#: wp-admin/includes/file.php:328 wp-admin/plugin-editor.php:325 -#: wp-admin/theme-editor.php:361 +#: wp-admin/includes/file.php:328 wp-admin/plugin-editor.php:335 +#: wp-admin/theme-editor.php:366 msgid "You need to make this file writable before you can save your changes. See Changing File Permissions for more information." msgstr "Vous devez rendre ce fichier accessible en écriture avant de pouvoir enregistrer vos modifications. Consultez Modifier les permissions des fichiers pour plus d’informations." @@ -3921,32 +4100,32 @@ msgstr "Effacement terminé." msgid "The attached file cannot be found." msgstr "Le fichier attaché ne peut pas être trouvé." -#: wp-admin/includes/template.php:2336 +#: wp-admin/includes/template.php:2335 msgctxt "page label" msgid "Privacy Policy Page" msgstr "Page de politique de confidentialité" -#: wp-admin/includes/template.php:2331 +#: wp-admin/includes/template.php:2330 msgctxt "page label" msgid "Posts Page" msgstr "Page des articles" -#: wp-admin/includes/template.php:2327 +#: wp-admin/includes/template.php:2326 msgctxt "page label" msgid "Front Page" msgstr "Page d’accueil" -#: wp-admin/includes/template.php:2318 +#: wp-admin/includes/template.php:2317 msgctxt "post status" msgid "Sticky" msgstr "Épinglé" -#: wp-admin/includes/template.php:2310 +#: wp-admin/includes/template.php:2309 msgctxt "post status" msgid "Customization Draft" msgstr "Brouillon de personnalisation" -#: wp-admin/includes/template.php:2296 +#: wp-admin/includes/template.php:2295 msgctxt "post status" msgid "Password protected" msgstr "Protégé par mot de passe" @@ -4007,7 +4186,7 @@ msgstr "Planifié pour le : %s" #. translators: Publish box time format, see #. https://www.php.net/manual/datetime.format.php -#: wp-admin/edit-form-advanced.php:177 wp-admin/edit-form-comment.php:150 +#: wp-admin/edit-form-advanced.php:170 wp-admin/edit-form-comment.php:150 #: wp-admin/includes/meta-boxes.php:236 wp-admin/includes/meta-boxes.php:442 msgctxt "publish box time format" msgid "H:i" @@ -4015,7 +4194,7 @@ msgstr "H\\h i \\m\\i\\n" #. translators: Publish box date format, see #. https://www.php.net/manual/datetime.format.php -#: wp-admin/edit-form-advanced.php:175 wp-admin/edit-form-comment.php:148 +#: wp-admin/edit-form-advanced.php:168 wp-admin/edit-form-comment.php:148 #: wp-admin/includes/meta-boxes.php:234 wp-admin/includes/meta-boxes.php:440 msgctxt "publish box date format" msgid "M j, Y" @@ -4032,23 +4211,23 @@ msgstr "" "dynamiquement, et doivent être modifiées uniquement via les filtres WordPress.\n" "Toute modification des directives situées entre ces marqueurs sera surchargée." -#: wp-admin/includes/class-wp-site-health-auto-updates.php:149 +#: wp-admin/includes/class-wp-site-health-auto-updates.php:158 msgid "All automatic updates are disabled." msgstr "Toutes les mises à jour automatiques sont désactivées." -#: wp-admin/includes/class-wp-debug-data.php:1620 +#: wp-admin/includes/class-wp-debug-data.php:1648 msgid "Database collation" msgstr "Classement de base de données" -#: wp-admin/includes/class-wp-debug-data.php:1615 +#: wp-admin/includes/class-wp-debug-data.php:1643 msgid "Database charset" msgstr "Jeu de caractères de la base de données" -#: wp-admin/includes/class-wp-debug-data.php:1388 +#: wp-admin/includes/class-wp-debug-data.php:1416 msgid "Inactive Themes" msgstr "Thèmes inactifs" -#: wp-admin/includes/class-wp-debug-data.php:1259 +#: wp-admin/includes/class-wp-debug-data.php:1287 msgid "Parent Theme" msgstr "Thème parent" @@ -4068,11 +4247,11 @@ msgstr "Vue globale du rapport sur les exportations." msgid "Documentation on Writing Settings" msgstr "Documentation sur les réglages d’écriture" -#: wp-admin/edit-tags.php:309 +#: wp-admin/edit-tags.php:312 msgid "Documentation on Tags" msgstr "Documentation sur les étiquettes" -#: wp-admin/edit-tags.php:305 +#: wp-admin/edit-tags.php:308 msgid "Documentation on Categories" msgstr "Documentation sur les catégories" @@ -4109,7 +4288,7 @@ msgid "Default post settings" msgstr "Réglages de publication par défaut" #. translators: %s: Gravatar URL. -#: wp-admin/user-edit.php:630 +#: wp-admin/user-edit.php:632 msgid "You can change your profile picture on Gravatar." msgstr "Vous pouvez changer votre image de profil sur Gravatar." @@ -4147,11 +4326,11 @@ msgid "The plugin %1$s has been deactivated due to an error: %2$s" msgstr "L’extension %1$s a été désactivée en raison d’une erreur : %2$s" #. translators: %s: Link to documentation on child themes. -#: wp-admin/theme-editor.php:410 +#: wp-admin/theme-editor.php:415 msgid "If you need to tweak more than your theme’s CSS, you might want to try making a child theme." msgstr "Si vous avez besoin d’ajuster plus que le CSS de votre thème, vous voudrez peut-être essayer de faire un thème enfant." -#: wp-admin/theme-editor.php:402 +#: wp-admin/theme-editor.php:407 msgid "You appear to be making direct edits to your theme in the WordPress dashboard. It is not recommended! Editing your theme directly could break your site and your changes may be lost in future updates." msgstr "Vous semblez vouloir effectuer des modifications directes pour votre thème dans le tableau de bord WordPress. Ce n’est pas recommandé ! Modifier votre thème directement pourrait casser votre site et vos modifications peuvent être perdues avec les futures mises à jour." @@ -4162,8 +4341,8 @@ msgctxt "draft_length" msgid "10" msgstr "10" -#: wp-admin/includes/file.php:492 wp-admin/plugin-editor.php:118 -#: wp-admin/theme-editor.php:306 +#: wp-admin/includes/file.php:492 wp-admin/plugin-editor.php:121 +#: wp-admin/theme-editor.php:311 msgid "File does not exist! Please double check the name and try again." msgstr "Le fichier n’existe pas ! Veuillez vérifier le nom et réessayer." @@ -4190,7 +4369,7 @@ msgctxt "Site Health" msgid "Status" msgstr "État" -#: wp-admin/includes/class-wp-debug-data.php:810 +#: wp-admin/includes/class-wp-debug-data.php:838 msgid "Themes directory location" msgstr "Emplacement du répertoire de thèmes" @@ -4262,13 +4441,13 @@ msgstr "La valeur, %1$s, a été activée par %2$s ou ajoutée à votre fichier #. translators: Background update finished notification email subject. %s: Site #. title. -#: wp-admin/includes/class-wp-automatic-updater.php:1635 +#: wp-admin/includes/class-wp-automatic-updater.php:1661 msgid "[%s] Background Update Finished" msgstr "[%s] Mise à jour en arrière-plan terminée" #. translators: Background update failed notification email subject. %s: Site #. title. -#: wp-admin/includes/class-wp-automatic-updater.php:1632 +#: wp-admin/includes/class-wp-automatic-updater.php:1658 msgid "[%s] Background Update Failed" msgstr "[%s] Mise à jour en arrière-plan échouée" @@ -4331,17 +4510,17 @@ msgid "Go to the Plugins screen" msgstr "Aller à l’écran des extensions" #. translators: %s: The filename of the package. -#: wp-admin/includes/file.php:1498 +#: wp-admin/includes/file.php:1516 msgid "The authenticity of %s could not be verified." msgstr "L’authenticité de %s ne peut pas être vérifiée." #. translators: %s: The filename of the package. -#: wp-admin/includes/file.php:1450 +#: wp-admin/includes/file.php:1468 msgid "The authenticity of %s could not be verified as no signature was found." msgstr "L’authenticité de %s n’a pas pu être vérifiée car aucune signature n’a été trouvée." #. translators: %s: The filename of the package. -#: wp-admin/includes/file.php:1398 wp-admin/includes/file.php:1432 +#: wp-admin/includes/file.php:1416 wp-admin/includes/file.php:1450 msgid "The authenticity of %s could not be verified as signature verification is unavailable on this system." msgstr "L’authenticité de %s ne peut pas être vérifiée car la vérification des signatures est indisponible sur ce système." @@ -4498,19 +4677,19 @@ msgstr "Cette extension n’a pas pu se charger correctement et a été mise en msgid "Go to the Themes screen" msgstr "Aller à l’écran des thèmes" -#: wp-admin/includes/class-wp-debug-data.php:1961 +#: wp-admin/includes/class-wp-debug-data.php:1994 msgid "Total size is not available. Some errors were encountered when determining the size of your installation." msgstr "La taille totale n’est pas disponible. Des erreurs ont été rencontrées lors de la détermination de la taille de votre installation." -#: wp-admin/includes/class-wp-debug-data.php:1910 +#: wp-admin/includes/class-wp-debug-data.php:1943 msgid "The size cannot be calculated. The directory is not accessible. Usually caused by invalid permissions." msgstr "La taille ne peut pas être calculée. Le répertoire n’est pas accessible. Usuellement cela est causé par des droits d’accès non valides." -#: wp-admin/includes/class-wp-debug-data.php:1917 +#: wp-admin/includes/class-wp-debug-data.php:1950 msgid "The directory size calculation has timed out. Usually caused by a very large number of sub-directories and files." msgstr "Le calcul de la taille du répertoire a expiré. Cela est généralement causé par un très grand nombre de sous-répertoires et de fichiers." -#: wp-admin/includes/class-wp-debug-data.php:1551 +#: wp-admin/includes/class-wp-debug-data.php:1579 msgid "These settings alter where and how parts of WordPress are loaded." msgstr "Ces réglages modifient où et comment les éléments de WordPress sont chargés." @@ -4544,9 +4723,9 @@ msgstr "Tout fonctionne parfaitement ici." msgid "Great job!" msgstr "Bon travail !" -#: wp-admin/about.php:48 wp-admin/contribute.php:33 wp-admin/credits.php:36 +#: wp-admin/about.php:49 wp-admin/contribute.php:33 wp-admin/credits.php:36 #: wp-admin/freedoms.php:39 wp-admin/includes/ms.php:1134 -#: wp-admin/nav-menus.php:809 wp-admin/options-privacy.php:161 +#: wp-admin/nav-menus.php:811 wp-admin/options-privacy.php:161 #: wp-admin/privacy-policy-guide.php:44 wp-admin/privacy.php:33 #: wp-admin/site-health.php:141 msgid "Secondary menu" @@ -4952,116 +5131,116 @@ msgid "Unable to check if any new versions of WordPress are available." msgstr "Nous n’avons pas pu vérifier si de nouvelles versions de WordPress sont disponibles." #. translators: %s: Name of the filter used. -#: wp-admin/includes/class-wp-site-health-auto-updates.php:457 +#: wp-admin/includes/class-wp-site-health-auto-updates.php:472 msgid "WordPress security and maintenance releases are blocked by the %s filter." msgstr "Les mises à jour de sécurité et de maintenance sont bloquées par le filtre %s." #. translators: %s: Name of the constant used. -#: wp-admin/includes/class-wp-site-health-auto-updates.php:445 +#: wp-admin/includes/class-wp-site-health-auto-updates.php:460 msgid "WordPress security and maintenance releases are blocked by %s." msgstr "Les mises à jour de sécurité et de maintenance sont bloquées par %s." #. translators: %s: Name of the filter used. -#: wp-admin/includes/class-wp-site-health-auto-updates.php:425 +#: wp-admin/includes/class-wp-site-health-auto-updates.php:437 msgid "WordPress development updates are blocked by the %s filter." msgstr "Les mises à jour de développement WordPress sont bloquées par le filtre %s." #. translators: %s: Name of the constant used. -#: wp-admin/includes/class-wp-site-health-auto-updates.php:413 +#: wp-admin/includes/class-wp-site-health-auto-updates.php:425 msgid "WordPress development updates are blocked by the %s constant." msgstr "Les mises à jour de développement WordPress sont bloquées par la constante %s." -#: wp-admin/includes/class-wp-site-health-auto-updates.php:389 +#: wp-admin/includes/class-wp-site-health-auto-updates.php:400 msgid "All of your WordPress files are writable." msgstr "Tous vos fichiers WordPress sont accessibles en écriture." -#: wp-admin/includes/class-wp-site-health-auto-updates.php:384 +#: wp-admin/includes/class-wp-site-health-auto-updates.php:395 msgid "Some files are not writable by WordPress:" msgstr "Certains fichiers ne sont pas accessibles par WordPress :" -#: wp-admin/includes/class-wp-site-health-auto-updates.php:358 +#: wp-admin/includes/class-wp-site-health-auto-updates.php:369 msgid "This could mean that connections are failing to WordPress.org." msgstr "Cela peut signifier que les connexions à WordPress.org ne fonctionnent pas." #. translators: %s: WordPress version. -#: wp-admin/includes/class-wp-site-health-auto-updates.php:355 +#: wp-admin/includes/class-wp-site-health-auto-updates.php:366 msgid "Couldn't retrieve a list of the checksums for WordPress %s." msgstr "Impossible de récupérer une liste des checksums pour WordPress %s." -#: wp-admin/includes/class-wp-site-health-auto-updates.php:303 +#: wp-admin/includes/class-wp-site-health-auto-updates.php:312 msgid "Your installation of WordPress does not require FTP credentials to perform updates." msgstr "Votre installation de WordPress ne nécessite pas d’identifiants FTP pour effectuer les mises à jour." -#: wp-admin/includes/class-wp-site-health-auto-updates.php:294 +#: wp-admin/includes/class-wp-site-health-auto-updates.php:303 msgid "(Your site is performing updates over FTP due to file ownership. Talk to your hosting company.)" msgstr "(Votre site effectue les mises à jour par FTP en raison de la propriété du fichier. Parlez-en à votre hébergeur.)" -#: wp-admin/includes/class-wp-site-health-auto-updates.php:293 +#: wp-admin/includes/class-wp-site-health-auto-updates.php:302 msgid "Your installation of WordPress prompts for FTP credentials to perform updates." msgstr "Votre installation de WordPress demande des informations d’identification FTP pour effectuer les mises à jour." -#: wp-admin/includes/class-wp-site-health-auto-updates.php:271 +#: wp-admin/includes/class-wp-site-health-auto-updates.php:280 msgid "No version control systems were detected." msgstr "Aucun système de contrôle de version n’a été détecté." #. translators: 1: Folder name. 2: Version control directory. -#: wp-admin/includes/class-wp-site-health-auto-updates.php:262 +#: wp-admin/includes/class-wp-site-health-auto-updates.php:271 msgid "The folder %1$s was detected as being under version control (%2$s)." msgstr "Le dossier %1$s a été détecté comme disposant d’un système de contrôle de version (%2$s)." #. translators: 1: Folder name. 2: Version control directory. 3: Filter name. -#: wp-admin/includes/class-wp-site-health-auto-updates.php:249 +#: wp-admin/includes/class-wp-site-health-auto-updates.php:258 msgid "The folder %1$s was detected as being under version control (%2$s), but the %3$s filter is allowing updates." msgstr "Le dossier %1$s a été détecté comme disposant d’un système de contrôle de version (%2$s), mais le filtre %3$s autorise les mises à jour." -#: wp-admin/includes/class-wp-site-health-auto-updates.php:183 +#: wp-admin/includes/class-wp-site-health-auto-updates.php:192 msgid "A previous automatic background update could not occur." msgstr "Une précédente mise à jour automatique en arrière-plan n’a pu être effectuée." #. translators: %s: Code of error shown. -#: wp-admin/includes/class-wp-site-health-auto-updates.php:174 -#: wp-admin/includes/class-wp-site-health-auto-updates.php:191 +#: wp-admin/includes/class-wp-site-health-auto-updates.php:183 +#: wp-admin/includes/class-wp-site-health-auto-updates.php:200 msgid "The error code was %s." msgstr "Le code d’erreur était %s." -#: wp-admin/includes/class-wp-site-health-auto-updates.php:171 +#: wp-admin/includes/class-wp-site-health-auto-updates.php:180 msgid "When you've been able to update using the \"Update now\" button on Dashboard > Updates, this error will be cleared for future update attempts." msgstr "Lorsque vous aurez pu mettre à jour en utilisant le bouton « Mettre à jour maintenant » dans l’écran « Tableau de bord > Mises à jour », cette erreur ne sera plus affichée sur les futures tentatives de mise à jour." -#: wp-admin/includes/class-wp-site-health-auto-updates.php:170 -#: wp-admin/includes/class-wp-site-health-auto-updates.php:185 +#: wp-admin/includes/class-wp-site-health-auto-updates.php:179 +#: wp-admin/includes/class-wp-site-health-auto-updates.php:194 msgid "You would have received an email because of this." msgstr "Vous auriez reçu un e-mail à cause de cela." -#: wp-admin/includes/class-wp-site-health-auto-updates.php:169 +#: wp-admin/includes/class-wp-site-health-auto-updates.php:178 msgid "A previous automatic background update ended with a critical failure, so updates are now disabled." msgstr "Une précédente mise à jour automatique en arrière-plan s’est terminée par un échec critique, les mises à jour sont désormais désactivées." #. translators: %s: Name of the filter used. -#: wp-admin/includes/class-wp-site-health-auto-updates.php:122 +#: wp-admin/includes/class-wp-site-health-auto-updates.php:129 msgid "The %s filter is enabled." msgstr "Le filtre %s est activé." #. translators: %s: Name of the filter used. -#: wp-admin/includes/class-wp-site-health-auto-updates.php:101 +#: wp-admin/includes/class-wp-site-health-auto-updates.php:105 msgid "A plugin has prevented updates by disabling %s." msgstr "Une extension a empêché les mises à jour en désactivant %s." -#: wp-admin/includes/class-wp-debug-data.php:1694 +#: wp-admin/includes/class-wp-debug-data.php:1727 msgid "The must use plugins directory" msgstr "Le répertoire des extensions indispensables" -#: wp-admin/includes/class-wp-debug-data.php:1097 +#: wp-admin/includes/class-wp-debug-data.php:1125 msgid "Theme features" msgstr "Fonctionnalités de thèmes" #: wp-admin/includes/class-theme-installer-skin.php:250 -#: wp-admin/includes/class-wp-debug-data.php:1092 +#: wp-admin/includes/class-wp-debug-data.php:1120 msgid "Parent theme" msgstr "Thème parent" -#: wp-admin/includes/class-wp-debug-data.php:1087 -#: wp-admin/includes/class-wp-debug-data.php:1207 +#: wp-admin/includes/class-wp-debug-data.php:1115 +#: wp-admin/includes/class-wp-debug-data.php:1235 msgid "Author website" msgstr "Site de l’auteur ou de l’autrice" @@ -5069,28 +5248,28 @@ msgstr "Site de l’auteur ou de l’autrice" #. translators: %s: Latest plugin version number. #. translators: %s: Latest theme version number. #: wp-admin/includes/class-wp-debug-data.php:163 -#: wp-admin/includes/class-wp-debug-data.php:939 -#: wp-admin/includes/class-wp-debug-data.php:1044 -#: wp-admin/includes/class-wp-debug-data.php:1181 -#: wp-admin/includes/class-wp-debug-data.php:1326 +#: wp-admin/includes/class-wp-debug-data.php:967 +#: wp-admin/includes/class-wp-debug-data.php:1072 +#: wp-admin/includes/class-wp-debug-data.php:1209 +#: wp-admin/includes/class-wp-debug-data.php:1354 msgid "(Latest version: %s)" msgstr "(dernière version : %s)" #. translators: 1: Plugin version number. 2: Plugin author name. #. translators: 1: Theme version number. 2: Theme author name. -#: wp-admin/includes/class-wp-debug-data.php:745 -#: wp-admin/includes/class-wp-debug-data.php:921 -#: wp-admin/includes/class-wp-debug-data.php:1308 +#: wp-admin/includes/class-wp-debug-data.php:773 +#: wp-admin/includes/class-wp-debug-data.php:949 +#: wp-admin/includes/class-wp-debug-data.php:1336 msgid "Version %1$s by %2$s" msgstr "Version %1$s par %2$s" -#: wp-admin/includes/class-wp-debug-data.php:740 -#: wp-admin/includes/class-wp-debug-data.php:916 -#: wp-admin/includes/class-wp-debug-data.php:1303 +#: wp-admin/includes/class-wp-debug-data.php:768 +#: wp-admin/includes/class-wp-debug-data.php:944 +#: wp-admin/includes/class-wp-debug-data.php:1331 msgid "No version or author information is available." msgstr "Aucune information de version ou d’auteur/autrice n’est disponible." -#: wp-admin/includes/class-wp-debug-data.php:1587 +#: wp-admin/includes/class-wp-debug-data.php:1615 msgid "Server version" msgstr "Version du serveur" @@ -5148,7 +5327,7 @@ msgstr "Valeur maximale des variables PHP" #. translators: %s: ini_get() #: wp-admin/includes/class-wp-debug-data.php:396 -#: wp-admin/includes/class-wp-debug-data.php:579 +#: wp-admin/includes/class-wp-debug-data.php:607 msgid "Unable to determine some settings, as the %s function has been disabled." msgstr "Impossible de déterminer certains réglages, car la fonction %s a été désactivée." @@ -5188,80 +5367,80 @@ msgstr "Impossible de déterminer l’architecture du serveur" msgid "Server architecture" msgstr "Architecture serveur" -#: wp-admin/includes/class-wp-debug-data.php:713 +#: wp-admin/includes/class-wp-debug-data.php:741 msgid "Ghostscript version" msgstr "Version de Ghostscript" -#: wp-admin/includes/class-wp-debug-data.php:708 +#: wp-admin/includes/class-wp-debug-data.php:736 msgid "Unable to determine if Ghostscript is installed" msgstr "Impossible de déterminer si Ghostscript est installé" -#: wp-admin/includes/class-wp-debug-data.php:665 +#: wp-admin/includes/class-wp-debug-data.php:693 msgid "GD version" msgstr "Version de GD" -#: wp-admin/includes/class-wp-debug-data.php:639 +#: wp-admin/includes/class-wp-debug-data.php:667 msgid "Imagick Resource Limits" msgstr "Limites de ressources Imagick" -#: wp-admin/includes/class-wp-debug-data.php:563 +#: wp-admin/includes/class-wp-debug-data.php:591 msgid "ImageMagick version string" msgstr "Chaîne de version ImageMagick" -#: wp-admin/includes/class-wp-debug-data.php:558 +#: wp-admin/includes/class-wp-debug-data.php:586 msgid "ImageMagick version number" msgstr "Numéro de version ImageMagick" #: wp-admin/includes/class-wp-debug-data.php:451 -#: wp-admin/includes/class-wp-debug-data.php:540 -#: wp-admin/includes/class-wp-debug-data.php:554 -#: wp-admin/includes/class-wp-debug-data.php:571 -#: wp-admin/includes/class-wp-debug-data.php:1945 wp-admin/includes/ms.php:803 +#: wp-admin/includes/class-wp-debug-data.php:568 +#: wp-admin/includes/class-wp-debug-data.php:582 +#: wp-admin/includes/class-wp-debug-data.php:599 +#: wp-admin/includes/class-wp-debug-data.php:1978 wp-admin/includes/ms.php:803 msgid "Not available" msgstr "Non disponible" -#: wp-admin/includes/class-wp-debug-data.php:544 +#: wp-admin/includes/class-wp-debug-data.php:572 msgid "Active editor" msgstr "Éditeur actif" -#: wp-admin/includes/class-wp-debug-data.php:842 +#: wp-admin/includes/class-wp-debug-data.php:870 msgid "Total installation size" msgstr "Taille totale de l’installation" -#: wp-admin/includes/class-wp-debug-data.php:837 +#: wp-admin/includes/class-wp-debug-data.php:865 msgid "Database size" msgstr "Taille de la base de données" -#: wp-admin/includes/class-wp-debug-data.php:796 +#: wp-admin/includes/class-wp-debug-data.php:824 msgid "WordPress directory size" msgstr "Taille du répertoire de WordPress" -#: wp-admin/includes/class-wp-debug-data.php:792 +#: wp-admin/includes/class-wp-debug-data.php:820 msgid "WordPress directory location" msgstr "Emplacement du répertoire de WordPress" -#: wp-admin/includes/class-wp-debug-data.php:823 +#: wp-admin/includes/class-wp-debug-data.php:851 msgid "Plugins directory size" msgstr "Taille du répertoire des extensions" -#: wp-admin/includes/class-wp-debug-data.php:819 +#: wp-admin/includes/class-wp-debug-data.php:847 msgid "Plugins directory location" msgstr "Emplacement du répertoire des extensions" -#: wp-admin/includes/class-wp-debug-data.php:814 +#: wp-admin/includes/class-wp-debug-data.php:842 msgid "Themes directory size" msgstr "Taille du répertoire des thèmes" -#: wp-admin/includes/class-wp-debug-data.php:1101 -#: wp-admin/includes/class-wp-debug-data.php:1212 +#: wp-admin/includes/class-wp-debug-data.php:1129 +#: wp-admin/includes/class-wp-debug-data.php:1240 msgid "Theme directory location" msgstr "Emplacement du répertoire des thèmes" -#: wp-admin/includes/class-wp-debug-data.php:805 +#: wp-admin/includes/class-wp-debug-data.php:833 msgid "Uploads directory size" msgstr "Taille du répertoire des téléversements" -#: wp-admin/includes/class-wp-debug-data.php:801 +#: wp-admin/includes/class-wp-debug-data.php:829 msgid "Uploads directory location" msgstr "Emplacement du répertoire des téléversements" @@ -5293,102 +5472,102 @@ msgstr "Nombre de sites" msgid "User count" msgstr "Nombre de comptes" -#: wp-admin/includes/class-wp-debug-data.php:1678 +#: wp-admin/includes/class-wp-debug-data.php:1707 msgid "The themes directory" msgstr "Le répertoire de thèmes" -#: wp-admin/includes/class-wp-debug-data.php:1673 +#: wp-admin/includes/class-wp-debug-data.php:1702 msgid "The plugins directory" msgstr "Le répertoire d’extensions" -#: wp-admin/includes/class-wp-debug-data.php:1668 +#: wp-admin/includes/class-wp-debug-data.php:1697 msgid "The uploads directory" msgstr "Le répertoire des téléversements" -#: wp-admin/includes/class-wp-debug-data.php:1663 +#: wp-admin/includes/class-wp-debug-data.php:1692 msgid "The wp-content directory" msgstr "Le répertoire wp-content" -#: wp-admin/includes/class-wp-debug-data.php:1659 -#: wp-admin/includes/class-wp-debug-data.php:1664 -#: wp-admin/includes/class-wp-debug-data.php:1669 -#: wp-admin/includes/class-wp-debug-data.php:1674 -#: wp-admin/includes/class-wp-debug-data.php:1679 -#: wp-admin/includes/class-wp-debug-data.php:1684 -#: wp-admin/includes/class-wp-debug-data.php:1695 +#: wp-admin/includes/class-wp-debug-data.php:1688 +#: wp-admin/includes/class-wp-debug-data.php:1693 +#: wp-admin/includes/class-wp-debug-data.php:1698 +#: wp-admin/includes/class-wp-debug-data.php:1703 +#: wp-admin/includes/class-wp-debug-data.php:1708 +#: wp-admin/includes/class-wp-debug-data.php:1714 +#: wp-admin/includes/class-wp-debug-data.php:1728 msgid "Not writable" msgstr "Non accessible en écriture" -#: wp-admin/includes/class-wp-debug-data.php:1659 -#: wp-admin/includes/class-wp-debug-data.php:1664 -#: wp-admin/includes/class-wp-debug-data.php:1669 -#: wp-admin/includes/class-wp-debug-data.php:1674 -#: wp-admin/includes/class-wp-debug-data.php:1679 -#: wp-admin/includes/class-wp-debug-data.php:1684 -#: wp-admin/includes/class-wp-debug-data.php:1695 +#: wp-admin/includes/class-wp-debug-data.php:1688 +#: wp-admin/includes/class-wp-debug-data.php:1693 +#: wp-admin/includes/class-wp-debug-data.php:1698 +#: wp-admin/includes/class-wp-debug-data.php:1703 +#: wp-admin/includes/class-wp-debug-data.php:1708 +#: wp-admin/includes/class-wp-debug-data.php:1714 +#: wp-admin/includes/class-wp-debug-data.php:1728 msgid "Writable" msgstr "Accessible en écriture" -#: wp-admin/includes/class-wp-debug-data.php:1658 +#: wp-admin/includes/class-wp-debug-data.php:1687 msgid "The main WordPress directory" msgstr "Le répertoire principal de WordPress" -#: wp-admin/includes/class-wp-debug-data.php:1702 +#: wp-admin/includes/class-wp-debug-data.php:1735 msgid "Shows whether WordPress is able to write to the directories it needs access to." msgstr "Montre si WordPress est capable ou non d’écrire dans les répertoires auxquels il a besoin d’accéder." -#: wp-admin/includes/class-wp-debug-data.php:1701 +#: wp-admin/includes/class-wp-debug-data.php:1734 msgid "Filesystem Permissions" msgstr "Droits des fichiers système" -#: wp-admin/includes/class-wp-debug-data.php:1088 -#: wp-admin/includes/class-wp-debug-data.php:1208 -#: wp-admin/includes/class-wp-debug-data.php:1415 -#: wp-admin/includes/class-wp-debug-data.php:1424 -#: wp-admin/includes/class-wp-debug-data.php:1433 -#: wp-admin/includes/class-wp-debug-data.php:1442 -#: wp-admin/includes/class-wp-debug-data.php:1451 -#: wp-admin/includes/class-wp-debug-data.php:1463 -#: wp-admin/includes/class-wp-debug-data.php:1468 -#: wp-admin/includes/class-wp-debug-data.php:1539 +#: wp-admin/includes/class-wp-debug-data.php:1116 +#: wp-admin/includes/class-wp-debug-data.php:1236 +#: wp-admin/includes/class-wp-debug-data.php:1443 +#: wp-admin/includes/class-wp-debug-data.php:1452 +#: wp-admin/includes/class-wp-debug-data.php:1461 +#: wp-admin/includes/class-wp-debug-data.php:1470 +#: wp-admin/includes/class-wp-debug-data.php:1479 +#: wp-admin/includes/class-wp-debug-data.php:1491 +#: wp-admin/includes/class-wp-debug-data.php:1496 +#: wp-admin/includes/class-wp-debug-data.php:1567 msgid "Undefined" msgstr "Indéfini" -#: wp-admin/includes/class-wp-debug-data.php:1550 +#: wp-admin/includes/class-wp-debug-data.php:1578 msgid "WordPress Constants" msgstr "Constantes WordPress" -#: wp-admin/includes/class-wp-debug-data.php:1635 +#: wp-admin/includes/class-wp-debug-data.php:1663 msgid "Database" msgstr "Base de données" -#: wp-admin/includes/class-wp-debug-data.php:525 +#: wp-admin/includes/class-wp-debug-data.php:553 msgid "The options shown below relate to your server setup. If changes are required, you may need your web host’s assistance." msgstr "Les options ci-dessous sont relatives à votre configuration serveur. Si des modifications sont nécessaires, vous pourriez avoir besoin de l’assistance de votre hébergeur." -#: wp-admin/includes/class-wp-debug-data.php:524 +#: wp-admin/includes/class-wp-debug-data.php:552 msgid "Server" msgstr "Serveur" -#: wp-admin/includes/class-wp-debug-data.php:719 +#: wp-admin/includes/class-wp-debug-data.php:747 msgid "Media Handling" msgstr "Traitement des médias" -#: wp-admin/includes/class-wp-debug-data.php:879 +#: wp-admin/includes/class-wp-debug-data.php:907 msgid "Inactive Plugins" msgstr "Extensions inactives" -#: wp-admin/includes/class-wp-debug-data.php:864 +#: wp-admin/includes/class-wp-debug-data.php:892 msgid "Active Plugins" msgstr "Extensions actives" -#: wp-admin/includes/class-wp-debug-data.php:769 +#: wp-admin/includes/class-wp-debug-data.php:797 msgid "Must Use Plugins" msgstr "Extensions indispensables" -#: wp-admin/includes/class-wp-debug-data.php:1147 -#: wp-admin/includes/theme.php:862 wp-admin/themes.php:1044 -#: wp-admin/includes/class-wp-ms-themes-list-table.php:939 +#: wp-admin/includes/class-wp-debug-data.php:1175 +#: wp-admin/includes/theme.php:862 wp-admin/themes.php:1086 +#: wp-admin/includes/class-wp-ms-themes-list-table.php:945 msgid "Active Theme" msgstr "Thème actif" @@ -5397,7 +5576,7 @@ msgid "Drop-ins" msgstr "Extensions avancées" #. translators: Filesystem directory paths and storage sizes. -#: wp-admin/includes/class-wp-debug-data.php:850 +#: wp-admin/includes/class-wp-debug-data.php:878 msgid "Directories and Sizes" msgstr "Répertoires et tailles" @@ -5440,7 +5619,7 @@ msgid "Site Health" msgstr "Santé du site" #. translators: %s: Number of requests. -#: wp-admin/includes/class-wp-privacy-requests-table.php:158 +#: wp-admin/includes/class-wp-privacy-requests-table.php:163 msgctxt "requests" msgid "All (%s)" msgid_plural "All (%s)" @@ -5495,53 +5674,53 @@ msgstr "Évènements et actualités WordPress – évènements #. translators: 1: URL to WordPress release notes, 2: WordPress version number, #. 3: Minimum required MySQL version number, 4: Current MySQL version number. -#: wp-admin/update-core.php:133 wp-admin/upgrade.php:120 +#: wp-admin/update-core.php:133 wp-admin/upgrade.php:139 msgid "You cannot update because WordPress %2$s requires MySQL version %3$s or higher. You are running version %4$s." msgstr "Vous ne pouvez pas mettre à jour car WordPress %2$s nécessite MySQL version %3$s ou plus. Vous utilisez la version %4$s." #. translators: 1: URL to WordPress release notes, 2: WordPress version number, #. 3: Minimum required PHP version number, 4: Current PHP version number. -#: wp-admin/update-core.php:124 wp-admin/upgrade.php:111 +#: wp-admin/update-core.php:124 wp-admin/upgrade.php:130 msgid "You cannot update because WordPress %2$s requires PHP version %3$s or higher. You are running version %4$s." msgstr "Vous ne pouvez pas mettre à jour car WordPress %2$s nécessite PHP version %3$s ou plus. Vous utilisez la version %4$s." -#: wp-admin/nav-menus.php:1065 +#: wp-admin/nav-menus.php:1067 msgid "Add menu items" msgstr "Ajouter des éléments de menu" #. translators: %s: URL to create a new menu. -#: wp-admin/nav-menus.php:1026 +#: wp-admin/nav-menus.php:1028 msgid "or create a new menu. Do not forget to save your changes!" msgstr "ou créez un nouveau menu. N’oubliez pas d’enregistrer vos modifications !" #. translators: Hidden accessibility text. -#: wp-admin/nav-menus.php:971 wp-admin/nav-menus.php:1041 +#: wp-admin/nav-menus.php:973 wp-admin/nav-menus.php:1043 msgid "Click the Save Menu button to save your changes." msgstr "Cliquer sur le bouton « Enregistrer le menu » pour enregistrer vos modifications." #. translators: %s: URL to create a new menu. -#: wp-admin/nav-menus.php:956 +#: wp-admin/nav-menus.php:958 msgid "Edit your menu below, or create a new menu. Do not forget to save your changes!" msgstr "Modifiez votre menu ci-dessous, ou créez un nouveau menu. N’oubliez pas d’enregistrer vos modifications !" #. translators: Hidden accessibility text. -#: wp-admin/nav-menus.php:947 +#: wp-admin/nav-menus.php:949 msgid "Fill in the Menu Name and click the Create Menu button to create your first menu." msgstr "Remplissez le nom du menu et cliquez sur le bouton « Créer le menu » pour créer votre premier menu." -#: wp-admin/nav-menus.php:943 +#: wp-admin/nav-menus.php:945 msgid "Create your first menu below." msgstr "Créez votre premier menu ci-dessous." #. translators: 1: URL to WordPress release notes, 2: WordPress version number, #. 3: Minimum required MySQL version number, 4: Current MySQL version number. -#: wp-admin/install.php:288 +#: wp-admin/install.php:289 msgid "You cannot install because WordPress %2$s requires MySQL version %3$s or higher. You are running version %4$s." msgstr "Vous ne pouvez pas poursuivre l’installation car WordPress %2$s nécessite MySQL version %3$s ou plus. Vous utilisez la version %4$s." #. translators: 1: URL to WordPress release notes, 2: WordPress version number, #. 3: Minimum required PHP version number, 4: Current PHP version number. -#: wp-admin/install.php:279 +#: wp-admin/install.php:280 msgid "You cannot install because WordPress %2$s requires PHP version %3$s or higher. You are running version %4$s." msgstr "Vous ne pouvez pas poursuivre l’installation car WordPress %2$s nécessite PHP version %3$s ou plus. Vous utilisez la version %4$s." @@ -5619,7 +5798,7 @@ msgstr "Ajouter à : %s" msgid "Track %s." msgstr "Piste %s." -#: wp-admin/includes/schema.php:1255 +#: wp-admin/includes/schema.php:1260 msgid "My Network" msgstr "Mon réseau" @@ -5640,14 +5819,14 @@ msgstr "Cette extension ne fonctionne pas avec vos versions de WordPress et de P #. translators: %s: WordPress version number. #. translators: %s: WordPress version. -#: wp-admin/about.php:20 wp-admin/includes/update.php:321 -#: wp-admin/index.php:119 wp-admin/install.php:249 wp-admin/update-core.php:94 -#: wp-admin/upgrade.php:81 +#: wp-admin/about.php:21 wp-admin/includes/update.php:321 +#: wp-admin/index.php:119 wp-admin/install.php:250 wp-admin/update-core.php:94 +#: wp-admin/upgrade.php:100 msgid "https://wordpress.org/documentation/wordpress-version/version-%s/" msgstr "https://wordpress.org/support/wordpress-version/version-%s/" #: wp-admin/includes/class-wp-plugins-list-table.php:935 -#: wp-admin/themes.php:695 +#: wp-admin/themes.php:716 msgid "Resume" msgstr "Relancer" @@ -5670,7 +5849,7 @@ msgid "Could not resume the theme." msgstr "Impossible de relancer le thème." #. translators: %s: Default category. -#: wp-admin/edit-tags.php:629 +#: wp-admin/edit-tags.php:632 msgid "Deleting a category does not delete the posts in that category. Instead, posts that were only assigned to the deleted category are set to the default category %s. The default category cannot be deleted." msgstr "Supprimer une catégorie ne supprime pas les articles de cette catégorie. Les articles ayant été assignés uniquement à cette catégorie se voient assignés à la catégorie par défaut, « %s ». La catégorie par défaut ne peut pas être supprimée." @@ -5743,37 +5922,37 @@ msgid "Created" msgstr "Créé" #. translators: First post content. %s: Site link. -#: wp-admin/includes/upgrade.php:226 +#: wp-admin/includes/upgrade.php:235 msgid "Welcome to WordPress. This is your first post. Edit or delete it, then start writing!" msgstr "Bienvenue sur WordPress. Ceci est votre premier article. Modifiez-le ou supprimez-le, puis commencez à écrire !" #. translators: First page content. %s: Site admin URL. -#: wp-admin/includes/upgrade.php:327 +#: wp-admin/includes/upgrade.php:336 msgid "As a new WordPress user, you should go to your dashboard to delete this page and create new pages for your content. Have fun!" msgstr "En tant que nouvel utilisateur ou utilisatrice de WordPress, vous devriez vous rendre sur votre tableau de bord pour supprimer cette page et créer de nouvelles pages pour votre contenu. Amusez-vous bien !" #. translators: First page content. -#: wp-admin/includes/upgrade.php:321 +#: wp-admin/includes/upgrade.php:330 msgid "The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community." msgstr "La société 123 Machin Truc a été créée en 1971, et n’a cessé de proposer au public des machins-trucs de qualité depuis lors. Située à Saint-Remy-en-Bouzemont-Saint-Genest-et-Isson, 123 Machin Truc emploie 2 000 personnes, et fabrique toutes sortes de bidules supers pour la communauté bouzemontoise." #. translators: First page content. -#: wp-admin/includes/upgrade.php:316 +#: wp-admin/includes/upgrade.php:325 msgid "...or something like this:" msgstr "…ou quelque chose comme cela :" #. translators: First page content. -#: wp-admin/includes/upgrade.php:311 +#: wp-admin/includes/upgrade.php:320 msgid "Hi there! I'm a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like piña coladas. (And gettin' caught in the rain.)" msgstr "Bonjour ! Je suis un mécanicien qui aspire à devenir acteur, et voici mon site. J’habite à Bordeaux, j’ai un super chien baptisé Russell, et j’aime la vodka (ainsi qu’être surpris par la pluie soudaine lors de longues balades sur la plage au coucher du soleil)." #. translators: First page content. -#: wp-admin/includes/upgrade.php:306 +#: wp-admin/includes/upgrade.php:315 msgid "This is an example page. It's different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:" msgstr "Ceci est une page d’exemple. C’est différent d’un article de blog parce qu’elle restera au même endroit et apparaîtra dans la navigation de votre site (dans la plupart des thèmes). La plupart des gens commencent par une page « À propos » qui les présente aux personnes visitant le site. Cela pourrait ressembler à quelque chose comme cela :" #. translators: %s: Post title. -#: wp-admin/includes/class-wp-posts-list-table.php:1566 +#: wp-admin/includes/class-wp-posts-list-table.php:1573 msgid "Export “%s” as JSON" msgstr "Exporter « %s » en JSON" @@ -5820,7 +5999,7 @@ msgid "Privacy Policy Page" msgstr "Page de politique de confidentialité" #. translators: %s: Page title. -#: wp-admin/includes/misc.php:1577 +#: wp-admin/includes/misc.php:1554 msgid "%s (Draft)" msgstr "%s (Brouillon)" @@ -5850,7 +6029,7 @@ msgstr "Il n’y a aucune page." #. translators: 1: Privacy Policy guide URL, 2: Additional link attributes, 3: #. Accessibility text. #: wp-admin/options-privacy.php:239 -msgid "Need help putting together your new Privacy Policy page? Check out our privacy policy guide%3$s for recommendations on what content to include, along with policies suggested by your plugins and theme." +msgid "Need help putting together your new Privacy Policy page? Check out the privacy policy guide%3$s for recommendations on what content to include, along with policies suggested by your plugins and theme." msgstr "Vous avez besoin d’aide pour créer votre nouvelle page de politique de confidentialité ? Consultez notre guide%3$s pour obtenir des recommandations sur les contenus à inclure. Consultez aussi les suggestions faites par les personnes qui éditent vos extensions et votre thème." #: wp-admin/privacy-policy-guide.php:21 wp-admin/privacy-policy-guide.php:74 @@ -5859,31 +6038,31 @@ msgid "Privacy Policy Guide" msgstr "Guide de la politique de confidentialité" #. translators: Default privacy policy text. -#: wp-admin/includes/class-wp-privacy-policy-content.php:609 +#: wp-admin/includes/class-wp-privacy-policy-content.php:607 msgid "Visitor comments may be checked through an automated spam detection service." msgstr "Les commentaires des visiteurs peuvent être vérifiés à l’aide d’un service automatisé de détection des commentaires indésirables." #. translators: Privacy policy tutorial. -#: wp-admin/includes/class-wp-privacy-policy-content.php:557 +#: wp-admin/includes/class-wp-privacy-policy-content.php:555 msgid "In this subsection you should note what analytics package you use, how users can opt out of analytics tracking, and a link to your analytics provider’s privacy policy, if any." msgstr "Dans cette sous-section, indiquez les outils de statistiques que vous utilisez pour vos mesures d’audience, et le cas échéant faites un lien vers la politique de confidentialité de votre fournisseur." #. translators: Privacy policy tutorial. -#: wp-admin/includes/class-wp-privacy-policy-content.php:514 +#: wp-admin/includes/class-wp-privacy-policy-content.php:512 msgid "In this subsection you should note what information may be disclosed by users who can upload media files. All uploaded files are usually publicly accessible." msgstr "Dans cette sous-section, indiquez les informations qui pourraient être dévoilées par les comptes pouvant téléverser des fichiers dans votre médiathèque. Les fichiers téléversés sont généralement accessibles publiquement." #. translators: Privacy policy tutorial. -#: wp-admin/includes/class-wp-privacy-policy-content.php:501 +#: wp-admin/includes/class-wp-privacy-policy-content.php:499 msgid "In this subsection you should note what information is captured through comments. We have noted the data which WordPress collects by default." msgstr "Dans cette sous-section, indiquez les informations qui sont récupérées via les commentaires. Nous avons indiqué les données collectées nativement par WordPress." #. translators: Privacy policy tutorial. -#: wp-admin/includes/class-wp-privacy-policy-content.php:485 +#: wp-admin/includes/class-wp-privacy-policy-content.php:483 msgid "In this section you should note what personal data you collect from users and site visitors. This may include personal data, such as name, email address, personal account preferences; transactional data, such as purchase information; and technical data, such as information about cookies." msgstr "Dans cette section, indiquez les données personnelles que vous collectez sur les utilisateurs/utilisatrices et personnes visitant votre site. Cela pourrait comprendre les données personnelles comme le nom, l’adresse e-mail, les préférences de compte personnel ; les données transactionnelles comme les informations de commande ; et les données techniques comme les informations sur les cookies." -#: wp-admin/includes/class-wp-privacy-policy-content.php:459 +#: wp-admin/includes/class-wp-privacy-policy-content.php:457 msgid "Suggested text:" msgstr "Texte suggéré :" @@ -5911,8 +6090,8 @@ msgid "Introduction" msgstr "Introduction" #: wp-admin/includes/class-wp-privacy-policy-content.php:336 -msgid "Need help putting together your new Privacy Policy page? Check out our guide for recommendations on what content to include, along with policies suggested by your plugins and theme." -msgstr "Vous avez besoin d’aide pour assembler votre nouvelle page de politique de confidentialité ? Consultez notre guide pour des recommandations sur les contenus à proposer, ainsi que sur les politiques de confidentialité de votre thème et de vos extensions." +msgid "Need help putting together your new Privacy Policy page? Check out the guide for recommendations on what content to include, along with policies suggested by your plugins and theme." +msgstr "Vous avez besoin d’aide pour assembler votre nouvelle page de politique de confidentialité ? Consultez le guide des recommandations sur les contenus à proposer, ainsi que sur les politiques de confidentialité de votre thème et de vos extensions." #: wp-admin/includes/class-wp-privacy-data-removal-requests-list-table.php:66 #: wp-admin/includes/class-wp-privacy-data-removal-requests-list-table.php:140 @@ -5928,252 +6107,252 @@ msgid "Send export link" msgstr "Envoyer le lien d’exportation" #. translators: Privacy policy tutorial. -#: wp-admin/includes/class-wp-privacy-policy-content.php:658 +#: wp-admin/includes/class-wp-privacy-policy-content.php:656 msgid "If you are a member of a regulated industry, or if you are subject to additional privacy laws, you may be required to disclose that information here." msgstr "Si vous êtes membre d’une industrie régulée, ou si vous êtes sujet à des réglementations spécifiques, il est probablement nécessaire d’afficher ces informations ici." #. translators: Default privacy policy heading. -#: wp-admin/includes/class-wp-privacy-policy-content.php:656 +#: wp-admin/includes/class-wp-privacy-policy-content.php:654 msgid "Industry regulatory disclosure requirements" msgstr "Affichage des informations liées aux secteurs soumis à des régulations spécifiques" #. translators: Privacy policy tutorial. -#: wp-admin/includes/class-wp-privacy-policy-content.php:651 +#: wp-admin/includes/class-wp-privacy-policy-content.php:649 msgid "If your website provides a service which includes automated decision making - for example, allowing customers to apply for credit, or aggregating their data into an advertising profile - you must note that this is taking place, and include information about how that information is used, what decisions are made with that aggregated data, and what rights users have over decisions made without human intervention." msgstr "Si votre site fournit un service qui inclut la prise de décision automatisée – par exemple, autoriser vos clients à souscrire à un crédit ou agréger leurs données dans un profil publicitaire – vous devez expliciter ce qui est mis en place et inclure des informations sur la façon dont les informations sont utilisées, quelles décisions sont prises avec ces données agrégées et quels sont les droits dont disposent les internautes sur les décisions prises sans intervention humaine." #. translators: Default privacy policy heading. -#: wp-admin/includes/class-wp-privacy-policy-content.php:649 +#: wp-admin/includes/class-wp-privacy-policy-content.php:647 msgid "What automated decision making and/or profiling we do with user data" msgstr "Opérations de marketing automatisé et/ou de profilage réalisées à l’aide des données personnelles" #. translators: Privacy policy tutorial. -#: wp-admin/includes/class-wp-privacy-policy-content.php:644 +#: wp-admin/includes/class-wp-privacy-policy-content.php:642 msgid "If your website receives data about users from third parties, including advertisers, this information must be included within the section of your privacy policy dealing with third party data." msgstr "Si votre site reçoit des données personnelles depuis des sources tierces – ce qui inclut les sources publicitaires – ces informations doivent être incluses dans la section sur les données issues de sources tierces de votre déclaration de protection de la vie privée." #. translators: Default privacy policy heading. -#: wp-admin/includes/class-wp-privacy-policy-content.php:642 +#: wp-admin/includes/class-wp-privacy-policy-content.php:640 msgid "What third parties we receive data from" msgstr "Les services tiers qui nous transmettent des données" #. translators: Privacy policy tutorial. -#: wp-admin/includes/class-wp-privacy-policy-content.php:637 +#: wp-admin/includes/class-wp-privacy-policy-content.php:635 msgid "In this section you should explain what procedures you have in place to deal with data breaches, either potential or real, such as internal reporting systems, contact mechanisms, or bug bounties." msgstr "Dans cette section, indiquez les procédures que vous avez mises en place en cas de fuites de données, soit potentielles, soit réelles, comme les systèmes internes de notification, les mécanismes de contact ou les récompenses éventuellement prévues pour les « chasseurs de bogues »." #. translators: Default privacy policy heading. -#: wp-admin/includes/class-wp-privacy-policy-content.php:635 +#: wp-admin/includes/class-wp-privacy-policy-content.php:633 msgid "What data breach procedures we have in place" msgstr "Procédures mises en œuvre en cas de fuite de données" #. translators: Privacy policy tutorial. -#: wp-admin/includes/class-wp-privacy-policy-content.php:630 +#: wp-admin/includes/class-wp-privacy-policy-content.php:628 msgid "In this section you should explain what measures you have taken to protect your users’ data. This could include technical measures such as encryption; security measures such as two factor authentication; and measures such as staff training in data protection. If you have carried out a Privacy Impact Assessment, you can mention it here too." msgstr "Dans cette section, indiquez les mesures que vous avez prises pour protéger les données de vos comptes. Cela peut inclure des mesures techniques comme le chiffrement, des mesures de sécurité comme l’authentification à deux facteurs ou des mesures humaines comme la mise en place d’une équipe formée à la protection des données. Si vous avez mené une analyse d’impact liée à la fuite de données privées, vous pouvez également l’indiquer ici." #. translators: Default privacy policy heading. -#: wp-admin/includes/class-wp-privacy-policy-content.php:628 +#: wp-admin/includes/class-wp-privacy-policy-content.php:626 msgid "How we protect your data" msgstr "Comment nous protégeons vos données" #. translators: Privacy policy tutorial. -#: wp-admin/includes/class-wp-privacy-policy-content.php:623 +#: wp-admin/includes/class-wp-privacy-policy-content.php:621 msgid "If you use your site for commercial purposes and you engage in more complex collection or processing of personal data, you should note the following information in your privacy policy in addition to the information we have already discussed." msgstr "Si vous utilisez votre site dans un but commercial et que vous vous engagez dans la collecte et le traitement de données personnelles plus complexes, vous devriez indiquer les informations suivantes dans votre déclaration de protection de la vie privée, en plus des informations détaillées précédemment." #. translators: Default privacy policy heading. -#: wp-admin/includes/class-wp-privacy-policy-content.php:621 +#: wp-admin/includes/class-wp-privacy-policy-content.php:619 msgid "Additional information" msgstr "Informations supplémentaires" #. translators: Privacy policy tutorial. -#: wp-admin/includes/class-wp-privacy-policy-content.php:616 +#: wp-admin/includes/class-wp-privacy-policy-content.php:614 msgid "In this section you should provide a contact method for privacy-specific concerns. If you are required to have a Data Protection Officer, list their name and full contact details here as well." msgstr "Dans cette section, indiquez la méthode de contact disponible pour les demandes concernant la vie privée. Si vous devez avoir un Délégué à la Protection des Données, indiquez également son nom et ses coordonnées détaillées." #. translators: Privacy policy tutorial. -#: wp-admin/includes/class-wp-privacy-policy-content.php:606 +#: wp-admin/includes/class-wp-privacy-policy-content.php:604 msgid "European data protection law requires data about European residents which is transferred outside the European Union to be safeguarded to the same standards as if the data was in Europe. So in addition to listing where data goes, you should describe how you ensure that these standards are met either by yourself or by your third party providers, whether that is through an agreement such as Privacy Shield, model clauses in your contracts, or binding corporate rules." msgstr "La loi européenne de protection des données nécessite que les données de résidents européens transférées en dehors de l’Union Européenne soient protégées dans les mêmes conditions que si elles étaient en Europe. En plus de lister les endroits où vont les données, vous devriez décrire comment vous vous assurez, par vous ou par vos sous-traitants, de la mise en conformité avec ces standards, soit par un accord comme le Privacy Shield (Bouclier de Protection des Données UE/États-Unis), des clauses dans vos contrats ou des règles d’entreprise contraignantes." #. translators: Privacy policy tutorial. -#: wp-admin/includes/class-wp-privacy-policy-content.php:604 +#: wp-admin/includes/class-wp-privacy-policy-content.php:602 msgid "In this section you should list all transfers of your site data outside the European Union and describe the means by which that data is safeguarded to European data protection standards. This could include your web hosting, cloud storage, or other third party services." msgstr "Listez dans cette section tous les transferts de données de votre site vers l’extérieur de l’Union Européenne et décrire en quoi ces données sont protégées au regard des standards européens de protection des données privées. Cela peut inclure votre hébergeur web, le stockage en « cloud » ou d’autres services tiers." #. translators: Default privacy policy text. -#: wp-admin/includes/class-wp-privacy-policy-content.php:596 +#: wp-admin/includes/class-wp-privacy-policy-content.php:594 msgid "If you have an account on this site, or have left comments, you can request to receive an exported file of the personal data we hold about you, including any data you have provided to us. You can also request that we erase any personal data we hold about you. This does not include any data we are obliged to keep for administrative, legal, or security purposes." msgstr "Si vous avez un compte ou si vous avez laissé des commentaires sur le site, vous pouvez demander à recevoir un fichier contenant toutes les données personnelles que nous possédons à votre sujet, incluant celles que vous nous avez fournies. Vous pouvez également demander la suppression des données personnelles vous concernant. Cela ne prend pas en compte les données stockées à des fins administratives, légales ou pour des raisons de sécurité." #. translators: Privacy policy tutorial. -#: wp-admin/includes/class-wp-privacy-policy-content.php:593 +#: wp-admin/includes/class-wp-privacy-policy-content.php:591 msgid "In this section you should explain what rights your users have over their data and how they can invoke those rights." msgstr "Dans cette section, indiquez les droits des comptes concernant leurs données et comment ils peuvent exercer ces droits." #. translators: Default privacy policy heading. -#: wp-admin/includes/class-wp-privacy-policy-content.php:589 +#: wp-admin/includes/class-wp-privacy-policy-content.php:587 msgid "What rights you have over your data" msgstr "Les droits que vous avez sur vos données" #. translators: Default privacy policy text. -#: wp-admin/includes/class-wp-privacy-policy-content.php:585 +#: wp-admin/includes/class-wp-privacy-policy-content.php:583 msgid "For users that register on our website (if any), we also store the personal information they provide in their user profile. All users can see, edit, or delete their personal information at any time (except they cannot change their username). Website administrators can also see and edit that information." msgstr "Pour les comptes qui s’inscrivent sur notre site (le cas échéant), nous stockons également les données personnelles indiquées dans leur profil. Tous les comptes peuvent voir, modifier ou supprimer leurs informations personnelles à tout moment (à l’exception de leur identifiant). Les gestionnaires du site peuvent aussi voir et modifier ces informations." #. translators: Default privacy policy text. -#: wp-admin/includes/class-wp-privacy-policy-content.php:583 +#: wp-admin/includes/class-wp-privacy-policy-content.php:581 msgid "If you leave a comment, the comment and its metadata are retained indefinitely. This is so we can recognize and approve any follow-up comments automatically instead of holding them in a moderation queue." msgstr "Si vous laissez un commentaire, le commentaire et ses métadonnées sont conservés indéfiniment. Cela permet de reconnaître et approuver automatiquement les commentaires suivants au lieu de les laisser dans la file de modération." #. translators: Privacy policy tutorial. -#: wp-admin/includes/class-wp-privacy-policy-content.php:580 +#: wp-admin/includes/class-wp-privacy-policy-content.php:578 msgid "In this section you should explain how long you retain personal data collected or processed by the website. While it is your responsibility to come up with the schedule of how long you keep each dataset for and why you keep it, that information does need to be listed here. For example, you may want to say that you keep contact form entries for six months, analytics records for a year, and customer purchase records for ten years." msgstr "Dans cette section, vous devriez indiquer la durée de conservation des données personnelles collectées et traitées par votre site web. Même s’il est de votre responsabilité de fournir un planning de conservation de chaque jeu de données dont vous disposez, cette information n’a pas besoin d’être affichée ici. Par exemple, vous pourriez indiquer que vous conservez les données reçues via vos formulaires de contact pendant six mois, les statistiques de visites pendant un an et les enregistrements liés aux ventes en ligne pendant dix ans." #. translators: Default privacy policy heading. -#: wp-admin/includes/class-wp-privacy-policy-content.php:576 +#: wp-admin/includes/class-wp-privacy-policy-content.php:574 msgid "How long we retain your data" msgstr "Durées de stockage de vos données" #. translators: Privacy policy tutorial. -#: wp-admin/includes/class-wp-privacy-policy-content.php:569 +#: wp-admin/includes/class-wp-privacy-policy-content.php:567 msgid "By default WordPress does not share any personal data with anyone." msgstr "Par défaut, WordPress ne partage vos informations personnelles avec personne." #. translators: Privacy policy tutorial. -#: wp-admin/includes/class-wp-privacy-policy-content.php:567 +#: wp-admin/includes/class-wp-privacy-policy-content.php:565 msgid "In this section you should name and list all third party providers with whom you share site data, including partners, cloud-based services, payment processors, and third party service providers, and note what data you share with them and why. Link to their own privacy policies if possible." msgstr "Dans cette section, listez et nommez tous les fournisseurs tiers avec qui vous partagez les données de votre site, en incluant les partenaires, les services en « cloud », les passerelles de paiement, et tous les autres services tiers. Indiquez les données que vous partagez et pourquoi vous le faites. Mettez un lien vers leur politique de confidentialité si possible." #. translators: Default privacy policy heading. -#: wp-admin/includes/class-wp-privacy-policy-content.php:563 +#: wp-admin/includes/class-wp-privacy-policy-content.php:561 msgid "Who we share your data with" msgstr "Utilisation et transmission de vos données personnelles" #. translators: Privacy policy tutorial. -#: wp-admin/includes/class-wp-privacy-policy-content.php:559 +#: wp-admin/includes/class-wp-privacy-policy-content.php:557 msgid "By default WordPress does not collect any analytics data. However, many web hosting accounts collect some anonymous analytics data. You may also have installed a WordPress plugin that provides analytics services. In that case, add information from that plugin here." msgstr "Par défaut, WordPress ne collecte aucune statistique des visites. Cependant de nombreux hébergeurs collectent des données statistiques anonymes. Vous pouvez également avoir installé une extension WordPress qui fourni des services de statistiques. Dans ce cas, indiquez les informations sur cette extension ici." #. translators: Default privacy policy heading. -#: wp-admin/includes/class-wp-privacy-policy-content.php:555 +#: wp-admin/includes/class-wp-privacy-policy-content.php:553 msgid "Analytics" msgstr "Statistiques et mesures d’audience" #. translators: Default privacy policy text. -#: wp-admin/includes/class-wp-privacy-policy-content.php:550 +#: wp-admin/includes/class-wp-privacy-policy-content.php:548 msgid "These websites may collect data about you, use cookies, embed additional third-party tracking, and monitor your interaction with that embedded content, including tracking your interaction with the embedded content if you have an account and are logged in to that website." msgstr "Ces sites web pourraient collecter des données sur vous, utiliser des cookies, embarquer des outils de suivis tiers, suivre vos interactions avec ces contenus embarqués si vous disposez d’un compte connecté sur leur site web." #. translators: Default privacy policy text. -#: wp-admin/includes/class-wp-privacy-policy-content.php:548 +#: wp-admin/includes/class-wp-privacy-policy-content.php:546 msgid "Articles on this site may include embedded content (e.g. videos, images, articles, etc.). Embedded content from other websites behaves in the exact same way as if the visitor has visited the other website." msgstr "Les articles de ce site peuvent inclure des contenus intégrés (par exemple des vidéos, images, articles…). Le contenu intégré depuis d’autres sites se comporte de la même manière que si le visiteur se rendait sur cet autre site." #. translators: Default privacy policy heading. -#: wp-admin/includes/class-wp-privacy-policy-content.php:546 +#: wp-admin/includes/class-wp-privacy-policy-content.php:544 msgid "Embedded content from other websites" msgstr "Contenu embarqué depuis d’autres sites" #. translators: Default privacy policy text. -#: wp-admin/includes/class-wp-privacy-policy-content.php:541 +#: wp-admin/includes/class-wp-privacy-policy-content.php:539 msgid "If you edit or publish an article, an additional cookie will be saved in your browser. This cookie includes no personal data and simply indicates the post ID of the article you just edited. It expires after 1 day." msgstr "En modifiant ou en publiant une publication, un cookie supplémentaire sera enregistré dans votre navigateur. Ce cookie ne comprend aucune donnée personnelle. Il indique simplement l’ID de la publication que vous venez de modifier. Il expire au bout d’un jour." #. translators: Default privacy policy text. -#: wp-admin/includes/class-wp-privacy-policy-content.php:539 +#: wp-admin/includes/class-wp-privacy-policy-content.php:537 msgid "When you log in, we will also set up several cookies to save your login information and your screen display choices. Login cookies last for two days, and screen options cookies last for a year. If you select "Remember Me", your login will persist for two weeks. If you log out of your account, the login cookies will be removed." msgstr "Lorsque vous vous connecterez, nous mettrons en place un certain nombre de cookies pour enregistrer vos informations de connexion et vos préférences d’écran. La durée de vie d’un cookie de connexion est de deux jours, celle d’un cookie d’option d’écran est d’un an. Si vous cochez « Se souvenir de moi », votre cookie de connexion sera conservé pendant deux semaines. Si vous vous déconnectez de votre compte, le cookie de connexion sera effacé." #. translators: Default privacy policy text. -#: wp-admin/includes/class-wp-privacy-policy-content.php:537 +#: wp-admin/includes/class-wp-privacy-policy-content.php:535 msgid "If you visit our login page, we will set a temporary cookie to determine if your browser accepts cookies. This cookie contains no personal data and is discarded when you close your browser." msgstr "Si vous vous rendez sur la page de connexion, un cookie temporaire sera créé afin de déterminer si votre navigateur accepte les cookies. Il ne contient pas de données personnelles et sera supprimé automatiquement à la fermeture de votre navigateur." #. translators: Default privacy policy text. -#: wp-admin/includes/class-wp-privacy-policy-content.php:535 +#: wp-admin/includes/class-wp-privacy-policy-content.php:533 msgid "If you leave a comment on our site you may opt-in to saving your name, email address and website in cookies. These are for your convenience so that you do not have to fill in your details again when you leave another comment. These cookies will last for one year." msgstr "Si vous déposez un commentaire sur notre site, il vous sera proposé d’enregistrer votre nom, adresse e-mail et site dans des cookies. C’est uniquement pour votre confort afin de ne pas avoir à saisir ces informations si vous déposez un autre commentaire plus tard. Ces cookies expirent au bout d’un an." #. translators: Privacy policy tutorial. -#: wp-admin/includes/class-wp-privacy-policy-content.php:532 +#: wp-admin/includes/class-wp-privacy-policy-content.php:530 msgid "In this subsection you should list the cookies your website uses, including those set by your plugins, social media, and analytics. We have provided the cookies which WordPress installs by default." msgstr "Dans cette sous-section, vous devriez lister les cookies utilisés par votre site, incluant ceux enregistrés par vos extensions, les réseaux sociaux et vos statistiques de visites. Nous avons indiqué les cookies que WordPress installe par défaut." #. translators: Default privacy policy heading. -#: wp-admin/includes/class-wp-privacy-policy-content.php:528 +#: wp-admin/includes/class-wp-privacy-policy-content.php:526 msgid "Cookies" msgstr "Cookies" #. translators: Default privacy policy text. -#: wp-admin/includes/class-wp-privacy-policy-content.php:506 +#: wp-admin/includes/class-wp-privacy-policy-content.php:504 msgid "An anonymized string created from your email address (also called a hash) may be provided to the Gravatar service to see if you are using it. The Gravatar service privacy policy is available here: https://automattic.com/privacy/. After approval of your comment, your profile picture is visible to the public in the context of your comment." msgstr "Une chaîne anonymisée créée à partir de votre adresse e-mail (également appelée hash) peut être envoyée au service Gravatar pour vérifier si vous utilisez ce dernier. Les clauses de confidentialité du service Gravatar sont disponibles ici : https://automattic.com/privacy/. Après validation de votre commentaire, votre photo de profil sera visible publiquement à coté de votre commentaire." #. translators: Default privacy policy text. -#: wp-admin/includes/class-wp-privacy-policy-content.php:504 +#: wp-admin/includes/class-wp-privacy-policy-content.php:502 msgid "When visitors leave comments on the site we collect the data shown in the comments form, and also the visitor’s IP address and browser user agent string to help spam detection." msgstr "Quand vous laissez un commentaire sur notre site, les données inscrites dans le formulaire de commentaire, ainsi que votre adresse IP et l’agent utilisateur de votre navigateur sont collectés pour nous aider à la détection des commentaires indésirables." #. translators: Privacy policy tutorial. -#: wp-admin/includes/class-wp-privacy-policy-content.php:524 +#: wp-admin/includes/class-wp-privacy-policy-content.php:522 msgid "By default, WordPress does not include a contact form. If you use a contact form plugin, use this subsection to note what personal data is captured when someone submits a contact form, and how long you keep it. For example, you may note that you keep contact form submissions for a certain period for customer service purposes, but you do not use the information submitted through them for marketing purposes." msgstr "Par défaut, WordPress n’inclut pas de formulaire de contact. Si vous utilisez une extension de formulaire de contact, utilisez cette sous-section pour indiquer quelles données personnelles sont enregistrées lors de la soumission du formulaire, et leur durée de conservation. Par exemple, vous pourriez indiquer que vous conservez les soumissions d’un formulaire de contact pendant une période donnée pour les questions liées au service client, mais que vous ne les utiliserez pas à des fins commerciales." #. translators: Default privacy policy heading. -#: wp-admin/includes/class-wp-privacy-policy-content.php:522 +#: wp-admin/includes/class-wp-privacy-policy-content.php:520 msgid "Contact forms" msgstr "Formulaires de contact" #. translators: Default privacy policy text. -#: wp-admin/includes/class-wp-privacy-policy-content.php:517 +#: wp-admin/includes/class-wp-privacy-policy-content.php:515 msgid "If you upload images to the website, you should avoid uploading images with embedded location data (EXIF GPS) included. Visitors to the website can download and extract any location data from images on the website." msgstr "Si vous téléversez des images sur le site, nous vous conseillons d’éviter de téléverser des images contenant des données EXIF de coordonnées GPS. Les personnes visitant votre site peuvent télécharger et extraire des données de localisation depuis ces images." #. translators: Privacy policy tutorial. -#: wp-admin/includes/class-wp-privacy-policy-content.php:493 +#: wp-admin/includes/class-wp-privacy-policy-content.php:491 msgid "By default WordPress does not collect any personal data about visitors, and only collects the data shown on the User Profile screen from registered users. However some of your plugins may collect personal data. You should add the relevant information below." msgstr "Par défaut, WordPress ne collecte aucune donnée personnelle sur les visiteurs, et ne collecte que les données présentes dans l’écran « Votre Profil » des comptes inscrits. Cependant certaines de vos extensions peuvent collecter des données personnelles. Dans ce cas, indiquez les informations adéquates ci-dessous." #. translators: Privacy policy tutorial. -#: wp-admin/includes/class-wp-privacy-policy-content.php:491 +#: wp-admin/includes/class-wp-privacy-policy-content.php:489 msgid "Personal data is not just created by a user’s interactions with your site. Personal data is also generated from technical processes such as contact forms, comments, cookies, analytics, and third party embeds." msgstr "Les données personnelles ne sont pas seulement créées par l’interaction d’une personne avec votre site. Elles sont générées par un processus technique comme un formulaire de contact, les commentaires, les cookies ou l’intégration de services tiers." #. translators: Privacy policy tutorial. -#: wp-admin/includes/class-wp-privacy-policy-content.php:489 +#: wp-admin/includes/class-wp-privacy-policy-content.php:487 msgid "In addition to listing what personal data you collect, you need to note why you collect it. These explanations must note either the legal basis for your data collection and retention or the active consent the user has given." msgstr "En plus de lister les données personnelles que vous collectez, vous devez indiquer pourquoi vous le faites. Ces explications doivent contenir soit les bases légales de la collecte et la conservation de données, soit le consentement actif donné par l’utilisateur ou l’utilisatrice." #. translators: Privacy policy tutorial. -#: wp-admin/includes/class-wp-privacy-policy-content.php:487 +#: wp-admin/includes/class-wp-privacy-policy-content.php:485 msgid "You should also note any collection and retention of sensitive personal data, such as data concerning health." msgstr "Vous devriez également inscrire toute collecte ou conservation de données personnelles sensibles comme des données médicales." #. translators: Default privacy policy heading. -#: wp-admin/includes/class-wp-privacy-policy-content.php:483 +#: wp-admin/includes/class-wp-privacy-policy-content.php:481 msgid "What personal data we collect and why we collect it" msgstr "Utilisation des données personnelles collectées" #. translators: Default privacy policy text. %s: Site URL. -#: wp-admin/includes/class-wp-privacy-policy-content.php:478 +#: wp-admin/includes/class-wp-privacy-policy-content.php:476 msgid "Our website address is: %s." msgstr "L’adresse de notre site est : %s." #. translators: Privacy policy tutorial. -#: wp-admin/includes/class-wp-privacy-policy-content.php:475 +#: wp-admin/includes/class-wp-privacy-policy-content.php:473 msgid "The amount of information you may be required to show will vary depending on your local or national business regulations. You may, for example, be required to display a physical address, a registered address, or your company registration number." msgstr "La quantité d’informations que vous devez afficher dépend de la réglementation locale ou nationale à laquelle vous êtes soumis. Vous pourriez par exemple devoir afficher une adresse physique, une adresse publique, ou le numéro d’enregistrement de votre entreprise." #. translators: Privacy policy tutorial. -#: wp-admin/includes/class-wp-privacy-policy-content.php:473 +#: wp-admin/includes/class-wp-privacy-policy-content.php:471 msgid "In this section you should note your site URL, as well as the name of the company, organization, or individual behind it, and some accurate contact information." msgstr "Dans cette section, indiquez l’URL de votre site, votre nom ou celui de votre entreprise ou organisation ainsi que vos informations de contact." #. translators: Default privacy policy heading. -#: wp-admin/includes/class-wp-privacy-policy-content.php:469 +#: wp-admin/includes/class-wp-privacy-policy-content.php:467 msgid "Who we are" msgstr "Qui sommes-nous ?" @@ -6351,7 +6530,7 @@ msgid "Unable to create a Privacy Policy page." msgstr "Impossible de créer une page de politique de confidentialité." #. translators: Privacy Policy page slug. -#: wp-admin/includes/upgrade.php:390 +#: wp-admin/includes/upgrade.php:399 msgid "privacy-policy" msgstr "politique-de-confidentialite" @@ -6361,7 +6540,7 @@ msgid "Privacy Policy page setting updated successfully. Remember to mettre à jour vos menus !" #. translators: Hidden accessibility text. %s: Plugin name. -#: wp-admin/includes/class-wp-privacy-policy-content.php:437 +#: wp-admin/includes/class-wp-privacy-policy-content.php:435 msgid "Copy suggested policy text from %s." msgstr "Copier la suggestion de politique de confidentialité depuis %s." @@ -6560,21 +6739,17 @@ msgstr "Adresse e-mail non valide dans la demande." msgid "Requires PHP Version:" msgstr "Nécessite PHP en version :" -#: wp-admin/customize.php:80 -msgid "This changeset cannot be further modified." -msgstr "Ce jeu de modifications ne peut pas être modifié davantage." - #. translators: %s: https://wordpress.org/about/stats #: wp-admin/privacy.php:52 msgid "This data is used to provide general enhancements to WordPress, which includes helping to protect your site by finding and automatically installing new updates. It is also used to calculate statistics, such as those shown on the WordPress.org stats page." msgstr "Ces données sont utilisées pour vous fournir des améliorations générales sur WordPress et pour vous aider à protéger votre site en vérifiant et en installant automatiquement les nouvelles mises à jour. Elles sont aussi utilisées à des fins statistiques comme celles que vous pouvez consulter sur la page des statistiques de WordPress.org." #. translators: %s: Link to Custom CSS section in the Customizer. -#: wp-admin/theme-editor.php:221 +#: wp-admin/theme-editor.php:216 msgid "There is no need to change your CSS here — you can edit and live preview CSS changes in the built-in CSS editor." msgstr "Vous n’avez pas besoin de modifier votre CSS ici. Vous pouvez le faire et voir vos changements directement dans l’éditeur de CSS embarqué." -#: wp-admin/theme-editor.php:219 +#: wp-admin/theme-editor.php:214 msgid "Did you know?" msgstr "Le saviez-vous ?" @@ -6582,15 +6757,15 @@ msgstr "Le saviez-vous ?" msgid "Noteworthy Contributors" msgstr "Contributrices & contributeurs remarquables" -#: wp-admin/theme-editor.php:416 +#: wp-admin/theme-editor.php:421 msgid "If you decide to go ahead with direct edits anyway, use a file manager to create a copy with a new name and hang on to the original. That way, you can re-enable a functional version if something goes wrong." msgstr "Si vous décidez de foncer et de tout de même modifier le code directement, utilisez un gestionnaire de fichiers pour en créer une copie avec un autre nom et gardez-le près du code original. Ainsi, vous pourrez réactiver une version fonctionnelle si quelque chose tourne mal." -#: wp-admin/plugin-editor.php:359 +#: wp-admin/plugin-editor.php:369 msgid "If you absolutely have to make direct edits to this plugin, use a file manager to create a copy with a new name and hang on to the original. That way, you can re-enable a functional version if something goes wrong." msgstr "Si vous devez absolument modifier directement cette extension, utilisez un gestionnaire de fichiers pour en créer une copie avec un autre nom et gardez-le près du code original. Ainsi, vous pourrez réactiver une version fonctionnelle si quelque chose tourne mal." -#: wp-admin/plugin-editor.php:358 +#: wp-admin/plugin-editor.php:368 msgid "You appear to be making direct edits to your plugin in the WordPress dashboard. Editing plugins directly is not recommended as it may introduce incompatibilities that break your site and your changes may be lost in future updates." msgstr "Il semble que vous soyez en train de modifier directement votre extension dans le tableau de bord de WordPress. Ce n’est pas recommandé ! Modifier directement les extensions peut introduire des incompatibilités futures qui pourraient casser votre site et vos modifications risquent d’être perdues lors de futures mises à jour." @@ -6605,15 +6780,10 @@ msgid "Error: The root directory of your site is not accessible en écriture, cela aurait pu être fait automatiquement, mais ce n’est pas le cas donc voici la règle de réécriture des URL que vous devriez placer dans votre fichier %2$s. Créez un nouveau fichier nommé %2$s sur le répertoire racine de votre site. Cliquez dans le champ et appuyez sur %3$s (ou %4$s sur Mac) pour tout sélectionner. Insérez ensuite ce code dans votre fichier %2$s." #. translators: %s: Documentation URL. -#: wp-admin/options-general.php:254 +#: wp-admin/options-general.php:253 msgid "Enter the same address here unless you want your site home page to be different from your WordPress installation directory." msgstr "Saisissez la même adresse, sauf si vous souhaitez que la page d’accueil de votre site soit différente du répertoire de votre installation WordPress." -#. translators: %s: https://wordpress.org/about/privacy -#: wp-admin/privacy.php:62 -msgid "We take privacy and transparency very seriously. To learn more about what data we collect, and how we use it, please visit our Privacy Policy." -msgstr "Nous prenons très au sérieux le respect de la vie privée et la transparence. Pour en savoir plus sur les données que nous collectons, et comment nous les utilisons, veuillez visiter notre politique de confidentialité." - #: wp-admin/freedoms.php:53 wp-admin/freedoms.php:103 msgid "https://wordpress.org/about/license/" msgstr "https://fr.wordpress.org/about/license/" @@ -6647,11 +6817,11 @@ msgstr "Téléchargement de la mise à jour depuis %s…" #. translators: 1: wp-admin/includes/template.php, 2: add_meta_box(), 3: #. add_meta_boxes -#: wp-admin/includes/template.php:2682 +#: wp-admin/includes/template.php:2681 msgid "Likely direct inclusion of %1$s in order to use %2$s. This is very wrong. Hook the %2$s call into the %3$s action instead." msgstr "Probable inclusion directe de %1$s afin d’utiliser %2$s. Ceci est vraiment une mauvaise idée. Vous devriez plutôt crocheter l’appel %2$s dans l’action %3$s." -#: wp-admin/includes/template.php:2305 +#: wp-admin/includes/template.php:2304 msgid "Customization Draft" msgstr "Brouillon de personnalisation" @@ -6660,7 +6830,7 @@ msgstr "Brouillon de personnalisation" msgid "This draft comes from your unpublished customization changes. You can edit, but there is no need to publish now. It will be published automatically with those changes." msgstr "Ce brouillon vient de vos changements de personnalisation non publiés. Vous pouvez le modifier, mais inutile de le publier maintenant. Il sera publié automatiquement avec ces changements." -#: wp-admin/theme-editor.php:278 +#: wp-admin/theme-editor.php:283 msgid "Theme Files" msgstr "Fichiers du thème" @@ -6682,11 +6852,11 @@ msgstr "Installation nécessaire" msgid "Could not fully remove the plugin %s." msgstr "Impossible de supprimer l’extension %s." -#: wp-admin/user-new.php:366 +#: wp-admin/user-new.php:371 msgid "User has been created, but could not be added to this site." msgstr "Le compte a été créé, mais il ne peut pas être ajouté à ce site." -#: wp-admin/user-new.php:363 +#: wp-admin/user-new.php:368 msgid "That user could not be added to this site." msgstr "Ce compte ne peut pas être ajouté à ce site." @@ -6719,23 +6889,23 @@ msgstr "Press This n’est pas installé. Veuillez installer Press This depuis < msgid "Activate Press This" msgstr "Activer Press This" -#: wp-admin/plugin-editor.php:363 wp-admin/theme-editor.php:420 +#: wp-admin/plugin-editor.php:373 wp-admin/theme-editor.php:425 msgid "I understand" msgstr "Je comprends" -#: wp-admin/plugin-editor.php:357 wp-admin/theme-editor.php:399 +#: wp-admin/plugin-editor.php:367 wp-admin/theme-editor.php:404 msgid "Heads up!" msgstr "Faites attention !" -#: wp-admin/plugin-editor.php:307 +#: wp-admin/plugin-editor.php:317 msgid "Warning: Making changes to active plugins is not recommended." msgstr "Avertissement : Effectuer des modifications dans les extensions actives n’est pas recommandé." -#: wp-admin/plugin-editor.php:287 wp-admin/theme-editor.php:316 +#: wp-admin/plugin-editor.php:297 wp-admin/theme-editor.php:321 msgid "Selected file content:" msgstr "Contenu du fichier sélectionné :" -#: wp-admin/plugin-editor.php:204 wp-admin/theme-editor.php:207 +#: wp-admin/plugin-editor.php:207 wp-admin/theme-editor.php:202 msgid "There was an error while trying to update the file. You may need to fix something and try updating again." msgstr "Une erreur s’est produite lors de la mise à jour. Vous devriez essayer de corriger quelque chose et réessayer." @@ -6813,12 +6983,12 @@ msgid "Theme Installation" msgstr "Installation du thème" #. translators: %s: User's display name. -#: wp-admin/includes/post.php:1870 +#: wp-admin/includes/post.php:1881 msgid "%s is currently editing this post." msgstr "%s modifie actuellement cette publication." #. translators: %s: User's display name. -#: wp-admin/includes/post.php:1867 +#: wp-admin/includes/post.php:1878 msgid "%s is currently editing this post. Do you want to take over?" msgstr "%s modifie actuellement cette publication. Voulez-vous prendre la main ?" @@ -6925,10 +7095,6 @@ msgstr "Activer" msgid "Allow link notifications from other blogs (pingbacks and trackbacks) on new posts" msgstr "Autoriser les notifications de lien en provenance d’autres blogs (pings et rétroliens) sur les nouvelles publications" -#: wp-admin/menu-header.php:281 wp-admin/js/common.js:2109 -msgid "Collapse Main menu" -msgstr "Replier le menu principal" - #. translators: %s: Plugin name. #: wp-admin/includes/class-wp-plugins-list-table.php:852 #: wp-admin/includes/plugin-install.php:1010 wp-admin/js/updates.js:972 @@ -7011,9 +7177,9 @@ msgstr "WordCamps" msgid "Meetups" msgstr "Meetups" -#: wp-admin/includes/dashboard.php:1354 wp-admin/js/dashboard.js:585 +#: wp-admin/includes/dashboard.php:1354 wp-admin/js/dashboard.js:591 msgid "An error occurred. Please try again." -msgstr "Une erreur est survenue. Veuillez essayer à nouveau." +msgstr "Une erreur s’est produite. Veuillez réessayer." #: wp-admin/includes/dashboard.php:92 msgid "WordPress Events and News" @@ -7023,7 +7189,7 @@ msgstr "Évènements et nouveautés WordPress" #. day of the week. See https://www.php.net/manual/datetime.format.php #: wp-admin/includes/class-wp-community-events.php:401 #: wp-admin/includes/class-wp-community-events.php:406 -#: wp-admin/js/dashboard.js:774 +#: wp-admin/js/dashboard.js:780 msgid "l, M j, Y" msgstr "l j M Y" @@ -7040,7 +7206,7 @@ msgstr "Code de réponse d’API non valide (%d)." msgid "Sorry, you are not allowed to delete users." msgstr "Désolé, vous n’avez pas l’autorisation de supprimer des comptes." -#: wp-admin/user-new.php:23 wp-admin/user-new.php:192 +#: wp-admin/user-new.php:23 wp-admin/user-new.php:195 msgid "Sorry, you are not allowed to create users." msgstr "Désolé, vous n’avez pas l’autorisation de créer des comptes." @@ -7053,7 +7219,7 @@ msgstr "Masquer les controles" msgid "Expand Sidebar" msgstr "Étendre la colonne latérale" -#: wp-admin/nav-menus.php:1198 +#: wp-admin/nav-menus.php:1200 msgid "Display location" msgstr "Afficher l’emplacement" @@ -7084,11 +7250,11 @@ msgstr "Sélectionner une ou plusieurs fonctionnalités de thèmes à filtrer" msgid "(%s ratings)" msgstr "(%s votes)" -#: wp-admin/includes/template.php:2447 +#: wp-admin/includes/template.php:2446 msgid "Current Background Image" msgstr "Image d’arrière plan actuelle" -#: wp-admin/includes/template.php:2427 +#: wp-admin/includes/template.php:2426 msgid "Current Header Image" msgstr "Image d’entête actuelle" @@ -7140,10 +7306,6 @@ msgctxt "Background Repeat" msgid "Repeat" msgstr "Répétition" -#: wp-admin/import.php:33 -msgid "Support" -msgstr "Forums d’entraide" - #: wp-admin/plugin-install.php:103 msgid "You can find new plugins to install by searching or browsing the directory right here in your own Plugins section." msgstr "Vous pouvez trouver des nouvelles extensions à installer en recherchant ou en parcourant le répertoire ici même dans votre section des extensions." @@ -7205,11 +7367,11 @@ msgctxt "plugin" msgid "Network Deactivate %s" msgstr "Désactiver %s du réseau" -#: wp-admin/user-new.php:280 +#: wp-admin/user-new.php:285 msgid "By default, new users will receive an email letting them know they’ve been added as a user for your site. This email will also contain a password reset link. Uncheck the box if you do not want to send the new user a welcome email." msgstr "Par défaut, les nouveaux comptes recevront un e-mail leur indiquant leur ajout en tant que membre de votre site. Cet e-mail contiendra également un lien de réinitialisation de leur mot de passe. Cochez la case si vous ne souhaitez pas envoyer de message de bienvenue." -#: wp-admin/user-new.php:278 +#: wp-admin/user-new.php:283 msgid "New users are automatically assigned a password, which they can change after logging in. You can view or edit the assigned password by clicking the Show Password button. The username cannot be changed once the user has been added." msgstr "Les nouveaux comptes reçoivent automatiquement un mot de passe, qui peut être changé après connexion. Vous pouvez afficher le mot de passe ou le modifier en cliquant sur le bouton « Afficher ». L’identifiant ne peut pas être modifié une fois que le compte a été créé." @@ -7252,7 +7414,7 @@ msgstr "Désolé, vous n’avez pas l’autorisation de mettre à jour les thèm msgid "Sorry, you are not allowed to update this site." msgstr "Désolé, vous n’avez pas l’autorisation de mettre à jour ce site." -#: wp-admin/themes.php:448 wp-admin/themes.php:825 +#: wp-admin/themes.php:448 wp-admin/themes.php:846 msgid "New version available. " msgstr "Nouvelle version disponible. " @@ -7291,7 +7453,7 @@ msgstr "Désolé, vous n’avez pas l’autorisation de modifier les réglages n msgid "Sorry, you are not allowed to manage options for this site." msgstr "Désolé, vous n’avez pas l’autorisation de gérer les options de ce site." -#: wp-admin/nav-menus.php:794 wp-admin/widgets-form.php:394 +#: wp-admin/nav-menus.php:796 wp-admin/widgets-form.php:394 msgid "Manage with Live Preview" msgstr "Gérer avec la prévisualisation en direct" @@ -7304,7 +7466,7 @@ msgid "Sorry, you are not allowed to add links to this site." msgstr "Désolé, vous n’avez pas l’autorisation d’ajouter des liens pour ce site." #. translators: %s: Gravatar URL. -#: wp-admin/includes/upgrade.php:276 +#: wp-admin/includes/upgrade.php:285 msgid "" "Hi, this is a comment.\n" "To get started with moderating, editing, and deleting comments, please visit the Comments screen in the dashboard.\n" @@ -7375,12 +7537,12 @@ msgstr "Widgets de pied de page" msgid "Grid Layout" msgstr "Style en grille" -#: wp-admin/includes/template.php:2709 +#: wp-admin/includes/template.php:2708 msgid "This will replace the current editor content with the last backup version. You can use undo and redo in the editor to get the old content back or to return to the restored version." msgstr "Cela remplacera le contenu actuel de l’éditeur par la dernière version sauvegardée. Vous pouvez utiliser les outils Annuler et Rétablir pour rétablir l’ancien contenu ou revenir à la version sauvegardée." #. translators: Hidden accessibility text. -#: wp-admin/includes/template.php:2038 +#: wp-admin/includes/template.php:2037 msgid "Close media attachment panel" msgstr "Fermer le panneau des fichiers joints." @@ -7430,11 +7592,11 @@ msgctxt "plugin" msgid "Active" msgstr "Actif" -#: wp-admin/includes/class-wp-media-list-table.php:590 +#: wp-admin/includes/class-wp-media-list-table.php:597 msgid "(Private post)" msgstr "(Publication privée)" -#: wp-admin/includes/bookmark.php:32 wp-admin/includes/bookmark.php:378 +#: wp-admin/includes/bookmark.php:32 wp-admin/includes/bookmark.php:379 #: wp-admin/link-manager.php:12 wp-admin/link-manager.php:92 msgid "Sorry, you are not allowed to edit the links for this site." msgstr "Désolé, vous n’avez pas l’autorisation de modifier les liens de ce site." @@ -7475,7 +7637,7 @@ msgstr "Désolé, vous n’avez pas l’autorisation d’installer des thèmes s msgid "No theme specified." msgstr "Aucun thème spécifié." -#: wp-admin/admin.php:305 wp-admin/import.php:15 +#: wp-admin/admin.php:306 wp-admin/import.php:15 msgid "Sorry, you are not allowed to import content into this site." msgstr "Désolé, vous n’avez pas l’autorisation d’importer du contenu sur ce site." @@ -7502,7 +7664,11 @@ msgstr "Assistant·e de la direction de cette version" #: wp-admin/credits.php:134 msgid "Release Design Lead" -msgstr "Responsable du design de cette version" +msgstr "Responsable du design" + +#: wp-admin/about.php:133 +msgid "Editor improvements" +msgstr "Amélioration de l’éditeur" #. translators: %s: Documentation URL. #: wp-admin/includes/meta-boxes.php:832 @@ -7519,11 +7685,11 @@ msgstr "Un rétrolien est une manière de notifier les anciens systèmes de blog msgid "Excerpts are optional hand-crafted summaries of your content that can be used in your theme. Learn more about manual excerpts." msgstr "Les extraits sont des résumés facultatifs de vos articles, écrits à la main. Il se peut que votre thème s’en serve. En savoir plus." -#: wp-admin/edit-form-advanced.php:295 -msgid "The Text mode allows you to enter HTML along with your post text. Note that <p> and <br> tags are converted to line breaks when switching to the Text editor to make it less cluttered. When you type, a single line break can be used instead of typing <br>, and two line breaks instead of paragraph tags. The line breaks are converted back to tags automatically." -msgstr "Le mode textuel vous permet de saisir de saisir votre texte encadré par votre code HTML. Notez que les balises <p> et <br> sont converties en retours à la ligne lorsque vous entrez dans le mode texte, afin de moins encombrer la fenêtre. Lorsque vous saisissez du texte, un retour à la ligne vous suffit à générer un <br>, et deux retours à la ligne créeront une balise de paragraphe. Les retours à la ligne sont automatiquement convertis en balises HTML." +#: wp-admin/edit-form-advanced.php:288 +msgid "The Code mode allows you to enter HTML along with your post text. Note that <p> and <br> tags are converted to line breaks when switching to the Code editor to make it less cluttered. When you type, a single line break can be used instead of typing <br>, and two line breaks instead of paragraph tags. The line breaks are converted back to tags automatically." +msgstr "Le mode Code vous permet de saisir de saisir votre texte encadré par votre code HTML. Notez que les balises <p> et <br> sont converties en retours à la ligne lorsque vous entrez dans le mode code, afin de moins encombrer la fenêtre. Lorsque vous saisissez du texte, un retour à la ligne vous suffit à générer un <br>, et deux retours à la ligne créeront une balise de paragraphe. Les retours à la ligne sont automatiquement convertis en balises HTML." -#: wp-admin/edit-form-advanced.php:294 +#: wp-admin/edit-form-advanced.php:287 msgid "Visual mode gives you an editor that is similar to a word processor. Click the Toolbar Toggle button to get a second row of controls." msgstr "Le mode visuel vous donne accès à un éditeur comparable à un traitement de texte. Cliquez sur le bouton d’ouverture/fermeture de la barre d’outils pour afficher une seconde rangée d’options." @@ -7574,7 +7740,7 @@ msgstr[1] "%s fichiers médias attachés." msgid "Media file attached." msgstr "Fichier média attaché." -#: wp-admin/edit-form-advanced.php:210 wp-admin/upload.php:18 +#: wp-admin/edit-form-advanced.php:203 wp-admin/upload.php:18 #: wp-admin/upload.php:115 msgid "Media file updated." msgstr "Fichier média mis à jour." @@ -7596,12 +7762,12 @@ msgctxt "dashboard" msgid "%1$s, %2$s" msgstr "%1$s, %2$s" -#: wp-admin/edit-form-advanced.php:376 +#: wp-admin/edit-form-advanced.php:369 msgid "Publish — You can set the terms of publishing your post in the Publish box. For Status, Visibility, and Publish (immediately), click on the Edit link to reveal more options. Visibility includes options for password-protecting a post or making it stay at the top of your blog indefinitely (sticky). The Password protected option allows you to set an arbitrary password for each post. The Private option hides the post from everyone except editors and administrators. Publish (immediately) allows you to set a future or past date and time, so you can schedule a post to be published in the future or backdate a post." msgstr "Publier - Vous pouvez définir la manière dont votre publication est mise en ligne dans la section « Publier ». Pour « État », « Visibilité », et « Publier tout de suite », un clic sur le lien « Modifier » affichera plus d’options. « Visibilité » inclut des options pour protéger la publication avec un mot de passe ou faire en sorte qu’elle reste haut de page indéfiniment (en avant). L’option de protection par mot de passe vous permet de protéger chacune de vos publications avec un mot de passe. L’option « Privée » cache la publication pour tout le monde, sauf aux éditeurs/éditrices et administrateurs/administratrices. « Publier tout de suite » vous permet de planifier la sortie de votre publication à une date précise, dans le futur ou le passé ; cela vous permet d’écrire à l’avance les publications à mettre en ligne, ou de les antidater." #. translators: %s: New email. -#: wp-admin/user-edit.php:561 +#: wp-admin/user-edit.php:563 msgid "There is a pending change of your email to %s." msgstr "Il y a une modification de votre adresse e-mail en attente, en faveur de %s." @@ -7613,7 +7779,7 @@ msgstr "Une erreur est survenue lors de l’enregistrement de votre adresse e-ma msgid "You can narrow the list by file type/status or by date using the dropdown menus above the media table." msgstr "Vous pouvez limiter cette liste par type de fichier ou par état à l’aide des filtres situés au-dessus de la liste de médias." -#: wp-admin/themes.php:655 wp-admin/network/themes.php:470 +#: wp-admin/themes.php:676 wp-admin/network/themes.php:470 msgid "The following themes are installed but incomplete." msgstr "Les thèmes suivants sont installés mais incomplets." @@ -7658,21 +7824,21 @@ msgid "%1$s by %2$s (will also delete its data)" msgstr "%1$s par %2$s (attention : supprimera également les données liées)" #. translators: %s: New admin email. -#: wp-admin/options-general.php:274 +#: wp-admin/options-general.php:273 msgid "There is a pending change of the admin email to %s." msgstr "Il y a une modification en attente de l’adresse e-mail d’administration vers %s." -#: wp-admin/install.php:430 +#: wp-admin/install.php:454 msgid "WordPress has been installed. Thank you, and enjoy!" msgstr "WordPress est installé. Merci et profitez bien !" #. translators: %s: DO_NOT_UPGRADE_GLOBAL_TABLES -#: wp-admin/install.php:320 +#: wp-admin/install.php:344 msgid "The constant %s cannot be defined when installing WordPress." msgstr "La constante %s ne peut pas être définie lors de l’installation de WordPress." #. translators: %s: wp-config.php -#: wp-admin/install.php:307 +#: wp-admin/install.php:331 msgid "Your %s file has an empty database table prefix, which is not supported." msgstr "Votre fichier %s a un préfixe de base de donnée vide, ce qui n’est pas supporté." @@ -7685,11 +7851,11 @@ msgstr "Ignorer le panneau de bienvenue" msgid "Theme zip file" msgstr "Fichier zip du thème" -#: wp-admin/includes/template.php:2034 +#: wp-admin/includes/template.php:2033 msgid "Attach to existing content" msgstr "Attacher à un contenu existant" -#: wp-admin/includes/post.php:1671 +#: wp-admin/includes/post.php:1682 msgid "Click the image to edit or update" msgstr "Cliquez sur l’image pour la modifier ou la mettre à jour." @@ -7815,7 +7981,7 @@ msgstr "Supprimer « %s »" #. translators: %s: Post title. #. translators: %s: Taxonomy term name. -#: wp-admin/includes/class-wp-posts-list-table.php:1502 +#: wp-admin/includes/class-wp-posts-list-table.php:1509 #: wp-admin/includes/class-wp-terms-list-table.php:509 msgid "Quick edit “%s” inline" msgstr "Modifier rapidement « %s » en ligne" @@ -7826,33 +7992,33 @@ msgstr "Rechercher des extensions dans le répertoire des extensions WordPress." #. translators: %s: Attachment title. #. translators: %s: Post title. -#: wp-admin/includes/class-wp-media-list-table.php:781 -#: wp-admin/includes/class-wp-posts-list-table.php:1514 +#: wp-admin/includes/class-wp-media-list-table.php:788 +#: wp-admin/includes/class-wp-posts-list-table.php:1521 msgid "Restore “%s” from the Trash" msgstr "Restaurer « %s » depuis la corbeille" #. translators: %s: Attachment title. #. translators: %s: Post title. -#: wp-admin/includes/class-wp-media-list-table.php:802 -#: wp-admin/includes/class-wp-posts-list-table.php:1532 +#: wp-admin/includes/class-wp-media-list-table.php:809 +#: wp-admin/includes/class-wp-posts-list-table.php:1539 msgid "Delete “%s” permanently" msgstr "Supprimer « %s » définitivement" #. translators: %s: Attachment title. #. translators: %s: Post title. -#: wp-admin/includes/class-wp-media-list-table.php:789 -#: wp-admin/includes/class-wp-posts-list-table.php:1522 +#: wp-admin/includes/class-wp-media-list-table.php:796 +#: wp-admin/includes/class-wp-posts-list-table.php:1529 msgid "Move “%s” to the Trash" msgstr "Déplacer « %s » dans la corbeille" #. translators: %s: Attachment title. -#: wp-admin/includes/class-wp-media-list-table.php:620 -#: wp-admin/includes/class-wp-media-list-table.php:850 +#: wp-admin/includes/class-wp-media-list-table.php:627 +#: wp-admin/includes/class-wp-media-list-table.php:857 msgid "Attach “%s” to existing content" msgstr "Attacher « %s » à du contenu existant" #. translators: %s: Title of the post the attachment is attached to. -#: wp-admin/includes/class-wp-media-list-table.php:606 +#: wp-admin/includes/class-wp-media-list-table.php:613 msgid "Detach from “%s”" msgstr "Détacher de « %s »" @@ -7870,16 +8036,16 @@ msgctxt "attachment filter" msgid "Trash" msgstr "Corbeille" -#: wp-admin/includes/class-wp-comments-list-table.php:835 +#: wp-admin/includes/class-wp-comments-list-table.php:839 msgid "Quick edit this comment inline" msgstr "Modifier ce commentaire sur cette page" -#: wp-admin/includes/class-wp-comments-list-table.php:823 +#: wp-admin/includes/class-wp-comments-list-table.php:827 #: wp-admin/includes/dashboard.php:759 msgid "Edit this comment" msgstr "Modifier ce commentaire" -#: wp-admin/includes/class-wp-comments-list-table.php:786 +#: wp-admin/includes/class-wp-comments-list-table.php:790 msgid "Restore this comment from the spam" msgstr "Restaurer ce commentaire depuis les indésirables" @@ -7928,43 +8094,43 @@ msgstr "%d pixels" msgid "Images should be at least %s wide." msgstr "Les images doivent être large de %s minimum." -#: wp-admin/user-new.php:628 +#: wp-admin/user-new.php:633 msgid "Send the new user an email about their account" msgstr "Envoyer un e-mail à la personne à propos de son nouveau compte." -#: wp-admin/user-new.php:625 +#: wp-admin/user-new.php:630 msgid "Send User Notification" msgstr "Envoyer une notification au compte" #. translators: %s: Menu name. -#: wp-admin/nav-menus.php:1218 +#: wp-admin/nav-menus.php:1220 msgctxt "menu location" msgid "(Currently set to: %s)" msgstr "(Actuellement réglé sur : %s)" #. translators: %s: WordPress version number. -#: wp-admin/about.php:335 +#: wp-admin/about.php:345 msgid "Version %s addressed one security issue." msgstr "La version %s a corrigé une faille de sécurité." #. translators: The localized Gravatar URL. -#: wp-admin/includes/upgrade.php:282 wp-admin/user-edit.php:632 +#: wp-admin/includes/upgrade.php:291 wp-admin/user-edit.php:634 msgid "https://gravatar.com/" msgstr "https://fr.gravatar.com/" -#: wp-admin/user-edit.php:622 +#: wp-admin/user-edit.php:624 msgid "Profile Picture" msgstr "Illustration du profil" -#: wp-admin/about.php:58 wp-admin/about.php:332 +#: wp-admin/about.php:342 msgid "Maintenance and Security Releases" msgstr "Mises à jour de maintenance et de sécurité" -#: wp-admin/about.php:329 +#: wp-admin/about.php:339 msgid "Security Releases" msgstr "Mises à jour de sécurité" -#: wp-admin/about.php:326 +#: wp-admin/about.php:336 msgid "Maintenance Releases" msgstr "Mises à jour de maintenance" @@ -8061,12 +8227,12 @@ msgid "Check secret keys" msgstr "Vérifier les clés secrètes" #. translators: %s: Nav menu title. -#: wp-admin/includes/nav-menu.php:1495 +#: wp-admin/includes/nav-menu.php:1496 msgid "%s has been updated." msgstr "%s a été mis à jour." #. translators: %s: Walker class name. -#: wp-admin/includes/nav-menu.php:1275 +#: wp-admin/includes/nav-menu.php:1276 msgid "The Walker class named %s does not exist." msgstr "La classe Walker nommée %s n’existe pas." @@ -8076,12 +8242,12 @@ msgid "Requires %1$s in %2$s file." msgstr "Nécessite la constance %1$s dans le fichier %2$s." #. translators: %s: Date and time. -#: wp-admin/options-general.php:449 +#: wp-admin/options-general.php:448 msgid "Standard time begins on: %s." msgstr "Le passage à l’heure d’hiver commence le %s." #. translators: %s: Date and time. -#: wp-admin/options-general.php:447 +#: wp-admin/options-general.php:446 msgid "Daylight saving time begins on: %s." msgstr "Le passage à l’heure d’été commence le %s." @@ -8131,7 +8297,7 @@ msgstr "Navigation de la liste des éléments média" msgid "Filter media items list" msgstr "Filtrer la liste des fichiers média." -#: wp-admin/themes.php:733 +#: wp-admin/themes.php:754 msgid "Install Parent Theme" msgstr "Installer le thème parent" @@ -8161,28 +8327,30 @@ msgstr "Navigation de la liste des extensions" msgid "Filter plugins list" msgstr "Filtrer la liste des extensions" -#. translators: %s: Plugin file name. -#: wp-admin/plugin-editor.php:235 +#. translators: %s: Plugin name. +#: wp-admin/plugin-editor.php:238 msgid "Browsing %s (inactive)" msgstr "Parcours de %s (désactivée)" -#. translators: %s: Plugin file name. -#: wp-admin/plugin-editor.php:232 +#. translators: %s: Plugin name. +#. translators: %s: Theme name. +#: wp-admin/plugin-editor.php:235 wp-admin/theme-editor.php:238 msgid "Editing %s (inactive)" msgstr "Modification de %s (désactivée)" -#. translators: %s: Plugin file name. -#: wp-admin/plugin-editor.php:227 +#. translators: %s: Plugin name. +#: wp-admin/plugin-editor.php:230 msgid "Browsing %s (active)" msgstr "Parcours de %s (activée)" -#. translators: %s: Plugin file name. -#: wp-admin/plugin-editor.php:224 +#. translators: %s: Plugin name. +#. translators: %s: Theme name. +#: wp-admin/plugin-editor.php:227 wp-admin/theme-editor.php:235 msgid "Editing %s (active)" msgstr "Modification de %s (activée)" #. translators: %s: Local time. -#: wp-admin/options-general.php:416 +#: wp-admin/options-general.php:415 msgid "Local time is %s." msgstr "L’heure locale est %s." @@ -8200,11 +8368,11 @@ msgstr "Obtenir la version %s" msgid "Toggle panel: %s" msgstr "Ouvrir/fermer la section %s" -#: wp-admin/includes/post.php:1910 +#: wp-admin/includes/post.php:1921 msgid "Saving revision…" msgstr "Enregistrement de la révision…" -#: wp-admin/includes/post.php:1597 +#: wp-admin/includes/post.php:1608 msgid "Edit permalink" msgstr "Modifier le permalien" @@ -8313,7 +8481,7 @@ msgstr "Aucun rôle" #. translators: 1: Title of an update, 2: Error message. #: wp-admin/includes/class-bulk-upgrader-skin.php:63 msgid "An error occurred while updating %1$s: %2$s" -msgstr "Une erreur est survenue lors de la mise à jour de %1$s : %2$s" +msgstr "Une erreur s’est produite lors de la mise à jour de %1$s : %2$s" #: wp-admin/includes/class-wp-screen.php:1331 msgid "View mode" @@ -8360,7 +8528,7 @@ msgstr "Aucun commentaire en attente" msgid "Failed to initialize a SFTP subsystem session with the SSH2 Server %s" msgstr "Échec de l’initialisation d’une session de sous-système SFTP avec le serveur SSH2 %s." -#: wp-admin/includes/class-wp-comments-list-table.php:480 +#: wp-admin/includes/class-wp-comments-list-table.php:484 msgctxt "column name" msgid "Submitted on" msgstr "Envoyé le" @@ -8433,41 +8601,41 @@ msgctxt "comment" msgid "Permalink:" msgstr "Permalien :" -#: wp-admin/edit-form-advanced.php:208 +#: wp-admin/edit-form-advanced.php:201 msgid "Page draft updated." msgstr "Le brouillon de la page a été mis à jour." #. translators: %s: Scheduled date for the page. -#: wp-admin/edit-form-advanced.php:207 +#: wp-admin/edit-form-advanced.php:200 msgid "Page scheduled for: %s." msgstr "Page planifiée pour le %s." -#: wp-admin/edit-form-advanced.php:205 +#: wp-admin/edit-form-advanced.php:198 msgid "Page submitted." msgstr "Page envoyée." -#: wp-admin/edit-form-advanced.php:193 +#: wp-admin/edit-form-advanced.php:186 msgid "Post draft updated." msgstr "Le brouillon de la publication a été mis à jour." #. translators: %s: Scheduled date for the post. -#: wp-admin/edit-form-advanced.php:192 +#: wp-admin/edit-form-advanced.php:185 msgid "Post scheduled for: %s." msgstr "Publication planifiée pour le %s." -#: wp-admin/edit-form-advanced.php:190 +#: wp-admin/edit-form-advanced.php:183 msgid "Post submitted." msgstr "Publication transmise." -#: wp-admin/edit-form-advanced.php:166 +#: wp-admin/edit-form-advanced.php:159 msgid "View page" msgstr "Voir la page" -#: wp-admin/edit-form-advanced.php:152 wp-admin/edit-form-advanced.php:159 +#: wp-admin/edit-form-advanced.php:145 wp-admin/edit-form-advanced.php:152 msgid "Preview page" msgstr "Prévisualiser la page" -#: wp-admin/edit-form-advanced.php:131 wp-admin/edit-form-advanced.php:138 +#: wp-admin/edit-form-advanced.php:124 wp-admin/edit-form-advanced.php:131 msgid "Preview post" msgstr "Prévisualiser la publication" @@ -8510,11 +8678,6 @@ msgstr "Désolé, vous n’avez pas l’autorisation de modifier les thèmes." msgid "The active theme does not support a flexible sized header image." msgstr "Le thème actif ne prend pas en charge les images d’entête de taille variable." -#: wp-admin/includes/class-custom-image-header.php:834 -#: wp-admin/includes/class-custom-image-header.php:1022 -msgid "The active theme does not support uploading a custom header image." -msgstr "Le thème actif ne prend pas en charge le téléversement d’images d’entête personnalisées." - #: wp-admin/includes/user.php:542 msgid "You are using the auto-generated password for your account. Would you like to change it?" msgstr "Vous utilisez le mot de passe auto-généré pour votre compte. Voulez-vous le changer ?" @@ -8524,32 +8687,32 @@ msgid "You have specified this user for removal:" msgstr "Vous avez indiqué que ce compte devait être supprimé :" #. translators: %s: User's display name. -#: wp-admin/user-edit.php:766 +#: wp-admin/user-edit.php:768 msgid "Log %s out of all locations." msgstr "Déconnecter %s de tous les emplacements." -#: wp-admin/user-edit.php:754 +#: wp-admin/user-edit.php:756 msgid "Did you lose your phone or leave your account logged in at a public computer? You can log out everywhere else, and stay logged in here." msgstr "Avez-vous perdu votre téléphone ou laissé votre compte ouvert sur un ordinateur public ? Vous pouvez garder votre compte connecté ici tout en vous déconnectant partout ailleurs." -#: wp-admin/user-edit.php:742 wp-admin/user-edit.php:752 +#: wp-admin/user-edit.php:744 wp-admin/user-edit.php:754 msgid "Log Out Everywhere Else" msgstr "Déconnecter partout ailleurs" -#: wp-admin/user-edit.php:740 wp-admin/user-edit.php:750 -#: wp-admin/user-edit.php:760 +#: wp-admin/user-edit.php:742 wp-admin/user-edit.php:752 +#: wp-admin/user-edit.php:762 msgid "Sessions" msgstr "Sessions" -#: wp-admin/user-edit.php:686 +#: wp-admin/user-edit.php:688 msgid "Cancel password change" msgstr "Annuler la modification du mot de passe" -#: wp-admin/user-new.php:594 +#: wp-admin/user-new.php:599 msgid "Generate password" msgstr "Générer un mot de passe" -#: wp-admin/user-edit.php:669 +#: wp-admin/user-edit.php:671 msgid "Account Management" msgstr "Gestion du compte" @@ -8582,12 +8745,12 @@ msgstr[1] "%s commentaires approuvés" msgid "Image could not be processed." msgstr "L’image n’a pas pu être traitée." -#: wp-admin/install.php:169 wp-admin/user-edit.php:705 -#: wp-admin/user-new.php:616 +#: wp-admin/install.php:169 wp-admin/user-edit.php:707 +#: wp-admin/user-new.php:621 msgid "Confirm Password" msgstr "Confirmer le mot de passe" -#: wp-admin/options-general.php:208 +#: wp-admin/options-general.php:207 msgid "Remove Site Icon" msgstr "Supprimer l’icône du site" @@ -8596,17 +8759,17 @@ msgstr "Supprimer l’icône du site" msgid "While you are editing your %1$s file, take a moment to make sure you have all 8 keys and that they are unique. You can generate these using the WordPress.org secret key service." msgstr "Tandis que vous modifiez le fichier %1$s, prenez quelques minutes pour vous assurer que vous avez les 8 clés, et qu’elles sont bien uniques. Vous pouvez les générer avec le service de clés secrètes de WordPress.org." -#: wp-admin/options-general.php:193 +#: wp-admin/options-general.php:192 msgid "Set as Site Icon" msgstr "Définir comme icône du site" -#: wp-admin/options-general.php:191 wp-admin/options-general.php:200 +#: wp-admin/options-general.php:190 wp-admin/options-general.php:199 msgid "Choose a Site Icon" msgstr "Choisir une icône de site" #. translators: Hidden accessibility text. #: wp-admin/includes/class-wp-application-passwords-list-table.php:258 -#: wp-admin/includes/class-wp-comments-list-table.php:905 +#: wp-admin/includes/class-wp-comments-list-table.php:909 #: wp-admin/includes/class-wp-list-table.php:689 #: wp-admin/includes/class-wp-list-table.php:1823 #: wp-admin/includes/update.php:933 @@ -8614,7 +8777,7 @@ msgid "Show more details" msgstr "Afficher plus de détails" #. translators: %s: Number of menus. -#: wp-admin/nav-menus.php:838 +#: wp-admin/nav-menus.php:840 msgid "Your theme supports %s menu. Select which menu appears in each location." msgid_plural "Your theme supports %s menus. Select which menu appears in each location." msgstr[0] "Votre thème peut utiliser %s menu. Sélectionnez le menu qui devra apparaître à chaque emplacement." @@ -8651,7 +8814,7 @@ msgstr "En réponse à : %s" msgid "Date and time" msgstr "Date et heure" -#: wp-admin/edit-form-advanced.php:362 +#: wp-admin/edit-form-advanced.php:355 msgid "You can also embed media from many popular websites including Twitter, YouTube, Flickr and others by pasting the media URL on its own line into the content of your post/page. Learn more about embeds." msgstr "Vous pouvez également insérer des contenus en provenance de nombreux sites populaires, comme Twitter, YouTube, Flickr et d’autres, simplement en collant l’URL du contenu dans sa propre ligne dans le texte de votre publication. En apprendre plus sur les contenus embarqués." @@ -8659,7 +8822,7 @@ msgstr "Vous pouvez également insérer des contenus en provenance de nombreux s msgid "Documentation on Custom Background" msgstr "Documentation sur l’arrière-plan personnalisé (en anglais)" -#: wp-admin/edit-tags.php:307 +#: wp-admin/edit-tags.php:310 msgid "Documentation on Link Categories" msgstr "Documentation sur les catégories de liens (en anglais)" @@ -8692,7 +8855,7 @@ msgstr "Quand vous publiez un nouvel article, WordPress notifie automatiquement msgid "The character encoding of your site (UTF-8 is recommended)" msgstr "Le codage de caractères utilisé par votre site (nous recommandons UTF-8)" -#: wp-admin/includes/file.php:2571 +#: wp-admin/includes/file.php:2589 msgid "example: www.wordpress.org" msgstr "exemple : www.wordpress.org" @@ -8751,11 +8914,11 @@ msgstr[1] "%s millions et +" msgid "XML Error: %1$s at line %2$s" msgstr "Erreur XML : %1$s à la ligne %2$s" -#: wp-admin/menu-header.php:289 +#: wp-admin/menu-header.php:293 msgid "Main menu" msgstr "Menu principal" -#: wp-admin/includes/file.php:2621 +#: wp-admin/includes/file.php:2639 msgid "Enter the location on the server where the public and private keys are located. If a passphrase is needed, enter that in the password field above." msgstr "Saisissez l’emplacement sur le serveur où se trouvent les clés publiques et privées. S’il vous faut une passphrase, saisissez-la dans le champ de mot de passe ci-dessus." @@ -8813,7 +8976,7 @@ msgctxt "timezone date format" msgid "Y-m-d H:i:s" msgstr "Y-m-d H:i:s" -#: wp-admin/nav-menus.php:743 +#: wp-admin/nav-menus.php:745 msgid "To add a custom link, expand the Custom Links section, enter a URL and link text, and click Add to Menu" msgstr "Pour ajouter un lien personnalisé ouvrez la section « Liens personnalisés », saisissez une URL et un texte pour le lien, et cliquez sur « Ajouter au menu »" @@ -8856,11 +9019,11 @@ msgstr "" "###SITEURL###" #. translators: Hidden accessibility text. -#: wp-admin/includes/theme.php:847 wp-admin/themes.php:1029 +#: wp-admin/includes/theme.php:847 wp-admin/themes.php:1071 msgid "Close details dialog" msgstr "Fermer la fenêtre des détails" -#: wp-admin/includes/template.php:2799 wp-admin/includes/template.php:2818 +#: wp-admin/includes/template.php:2798 wp-admin/includes/template.php:2817 msgid "You are currently editing the page that shows your latest posts." msgstr "Vous êtes en train de modifier la page qui affiche vos derniers articles." @@ -8882,7 +9045,7 @@ msgstr "Taille en mégaoctets" msgid "Site Upload Space Quota" msgstr "Quota d’espace de fichiers" -#: wp-admin/includes/class-wp-automatic-updater.php:1639 +#: wp-admin/includes/class-wp-automatic-updater.php:1665 msgid "" "UPDATE LOG\n" "==========" @@ -8890,7 +9053,7 @@ msgstr "" "JOURNAL DES MISES À JOUR\n" "==========" -#: wp-admin/includes/class-wp-automatic-updater.php:1616 +#: wp-admin/includes/class-wp-automatic-updater.php:1642 msgid "" "BETA TESTING?\n" "=============\n" @@ -8924,7 +9087,7 @@ msgstr "Envoyé le" #. translators: Column name or table row header. #: wp-admin/comment.php:201 -#: wp-admin/includes/class-wp-comments-list-table.php:477 +#: wp-admin/includes/class-wp-comments-list-table.php:481 msgid "In response to" msgstr "En réponse à" @@ -8934,7 +9097,7 @@ msgstr "En réponse à" msgid "%1$s %2$s, %3$s at %4$s:%5$s" msgstr "%2$s %1$s %3$s à %4$sh%5$s" -#: wp-admin/user-edit.php:744 +#: wp-admin/user-edit.php:746 msgid "You are only logged in at this location." msgstr "Vous n’êtes connecté·e qu’à cet emplacement." @@ -8942,11 +9105,11 @@ msgstr "Vous n’êtes connecté·e qu’à cet emplacement." msgid "These suggestions are based on the plugins you and other users have installed." msgstr "Ces suggestions sont basées sur les extensions que vous et d’autres comptes ont installées." -#: wp-admin/edit-form-advanced.php:297 +#: wp-admin/edit-form-advanced.php:290 msgid "You can enable distraction-free writing mode using the icon to the right. This feature is not available for old browsers or devices with small screens, and requires that the full-height editor be enabled in Screen Options." msgstr "Vous pouvez activer le mode d’écriture sans distraction en cliquant sur l’icône à droite. Cette fonctionnalité n’est pas disponible pour les anciens navigateurs ou les appareils à petits écrans, et nécessite l’activation de l’éditeur plein-écran dans les options de l’écran." -#: wp-admin/user-edit.php:762 +#: wp-admin/user-edit.php:764 msgid "Log Out Everywhere" msgstr "Déconnexion globale" @@ -8957,7 +9120,7 @@ msgstr "Recommandées" #. translators: New site notification email. 1: New site URL, 2: User login, 3: #. User password or password reset link, 4: Login URL. -#: wp-admin/includes/upgrade.php:574 +#: wp-admin/includes/upgrade.php:589 msgid "" "Your new WordPress site has been successfully set up at:\n" "\n" @@ -9024,7 +9187,7 @@ msgid "All categories" msgstr "Toutes les catégories" #. translators: Hidden accessibility text. -#: wp-admin/includes/class-wp-comments-list-table.php:513 +#: wp-admin/includes/class-wp-comments-list-table.php:517 msgid "Filter by comment type" msgstr "Filtrer par type de commentaire" @@ -9045,13 +9208,13 @@ msgstr "Impossible de déconnecter les sessions des comptes. Veuillez réessayer msgid "This preview is unavailable in the editor." msgstr "Cette prévisualisation n’est pas disponible dans l’éditeur." -#: wp-admin/edit-form-advanced.php:296 +#: wp-admin/edit-form-advanced.php:289 msgid "You can insert media files by clicking the button above the post editor and following the directions. You can align or edit images using the inline formatting toolbar available in Visual mode." msgstr "Vous pouvez insérer des fichiers média en cliquant sur les icônes situées au-dessus de l’éditeur, puis en suivant les instructions. Vous pouvez aligner ou modifier les images à l’aide de la barre de mise en forme disponible dans le mode Visuel." -#: wp-admin/edit-form-advanced.php:293 -msgid "Post editor — Enter the text for your post. There are two modes of editing: Visual and Text. Choose the mode by clicking on the appropriate tab." -msgstr "Éditeur d’article — Saisissez-y le contenu de votre article. Vous disposez pour ce faire de deux modes : Visuel ou Texte. Choisissez un mode en cliquant sur l’onglet correspondant." +#: wp-admin/edit-form-advanced.php:286 +msgid "Post editor — Enter the text for your post. There are two modes of editing: Visual and Code. Choose the mode by clicking on the appropriate tab." +msgstr "Éditeur d’article — Saisissez-y le contenu de votre article. Vous disposez pour ce faire de deux modes : Visuel et Code. Choisissez un mode en cliquant sur l’onglet correspondant." #. translators: %s: URL to header image configuration in Customizer. #: wp-admin/includes/class-custom-image-header.php:518 @@ -9092,7 +9255,7 @@ msgstr "Si vous le souhaitez, vous pouvez spécifier ici une structure personnal #: wp-admin/credits.php:133 msgid "Release Lead" -msgstr "Responsable de cette version" +msgstr "Responsable de la version" #: wp-admin/upload.php:192 msgid "Use the arrow buttons at the top of the dialog, or the left and right arrow keys on your keyboard, to navigate between media items quickly." @@ -9131,7 +9294,7 @@ msgid "Add Plugins" msgstr "Ajouter des extensions" #. translators: 1: WPLANG, 2: wp-config.php -#: wp-admin/options-general.php:351 +#: wp-admin/options-general.php:350 msgid "The %1$s constant in your %2$s file is no longer needed." msgstr "La constante %1$s de votre fichier %2$s n’est plus nécessaire." @@ -9139,7 +9302,7 @@ msgstr "La constante %1$s de votre fichier %2$s n’est plus nécessaire." msgid "Invalid translation type." msgstr "Type de traduction non valide." -#: wp-admin/install.php:369 +#: wp-admin/install.php:393 msgid "Welcome to the famous five-minute WordPress installation process! Just fill in the information below and you’ll be on your way to using the most extendable and powerful personal publishing platform in the world." msgstr "Bienvenue dans la très célèbre installation en 5 minutes de WordPress ! Vous n’avez qu’à remplir les informations demandées ci-dessous et vous serez prêt à utiliser la plus extensible et puissante plateforme de publication de contenu au monde." @@ -9163,7 +9326,7 @@ msgstr[1] "%d étoiles" msgid "Select bulk action" msgstr "Sélectionnez l’action groupée" -#: wp-admin/user-new.php:484 wp-admin/user-new.php:651 +#: wp-admin/user-new.php:489 wp-admin/user-new.php:656 msgid "Add the user without sending an email that requires their confirmation" msgstr "Ajouter le compte sans envoyer de message de confirmation." @@ -9187,7 +9350,7 @@ msgid "Reviews" msgstr "Avis" #. translators: %s: Support email address. -#: wp-admin/includes/class-wp-automatic-updater.php:1046 +#: wp-admin/includes/class-wp-automatic-updater.php:1054 msgid "The WordPress team is willing to help you. Forward this email to %s and the team will work with you to make sure your site is working." msgstr "L’équipe de WordPress est prête à vous aider. Transférez ce message à %s et l’équipe vous aidera à faire en sorte que vous site fonctionne." @@ -9240,7 +9403,7 @@ msgstr "%s n’a pas pu être intégré." msgid "Filtering by:" msgstr "Trier par :" -#: wp-admin/includes/media.php:3287 +#: wp-admin/includes/media.php:3291 msgid "Displayed on attachment pages." msgstr "affichée sur les pages du fichier joint." @@ -9265,7 +9428,7 @@ msgid "You can proportionally scale the original image. For best results, scalin msgstr "Vous pouvez redimensionner l’image originale de manière proportionnelle. Pour obtenir de meilleurs résultats, le redimensionnement doit être fait avant tout recadrage, retournement ou rotation. La taille des images ne peut être que réduite, pas augmentée." #. translators: %s: Alt + F10 -#: wp-admin/edit-form-advanced.php:300 +#: wp-admin/edit-form-advanced.php:293 msgid "Keyboard users: When you are working in the visual editor, you can use %s to access the toolbar." msgstr "Personnes utilisant le clavier : lorsque vous travaillez dans l’éditeur visuel, vous pouvez utiliser %s pour accéder à la barre d’outils." @@ -9273,7 +9436,7 @@ msgstr "Personnes utilisant le clavier : lorsque vous travaillez dans l’édit msgid "A red bar on the left means the comment is waiting for you to moderate it." msgstr "Une barre rouge sur la gauche signifie que le commentaire attention votre validation." -#: wp-admin/includes/class-wp-comments-list-table.php:518 +#: wp-admin/includes/class-wp-comments-list-table.php:522 msgid "All comment types" msgstr "Tous les types de commentaire" @@ -9399,7 +9562,7 @@ msgstr "Sur cet écran, vous pouvez faire la mise à jour vers la dernière vers #. translators: %s: https://wordpress.org/themes #: wp-admin/themes.php:156 -msgid "If you would like to see more themes to choose from, click on the “Add New Theme” button and you will be able to browse or search for additional themes from the WordPress Theme Directory. Themes in the WordPress Theme Directory are designed and developed by third parties, and are compatible with the license WordPress uses. Oh, and they are free!" +msgid "If you would like to see more themes to choose from, click on the “Add Theme” button and you will be able to browse or search for additional themes from the WordPress Theme Directory. Themes in the WordPress Theme Directory are designed and developed by third parties, and are compatible with the license WordPress uses. Oh, and they are free!" msgstr "Si vous souhaitez voir plus de thèmes, cliquez sur le bouton « Ajouter un thème » et vous pourrez parcourir le répertoire des thèmes de WordPress.org et y rechercher des thèmes supplémentaires. Les thèmes du répertoire de WordPress.org sont conçus et développés par des tiers, et sont compatibles avec la licence de WordPress. Et ils sont gratuits !" #. translators: 1: Number of megabytes, 2: Percentage. @@ -9440,7 +9603,7 @@ msgstr "Lorsque ce réglage est actif, un rappel est affiché dans la section « msgid "At a Glance" msgstr "D’un coup d’œil" -#: wp-admin/themes.php:597 wp-admin/themes.php:968 +#: wp-admin/themes.php:599 wp-admin/themes.php:991 msgctxt "theme" msgid "Active:" msgstr "Activé :" @@ -9450,7 +9613,7 @@ msgid "Accessibility Ready" msgstr "Optimisé pour l’accessibilité" #. translators: %s: Theme name. -#: wp-admin/includes/theme.php:976 wp-admin/themes.php:1201 +#: wp-admin/includes/theme.php:976 wp-admin/themes.php:1243 msgid "This is a child theme of %s." msgstr "Ce thème est un thème enfant de %s." @@ -9491,13 +9654,13 @@ msgid "To activate a widget drag it to a sidebar or click on it. To deactivate a msgstr "Pour activer un widget, glissez-le dans la colonne latérale ou cliquez dessus. Pour désactiver un widget et supprimer ses réglages, enlevez-le de la colonne latérale." #. translators: Hidden accessibility text. %s: The rating. -#: wp-admin/includes/template.php:2774 +#: wp-admin/includes/template.php:2773 msgid "%s rating" msgstr "Note : %s" #. translators: Hidden accessibility text. 1: The rating, 2: The number of #. ratings. -#: wp-admin/includes/template.php:2770 +#: wp-admin/includes/template.php:2769 msgid "%1$s rating based on %2$s rating" msgid_plural "%1$s rating based on %2$s ratings" msgstr[0] "Une note de %1$s basée sur %2$s vote" @@ -9508,36 +9671,36 @@ msgid "This screen shows an individual user all of their sites in this network, msgstr "Cet écran affiche à un compte individuel tous ses sites sur ce réseau, et permet également à ce comptes de régler son site principal. Il peut utiliser les liens sous chaque site pour se rendre soit sur son interface publique, soit sur son administration." #. translators: 1: Error code, 2: Error message. -#: wp-admin/includes/class-wp-automatic-updater.php:1677 +#: wp-admin/includes/class-wp-automatic-updater.php:1703 msgid "Error: [%1$s] %2$s" msgstr "Erreur : [%1$s] %2$s" #. translators: 1: Error code, 2: Error message. -#: wp-admin/includes/class-wp-automatic-updater.php:1674 +#: wp-admin/includes/class-wp-automatic-updater.php:1700 msgid "Rollback Error: [%1$s] %2$s" msgstr "Erreur de restauration : [%1$s] %2$s" -#: wp-admin/includes/class-wp-automatic-updater.php:1591 +#: wp-admin/includes/class-wp-automatic-updater.php:1617 msgid "The following translations failed to update:" msgstr "Les traductions suivantes n’ont pas pu être mises à jour :" -#: wp-admin/includes/class-wp-automatic-updater.php:1590 +#: wp-admin/includes/class-wp-automatic-updater.php:1616 msgid "The following themes failed to update:" msgstr "Les thèmes suivants n’ont pas pu être mis à jour :" -#: wp-admin/includes/class-wp-automatic-updater.php:1589 +#: wp-admin/includes/class-wp-automatic-updater.php:1615 msgid "The following plugins failed to update:" msgstr "Les extensions suivantes n’ont pas pu être mises à jour :" -#: wp-admin/includes/class-wp-automatic-updater.php:1576 +#: wp-admin/includes/class-wp-automatic-updater.php:1602 msgid "The following translations were successfully updated:" msgstr "Les traductions suivantes ont bien été mises à jour :" -#: wp-admin/includes/class-wp-automatic-updater.php:1575 +#: wp-admin/includes/class-wp-automatic-updater.php:1601 msgid "The following themes were successfully updated:" msgstr "Les thèmes suivants ont bien été mis à jour :" -#: wp-admin/includes/class-wp-automatic-updater.php:1574 +#: wp-admin/includes/class-wp-automatic-updater.php:1600 msgid "The following plugins were successfully updated:" msgstr "Les extensions suivantes ont bien été mises à jour :" @@ -9546,25 +9709,19 @@ msgid "Add Widget" msgstr "Ajouter le widget" #. translators: Hidden accessibility text. -#: wp-admin/includes/theme.php:841 wp-admin/themes.php:1023 +#: wp-admin/includes/theme.php:841 wp-admin/themes.php:1065 msgid "Show next theme" msgstr "Afficher le thème suivant" #. translators: Hidden accessibility text. -#: wp-admin/includes/theme.php:835 wp-admin/themes.php:1017 +#: wp-admin/includes/theme.php:835 wp-admin/themes.php:1059 msgid "Show previous theme" msgstr "Afficher le thème précédent" -#: wp-admin/includes/theme.php:897 wp-admin/themes.php:1117 +#: wp-admin/includes/theme.php:897 wp-admin/themes.php:1159 msgid "Update Available" msgstr "Mise à jour disponible" -#: wp-admin/theme-install.php:57 wp-admin/themes.php:234 -#: wp-admin/themes.php:255 wp-admin/network/menu.php:81 -#: wp-admin/network/themes.php:366 -msgid "Add New Theme" -msgstr "Ajouter un thème" - #: wp-admin/themes.php:230 msgid "" "Are you sure you want to delete this theme?\n" @@ -9634,47 +9791,47 @@ msgid "Activity" msgstr "Activité" #. translators: %s: Name of plugin / theme / translation. -#: wp-admin/includes/class-wp-automatic-updater.php:1599 +#: wp-admin/includes/class-wp-automatic-updater.php:1625 msgid "FAILED: %s" msgstr "ÉCHEC : %s" #. translators: %s: Name of plugin / theme / translation. -#: wp-admin/includes/class-wp-automatic-updater.php:1582 +#: wp-admin/includes/class-wp-automatic-updater.php:1608 msgid "SUCCESS: %s" msgstr "SUCCÈS : %s" #. translators: %s: WordPress version. -#: wp-admin/includes/class-wp-automatic-updater.php:1557 +#: wp-admin/includes/class-wp-automatic-updater.php:1583 msgid "FAILED: WordPress failed to update to %s" msgstr "ÉCHEC : WordPress n’a pas pu être mis à jour en %s" #. translators: %s: WordPress version. -#: wp-admin/includes/class-wp-automatic-updater.php:1554 +#: wp-admin/includes/class-wp-automatic-updater.php:1580 msgid "SUCCESS: WordPress was successfully updated to %s" msgstr "SUCCÈS : WordPress a bien été mis à jour vers %s" #. translators: %s: Network home URL. -#: wp-admin/includes/class-wp-automatic-updater.php:1546 +#: wp-admin/includes/class-wp-automatic-updater.php:1572 msgid "WordPress site: %s" msgstr "Site WordPress : %s" #. translators: %s: WordPress version. -#: wp-admin/includes/class-wp-automatic-updater.php:1075 +#: wp-admin/includes/class-wp-automatic-updater.php:1083 msgid "Your site was running version %s." msgstr "Votre site utilise la version %s." #. translators: 1: Home URL, 2: WordPress version. -#: wp-admin/includes/class-wp-automatic-updater.php:1021 +#: wp-admin/includes/class-wp-automatic-updater.php:1029 msgid "Your site at %1$s experienced a critical failure while trying to update WordPress to version %2$s." msgstr "Votre site à l’adresse %1$s a rencontré un échec critique en essayant de faire une mise à jour de WordPress vers la version %2$s." #. translators: %s: WordPress latest version. -#: wp-admin/includes/class-wp-automatic-updater.php:987 +#: wp-admin/includes/class-wp-automatic-updater.php:995 msgid "WordPress %s is also now available." msgstr "WordPress %s est disponible." -#: wp-admin/includes/update-core.php:1271 -#: wp-admin/includes/update-core.php:1307 +#: wp-admin/includes/update-core.php:1297 +#: wp-admin/includes/update-core.php:1333 msgid "The update cannot be installed because your site is unable to copy some files. This is usually due to inconsistent file permissions." msgstr "La mise à jour ne peut pas être installée parce que le site ne peut pas copier certains fichiers. Ce problème est généralement dû à des incohérences dans les permissions de fichiers." @@ -9688,84 +9845,84 @@ msgid "Translations" msgstr "Traductions" #. translators: %s: Error code. -#: wp-admin/includes/class-wp-automatic-updater.php:1096 +#: wp-admin/includes/class-wp-automatic-updater.php:1104 msgid "Error code: %s" msgstr "Code d’erreur : %s" -#: wp-admin/includes/class-wp-automatic-updater.php:1077 +#: wp-admin/includes/class-wp-automatic-updater.php:1085 msgid "Your hosting company, support forum volunteers, or a friendly developer may be able to use this information to help you:" msgstr "Votre hébergeur, les volontaires du forum d’entraide ou un ami développeur devraient pouvoir vous aider à comprendre cette information pour vous aider :" -#: wp-admin/includes/class-wp-automatic-updater.php:1070 -#: wp-admin/includes/class-wp-automatic-updater.php:1489 +#: wp-admin/includes/class-wp-automatic-updater.php:1078 +#: wp-admin/includes/class-wp-automatic-updater.php:1508 msgid "The WordPress Team" msgstr "L’équipe WordPress" -#: wp-admin/includes/class-wp-automatic-updater.php:1066 +#: wp-admin/includes/class-wp-automatic-updater.php:1074 msgid "You also have some plugins or themes with updates available. Update them now:" msgstr "Certains de vos thèmes et extensions ont également des mises à jour disponibles. Veuillez les mettre à jour dès maintenant :" -#: wp-admin/includes/class-wp-automatic-updater.php:1051 -#: wp-admin/includes/class-wp-automatic-updater.php:1487 +#: wp-admin/includes/class-wp-automatic-updater.php:1059 +#: wp-admin/includes/class-wp-automatic-updater.php:1506 msgid "If you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help." msgstr "Si vous rencontrez des problèmes ou avez besoin d’assistance, les volontaires du forum d’entraide de WPFR (https://wpfr.net/support) devraient pouvoir vous aider." -#: wp-admin/includes/class-wp-automatic-updater.php:1057 +#: wp-admin/includes/class-wp-automatic-updater.php:1065 #: wp-admin/update-core.php:991 msgid "Keeping your site updated is important for security. It also makes the internet a safer place for you and your readers." msgstr "Pour des questions de sécurité, il est important de garder votre site à jour. Par ailleurs, cela rend le web plus sûr pour vous et pour votre audience." -#: wp-admin/includes/class-wp-automatic-updater.php:1036 +#: wp-admin/includes/class-wp-automatic-updater.php:1044 msgid "Please check out your site now. It's possible that everything is working. If it says you need to update, you should do so:" msgstr "Veuillez vérifier votre site immédiatement. Il se peut que tout fonctionne. S’il affiche que vous devez faire une mise à jour, vous devriez suivre son conseil :" -#: wp-admin/includes/class-wp-automatic-updater.php:1034 +#: wp-admin/includes/class-wp-automatic-updater.php:1042 msgid "This means your site may be offline or broken. Don't panic; this can be fixed." msgstr "Cela signifie que votre site est peut-être hors ligne ou cassé. Ne paniquez pas, cela peut être réparé." #. translators: 1: Home URL, 2: WordPress latest version. -#: wp-admin/includes/class-wp-automatic-updater.php:1028 +#: wp-admin/includes/class-wp-automatic-updater.php:1036 msgid "Your site at %1$s experienced a critical failure while trying to update to the latest version of WordPress, %2$s." msgstr "Votre site à l’adresse %1$s a fait face à un échec critique en essayant de faire une mise à jour vers la dernière version de WordPress, la %2$s." -#: wp-admin/includes/class-wp-automatic-updater.php:988 -#: wp-admin/includes/class-wp-automatic-updater.php:1013 +#: wp-admin/includes/class-wp-automatic-updater.php:996 +#: wp-admin/includes/class-wp-automatic-updater.php:1021 msgid "Updating is easy and only takes a few moments:" msgstr "La mise à jour est facile et ne nécessite que quelques secondes :" #. translators: 1: Home URL, 2: WordPress version. -#: wp-admin/includes/class-wp-automatic-updater.php:998 +#: wp-admin/includes/class-wp-automatic-updater.php:1006 msgid "Please update your site at %1$s to WordPress %2$s." msgstr "Veuillez mettre à jour votre site à l’adresse %1$s pour le passer à WordPress %2$s." #. translators: %s: WordPress version. -#: wp-admin/includes/class-wp-automatic-updater.php:982 +#: wp-admin/includes/class-wp-automatic-updater.php:990 msgid "For more on version %s, see the About WordPress screen:" msgstr "Pour en savoir plus sur la version %s, lisez l’écran À Propos de WordPress : " -#: wp-admin/includes/class-wp-automatic-updater.php:976 +#: wp-admin/includes/class-wp-automatic-updater.php:984 msgid "No further action is needed on your part." msgstr "Vous n’avez rien de plus à faire." #. translators: 1: Home URL, 2: WordPress version. -#: wp-admin/includes/class-wp-automatic-updater.php:970 +#: wp-admin/includes/class-wp-automatic-updater.php:978 msgid "Howdy! Your site at %1$s has been updated automatically to WordPress %2$s." msgstr "Bonjour ! Votre site à l’adresse %1$s a été automatiquement mis à jour vers WordPress %2$s." #. translators: Site down notification email subject. 1: Site title. -#: wp-admin/includes/class-wp-automatic-updater.php:953 +#: wp-admin/includes/class-wp-automatic-updater.php:961 msgid "[%1$s] URGENT: Your site may be down due to a failed update" msgstr "[%1$s] URGENT : suite à une mise à jour échouée, votre site est peut-être inaccessible." #. translators: Update available notification email subject. 1: Site title, 2: #. WordPress version. -#: wp-admin/includes/class-wp-automatic-updater.php:948 +#: wp-admin/includes/class-wp-automatic-updater.php:956 msgid "[%1$s] WordPress %2$s is available. Please update!" msgstr "[%1$s] WordPress %2$s est disponible. Veuillez mettre à jour !" #. translators: Site updated notification email subject. 1: Site title, 2: #. WordPress version. -#: wp-admin/includes/class-wp-automatic-updater.php:942 +#: wp-admin/includes/class-wp-automatic-updater.php:950 msgid "[%1$s] Your site has updated to WordPress %2$s" msgstr "[%1$s] Votre site a été mis à jour vers WordPress %2$s" @@ -9789,7 +9946,7 @@ msgstr "Mettre à jour les traductions" msgid "Background updates" msgstr "Mises à jour en arrière-plan" -#: wp-admin/includes/update-core.php:1374 +#: wp-admin/includes/update-core.php:1400 msgid "There is not enough free disk space to complete the update." msgstr "Il n’y a pas assez d’espace sur le disque pour terminer la mise à jour." @@ -9815,7 +9972,7 @@ msgstr "La mise à jour de la traduction a échoué." msgid "Some of your translations need updating. Sit tight for a few more seconds while they are updated as well." msgstr "Certaines de vos traductions ont besoin d’être mises à jour. Veuillez patienter quelques secondes, le temps qu’elles soient également mises à jour." -#: wp-admin/user-new.php:513 +#: wp-admin/user-new.php:518 msgid "Create a brand new user and add them to this site." msgstr "Créer un nouveau compte et l’ajouter à ce site." @@ -9832,61 +9989,61 @@ msgstr "Les tailles précisées ci-dessous déterminent les dimensions maximales msgid "Comment must be manually approved" msgstr "Le commentaire doit être approuvé manuellement" -#: wp-admin/nav-menus.php:741 +#: wp-admin/nav-menus.php:743 msgid "Clicking the arrow to the right of any menu item in the editor will reveal a standard group of settings. Additional settings such as link target, CSS classes, link relationships, and link descriptions can be enabled and disabled via the Screen Options tab." msgstr "En cliquant sur le titre de n’importe élément du menu dans l’éditeur, un ensemble de réglages standards s’ouvrira. D’autres réglages, tels que la cible du lien, les classes CSS, les relations du lien et la description du lien, peuvent être activés et désactivés dans l’onglet « Options de l’écran »." #. translators: 1: URL to Widgets screen, 2 and 3: The names of the default #. themes. -#: wp-admin/nav-menus.php:710 +#: wp-admin/nav-menus.php:712 msgid "Menus can be displayed in locations defined by your theme, even used in sidebars by adding a “Navigation Menu” widget on the Widgets screen. If your theme does not support the navigation menus feature (the default themes, %2$s and %3$s, do), you can learn about adding this support by following the documentation link to the side." msgstr "Les menus peuvent être affichés à des emplacements définis par votre thème, et même dans les colonnes latérales grâce au widget « Menus personnalisés » de l’écran Widgets. Si votre thème ne reconnaît pas encore cette fonctionnalité (les thèmes par défaut, %2$s and %3$s, les intègrent très bien), vous pouvez apprendre à ajouter cette reconnaissance vous-même en suivant le lien de documentation situé sur le côté." #. translators: %s: URL to Widgets screen. -#: wp-admin/nav-menus.php:693 +#: wp-admin/nav-menus.php:695 msgid "Your theme does not natively support menus, but you can use them in sidebars by adding a “Navigation Menu” widget on the Widgets screen." msgstr "Votre thème ne prend pas en charge nativement les menus, mais vous pouvez les utiliser dans la colonne latérale en ajoutant le widget « Menu de navigation » depuis l’écran Widgets." -#: wp-admin/install.php:419 +#: wp-admin/install.php:443 msgid "Sorry, that is not a valid email address. Email addresses look like username@example.com." msgstr "Désolé, ce n’est pas une adresse e-mail valide. Les adresses de messagerie ressemblent à cela : identifiant@example.com." -#: wp-admin/install.php:415 +#: wp-admin/install.php:439 msgid "You must provide an email address." msgstr "Vous devez saisir une adresse e-mail." -#: wp-admin/install.php:411 +#: wp-admin/install.php:435 msgid "Your passwords do not match. Please try again." msgstr "Vos mots de passe ne correspondent pas. Veuillez réessayer." -#: wp-admin/install.php:407 +#: wp-admin/install.php:431 msgid "The username you provided has invalid characters." msgstr "L’identifiant que vous avez fourni contient des caractères non valides." -#: wp-admin/install.php:404 +#: wp-admin/install.php:428 msgid "Please provide a valid username." msgstr "Veuillez saisir un identifiant valide." -#: wp-admin/includes/update-core.php:1288 +#: wp-admin/includes/update-core.php:1314 msgid "Copying the required files…" msgstr "Copie des fichiers nécessaires…" -#: wp-admin/includes/update-core.php:1195 +#: wp-admin/includes/update-core.php:1221 msgid "Preparing to install the latest version…" msgstr "Préparation de l’installation de la dernière version…" -#: wp-admin/includes/file.php:2585 +#: wp-admin/includes/file.php:2603 msgid "This password will not be stored on the server." msgstr "Le mot de passe ne sera pas stocké sur le serveur." #. translators: 1: File checksum, 2: Expected checksum value. -#: wp-admin/includes/file.php:1369 +#: wp-admin/includes/file.php:1387 msgid "The checksum of the file (%1$s) does not match the expected checksum value (%2$s)." msgstr "L’empreinte de contrôle (ou checksum) de votre fichier (%1$s) ne correspond pas à la valeur de l’empreinte attendue (%2$s)." #. translators: %s: Version number. #. translators: %s: WordPress version. -#: wp-admin/about.php:40 wp-admin/includes/class-wp-automatic-updater.php:409 +#: wp-admin/about.php:41 wp-admin/includes/class-wp-automatic-updater.php:409 msgid "WordPress %s" msgstr "WordPress %s" @@ -10072,23 +10229,19 @@ msgstr "%1$s tiré de %2$s par %3$s." msgid "Revision by %s" msgstr "Révision par %s" -#: wp-admin/edit-form-advanced.php:468 +#: wp-admin/edit-form-advanced.php:461 msgid "Connection lost. Saving has been disabled until you are reconnected." msgstr "Connexion perdue. L’enregistrement a été désactivé jusqu’à votre reconnexion." -#: wp-admin/includes/revision.php:469 -msgid "Sorry, something went wrong. The requested comparison could not be loaded." -msgstr "Désolé, quelque chose s’est mal déroulé. La comparaison demandée n’a pas pu être chargée." - -#: wp-admin/install.php:160 wp-admin/user-new.php:609 +#: wp-admin/install.php:160 wp-admin/user-new.php:614 msgid "Repeat Password" msgstr "Répétez le mot de passe" -#: wp-admin/user-edit.php:694 +#: wp-admin/user-edit.php:696 msgid "Repeat New Password" msgstr "Répétez le nouveau mot de passe" -#: wp-admin/includes/nav-menu.php:1251 +#: wp-admin/includes/nav-menu.php:1252 msgid "Add menu items from the column on the left." msgstr "Ajouter des éléments de menu depuis la colonne de gauche." @@ -10114,7 +10267,7 @@ msgstr "Ce paquet ne contient aucun fichier." msgid "To navigate between revisions, drag the slider handle left or right or use the Previous or Next buttons." msgstr "Pour naviguer entre les révisions, faites glisser le curseur vers la gauche ou vers la droite ou utilisez les boutons Précédente ou Suivante." -#: wp-admin/customize.php:155 wp-admin/includes/class-wp-debug-data.php:788 +#: wp-admin/customize.php:155 wp-admin/includes/class-wp-debug-data.php:816 #: wp-admin/includes/dashboard.php:1164 msgid "Loading…" msgstr "Chargement…" @@ -10131,11 +10284,11 @@ msgstr "L’élément que vous essayez de sortir de la corbeille n’existe plus msgid "The item you are trying to move to the Trash no longer exists." msgstr "L’élément que vous essayez de placer dans la corbeille n’existe plus." -#: wp-admin/nav-menus.php:1116 +#: wp-admin/nav-menus.php:1118 msgid "Drag the items into the order you prefer. Click the arrow on the right of the item to reveal additional configuration options." msgstr "Glissez chaque élément pour les placer dans l’ordre que vous préférez. Cliquez sur la flèche à droite de l’élément pour révéler d’autres options de configuration." -#: wp-admin/nav-menus.php:729 +#: wp-admin/nav-menus.php:731 msgid "If you have not yet created any menus, click the ’create a new menu’ link to get started" msgstr "Si vous n’avez pas encore créé de menu, cliquez sur le lien « Créer un nouveau menu » pour vous lancer" @@ -10175,101 +10328,101 @@ msgctxt "Followed by post revision info" msgid "From:" msgstr "Depuis :" -#: wp-admin/nav-menus.php:917 +#: wp-admin/nav-menus.php:918 msgctxt "menu" msgid "Use new menu" msgstr "Utiliser le nouveau menu" -#: wp-admin/nav-menus.php:893 +#: wp-admin/nav-menus.php:897 msgctxt "menu" msgid "Edit" msgstr "Modifier" -#: wp-admin/nav-menus.php:862 +#: wp-admin/nav-menus.php:864 msgid "Select a Menu" msgstr "Choisir un menu" -#: wp-admin/nav-menus.php:853 +#: wp-admin/nav-menus.php:855 msgid "Assigned Menu" msgstr "Menu assigné" -#: wp-admin/nav-menus.php:852 +#: wp-admin/nav-menus.php:854 msgid "Theme Location" msgstr "Emplacement du thème" -#: wp-admin/nav-menus.php:821 +#: wp-admin/nav-menus.php:823 msgid "Manage Locations" msgstr "Gérer les emplacements" -#: wp-admin/nav-menus.php:810 +#: wp-admin/nav-menus.php:812 msgid "Edit Menus" msgstr "Modifier les menus" -#: wp-admin/nav-menus.php:758 +#: wp-admin/nav-menus.php:760 msgid "To add a new menu instead of assigning an existing one, click the ’Use new menu’ link. Your new menu will be automatically assigned to that theme location" msgstr "Pour ajouter un menu au lieu d’en assigner un qui existe déjà, cliquez sur le lien « Utiliser un nouveau menu ». Votre nouveau menu sera automatiquement ajouté à cet emplacement du thème" -#: wp-admin/nav-menus.php:757 +#: wp-admin/nav-menus.php:759 msgid "To edit a menu currently assigned to a theme location, click the adjacent ’Edit’ link" msgstr "Pour modifier un menu actuellement assigné à un emplacement du thème, cliquez sur le lien « Modifier » adjacent" -#: wp-admin/nav-menus.php:756 +#: wp-admin/nav-menus.php:758 msgid "To assign menus to one or more theme locations, select a menu from each location’s dropdown. When you are finished, click Save Changes" msgstr "Pour assigner des menus à un ou plusieurs emplacements, sélectionnez le menu depuis la liste déroulante de chaque emplacement. Lorsque vous avez terminé, cliquez sur « Enregistrer les modifications »" -#: wp-admin/nav-menus.php:755 +#: wp-admin/nav-menus.php:757 msgid "This screen is used for globally assigning menus to locations defined by your theme." msgstr "Cet écran est utilisé pour assigner de manière globale vos menus à des emplacements définis par votre thème." -#: wp-admin/nav-menus.php:750 +#: wp-admin/nav-menus.php:752 msgid "Editing Menus" msgstr "Modification des menus" -#: wp-admin/nav-menus.php:745 +#: wp-admin/nav-menus.php:747 msgid "Delete a menu item by expanding it and clicking the Remove link" msgstr "Supprimez un élément du menu en l’ouvrant et en cliquant sur le bouton Supprimer" -#: wp-admin/nav-menus.php:744 +#: wp-admin/nav-menus.php:746 msgid "To reorganize menu items, drag and drop items with your mouse or use your keyboard. Drag or move a menu item a little to the right to make it a submenu" msgstr "Pour réorganiser les éléments du menu, glissez/déposez les éléments avec la souris ou utilisez votre clavier. Glissez ou déplacez légèrement un élement du menu pour en faire un sous-menu" -#: wp-admin/nav-menus.php:742 +#: wp-admin/nav-menus.php:744 msgid "Add one or several items at once by selecting the checkbox next to each item and clicking Add to Menu" msgstr "Ajoutez un ou plusieurs éléments à la fois en cochant la case à côté de chaque élément puis en cliquant sur « Ajouter au menu »" -#: wp-admin/nav-menus.php:740 +#: wp-admin/nav-menus.php:742 msgid "Each navigation menu may contain a mix of links to pages, categories, custom URLs or other content types. Menu links are added by selecting items from the expanding boxes in the left-hand column below." msgstr "Chaque menu de navigation peut contenir un mélange de liens vers des pages, des catégories, des URL personnalisées ou d’autres types de contenu. Les liens de menu sont ajoutés en sélectionnant un élément dans l’une des sections situées dans la colonne de gauche ci-dessous." -#: wp-admin/nav-menus.php:735 +#: wp-admin/nav-menus.php:737 msgid "Menu Management" msgstr "Gestion des menus" -#: wp-admin/nav-menus.php:730 +#: wp-admin/nav-menus.php:732 msgid "You can assign theme locations to individual menus by selecting the desired settings at the bottom of the menu editor. To assign menus to all theme locations at once, visit the Manage Locations tab at the top of the screen." msgstr "Vous pouvez assigner un emplacement du thème à chaque menu en sélectionnant les réglages souhaités en bas de l’éditeur de menu. Pour assigner un menu à tous les emplacements d’un coup, rendez-vous dans l’onglet Gérer les emplacements en haut de l’écran." -#: wp-admin/nav-menus.php:728 +#: wp-admin/nav-menus.php:730 msgid "To edit an existing menu, choose a menu from the dropdown and click Select" msgstr "Pour modifier un menu existant, choisissez un menu depuis la liste déroulante et cliquez sur « Sélectionner »" -#: wp-admin/nav-menus.php:727 +#: wp-admin/nav-menus.php:729 msgid "The menu management box at the top of the screen is used to control which menu is opened in the editor below." msgstr "La section de gestion des menus, en haut de l’écran, est utilisée pour contrôler le menu qui est ouvert dans l’éditeur ci-dessous." -#: wp-admin/nav-menus.php:717 +#: wp-admin/nav-menus.php:719 msgid "Add, organize, and modify individual menu items" msgstr "Ajouter, organiser et modifier des éléments de menu individuels" -#: wp-admin/nav-menus.php:716 +#: wp-admin/nav-menus.php:718 msgid "Create, edit, and delete menus" msgstr "Créer, modifier et supprimer des menus" -#: wp-admin/nav-menus.php:715 wp-admin/themes.php:133 +#: wp-admin/nav-menus.php:717 wp-admin/themes.php:133 msgid "From this screen you can:" msgstr "Depuis cet écran, vous pouvez :" -#: wp-admin/nav-menus.php:707 +#: wp-admin/nav-menus.php:709 msgid "This screen is used for managing your navigation menus." msgstr "Cet écran est utilisé pour gérer vos menus de navigation." @@ -10277,15 +10430,15 @@ msgstr "Cet écran est utilisé pour gérer vos menus de navigation." msgid "Menu locations updated." msgstr "Les emplacements de menu ont été mis à jour." -#: wp-admin/includes/post.php:1911 +#: wp-admin/includes/post.php:1922 msgid "Your latest changes were saved as a revision." msgstr "Vos dernières modifications ont été enregistrées dans une révision." -#: wp-admin/includes/media.php:3470 +#: wp-admin/includes/media.php:3474 msgid "Audio Codec:" msgstr "Codec audio :" -#: wp-admin/includes/media.php:3469 +#: wp-admin/includes/media.php:3473 msgid "Audio Format:" msgstr "Format audio :" @@ -10315,19 +10468,19 @@ msgid "Restore This Revision" msgstr "Rétablir cette révision" #. translators: %s: Capability name. -#: wp-admin/user-edit.php:930 +#: wp-admin/user-edit.php:932 msgid "Denied: %s" msgstr "Refusé : %s" -#: wp-admin/user-edit.php:916 +#: wp-admin/user-edit.php:918 msgid "Capabilities" msgstr "Permissions" -#: wp-admin/nav-menus.php:1173 wp-admin/network/settings.php:511 +#: wp-admin/nav-menus.php:1175 wp-admin/network/settings.php:511 msgid "Menu Settings" msgstr "Réglages du menu" -#: wp-admin/nav-menus.php:1073 +#: wp-admin/nav-menus.php:1075 msgid "Menu structure" msgstr "Structure du menu" @@ -10362,7 +10515,7 @@ msgstr "Vous ne pouvez pas déplacer cet élément dans la corbeille. %s est en msgid "%s has taken over and is currently editing." msgstr "%s a pris la main et modifie actuellement ce contenu." -#: wp-admin/nav-menus.php:978 +#: wp-admin/nav-menus.php:980 msgid "Select a menu to edit:" msgstr "Sélectionnez le menu à modifier :" @@ -10375,19 +10528,19 @@ msgstr "Merci d’avoir fait cette mise à jour ! Veuillez vous rendre sur la p msgid "All right, sparky! You’ve made it through this part of the installation. WordPress can now communicate with your database. If you are ready, time now to…" msgstr "C’est parfait ! Vous avez passé la première partie de l’installation. WordPress peut désormais communiquer avec votre base de données. Préparez-vous, il est maintenant temps de…" -#: wp-admin/includes/class-wp-debug-data.php:1591 +#: wp-admin/includes/class-wp-debug-data.php:1619 msgid "Client version" msgstr "Version du client" -#: wp-admin/nav-menus.php:1189 +#: wp-admin/nav-menus.php:1191 msgid "Auto add pages" msgstr "Ajoutez automatiquement des pages" -#: wp-admin/nav-menus.php:1143 +#: wp-admin/nav-menus.php:1145 msgid "Give your menu a name, then click Create Menu." msgstr "Donnez à votre menu un nom, puis cliquez sur « Créer le menu »." -#: wp-admin/nav-menus.php:1114 +#: wp-admin/nav-menus.php:1116 msgid "Edit your default menu by adding or removing items. Drag the items into the order you prefer. Click Create Menu to save your changes." msgstr "Modifiez votre menu par défaut en ajoutant ou en retirant des éléments. Faites glissez chaque élément pour les mettre dans l’ordre que vous souhaitez. Cliquez sur « Créer le menu » pour enregistrer vos modifications." @@ -10399,11 +10552,11 @@ msgstr "Les menus sélectionnés ont bien été supprimés." msgid "For PHP files, you can use the documentation dropdown to select from functions recognized in that file. Look Up takes you to a web page with reference material about that particular function." msgstr "Pour les fichiers PHP, vous pouvez utiliser le menu déroulant « Documentation » pour en apprendre plus sur les fonctions trouvées dans le ce fichier. Le bouton « Consulter » vous enverra sur la page dédiée de cette fonction." -#: wp-admin/plugin-editor.php:298 wp-admin/theme-editor.php:327 +#: wp-admin/plugin-editor.php:308 wp-admin/theme-editor.php:332 msgid "Look Up" msgstr "Consulter" -#: wp-admin/plugin-editor.php:137 +#: wp-admin/plugin-editor.php:140 msgid "The documentation menu below the editor lists the PHP functions recognized in the plugin file. Clicking Look Up takes you to a web page about that particular function." msgstr "Le menu « Documentation », situé sous l’éditeur, liste les fonctions PHP reconnues dans le fichier de l’extension. En cliquant sur « Consulter », vous serez envoyé sur une page web documentant cette fonction." @@ -10413,20 +10566,16 @@ msgstr "Le menu « Documentation », situé sous l’éditeur, liste les fonct msgid "%s is currently editing" msgstr "%s modifie actuellement ce contenu" -#: wp-admin/edit-form-advanced.php:361 +#: wp-admin/edit-form-advanced.php:354 msgid "You can upload and insert media (images, audio, documents, etc.) by clicking the Add Media button. You can select from the images and files already uploaded to the Media Library, or upload new media to add to your page or post. To create an image gallery, select the images to add and click the “Create a new gallery” button." msgstr "Vous pouvez téléverser et insérer des fichiers média (images, sons, documents, etc.) en cliquant sur le bouton « Ajouter un média ». Vous pouvez sélectionner vos images et fichiers parmi ceux déjà présents dans la médiathèque, ou en téléverser de nouveaux à ajouter à votre article/page. Pour créer une galerie d’images, sélectionnez les images à ajouter et cliquez sur le bouton « Créer une nouvelle galerie »." -#: wp-admin/about.php:106 -msgid "Introducing Twenty Twenty-Five" -msgstr "Découvrez Twenty Twenty-Five" - #: wp-admin/includes/image-edit.php:83 msgid "Image rotation is not supported by your web host." msgstr "La rotation d’image n’est pas disponible avec cet hébergeur." #. translators: %s: A link to install the Link Manager plugin. -#: wp-admin/includes/bookmark.php:355 +#: wp-admin/includes/bookmark.php:356 msgid "If you are looking to use the link manager, please install the Link Manager plugin." msgstr "Si vous souhaitez utiliser le gestionnaire de liens, veuillez installer l’extension Link Manager." @@ -10434,19 +10583,19 @@ msgstr "Si vous souhaitez utiliser le gestionnaire de liens, veuillez installer msgid "When changing themes, there is often some variation in the number and setup of widget areas/sidebars and sometimes these conflicts make the transition a bit less smooth. If you changed themes and seem to be missing widgets, scroll down on this screen to the Inactive Widgets area, where all of your widgets and their settings will have been saved." msgstr "En changeant de thème, il y a souvent des variations sur le nombre et l’agencement des zones de widgets et des colonnes latérales, et parfois tout cela entre en conflit, rendant la transition moins aisée. Si vous avez changé de thème et que certains widgets semblent manquer, faites défiler cet écran jusqu’en bas pour les retrouver dans la zone des widgets inactifs, où ils ont été conservés avec leurs derniers réglages." -#: wp-admin/edit-tags.php:286 +#: wp-admin/edit-tags.php:289 msgid "Parent — Categories, unlike tags, can have a hierarchy. You might have a Jazz category, and under that have child categories for Bebop and Big Band. Totally optional. To create a subcategory, just choose another category from the Parent dropdown." msgstr "Parent — Les catégories, contrairement aux étiquettes, peuvent avoir une hiérarchie. Vous pouvez avoir une catégorie nommée « Jazz », et à l’intérieur, plusieurs catégories comme « Bebop » et « Big Band ». Le fait d’avoir une hiérarchie est totalement facultatif. Pour créer une sous-catégorie, choisissez juste une autre catégorie depuis la liste déroulante « Parente »." -#: wp-admin/edit-form-advanced.php:374 +#: wp-admin/edit-form-advanced.php:367 msgid "Several boxes on this screen contain settings for how your content will be published, including:" msgstr "Plusieurs sections de cet écran vous permettez de régler la manière dont votre contenu sera publié, notamment :" -#: wp-admin/edit-form-advanced.php:367 +#: wp-admin/edit-form-advanced.php:360 msgid "Inserting Media" msgstr "Insertion de média" -#: wp-admin/edit-form-advanced.php:282 +#: wp-admin/edit-form-advanced.php:275 msgid "The title field and the big Post Editing Area are fixed in place, but you can reposition all the other boxes using drag and drop. You can also minimize or expand them by clicking the title bar of each box. Use the Screen Options tab to unhide more boxes (Excerpt, Send Trackbacks, Custom Fields, Discussion, Slug, Author) or to choose a 1- or 2-column layout for this screen." msgstr "Le champ du titre et la zone d’édition de la publication sont inamovibles, mais vous pouvez déplacer toutes les autres sections par simple glisser/déposer. Vous pouvez également les fermer/ouvrir en cliquant sur la barre de titre de chaque section. Utilisez l’onglet « Options de l’écran » pour masquer d’autres sections (Extrait, Envoyer des rétroliens, Champs personnalisés, Commentaires, Slug, Auteur ou autrice) ou pour choisir un affichage sur une ou deux colonnes pour cet écran." @@ -10459,11 +10608,11 @@ msgid "To use a background image, simply upload it or choose an image that has a msgstr "Pour utiliser une image de fond, téléversez-la simplement ou choisissez une image déjà téléversée dans votre médiathèque en cliquant sur le bouton « Choisir l’image ». Vous pouvez n’afficher qu’une occurrence de l’image, ou la répéter afin de remplir l’écran. Vous pouvez choisir de garder le fond en place quand vous faites défiler le contenu, ou au contraire faire que le fond défile en même temps." #. translators: 1: URL to browser uploader, 2: Additional link attributes. -#: wp-admin/includes/media.php:3045 +#: wp-admin/includes/media.php:3049 msgid "You are using the multi-file uploader. Problems? Try the browser uploader instead." msgstr "Vous utilisez l’outil de téléversement multi-fichiers. Si vous rencontrez des problèmes, essayez la méthode du navigateur à la place." -#: wp-admin/async-upload.php:71 +#: wp-admin/async-upload.php:68 msgctxt "media item" msgid "Edit" msgstr "Modifier" @@ -10563,7 +10712,7 @@ msgid "Search engine visibility" msgstr "Visibilité par les moteurs de recherche" #. translators: 1: WordPress version, 2: URL to About screen. -#: wp-admin/includes/update-core.php:1676 wp-admin/update-core.php:923 +#: wp-admin/includes/update-core.php:1702 wp-admin/update-core.php:923 msgid "Welcome to WordPress %1$s. You will be redirected to the About WordPress screen. If not, click here." msgstr "Bienvenue sur WordPress %1$s. Vous allez être redirigé vers l’écran « À propos » de WordPress. Si ce n’est pas le cas, cliquez ici." @@ -10642,28 +10791,28 @@ msgid "Contextual Help Tab" msgstr "Onglet d’aide contextuelle" #. translators: Hidden accessibility text. -#: wp-admin/includes/class-wp-comments-list-table.php:927 +#: wp-admin/includes/class-wp-comments-list-table.php:931 msgid "Select comment" msgstr "Sélectionnez un commentaire" #. translators: %s: URL to Categories to Tags Converter tool. -#: wp-admin/edit-tags.php:653 +#: wp-admin/edit-tags.php:656 msgid "Tags can be selectively converted to categories using the tag to category converter." msgstr "Les étiquettes peuvent être converties de manière sélective en catégories via le convertisseur étiquettes vers catégories." -#: wp-admin/edit-tags.php:260 +#: wp-admin/edit-tags.php:263 msgid "You can delete Link Categories in the Bulk Action pull-down, but that action does not delete the links within the category. Instead, it moves them to the default Link Category." msgstr "Vous pouvez supprimer des catégories de liens avec la liste déroulante « Actions groupées », mais cette action ne supprime pas les liens contenus dans la catégorie. Au lieu de cela, ils sont déplacés dans la catégorie de liens par défaut." -#: wp-admin/edit-form-advanced.php:324 -msgid "Creating a Page is very similar to creating a Post, and the screens can be customized in the same way using drag and drop, the Screen Options tab, and expanding/collapsing boxes as you choose. This screen also has the distraction-free writing space, available in both the Visual and Text modes via the Fullscreen buttons. The Page editor mostly works the same as the Post editor, but there are some Page-specific features in the Page Attributes box." -msgstr "Le processus de création d’une page reste très proche de celui d’un article, et les écrans respectifs peuvent être personnalisés de la même manière, par le biais de glisser/déposer, de l’onglet « Option de l’écran », et en ouvrant/fermant les sections selon vos besoins. Cet écran dispose également du mode « aucune distraction », tant dans le mode Visuel que dans le mode Texte, via les boutons « Plein écran ». L’éditeur de page fonctionne globalement comme celui des articles, mais dispose de certaines spécificités, disponibles dans la section « Attributs de page » :" +#: wp-admin/edit-form-advanced.php:317 +msgid "Creating a Page is very similar to creating a Post, and the screens can be customized in the same way using drag and drop, the Screen Options tab, and expanding/collapsing boxes as you choose. This screen also has the distraction-free writing space, available in both the Visual and Code modes via the Fullscreen buttons. The Page editor mostly works the same as the Post editor, but there are some Page-specific features in the Page Attributes box." +msgstr "Le processus de création d’une page reste très proche de celui d’un article, et les écrans respectifs peuvent être personnalisés de la même manière, par le biais de glisser/déposer, de l’onglet « Option de l’écran », et en ouvrant/fermant les sections selon vos besoins. Cet écran dispose également du mode « aucune distraction », tant dans le mode Visuel que dans le mode Code, via les boutons « Plein écran ». L’éditeur de page fonctionne globalement comme celui des articles, mais dispose de certaines spécificités, disponibles dans la section « Attributs de page »." #: wp-admin/includes/class-custom-image-header.php:595 msgid "You can select an image to be shown at the top of your site by uploading from your computer or choosing from your media library. After selecting an image you will be able to crop it." msgstr "Vous pouvez choisir une image d’entête personnalisée en la téléversant depuis votre ordinateur ou en la choisissant dans votre médiathèque. Après avoir sélectionné l’image, vous pourrez la recadrer." -#: wp-admin/menu-header.php:290 +#: wp-admin/menu-header.php:294 msgid "Skip to main content" msgstr "Aller au contenu principal" @@ -10690,7 +10839,7 @@ msgstr "Ou choisissez une image dans votre médiathèque :" msgid "Select Image" msgstr "Sélectionnez une image" -#: wp-admin/includes/class-wp-theme-install-list-table.php:408 +#: wp-admin/includes/class-wp-theme-install-list-table.php:406 #: wp-admin/theme-install.php:603 msgid "Collapse" msgstr "Réduire" @@ -10699,11 +10848,6 @@ msgstr "Réduire" msgid "If you do not want a header image to be displayed on your site at all, click the “Remove Header Image” button at the bottom of the Header Image section of this page. If you want to re-enable the header image later, you just have to select one of the other image options and click “Save Changes”." msgstr "Si vous ne souhaitez pas que votre site utilise une image d’entête, cliquez sur le bouton « Retirer l’image d’entête » en bas de la section « Image d’entête » de cette page. Si vous souhaitez réactiver l’image d’entête, il vous suffit de sélectionner l’une des autres options d’images, et de la valider en cliquant sur « Enregistrer les modifications »." -#: wp-admin/includes/class-wp-theme-install-list-table.php:329 -#: wp-admin/includes/class-wp-theme-install-list-table.php:488 -msgid "This theme is already installed and is up to date" -msgstr "Ce thème est déjà installé et à jour" - #: wp-admin/includes/plugin-install.php:1032 msgctxt "plugin" msgid "Installed" @@ -10721,15 +10865,10 @@ msgstr "Prévisualisation et installation" msgid "Once you have generated a list of themes, you can preview and install any of them. Click on the thumbnail of the theme you are interested in previewing. It will open up in a full-screen Preview page to give you a better idea of how that theme will look." msgstr "Une fois que vous avez généré une liste de thèmes, vous pouvez les prévisualiser et les installer. Cliquez sur la miniature du thème que vous souhaitez prévisualiser. Cela ouvrira une page de prévisualisation en plein écran, afin de vous donner une meilleure idée de l’aspect de ce thème." -#: wp-admin/includes/media.php:3062 +#: wp-admin/includes/media.php:3066 msgid "You are using the browser’s built-in file uploader. The WordPress uploader includes multiple file selection and drag and drop capability. Switch to the multi-file uploader." msgstr "Vous utilisez l’outil de téléversement du navigateur. Le nouvel outil de téléversement de WordPress inclut la possibilité de téléverser plusieurs fichiers à la fois par glisser/déposer. Passer au nouvel outil de téléversement." -#. translators: %s: Theme name. -#: wp-admin/includes/class-wp-theme-install-list-table.php:349 -msgid "Preview %s" -msgstr "Prévisualisation de %s" - #: wp-admin/tools.php:50 msgid "The Categories and Tags Converter link on this screen will take you to the Import screen, where that Converter is one of the plugins you can install. Once that plugin is installed, the Activate Plugin & Run Importer link will take you to a screen where you can choose to convert tags into categories or vice versa." msgstr "Le lien « Convertisseur de catégories-étiquettes » vous mènera à la page d’import, où ledit convertisseur est l’une des extensions que vous pouvez installer. Une fois installée, le lien « Lancer l’outil d’importation » vous mènera à l’écran d’où vous pourrez choisir de lancer une conversion dans un sens ou dans l’autre." @@ -10759,7 +10898,7 @@ msgstr "Vous pouvez choisir à partir des images d’entête par défaut du thè msgid "This screen is used to customize the header section of your theme." msgstr "Cet écran est utilisé pour personnaliser la section d’entête de votre thème." -#: wp-admin/install.php:304 wp-admin/install.php:317 +#: wp-admin/install.php:328 wp-admin/install.php:341 msgid "Configuration Error" msgstr "Erreur de configuration" @@ -10771,8 +10910,8 @@ msgstr "Revenez à l’outil de téléversement du navigateur e msgid "User deleted." msgstr "Compte supprimé." -#: wp-admin/includes/class-core-upgrader.php:40 wp-admin/includes/file.php:1723 -#: wp-admin/includes/file.php:1905 +#: wp-admin/includes/class-core-upgrader.php:40 wp-admin/includes/file.php:1741 +#: wp-admin/includes/file.php:1923 msgid "Could not copy files. You may have run out of disk space." msgstr "Impossible de copier les fichiers. Il se pourrait que vous manquiez de place." @@ -10788,7 +10927,7 @@ msgstr "Rechercher des thèmes par mot-clé." msgid "In all likelihood, these items were supplied to you by your web host. If you do not have this information, then you will need to contact them before you can continue. If you are ready…" msgstr "Vous devriez normalement avoir reçu ces informations de la part de votre hébergeur. Si vous ne les avez pas, il vous faudra contacter votre hébergeur afin de continuer. Si vous avez tout le nécessaire, alors…" -#: wp-admin/theme-editor.php:269 +#: wp-admin/theme-editor.php:274 msgid "This theme is broken." msgstr "Le thème est cassé." @@ -10806,9 +10945,9 @@ msgid "Customize “%s”" msgstr "Personnaliser « %s »" #: wp-admin/install.php:161 wp-admin/user-edit.php:498 -#: wp-admin/user-edit.php:546 wp-admin/user-new.php:538 -#: wp-admin/user-new.php:542 wp-admin/user-new.php:589 -#: wp-admin/user-new.php:609 +#: wp-admin/user-edit.php:546 wp-admin/user-new.php:543 +#: wp-admin/user-new.php:547 wp-admin/user-new.php:594 +#: wp-admin/user-new.php:614 msgid "(required)" msgstr "(nécessaire)" @@ -10830,7 +10969,7 @@ msgstr "https://fr.wordpress.org/about/" #. translators: Hidden accessibility text. #: wp-admin/includes/class-wp-list-table.php:1427 -#: wp-admin/includes/nav-menu.php:811 wp-admin/includes/nav-menu.php:1106 +#: wp-admin/includes/nav-menu.php:812 wp-admin/includes/nav-menu.php:1107 #: wp-admin/update-core.php:501 wp-admin/update-core.php:625 #: wp-admin/update-core.php:677 wp-admin/update-core.php:801 msgid "Select All" @@ -10849,7 +10988,7 @@ msgstr "Mis en ligne en privé" msgid "Save as Pending" msgstr "Mettre en attente" -#: wp-admin/includes/media.php:1418 wp-admin/includes/media.php:3006 +#: wp-admin/includes/media.php:1418 wp-admin/includes/media.php:3010 msgid "Enter a link URL or click above for presets." msgstr "Saisissez une adresse de lien ou cliquez ci-dessus pour les liens prédéfinis." @@ -10861,13 +11000,13 @@ msgstr "URL du lien" msgid "No comments yet." msgstr "Aucun commentaire pour l’instant." -#: wp-admin/includes/class-wp-theme-install-list-table.php:523 +#: wp-admin/includes/class-wp-theme-install-list-table.php:520 #: wp-admin/includes/class-wp-themes-list-table.php:281 #: wp-admin/includes/plugin-install.php:660 msgid "Version:" msgstr "Version : " -#: wp-admin/includes/class-wp-theme-install-list-table.php:406 +#: wp-admin/includes/class-wp-theme-install-list-table.php:404 #: wp-admin/theme-install.php:70 wp-admin/theme-install.php:601 msgid "Collapse Sidebar" msgstr "Réduire la colonne latérale" @@ -10883,7 +11022,7 @@ msgid "All" msgstr "Tout" #. translators: %s: Number of words. -#: wp-admin/edit-form-advanced.php:639 +#: wp-admin/edit-form-advanced.php:638 msgid "Word count: %s" msgstr "Nombre de mots : %s" @@ -10950,14 +11089,11 @@ msgstr "Une nouvelle version pour %1$s est disponible. Aff msgid "By %s." msgstr "par %s." -#: wp-admin/includes/meta-boxes.php:898 wp-admin/includes/template.php:508 +#: wp-admin/includes/meta-boxes.php:898 wp-admin/includes/template.php:464 +#: wp-admin/includes/template.php:508 msgid "Add Comment" msgstr "Ajouter un commentaire" -#: wp-admin/includes/template.php:464 -msgid "Add New Comment" -msgstr "Ajouter un commentaire" - #. Author URI of the plugin #: hello.php msgid "http://ma.tt/" @@ -10985,7 +11121,7 @@ msgstr "Bienvenue — Affiche des liens pour certaines des msgid "There is a new version of %1$s available. View version %4$s details. Automatic update is unavailable for this theme." msgstr "Une nouvelle version pour %1$s est disponible. Afficher les détails de la version %4$s. La mise à jour automatique n’est pas disponible pour ce thème." -#: wp-admin/install.php:108 wp-admin/install.php:368 +#: wp-admin/install.php:108 wp-admin/install.php:392 msgctxt "Howdy" msgid "Welcome" msgstr "Bienvenue" @@ -11061,22 +11197,22 @@ msgstr "Mo (Laisser vide pour utiliser la valeur par défaut du réseau)" #. translators: New admin email address notification email subject. %s: Site #. title. -#: wp-admin/includes/misc.php:1543 +#: wp-admin/includes/misc.php:1520 msgid "[%s] New Admin Email Address" msgstr "[%s] Nouvelle adresse e-mail d’administration" -#: wp-admin/includes/class-wp-debug-data.php:595 -#: wp-admin/includes/class-wp-debug-data.php:1133 -#: wp-admin/includes/class-wp-debug-data.php:1244 -#: wp-admin/includes/class-wp-debug-data.php:1403 -#: wp-admin/includes/class-wp-debug-data.php:1412 -#: wp-admin/includes/class-wp-debug-data.php:1421 -#: wp-admin/includes/class-wp-debug-data.php:1430 -#: wp-admin/includes/class-wp-debug-data.php:1489 -#: wp-admin/includes/class-wp-debug-data.php:1494 -#: wp-admin/includes/class-wp-debug-data.php:1504 -#: wp-admin/includes/class-wp-debug-data.php:1509 -#: wp-admin/includes/class-wp-debug-data.php:1534 +#: wp-admin/includes/class-wp-debug-data.php:623 +#: wp-admin/includes/class-wp-debug-data.php:1161 +#: wp-admin/includes/class-wp-debug-data.php:1272 +#: wp-admin/includes/class-wp-debug-data.php:1431 +#: wp-admin/includes/class-wp-debug-data.php:1440 +#: wp-admin/includes/class-wp-debug-data.php:1449 +#: wp-admin/includes/class-wp-debug-data.php:1458 +#: wp-admin/includes/class-wp-debug-data.php:1517 +#: wp-admin/includes/class-wp-debug-data.php:1522 +#: wp-admin/includes/class-wp-debug-data.php:1532 +#: wp-admin/includes/class-wp-debug-data.php:1537 +#: wp-admin/includes/class-wp-debug-data.php:1562 msgid "Disabled" msgstr "Désactivé" @@ -11137,7 +11273,7 @@ msgstr "C’est parti !" msgid "Table prefix (if you want to run more than one WordPress in a single database)" msgstr "Préfixe de table (si vous souhaitez avoir plusieurs WordPress sur une même base de données)" -#: wp-admin/includes/class-wp-debug-data.php:1600 wp-admin/setup-config.php:175 +#: wp-admin/includes/class-wp-debug-data.php:1628 wp-admin/setup-config.php:175 msgid "Database host" msgstr "Hôte de base de données" @@ -11145,11 +11281,11 @@ msgstr "Hôte de base de données" msgid "Database password" msgstr "Mot de passe de base de données" -#: wp-admin/includes/class-wp-debug-data.php:1595 wp-admin/setup-config.php:173 +#: wp-admin/includes/class-wp-debug-data.php:1623 wp-admin/setup-config.php:173 msgid "Database username" msgstr "Identifiant MySQL" -#: wp-admin/includes/class-wp-debug-data.php:1605 wp-admin/setup-config.php:172 +#: wp-admin/includes/class-wp-debug-data.php:1633 wp-admin/setup-config.php:172 msgid "Database name" msgstr "Nom de la base de données" @@ -11224,7 +11360,7 @@ msgstr "Vous pouvez exporter le contenu de votre site dans un fichier, afin de l msgid "Failed to repair the %1$s table. Error: %2$s" msgstr "Impossible de réparer la table %1$s. Erreur : %2$s" -#: wp-admin/user-new.php:276 +#: wp-admin/user-new.php:281 msgid "New users will receive an email letting them know they’ve been added as a user for your site. This email will also contain their password. Check the box if you do not want the user to receive a welcome email." msgstr "Les nouveaux comptes reçoivent un e-mail les informant qu’ils ont été ajoutés à votre site. Cet e-mail contient également leur mot de passe. Cochez la case si vous ne voulez pas envoyer ce message de bienvenue." @@ -11245,7 +11381,7 @@ msgid "In previous versions of WordPress, all importers were built-in. They have msgstr "Dans les versions précédentes de WordPress, tous les outils d’importation étaient directement inclus. Nous les avons convertis en extensions, car la plupart des gens ne s’en servent que très rarement, voire une seule fois." #. translators: %s: URL to view the autosave. -#: wp-admin/edit-form-advanced.php:253 +#: wp-admin/edit-form-advanced.php:246 msgid "There is an autosave of this post that is more recent than the version below. View the autosave" msgstr "Une sauvegarde automatique existe pour cette publication ; elle est plus récente que la version affichée ci-dessous. Afficher cette sauvegarde automatique." @@ -11276,11 +11412,11 @@ msgstr "Réparations effectuées. Veuillez retirer la ligne suivante de votre fi msgid "The %1$s table is not okay. It is reporting the following error: %2$s. WordPress will attempt to repair this table…" msgstr "La table %1$s est dans un mauvais état. Elle renvoie l’erreur suivante : %2$s. WordPress va tenter de la réparer…" -#: wp-admin/user-new.php:449 +#: wp-admin/user-new.php:454 msgid "Enter the email address or username of an existing user on this network to invite them to this site. That person will be sent an email asking them to confirm the invite." msgstr "Pour inviter un compte de ce réseau sur ce site, saisissez son adresse e-mail ou son identifiant. Cette personne recevra alors un message lui proposant de confirmer son ajout." -#: wp-admin/user-new.php:445 +#: wp-admin/user-new.php:450 msgid "Enter the email address of an existing user on this network to invite them to this site. That person will be sent an email asking them to confirm the invite." msgstr "Saisissez l’adresse e-mail d’un compte existant sur votre réseau, afin de l’inviter sur ce site. Cette personne recevra un message lui demandant de confirmer l’invitation." @@ -11290,13 +11426,13 @@ msgstr "Afficher la barre d’outils lorsque vous visitez le site" #. translators: %s: HelpHub URL. #. translators: %s: Documentation URL. -#: wp-admin/about.php:75 wp-admin/about.php:358 +#: wp-admin/about.php:76 wp-admin/about.php:368 msgid "For more information, see the release notes." msgstr "Pour plus d’informations, consultez les notes de publication." #. translators: 1: WordPress version number, 2: Plural number of bugs. More #. than one security issue. -#: wp-admin/about.php:352 +#: wp-admin/about.php:362 msgid "Version %1$s addressed some security issues and fixed %2$s bug." msgid_plural "Version %1$s addressed some security issues and fixed %2$s bugs." msgstr[0] "La version %1$s a corrigé quelques problèmes de sécurité et %2$s bogue." @@ -11304,37 +11440,37 @@ msgstr[1] "La version %1$s a corrigé quelques problèmes de s #. translators: 1: WordPress version number, 2: Plural number of bugs. Singular #. security issue. -#: wp-admin/about.php:346 +#: wp-admin/about.php:356 msgid "Version %1$s addressed a security issue and fixed %2$s bug." msgid_plural "Version %1$s addressed a security issue and fixed %2$s bugs." msgstr[0] "La version %1$s a corrigé un problème de sécurité et %2$s bogue." msgstr[1] "La version %1$s a corrigé un problème de sécurité et %2$s bogues." #. translators: 1: WordPress version number, 2: Plural number of bugs. -#: wp-admin/about.php:63 wp-admin/about.php:340 +#: wp-admin/about.php:64 wp-admin/about.php:350 msgid "Version %1$s addressed %2$s bug." msgid_plural "Version %1$s addressed %2$s bugs." msgstr[0] "La version %1$s a corrigé %2$s bogue." msgstr[1] "La version %1$s a corrigé %2$s bogues." #. translators: %s: WordPress version number. -#: wp-admin/about.php:337 +#: wp-admin/about.php:347 msgid "Version %s addressed some security issues." msgstr "La version %s a corrigé quelques problèmes de sécurité." -#: wp-admin/about.php:331 +#: wp-admin/about.php:59 wp-admin/about.php:341 msgid "Maintenance and Security Release" msgstr "Mise à jour de maintenance et de sécurité" -#: wp-admin/about.php:328 +#: wp-admin/about.php:338 msgid "Security Release" msgstr "Mise à jour de sécurité" -#: wp-admin/about.php:325 +#: wp-admin/about.php:335 msgid "Maintenance Release" msgstr "Mise à jour de maintenance" -#: wp-admin/about.php:49 wp-admin/contribute.php:34 wp-admin/credits.php:37 +#: wp-admin/about.php:50 wp-admin/contribute.php:34 wp-admin/credits.php:37 #: wp-admin/freedoms.php:40 wp-admin/privacy.php:34 msgid "What’s New" msgstr "Nouveautés" @@ -11344,7 +11480,7 @@ msgid "This screen allows you to choose your permalink structure. You can choose msgstr "Cet écran vous permet de choisir la structure de permalien par défaut. Vous pouvez choisir les réglages les plus courants, ou créer votre propre structure de liens." #. translators: 1: WordPress version, 2: URL to About screen. -#: wp-admin/includes/update-core.php:1684 wp-admin/update-core.php:931 +#: wp-admin/includes/update-core.php:1710 wp-admin/update-core.php:931 msgid "Welcome to WordPress %1$s. Learn more." msgstr "Bienvenue sur WordPress %1$s. En savoir plus." @@ -11352,11 +11488,11 @@ msgstr "Bienvenue sur WordPress %1$s. En savoir plus." msgid "You can upload media files here without creating a post first. This allows you to upload files to use with posts and pages later and/or to get a web link for a particular file that you can share. There are three options for uploading files:" msgstr "Vous pouvez ici téléverser des fichiers sans avoir besoin de créer un publication au préalable. Ceci vous permet de téléverser des fichiers qui seront utilisables par les articles et les pages ultérieurement et/ou seront utilisés via un lien internet pour partager un fichier particulier. Il y a 3 méthodes pour téléverser des fichiers :" -#: wp-admin/edit-tags.php:296 +#: wp-admin/edit-tags.php:299 msgid "Adding Tags" msgstr "Ajout d’étiquettes" -#: wp-admin/edit-tags.php:296 +#: wp-admin/edit-tags.php:299 msgid "Adding Categories" msgstr "Ajout de catégories" @@ -11418,28 +11554,28 @@ msgstr "Ajout d’extensions" msgid "Adding Themes" msgstr "Ajout de thèmes" -#: wp-admin/user-new.php:299 +#: wp-admin/user-new.php:304 msgid "Subscribers can read comments/comment/receive newsletters, etc. but cannot create regular site content." msgstr "Les abonnés et abonnées peuvent lire les commentaires/commenter/recevoir les newsletters… mais ne peuvent pas créer de contenu sur le site." -#: wp-admin/user-new.php:301 +#: wp-admin/user-new.php:306 msgid "Authors can publish and manage their own posts, and are able to upload files." msgstr "Les auteurs ou autrices peuvent publier et gérer leurs propres articles, ils peuvent également téléverser des fichiers." -#: wp-admin/user-new.php:297 +#: wp-admin/user-new.php:302 msgid "Here is a basic overview of the different user roles and the permissions associated with each one:" msgstr "Voici un rapide survol des différents rôles assignables aux comptes, et des droits qui leurs sont associés :" -#: wp-admin/user-new.php:296 +#: wp-admin/user-new.php:301 msgid "User Roles" msgstr "Rôles des comptes" -#: wp-admin/user-new.php:283 -msgid "Remember to click the Add New User button at the bottom of this screen when you are finished." +#: wp-admin/user-new.php:288 +msgid "Remember to click the Add User button at the bottom of this screen when you are finished." msgstr "N’oubliez pas de cliquer sur le bouton « Ajouter un compte », en bas de cet écran, quand vous aurez terminé." -#: wp-admin/user-new.php:272 -msgid "To add a new user to your site, fill in the form on this screen and click the Add New User button at the bottom." +#: wp-admin/user-new.php:277 +msgid "To add a new user to your site, fill in the form on this screen and click the Add User button at the bottom." msgstr "Pour ajouter un nouveau compte à votre site, remplissez le formulaire de cet écran et cliquez sur le bouton « Ajouter un compte » en bas de l’écran." #: wp-admin/options-permalink.php:53 @@ -11498,11 +11634,11 @@ msgstr "Un clic sur Sélectionner des fichiers ouvre la fenêtr msgid "Drag and drop your files into the area below. Multiple files are allowed." msgstr "Glissez/déposez vos fichiers dans la zone ci-dessous. Vous pouvez en déposer plusieurs à la fois." -#: wp-admin/edit-tags.php:256 +#: wp-admin/edit-tags.php:259 msgid "You can assign keywords to your posts using tags. Unlike categories, tags have no hierarchy, meaning there is no relationship from one tag to another." msgstr "Vous pouvez assigner des étiquettes à vos articles via la section dédiée. Au contraire des catégories, les étiquettes n’ont aucune hiérarchie, ce qui signifie qu’elles ne peuvent pas être liées entre elles." -#: wp-admin/edit-tags.php:254 +#: wp-admin/edit-tags.php:257 msgid "You can create groups of links by using Link Categories. Link Category names must be unique and Link Categories are separate from the categories you use for posts." msgstr "Vous pouvez créer des groupes de liens en utilisant les catégories de liens. Le nom d’une catégorie de liens doit être unique, et les catégories de liens ne sont pas les mêmes que les catégories de vos articles." @@ -11530,7 +11666,7 @@ msgstr "Vous pouvez également réaliser les mêmes sortes d’actions, comme r msgid "Managing pages is very similar to managing posts, and the screens can be customized in the same way." msgstr "La gestion des pages est très proche de celle des articles, et les écrans peuvent être personnalisés de la même manière." -#: wp-admin/edit-form-advanced.php:323 wp-admin/edit.php:311 +#: wp-admin/edit-form-advanced.php:316 wp-admin/edit.php:311 msgid "Pages are similar to posts in that they have a title, body text, and associated metadata, but they are different in that they are not part of the chronological blog stream, kind of like permanent posts. Pages are not categorized or tagged, but can have a hierarchy. You can nest pages under other pages by making one the “Parent” of the other, creating a group of pages." msgstr "Les pages sont comme des articles, en cela qu’elles ont un titre, un contenu et des métadonnées associées ; mais elles diffèrent en cela qu’elles ne font pas partie du flux chronologique du blog - un peu comme des articles permanents. Les pages ne sont pas catégorisées et ne reçoivent pas d’étiquettes, mais peuvent disposer d’une hiérarchie. En effet, vous pouvez imbriquer des pages sous d’autres pages, faisant de ces dernières les « parentes » des premières, créant ainsi un groupement de pages." @@ -11599,20 +11735,15 @@ msgstr "Modification Rapide vous donne un accès rapide aux mé msgid "Edit takes you to the editing screen for that post. You can also reach that screen by clicking on the post title." msgstr "Modifier vous envoie sur l’écran de modification de cette publication. Vous pouvez également vous rendre sur cet écran en cliquant sur le titre de la publication." -#: wp-admin/user-new.php:275 +#: wp-admin/user-new.php:280 msgid "Because this is a multisite installation, you may add accounts that already exist on the Network by specifying a username or email, and defining a role. For more options, such as specifying a password, you have to be a Network Administrator and use the hover link under an existing user’s name to Edit the user profile under Network Admin > All Users." msgstr "Parce qu’il s’agit d’une installation multisite, vous pouvez ajouter des comptes qui existent déjà sur le Réseau, en indiquant un identifiant ou une adresse e-mail, et en assignant un rôle. Pour avoir plus d’options, telle que le choix du mot de passe, vous devez être Administrateur ou administratrice du Réseau, et utiliser les liens qui apparaissent au survol sous le nom de l’utilisateur ou de l’utilisatrice pour modifier son compte, depuis l’écran « Tous les comptes »." -#. translators: %s: Version number. -#: wp-admin/about.php:93 -msgid "Welcome to WordPress %s" -msgstr "Bienvenue sur WordPress %s" - -#: wp-admin/about.php:312 +#: wp-admin/about.php:322 msgid "Go to Dashboard → Home" msgstr "Aller sur l’accueil" -#: wp-admin/about.php:305 +#: wp-admin/about.php:315 msgid "Go to Dashboard → Updates" msgstr "Aller sur Tableau de bord → Mises à jour" @@ -11621,7 +11752,7 @@ msgid "Profile updated." msgstr "Profil mis à jour." #. translators: 1: Site title, 2: Site URL, 3: User role, 4: Activation URL. -#: wp-admin/user-new.php:124 +#: wp-admin/user-new.php:127 msgid "" "Hi,\n" "\n" @@ -11638,7 +11769,7 @@ msgstr "" "Veuillez cliquer sur le lien suivant pour confirmer l’invitation :\n" "%4$s" -#: wp-admin/credits.php:136 +#: wp-admin/credits.php:138 msgid "Core Developer" msgstr "Développeur cœur" @@ -11658,7 +11789,7 @@ msgstr "L’archive n’a pas pu être installée." msgid "Attachment Post URL" msgstr "Adresse de la page du fichier joint" -#: wp-admin/menu.php:80 +#: wp-admin/menu.php:85 msgctxt "admin menu" msgid "All Links" msgstr "Tous les liens" @@ -11713,19 +11844,19 @@ msgid "Update %2$s or learn h msgstr "Mettez %2$s à jour, ou apprenez à naviguer sereinement" #. translators: 1: Link start tag, 2: Link end tag, 3: Width, 4: Height. -#: wp-admin/includes/media.php:3094 +#: wp-admin/includes/media.php:3098 msgid "Scale images to match the large size selected in %1$simage options%2$s (%3$d × %4$d)." msgstr "Redimensionner les images pour correspondre à la taille large définie dans les %1$sréglages des médias%2$s (%3$d × %4$d)." -#: wp-admin/includes/media.php:2954 +#: wp-admin/includes/media.php:2958 msgid "Audio, Video, or Other File" msgstr "Audio, vidéo ou un autre format" -#: wp-admin/includes/media.php:2423 +#: wp-admin/includes/media.php:2428 msgid "Insert media from another website" msgstr "Insérer un média depuis un autre site" -#: wp-admin/includes/file.php:2489 +#: wp-admin/includes/file.php:2507 msgid "Error: Could not connect to the server. Please verify the settings are correct." msgstr "Erreur : connexion au serveur impossible, veuillez vérifier que les réglages sont corrects." @@ -11741,50 +11872,22 @@ msgstr "Vous pouvez utiliser les contrôles suivants pour organiser l’écran d msgid "The left-hand navigation menu provides links to all of the WordPress administration screens, with submenu items displayed on hover. You can minimize this menu to a narrow icon strip by clicking on the Collapse Menu arrow at the bottom." msgstr "La navigation située à gauche de l’écran fournit tous les liens pour accéder à la console d’administration de WordPress, avec les sous-menus qui s’affichent au survol. Vous pouvez réduire ce menu à ses seules icônes en cliquant sur la flèche de repliement située en bas du menu." -#: wp-admin/comment.php:63 wp-admin/edit-comments.php:208 -#: wp-admin/edit-form-advanced.php:344 wp-admin/edit-link-form.php:66 -#: wp-admin/edit-tags.php:268 wp-admin/edit.php:252 wp-admin/edit.php:309 -#: wp-admin/erase-personal-data.php:23 wp-admin/export-personal-data.php:23 -#: wp-admin/export.php:51 wp-admin/import.php:24 -#: wp-admin/includes/class-custom-background.php:99 -#: wp-admin/includes/class-custom-image-header.php:108 -#: wp-admin/includes/class-wp-screen.php:856 wp-admin/includes/ms.php:1149 -#: wp-admin/index.php:44 wp-admin/link-manager.php:57 wp-admin/media-new.php:49 -#: wp-admin/my-sites.php:44 wp-admin/nav-menus.php:722 -#: wp-admin/nav-menus.php:763 wp-admin/options-discussion.php:24 -#: wp-admin/options-general.php:53 wp-admin/options-media.php:34 -#: wp-admin/options-permalink.php:23 wp-admin/options-privacy.php:38 -#: wp-admin/options-reading.php:25 wp-admin/options-writing.php:23 -#: wp-admin/plugin-editor.php:133 wp-admin/plugin-install.php:96 -#: wp-admin/plugins.php:563 wp-admin/revision.php:153 -#: wp-admin/site-health.php:80 wp-admin/theme-editor.php:28 -#: wp-admin/theme-install.php:123 wp-admin/themes.php:143 -#: wp-admin/update-core.php:996 wp-admin/upload.php:178 wp-admin/upload.php:368 -#: wp-admin/user-edit.php:71 wp-admin/user-new.php:288 wp-admin/users.php:34 -#: wp-admin/widgets-form.php:43 wp-admin/network/index.php:34 -#: wp-admin/network/settings.php:49 wp-admin/network/site-new.php:23 -#: wp-admin/network/sites.php:29 wp-admin/network/themes.php:312 -#: wp-admin/network/upgrade.php:22 wp-admin/network/user-new.php:20 -#: wp-admin/network/users.php:229 -msgid "Overview" -msgstr "Vue d’ensemble" - #. translators: %s: Number of pending updates. #. translators: %s: Number of available updates. -#: wp-admin/menu.php:49 wp-admin/network/menu.php:30 +#: wp-admin/menu.php:54 wp-admin/network/menu.php:35 msgid "Updates %s" msgstr "Mises à jour %s" -#: wp-admin/menu.php:297 wp-admin/network/menu.php:105 +#: wp-admin/menu.php:308 wp-admin/network/menu.php:110 msgid "Installed Plugins" msgstr "Extensions installées" #. translators: %s: Number of available plugin updates. -#: wp-admin/menu.php:295 wp-admin/network/menu.php:88 +#: wp-admin/menu.php:306 wp-admin/network/menu.php:93 msgid "Plugins %s" msgstr "Extensions %s" -#: wp-admin/menu.php:319 wp-admin/network/menu.php:56 +#: wp-admin/menu.php:330 wp-admin/network/menu.php:61 msgid "All Users" msgstr "Tous les comptes" @@ -11793,14 +11896,14 @@ msgid "Confirm Deletion" msgstr "Confirmer cette action" #: wp-admin/includes/class-wp-users-list-table.php:376 -#: wp-admin/user-edit.php:451 wp-admin/user-new.php:473 -#: wp-admin/user-new.php:634 wp-admin/network/site-users.php:325 -#: wp-admin/network/site-users.php:363 +#: wp-admin/user-edit.php:451 wp-admin/user-new.php:478 +#: wp-admin/user-new.php:639 wp-admin/network/site-users.php:325 +#: wp-admin/network/site-users.php:366 msgid "Role" msgstr "Rôle" -#: wp-admin/user-edit.php:271 wp-admin/user-new.php:388 -#: wp-admin/user-new.php:442 wp-admin/user-new.php:503 wp-admin/users.php:787 +#: wp-admin/user-edit.php:271 wp-admin/user-new.php:393 +#: wp-admin/user-new.php:447 wp-admin/user-new.php:508 wp-admin/users.php:787 #: wp-admin/network/site-users.php:316 msgid "Add Existing User" msgstr "Ajouter un compte existant" @@ -11821,22 +11924,12 @@ msgid "Changed roles." msgstr "Rôles modifiés." #: wp-admin/comment.php:175 wp-admin/plugins.php:346 wp-admin/plugins.php:360 -#: wp-admin/theme-editor.php:335 wp-admin/includes/network.php:473 +#: wp-admin/theme-editor.php:340 wp-admin/includes/network.php:473 #: wp-admin/network/themes.php:140 wp-admin/network/themes.php:151 msgid "Caution:" msgstr "Attention :" -#: wp-admin/menu.php:321 wp-admin/menu.php:323 wp-admin/menu.php:331 -#: wp-admin/menu.php:333 wp-admin/user-edit.php:269 wp-admin/user-new.php:264 -#: wp-admin/user-new.php:386 wp-admin/user-new.php:510 -#: wp-admin/user-new.php:662 wp-admin/users.php:781 -#: wp-admin/network/menu.php:57 wp-admin/network/site-users.php:350 -#: wp-admin/network/site-users.php:377 wp-admin/network/user-new.php:100 -#: wp-admin/network/user-new.php:107 wp-admin/network/users.php:292 -msgid "Add New User" -msgstr "Ajouter un compte" - -#: wp-admin/user-new.php:377 wp-admin/network/site-users.php:243 +#: wp-admin/user-new.php:382 wp-admin/network/site-users.php:243 #: wp-admin/network/user-new.php:91 wp-admin/network/users.php:272 msgid "User added." msgstr "Compte ajouté." @@ -11854,13 +11947,13 @@ msgstr "Super-admin" #. translators: %s: Theme version. #: wp-admin/includes/ajax-actions.php:4641 #: wp-admin/includes/ajax-actions.php:4684 -#: wp-admin/includes/class-wp-debug-data.php:756 -#: wp-admin/includes/class-wp-debug-data.php:932 -#: wp-admin/includes/class-wp-debug-data.php:1319 +#: wp-admin/includes/class-wp-debug-data.php:784 +#: wp-admin/includes/class-wp-debug-data.php:960 +#: wp-admin/includes/class-wp-debug-data.php:1347 #: wp-admin/includes/class-wp-plugins-list-table.php:1172 #: wp-admin/includes/update.php:250 wp-admin/includes/update.php:290 #: wp-admin/index.php:113 -#: wp-admin/includes/class-wp-ms-themes-list-table.php:730 +#: wp-admin/includes/class-wp-ms-themes-list-table.php:736 msgid "Version %s" msgstr "Version %s" @@ -11878,37 +11971,37 @@ msgstr[1] "À mettre à jour (%s)" msgid "Deactivate" msgstr "Désactiver" -#: wp-admin/menu.php:371 wp-admin/ms-delete-site.php:39 +#: wp-admin/menu.php:382 wp-admin/ms-delete-site.php:39 msgid "Delete Site" msgstr "Supprimer le site" -#: wp-admin/my-sites.php:60 wp-admin/options-head.php:15 +#: wp-admin/my-sites.php:60 wp-admin/options-head.php:20 #: wp-admin/options.php:367 wp-admin/network/settings.php:142 #: wp-admin/network/sites.php:366 msgid "Settings saved." msgstr "Réglages enregistrés." #: wp-admin/comment.php:71 wp-admin/edit-comments.php:228 -#: wp-admin/edit-form-advanced.php:318 wp-admin/edit-form-advanced.php:335 -#: wp-admin/edit-form-advanced.php:354 wp-admin/edit-link-form.php:75 -#: wp-admin/edit-tags.php:302 wp-admin/edit.php:300 wp-admin/edit.php:325 +#: wp-admin/edit-form-advanced.php:311 wp-admin/edit-form-advanced.php:328 +#: wp-admin/edit-form-advanced.php:347 wp-admin/edit-link-form.php:75 +#: wp-admin/edit-tags.php:305 wp-admin/edit.php:300 wp-admin/edit.php:325 #: wp-admin/erase-personal-data.php:64 wp-admin/export-personal-data.php:64 #: wp-admin/export.php:58 wp-admin/import.php:31 #: wp-admin/includes/class-custom-background.php:109 #: wp-admin/includes/class-custom-image-header.php:144 #: wp-admin/includes/ms.php:1171 wp-admin/index.php:131 #: wp-admin/link-manager.php:78 wp-admin/media-new.php:60 -#: wp-admin/my-sites.php:51 wp-admin/nav-menus.php:770 +#: wp-admin/my-sites.php:51 wp-admin/nav-menus.php:772 #: wp-admin/options-discussion.php:31 wp-admin/options-general.php:59 #: wp-admin/options-media.php:40 wp-admin/options-permalink.php:59 #: wp-admin/options-privacy.php:46 wp-admin/options-reading.php:52 -#: wp-admin/options-writing.php:52 wp-admin/plugin-editor.php:150 +#: wp-admin/options-writing.php:52 wp-admin/plugin-editor.php:153 #: wp-admin/plugin-install.php:120 wp-admin/plugins.php:619 #: wp-admin/revision.php:158 wp-admin/site-health.php:89 #: wp-admin/theme-editor.php:51 wp-admin/theme-install.php:154 #: wp-admin/themes.php:206 wp-admin/tools.php:55 wp-admin/update-core.php:1052 #: wp-admin/upload.php:198 wp-admin/upload.php:400 wp-admin/user-edit.php:77 -#: wp-admin/user-new.php:309 wp-admin/users.php:81 wp-admin/widgets-form.php:70 +#: wp-admin/user-new.php:314 wp-admin/users.php:81 wp-admin/widgets-form.php:70 #: wp-admin/network.php:67 wp-admin/network.php:80 #: wp-admin/network/index.php:55 wp-admin/network/settings.php:63 #: wp-admin/network/site-new.php:31 wp-admin/network/sites.php:43 @@ -11917,15 +12010,15 @@ msgstr "Réglages enregistrés." msgid "For more information:" msgstr "Plus d’informations :" -#: wp-admin/edit-form-advanced.php:329 +#: wp-admin/edit-form-advanced.php:322 msgid "About Pages" msgstr "À propos des pages" -#: wp-admin/edit-form-advanced.php:307 +#: wp-admin/edit-form-advanced.php:300 msgid "Title and Post Editor" msgstr "Titre et éditeur de publications" -#: wp-admin/edit-form-advanced.php:287 +#: wp-admin/edit-form-advanced.php:280 msgid "Customizing This Display" msgstr "Personnaliser cet écran" @@ -11954,7 +12047,7 @@ msgid "This importer is not installed. Please install importers from le site principal." #: wp-admin/includes/class-wp-debug-data.php:177 -#: wp-admin/options-general.php:326 wp-admin/network/site-new.php:250 +#: wp-admin/options-general.php:325 wp-admin/network/site-new.php:250 msgid "Site Language" msgstr "Langue du site" @@ -12010,11 +12103,11 @@ msgstr "Il semble que vous utilisez une vieille version de %s. Pour utiliser Wor msgid "It looks like you're using an insecure version of %s. Using an outdated browser makes your computer unsafe. For the best WordPress experience, please update your browser." msgstr "Il semble que vous utilisez une version peu sûre de %s. Un navigateur dépassé met votre ordinateur en danger. Pour utiliser WordPress dans des conditions optimales, veuillez mettre à jour votre navigateur." -#: wp-admin/includes/nav-menu.php:1303 +#: wp-admin/includes/nav-menu.php:1304 msgid "There are some invalid menu items. Please check or delete them." msgstr "Certains éléments du menu ne sont pas valides. Veuillez les vérifier ou les effacer." -#: wp-admin/edit-tag-form.php:150 wp-admin/edit-tags.php:461 +#: wp-admin/edit-tag-form.php:150 wp-admin/edit-tags.php:464 #: wp-admin/includes/class-wp-terms-list-table.php:192 #: wp-admin/includes/class-wp-terms-list-table.php:219 #: wp-admin/includes/class-wp-terms-list-table.php:696 @@ -12028,7 +12121,7 @@ msgctxt "meta name" msgid "Name" msgstr "Nom" -#: wp-admin/themes.php:664 +#: wp-admin/themes.php:685 msgctxt "theme name" msgid "Name" msgstr "Nom" @@ -12040,7 +12133,7 @@ msgstr "Vous pouvez trouver plus de thèmes pour votre site en utilisant le navi #. translators: %s: WordPress Plugin Directory URL. #: wp-admin/plugins.php:569 -msgid "If you would like to see more plugins to choose from, click on the “Add New Plugin” button and you will be able to browse or search for additional plugins from the WordPress Plugin Directory. Plugins in the WordPress Plugin Directory are designed and developed by third parties, and are compatible with the license WordPress uses. Oh, and they are free!" +msgid "If you would like to see more plugins to choose from, click on the “Add Plugin” button and you will be able to browse or search for additional plugins from the WordPress Plugin Directory. Plugins in the WordPress Plugin Directory are designed and developed by third parties, and are compatible with the license WordPress uses. Oh, and they are free!" msgstr "Si vous souhaitez choisir parmi plus d’extensions, cliquez sur le bouton « Ajouter une extension » et vous pourrez parcourir le répertoire d’extensions de WordPress.org, ou y lancer une recherche. Les extensions du répertoire sont conçues et développées par des tiers, et utilisent une licence compatible avec celle de WordPress. Et oui, elles sont gratuites !" #. translators: %s: MAX_FILE_SIZE @@ -12048,15 +12141,15 @@ msgstr "Si vous souhaitez choisir parmi plus d’extensions, cliquez sur le bout msgid "The uploaded file exceeds the %s directive that was specified in the HTML form." msgstr "La taille du fichier envoyé excède celle indiquée dans la directive %s du formulaire HTML." -#: wp-admin/credits.php:137 +#: wp-admin/credits.php:151 msgid "External Libraries" msgstr "Bibliothèques tierces" -#: wp-admin/menu.php:374 wp-admin/network.php:53 wp-admin/network/menu.php:112 +#: wp-admin/menu.php:385 wp-admin/network.php:53 wp-admin/network/menu.php:117 msgid "Network Setup" msgstr "Création du réseau" -#: wp-admin/menu.php:363 +#: wp-admin/menu.php:374 msgid "Available Tools" msgstr "Outils disponibles" @@ -12073,10 +12166,10 @@ msgstr "Tous les thèmes et extensions disponibles sur le répertoire WordPress. #. translators: %s: https://wordpressfoundation.org/trademark-policy #: wp-admin/freedoms.php:88 -msgid "WordPress grows when people like you tell their friends about it, and the thousands of businesses and services that are built on and around WordPress share that fact with their users. We are flattered every time someone spreads the good word, just make sure to check out our trademark guidelines first." -msgstr "WordPress prend davantage d’ampleur à chaque fois que vous en parlez à vos amis et à chaque fois que les milliers de sociétés et services dans le monde bâtis à l’aide de ou autour de WordPress en font mention à leurs utilisateurs et utilisatrices. La communauté apprécie que vous vantiez les mérites de cet outil ; veillez simplement à respecter les conditions d’utilisation de la marque déposée « WordPress »." +msgid "WordPress grows when people like you tell their friends about it, and the thousands of businesses and services that are built on and around WordPress share that fact with their users. The WordPress community is flattered every time someone spreads the good word, just make sure to check out the WordPress Foundation trademark guidelines first." +msgstr "WordPress prend davantage d’ampleur à chaque fois que vous en parlez à vos amis et à chaque fois que les milliers de sociétés et services dans le monde bâtis à l’aide de ou autour de WordPress en font mention à leurs utilisateurs et utilisatrices. La communauté WordPress apprécie que vous vantiez les mérites de cet outil ; veillez simplement à respecter les conditions d’utilisation des marques déposées par la WordPress Foundation." -#: wp-admin/menu.php:107 +#: wp-admin/menu.php:112 msgid "All Comments" msgstr "Tous les commentaires" @@ -12097,7 +12190,7 @@ msgstr "Contributrices & contributeurs au cœur de WordPress %s" msgid "Project Leaders" msgstr "Chefs de projet" -#: wp-admin/about.php:50 wp-admin/contribute.php:35 wp-admin/credits.php:14 +#: wp-admin/about.php:51 wp-admin/contribute.php:35 wp-admin/credits.php:14 #: wp-admin/credits.php:38 wp-admin/freedoms.php:41 wp-admin/privacy.php:35 msgid "Credits" msgstr "Crédits" @@ -12115,7 +12208,7 @@ msgstr "Votre navigateur est obsolète !" msgid "You are using an insecure browser!" msgstr "Vous utilisez un navigateur peu sûr !" -#: wp-admin/about.php:51 wp-admin/contribute.php:36 wp-admin/credits.php:39 +#: wp-admin/about.php:52 wp-admin/contribute.php:36 wp-admin/credits.php:39 #: wp-admin/freedoms.php:19 wp-admin/freedoms.php:42 wp-admin/privacy.php:36 msgid "Freedoms" msgstr "Libertés" @@ -12132,9 +12225,9 @@ msgstr "Si vous ne voulez pas téléverser d’image, vous pouvez utiliser l’u msgid "You can choose one of your previously uploaded headers, or show a random one." msgstr "Vous pouvez choisir un entête parmi ceux que vous avez déjà téléversés, ou en afficher un aléatoirement." -#: wp-admin/menu-header.php:283 -msgid "Collapse menu" -msgstr "Réduire le menu" +#: wp-admin/menu-header.php:287 +msgid "Collapse Menu" +msgstr "Replier le menu" #: wp-admin/includes/class-custom-image-header.php:699 msgid "Uploaded Images" @@ -12165,7 +12258,7 @@ msgstr "Cette extension peut uniquement être activée sur l’ensemble des site msgid "Default Post Format" msgstr "Format par défaut des articles" -#: wp-admin/plugin-editor.php:145 wp-admin/theme-editor.php:46 +#: wp-admin/plugin-editor.php:148 wp-admin/theme-editor.php:46 msgid "Any edits to files from this screen will be reflected on all sites in the network." msgstr "Toute modification aux fichiers de cet écran affectera l’ensemble des sites du réseau." @@ -12173,7 +12266,7 @@ msgstr "Toute modification aux fichiers de cet écran affectera l’ensemble des msgid "This screen lists all the existing users for your site. Each user has one of five defined roles as set by the site admin: Site Administrator, Editor, Author, Contributor, or Subscriber. Users with roles other than Administrator will see fewer options in the dashboard navigation when they are logged in, based on their role." msgstr "Cet écran liste tous les comptes actuels de votre site. Chaque compte a l’un des 5 rôles prédéfinis, tel qu’assigné par l’administrateur ou l’administratrice du site : administrateur/administratrice, éditeur/éditrice, auteur/autrice, contributeur/contributrice ou abonné/abonnée. Les comptes avec un rôle autre qu’administrateur ou administratrice verront moins d’options quand ils seront connectés, en fonction de leur rôle." -#: wp-admin/plugin-editor.php:144 +#: wp-admin/plugin-editor.php:147 msgid "If you want to make changes but do not want them to be overwritten when the plugin is updated, you may be ready to think about writing your own plugin. For information on how to edit plugins, write your own from scratch, or just better understand their anatomy, check out the links below." msgstr "Si vous voulez faire des modifications et ne pas les perdre à la prochaine mise à jour, cela signifie que vous êtes prêt à écrire votre propre extension. Pour obtenir des informations sur la manière de modifier une extension ou d’en créer une, ou simplement pour comprendre leur fonctionnement, suivez les liens ci-contre." @@ -12182,11 +12275,11 @@ msgid "The boxes on your Dashboard screen are:" msgstr "Les sections de l’écran du tableau de bord sont :" #. translators: Default page slug. -#: wp-admin/includes/upgrade.php:345 +#: wp-admin/includes/upgrade.php:354 msgid "sample-page" msgstr "page-d-exemple" -#: wp-admin/includes/upgrade.php:343 +#: wp-admin/includes/upgrade.php:352 msgid "Sample Page" msgstr "Page d’exemple" @@ -12222,12 +12315,12 @@ msgstr "Une ou plusieurs tables de votre base de données sont indisponibles. Po msgid "Visual Editor RTL Stylesheet" msgstr "Feuille de style de l’éditeur visuel (lecture de droite à gauche)" -#: wp-admin/theme-editor.php:336 +#: wp-admin/theme-editor.php:341 msgid "This is a file in your current parent theme." msgstr "Ceci est un fichier de votre thème parent actuel." #. translators: %s: Link to edit parent theme. -#: wp-admin/theme-editor.php:285 +#: wp-admin/theme-editor.php:290 msgid "This child theme inherits templates from a parent theme, %s." msgstr "Ce thème enfant hérite de certains modèles de son thème parent, %s." @@ -12238,31 +12331,31 @@ msgstr "Ce thème enfant hérite de certains modèles de son thème parent, %s." msgid "Network Enable" msgstr "Activer sur le réseau" -#: wp-admin/upgrade.php:154 +#: wp-admin/upgrade.php:173 msgid "Your WordPress database has been successfully updated!" msgstr "La base de données de WordPress a bien été mise à jour !" -#: wp-admin/upgrade.php:153 +#: wp-admin/upgrade.php:172 msgid "Update Complete" msgstr "Mise à jour terminée" -#: wp-admin/upgrade.php:143 +#: wp-admin/upgrade.php:162 msgid "Update WordPress Database" msgstr "Mettre à jour la base de données de WordPress" -#: wp-admin/upgrade.php:142 wp-admin/network/upgrade.php:144 +#: wp-admin/upgrade.php:161 wp-admin/network/upgrade.php:144 msgid "The database update process may take a little while, so please be patient." msgstr "Le processus de mise à jour peut prendre un certain temps, merci donc pour votre patience." -#: wp-admin/upgrade.php:140 wp-admin/network/upgrade.php:140 +#: wp-admin/upgrade.php:159 wp-admin/network/upgrade.php:140 msgid "Database Update Required" msgstr "Mise à jour de la base de données nécessaire" -#: wp-admin/upgrade.php:73 +#: wp-admin/upgrade.php:92 msgid "No Update Required" msgstr "Aucune mise à jour nécessaire" -#: wp-admin/upgrade.php:65 +#: wp-admin/upgrade.php:84 msgid "WordPress › Update" msgstr "WordPress › Mise à jour" @@ -12344,11 +12437,11 @@ msgstr[0] "Le mien (%s)" msgstr[1] "Les miens (%s)" #. translators: Admin screen title. %s: Admin screen name. -#: wp-admin/admin-header.php:50 +#: wp-admin/admin-header.php:55 msgid "%s — WordPress" msgstr "%s – WordPress" -#: wp-admin/includes/class-wp-comments-list-table.php:547 +#: wp-admin/includes/class-wp-comments-list-table.php:551 msgctxt "column name" msgid "In Response To" msgstr "En réponse à" @@ -12357,23 +12450,23 @@ msgstr "En réponse à" msgid "The Available Widgets section contains all the widgets you can choose from. Once you drag a widget into a sidebar, it will open to allow you to configure its settings. When you are happy with the widget settings, click the Save button and the widget will go live on your site. If you click Delete, it will remove the widget." msgstr "La section « Widgets disponibles » contient tous les widgets que vous pouvez utiliser. Une fois le widget glissé dans la colonne latérale, il s’ouvrira pour vous permettre d’en modifier les réglages. Quand vos réglages vous satisfont, cliquez sur le bouton « Enregistrer » et le widget sera lancé sur votre site. Si vous cliquez sur « Supprimer », le widget sera retiré du site." -#: wp-admin/edit-form-advanced.php:349 +#: wp-admin/edit-form-advanced.php:342 msgid "Remember to click Update to save metadata entered or changed." msgstr "Pensez bien à cliquer sur le bouton « Mettre à jour » afin de conserver les métadonnées ajoutées ou modifiées." -#: wp-admin/edit-form-advanced.php:348 +#: wp-admin/edit-form-advanced.php:341 msgid "Note that you crop the image by clicking on it (the Crop icon is already selected) and dragging the cropping frame to select the desired part. Then click Save to retain the cropping." msgstr "Pour recadrer une image, cliquez sur l’icône Recadrer puis sélectionnez la zone à conserver en cliquant sur l’image et en faisant glisser le curseur de la souris. Ensuite, cliquez sur Enregistrer pour conserver votre modification." -#: wp-admin/edit-form-advanced.php:347 +#: wp-admin/edit-form-advanced.php:340 msgid "For images only, you can click on Edit Image under the thumbnail to expand out an inline image editor with icons for cropping, rotating, or flipping the image as well as for undoing and redoing. The boxes on the right give you more options for scaling the image, for cropping it, and for cropping the thumbnail in a different way than you crop the original image. You can click on Help in those boxes to get more information." msgstr "Pour les images (et seulement elles), vous pouvez cliquer sur « Modifier l’Image », sous la miniature, afin de faire apparaître un éditeur d’image, vous permettant de recadrer, d’appliquer une rotation ou d’inverser une image, ainsi que de défaire et refaire vos modifications. Les sections sur la droite vous donnent accès à d’autres options pour le changement d’échelle, le recadrage et même le recadrage de la miniature, qui peut être différent de celui de l’image originale. Cliquez sur le bouton « Aide » de ces sections pour obtenir plus d’informations." -#: wp-admin/edit-form-advanced.php:346 +#: wp-admin/edit-form-advanced.php:339 msgid "This screen allows you to edit fields for metadata in a file within the media library." msgstr "Cet écran vous permet de modifier les champs des métadonnées des fichiers dans la médiathèque." -#: wp-admin/user-new.php:450 +#: wp-admin/user-new.php:455 msgid "Email or Username" msgstr "E-mail ou identifiant" @@ -12428,7 +12521,7 @@ msgstr "Éditeur de style" msgid "Sorry, you are not allowed to edit users." msgstr "Désolé, vous n’avez pas l’autorisation de modifier les comptes." -#: wp-admin/includes/file.php:2542 +#: wp-admin/includes/file.php:2560 msgid "To perform the requested action, WordPress needs to access your web server." msgstr "Pour lancer la requête demandée, WordPress a besoin d’accéder à votre serveur web." @@ -12513,7 +12606,7 @@ msgstr "Aller à la page des mises à jour de WordPress" msgid "Go to Plugins page" msgstr "Aller sur la page des extensions" -#: wp-admin/includes/nav-menu.php:1294 +#: wp-admin/includes/nav-menu.php:1295 msgid "Click Save Menu to make pending menu items public." msgstr "Cliquez sur « Enregistrer le menu » pour rendre publics les éléments en attente." @@ -12538,19 +12631,19 @@ msgstr "Recadrer et publier" msgid "XFN stands for XHTML Friends Network, which is optional. WordPress allows the generation of XFN attributes to show how you are related to the authors/owners of the site to which you are linking." msgstr "XFN signifie XHTML Friends Network, c’est-à-dire Réseau XHTML d’Amis. Son usage est facultatif. WordPress permet de générer les attributs XFN de vos liens, afin d’indiquer votre relation avec l’auteur/autrice ou la personne qui est propriétaire de la page liée." -#: wp-admin/includes/file.php:2552 +#: wp-admin/includes/file.php:2570 msgid "FTP Password" msgstr "Mot de passe FTP" -#: wp-admin/includes/file.php:2551 +#: wp-admin/includes/file.php:2569 msgid "FTP Username" msgstr "Identifiant FTP" -#: wp-admin/includes/file.php:2548 +#: wp-admin/includes/file.php:2566 msgid "FTP/SSH Password" msgstr "Mot de passe FTP/SSH" -#: wp-admin/includes/file.php:2547 +#: wp-admin/includes/file.php:2565 msgid "FTP/SSH Username" msgstr "Identifiant FTP/SSH" @@ -12582,7 +12675,7 @@ msgid "If you want to remove the widget but save its setting for possible future msgstr "Si vous voulez retirer le widget, mais conserver ses réglages pour un possible usage futur, glissez-le simplement dans la zone « Widgets désactivés ». De là, vous pouvez les réajouter n’importe quand. C’est particulièrement utile quand vous passez à un thème avec moins de zones à widgets, ou des zones différentes." #: wp-admin/users.php:36 -msgid "To add a new user for your site, click the Add New User button at the top of the screen or Add New User in the Users menu section." +msgid "To add a new user for your site, click the Add User button at the top of the screen or Add User in the Users menu section." msgstr "Pour ajouter un nouveau compte à votre site, cliquez sur le bouton « Ajouter » en haut de l’écran, ou l’option « Ajouter » du menu « Comptes »." #: wp-admin/options-media.php:20 @@ -12593,19 +12686,19 @@ msgstr "Vous pouvez indiquer une taille maximale pour les images insérées dans msgid "Most themes show the site title at the top of every page, in the title bar of the browser, and as the identifying name for syndicated feeds. Many themes also show the tagline." msgstr "La plupart des thèmes affichent le titre du site en haut de chaque page, dans la barre de titre du navigateur, et en tant qu’identifiant pour les flux de syndication. Le slogan est également utilisé par de nombreux thèmes." -#: wp-admin/edit-form-advanced.php:414 +#: wp-admin/edit-form-advanced.php:407 msgid "Order — Pages are usually ordered alphabetically, but you can choose your own order by entering a number (1 for first, etc.) in this field." msgstr "Ordre — Les pages sont généralement affichées par ordre alphabétique, mais vous pouvez saisir un nombre dans ce champ pour modifier l’ordre d’apparition : 1 pour premier, etc." -#: wp-admin/includes/file.php:2556 +#: wp-admin/includes/file.php:2574 msgid "If you do not remember your credentials, you should contact your web host." msgstr "Si vous ne vous souvenez pas de votre identifiant, vous devriez contacter votre hébergeur." -#: wp-admin/includes/file.php:2550 +#: wp-admin/includes/file.php:2568 msgid "Please enter your FTP credentials to proceed." msgstr "Veuillez saisir votre identifiant FTP pour continuer." -#: wp-admin/includes/file.php:2546 +#: wp-admin/includes/file.php:2564 msgid "Please enter your FTP or SSH credentials to proceed." msgstr "Veuillez saisir votre identifiant FTP ou SSH pour continuer." @@ -12618,19 +12711,19 @@ msgstr "Votre profil contient les informations à votre propos (votre « compte msgid "You can Upload a theme manually if you have already downloaded its ZIP archive onto your computer (make sure it is from a trusted and original source). You can also do it the old-fashioned way and copy a downloaded theme’s folder via FTP into your %s directory." msgstr "Vous pouvez téléverser un thème manuellement si vous avez déjà téléchargé son archive Zip sur votre ordinateur (assurez-vous que le thème vient d’une source de confiance). Vous pouvez également le faire à l’ancienne, c’est-à-dire passer par un client FTP pour mettre le répertoire du thème dans le répertoire %s." -#: wp-admin/edit-form-advanced.php:401 +#: wp-admin/edit-form-advanced.php:394 msgid "Send Trackbacks — Trackbacks are a way to notify legacy blog systems that you’ve linked to them. Enter the URL(s) you want to send trackbacks. If you link to other WordPress sites they’ll be notified automatically using pingbacks, and this field is unnecessary." msgstr "Envoyer des rétroliens — Un rétrolien est une manière explicite de notifier les anciens systèmes de blog que vous avez fait un lien vers eux. Saisissez les adresses web que vous voulez notifier. Si dans votre article vous faites des liens vers des sites WordPress, ils seront notifiés automatiquement à l’aide de pings, sans devoir passer par un rétrolien explicite." -#: wp-admin/user-new.php:300 +#: wp-admin/user-new.php:305 msgid "Contributors can write and manage their posts but not publish posts or upload media files." msgstr "Les contributeurs peuvent écrire et gérer leurs articles, mais ils ne peuvent pas publier les articles ou téléverser des fichiers média." -#: wp-admin/user-new.php:303 +#: wp-admin/user-new.php:308 msgid "Administrators have access to all the administration features." msgstr "Les administrateurs et les administratrices peuvent accéder à toutes les fonctionnalités de l’administration." -#: wp-admin/plugin-editor.php:135 +#: wp-admin/plugin-editor.php:138 msgid "You can use the plugin file editor to make changes to any of your plugins’ individual PHP files. Be aware that if you make changes, plugins updates will overwrite your customizations." msgstr "Vous pouvez utiliser l’éditeur de fichiers des extensions pour personnaliser n’importe quel fichier PHP de vos extensions. Soyez cependant conscient que si vous modifiez les fichiers, les mises à jour des extensions annuleront vos changements." @@ -12643,12 +12736,12 @@ msgstr "Si vous supprimez un lien, il sera supprimé définitivement, car les li msgid "You can add links here to be displayed on your site, usually using Widgets. By default, links to several sites in the WordPress community are included as examples." msgstr "Vous pouvez ajouter ici les liens que vous voulez voir affichés sur votre site, généralement par le biais de widgets. Des liens vers de nombreux sites de la communauté WordPress sont inclus par défaut." -#: wp-admin/edit-tags.php:283 +#: wp-admin/edit-tags.php:286 msgid "Slug — The “slug” is the URL-friendly version of the name. It is usually all lowercase and contains only letters, numbers, and hyphens." msgstr "Slug — Le slug est la version normalisée du nom. Il ne contient généralement que des lettres minuscules non accentuées, des chiffres et des traits d’union." #. translators: %s: URL to Press This bookmarklet. -#: wp-admin/edit-form-advanced.php:315 +#: wp-admin/edit-form-advanced.php:308 msgid "You can also create posts with the Press This bookmarklet." msgstr "Vous pouvez également créer des articles avec le bookmarklet Press This." @@ -12660,7 +12753,7 @@ msgstr "N’oubliez pas de cliquer sur « Enregistrer les modifications » qua msgid "You can customize the look of your site without touching any of your theme’s code by using a custom background. Your background can be an image or a color." msgstr "Vous pouvez personnaliser l’apparence de votre site sans jamais toucher au code de votre thème, en utilisant un fond personnalisé. Votre fond peut être une image ou juste une couleur." -#: wp-admin/user-new.php:302 +#: wp-admin/user-new.php:307 msgid "Editors can publish posts, manage posts as well as manage other people’s posts, etc." msgstr "Les éditeurs ou éditrices peuvent publier et gérer leurs propres publication, ainsi que ceux des autres membres, etc." @@ -12732,7 +12825,7 @@ msgstr "Une nouvelle version de WordPress est disponible." msgid "You have the latest version of WordPress." msgstr "Vous avez la dernière version de WordPress." -#: wp-admin/plugin-editor.php:178 wp-admin/theme-editor.php:172 +#: wp-admin/plugin-editor.php:181 wp-admin/theme-editor.php:172 msgid "Function Name…" msgstr "Nom de la fonction…" @@ -12745,7 +12838,7 @@ msgid "You can add or edit links on this screen by entering information in each msgstr "Vous pouvez ajouter ou modifier des liens sur cet écran, en saisissant dans chacune des sections. Seuls sont nécessaires les champs « Adresse web » et « Nom » (le texte que vous voulez voir affiché sur votre site pour cette adresse)." #. translators: %s: URL to Categories to Tags Converter tool. -#: wp-admin/edit-tags.php:640 +#: wp-admin/edit-tags.php:643 msgid "Categories can be selectively converted to tags using the category to tag converter." msgstr "Les catégories peuvent être converties de manière sélective en étiquettes via le convertisseur catégories vers étiquettes." @@ -12757,7 +12850,7 @@ msgstr "Cet écran liste les liens vers les extensions servant à importer des d msgid "Once generated, your WXR file can be imported by another WordPress site or by another blogging platform able to access this format." msgstr "Une fois généré, le fichier WXR peut être importé dans une autre installation WordPress, ou une autre plateforme de blog capable de lire ce format." -#: wp-admin/plugin-editor.php:136 +#: wp-admin/plugin-editor.php:139 msgid "Choose a plugin to edit from the dropdown menu and click the Select button. Click once on any file name to load it in the editor, and make your changes. Do not forget to save your changes (Update File) when you are finished." msgstr "Choisissez une extension à modifier dans le menu déroulant et cliquez sur le bouton « Sélectionner ». Cliquez une fois sur n’importe quel nom de fichier pour le charger dans l’éditeur, puis faites vos modifications. N’oubliez pas d’enregistrer vos modifications (bouton « Mettre à jour le fichier ») quand vous aurez terminé." @@ -12801,11 +12894,11 @@ msgstr "Vous pouvez utiliser l’éditeur de fichiers des thèmes pour modifier msgid "(no parent)" msgstr "(pas de parent)" -#: wp-admin/edit-form-advanced.php:413 +#: wp-admin/edit-form-advanced.php:406 msgid "Template — Some themes have custom templates you can use for certain pages that might have additional features or custom layouts. If so, you’ll see them in this dropdown menu." msgstr "Modèle — Certains thèmes utilisent des modèles spéciaux que vous pouvez appliquer à pages des pages précises, avec des fonctionnalités supplémentaires ou une mise en page qui leur est propre. Si c’est le cas, vous les verrez dans ce menu déroulant." -#: wp-admin/edit-form-advanced.php:412 +#: wp-admin/edit-form-advanced.php:405 msgid "Parent — You can arrange your pages in hierarchies. For example, you could have an “About” page that has “Life Story” and “My Dog” pages under it. There are no limits to how many levels you can nest pages." msgstr "Parent — Vous pouvez arranger vos pages en hiérarchies. Par exemple, vous pourriez avoir une page « À propos », avec comme sous-pages « Ma vie » et « Mon œuvre ». Il n’y a pas de limite à la profondeur des sous-pages." @@ -12813,32 +12906,32 @@ msgstr "Parent — Vous pouvez arranger vos pages en hiéra msgid "All updates have been completed." msgstr "Toutes les mises à jour sont terminées." -#: wp-admin/edit-tags.php:291 +#: wp-admin/edit-tags.php:294 msgid "You can change the display of this screen using the Screen Options tab to set how many items are displayed per screen and to display/hide columns in the table." msgstr "Vous pouvez modifier l’affichage de cet écran via l’onglet « Options de l’écran », afin de définir le nombre d’éléments à afficher par écran, et afficher/masquer les colonnes du tableau." -#: wp-admin/edit-tags.php:289 +#: wp-admin/edit-tags.php:292 msgid "Description — The description is not prominent by default; however, some themes may display it." msgstr "Description — La description n’est pas très utilisée par défaut, cependant de plus en plus de thèmes l’affichent." -#: wp-admin/edit-tags.php:281 +#: wp-admin/edit-tags.php:284 msgid "Name — The name is how it appears on your site." msgstr "Nom — Le nom est utilisé un peu partout sur votre site." -#: wp-admin/edit-tags.php:277 +#: wp-admin/edit-tags.php:280 msgid "When adding a new tag on this screen, you’ll fill in the following fields:" msgstr "Quand vous ajoutez une nouvelle étiquette via cet écran, vous devez remplir les champs suivants :" -#: wp-admin/edit-tags.php:275 +#: wp-admin/edit-tags.php:278 msgid "When adding a new category on this screen, you’ll fill in the following fields:" msgstr "Quand vous ajoutez une nouvelle catégorie via cet écran, vous devez remplir les champs suivants :" -#: wp-admin/edit-tags.php:262 +#: wp-admin/edit-tags.php:265 msgid "What’s the difference between categories and tags? Normally, tags are ad-hoc keywords that identify important information in your post (names, subjects, etc) that may or may not recur in other posts, while categories are pre-determined sections. If you think of your site like a book, the categories are like the Table of Contents and the tags are like the terms in the index." msgstr "Quelle est la différence entre les catégories et les étiquettes ? Normalement, les étiquettes identifient les informations importantes dans votre article (noms, sujets, etc.) qui seraient susceptibles de revenir dans d’autres articles, ou pas. De leur côté, les catégories ont des sections prédéterminées. Si vous voyez votre site comme un livre, alors les catégories sont la table des matières, et les étiquettes forment l’index." #. translators: %s: URL to Writing Settings screen. -#: wp-admin/edit-tags.php:250 +#: wp-admin/edit-tags.php:253 msgid "You can use categories to define sections of your site and group related posts. The default category is “Uncategorized” until you change it in your writing settings." msgstr "Vous pouvez utiliser les catégories pour donner des sections à votre site, et grouper les articles connexes. La catégorie par défaut est « Non classé » ; vous pouvez la modifier dans vos options d’écriture." @@ -12882,12 +12975,12 @@ msgstr "Ceci retirera l’image d’entête. Il ne vous sera pas possible de ré msgid "Default Images" msgstr "Images par défaut" -#: wp-admin/includes/class-wp-comments-list-table.php:806 +#: wp-admin/includes/class-wp-comments-list-table.php:810 #: wp-admin/includes/dashboard.php:785 msgid "Delete this comment permanently" msgstr "Supprimer définitivement ce commentaire" -#: wp-admin/includes/class-wp-comments-list-table.php:796 +#: wp-admin/includes/class-wp-comments-list-table.php:800 msgid "Restore this comment from the Trash" msgstr "Récupérer ce commentaire depuis la corbeille" @@ -12895,16 +12988,16 @@ msgstr "Récupérer ce commentaire depuis la corbeille" msgid "Allow comments" msgstr "Autoriser les commentaires." -#: wp-admin/edit-form-advanced.php:402 +#: wp-admin/edit-form-advanced.php:395 msgid "Discussion — You can turn comments and pings on or off, and if there are comments on the post, you can see them here and moderate them." msgstr "Commentaires — Vous pouvez activer ou désactiver les commentaires et pings, et si votre article reçoit des commentaires, vous pourrez les voir ici et les modérer." #. translators: %s: Featured image. -#: wp-admin/edit-form-advanced.php:386 +#: wp-admin/edit-form-advanced.php:379 msgid "%s — This allows you to associate an image with your post without inserting it. This is usually useful only if your theme makes use of the image as a post thumbnail on the home page, a custom header, etc." msgstr "%s – Vous pouvez associer une image à votre publication, sans pour autant l’y insérer. Cela ne sert vraiment que si votre thème fait usage de cette fonctionnalité, sous la forme d’une miniature pour la page d’accueil, d’un entête personnalisé, etc." -#: wp-admin/edit-form-advanced.php:292 +#: wp-admin/edit-form-advanced.php:285 msgid "Title — Enter a title for your post. After you enter a title, you’ll see the permalink below, which you can edit." msgstr "Titre — Saisissez un titre pour votre article. Après avoir saisi le titre, un permalien s’affichera en dessous, que vous pourrez modifier à loisir." @@ -12928,7 +13021,7 @@ msgstr "Vous pouvez personnaliser l’affichage de cet écran de plusieurs mani msgid "Search installed plugins" msgstr "Rechercher des extensions installées" -#: wp-admin/nav-menus.php:834 +#: wp-admin/nav-menus.php:836 msgid "Your theme supports one menu. Select which menu you would like to use." msgstr "Votre thème peut utiliser un menu. Sélectionnez le menu que vous voudriez utiliser." @@ -12940,7 +13033,7 @@ msgstr "Le thème actuel n’accepte pas les menus de navigation ni les widgets. msgid "Categories and Tags Converter" msgstr "Convertisseur de catégories et étiquettes" -#: wp-admin/includes/nav-menu.php:583 wp-admin/includes/nav-menu.php:606 +#: wp-admin/includes/nav-menu.php:584 wp-admin/includes/nav-menu.php:607 msgid "Most Recent" msgstr "Les plus récentes" @@ -12958,13 +13051,13 @@ msgctxt "Plugin Installer" msgid "Tag" msgstr "Étiquette" -#: wp-admin/includes/media.php:2584 +#: wp-admin/includes/media.php:2589 msgctxt "verb" msgid "Clear" msgstr "Effacer" #: wp-admin/comment.php:135 -#: wp-admin/includes/class-wp-comments-list-table.php:371 +#: wp-admin/includes/class-wp-comments-list-table.php:375 msgctxt "comment" msgid "Mark as spam" msgstr "Marquer comme indésirable" @@ -12979,7 +13072,7 @@ msgstr "Retirer l’image d’arrière-plan" msgid "Comments on “%s”" msgstr "Commentaires sur « %s »" -#: wp-admin/includes/nav-menu.php:1334 +#: wp-admin/includes/nav-menu.php:1335 msgid "Show advanced menu properties" msgstr "Afficher les propriétés avancées du menu" @@ -12989,21 +13082,21 @@ msgstr "Afficher les propriétés avancées du menu" msgid "You have version %1$s installed. Update to %2$s." msgstr "Vous utilisez la version %1$s. Mettez à jour vers la version %2$s." -#: wp-admin/includes/class-wp-debug-data.php:595 -#: wp-admin/includes/class-wp-debug-data.php:1131 -#: wp-admin/includes/class-wp-debug-data.php:1242 -#: wp-admin/includes/class-wp-debug-data.php:1407 -#: wp-admin/includes/class-wp-debug-data.php:1412 -#: wp-admin/includes/class-wp-debug-data.php:1421 -#: wp-admin/includes/class-wp-debug-data.php:1430 -#: wp-admin/includes/class-wp-debug-data.php:1489 -#: wp-admin/includes/class-wp-debug-data.php:1494 -#: wp-admin/includes/class-wp-debug-data.php:1504 -#: wp-admin/includes/class-wp-debug-data.php:1509 +#: wp-admin/includes/class-wp-debug-data.php:623 +#: wp-admin/includes/class-wp-debug-data.php:1159 +#: wp-admin/includes/class-wp-debug-data.php:1270 +#: wp-admin/includes/class-wp-debug-data.php:1435 +#: wp-admin/includes/class-wp-debug-data.php:1440 +#: wp-admin/includes/class-wp-debug-data.php:1449 +#: wp-admin/includes/class-wp-debug-data.php:1458 +#: wp-admin/includes/class-wp-debug-data.php:1517 +#: wp-admin/includes/class-wp-debug-data.php:1522 +#: wp-admin/includes/class-wp-debug-data.php:1532 +#: wp-admin/includes/class-wp-debug-data.php:1537 msgid "Enabled" msgstr "Activé" -#: wp-admin/includes/class-wp-comments-list-table.php:787 +#: wp-admin/includes/class-wp-comments-list-table.php:791 msgctxt "comment" msgid "Not Spam" msgstr "Non indésirable" @@ -13025,7 +13118,7 @@ msgstr "Supprimer des comptes de ce site" msgid "— No role for this site —" msgstr "— Aucun rôle sur ce site —" -#: wp-admin/includes/upgrade.php:599 +#: wp-admin/includes/upgrade.php:614 msgid "New WordPress Site" msgstr "Nouveau site WordPress" @@ -13033,11 +13126,11 @@ msgstr "Nouveau site WordPress" msgid "My Site" msgstr "Mon site" -#: wp-admin/includes/post.php:913 +#: wp-admin/includes/post.php:919 msgid "Sorry, you are not allowed to create posts or drafts on this site." msgstr "Désolé, vous n’avez pas l’autorisation de créer des articles ou des brouillons sur ce site." -#: wp-admin/includes/post.php:911 +#: wp-admin/includes/post.php:917 msgid "Sorry, you are not allowed to create pages on this site." msgstr "Désolé, vous n’avez pas l’autorisation de créer des pages sur ce site." @@ -13057,17 +13150,17 @@ msgstr "Message personnalisé de site supprimé." msgid "If you have posts or comments in another system, WordPress can import those into this site. To get started, choose a system to import from below:" msgstr "Si vous avez des articles ou des commentaires dans un autre système de site, WordPress peut les importer dans votre site actuel. Pour commencer, choisissez un système d’origine ci-dessous :" -#: wp-admin/includes/nav-menu.php:508 wp-admin/includes/nav-menu.php:873 +#: wp-admin/includes/nav-menu.php:509 wp-admin/includes/nav-menu.php:874 msgid "No items." msgstr "Aucune entrée." #. translators: %s: Asterisk symbol (*). -#: wp-admin/includes/schema.php:1141 +#: wp-admin/includes/schema.php:1146 msgid "To use a subdomain configuration, you must have a wildcard entry in your DNS. This usually means adding a %s hostname record pointing at your web server in your DNS configuration tool." msgstr "Pour utiliser la configuration en sous-domaine, il vous faut ajouter un enregistrement générique (joker) à vos enregistrements DNS. Cela signifie généralement ajouter un hôte %s pointant vers votre serveur dans votre outil de configuration DNS." #. translators: %s: Host name. -#: wp-admin/includes/schema.php:1130 +#: wp-admin/includes/schema.php:1135 msgid "The installer attempted to contact a random hostname (%s) on your domain." msgstr "L’installateur a tenté de contacter un nom d’hôte au hasard (%s) sur votre domaine." @@ -13125,7 +13218,7 @@ msgstr "Non, ne pas me relancer à ce sujet" msgid "Yes, take me to my profile page" msgstr "Oui, je veux aller sur mon profil maintenant" -#: wp-admin/includes/upgrade.php:111 +#: wp-admin/includes/upgrade.php:120 msgid "Your chosen password." msgstr "Le mot de passe que vous avez choisi." @@ -13155,15 +13248,15 @@ msgstr[1] "%s commentaires déplacés dans la corbeille." msgid "The following themes have new versions available. Check the ones you want to update and then click “Update Themes”." msgstr "Les thèmes suivants disposent d’une nouvelle version. Cochez ceux que vous voulez mettre à jour, puis cliquez sur « Mettre à jour les thèmes »." -#: wp-admin/user-new.php:360 +#: wp-admin/user-new.php:365 msgid "That user is already a member of this site." msgstr "Ce compte est déjà membre de ce site." -#: wp-admin/user-new.php:351 +#: wp-admin/user-new.php:356 msgid "User has been added to your site." msgstr "Le compte a été ajouté à votre site." -#: wp-admin/user-new.php:348 +#: wp-admin/user-new.php:353 msgid "Invitation email sent to user. A confirmation link must be clicked for them to be added to your site." msgstr "L’invitation a été envoyée à l’adresse e-mail liée au compte. La personne concernée devra cliquer sur un lien de confirmation pour être ajoutée à votre site." @@ -13192,7 +13285,7 @@ msgstr "Modèle pour les auteurs/autrices" msgid "Visual Editor Stylesheet" msgstr "Feuille de style de l’éditeur visuel" -#: wp-admin/edit-form-advanced.php:204 +#: wp-admin/edit-form-advanced.php:197 msgid "Page saved." msgstr "Page enregistrée." @@ -13222,7 +13315,7 @@ msgstr "Important :" #. translators: %s: Theme version. #. translators: %s: WordPress version. #: wp-admin/includes/class-wp-theme-install-list-table.php:321 -#: wp-admin/includes/class-wp-theme-install-list-table.php:480 +#: wp-admin/includes/class-wp-theme-install-list-table.php:478 #: wp-admin/update-core.php:74 msgid "Update to version %s" msgstr "Mettre à jour vers la version %s" @@ -13254,11 +13347,11 @@ msgstr "Visibilité du site" msgid "CSS Classes (optional)" msgstr "Classes CSS (facultatives)" -#: wp-admin/includes/nav-menu.php:1336 +#: wp-admin/includes/nav-menu.php:1337 msgid "Link Target" msgstr "Cible du lien" -#: wp-admin/nav-menus.php:1099 wp-admin/nav-menus.php:1236 +#: wp-admin/nav-menus.php:1101 wp-admin/nav-menus.php:1238 msgid "Save Menu" msgstr "Enregistrer le menu" @@ -13268,12 +13361,12 @@ msgstr "Enregistrer le menu" msgid "Updating Theme %1$s (%2$d/%3$d)" msgstr "Mise à jour du thème %1$s (%2$d/%3$d)" -#: wp-admin/includes/schema.php:1145 +#: wp-admin/includes/schema.php:1150 msgid "You can still use your site but any subdomain you create may not be accessible. If you know your DNS is correct, ignore this message." msgstr "Vous pouvez toujours utiliser votre site, mais tout sous-domaine créé pourrait ne pas être accessible. Si vous êtes sûr de votre configuration DNS, ignorez ce message." #. translators: %s: Error message. -#: wp-admin/includes/schema.php:1135 +#: wp-admin/includes/schema.php:1140 msgid "This resulted in an error message: %s" msgstr "Cela a abouti à ce message d’erreur : %s" @@ -13297,7 +13390,7 @@ msgstr "Vous devez fournir un nom de domaine." msgid "Notice:" msgstr "Avertissement :" -#: wp-admin/edit-form-advanced.php:573 +#: wp-admin/edit-form-advanced.php:572 msgid "Get Shortlink" msgstr "Obtenir le lien court" @@ -13312,16 +13405,16 @@ msgstr "La mise à jour de %s a échoué." msgid "Updating Plugin %1$s (%2$d/%3$d)" msgstr "Mise à jour de l’extension %1$s (%2$d/%3$d)" -#: wp-admin/includes/upgrade.php:132 +#: wp-admin/includes/upgrade.php:141 msgid "The password you chose during installation." msgstr "Le mot de passe que vous avez choisi pendant l’installation." -#: wp-admin/includes/upgrade.php:115 +#: wp-admin/includes/upgrade.php:124 msgid "User already exists. Password inherited." msgstr "Le compte existe déjà et a hérité du mot de passe." #: wp-admin/includes/class-wp-automatic-updater.php:529 -#: wp-admin/includes/update-core.php:1670 wp-admin/update-core.php:919 +#: wp-admin/includes/update-core.php:1696 wp-admin/update-core.php:919 msgid "WordPress updated successfully." msgstr "WordPress a bien été mis à jour." @@ -13338,7 +13431,7 @@ msgstr "Mettre à jour les extensions" #. translators: 1: URL to WordPress release notes, 2: WordPress version number, #. 3: Minimum required PHP version number, 4: Minimum required MySQL version #. number, 5: Current PHP version number, 6: Current MySQL version number. -#: wp-admin/update-core.php:113 wp-admin/upgrade.php:100 +#: wp-admin/update-core.php:113 wp-admin/upgrade.php:119 msgid "You cannot update because WordPress %2$s requires PHP version %3$s or higher and MySQL version %4$s or higher. You are running PHP version %5$s and MySQL version %6$s." msgstr "Cette mise à jour ne peut être installée, car WordPress %2$s nécessite une version de PHP égale ou supérieure à %3$s, et une version de MySQL égale ou supérieure à %4$s. Votre hébergement utilise PHP version %5$s et MySQL version %6$s." @@ -13350,7 +13443,7 @@ msgstr "Mises à jour de WordPress" msgid "Edit menu item" msgstr "Modifier un élément du menu" -#: wp-admin/about.php:312 +#: wp-admin/about.php:322 msgid "Go to Dashboard" msgstr "Aller sur le tableau de bord" @@ -13388,19 +13481,19 @@ msgstr "Vous êtes sur le point de supprimer l’extension suivante :" msgid "Delete Plugin" msgstr "Supprimer l’extension" -#: wp-admin/options-general.php:455 +#: wp-admin/options-general.php:454 msgid "This timezone does not observe daylight saving time." msgstr "Ce fuseau horaire n’a pas d’heure d’été." -#: wp-admin/options-general.php:432 +#: wp-admin/options-general.php:431 msgid "This timezone is currently in daylight saving time." msgstr "Ce fuseau horaire est actuellement à l’heure d’été." -#: wp-admin/options-general.php:268 wp-admin/network/settings.php:170 +#: wp-admin/options-general.php:267 wp-admin/network/settings.php:170 msgid "This address is used for admin purposes. If you change this, an email will be sent to your new address to confirm it. The new address will not become active until confirmed." msgstr "Cette adresse est utilisée à des fins d’administration. Si vous la changez, vous recevrez un e-mail à la nouvelle adresse afin de la confirmer. La nouvelle adresse ne sera pas active tant que vous ne l’aurez pas confirmée." -#: wp-admin/includes/nav-menu.php:591 wp-admin/includes/nav-menu.php:963 +#: wp-admin/includes/nav-menu.php:592 wp-admin/includes/nav-menu.php:964 msgid "View All" msgstr "Tout voir" @@ -13411,7 +13504,7 @@ msgstr "Veuillez saisir un nom de menu valide." #. translators: 1: URL to WordPress release notes, 2: WordPress version number, #. 3: Minimum required PHP version number, 4: Minimum required MySQL version #. number, 5: Current PHP version number, 6: Current MySQL version number. -#: wp-admin/install.php:268 +#: wp-admin/install.php:269 msgid "You cannot install because WordPress %2$s requires PHP version %3$s or higher and MySQL version %4$s or higher. You are running PHP version %5$s and MySQL version %6$s." msgstr "Vous ne pouvez pas installer WordPress %2$s, car cette version nécessite une version de PHP égale ou supérieure à la %3$s, et une version de MySQL égale ou supérieure à la %4$s. Votre hébergement utilise PHP version %5$s et MySQL version %6$s." @@ -13492,7 +13585,7 @@ msgstr "Widgets disponibles" msgid "Error in displaying the widget settings form." msgstr "Une erreur est survenue lors de l’affichage du formulaire de réglage du widget." -#: wp-admin/includes/misc.php:1365 wp-admin/includes/post.php:2140 +#: wp-admin/includes/misc.php:1365 wp-admin/includes/post.php:2151 #: wp-admin/widgets-form.php:367 msgid "Error while saving." msgstr "Erreur lors de la sauvegarde." @@ -13559,53 +13652,53 @@ msgstr "Aucun compte valide n’est sélectionné pour la suppression." msgid "Delete Users" msgstr "Supprimer des comptes" -#: wp-admin/user-new.php:481 wp-admin/user-new.php:648 +#: wp-admin/user-new.php:486 wp-admin/user-new.php:653 msgid "Skip Confirmation Email" msgstr "Passer la confirmation par e-mail" -#: wp-admin/user-new.php:345 +#: wp-admin/user-new.php:350 msgid "Invitation email sent to new user. A confirmation link must be clicked before their account is created." msgstr "Envoi d’un message d’invitation au nouveau compte. Un lien de confirmation devra d’abord être cliqué avant la création du compte." #. translators: Joining confirmation notification email subject. %s: Site #. title. -#: wp-admin/user-new.php:137 +#: wp-admin/user-new.php:140 msgid "[%s] Joining Confirmation" msgstr "[%s] Confirmation d’inscription" -#: wp-admin/user-edit.php:944 +#: wp-admin/user-edit.php:946 msgid "Update User" msgstr "Mettre à jour le compte" -#: wp-admin/user-edit.php:944 +#: wp-admin/user-edit.php:946 msgid "Update Profile" msgstr "Mettre à jour le profil" -#: wp-admin/user-edit.php:912 +#: wp-admin/user-edit.php:914 msgid "Additional Capabilities" msgstr "Permissions supplémentaires" -#: wp-admin/user-edit.php:698 +#: wp-admin/user-edit.php:700 msgid "Type your new password again." msgstr "Veuillez saisir une deuxième fois votre mot de passe." -#: wp-admin/user-edit.php:673 +#: wp-admin/user-edit.php:675 msgid "New Password" msgstr "Nouveau mot de passe" -#: wp-admin/user-edit.php:617 +#: wp-admin/user-edit.php:619 msgid "Share a little biographical information to fill out your profile. This may be shown publicly." msgstr "Donnez quelques informations biographiques pour remplir votre profil. Ceci peut être affiché publiquement." -#: wp-admin/user-edit.php:615 +#: wp-admin/user-edit.php:617 msgid "Biographical Info" msgstr "Renseignements biographiques" -#: wp-admin/user-edit.php:611 +#: wp-admin/user-edit.php:613 msgid "About the user" msgstr "À propos du compte" -#: wp-admin/user-edit.php:611 +#: wp-admin/user-edit.php:613 msgid "About Yourself" msgstr "À propos de vous" @@ -13621,11 +13714,11 @@ msgstr "Nom à afficher publiquement" msgid "Nickname" msgstr "Pseudonyme" -#: wp-admin/user-edit.php:493 wp-admin/user-new.php:551 +#: wp-admin/user-edit.php:493 wp-admin/user-new.php:556 msgid "Last Name" msgstr "Nom" -#: wp-admin/user-edit.php:488 wp-admin/user-new.php:547 +#: wp-admin/user-edit.php:488 wp-admin/user-new.php:552 msgid "First Name" msgstr "Prénom" @@ -13662,7 +13755,7 @@ msgstr "Toujours utiliser HTTPS lors de l’utilisation de l’administration" msgid "Use https" msgstr "Utiliser https" -#: wp-admin/user-new.php:354 wp-admin/users.php:641 +#: wp-admin/user-new.php:359 wp-admin/users.php:641 #: wp-admin/network/user-new.php:94 msgid "Edit user" msgstr "Modifier le compte" @@ -13683,7 +13776,7 @@ msgstr "Fichier média définitivement supprimé." msgid "Sorry, you are not allowed to delete these items." msgstr "Désolé, vous n’avez pas l’autorisation de supprimer ces éléments." -#: wp-admin/upgrade.php:74 +#: wp-admin/upgrade.php:93 msgid "Your WordPress database is already up to date!" msgstr "Votre base de données WordPress est déjà à jour !" @@ -13761,7 +13854,7 @@ msgstr "Réafficher cette mise à jour" msgid "Hide this update" msgstr "Masquer cette mise à jour" -#: wp-admin/themes.php:654 +#: wp-admin/themes.php:675 msgid "Broken Themes" msgstr "Thèmes endommagés" @@ -13778,7 +13871,7 @@ msgstr "" msgid "Theme deleted." msgstr "Thème supprimé." -#: wp-admin/theme-editor.php:247 +#: wp-admin/theme-editor.php:252 msgid "Select theme to edit:" msgstr "Sélectionnez le thème à modifier :" @@ -13786,7 +13879,7 @@ msgstr "Sélectionnez le thème à modifier :" msgid "Edit Themes" msgstr "Modifier les thèmes" -#: wp-admin/includes/theme.php:1056 wp-admin/themes.php:1207 +#: wp-admin/includes/theme.php:1056 wp-admin/themes.php:1249 msgid "Tags:" msgstr "Étiquettes :" @@ -13800,7 +13893,7 @@ msgid "You cannot edit this item because it is in the Trash. Please restore it a msgstr "Vous ne pouvez pas modifier ce contenu, car il est dans la corbeille. Sortez-l’en, puis réessayez." #: wp-admin/edit-tags.php:173 wp-admin/includes/class-wp-screen.php:297 -#: wp-admin/includes/post.php:2146 wp-admin/media-upload.php:47 +#: wp-admin/includes/post.php:2157 wp-admin/media-upload.php:47 #: wp-admin/post.php:20 wp-admin/post.php:47 wp-admin/post.php:139 #: wp-admin/term.php:43 msgid "Sorry, you are not allowed to edit this item." @@ -13892,28 +13985,28 @@ msgctxt "Plugin Installer" msgid "Featured" msgstr "Mises en avant" -#: wp-admin/plugin-editor.php:317 wp-admin/theme-editor.php:351 +#: wp-admin/plugin-editor.php:327 wp-admin/theme-editor.php:356 msgid "Update File" msgstr "Mettre à jour le fichier" -#: wp-admin/plugin-editor.php:296 wp-admin/theme-editor.php:325 +#: wp-admin/plugin-editor.php:306 wp-admin/theme-editor.php:330 msgid "Documentation:" msgstr "Documentation :" -#: wp-admin/plugin-editor.php:266 +#: wp-admin/plugin-editor.php:276 msgid "Plugin Files" msgstr "Fichiers de l’extension" -#: wp-admin/plugin-editor.php:243 +#: wp-admin/plugin-editor.php:253 msgid "Select plugin to edit:" msgstr "Sélectionnez l’extension à modifier :" -#: wp-admin/includes/ajax-actions.php:4914 wp-admin/plugin-editor.php:196 -#: wp-admin/theme-editor.php:198 +#: wp-admin/includes/ajax-actions.php:4914 wp-admin/plugin-editor.php:199 +#: wp-admin/theme-editor.php:193 msgid "File edited successfully." msgstr "Le fichier a bien été modifié." -#: wp-admin/includes/file.php:500 wp-admin/plugin-editor.php:125 +#: wp-admin/includes/file.php:500 wp-admin/plugin-editor.php:128 msgid "Files of this type are not editable." msgstr "Les fichiers de ce type ne sont pas éditables." @@ -14136,25 +14229,25 @@ msgstr "La semaine débute le" msgid "Custom:" msgstr "Personnalisé :" -#: wp-admin/options-general.php:434 +#: wp-admin/options-general.php:433 msgid "This timezone is currently in standard time." msgstr "Ce fuseau horaire est actuellement à l’heure d’hiver." #: wp-admin/includes/class-wp-debug-data.php:185 -#: wp-admin/options-general.php:384 +#: wp-admin/options-general.php:383 msgid "Timezone" msgstr "Fuseau horaire" -#: wp-admin/options-general.php:309 +#: wp-admin/options-general.php:308 msgid "New User Default Role" msgstr "Rôle par défaut de tout nouveau compte" -#: wp-admin/options-general.php:304 +#: wp-admin/options-general.php:303 msgid "Anyone can register" msgstr "Tout le monde peut s’inscrire" #. translators: Hidden accessibility text. -#: wp-admin/options-general.php:296 wp-admin/options-general.php:300 +#: wp-admin/options-general.php:295 wp-admin/options-general.php:299 msgid "Membership" msgstr "Inscription" @@ -14288,7 +14381,7 @@ msgstr "L’auteur ou l’autrice d’un commentaire doit renseigner son nom et msgid "Other comment settings" msgstr "Autres réglages des commentaires" -#: wp-admin/edit-form-advanced.php:407 wp-admin/options-discussion.php:16 +#: wp-admin/edit-form-advanced.php:400 wp-admin/options-discussion.php:16 msgid "Discussion Settings" msgstr "Réglages des commentaires" @@ -14320,42 +14413,42 @@ msgstr "Retiré" msgid "Multisite support is not enabled." msgstr "Le support multisites n’est pas activé." -#: wp-admin/menu.php:383 +#: wp-admin/menu.php:394 msgid "Permalinks" msgstr "Permaliens" -#: wp-admin/about.php:52 wp-admin/contribute.php:37 wp-admin/credits.php:40 -#: wp-admin/freedoms.php:43 wp-admin/menu.php:384 +#: wp-admin/about.php:53 wp-admin/contribute.php:37 wp-admin/credits.php:40 +#: wp-admin/freedoms.php:43 wp-admin/menu.php:395 #: wp-admin/options-privacy.php:22 wp-admin/options-privacy.php:157 #: wp-admin/privacy-policy-guide.php:40 wp-admin/privacy.php:13 #: wp-admin/privacy.php:24 wp-admin/privacy.php:37 msgid "Privacy" msgstr "Confidentialité" -#: wp-admin/menu.php:380 +#: wp-admin/menu.php:391 msgid "Reading" msgstr "Lecture" -#: wp-admin/menu.php:379 +#: wp-admin/menu.php:390 msgid "Writing" msgstr "Écriture" -#: wp-admin/menu.php:378 +#: wp-admin/menu.php:389 msgctxt "settings screen" msgid "General" msgstr "Général" -#: wp-admin/menu.php:314 wp-admin/menu.php:326 wp-admin/menu.php:329 -#: wp-admin/user-edit.php:41 wp-admin/user/menu.php:14 +#: wp-admin/menu.php:325 wp-admin/menu.php:337 wp-admin/menu.php:340 +#: wp-admin/user-edit.php:41 wp-admin/user/menu.php:19 msgid "Profile" msgstr "Profil" #. translators: %s: Number of comments. -#: wp-admin/menu.php:96 +#: wp-admin/menu.php:101 msgid "Comments %s" msgstr "Commentaires %s" -#: wp-admin/menu.php:67 +#: wp-admin/menu.php:72 msgid "Library" msgstr "Médiathèque" @@ -14399,20 +14492,15 @@ msgid_plural "%s links deleted." msgstr[0] "%s lien supprimé." msgstr[1] "%s liens supprimés." -#: wp-admin/edit-link-form.php:90 wp-admin/link-add.php:17 -#: wp-admin/link-manager.php:104 wp-admin/menu.php:81 -msgid "Add New Link" -msgstr "Ajouter un lien" - -#: wp-admin/install.php:428 +#: wp-admin/install.php:452 msgid "Success!" msgstr "Quel succès !" -#: wp-admin/install.php:372 +#: wp-admin/install.php:396 msgid "Please provide the following information. Do not worry, you can always change these settings later." msgstr "Veuillez renseigner les informations suivantes. Ne vous inquiétez pas, vous pourrez les modifier plus tard." -#: wp-admin/install.php:371 +#: wp-admin/install.php:395 msgid "Information needed" msgstr "Informations nécessaires" @@ -14449,28 +14537,28 @@ msgid "Error: Please enter a password." msgstr "Erreur : veuillez saisir un mot de passe." #. translators: Default post slug. -#: wp-admin/includes/upgrade.php:240 wp-admin/includes/upgrade.php:520 +#: wp-admin/includes/upgrade.php:249 wp-admin/includes/upgrade.php:529 msgctxt "Default post slug" msgid "hello-world" msgstr "bonjour-tout-le-monde" -#: wp-admin/includes/upgrade.php:238 +#: wp-admin/includes/upgrade.php:247 msgid "Hello world!" msgstr "Bonjour tout le monde !" #. translators: %s: Site link. #. translators: First post content. %s: Site link. -#: wp-admin/includes/schema.php:1268 wp-admin/includes/upgrade.php:211 +#: wp-admin/includes/schema.php:1273 wp-admin/includes/upgrade.php:220 msgid "Welcome to %s. This is your first post. Edit or delete it, then start writing!" msgstr "Bienvenue sur %s. Ceci est votre premier article. Modifiez-le ou supprimez-le, puis lancez-vous !" #. translators: Default category slug. -#: wp-admin/includes/upgrade.php:175 +#: wp-admin/includes/upgrade.php:184 msgctxt "Default category slug" msgid "Uncategorized" msgstr "Non classé" -#: wp-admin/includes/upgrade.php:104 +#: wp-admin/includes/upgrade.php:113 msgid "Note that password carefully! It is a random password that was generated just for you." msgstr "Notez bien ce mot de passe sans vous tromper ! Il a été créé aléatoirement et vous est unique." @@ -14499,34 +14587,34 @@ msgstr "Mettre à jour vers la version %s" msgid "You are using a development version (%1$s). Cool! Please stay updated." msgstr "Vous utilisez une version de développement (%1$s). C’est super ! Veillez à rester à jour." -#: wp-admin/includes/update-core.php:1543 +#: wp-admin/includes/update-core.php:1569 msgid "Upgrading database…" msgstr "Mise à jour de la base de données…" -#: wp-admin/includes/update-core.php:1071 +#: wp-admin/includes/update-core.php:1085 msgid "The update could not be unpacked" msgstr "La mise à jour ne peut pas être décompressée" -#: wp-admin/includes/update-core.php:1053 +#: wp-admin/includes/update-core.php:1067 msgid "Verifying the unpacked files…" msgstr "Vérification des fichiers décompressés…" #. translators: 1: WordPress version number, 2: Minimum required MySQL version #. number, 3: Current MySQL version number. -#: wp-admin/includes/update-core.php:1173 +#: wp-admin/includes/update-core.php:1187 msgid "The update cannot be installed because WordPress %1$s requires MySQL version %2$s or higher. You are running version %3$s." msgstr "Cette mise à jour ne peut être installée car WordPress %1$s nécessite une version de MySQL égale ou supérieure à la %2$s. Votre hébergement utilise MySQL version %3$s." #. translators: 1: WordPress version number, 2: Minimum required PHP version #. number, 3: Current PHP version number. -#: wp-admin/includes/update-core.php:1162 +#: wp-admin/includes/update-core.php:1176 msgid "The update cannot be installed because WordPress %1$s requires PHP version %2$s or higher. You are running version %3$s." msgstr "Cette mise à jour ne peut être installée car WordPress %1$s nécessite une version de PHP égale ou supérieure à la %2$s. Votre hébergement utilise PHP version %3$s." #. translators: 1: WordPress version number, 2: Minimum required PHP version #. number, 3: Minimum required MySQL version number, 4: Current PHP version #. number, 5: Current MySQL version number. -#: wp-admin/includes/update-core.php:1149 +#: wp-admin/includes/update-core.php:1163 msgid "The update cannot be installed because WordPress %1$s requires PHP version %2$s or higher and MySQL version %3$s or higher. You are running PHP version %4$s and MySQL version %5$s." msgstr "Cette mise à jour ne peut être installée car WordPress %1$s nécessite une version de PHP égale ou supérieure à la %2$s, et une version de MySQL égale ou supérieure à la %3$s. Votre hébergement utilise PHP version %4$s et MySQL version %5$s." @@ -14545,7 +14633,7 @@ msgstr "Ce thème est déjà installé." #. translators: %s: Theme version. #: wp-admin/includes/theme.php:867 wp-admin/theme-install.php:537 -#: wp-admin/themes.php:1049 +#: wp-admin/themes.php:1091 msgid "Version: %s" msgstr "Version : %s" @@ -14573,10 +14661,6 @@ msgstr "Article épinglé" msgid "Theme Options" msgstr "Options du thème" -#: wp-admin/includes/theme.php:335 -msgid "Custom Colors" -msgstr "Couleurs personnalisées" - #: wp-admin/includes/theme.php:330 wp-admin/includes/theme.php:388 msgid "Features" msgstr "Fonctionnalités" @@ -14650,10 +14734,6 @@ msgstr "Ajouter un champ personnalisé" msgid "Enter new" msgstr "Saisissez-en un nouveau" -#: wp-admin/includes/template.php:738 -msgid "Add New Custom Field:" -msgstr "Ajouter un champ personnalisé :" - #. translators: Hidden accessibility text. #: wp-admin/includes/template.php:665 msgid "Key" @@ -14681,50 +14761,50 @@ msgstr "Répondre au commentaire" msgid "Missed schedule" msgstr "Planification manquée" -#: wp-admin/includes/class-wp-posts-list-table.php:2017 +#: wp-admin/includes/class-wp-posts-list-table.php:2024 msgid "Make this post sticky" msgstr "Épingler ce contenu" -#: wp-admin/includes/class-wp-posts-list-table.php:2009 +#: wp-admin/includes/class-wp-posts-list-table.php:2016 msgid "Not Sticky" msgstr "Non épinglé" -#: wp-admin/includes/class-wp-posts-list-table.php:1967 +#: wp-admin/includes/class-wp-posts-list-table.php:1974 msgid "Allow Pings" msgstr "Autoriser les notifications par ping" -#: wp-admin/includes/class-wp-posts-list-table.php:1958 +#: wp-admin/includes/class-wp-posts-list-table.php:1965 msgid "Allow Comments" msgstr "Autoriser les commentaires" -#: wp-admin/includes/class-wp-posts-list-table.php:1929 -#: wp-admin/includes/class-wp-posts-list-table.php:1942 +#: wp-admin/includes/class-wp-posts-list-table.php:1936 +#: wp-admin/includes/class-wp-posts-list-table.php:1949 msgid "Do not allow" msgstr "Refuser" -#: wp-admin/includes/class-wp-posts-list-table.php:1928 -#: wp-admin/includes/class-wp-posts-list-table.php:1941 +#: wp-admin/includes/class-wp-posts-list-table.php:1935 +#: wp-admin/includes/class-wp-posts-list-table.php:1948 msgid "Allow" msgstr "Autoriser" #. translators: Between password field and private checkbox on post quick edit #. interface. -#: wp-admin/includes/class-wp-posts-list-table.php:1784 +#: wp-admin/includes/class-wp-posts-list-table.php:1791 msgid "–OR–" msgstr "– OU –" -#: wp-admin/includes/class-wp-posts-list-table.php:1741 -#: wp-admin/includes/class-wp-posts-list-table.php:1844 -#: wp-admin/includes/class-wp-posts-list-table.php:1884 -#: wp-admin/includes/class-wp-posts-list-table.php:1927 -#: wp-admin/includes/class-wp-posts-list-table.php:1940 -#: wp-admin/includes/class-wp-posts-list-table.php:1984 -#: wp-admin/includes/class-wp-posts-list-table.php:2007 -#: wp-admin/includes/class-wp-posts-list-table.php:2032 +#: wp-admin/includes/class-wp-posts-list-table.php:1748 +#: wp-admin/includes/class-wp-posts-list-table.php:1851 +#: wp-admin/includes/class-wp-posts-list-table.php:1891 +#: wp-admin/includes/class-wp-posts-list-table.php:1934 +#: wp-admin/includes/class-wp-posts-list-table.php:1947 +#: wp-admin/includes/class-wp-posts-list-table.php:1991 +#: wp-admin/includes/class-wp-posts-list-table.php:2014 +#: wp-admin/includes/class-wp-posts-list-table.php:2039 msgid "— No Change —" msgstr "– Aucun changement –" -#: wp-admin/includes/class-wp-posts-list-table.php:1681 +#: wp-admin/includes/class-wp-posts-list-table.php:1688 msgid "Bulk Edit" msgstr "Modifications groupées" @@ -14737,7 +14817,7 @@ msgstr "Visible" msgid "Relationship" msgstr "Relation" -#: wp-admin/includes/class-wp-comments-list-table.php:473 +#: wp-admin/includes/class-wp-comments-list-table.php:477 #: wp-admin/includes/class-wp-post-comments-list-table.php:26 msgctxt "column name" msgid "Comment" @@ -14762,18 +14842,18 @@ msgctxt "column name" msgid "Title" msgstr "Titre" -#: wp-admin/includes/class-wp-comments-list-table.php:836 -#: wp-admin/includes/class-wp-posts-list-table.php:1503 +#: wp-admin/includes/class-wp-comments-list-table.php:840 +#: wp-admin/includes/class-wp-posts-list-table.php:1510 #: wp-admin/includes/class-wp-terms-list-table.php:510 msgid "Quick Edit" msgstr "Modification rapide" -#: wp-admin/includes/class-wp-posts-list-table.php:1681 +#: wp-admin/includes/class-wp-posts-list-table.php:1688 #: wp-admin/includes/class-wp-terms-list-table.php:693 msgid "Quick Edit" msgstr "Modification rapide" -#: wp-admin/includes/schema.php:1126 +#: wp-admin/includes/schema.php:1131 msgid "Warning! Wildcard DNS may not be configured correctly!" msgstr "Avertissement ! L’enregistrement DNS générique (joker) peut ne pas être configuré correctement !" @@ -14787,11 +14867,7 @@ msgstr "Un site utilisant %s" msgid "Just another WordPress site" msgstr "Un site utilisant WordPress" -#: wp-admin/includes/post.php:1569 wp-admin/includes/post.php:1594 -msgid "Permalink:" -msgstr "Permalien :" - -#: wp-admin/includes/post.php:761 +#: wp-admin/includes/post.php:767 msgid "Auto Draft" msgstr "Brouillon auto" @@ -15084,7 +15160,7 @@ msgstr "Ce lien est privé" msgid "Visit Link" msgstr "Visiter le lien" -#: wp-admin/includes/class-wp-posts-list-table.php:1838 +#: wp-admin/includes/class-wp-posts-list-table.php:1845 msgid "Main Page (no parent)" msgstr "Publication principale (pas de publication parente)" @@ -15108,11 +15184,6 @@ msgstr "Déjà notifié(s) par ping :" msgid "New category name" msgstr "Nom de la nouvelle catégorie" -#. translators: Hidden accessibility text. -#: wp-admin/includes/meta-boxes.php:1203 wp-admin/includes/meta-boxes.php:1208 -msgid "+ Add New Category" -msgstr "+ Ajouter une catégorie" - #: wp-admin/includes/meta-boxes.php:246 wp-admin/includes/meta-boxes.php:260 msgid "Publish immediately" msgstr "Publier tout de suite" @@ -15130,100 +15201,100 @@ msgstr "État :" msgid "Preview Changes" msgstr "Prévisualiser les modifications" -#: wp-admin/includes/media.php:2974 +#: wp-admin/includes/media.php:2978 msgid "Link text, e.g. “Ransom Demands (PDF)”" msgstr "Texte du lien, par exemple « Théorie sur le chaos (PDF) »" -#: wp-admin/includes/media.php:3005 +#: wp-admin/includes/media.php:3009 msgid "Link to image" msgstr "Lier à l’image" -#: wp-admin/includes/media.php:3000 +#: wp-admin/includes/media.php:3004 msgid "Link Image To:" msgstr "Lier l’image à :" -#: wp-admin/includes/media.php:2931 +#: wp-admin/includes/media.php:2935 msgid "Image Caption" msgstr "Légende de l’image" -#: wp-admin/includes/media.php:2884 +#: wp-admin/includes/media.php:2888 msgid "Filter »" msgstr "Filtrer »" -#: wp-admin/includes/media.php:2792 +#: wp-admin/includes/media.php:2797 msgid "All Types" msgstr "Tous les types" #. translators: Hidden accessibility text. #: wp-admin/includes/class-wp-media-list-table.php:319 #: wp-admin/includes/class-wp-media-list-table.php:323 -#: wp-admin/includes/media.php:2757 +#: wp-admin/includes/media.php:2762 msgid "Search Media" msgstr "Chercher parmi les médias" -#: wp-admin/includes/media.php:2691 +#: wp-admin/includes/media.php:2696 msgid "Update gallery settings" msgstr "Mettre à jour les réglages de galerie" -#: wp-admin/includes/media.php:2670 +#: wp-admin/includes/media.php:2675 msgid "Gallery columns:" msgstr "Colonnes de galerie :" -#: wp-admin/includes/media.php:2655 +#: wp-admin/includes/media.php:2660 msgid "Order:" msgstr "Ordre :" -#: wp-admin/includes/media.php:2647 +#: wp-admin/includes/media.php:2652 msgid "Random" msgstr "Aléatoire" -#: wp-admin/includes/media.php:2646 +#: wp-admin/includes/media.php:2651 msgid "Date/Time" msgstr "Horodatage" -#: wp-admin/includes/media.php:2644 +#: wp-admin/includes/media.php:2649 msgid "Menu order" msgstr "Ordre du menu" -#: wp-admin/includes/media.php:2639 +#: wp-admin/includes/media.php:2644 msgid "Order images by:" msgstr "Ranger les images par :" -#: wp-admin/includes/media.php:2629 +#: wp-admin/includes/media.php:2634 msgid "Image File" msgstr "Fichier image" -#: wp-admin/includes/media.php:2624 +#: wp-admin/includes/media.php:2629 msgid "Link thumbnails to:" msgstr "Lier les miniatures à :" -#: wp-admin/includes/media.php:2583 wp-admin/includes/media.php:2663 +#: wp-admin/includes/media.php:2588 wp-admin/includes/media.php:2668 msgid "Descending" msgstr "Décroissant" -#: wp-admin/includes/media.php:2582 wp-admin/includes/media.php:2660 +#: wp-admin/includes/media.php:2587 wp-admin/includes/media.php:2665 msgid "Ascending" msgstr "Croissant" -#: wp-admin/includes/media.php:2581 +#: wp-admin/includes/media.php:2586 msgid "Sort Order:" msgstr "Ordre de tri :" -#: wp-admin/includes/media.php:2577 +#: wp-admin/includes/media.php:2582 msgid "All Tabs:" msgstr "Tous les onglets :" -#: wp-admin/includes/media.php:2385 wp-admin/includes/media.php:2603 -#: wp-admin/includes/media.php:2910 +#: wp-admin/includes/media.php:2390 wp-admin/includes/media.php:2608 +#: wp-admin/includes/media.php:2914 msgid "Save all changes" msgstr "Enregistrer toutes les modifications" -#: wp-admin/includes/media.php:2355 +#: wp-admin/includes/media.php:2360 msgid "Add media files from your computer" msgstr "Ajouter un fichier média depuis votre ordinateur" -#: wp-admin/includes/media.php:1730 wp-admin/includes/media.php:3011 -#: wp-admin/includes/media.php:3017 +#: wp-admin/includes/media.php:1730 wp-admin/includes/media.php:3015 +#: wp-admin/includes/media.php:3021 msgid "Insert into Post" msgstr "Insérer dans la publication" @@ -15231,9 +15302,9 @@ msgstr "Insérer dans la publication" msgid "Upload date:" msgstr "Date de téléversement :" -#: wp-admin/includes/media.php:1621 wp-admin/includes/media.php:2579 -#: wp-admin/install.php:149 wp-admin/user-edit.php:684 -#: wp-admin/user-new.php:603 wp-admin/js/password-toggle.js:28 +#: wp-admin/includes/media.php:1621 wp-admin/includes/media.php:2584 +#: wp-admin/install.php:149 wp-admin/user-edit.php:686 +#: wp-admin/user-new.php:608 wp-admin/js/password-toggle.js:28 #: wp-admin/js/user-profile.js:91 msgid "Hide" msgstr "Masquer" @@ -15242,7 +15313,7 @@ msgstr "Masquer" msgid "Location of the uploaded file." msgstr "Emplacement du fichier envoyé." -#: wp-admin/includes/media.php:1486 wp-admin/includes/media.php:2981 +#: wp-admin/includes/media.php:1486 wp-admin/includes/media.php:2985 msgid "Alt text for the image, e.g. “The Mona Lisa”" msgstr "Texte alternatif de l’image, par ex. : « La Joconde »" @@ -15251,10 +15322,10 @@ msgid "File URL" msgstr "URL du fichier" #: wp-admin/includes/class-wp-debug-data.php:298 -#: wp-admin/includes/class-wp-privacy-policy-content.php:704 -#: wp-admin/includes/media.php:540 wp-admin/includes/template.php:2140 +#: wp-admin/includes/class-wp-privacy-policy-content.php:702 +#: wp-admin/includes/media.php:540 wp-admin/includes/template.php:2139 #: wp-admin/install.php:77 wp-admin/maint/repair.php:24 -#: wp-admin/setup-config.php:115 wp-admin/upgrade.php:69 +#: wp-admin/setup-config.php:115 wp-admin/upgrade.php:88 msgid "WordPress" msgstr "WordPress" @@ -15385,60 +15456,60 @@ msgstr "Retourner verticalement" msgid "Image data does not exist. Please re-upload the image." msgstr "Il n’y a aucune donnée d’image. Veuillez retéléverser l’image." -#: wp-admin/includes/file.php:2643 +#: wp-admin/includes/file.php:2661 msgid "Proceed" msgstr "Continuer" -#: wp-admin/includes/file.php:2591 +#: wp-admin/includes/file.php:2609 msgid "Connection Type" msgstr "Type de connexion" -#: wp-admin/includes/file.php:2618 +#: wp-admin/includes/file.php:2636 msgid "Private Key:" msgstr "Clé privée :" -#: wp-admin/includes/file.php:2614 +#: wp-admin/includes/file.php:2632 msgid "Public Key:" msgstr "Clé publique :" -#: wp-admin/includes/file.php:2612 +#: wp-admin/includes/file.php:2630 msgid "Authentication Keys" msgstr "Clés d’authentification" -#: wp-admin/includes/file.php:2570 +#: wp-admin/includes/file.php:2588 msgid "Hostname" msgstr "Nom de l’hôte :" -#: wp-admin/includes/file.php:2536 +#: wp-admin/includes/file.php:2554 msgid "Connection Information" msgstr "Informations de connexion" -#: wp-admin/includes/file.php:2510 +#: wp-admin/includes/file.php:2528 msgid "SSH2" msgstr "SSH2" -#: wp-admin/includes/file.php:2507 +#: wp-admin/includes/file.php:2525 msgid "FTPS (SSL)" msgstr "FTPS (SSL)" -#: wp-admin/includes/file.php:2504 +#: wp-admin/includes/file.php:2522 msgid "FTP" msgstr "FTP" -#: wp-admin/includes/file.php:1875 +#: wp-admin/includes/file.php:1893 msgid "Empty archive." msgstr "Archive vide." -#: wp-admin/includes/file.php:1813 wp-admin/includes/file.php:1967 -#: wp-admin/includes/file.php:2025 wp-admin/includes/update-core.php:1481 +#: wp-admin/includes/file.php:1831 wp-admin/includes/file.php:1985 +#: wp-admin/includes/file.php:2043 wp-admin/includes/update-core.php:1507 msgid "Could not copy file." msgstr "Impossible de copier le fichier." -#: wp-admin/includes/file.php:1808 +#: wp-admin/includes/file.php:1826 msgid "Could not extract file from archive." msgstr "Impossible d’extraire les fichiers depuis l’archive." -#: wp-admin/includes/file.php:1683 wp-admin/includes/file.php:1788 +#: wp-admin/includes/file.php:1701 wp-admin/includes/file.php:1806 msgid "Could not retrieve file from archive." msgstr "Impossible de récupérer le fichier depuis l’archive." @@ -15576,42 +15647,42 @@ msgstr "[En attente]" msgid "From %1$s on %2$s %3$s" msgstr "Par %1$s, sur %2$s%3$s" -#: wp-admin/includes/class-wp-comments-list-table.php:814 +#: wp-admin/includes/class-wp-comments-list-table.php:818 #: wp-admin/includes/dashboard.php:793 msgid "Move this comment to the Trash" msgstr "Déplacer ce commentaire dans la corbeille" #. translators: "Mark as spam" link. -#: wp-admin/includes/class-wp-comments-list-table.php:779 +#: wp-admin/includes/class-wp-comments-list-table.php:783 #: wp-admin/includes/dashboard.php:777 msgctxt "verb" msgid "Spam" msgstr "Indésirable" -#: wp-admin/includes/class-wp-comments-list-table.php:777 +#: wp-admin/includes/class-wp-comments-list-table.php:781 #: wp-admin/includes/dashboard.php:775 msgid "Mark this comment as spam" msgstr "Marquer ce commentaire comme indésirable" -#: wp-admin/includes/class-wp-comments-list-table.php:845 +#: wp-admin/includes/class-wp-comments-list-table.php:849 #: wp-admin/includes/dashboard.php:767 msgid "Reply to this comment" msgstr "Répondre à ce commentaire" -#: wp-admin/includes/class-wp-comments-list-table.php:742 -#: wp-admin/includes/class-wp-comments-list-table.php:767 +#: wp-admin/includes/class-wp-comments-list-table.php:746 +#: wp-admin/includes/class-wp-comments-list-table.php:771 #: wp-admin/includes/dashboard.php:752 msgid "Unapprove this comment" msgstr "Désapprouver ce commentaire" -#: wp-admin/includes/class-wp-comments-list-table.php:750 -#: wp-admin/includes/class-wp-comments-list-table.php:759 +#: wp-admin/includes/class-wp-comments-list-table.php:754 +#: wp-admin/includes/class-wp-comments-list-table.php:763 #: wp-admin/includes/dashboard.php:744 msgid "Approve this comment" msgstr "Approuver ce commentaire" #. translators: Hidden accessibility text. -#: wp-admin/includes/nav-menu.php:531 wp-admin/includes/nav-menu.php:903 +#: wp-admin/includes/nav-menu.php:532 wp-admin/includes/nav-menu.php:904 msgid "Page" msgstr "Page" @@ -15648,7 +15719,7 @@ msgstr "Retourner à l’installation des thèmes" #. translators: %s: Post title. #. translators: %s: Theme name. -#: wp-admin/includes/class-wp-posts-list-table.php:1546 +#: wp-admin/includes/class-wp-posts-list-table.php:1553 #: wp-admin/includes/class-wp-theme-install-list-table.php:286 msgid "Preview “%s”" msgstr "Prévisualiser « %s »" @@ -15740,24 +15811,24 @@ msgid "The plugin is at the latest version." msgstr "Vous avez la dernière version de cette extension." #: wp-admin/includes/class-wp-upgrader.php:210 -#: wp-admin/includes/update-core.php:1428 +#: wp-admin/includes/update-core.php:1454 msgid "Disabling Maintenance mode…" msgstr "Désactivation du mode maintenance…" #: wp-admin/includes/class-wp-upgrader.php:209 -#: wp-admin/includes/update-core.php:1279 +#: wp-admin/includes/update-core.php:1305 msgid "Enabling Maintenance mode…" msgstr "Activation du mode maintenance…" #: wp-admin/includes/class-file-upload-upgrader.php:82 #: wp-admin/includes/class-file-upload-upgrader.php:91 -#: wp-admin/includes/file.php:1673 wp-admin/includes/file.php:1871 +#: wp-admin/includes/file.php:1691 wp-admin/includes/file.php:1889 msgid "Incompatible Archive." msgstr "Archive incompatible." -#: wp-admin/includes/class-wp-upgrader.php:204 wp-admin/includes/file.php:1759 -#: wp-admin/includes/file.php:1940 wp-admin/includes/file.php:2033 -#: wp-admin/includes/file.php:2116 +#: wp-admin/includes/class-wp-upgrader.php:204 wp-admin/includes/file.php:1777 +#: wp-admin/includes/file.php:1958 wp-admin/includes/file.php:2051 +#: wp-admin/includes/file.php:2134 msgid "Could not create directory." msgstr "Impossible de créer le dossier." @@ -15878,11 +15949,11 @@ msgstr "Trouvé %s" msgid "Changing to %s" msgstr "Modifier à %s" -#: wp-admin/includes/bookmark.php:235 +#: wp-admin/includes/bookmark.php:236 msgid "Could not insert link into the database." msgstr "Impossible d’insérer le lien dans la base de données." -#: wp-admin/includes/bookmark.php:227 +#: wp-admin/includes/bookmark.php:228 msgid "Could not update link in the database." msgstr "Impossible de mettre à jour le lien dans la base de données." @@ -15920,7 +15991,7 @@ msgstr "Ce format nommé WordPress eXtended RSS (ou WXR) contient tous vos artic msgid "When you click the button below WordPress will create an XML file for you to save to your computer." msgstr "Cliquez sur ce bouton pour que WordPress crée un fichier XML que vous pourrez enregistrer sur votre ordinateur." -#: wp-admin/export.php:20 wp-admin/menu.php:365 +#: wp-admin/export.php:20 wp-admin/menu.php:376 msgid "Export" msgstr "Exporter" @@ -15971,7 +16042,7 @@ msgstr "Contenu mis à jour." msgid "Item deleted." msgstr "Contenu supprimé." -#: wp-admin/edit-tag-form.php:198 wp-admin/edit-tags.php:512 +#: wp-admin/edit-tag-form.php:198 wp-admin/edit-tags.php:515 msgid "Categories, unlike tags, can have a hierarchy. You might have a Jazz category, and under that have children categories for Bebop and Big Band. Totally optional." msgstr "Les catégories, contrairement aux étiquettes, peuvent avoir une hiérarchie. Vous pouvez avoir une catégorie nommée Jazz, et à l’intérieur, plusieurs catégories comme Bebop et Big Band. Ceci est totalement facultatif." @@ -15997,7 +16068,7 @@ msgstr "Lien ajouté." #. translators: %s: URL to Links screen. #: wp-admin/edit-link-form.php:22 -msgid "Links / Add New Link" +msgid "Links / Add Link" msgstr "Liens / Ajouter un lien" #: wp-admin/edit-link-form.php:17 wp-admin/includes/meta-boxes.php:1149 @@ -16019,7 +16090,7 @@ msgstr "Mettre à jour le commentaire" #. translators: 1: Post edited date, 2: Post edited time. #. translators: 1: Date of last edit, 2: Time of last edit. -#: wp-admin/edit-form-advanced.php:661 wp-admin/includes/ajax-actions.php:2902 +#: wp-admin/edit-form-advanced.php:660 wp-admin/includes/ajax-actions.php:2902 msgid "Last edited on %1$s at %2$s" msgstr "Dernière modification le %1$s à %2$s" @@ -16027,7 +16098,7 @@ msgstr "Dernière modification le %1$s à %2$s" #. Post edited time. #. translators: 1: User's display name, 2: Date of last edit, 3: Time of last #. edit. -#: wp-admin/edit-form-advanced.php:653 wp-admin/includes/ajax-actions.php:2899 +#: wp-admin/edit-form-advanced.php:652 wp-admin/includes/ajax-actions.php:2899 msgid "Last edited by %1$s on %2$s at %3$s" msgstr "Dernière modification par %1$s, le %2$s à %3$s" @@ -16040,24 +16111,24 @@ msgid "Send Trackbacks" msgstr "Envoyer des rétroliens" #. translators: %s: Date and time of the revision. -#: wp-admin/edit-form-advanced.php:202 +#: wp-admin/edit-form-advanced.php:195 msgid "Page restored to revision from %s." msgstr "Page rétablie à partir de la révision du %s." -#: wp-admin/edit-form-advanced.php:189 +#: wp-admin/edit-form-advanced.php:182 msgid "Post saved." msgstr "Publication enregistrée." #. translators: %s: Date and time of the revision. -#: wp-admin/edit-form-advanced.php:187 +#: wp-admin/edit-form-advanced.php:180 msgid "Post restored to revision from %s." msgstr "Publication rétablie à partir de la révision du %s." -#: wp-admin/edit-form-advanced.php:184 wp-admin/edit-form-advanced.php:199 +#: wp-admin/edit-form-advanced.php:177 wp-admin/edit-form-advanced.php:192 msgid "Custom field deleted." msgstr "Champ personnalisé supprimé." -#: wp-admin/edit-form-advanced.php:183 wp-admin/edit-form-advanced.php:198 +#: wp-admin/edit-form-advanced.php:176 wp-admin/edit-form-advanced.php:191 msgid "Custom field updated." msgstr "Champ personnalisé mis à jour." @@ -16065,17 +16136,17 @@ msgstr "Champ personnalisé mis à jour." msgid "No comments found." msgstr "Aucun commentaire trouvé." -#: wp-admin/includes/class-wp-comments-list-table.php:429 +#: wp-admin/includes/class-wp-comments-list-table.php:433 #: wp-admin/includes/class-wp-media-list-table.php:222 #: wp-admin/includes/class-wp-posts-list-table.php:607 msgid "Empty Trash" msgstr "Vider la corbeille" -#: wp-admin/includes/class-wp-comments-list-table.php:429 +#: wp-admin/includes/class-wp-comments-list-table.php:433 msgid "Empty Spam" msgstr "Supprimer tous les indésirables" -#: wp-admin/includes/class-wp-comments-list-table.php:421 +#: wp-admin/includes/class-wp-comments-list-table.php:425 #: wp-admin/includes/class-wp-links-list-table.php:123 #: wp-admin/includes/class-wp-media-list-table.php:217 #: wp-admin/includes/class-wp-posts-list-table.php:600 @@ -16083,21 +16154,21 @@ msgstr "Supprimer tous les indésirables" msgid "Filter" msgstr "Filtrer" -#: wp-admin/includes/class-wp-comments-list-table.php:505 -#: wp-admin/includes/class-wp-posts-list-table.php:1938 +#: wp-admin/includes/class-wp-comments-list-table.php:509 +#: wp-admin/includes/class-wp-posts-list-table.php:1945 msgid "Pings" msgstr "Pings" -#: wp-admin/includes/class-wp-comments-list-table.php:367 -#: wp-admin/includes/class-wp-comments-list-table.php:751 -#: wp-admin/includes/class-wp-comments-list-table.php:760 +#: wp-admin/includes/class-wp-comments-list-table.php:371 +#: wp-admin/includes/class-wp-comments-list-table.php:755 +#: wp-admin/includes/class-wp-comments-list-table.php:764 #: wp-admin/includes/dashboard.php:745 msgid "Approve" msgstr "Approuver" -#: wp-admin/includes/class-wp-comments-list-table.php:363 -#: wp-admin/includes/class-wp-comments-list-table.php:743 -#: wp-admin/includes/class-wp-comments-list-table.php:768 +#: wp-admin/includes/class-wp-comments-list-table.php:367 +#: wp-admin/includes/class-wp-comments-list-table.php:747 +#: wp-admin/includes/class-wp-comments-list-table.php:772 #: wp-admin/includes/dashboard.php:753 msgid "Unapprove" msgstr "Désapprouver" @@ -16149,31 +16220,31 @@ msgstr[0] "%s commentaire approuvé." msgstr[1] "%s commentaires approuvés." #: wp-admin/includes/class-wp-media-list-table.php:194 -#: wp-admin/includes/class-wp-media-list-table.php:621 -#: wp-admin/includes/class-wp-media-list-table.php:851 +#: wp-admin/includes/class-wp-media-list-table.php:628 +#: wp-admin/includes/class-wp-media-list-table.php:858 msgid "Attach" msgstr "Joindre" -#: wp-admin/includes/class-wp-media-list-table.php:611 +#: wp-admin/includes/class-wp-media-list-table.php:618 msgid "(Unattached)" msgstr "(Non attaché)" -#: wp-admin/includes/class-wp-media-list-table.php:540 +#: wp-admin/includes/class-wp-media-list-table.php:547 #: wp-admin/includes/class-wp-posts-list-table.php:1197 msgid "Unpublished" msgstr "Non publié" #. translators: %s: Attachment title. #. translators: %s: Post title. -#: wp-admin/includes/class-wp-media-list-table.php:818 -#: wp-admin/includes/class-wp-posts-list-table.php:1555 +#: wp-admin/includes/class-wp-media-list-table.php:825 +#: wp-admin/includes/class-wp-posts-list-table.php:1562 msgid "View “%s”" msgstr "Afficher « %s »" #: wp-admin/edit-form-comment.php:242 -#: wp-admin/includes/class-wp-comments-list-table.php:807 -#: wp-admin/includes/class-wp-media-list-table.php:803 -#: wp-admin/includes/class-wp-posts-list-table.php:1533 +#: wp-admin/includes/class-wp-comments-list-table.php:811 +#: wp-admin/includes/class-wp-media-list-table.php:810 +#: wp-admin/includes/class-wp-posts-list-table.php:1540 #: wp-admin/includes/dashboard.php:786 wp-admin/includes/media.php:1736 msgid "Delete Permanently" msgstr "Supprimer définitivement" @@ -16183,8 +16254,8 @@ msgstr "Supprimer définitivement" #. translators: %s: Post title. #. translators: %s: Taxonomy term name. #: wp-admin/includes/class-wp-links-list-table.php:205 -#: wp-admin/includes/class-wp-media-list-table.php:770 -#: wp-admin/includes/class-wp-posts-list-table.php:1484 +#: wp-admin/includes/class-wp-media-list-table.php:777 +#: wp-admin/includes/class-wp-posts-list-table.php:1491 #: wp-admin/includes/class-wp-terms-list-table.php:491 #: wp-admin/includes/dashboard.php:675 wp-admin/includes/dashboard.php:1039 msgid "Edit “%s”" @@ -16209,8 +16280,8 @@ msgstr "L’entête a été mis à jour. Visiter le site pour msgid "Custom Header" msgstr "Personnalisation de l’entête" -#: wp-admin/includes/dashboard.php:251 wp-admin/includes/template.php:2603 -#: wp-admin/nav-menus.php:926 wp-admin/options.php:440 +#: wp-admin/includes/dashboard.php:251 wp-admin/includes/template.php:2602 +#: wp-admin/nav-menus.php:928 wp-admin/options.php:440 msgid "Save Changes" msgstr "Enregistrer les modifications" @@ -16275,16 +16346,16 @@ msgstr "Retour" msgid "Edit Comment" msgstr "Modifier le commentaire" -#: wp-admin/admin.php:338 wp-admin/import.php:19 wp-admin/menu.php:364 +#: wp-admin/admin.php:339 wp-admin/import.php:19 wp-admin/menu.php:375 msgid "Import" msgstr "Importer" #. translators: %s: Admin page generated by a plugin. -#: wp-admin/admin.php:269 +#: wp-admin/admin.php:270 msgid "Cannot load %s." msgstr "Impossible de charger %s." -#: wp-admin/admin.php:262 +#: wp-admin/admin.php:263 msgid "Invalid plugin page." msgstr "Page d’extension non valide." @@ -16337,12 +16408,12 @@ msgstr "Vous n’avez pas saisi de nom de catégorie." msgid "Comment %d does not exist" msgstr "Le commentaire %d n’existe pas." -#: wp-admin/includes/media.php:2835 wp-admin/includes/nav-menu.php:529 -#: wp-admin/includes/nav-menu.php:901 +#: wp-admin/includes/media.php:2840 wp-admin/includes/nav-menu.php:530 +#: wp-admin/includes/nav-menu.php:902 msgid "»" msgstr "»" -#: wp-admin/includes/media.php:2834 wp-admin/includes/nav-menu.php:528 -#: wp-admin/includes/nav-menu.php:900 +#: wp-admin/includes/media.php:2839 wp-admin/includes/nav-menu.php:529 +#: wp-admin/includes/nav-menu.php:901 msgid "«" msgstr "«" \ No newline at end of file diff --git a/web/app/languages/admin-network-en_GB.l10n.php b/web/app/languages/admin-network-en_GB.l10n.php old mode 100755 new mode 100644 index b45b9f4b..a57cd490 --- a/web/app/languages/admin-network-en_GB.l10n.php +++ b/web/app/languages/admin-network-en_GB.l10n.php @@ -1,2 +1,2 @@ 'GlotPress/4.0.1','translation-revision-date'=>'2024-06-28 14:48:02+0000','plural-forms'=>'nplurals=2; plural=n != 1;','project-id-version'=>'WordPress - 6.7.x - Development - Administration - Network Admin','language'=>'en_GB','messages'=>['Documentation on Upgrade Network'=>'Documentation on Upgrade Network','Deleting a site is a permanent action that cannot be undone. This will delete the entire site and its uploads directory.'=>'Deleting a site is a permanent action that cannot be undone. This will delete the entire site and its uploads directory.','Delete this site permanently'=>'Delete this site permanently','Visit to go to the front-end of the live site.'=>'Visit to go to the front end of the live site.','Documentation on Network Settings'=>'Documentation on Network Settings','Documentation on the Network Admin'=>'Documentation on the Network Admin','Documentation on Creating a Network'=>'Documentation on Creating a Network','https://developer.wordpress.org/advanced-administration/server/web-server/nginx/'=>'https://developer.wordpress.org/advanced-administration/server/web-server/nginx/','siteActivate'=>'Activate','Missing site title.'=>'Missing site title.','Table ordered by User Registered Date.'=>'Table ordered by User Registered Date.','Table ordered by Theme Name.'=>'Table ordered by Theme Name.','Table ordered by Site Registered Date.'=>'Table ordered by Site Registered Date.','Table ordered by Last Updated.'=>'Table ordered by Last Updated.','Table ordered by Site Path.'=>'Table ordered by Site Path.','Table ordered by Site Domain Name.'=>'Table ordered by Site Domain Name.','Network configuration authentication keys'=>'Network configuration authentication keys','Network configuration rules for %s'=>'Network configuration rules for %s','WordPress has been updated! Next and final step is to individually upgrade the sites in your network.'=>'WordPress has been updated! Next and final step is to individually upgrade the sites in your network.','Cannot create an empty site.'=>'Cannot create an empty site.','You should back up your existing %s file.'=>'You should back up your existing %s file.','You should back up your existing %1$s and %2$s files.'=>'You should back up your existing %1$s and %2$s files.','Visit theme site for %s'=>'Visit theme site for %s','Child theme of %s'=>'Child theme of %s','sitePublic'=>'Public','siteNot spam'=>'Not spam','%s theme will no longer be auto-updated.'=>'%s theme will no longer be auto-updated.' . "\0" . '%s themes will no longer be auto-updated.','%s theme will be auto-updated.'=>'%s theme will be auto-updated.' . "\0" . '%s themes will be auto-updated.','Sorry, you are not allowed to change themes automatic update settings.'=>'Sorry, you are not allowed to change themes automatic update settings.','No themes are currently available.'=>'No themes are currently available.','Y/m/d g:i:s a'=>'j F Y H:i:s','It seems your network is running with Nginx web server. Learn more about further configuration.'=>'It seems your network is running with the Nginx web server. Learn more about further configuration.','Deleted (%s)'=>'Deleted (%s)' . "\0" . 'Deleted (%s)','sitesSpam (%s)'=>'Spam (%s)' . "\0" . 'Spam (%s)','Mature (%s)'=>'Mature (%s)' . "\0" . 'Mature (%s)','Archived (%s)'=>'Archived (%s)' . "\0" . 'Archived (%s)','Public (%s)'=>'Public (%s)' . "\0" . 'Public (%1$s)','sitesAll (%s)'=>'All (%s)' . "\0" . 'All (%s)','themesUpdate Available (%s)'=>'Update Available (%s)' . "\0" . 'Update Available (%s)','Main'=>'Main','Documentation on the Network Screen'=>'Documentation on the Network Screen','The constant %s cannot be defined when creating a network.'=>'The constant %s cannot be defined when creating a network.','You are about to delete the following sites:'=>'You are about to delete the following sites:','User could not be added to this site.'=>'User could not be added to this site.','The username and a link to set the password will be mailed to this email address.'=>'The username and a link to set the password will be mailed to this email address.','There is a pending change of the network admin email to %s.'=>'There is a pending change of the network admin email to %s.','Sub-domain Installation'=>'Sub-domain Installation','Sub-directory Installation'=>'Sub-directory Installation','Active Child Theme'=>'Active Child Theme','%s KB'=>'%s KB','%s Sites'=>'%s Sites','Sorry, you are not allowed to delete themes for this site.'=>'Sorry, you are not allowed to delete themes for this site.','Sorry, you are not allowed to manage network themes.'=>'Sorry, you are not allowed to manage network themes.','Sorry, you are not allowed to delete that site.'=>'Sorry, you are not allowed to delete that site.','Sorry, you are not allowed to manage themes for this site.'=>'Sorry, you are not allowed to manage themes for this site.','Sorry, you are not allowed to add sites to this network.'=>'Sorry, you are not allowed to add sites to this network.','Sorry, you are not allowed to edit this site.'=>'Sorry, you are not allowed to edit this site.','The email address of the first comment author on a new site.'=>'The email address of the first comment author on a new site.','First Comment Email'=>'First Comment Email','That’s all, stop editing! Happy publishing.'=>'That’s all, stop editing! Happy publishing.','Add the following to your %1$s file in %2$s above the line reading %3$s:'=>'Add the following to your %1$s file in %2$s above the line reading %3$s:','theme%1$s by %2$s'=>'%1$s by %2$s','Only lowercase letters (a-z), numbers, and hyphens are allowed.'=>'Only lowercase letters (a-z), numbers, and hyphens are allowed.','These unique authentication keys are also missing from your %s file.'=>'These unique authentication keys are also missing from your %s file.','This unique authentication key is also missing from your %s file.'=>'This unique authentication key is also missing from your %s file.','Because you are using %1$s, the sites in your WordPress network must use sub-directories. Consider using %2$s if you wish to use sub-domains.'=>'Because you are using %1$s, the sites in your WordPress network must use sub-directories. Consider using %2$s if you wish to use sub-domains.','The internet address of your network will be %s.'=>'The internet address of your network will be %s.','You should consider changing your site domain to %1$s before enabling the network feature. It will still be possible to visit your site using the %3$s prefix with an address like %2$s but any links will not have the %3$s prefix.'=>'You should consider changing your site domain to %1$s before enabling the network feature. It will still be possible to visit your site using the %3$s prefix with an address like %2$s, but any links will not have the %3$s prefix.','You cannot change this later.'=>'You cannot change this later.','Please choose whether you would like sites in your WordPress network to use sub-domains or sub-directories.'=>'Please choose whether you would like sites in your WordPress network to use sub-domains or sub-directories.','If %1$s is disabled, ask your administrator to enable that module, or look at the Apache documentation or elsewhere for help setting it up.'=>'If %1$s is disabled, ask your administrator to enable that module, or look at the Apache documentation or elsewhere for help setting it up.','It looks like the Apache %s module is not installed.'=>'It looks like the Apache %s module is not installed.','Please make sure the Apache %s module is installed as it will be used at the end of this installation.'=>'Please make sure the Apache %s module is installed as it will be used at the end of this installation.','userRegistered'=>'Registered','Super Admin (%s)'=>'Super Admin (%s)' . "\0" . 'Super Admins (%s)','userNot spam'=>'Not spam','userMark as spam'=>'Mark as spam','Visit Theme Site'=>'Visit Theme Site','Broken Theme:'=>'Broken Theme:','Network Disable %s'=>'Network Disable %s','Disable %s'=>'Disable %s','Network Enable %s'=>'Network Enable %s','Enable %s'=>'Enable %s','Network Disable'=>'Network Disable','themesBroken (%s)'=>'Broken (%s)' . "\0" . 'Broken (%s)','themesDisabled (%s)'=>'Disabled (%s)' . "\0" . 'Disabled (%s)','themesEnabled (%s)'=>'Enabled (%s)' . "\0" . 'Enabled (%s)','themesAll (%s)'=>'All (%s)' . "\0" . 'All (%s)','No themes found.'=>'No themes found.','verb; siteArchive'=>'Archive','Unarchive'=>'Unarchive','Never'=>'Never','%1$s – %2$s'=>'%1$s – %2$s','siteRegistered'=>'Registered','Last Updated'=>'Last Updated','siteNot Spam'=>'Not Spam','siteMark as spam'=>'Mark as spam','No sites found.'=>'No sites found.','Mature'=>'Mature','Deleted'=>'Deleted','siteSpam'=>'Spam','Archived'=>'Archived','A password reset link will be sent to the user via email.'=>'A password reset link will be sent to the user via email.','If registration is disabled, please set %1$s in %2$s to a URL you will redirect visitors to if they visit a non-existent site.'=>'If registration is disabled, please set %1$s in %2$s to a URL you will redirect visitors to if they visit a non-existent site.','You must define the %1$s constant as true in your %2$s file to allow creation of a Network.'=>'You must define the %1$s constant as true in your %2$s file to allow creation of a Network.','Themes list navigation'=>'Themes list navigation','Sites list'=>'Sites list','Sites list navigation'=>'Sites list navigation','Site users list'=>'Site users list','Site users list navigation'=>'Site users list navigation','Filter site users list'=>'Filter site users list','Site themes list'=>'Site themes list','Site themes list navigation'=>'Site themes list navigation','Filter site themes list'=>'Filter site themes list','The domain or path entered conflicts with an existing username.'=>'The domain or path entered conflicts with an existing username.','The requested action is not valid.'=>'The requested action is not valid.','You are about to mark the site %s as not mature.'=>'You are about to mark the site %s as not mature.','You are about to mark the site %s as mature.'=>'You are about to mark the site %s as mature.','You are about to delete the site %s.'=>'You are about to delete the site %s.','You are about to mark the site %s as spam.'=>'You are about to mark the site %s as spam.','You are about to unspam the site %s.'=>'You are about to unspam the site %s.','You are about to archive the site %s.'=>'You are about to archive the site %s.','You are about to unarchive the site %s.'=>'You are about to unarchive the site %s.','You are about to deactivate the site %s.'=>'You are about to deactivate the site %s.','You are about to activate the site %s.'=>'You are about to activate the site %s.','The requested site does not exist.'=>'The requested site does not exist.','Path'=>'Path','Domain'=>'domain','Documentation on Network Users'=>'Documentation on Network Users','Documentation on Network Themes'=>'Documentation on Network Themes','Warning! Problem updating %1$s. Your server may not be able to connect to sites running on it. Error message: %2$s'=>'Warning! Problem updating %1$s. Your server may not be able to connect to sites running on it. Error message: %2$s','%s theme deleted.'=>'%s theme deleted.' . "\0" . '%s themes deleted.','%s theme disabled.'=>'%s theme disabled.' . "\0" . '%s themes disabled.','%s theme enabled.'=>'%s theme enabled.' . "\0" . '%s themes enabled.','Yes, delete these themes'=>'Yes, delete these themes','You are about to remove the following themes:'=>'You are about to remove the following themes:','These themes may be active on other sites in the network.'=>'These themes may be active on other sites in the network.','Delete Themes'=>'Delete Themes','Set site attributes'=>'Set site attributes','Enable menus'=>'Enable menus','Size in kilobytes'=>'Size in kilobytes','Allowed file types. Separate types by spaces.'=>'Allowed file types. Separate types by spaces.','New registrations settings'=>'New registrations settings','Add the following to your %1$s file in %2$s, replacing other WordPress rules:'=>'Add the following to your %1$s file in %2$s, replacing other WordPress rules:','Confirm your action'=>'Confirm your action','Hover over any user on the list to make the edit links appear. The Edit link on the left will take you to their Edit User profile page; the Edit link on the right by any site name goes to an Edit Site screen for that site.'=>'Hover over any user on the list to make the edit links appear. The Edit link on the left will take you to their Edit User profile page; the Edit link on the right by any site name goes to an Edit Site screen for that site.','To search for a site, enter the path or domain.'=>'To search for a site, enter the path or domain.','To search for a user, enter an email address or username. Use a wildcard to search for a partial username, such as user*.'=>'To search for a user, enter an email address or username. Use a wildcard to search for a partial username, such as user*.','To add a new site, click Create a New Site.'=>'To add a new site, click Create a New Site.','To add a new user, click Create a New User.'=>'To add a new user, click Create a New User.','Quick Tasks'=>'Quick Tasks','To search for a user or site, use the search boxes.'=>'To search for a user or site, use the search boxes.','The Right Now widget on this screen provides current user and site counts on your network.'=>'The Right Now widget on this screen provides current user and site counts on your network.','Modify global network settings'=>'Modify global network settings','Update your network'=>'Update your network','Install and activate themes or plugins'=>'Install and activate themes or plugins','Add and manage sites or users'=>'Add and manage sites or users','From here you can:'=>'From here you can:','Welcome to your Network Admin. This area of the Administration Screens is used for managing all aspects of your Multisite Network.'=>'Welcome to your Network Admin. This area of the Administration Screens is used for managing all aspects of your Multisite Network.','Only use this screen once you have updated to a new version of WordPress through Updates/Available Updates (via the Network Administration navigation menu or the Toolbar). Clicking the Upgrade Network button will step through each site in the network, five at a time, and make sure any database updates are applied.'=>'Only use this screen once you have updated to a new version of WordPress through Updates/Available Updates (via the Network Administration navigation menu or the toolbar). Clicking the Upgrade Network button will step through each site in the network, five at a time, and make sure any database updates are applied.','Upgrade Network'=>'Upgrade Network','Subdirectory networks may not be fully compatible with custom wp-content directories.'=>'Subdirectory networks may not be fully compatible with custom wp-content directories.','Add the designated lines of code to wp-config.php (just before /*...stop editing...*/) and .htaccess (replacing the existing WordPress rules).'=>'Add the designated lines of code to wp-config.php (just before /*...stop editing...*/) and .htaccess (replacing the existing WordPress rules).','Language Settings'=>'Language Settings','Allow site administrators to add new users to their site via the "Users → Add New" page'=>'Allow site administrators to add new users to their site via the "Users → Add New" page','Super admins can no longer be added on the Options screen. You must now go to the list of existing users on Network Admin > Users and click on Username or the Edit action link below that name. This goes to an Edit User page where you can check a box to grant super admin privileges.'=>'Super admins can no longer be added on the Options screen. You must now go to the list of existing users on Network Admin > Users and click on Username or the Edit action link below that name. This goes to an Edit User page where you can check a box to grant super admin privileges.','Enter the username and email.'=>'Enter the username and email.','User created.'=>'User created.','Select a user to remove.'=>'Select a user to remove.','Select a user to change role.'=>'Select a user to change role.','Enter the username of an existing user.'=>'Enter the username of an existing user.','User is already a member of this site.'=>'User is already a member of this site.','Site options updated.'=>'Site options updated.','Site added. Visit Dashboard or Edit Site'=>'Site added. Visit Dashboard or Edit Site','This screen is for Super Admins to add new sites to the network. This is not affected by the registration settings.'=>'This screen is for Super Admins to add new sites to the network. This is not affected by the registration settings.','Site info updated.'=>'Site info updated.','You cannot delete a theme while it is active on the main site.'=>'You cannot delete a theme while it is active on the main site.','Themes can be enabled on a site by site basis by the network admin on the Edit Site screen (which has a Themes tab); get there via the Edit action link on the All Sites screen. Only network admins are able to install or edit themes.'=>'Themes can be enabled on a site by site basis by the network admin on the Edit Site screen (which has a Themes tab); get there via the Edit action link on the All Sites screen. Only network admins are able to install or edit themes.','No, return me to the theme list'=>'No, return me to the theme list','Yes, delete this theme'=>'Yes, delete this theme','Are you sure you want to delete these themes?'=>'Are you sure you want to delete these themes?','You are about to remove the following theme:'=>'You are about to remove the following theme:' . "\0" . 'You are about to remove the following themes:','This theme may be active on other sites in the network.'=>'This theme may be active on other sites in the network.' . "\0" . 'These themes may be active on other sites in the network.','Delete Theme'=>'Delete Theme' . "\0" . 'Delete Themes','Network enabled themes are not shown on this screen.'=>'Network enabled themes are not shown on this screen.','No theme selected.'=>'No theme selected.','Theme disabled.'=>'Theme disabled.' . "\0" . '%s themes disabled.','Theme enabled.'=>'Theme enabled.' . "\0" . '%s themes enabled.','Edit Site: %s'=>'Edit Site: %s','Invalid site ID.'=>'Invalid site ID.','Sorry, you are not allowed to delete the site %s.'=>'Sorry, you are not allowed to delete the site %s.','Delete which is a permanent action after the confirmation screen.'=>'Delete which is a permanent action after the confirmation screen.','Dashboard leads to the Dashboard for that site.'=>'Dashboard leads to the Dashboard for that site.','An Edit link to a separate Edit Site screen.'=>'An Edit link to a separate Edit Site screen.','Add New Site takes you to the screen for adding a new site to the network. You can search for a site by Name, ID number, or IP address. Screen Options allows you to choose how many sites to display on one page.'=>'Add New Site takes you to the screen for adding a new site to the network. You can search for a site by Name, ID number, or IP address. Screen Options allows you to choose how many sites to display on one page.','Add User'=>'Add User','Cannot add user.'=>'Cannot add user.','Add User will set up a new user account on the network and send that person an email with username and password.'=>'Add User will set up a new user account on the network and send that person an email with username and password.','Updates'=>'Updates','Network Settings'=>'Network Settings','Installed Themes'=>'Installed Themes','All Sites'=>'All Sites','Once you complete these steps, your network is enabled and configured. You will have to log in again.'=>'Once you complete these steps, your network is enabled and configured. You will have to log in again.','To make your installation more secure, you should also add:'=>'To make your installation more secure, you should also add:','Complete the following steps to enable the features for creating a network of sites.'=>'Complete the following steps to enable the features for creating a network of sites.','Enabling the Network'=>'Enabling the Network','Please complete the configuration steps. To create a new network, you will need to empty or remove the network database tables.'=>'Please complete the configuration steps. To create a new network, you will need to empty or remove the network database tables.','An existing WordPress network was detected.'=>'An existing WordPress network was detected.','The original configuration steps are shown here for reference.'=>'The original configuration steps are shown here for reference.','Your email address.'=>'Your email address.','What would you like to call your network?'=>'What would you like to call your network?','Network Title'=>'Network Title','Because your installation is not new, the sites in your WordPress network must use sub-domains.'=>'Because your installation is not new, the sites in your WordPress network must use sub-domains.','Because your installation is in a directory, the sites in your WordPress network must use sub-directories.'=>'Because your installation is in a directory, the sites in your WordPress network must use sub-directories.','The main site in a sub-directory installation will need to use a modified permalink structure, potentially breaking existing links.'=>'The main site in a sub-directory installation will need to use a modified permalink structure, potentially breaking existing links.','Network Details'=>'Network Details','Server Address'=>'Server Address','subdirectory exampleslike %1$s/site1 and %1$s/site2'=>'like %1$s/site1 and %1$s/site2','Sub-directories'=>'Sub-directories','subdomain exampleslike site1.%1$s and site2.%1$s'=>'like site1.%1$s and site2.%1$s','Sub-domains'=>'Sub-domains','You will need a wildcard DNS record if you are going to use the virtual host (sub-domain) functionality.'=>'You will need a wildcard DNS record if you are going to use the virtual host (sub-domain) functionality.','Addresses of Sites in your Network'=>'Addresses of Sites in your Network','Fill in the information below and you’ll be on your way to creating a network of WordPress sites. Configuration files will be created in the next step.'=>'Fill in the information below and you’ll be on your way to creating a network of WordPress sites. Configuration files will be created in the next step.','Welcome to the Network installation process!'=>'Welcome to the Network installation process!','Error: The network could not be created.'=>'Error: the network could not be created.','Once the network is created, you may reactivate your plugins.'=>'Once the network is created, you may reactivate your plugins.','Please deactivate your plugins before enabling the Network feature.'=>'Please deactivate your plugins before enabling the Network feature.','Network'=>'Network','The choice of subdirectory sites is disabled if this setup is more than a month old because of permalink problems with “/blog/” from the main site. This disabling will be addressed in a future version.'=>'The choice of subdirectory sites is disabled if this setup is more than a month old because of permalink problems with “/blog/” from the main site. This disabling will be addressed in a future version.','Once you add this code and refresh your browser, multisite should be enabled. This screen, now in the Network Admin navigation menu, will keep an archive of the added code. You can toggle between Network Admin and Site Admin by clicking on the Network Admin or an individual site name under the My Sites dropdown in the Toolbar.'=>'Once you add this code and refresh your browser, multisite should be enabled. This screen, now in the Network Admin navigation menu, will keep an archive of the added code. You can toggle between Network Admin and Site Admin by clicking on the Network Admin or an individual site name under the My Sites dropdown in the toolbar.','The next screen for Network Setup will give you individually-generated lines of code to add to your wp-config.php and .htaccess files. Make sure the settings of your FTP client make files starting with a dot visible, so that you can find .htaccess; you may have to create this file if it really is not there. Make backup copies of those two files.'=>'The next screen for Network Setup will give you individually-generated lines of code to add to your wp-config.php and .htaccess files. Make sure the settings of your FTP client make files starting with a dot visible, so that you can find .htaccess; you may have to create this file if it really is not there. Make backup copies of those two files.','Choose subdomains or subdirectories; this can only be switched afterwards by reconfiguring your installation. Fill out the network details, and click Install. If this does not work, you may have to add a wildcard DNS record (for subdomains) or change to another setting in Permalinks (for subdirectories).'=>'Choose subdomains or subdirectories; this can only be switched afterwards by reconfiguring your installation. Fill out the network details, and click Install. If this does not work, you may have to add a wildcard DNS record (for subdomains) or change to another setting in Permalinks (for subdirectories).','This screen allows you to configure a network as having subdomains (site1.example.com) or subdirectories (example.com/site1). Subdomains require wildcard subdomains to be enabled in Apache and DNS records, if your host allows it.'=>'This screen allows you to configure a network as having subdomains (site1.example.com) or subdirectories (example.com/site1). Subdomains require wildcard subdomains to be enabled in Apache and DNS records, if your host allows it.','Create a Network of WordPress Sites'=>'Create a Network of WordPress Sites','The Network creation panel is not for WordPress MU networks.'=>'The Network creation panel is not for WordPress MU networks.','Warning! User cannot be modified. The user %s is a network administrator.'=>'Warning! User cannot be modified. The user %s is a network administrator.','If the admin email for the new site does not exist in the database, a new user will also be created.'=>'If the admin email for the new site does not exist in the database, a new user will also be created.','Deactivate, Archive, and Spam which lead to confirmation screens. These actions can be reversed later.'=>'Deactivate, Archive, and Spam which lead to confirmation screens. These actions can be reversed later.','Hovering over each site reveals seven options (three for the primary site):'=>'Hovering over each site reveals seven options (three for the primary site):','Operational settings has fields for the network’s name and admin email.'=>'Operational settings has fields for the network’s name and admin email.','The bulk action will permanently delete selected users, or mark/unmark those selected as spam. Spam users will have posts removed and will be unable to sign up again with the same email addresses.'=>'The bulk action will permanently delete selected users, or mark/unmark those selected as spam. Spam users will have posts removed and will be unable to sign up again with the same email addresses.','You can also go to the user’s profile page by clicking on the individual username.'=>'You can also go to the user’s profile page by clicking on the individual username.','Upload settings control the size of the uploaded files and the amount of available upload space for each site. You can change the default value for specific sites when you edit a particular site. Allowed file types are also listed (space separated only).'=>'Upload settings control the size of the uploaded files and the amount of available upload space for each site. You can change the default value for specific sites when you edit a particular site. Allowed file types are also listed (space separated only).','You can make an existing user an additional super admin by going to the Edit User profile page and checking the box to grant that privilege.'=>'You can make an existing user an additional super admin by going to the Edit User profile page and checking the box to grant that privilege.','Users who are signed up to the network without a site are added as subscribers to the main or primary dashboard site, giving them profile pages to manage their accounts. These users will only see Dashboard and My Sites in the main navigation until a site is created for them.'=>'Users who are signed up to the network without a site are added as subscribers to the main or primary dashboard site, giving them profile pages to manage their accounts. These users will only see Dashboard and My Sites in the main navigation until a site is created for them.','You can sort the table by clicking on any of the table headings and switch between list and excerpt views by using the icons above the users list.'=>'You can sort the table by clicking on any of the table headings and switch between list and excerpt views by using the icons above the users list.','This table shows all users across the network and the sites to which they are assigned.'=>'This table shows all users across the network and the sites to which they are assigned.','If this process fails for any reason, users logging in to their sites will force the same update.'=>'If this process fails for any reason, users logging in to their sites will force the same update.','If a version update to core has not happened, clicking this button will not affect anything.'=>'If a version update to core has not happened, clicking this button will not affect anything.','If the network admin disables a theme that is in use, it can still remain selected on that site. If another theme is chosen, the disabled theme will not appear in the site’s Appearance > Themes screen.'=>'If the network admin disables a theme that is in use, it can still remain selected on that site. If another theme is chosen, the disabled theme will not appear in the site’s Appearance > Themes screen.','This screen enables and disables the inclusion of themes available to choose in the Appearance menu for each site. It does not activate or deactivate which theme a site is currently using.'=>'This screen enables and disables the inclusion of themes available to choose in the Appearance menu for each site. It does not activate or deactivate which theme a site is currently using.','This is the main table of all sites on this network. Switch between list and excerpt views by using the icons above the right side of the table.'=>'This is the main table of all sites on this network. Switch between list and excerpt views by using the icons above the right side of the table.','Menu setting enables/disables the plugin menus from appearing for non super admins, so that only super admins, not site admins, have access to activate plugins.'=>'Menu setting enables/disables the plugin menus from appearing for non super admins, so that only super admins, not site admins, have access to activate plugins.','New site settings are defaults applied when a new site is created in the network. These include welcome email for when a new site or user account is registered, and what᾿s put in the first post, page, comment, comment author, and comment URL.'=>'New site settings are defaults applied when a new site is created in the network. These include welcome email for when a new site or user account is registered, and what᾿s put in the first post, page, comment, comment author, and comment URL.','Registration settings can disable/enable public signups. If you let others sign up for a site, install spam plugins. Spaces, not commas, should separate names banned as sites for this network.'=>'Registration settings can disable/enable public signups. If you let others sign up for a site, install spam plugins. Spaces, not commas, should separate names banned as sites for this network.','This screen sets and changes options for the network as a whole. The first site is the main site in the network and network options are pulled from that original site’s options.'=>'This screen sets and changes options for the network as a whole. The first site is the main site in the network and network options are pulled from that original site’s options.','The following words are reserved for use by WordPress functions and cannot be used as site names: %s'=>'The following words are reserved for use by WordPress functions and cannot be used as site names: %s','If your browser does not start loading the next page automatically, click this link:'=>'If your browser does not start loading the next page automatically, click this link:','If you want to ban domains from site registrations. One domain per line.'=>'If you want to ban domains from site registrations. One domain per line.','If you want to limit site registrations to certain domains. One domain per line.'=>'If you want to limit site registrations to certain domains. One domain per line.','Users removed from spam.'=>'Users removed from spam.','Site marked as spam.'=>'Site marked as spam.','Site removed from spam.'=>'Site removed from spam.','Sites marked as spam.'=>'Sites marked as spam.','Sites removed from spam.'=>'Sites removed from spam.','Users deleted.'=>'Users deleted.','Users marked as spam.'=>'Users marked as spam.','Site deactivated.'=>'Site deactivated.','Site activated.'=>'Site activated.','Site unarchived.'=>'Site unarchived.','Site archived.'=>'Site archived.','Site deleted.'=>'Site deleted.','Sites deleted.'=>'Sites deleted.','Sorry, you are not allowed to change the current site.'=>'Sorry, you are not allowed to change the current site.','There was an error creating the user.'=>'There was an error creating the user.','Upload file types'=>'Upload file types','Limit total size of files uploaded to %s MB'=>'Limit total size of files uploaded to %s MB','The URL for the first comment on a new site.'=>'The URL for the first comment on a new site.','The author of the first comment on a new site.'=>'The author of the first comment on a new site.','The first comment on a new site.'=>'The first comment on a new site.','The first page on a new site.'=>'The first page on a new site.','The first post on a new site.'=>'The first post on a new site.','All done!'=>'All done!','Both sites and user accounts can be registered'=>'Both sites and user accounts can be registered','Logged in users may register new sites'=>'Logged in users may register new sites','User accounts may be registered'=>'User accounts may be registered','Registration is disabled'=>'Registration is disabled','Enable administration menus'=>'Enable administration menus','Upload Settings'=>'Upload Settings','New Site Settings'=>'New Site Settings','Registration Settings'=>'Registration Settings','Operational Settings'=>'Operational Settings','Missing email address.'=>'Missing email address.','Missing or invalid site address.'=>'Missing or invalid site address.','Next Sites'=>'Next Sites','Site upload space'=>'Site upload space','The welcome email sent to new site owners.'=>'The welcome email sent to new site owners.','Users are not allowed to register these sites. Separate names by spaces.'=>'Users are not allowed to register these sites. Separate names by spaces.','Send the network admin an email notification every time someone registers a site or user account'=>'Send the network admin an email notification every time someone registers a site or user account','Network Admin Email'=>'Network Admin Email','A new user will be created if the above email address is not in the database.'=>'A new user will be created if the above email address is not in the database.','Admin Email'=>'Admin Email','Add Site'=>'Add Site','Default Language'=>'Default Language','Max upload file size'=>'Max upload file size','First Comment URL'=>'First Comment URL','First Comment Author'=>'First Comment Author','First Comment'=>'First Comment','First Page'=>'First Page','The welcome email sent to new users.'=>'The welcome email sent to new users.','Welcome User Email'=>'Welcome User Email','Welcome Email'=>'Welcome Email','Banned Email Domains'=>'Banned Email Domains','Limited Email Registrations'=>'Limited Email Registrations','Banned Names'=>'Banned Names','Add New Users'=>'Add New Users','Registration notification'=>'Registration notification','Allow new registrations'=>'Allow new registrations','Duplicated username or email address.'=>'Duplicated username or email address.','Cannot create an empty user.'=>'Cannot create an empty user.','Confirm'=>'Confirm']]; \ No newline at end of file +return ['x-generator'=>'GlotPress/4.0.1','translation-revision-date'=>'2025-04-06 12:48:35+0000','plural-forms'=>'nplurals=2; plural=n != 1;','project-id-version'=>'WordPress - 6.8.x - Development - Administration - Network Admin','language'=>'en_GB','messages'=>['Documentation on Upgrade Network'=>'Documentation on Upgrade Network','Deleting a site is a permanent action that cannot be undone. This will delete the entire site and its uploads directory.'=>'Deleting a site is a permanent action that cannot be undone. This will delete the entire site and its uploads directory.','Delete this site permanently'=>'Delete this site permanently','Visit to go to the front-end of the live site.'=>'Visit to go to the front end of the live site.','Documentation on Network Settings'=>'Documentation on Network Settings','Documentation on the Network Admin'=>'Documentation on the Network Admin','Documentation on Creating a Network'=>'Documentation on Creating a Network','https://developer.wordpress.org/advanced-administration/server/web-server/nginx/'=>'https://developer.wordpress.org/advanced-administration/server/web-server/nginx/','siteActivate'=>'Activate','Missing site title.'=>'Missing site title.','Table ordered by User Registered Date.'=>'Table ordered by User Registered Date.','Table ordered by Theme Name.'=>'Table ordered by Theme Name.','Table ordered by Site Registered Date.'=>'Table ordered by Site Registered Date.','Table ordered by Last Updated.'=>'Table ordered by Last Updated.','Table ordered by Site Path.'=>'Table ordered by Site Path.','Table ordered by Site Domain Name.'=>'Table ordered by Site Domain Name.','Network configuration authentication keys'=>'Network configuration authentication keys','Network configuration rules for %s'=>'Network configuration rules for %s','WordPress has been updated! Next and final step is to individually upgrade the sites in your network.'=>'WordPress has been updated! Next and final step is to individually upgrade the sites in your network.','Cannot create an empty site.'=>'Cannot create an empty site.','You should back up your existing %s file.'=>'You should back up your existing %s file.','You should back up your existing %1$s and %2$s files.'=>'You should back up your existing %1$s and %2$s files.','Visit theme site for %s'=>'Visit theme site for %s','Child theme of %s'=>'Child theme of %s','sitePublic'=>'Public','siteNot spam'=>'Not spam','%s theme will no longer be auto-updated.'=>'%s theme will no longer be auto-updated.' . "\0" . '%s themes will no longer be auto-updated.','%s theme will be auto-updated.'=>'%s theme will be auto-updated.' . "\0" . '%s themes will be auto-updated.','Sorry, you are not allowed to change themes automatic update settings.'=>'Sorry, you are not allowed to change themes automatic update settings.','No themes are currently available.'=>'No themes are currently available.','Y/m/d g:i:s a'=>'j F Y H:i:s','It seems your network is running with Nginx web server. Learn more about further configuration.'=>'It seems your network is running with the Nginx web server. Learn more about further configuration.','Deleted (%s)'=>'Deleted (%s)' . "\0" . 'Deleted (%s)','sitesSpam (%s)'=>'Spam (%s)' . "\0" . 'Spam (%s)','Mature (%s)'=>'Mature (%s)' . "\0" . 'Mature (%s)','Archived (%s)'=>'Archived (%s)' . "\0" . 'Archived (%s)','Public (%s)'=>'Public (%s)' . "\0" . 'Public (%1$s)','sitesAll (%s)'=>'All (%s)' . "\0" . 'All (%s)','themesUpdate Available (%s)'=>'Update Available (%s)' . "\0" . 'Update Available (%s)','Main'=>'Main','Documentation on the Network Screen'=>'Documentation on the Network Screen','The constant %s cannot be defined when creating a network.'=>'The constant %s cannot be defined when creating a network.','You are about to delete the following sites:'=>'You are about to delete the following sites:','User could not be added to this site.'=>'User could not be added to this site.','The username and a link to set the password will be mailed to this email address.'=>'The username and a link to set the password will be mailed to this email address.','There is a pending change of the network admin email to %s.'=>'There is a pending change of the network admin email to %s.','Sub-domain Installation'=>'Sub-domain Installation','Sub-directory Installation'=>'Sub-directory Installation','Active Child Theme'=>'Active Child Theme','%s KB'=>'%s KB','%s Sites'=>'%s Sites','Sorry, you are not allowed to delete themes for this site.'=>'Sorry, you are not allowed to delete themes for this site.','Sorry, you are not allowed to manage network themes.'=>'Sorry, you are not allowed to manage network themes.','Sorry, you are not allowed to delete that site.'=>'Sorry, you are not allowed to delete that site.','Sorry, you are not allowed to manage themes for this site.'=>'Sorry, you are not allowed to manage themes for this site.','Sorry, you are not allowed to add sites to this network.'=>'Sorry, you are not allowed to add sites to this network.','Sorry, you are not allowed to edit this site.'=>'Sorry, you are not allowed to edit this site.','The email address of the first comment author on a new site.'=>'The email address of the first comment author on a new site.','First Comment Email'=>'First Comment Email','That’s all, stop editing! Happy publishing.'=>'That’s all, stop editing! Happy publishing.','Add the following to your %1$s file in %2$s above the line reading %3$s:'=>'Add the following to your %1$s file in %2$s above the line reading %3$s:','theme%1$s by %2$s'=>'%1$s by %2$s','Only lowercase letters (a-z), numbers, and hyphens are allowed.'=>'Only lowercase letters (a-z), numbers, and hyphens are allowed.','These unique authentication keys are also missing from your %s file.'=>'These unique authentication keys are also missing from your %s file.','This unique authentication key is also missing from your %s file.'=>'This unique authentication key is also missing from your %s file.','Because you are using %1$s, the sites in your WordPress network must use sub-directories. Consider using %2$s if you wish to use sub-domains.'=>'Because you are using %1$s, the sites in your WordPress network must use sub-directories. Consider using %2$s if you wish to use sub-domains.','The internet address of your network will be %s.'=>'The internet address of your network will be %s.','You should consider changing your site domain to %1$s before enabling the network feature. It will still be possible to visit your site using the %3$s prefix with an address like %2$s but any links will not have the %3$s prefix.'=>'You should consider changing your site domain to %1$s before enabling the network feature. It will still be possible to visit your site using the %3$s prefix with an address like %2$s, but any links will not have the %3$s prefix.','You cannot change this later.'=>'You cannot change this later.','Please choose whether you would like sites in your WordPress network to use sub-domains or sub-directories.'=>'Please choose whether you would like sites in your WordPress network to use sub-domains or sub-directories.','If %1$s is disabled, ask your administrator to enable that module, or look at the Apache documentation or elsewhere for help setting it up.'=>'If %1$s is disabled, ask your administrator to enable that module, or look at the Apache documentation or elsewhere for help setting it up.','It looks like the Apache %s module is not installed.'=>'It looks like the Apache %s module is not installed.','Please make sure the Apache %s module is installed as it will be used at the end of this installation.'=>'Please make sure the Apache %s module is installed as it will be used at the end of this installation.','userRegistered'=>'Registered','Super Admin (%s)'=>'Super Admin (%s)' . "\0" . 'Super Admins (%s)','userNot spam'=>'Not spam','userMark as spam'=>'Mark as spam','Visit Theme Site'=>'Visit Theme Site','Broken Theme:'=>'Broken Theme:','Network Disable %s'=>'Network Disable %s','Disable %s'=>'Disable %s','Network Enable %s'=>'Network Enable %s','Enable %s'=>'Enable %s','Network Disable'=>'Network Disable','themesBroken (%s)'=>'Broken (%s)' . "\0" . 'Broken (%s)','themesDisabled (%s)'=>'Disabled (%s)' . "\0" . 'Disabled (%s)','themesEnabled (%s)'=>'Enabled (%s)' . "\0" . 'Enabled (%s)','themesAll (%s)'=>'All (%s)' . "\0" . 'All (%s)','No themes found.'=>'No themes found.','verb; siteArchive'=>'Archive','Unarchive'=>'Unarchive','Never'=>'Never','%1$s – %2$s'=>'%1$s – %2$s','siteRegistered'=>'Registered','Last Updated'=>'Last Updated','siteNot Spam'=>'Not Spam','siteMark as spam'=>'Mark as spam','No sites found.'=>'No sites found.','Mature'=>'Mature','Deleted'=>'Deleted','siteSpam'=>'Spam','Archived'=>'Archived','A password reset link will be sent to the user via email.'=>'A password reset link will be sent to the user via email.','If registration is disabled, please set %1$s in %2$s to a URL you will redirect visitors to if they visit a non-existent site.'=>'If registration is disabled, please set %1$s in %2$s to a URL you will redirect visitors to if they visit a non-existent site.','You must define the %1$s constant as true in your %2$s file to allow creation of a Network.'=>'You must define the %1$s constant as true in your %2$s file to allow creation of a Network.','Themes list navigation'=>'Themes list navigation','Sites list'=>'Sites list','Sites list navigation'=>'Sites list navigation','Site users list'=>'Site users list','Site users list navigation'=>'Site users list navigation','Filter site users list'=>'Filter site users list','Site themes list'=>'Site themes list','Site themes list navigation'=>'Site themes list navigation','Filter site themes list'=>'Filter site themes list','The domain or path entered conflicts with an existing username.'=>'The domain or path entered conflicts with an existing username.','The requested action is not valid.'=>'The requested action is not valid.','You are about to mark the site %s as not mature.'=>'You are about to mark the site %s as not mature.','You are about to mark the site %s as mature.'=>'You are about to mark the site %s as mature.','You are about to delete the site %s.'=>'You are about to delete the site %s.','You are about to mark the site %s as spam.'=>'You are about to mark the site %s as spam.','You are about to unspam the site %s.'=>'You are about to unspam the site %s.','You are about to archive the site %s.'=>'You are about to archive the site %s.','You are about to unarchive the site %s.'=>'You are about to unarchive the site %s.','You are about to deactivate the site %s.'=>'You are about to deactivate the site %s.','You are about to activate the site %s.'=>'You are about to activate the site %s.','The requested site does not exist.'=>'The requested site does not exist.','Path'=>'Path','Domain'=>'domain','Documentation on Network Users'=>'Documentation on Network Users','Documentation on Network Themes'=>'Documentation on Network Themes','Warning! Problem updating %1$s. Your server may not be able to connect to sites running on it. Error message: %2$s'=>'Warning! Problem updating %1$s. Your server may not be able to connect to sites running on it. Error message: %2$s','%s theme deleted.'=>'%s theme deleted.' . "\0" . '%s themes deleted.','%s theme disabled.'=>'%s theme disabled.' . "\0" . '%s themes disabled.','%s theme enabled.'=>'%s theme enabled.' . "\0" . '%s themes enabled.','Yes, delete these themes'=>'Yes, delete these themes','You are about to remove the following themes:'=>'You are about to remove the following themes:','These themes may be active on other sites in the network.'=>'These themes may be active on other sites in the network.','Delete Themes'=>'Delete Themes','Set site attributes'=>'Set site attributes','Enable menus'=>'Enable menus','Size in kilobytes'=>'Size in kilobytes','Allowed file types. Separate types by spaces.'=>'Allowed file types. Separate types by spaces.','New registrations settings'=>'New registrations settings','Add the following to your %1$s file in %2$s, replacing other WordPress rules:'=>'Add the following to your %1$s file in %2$s, replacing other WordPress rules:','Confirm your action'=>'Confirm your action','Hover over any user on the list to make the edit links appear. The Edit link on the left will take you to their Edit User profile page; the Edit link on the right by any site name goes to an Edit Site screen for that site.'=>'Hover over any user on the list to make the edit links appear. The Edit link on the left will take you to their Edit User profile page; the Edit link on the right by any site name goes to an Edit Site screen for that site.','To search for a site, enter the path or domain.'=>'To search for a site, enter the path or domain.','To search for a user, enter an email address or username. Use a wildcard to search for a partial username, such as user*.'=>'To search for a user, enter an email address or username. Use a wildcard to search for a partial username, such as user*.','To add a new site, click Create a New Site.'=>'To add a new site, click Create a New Site.','To add a new user, click Create a New User.'=>'To add a new user, click Create a New User.','Quick Tasks'=>'Quick Tasks','To search for a user or site, use the search boxes.'=>'To search for a user or site, use the search boxes.','The Right Now widget on this screen provides current user and site counts on your network.'=>'The Right Now widget on this screen provides current user and site counts on your network.','Modify global network settings'=>'Modify global network settings','Update your network'=>'Update your network','Install and activate themes or plugins'=>'Install and activate themes or plugins','Add and manage sites or users'=>'Add and manage sites or users','From here you can:'=>'From here you can:','Welcome to your Network Admin. This area of the Administration Screens is used for managing all aspects of your Multisite Network.'=>'Welcome to your Network Admin. This area of the Administration Screens is used for managing all aspects of your Multisite Network.','Only use this screen once you have updated to a new version of WordPress through Updates/Available Updates (via the Network Administration navigation menu or the Toolbar). Clicking the Upgrade Network button will step through each site in the network, five at a time, and make sure any database updates are applied.'=>'Only use this screen once you have updated to a new version of WordPress through Updates/Available Updates (via the Network Administration navigation menu or the toolbar). Clicking the Upgrade Network button will step through each site in the network, five at a time, and make sure any database updates are applied.','Upgrade Network'=>'Upgrade Network','Subdirectory networks may not be fully compatible with custom wp-content directories.'=>'Subdirectory networks may not be fully compatible with custom wp-content directories.','Add the designated lines of code to wp-config.php (just before /*...stop editing...*/) and .htaccess (replacing the existing WordPress rules).'=>'Add the designated lines of code to wp-config.php (just before /*...stop editing...*/) and .htaccess (replacing the existing WordPress rules).','Language Settings'=>'Language Settings','Allow site administrators to add new users to their site via the "Users → Add User" page'=>'Allow site administrators to add new users to their site via the "Users → Add User" page','Super admins can no longer be added on the Options screen. You must now go to the list of existing users on Network Admin > Users and click on Username or the Edit action link below that name. This goes to an Edit User page where you can check a box to grant super admin privileges.'=>'Super admins can no longer be added on the Options screen. You must now go to the list of existing users on Network Admin > Users and click on Username or the Edit action link below that name. This goes to an Edit User page where you can check a box to grant super admin privileges.','Enter the username and email.'=>'Enter the username and email.','User created.'=>'User created.','Select a user to remove.'=>'Select a user to remove.','Select a user to change role.'=>'Select a user to change role.','Enter the username of an existing user.'=>'Enter the username of an existing user.','User is already a member of this site.'=>'User is already a member of this site.','Site options updated.'=>'Site options updated.','Site added. Visit Dashboard or Edit Site'=>'Site added. Visit Dashboard or Edit Site','This screen is for Super Admins to add new sites to the network. This is not affected by the registration settings.'=>'This screen is for Super Admins to add new sites to the network. This is not affected by the registration settings.','Site info updated.'=>'Site info updated.','You cannot delete a theme while it is active on the main site.'=>'You cannot delete a theme while it is active on the main site.','Themes can be enabled on a site by site basis by the network admin on the Edit Site screen (which has a Themes tab); get there via the Edit action link on the All Sites screen. Only network admins are able to install or edit themes.'=>'Themes can be enabled on a site by site basis by the network admin on the Edit Site screen (which has a Themes tab); get there via the Edit action link on the All Sites screen. Only network admins are able to install or edit themes.','No, return me to the theme list'=>'No, return me to the theme list','Yes, delete this theme'=>'Yes, delete this theme','Are you sure you want to delete these themes?'=>'Are you sure you want to delete these themes?','You are about to remove the following theme:'=>'You are about to remove the following theme:' . "\0" . 'You are about to remove the following themes:','This theme may be active on other sites in the network.'=>'This theme may be active on other sites in the network.' . "\0" . 'These themes may be active on other sites in the network.','Delete Theme'=>'Delete Theme' . "\0" . 'Delete Themes','Network enabled themes are not shown on this screen.'=>'Network enabled themes are not shown on this screen.','No theme selected.'=>'No theme selected.','Theme disabled.'=>'Theme disabled.' . "\0" . '%s themes disabled.','Theme enabled.'=>'Theme enabled.' . "\0" . '%s themes enabled.','Edit Site: %s'=>'Edit Site: %s','Invalid site ID.'=>'Invalid site ID.','Sorry, you are not allowed to delete the site %s.'=>'Sorry, you are not allowed to delete the site %s.','Delete which is a permanent action after the confirmation screen.'=>'Delete which is a permanent action after the confirmation screen.','Dashboard leads to the Dashboard for that site.'=>'Dashboard leads to the Dashboard for that site.','An Edit link to a separate Edit Site screen.'=>'An Edit link to a separate Edit Site screen.','Add Site takes you to the screen for adding a new site to the network. You can search for a site by Name, ID number, or IP address. Screen Options allows you to choose how many sites to display on one page.'=>'Add Site takes you to the screen for adding a new site to the network. You can search for a site by Name, ID number, or IP address. Screen Options allows you to choose how many sites to display on one page.','Add Users'=>'Add Users','Cannot add user.'=>'Cannot add user.','Add User will set up a new user account on the network and send that person an email with username and password.'=>'Add User will set up a new user account on the network and send that person an email with username and password.','Updates'=>'Updates','Network Settings'=>'Network Settings','Installed Themes'=>'Installed Themes','All Sites'=>'All Sites','Once you complete these steps, your network is enabled and configured. You will have to log in again.'=>'Once you complete these steps, your network is enabled and configured. You will have to log in again.','To make your installation more secure, you should also add:'=>'To make your installation more secure, you should also add:','Complete the following steps to enable the features for creating a network of sites.'=>'Complete the following steps to enable the features for creating a network of sites.','Enabling the Network'=>'Enabling the Network','Please complete the configuration steps. To create a new network, you will need to empty or remove the network database tables.'=>'Please complete the configuration steps. To create a new network, you will need to empty or remove the network database tables.','An existing WordPress network was detected.'=>'An existing WordPress network was detected.','The original configuration steps are shown here for reference.'=>'The original configuration steps are shown here for reference.','Your email address.'=>'Your email address.','What would you like to call your network?'=>'What would you like to call your network?','Network Title'=>'Network Title','Because your installation is not new, the sites in your WordPress network must use sub-domains.'=>'Because your installation is not new, the sites in your WordPress network must use sub-domains.','Because your installation is in a directory, the sites in your WordPress network must use sub-directories.'=>'Because your installation is in a directory, the sites in your WordPress network must use sub-directories.','The main site in a sub-directory installation will need to use a modified permalink structure, potentially breaking existing links.'=>'The main site in a sub-directory installation will need to use a modified permalink structure, potentially breaking existing links.','Network Details'=>'Network Details','Server Address'=>'Server Address','subdirectory exampleslike %1$s/site1 and %1$s/site2'=>'like %1$s/site1 and %1$s/site2','Sub-directories'=>'Sub-directories','subdomain exampleslike site1.%1$s and site2.%1$s'=>'like site1.%1$s and site2.%1$s','Sub-domains'=>'Sub-domains','You will need a wildcard DNS record if you are going to use the virtual host (sub-domain) functionality.'=>'You will need a wildcard DNS record if you are going to use the virtual host (sub-domain) functionality.','Addresses of Sites in your Network'=>'Addresses of Sites in your Network','Fill in the information below and you’ll be on your way to creating a network of WordPress sites. Configuration files will be created in the next step.'=>'Fill in the information below and you’ll be on your way to creating a network of WordPress sites. Configuration files will be created in the next step.','Welcome to the Network installation process!'=>'Welcome to the Network installation process!','The network could not be created.'=>'The network could not be created.','Once the network is created, you may reactivate your plugins.'=>'Once the network is created, you may reactivate your plugins.','Please deactivate your plugins before enabling the Network feature.'=>'Please deactivate your plugins before enabling the Network feature.','Network'=>'Network','The choice of subdirectory sites is disabled if this setup is more than a month old because of permalink problems with “/blog/” from the main site. This disabling will be addressed in a future version.'=>'The choice of subdirectory sites is disabled if this setup is more than a month old because of permalink problems with “/blog/” from the main site. This disabling will be addressed in a future version.','Once you add this code and refresh your browser, multisite should be enabled. This screen, now in the Network Admin navigation menu, will keep an archive of the added code. You can toggle between Network Admin and Site Admin by clicking on the Network Admin or an individual site name under the My Sites dropdown in the Toolbar.'=>'Once you add this code and refresh your browser, multisite should be enabled. This screen, now in the Network Admin navigation menu, will keep an archive of the added code. You can toggle between Network Admin and Site Admin by clicking on the Network Admin or an individual site name under the My Sites dropdown in the toolbar.','The next screen for Network Setup will give you individually-generated lines of code to add to your wp-config.php and .htaccess files. Make sure the settings of your FTP client make files starting with a dot visible, so that you can find .htaccess; you may have to create this file if it really is not there. Make backup copies of those two files.'=>'The next screen for Network Setup will give you individually-generated lines of code to add to your wp-config.php and .htaccess files. Make sure the settings of your FTP client make files starting with a dot visible, so that you can find .htaccess; you may have to create this file if it really is not there. Make backup copies of those two files.','Choose subdomains or subdirectories; this can only be switched afterwards by reconfiguring your installation. Fill out the network details, and click Install. If this does not work, you may have to add a wildcard DNS record (for subdomains) or change to another setting in Permalinks (for subdirectories).'=>'Choose subdomains or subdirectories; this can only be switched afterwards by reconfiguring your installation. Fill out the network details, and click Install. If this does not work, you may have to add a wildcard DNS record (for subdomains) or change to another setting in Permalinks (for subdirectories).','This screen allows you to configure a network as having subdomains (site1.example.com) or subdirectories (example.com/site1). Subdomains require wildcard subdomains to be enabled in Apache and DNS records, if your host allows it.'=>'This screen allows you to configure a network as having subdomains (site1.example.com) or subdirectories (example.com/site1). Subdomains require wildcard subdomains to be enabled in Apache and DNS records, if your host allows it.','Create a Network of WordPress Sites'=>'Create a Network of WordPress Sites','The Network creation panel is not for WordPress MU networks.'=>'The Network creation panel is not for WordPress MU networks.','Warning! User cannot be modified. The user %s is a network administrator.'=>'Warning! User cannot be modified. The user %s is a network administrator.','If the admin email for the new site does not exist in the database, a new user will also be created.'=>'If the admin email for the new site does not exist in the database, a new user will also be created.','Deactivate, Archive, and Spam which lead to confirmation screens. These actions can be reversed later.'=>'Deactivate, Archive, and Spam which lead to confirmation screens. These actions can be reversed later.','Hovering over each site reveals seven options (three for the primary site):'=>'Hovering over each site reveals seven options (three for the primary site):','Operational settings has fields for the network’s name and admin email.'=>'Operational settings has fields for the network’s name and admin email.','The bulk action will permanently delete selected users, or mark/unmark those selected as spam. Spam users will have posts removed and will be unable to sign up again with the same email addresses.'=>'The bulk action will permanently delete selected users, or mark/unmark those selected as spam. Spam users will have posts removed and will be unable to sign up again with the same email addresses.','You can also go to the user’s profile page by clicking on the individual username.'=>'You can also go to the user’s profile page by clicking on the individual username.','Upload settings control the size of the uploaded files and the amount of available upload space for each site. You can change the default value for specific sites when you edit a particular site. Allowed file types are also listed (space separated only).'=>'Upload settings control the size of the uploaded files and the amount of available upload space for each site. You can change the default value for specific sites when you edit a particular site. Allowed file types are also listed (space separated only).','You can make an existing user an additional super admin by going to the Edit User profile page and checking the box to grant that privilege.'=>'You can make an existing user an additional super admin by going to the Edit User profile page and checking the box to grant that privilege.','Users who are signed up to the network without a site are added as subscribers to the main or primary dashboard site, giving them profile pages to manage their accounts. These users will only see Dashboard and My Sites in the main navigation until a site is created for them.'=>'Users who are signed up to the network without a site are added as subscribers to the main or primary dashboard site, giving them profile pages to manage their accounts. These users will only see Dashboard and My Sites in the main navigation until a site is created for them.','You can sort the table by clicking on any of the table headings and switch between list and excerpt views by using the icons above the users list.'=>'You can sort the table by clicking on any of the table headings and switch between list and excerpt views by using the icons above the users list.','This table shows all users across the network and the sites to which they are assigned.'=>'This table shows all users across the network and the sites to which they are assigned.','If this process fails for any reason, users logging in to their sites will force the same update.'=>'If this process fails for any reason, users logging in to their sites will force the same update.','If a version update to core has not happened, clicking this button will not affect anything.'=>'If a version update to core has not happened, clicking this button will not affect anything.','If the network admin disables a theme that is in use, it can still remain selected on that site. If another theme is chosen, the disabled theme will not appear in the site’s Appearance > Themes screen.'=>'If the network admin disables a theme that is in use, it can still remain selected on that site. If another theme is chosen, the disabled theme will not appear in the site’s Appearance > Themes screen.','This screen enables and disables the inclusion of themes available to choose in the Appearance menu for each site. It does not activate or deactivate which theme a site is currently using.'=>'This screen enables and disables the inclusion of themes available to choose in the Appearance menu for each site. It does not activate or deactivate which theme a site is currently using.','This is the main table of all sites on this network. Switch between list and excerpt views by using the icons above the right side of the table.'=>'This is the main table of all sites on this network. Switch between list and excerpt views by using the icons above the right side of the table.','Menu setting enables/disables the plugin menus from appearing for non super admins, so that only super admins, not site admins, have access to activate plugins.'=>'Menu setting enables/disables the plugin menus from appearing for non super admins, so that only super admins, not site admins, have access to activate plugins.','New site settings are defaults applied when a new site is created in the network. These include welcome email for when a new site or user account is registered, and what᾿s put in the first post, page, comment, comment author, and comment URL.'=>'New site settings are defaults applied when a new site is created in the network. These include welcome email for when a new site or user account is registered, and what᾿s put in the first post, page, comment, comment author, and comment URL.','Registration settings can disable/enable public signups. If you let others sign up for a site, install spam plugins. Spaces, not commas, should separate names banned as sites for this network.'=>'Registration settings can disable/enable public signups. If you let others sign up for a site, install spam plugins. Spaces, not commas, should separate names banned as sites for this network.','This screen sets and changes options for the network as a whole. The first site is the main site in the network and network options are pulled from that original site’s options.'=>'This screen sets and changes options for the network as a whole. The first site is the main site in the network and network options are pulled from that original site’s options.','The following words are reserved for use by WordPress functions and cannot be used as site names: %s'=>'The following words are reserved for use by WordPress functions and cannot be used as site names: %s','If your browser does not start loading the next page automatically, click this link:'=>'If your browser does not start loading the next page automatically, click this link:','If you want to ban domains from site registrations. One domain per line.'=>'If you want to ban domains from site registrations. One domain per line.','If you want to limit site registrations to certain domains. One domain per line.'=>'If you want to limit site registrations to certain domains. One domain per line.','Users removed from spam.'=>'Users removed from spam.','Site marked as spam.'=>'Site marked as spam.','Site removed from spam.'=>'Site removed from spam.','Sites marked as spam.'=>'Sites marked as spam.','Sites removed from spam.'=>'Sites removed from spam.','Users deleted.'=>'Users deleted.','Users marked as spam.'=>'Users marked as spam.','Site deactivated.'=>'Site deactivated.','Site activated.'=>'Site activated.','Site unarchived.'=>'Site unarchived.','Site archived.'=>'Site archived.','Site deleted.'=>'Site deleted.','Sites deleted.'=>'Sites deleted.','Sorry, you are not allowed to change the current site.'=>'Sorry, you are not allowed to change the current site.','There was an error creating the user.'=>'There was an error creating the user.','Upload file types'=>'Upload file types','Limit total size of files uploaded to %s MB'=>'Limit total size of files uploaded to %s MB','The URL for the first comment on a new site.'=>'The URL for the first comment on a new site.','The author of the first comment on a new site.'=>'The author of the first comment on a new site.','The first comment on a new site.'=>'The first comment on a new site.','The first page on a new site.'=>'The first page on a new site.','The first post on a new site.'=>'The first post on a new site.','All done!'=>'All done!','Both sites and user accounts can be registered'=>'Both sites and user accounts can be registered','Logged in users may register new sites'=>'Logged in users may register new sites','User accounts may be registered'=>'User accounts may be registered','Registration is disabled'=>'Registration is disabled','Enable administration menus'=>'Enable administration menus','Upload Settings'=>'Upload Settings','New Site Settings'=>'New Site Settings','Registration Settings'=>'Registration Settings','Operational Settings'=>'Operational Settings','Missing email address.'=>'Missing email address.','Missing or invalid site address.'=>'Missing or invalid site address.','Next Sites'=>'Next Sites','Site upload space'=>'Site upload space','The welcome email sent to new site owners.'=>'The welcome email sent to new site owners.','Users are not allowed to register these sites. Separate names by spaces.'=>'Users are not allowed to register these sites. Separate names by spaces.','Send the network admin an email notification every time someone registers a site or user account'=>'Send the network admin an email notification every time someone registers a site or user account','Network Admin Email'=>'Network Admin Email','A new user will be created if the above email address is not in the database.'=>'A new user will be created if the above email address is not in the database.','Admin Email'=>'Admin Email','Add Site'=>'Add Site','Default Language'=>'Default Language','Max upload file size'=>'Max upload file size','First Comment URL'=>'First Comment URL','First Comment Author'=>'First Comment Author','First Comment'=>'First Comment','First Page'=>'First Page','The welcome email sent to new users.'=>'The welcome email sent to new users.','Welcome User Email'=>'Welcome User Email','Welcome Email'=>'Welcome Email','Banned Email Domains'=>'Banned Email Domains','Limited Email Registrations'=>'Limited Email Registrations','Banned Names'=>'Banned Names','Add New User'=>'Add New User','Registration notification'=>'Registration notification','Allow new registrations'=>'Allow new registrations','Duplicated username or email address.'=>'Duplicated username or email address.','Cannot create an empty user.'=>'Cannot create an empty user.','Confirm'=>'Confirm']]; \ No newline at end of file diff --git a/web/app/languages/admin-network-en_GB.mo b/web/app/languages/admin-network-en_GB.mo old mode 100755 new mode 100644 index 4f9bceba..5c66df94 Binary files a/web/app/languages/admin-network-en_GB.mo and b/web/app/languages/admin-network-en_GB.mo differ diff --git a/web/app/languages/admin-network-en_GB.po b/web/app/languages/admin-network-en_GB.po old mode 100755 new mode 100644 index 63338ae3..2427022a --- a/web/app/languages/admin-network-en_GB.po +++ b/web/app/languages/admin-network-en_GB.po @@ -1,15 +1,15 @@ -# Translation of WordPress - 6.7.x - Development - Administration - Network Admin in English (UK) -# This file is distributed under the same license as the WordPress - 6.7.x - Development - Administration - Network Admin package. +# Translation of WordPress - 6.8.x - Development - Administration - Network Admin in English (UK) +# This file is distributed under the same license as the WordPress - 6.8.x - Development - Administration - Network Admin package. msgid "" msgstr "" -"PO-Revision-Date: 2024-06-28 14:48:02+0000\n" +"PO-Revision-Date: 2025-04-06 12:48:35+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: GlotPress/4.0.1\n" "Language: en_GB\n" -"Project-Id-Version: WordPress - 6.7.x - Development - Administration - Network Admin\n" +"Project-Id-Version: WordPress - 6.8.x - Development - Administration - Network Admin\n" #: wp-admin/network/upgrade.php:32 msgid "Documentation on Upgrade Network" @@ -106,12 +106,12 @@ msgid "You should back up your existing %1$s and %2$s files." msgstr "You should back up your existing %1$s and %2$s files." #. translators: %s: Theme name. -#: wp-admin/includes/class-wp-ms-themes-list-table.php:738 +#: wp-admin/includes/class-wp-ms-themes-list-table.php:744 msgid "Visit theme site for %s" msgstr "Visit theme site for %s" #. translators: %s: Theme name. -#: wp-admin/includes/class-wp-ms-themes-list-table.php:751 +#: wp-admin/includes/class-wp-ms-themes-list-table.php:757 msgid "Child theme of %s" msgstr "Child theme of %s" @@ -248,7 +248,7 @@ msgstr "Sub-domain Installation" msgid "Sub-directory Installation" msgstr "Sub-directory Installation" -#: wp-admin/includes/class-wp-ms-themes-list-table.php:944 +#: wp-admin/includes/class-wp-ms-themes-list-table.php:950 msgid "Active Child Theme" msgstr "Active Child Theme" @@ -391,7 +391,7 @@ msgctxt "user" msgid "Mark as spam" msgstr "Mark as spam" -#: wp-admin/includes/class-wp-ms-themes-list-table.php:744 +#: wp-admin/includes/class-wp-ms-themes-list-table.php:750 msgid "Visit Theme Site" msgstr "Visit Theme Site" @@ -527,7 +527,7 @@ msgstr "Spam" msgid "Archived" msgstr "Archived" -#: wp-admin/network/site-users.php:373 wp-admin/network/user-new.php:149 +#: wp-admin/network/site-users.php:376 wp-admin/network/user-new.php:149 msgid "A password reset link will be sent to the user via email." msgstr "A password reset link will be sent to the user via email." @@ -786,7 +786,7 @@ msgstr "Welcome to your Network Admin. This area of the Administration Screens i msgid "Only use this screen once you have updated to a new version of WordPress through Updates/Available Updates (via the Network Administration navigation menu or the Toolbar). Clicking the Upgrade Network button will step through each site in the network, five at a time, and make sure any database updates are applied." msgstr "Only use this screen once you have updated to a new version of WordPress through Updates/Available Updates (via the Network Administration navigation menu or the toolbar). Clicking the Upgrade Network button will step through each site in the network, five at a time, and make sure any database updates are applied." -#: wp-admin/network/menu.php:46 wp-admin/network/upgrade.php:16 +#: wp-admin/network/menu.php:51 wp-admin/network/upgrade.php:16 #: wp-admin/network/upgrade.php:43 wp-admin/network/upgrade.php:145 msgid "Upgrade Network" msgstr "Upgrade Network" @@ -805,8 +805,8 @@ msgid "Language Settings" msgstr "Language Settings" #: wp-admin/network/settings.php:253 -msgid "Allow site administrators to add new users to their site via the \"Users → Add New\" page" -msgstr "Allow site administrators to add new users to their site via the \"Users → Add New\" page" +msgid "Allow site administrators to add new users to their site via the \"Users → Add User\" page" +msgstr "Allow site administrators to add new users to their site via the \"Users → Add User\" page" #: wp-admin/network/settings.php:58 msgid "Super admins can no longer be added on the Options screen. You must now go to the list of existing users on Network Admin > Users and click on Username or the Edit action link below that name. This goes to an Edit User page where you can check a box to grant super admin privileges." @@ -930,12 +930,12 @@ msgid "An Edit link to a separate Edit Site screen." msgstr "An Edit link to a separate Edit Site screen." #: wp-admin/network/sites.php:31 -msgid "Add New Site takes you to the screen for adding a new site to the network. You can search for a site by Name, ID number, or IP address. Screen Options allows you to choose how many sites to display on one page." -msgstr "Add New Site takes you to the screen for adding a new site to the network. You can search for a site by Name, ID number, or IP address. Screen Options allows you to choose how many sites to display on one page." +msgid "Add Site takes you to the screen for adding a new site to the network. You can search for a site by Name, ID number, or IP address. Screen Options allows you to choose how many sites to display on one page." +msgstr "Add Site takes you to the screen for adding a new site to the network. You can search for a site by Name, ID number, or IP address. Screen Options allows you to choose how many sites to display on one page." -#: wp-admin/network/site-users.php:336 wp-admin/network/user-new.php:161 -msgid "Add User" -msgstr "Add User" +#: wp-admin/network/settings.php:251 +msgid "Add Users" +msgstr "Add Users" #: wp-admin/network/user-new.php:55 msgid "Cannot add user." @@ -945,19 +945,19 @@ msgstr "Cannot add user." msgid "Add User will set up a new user account on the network and send that person an email with username and password." msgstr "Add User will set up a new user account on the network and send that person an email with username and password." -#: wp-admin/network/menu.php:41 +#: wp-admin/network/menu.php:46 msgid "Updates" msgstr "Updates" -#: wp-admin/network/menu.php:111 wp-admin/network/settings.php:21 +#: wp-admin/network/menu.php:116 wp-admin/network/settings.php:21 msgid "Network Settings" msgstr "Network Settings" -#: wp-admin/network/menu.php:80 +#: wp-admin/network/menu.php:85 msgid "Installed Themes" msgstr "Installed Themes" -#: wp-admin/network/menu.php:52 +#: wp-admin/network/menu.php:57 msgid "All Sites" msgstr "All Sites" @@ -1060,8 +1060,8 @@ msgid "Welcome to the Network installation process!" msgstr "Welcome to the Network installation process!" #: wp-admin/includes/network.php:161 -msgid "Error: The network could not be created." -msgstr "Error: the network could not be created." +msgid "The network could not be created." +msgstr "The network could not be created." #: wp-admin/includes/network.php:146 msgid "Once the network is created, you may reactivate your plugins." @@ -1375,7 +1375,9 @@ msgstr "A new user will be created if the above email address is not in the data msgid "Admin Email" msgstr "Admin Email" -#: wp-admin/network/site-new.php:299 +#: wp-admin/network/menu.php:58 wp-admin/network/site-new.php:182 +#: wp-admin/network/site-new.php:192 wp-admin/network/site-new.php:299 +#: wp-admin/network/sites.php:391 msgid "Add Site" msgstr "Add Site" @@ -1427,9 +1429,9 @@ msgstr "Limited Email Registrations" msgid "Banned Names" msgstr "Banned Names" -#: wp-admin/network/settings.php:251 -msgid "Add New Users" -msgstr "Add New Users" +#: wp-admin/network/site-users.php:353 +msgid "Add New User" +msgstr "Add New User" #: wp-admin/network/settings.php:239 msgid "Registration notification" diff --git a/web/app/languages/admin-network-fr_FR.l10n.php b/web/app/languages/admin-network-fr_FR.l10n.php old mode 100755 new mode 100644 index 5e4ca744..797b0ae8 --- a/web/app/languages/admin-network-fr_FR.l10n.php +++ b/web/app/languages/admin-network-fr_FR.l10n.php @@ -1,2 +1,2 @@ 'GlotPress/4.0.1','translation-revision-date'=>'2024-06-28 14:16:02+0000','plural-forms'=>'nplurals=2; plural=n > 1;','project-id-version'=>'WordPress - 6.7.x - Development - Administration - Network Admin','language'=>'fr','messages'=>['Documentation on Upgrade Network'=>'Documentation sur la mise à jour d’un réseau multisite (en anglais)','Deleting a site is a permanent action that cannot be undone. This will delete the entire site and its uploads directory.'=>'Supprimer un site est une action irréversible. Cela supprimera l’ensemble du site ainsi que son dossier contenantles téléversements.','Delete this site permanently'=>'Supprimer définitivement ce site.','Visit to go to the front-end of the live site.'=>'Cliquer pour aller voir le site en live.','Documentation on Network Settings'=>'Documentation sur les réglages du réseau multisite (en anglais)','Documentation on the Network Admin'=>'Documentation sur l’administration d’un réseau multisite (en anglais)','Documentation on Creating a Network'=>'Documentation sur la création d’un réseau multisite (en anglais)','https://developer.wordpress.org/advanced-administration/server/web-server/nginx/'=>'https://developer.wordpress.org/advanced-administration/server/web-server/nginx/','siteActivate'=>'Activer','Missing site title.'=>'Titre du site manquant.','Table ordered by User Registered Date.'=>'Tableau trié par date d’inscription du compte.','Table ordered by Theme Name.'=>'Tableau trié par nom de thème.','Table ordered by Site Registered Date.'=>'Tableau trié par date de création du site.','Table ordered by Last Updated.'=>'Tableau trié par date de dernière mise à jour.','Table ordered by Site Path.'=>'Tableau trié par chemin d’accès du site.','Table ordered by Site Domain Name.'=>'Tableau trié par nom de domaine du site.','Network configuration authentication keys'=>'Clés d’authentification de la configuration du réseau','Network configuration rules for %s'=>'Règles de configuration du réseau pour le fichier %s','WordPress has been updated! Next and final step is to individually upgrade the sites in your network.'=>'WordPress a été mis à jour ! La prochaine étape pour finaliser est de mettre à niveau individuellement les sites de votre réseau.','Cannot create an empty site.'=>'Impossible de créer un site vide.','You should back up your existing %s file.'=>'Vous devez sauvegarder votre fichier %s existant.','You should back up your existing %1$s and %2$s files.'=>'Vous devriez sauvegarder vos fichiers %1$s et %2$s existants.','Visit theme site for %s'=>'Consultez le site du thème pour %s','Child theme of %s'=>'Thème enfant de %s','sitePublic'=>'Public','siteNot spam'=>'Non indésirable','%s theme will no longer be auto-updated.'=>'%s thème ne sera plus mis à jour automatiquement.' . "\0" . '%s thèmes ne seront plus mis à jour automatiquement.','%s theme will be auto-updated.'=>'%s thème sera mis à jour automatiquement.' . "\0" . '%s thèmes seront mis à jour automatiquement.','Sorry, you are not allowed to change themes automatic update settings.'=>'Désolé, vous n’avez pas l’autorisation de modifier les réglages de mise à jour automatique des thèmes.','No themes are currently available.'=>'Aucun thème n’est actuellement disponible.','Y/m/d g:i:s a'=>'d/m/Y G:i:s','It seems your network is running with Nginx web server. Learn more about further configuration.'=>'Il semble que votre réseau fonctionne avec un serveur web Nginx. En savoir plus sur les possibilités de configurations supplémentaires.','Deleted (%s)'=>'Supprimé (%s)' . "\0" . 'Supprimés (%s)','sitesSpam (%s)'=>'Indésirable (%s)' . "\0" . 'Indésirables (%s)','Mature (%s)'=>'Contenu adulte (%s)' . "\0" . 'Contenu adulte (%s)','Archived (%s)'=>'Archivé (%s)' . "\0" . 'Archivés (%s)','Public (%s)'=>'Public (%s)' . "\0" . 'Publics (%s)','sitesAll (%s)'=>'Tous (%s)' . "\0" . 'Tous (%s)','themesUpdate Available (%s)'=>'Mise à jour disponible (%s)' . "\0" . 'Mises à jour disponible (%s)','Main'=>'Principal','Documentation on the Network Screen'=>'Documentation sur l’écran Créer un réseau de sites WordPress (en anglais)','The constant %s cannot be defined when creating a network.'=>'La constante %s ne peut pas être définie lors de la création d’un réseau.','You are about to delete the following sites:'=>'Vous allez supprimer les sites suivants :','User could not be added to this site.'=>'Le compte ne peut pas être ajouté à ce site.','The username and a link to set the password will be mailed to this email address.'=>'L’identifiant et un lien pour mettre en place son mot de passe seront envoyés à cette adresse e-mail.','There is a pending change of the network admin email to %s.'=>'Il y a une modification en attente pour l’e-mail d’administration du réseau sur %s.','Sub-domain Installation'=>'Installation en sous-domaine','Sub-directory Installation'=>'Installation en sous-répertoire','Active Child Theme'=>'Thème enfant actif','%s KB'=>'%s Ko','%s Sites'=>'Les sites de %s','Sorry, you are not allowed to delete themes for this site.'=>'Désolé, vous n’avez pas l’autorisation de supprimer les thèmes de ce site.','Sorry, you are not allowed to manage network themes.'=>'Désolé, vous n’avez pas l’autorisation de gérer les thèmes du réseau.','Sorry, you are not allowed to delete that site.'=>'Désolé, vous n’avez pas l’autorisation de supprimer ce site.','Sorry, you are not allowed to manage themes for this site.'=>'Désolé, vous n’avez pas l’autorisation de gérer les thèmes de ce site.','Sorry, you are not allowed to add sites to this network.'=>'Désolé, vous n’avez pas l’autorisation d’ajouter des sites sur ce réseau.','Sorry, you are not allowed to edit this site.'=>'Désolé, vous n’avez pas l’autorisation de modifier ce site.','The email address of the first comment author on a new site.'=>'L’adresse e-mail de l’auteur ou autrice du premier commentaire sur un nouveau site.','First Comment Email'=>'E-mail du premier commentaire','That’s all, stop editing! Happy publishing.'=>'C’est tout, ne touchez pas à ce qui suit ! Bonne publication de contenus !','Add the following to your %1$s file in %2$s above the line reading %3$s:'=>'Ajouter ce texte à votre fichier %1$s dans %2$s au dessus de la ligne %3$s :','theme%1$s by %2$s'=>'%1$s par %2$s','Only lowercase letters (a-z), numbers, and hyphens are allowed.'=>'Uniquement des lettres minuscules non accentuées (a-z), des chiffres (0-9), et des traits d’union (-) sont autorisés.','These unique authentication keys are also missing from your %s file.'=>'Ces clés d’authentification uniques manquent également à votre fichier %s.','This unique authentication key is also missing from your %s file.'=>'La clé unique d’authentification est aussi absente de votre fichier %s.','Because you are using %1$s, the sites in your WordPress network must use sub-directories. Consider using %2$s if you wish to use sub-domains.'=>'Dans le mesure où vous utilisez %1$s, les sites de votre réseau WordPress doivent fonctionner avec des sous-répertoires. Utilisez plutôt %2$s si vous préférez qu’ils fonctionnent avec des sous-domaines.','The internet address of your network will be %s.'=>'L’adresse internet de votre réseau sera %s.','You should consider changing your site domain to %1$s before enabling the network feature. It will still be possible to visit your site using the %3$s prefix with an address like %2$s but any links will not have the %3$s prefix.'=>'Il est recommandé de modifier votre adresse de site pour %1$s avant d’activer la fonctionnalité réseau. Il sera toujours possible de parcourir votre site en mettant le préfixe %3$s à une adresse telle que %2$s, mais tous les liens n’auront pas le préfixe %3$s.','You cannot change this later.'=>'Vous ne pourrez pas changer ceci ultérieurement.','Please choose whether you would like sites in your WordPress network to use sub-domains or sub-directories.'=>'Veuillez indiquer si vous souhaitez que les sites de votre réseau WordPress utilisent des sous-domaines ou des sous-répertoires.','If %1$s is disabled, ask your administrator to enable that module, or look at the Apache documentation or elsewhere for help setting it up.'=>'Si %1$s est désactivé, demandez à votre administrateur ou administratrice d’activer ce module, ou parcourez la documentation Apache . Vous pouvez aussi lancer une recherche afin de trouver de l’aide sur l’installation.','It looks like the Apache %s module is not installed.'=>'Il semble que le module %s d’Apache ne soit pas installé.','Please make sure the Apache %s module is installed as it will be used at the end of this installation.'=>'Veuillez vous assurer que le module %s d’Apache soit installé, car il sera utilisé à la fin de l’installation.','userRegistered'=>'Inscription','Super Admin (%s)'=>'Super-admin (%s)' . "\0" . 'Super-admins (%s)','userNot spam'=>'N’est pas un indésirable','userMark as spam'=>'Marquer comme indésirable','Visit Theme Site'=>'Aller sur le site du thème','Broken Theme:'=>'Thème cassé :','Network Disable %s'=>'Désactiver %s pour le réseau','Disable %s'=>'Désactiver %s','Network Enable %s'=>'Activer %s sur le réseau','Enable %s'=>'Activer %s','Network Disable'=>'Désactiver du réseau','themesBroken (%s)'=>'Cassé (%s)' . "\0" . 'Cassés (%s)','themesDisabled (%s)'=>'Désactivé (%s)' . "\0" . 'Désactivés (%s)','themesEnabled (%s)'=>'Activé (%s)' . "\0" . 'Activés (%s)','themesAll (%s)'=>'Tous (%s)' . "\0" . 'Tous (%s)','No themes found.'=>'Aucun thème trouvé.','verb; siteArchive'=>'Archiver','Unarchive'=>'Désarchiver','Never'=>'Jamais','%1$s – %2$s'=>'%1$s – %2$s','siteRegistered'=>'Inscription','Last Updated'=>'Dernière mise à jour','siteNot Spam'=>'N’est pas un indésirable','siteMark as spam'=>'Marquer comme indésirable','No sites found.'=>'Aucun site trouvé.','Mature'=>'Adulte','Deleted'=>'Supprimé','siteSpam'=>'Indésirable','Archived'=>'Archivé','A password reset link will be sent to the user via email.'=>'Un lien de réinitialisation de mot de passe sera envoyé par e-mail au compte.','If registration is disabled, please set %1$s in %2$s to a URL you will redirect visitors to if they visit a non-existent site.'=>'Si la création de compte est désactivée, veuillez remplir la valeur de %1$s (dans le fichier %2$s) avec l’adresse vers laquelle vous souhaitez que les visiteurs soient redirigés lorsqu’ils se rendent à un site qui n’existe pas.','You must define the %1$s constant as true in your %2$s file to allow creation of a Network.'=>'Vous devez mettre la constante %1$s à true dans votre fichier %2$s afin de permettre la création d’un Réseau.','Themes list navigation'=>'Naviguation de la liste des thèmes','Sites list'=>'Liste des sites','Sites list navigation'=>'Navigation de la liste des sites','Site users list'=>'Liste des comptes du site','Site users list navigation'=>'Parcours de la liste des comptes du site','Filter site users list'=>'Filtrer la liste des comptes du site','Site themes list'=>'Liste des thèmes du site','Site themes list navigation'=>'Parcours de la liste des thèmes du site','Filter site themes list'=>'Filtrer la liste des thème du site','The domain or path entered conflicts with an existing username.'=>'Le domaine ou le chemin saisi est entré en conflit avec un identifiant existant.','The requested action is not valid.'=>'L’action demandée n’est pas valide.','You are about to mark the site %s as not mature.'=>'Vous êtes sur le point d’indiquer que le site %s n’est pas réservé aux adultes.','You are about to mark the site %s as mature.'=>'Vous êtes sur le point d’indiquer que le site %s est réservé aux adultes.','You are about to delete the site %s.'=>'Vous êtes sur le point de supprimer le site %s.','You are about to mark the site %s as spam.'=>'Vous êtes sur le point de marquer le site %s comme indésirable.','You are about to unspam the site %s.'=>'Vous êtes sur le point de marquer le site %s comme sain.','You are about to archive the site %s.'=>'Vous êtes sur le point d’archiver le site %s.','You are about to unarchive the site %s.'=>'Vous êtes sur le point de désarchiver le site %s.','You are about to deactivate the site %s.'=>'Vous êtes sur le point de désactiver le site %s.','You are about to activate the site %s.'=>'Vous êtes sur le point d’activer le site %s.','The requested site does not exist.'=>'Le site demandé n’existe pas.','Path'=>'Chemin ','Domain'=>'Domaine','Documentation on Network Users'=>'Documentation sur les comptes du réseau (en anglais).','Documentation on Network Themes'=>'Documentation sur les thèmes du réseau (en anglais).','Warning! Problem updating %1$s. Your server may not be able to connect to sites running on it. Error message: %2$s'=>'Attention ! Un problème est survenu lors de la mise à jour de %1$s. Votre serveur peut ne pas être en mesure de se connecter à certains sites qui y sont installés. Message d’erreur : %2$s.','%s theme deleted.'=>'%s thème supprimé.' . "\0" . '%s thèmes supprimés.','%s theme disabled.'=>'%s thème désactivé.' . "\0" . '%s thèmes désactivés.','%s theme enabled.'=>'%s thème activé.' . "\0" . '%s thèmes activés.','Yes, delete these themes'=>'Oui, supprimer ces thèmes','You are about to remove the following themes:'=>'Vous êtes sur le point d’enlever les thèmes suivants :','These themes may be active on other sites in the network.'=>'Ces thèmes peuvent être actifs sur d’autres site de ce réseau.','Delete Themes'=>'Supprimer les thèmes','Set site attributes'=>'Configurer les attributs du site','Enable menus'=>'Activer les menus','Size in kilobytes'=>'Taille en kilooctets','Allowed file types. Separate types by spaces.'=>'Types de fichier autorisés. Séparez les types par une espace.','New registrations settings'=>'Réglages pour les nouvelles inscriptions','Add the following to your %1$s file in %2$s, replacing other WordPress rules:'=>'Ajoutez les règles suivantes à votre fichier %1$s, dans le dossier %2$s, en remplacement d’autres règles de WordPress :','Confirm your action'=>'Confirmez cette action','Hover over any user on the list to make the edit links appear. The Edit link on the left will take you to their Edit User profile page; the Edit link on the right by any site name goes to an Edit Site screen for that site.'=>'Survolez n’importe quel compte de la liste pour faire apparaître les liens de modification. Le lien Modifier à gauche ouvrira la page de modification du profil du compte ; le lien Modifier à droite de n’importe quel nom de site ouvrira l’écran de modification de ce site.','To search for a site, enter the path or domain.'=>'Pour rechercher un site, saisissez son chemin ou son domaine.','To search for a user, enter an email address or username. Use a wildcard to search for a partial username, such as user*.'=>'Pour rechercher un compte, saisissez une adresse e-mail ou un identifiant. Utilisez le signe étoile (*) pour lancer une recherche sur un identifiant partiel, par exemple compt*.','To add a new site, click Create a New Site.'=>'Pour ajouter un nouveau site, cliquer sur Créer un nouveau site.','To add a new user, click Create a New User.'=>'Pour ajouter un nouveau compte, cliquez sur Créer un nouveau compte.','Quick Tasks'=>'Tâches rapides','To search for a user or site, use the search boxes.'=>'Pour rechercher un compte ou un site, utilisez les champs de recherche.','The Right Now widget on this screen provides current user and site counts on your network.'=>'Le widget « Aujourd’hui » de cet écran vous donne le nombre actuel de comptes et de sites sur votre réseau.','Modify global network settings'=>'Modifier les réglages globaux du réseau','Update your network'=>'Mettre à jour votre réseau','Install and activate themes or plugins'=>'Installer et activer des thèmes ou des extensions','Add and manage sites or users'=>'Ajouter et gérer des sites ou des comptes','From here you can:'=>'D’ici, vous pouvez :','Welcome to your Network Admin. This area of the Administration Screens is used for managing all aspects of your Multisite Network.'=>'Bienvenue dans l’administration de votre réseau ! Cette partie des écrans d’administration sert à gérer tous les aspects de votre réseau multisite.','Only use this screen once you have updated to a new version of WordPress through Updates/Available Updates (via the Network Administration navigation menu or the Toolbar). Clicking the Upgrade Network button will step through each site in the network, five at a time, and make sure any database updates are applied.'=>'N’utilisez cet écran que quand vous avez mis à jour cette installation de WordPress (au moyen de la fonction de mise à jour automatique ou la barre d’outils). En cliquant sur « Mettre à jour le réseau », WordPress s’occupera de tous les sites du réseau, par groupes de cinq, et s’assurera que toutes les mises à jour de bases de données sont appliquées.','Upgrade Network'=>'Mettre à jour le réseau','Subdirectory networks may not be fully compatible with custom wp-content directories.'=>'Les sous-répertoires du réseau peuvent ne pas être totalement compatibles avec les répertoires personnalisés de wp-content.','Add the designated lines of code to wp-config.php (just before /*...stop editing...*/) and .htaccess (replacing the existing WordPress rules).'=>'Ajoutez les lignes de code désignées dans le fichier wp-config.php (juste avant /*...C’est tout...*/) et le fichier .htaccess (en remplaçant les règles existantes de WordPress).','Language Settings'=>'Réglages de langue','Allow site administrators to add new users to their site via the "Users → Add New" page'=>'Autoriser les administrateurs ou administratrices de sites à ajouter de nouveaux comptes à leurs sites via la page « Comptes → Ajouter ».','Super admins can no longer be added on the Options screen. You must now go to the list of existing users on Network Admin > Users and click on Username or the Edit action link below that name. This goes to an Edit User page where you can check a box to grant super admin privileges.'=>'Les super-admins ne peuvent plus être ajoutés via l’écran des options. Vous devez aller à la liste des comptes (option « Comptes » du menu « Admin du réseau » et cliquer sur un identifiant ou sur le lien « Modifier » qui s’affiche en dessous. Vous arriverez alors à un écran vous permettant de modifier ce compte, où une case à cocher donne les droits de super-admin.','Enter the username and email.'=>'Saisissez l’identifiant et l’adresse e-mail.','User created.'=>'Le compte a été créé.','Select a user to remove.'=>'Sélectionnez un compte à supprimer.','Select a user to change role.'=>'Sélectionnez un compte dont vous voulez changer le rôle.','Enter the username of an existing user.'=>'Saisir l’identifiant d’un compte existant.','User is already a member of this site.'=>'Ce compte est déjà membre de ce site.','Site options updated.'=>'Les réglages du site ont été mis à jour.','Site added. Visit Dashboard or Edit Site'=>'Site ajouté. Afficher le tableau de bord | Modifier le site','This screen is for Super Admins to add new sites to the network. This is not affected by the registration settings.'=>'Cet écran permet aux super-admins d’ajouter de nouveaux sites au réseau. Il n’est pas limité par les réglages d’inscription.','Site info updated.'=>'Les infos du site ont été mises à jour.','You cannot delete a theme while it is active on the main site.'=>'Vous ne pouvez pas effacer un thème s’il est activé sur le site principal.','Themes can be enabled on a site by site basis by the network admin on the Edit Site screen (which has a Themes tab); get there via the Edit action link on the All Sites screen. Only network admins are able to install or edit themes.'=>'Les thèmes peuvent être activés par l’administrateur/administratrice du réseau pour chaque site, individuellement, par le biais de l’écran de modification d’un site (et de son onglet « Thèmes »), accessible via le lien « Modifier » de la liste des sites. Seuls les administrateurs ou administratrices du réseau peuvent installer ou modifier des thèmes.','No, return me to the theme list'=>'Non, je veux revenir à la liste des thèmes.','Yes, delete this theme'=>'Oui, supprimer ce thème','Are you sure you want to delete these themes?'=>'Confirmez-vous la suppression de ces thèmes ?','You are about to remove the following theme:'=>'Vous êtes sur le point de supprimer le thème suivant :','This theme may be active on other sites in the network.'=>'Ce thème est peut-être activé sur d’autres sites du réseau','Delete Theme'=>'Supprimer le thème','Network enabled themes are not shown on this screen.'=>'Les thèmes activés pour le réseau ne sont pas visibles sur cet écran.','No theme selected.'=>'Aucun thème sélectionné.','Theme disabled.'=>'Thème désactivé.','Theme enabled.'=>'Thème activé.','Edit Site: %s'=>'Modifier le site : %s','Invalid site ID.'=>'ID du site non valide.','Sorry, you are not allowed to delete the site %s.'=>'Désolé, vous n’avez pas l’autorisation de supprimer le site %s.','Delete which is a permanent action after the confirmation screen.'=>'« Supprimer » est une action irréversible une fois passé l’écran de confirmation.','Dashboard leads to the Dashboard for that site.'=>'« Tableau de bord » envoie vers le tableau de bord du site.','An Edit link to a separate Edit Site screen.'=>'Un lien « Modifier » vers un nouvel écran de modification de site.','Add New Site takes you to the screen for adding a new site to the network. You can search for a site by Name, ID number, or IP address. Screen Options allows you to choose how many sites to display on one page.'=>'« Ajouter » vous enverra au formulaire en bas de cette page. Vous pouvez rechercher un site par le nom, l’identifiant ou l’adresse IP. Les options d’écran vous permettent de choisir le nombre de sites à afficher sur une même page.','Add User'=>'Ajouter un compte','Cannot add user.'=>'Impossible d’ajouter le compte.','Add User will set up a new user account on the network and send that person an email with username and password.'=>'« Ajouter un compte » créera un nouveau compte sur le réseau, et enverra un message contenant son identifiant et son mot de passe au destinataire.','Updates'=>'Mises à jour','Network Settings'=>'Réglages du réseau','Installed Themes'=>'Thèmes installés','All Sites'=>'Tous les sites','Once you complete these steps, your network is enabled and configured. You will have to log in again.'=>'Une fois que vous aurez passé ces étapes, votre réseau sera activé et configuré. Vous devrez vous reconnecter.','To make your installation more secure, you should also add:'=>'Pour sécuriser encore plus votre installation, vous devriez également ajouter :','Complete the following steps to enable the features for creating a network of sites.'=>'Suivez les étapes suivantes pour activer les fonctionnalités de création de réseau de sites.','Enabling the Network'=>'Activer le Réseau','Please complete the configuration steps. To create a new network, you will need to empty or remove the network database tables.'=>'Veuillez suivre les étapes de configuration. Pour créer un nouveau réseau, vous devrez vider ou supprimer les tables du réseau de la base de données.','An existing WordPress network was detected.'=>'Un réseau WordPress pré-existant a été détecté.','The original configuration steps are shown here for reference.'=>'Les étapes de la configuration originale sont affichées ici pour référence.','Your email address.'=>'Votre adresse e-mail.','What would you like to call your network?'=>'Comment souhaitez-vous appeler votre réseau ?','Network Title'=>'Titre du réseau','Because your installation is not new, the sites in your WordPress network must use sub-domains.'=>'Comme votre installation de WordPress n’est pas récente, les sites de votre réseau doivent utiliser des sous-domaines.','Because your installation is in a directory, the sites in your WordPress network must use sub-directories.'=>'Comme votre installation de WordPress se trouve dans un répertoire, les sites de votre réseau doivent utiliser des sous-répertoires.','The main site in a sub-directory installation will need to use a modified permalink structure, potentially breaking existing links.'=>'Le site principal d’une installation en sous-répertoire devra utiliser une structure de permaliens modifiée, ce qui pourrait potentiellement casser vos liens existants.','Network Details'=>'Détails du réseau','Server Address'=>'Adresse du serveur','subdirectory exampleslike %1$s/site1 and %1$s/site2'=>'comme %1$s/site1 et %1$s/site2','Sub-directories'=>'Sous-répertoires','subdomain exampleslike site1.%1$s and site2.%1$s'=>'comme site1.%1$s et site2.%1$s','Sub-domains'=>'Sous-domaines','You will need a wildcard DNS record if you are going to use the virtual host (sub-domain) functionality.'=>'Si vous souhaitez utiliser la fonctionnalité d’hébergement virtuel (sous-domaine), vous aurez besoin d’un enregistrement DNS générique (joker/wildcard).','Addresses of Sites in your Network'=>'Adresses des sites de votre réseau','Fill in the information below and you’ll be on your way to creating a network of WordPress sites. Configuration files will be created in the next step.'=>'Remplissez les informations ci-dessous et vous pourrez créer un réseau de sites WordPress. Les fichiers de configuration seront créés lors de la prochaine étape.','Welcome to the Network installation process!'=>'Bienvenue dans l’installation du Réseau !','Error: The network could not be created.'=>'Erreur : Le réseau ne peut pas être créé.','Once the network is created, you may reactivate your plugins.'=>'Dès que le réseau sera créé, vous pourrez réactiver vos extensions.','Please deactivate your plugins before enabling the Network feature.'=>'Veuillez désactiver vos extensions avant d’activer la fonctionnalité Réseau.','Network'=>'Réseau','The choice of subdirectory sites is disabled if this setup is more than a month old because of permalink problems with “/blog/” from the main site. This disabling will be addressed in a future version.'=>'Le choix d’avoir des sites en mode sous-répertoire est désactivé si le réseau a été installé il y a un mois ou plus, afin de pallier les problèmes de permaliens avec l’ajout de «  /blog/ » sur les adresses du site principal. Cette limitation sera corrigée dans une prochaine version.','Once you add this code and refresh your browser, multisite should be enabled. This screen, now in the Network Admin navigation menu, will keep an archive of the added code. You can toggle between Network Admin and Site Admin by clicking on the Network Admin or an individual site name under the My Sites dropdown in the Toolbar.'=>'Une fois que vous aurez ajouté ce code et rafraîchi la page dans votre navigateur, le mode multisite devrait être activé. Cet écran, désormais placé dans le menu de navigation Admin du Réseau, conservera une archive du code ajouté. Vous pouvez basculer de l’administration du réseau à l’administration du site en cliquant sur « Admin du réseau », ou en cliquant sur le nom d’un site individuel dans le menu déroulant « Mes Sites » de la barre d’outils.','The next screen for Network Setup will give you individually-generated lines of code to add to your wp-config.php and .htaccess files. Make sure the settings of your FTP client make files starting with a dot visible, so that you can find .htaccess; you may have to create this file if it really is not there. Make backup copies of those two files.'=>'L’écran suivant vous présentera un ensemble de lignes de code générées à partir de votre configuration, qu’il vous faudra ajouter à vos fichiers wp-config.php et .htaccess. Veillez bien à ce que votre client FTP soit configuré pour afficher les fichiers commençant par un point, afin que vous puissiez trouver le fichier .htaccess. Il est possible que vous ayez à créer ce fichier s’il n’est pas déjà présent. Avant toute modification de wp-config.php et .htaccess, faites-en une copie de sauvegarde.','Choose subdomains or subdirectories; this can only be switched afterwards by reconfiguring your installation. Fill out the network details, and click Install. If this does not work, you may have to add a wildcard DNS record (for subdomains) or change to another setting in Permalinks (for subdirectories).'=>'Faites le choix entre sous-domaines ou sous-dossiers. Une fois l’installation configurée, vous ne pourrez pas revenir en arrière sans recommencer à zéro. Saisissez tous les détails, et cliquez sur « Installer ». Si cela ne marche pas, vous devrez sans doute ajouter une entrée de sous-domaine générique (wildcard) dans vos enregistrements DNS, ou passer à un réglage différent pour vos permaliens (si en mode sous-dossiers).','This screen allows you to configure a network as having subdomains (site1.example.com) or subdirectories (example.com/site1). Subdomains require wildcard subdomains to be enabled in Apache and DNS records, if your host allows it.'=>'Cet écran vous permet de configurer un réseau, sous la forme sous-domaines (site1.example.com) ou sous-dossiers (example.com/site1). La forme sous-domaines nécessite une entrée de sous-domaine générique (wildcard) dans les enregistrements DNS et la configuration Apache, si votre hébergeur le permet.','Create a Network of WordPress Sites'=>'Créer un réseau de sites WordPress','The Network creation panel is not for WordPress MU networks.'=>'Le panneau de création de réseau n’est pas conçu pour les réseaux WordPress MU.','Warning! User cannot be modified. The user %s is a network administrator.'=>'Avertissement ! Le compte %s ne peut être modifié car c’est un administrateur ou une administratrice du réseau.','If the admin email for the new site does not exist in the database, a new user will also be created.'=>'Si l’adresse de contact du nouveau site n’existe pas dans la base de données, un nouveau compte sera créé pour l’occasion.','Deactivate, Archive, and Spam which lead to confirmation screens. These actions can be reversed later.'=>'« Désactiver », « Archiver » et « Indésirable » envoient chacun à des écrans de confirmation. Ces actions peuvent être annulées par la suite.','Hovering over each site reveals seven options (three for the primary site):'=>'Survoler chaque site avec la souris révèle sept options (trois pour le site principal) :','Operational settings has fields for the network’s name and admin email.'=>'Les réglages de fonctionnement permettent de modifier le nom du réseau, et l’adresse e-mail de l’administrateur ou de l’administratrice.','The bulk action will permanently delete selected users, or mark/unmark those selected as spam. Spam users will have posts removed and will be unable to sign up again with the same email addresses.'=>'Le menu « Actions groupées » permet de supprimer définitivement plusieurs comptes d’un coup, ou de les marquer comme indésirables ou non. Les comptes indésirables verront leurs articles supprimés, et ne pourront plus se connecter avec leur adresse e-mail.','You can also go to the user’s profile page by clicking on the individual username.'=>'Vous pouvez également aller sur la page de profil d’un compte en cliquant sur son identifiant.','Upload settings control the size of the uploaded files and the amount of available upload space for each site. You can change the default value for specific sites when you edit a particular site. Allowed file types are also listed (space separated only).'=>'Les réglages d’envoi des fichiers permettent de limiter la taille des fichiers téléversés et l’espace disponible pour chaque site. Vous pouvez préciser la valeur pour chaque site individuellement. Vous pouvez également préciser les types de fichiers acceptés (séparés par des espaces).','You can make an existing user an additional super admin by going to the Edit User profile page and checking the box to grant that privilege.'=>'Vous pouvez promouvoir un compte existant en super-admin en allant sur leur page de profil, et en cochant la case correspondante.','Users who are signed up to the network without a site are added as subscribers to the main or primary dashboard site, giving them profile pages to manage their accounts. These users will only see Dashboard and My Sites in the main navigation until a site is created for them.'=>'Les comptes qui se sont inscrits sur le réseau sans créer de site deviennent abonnés du site d’accueil. Celui-ci leur permet d’accéder à leur compte. Ces comptes ne voient dans la navigation principale que les options « Tableau de bord » et « Mes sites », jusqu’à ce qu’un site leur soit créé.','You can sort the table by clicking on any of the table headings and switch between list and excerpt views by using the icons above the users list.'=>'Un clic sur le titre d’une colonne permet de changer le tri du tableau. Les icônes en haut à droite permettent d’afficher des extraits ou non.','This table shows all users across the network and the sites to which they are assigned.'=>'Ce tableau affiche tous les comptes appartenant au réseau, et les sites auxquels ils sont assignés.','If this process fails for any reason, users logging in to their sites will force the same update.'=>'Si ce processus échoue pour n’importe quelles raisons, les comptes se connectant à leurs sites déclencheront la même mise à jour.','If a version update to core has not happened, clicking this button will not affect anything.'=>'S’il n’y a pas eu de mise à jour du cœur WordPress récemment, cliquer sur ce bouton n’aura aucun effet.','If the network admin disables a theme that is in use, it can still remain selected on that site. If another theme is chosen, the disabled theme will not appear in the site’s Appearance > Themes screen.'=>'Si l’administrateur/administratrice du réseau désactive un thème en cours d’utilisation par un site, ce thème restera en place pour ce site. Si le site change de thème, le thème désactivé n’apparaîtra plus dans l’écran de sélection des thèmes de ce site.','This screen enables and disables the inclusion of themes available to choose in the Appearance menu for each site. It does not activate or deactivate which theme a site is currently using.'=>'Cet écran permet d’activer ou désactiver la disponibilité des thèmes pour tous les sites du réseau. Il ne permet pas d’activer ou activer le thème actuellement utilisé ce site.','This is the main table of all sites on this network. Switch between list and excerpt views by using the icons above the right side of the table.'=>'Voici la liste de tous les sites de ce réseau. Vous pouvez changer de vue (liste avec ou sans extrait) en utilisant les icônes présentes en haut à droite de la liste.','Menu setting enables/disables the plugin menus from appearing for non super admins, so that only super admins, not site admins, have access to activate plugins.'=>'Le réglage du menu (dés)active la section « Extensions » du menu pour les comptes normaux, de telle sorte que seuls les super-admins peuvent y accéder pour activer une extension.','New site settings are defaults applied when a new site is created in the network. These include welcome email for when a new site or user account is registered, and what᾿s put in the first post, page, comment, comment author, and comment URL.'=>'Les réglages des nouveaux sites sont les réglages par défaut appliqués à tout nouveau site créé sur le réseau. Cela comprend le message d’accueil quand un nouveau compte ou un nouveau site est enregistré, ainsi que le contenu du premier article, de la première page et du premier commentaire (dont le nom et l’URL de la personne ayant commenté).','Registration settings can disable/enable public signups. If you let others sign up for a site, install spam plugins. Spaces, not commas, should separate names banned as sites for this network.'=>'Les réglages d’inscription permettent d’ouvrir ou fermer les inscriptions au public. Si vous ouvrez les inscriptions, veillez à installer des extensions antispam. Les domaines bannis devraient être indiqués séparés d’un espace, non d’une virgule.','This screen sets and changes options for the network as a whole. The first site is the main site in the network and network options are pulled from that original site’s options.'=>'Cet écran vous donne accès aux options régissant l’ensemble du réseau. Le premier site est le site principal du réseau, et les options du réseau sont tirées des options de ce premier site.','The following words are reserved for use by WordPress functions and cannot be used as site names: %s'=>'Les mots suivants sont réservés pour l’usage de fonctions WordPress et ne peuvent pas être utilisés comme nom de site : %s','If your browser does not start loading the next page automatically, click this link:'=>'Si votre navigateur ne lance pas automatiquement la page suivante, cliquez sur ce lien :','If you want to ban domains from site registrations. One domain per line.'=>'Si vous souhaitez interdire la création de site aux personnes dont l’adresse e-mail est liée à certains noms de domaines. Un domaine par ligne.','If you want to limit site registrations to certain domains. One domain per line.'=>'Si vous souhaitez que les seules personnes habilitées à créer un site soient celles disposant d’une adresse e-mail liée à certains noms de domaines. Un domaine par ligne.','Users removed from spam.'=>'Comptes retirés de la liste de comptes indésirables.','Site marked as spam.'=>'Site marqué comme indésirable.','Site removed from spam.'=>'Site marqué comme sain.','Sites marked as spam.'=>'Sites marqués comme indésirables.','Sites removed from spam.'=>'Sites retirés des indésirables.','Users deleted.'=>'Comptes supprimés.','Users marked as spam.'=>'Comptes marqués comme indésirables.','Site deactivated.'=>'Site désactivé.','Site activated.'=>'Site activé.','Site unarchived.'=>'Site désarchivé.','Site archived.'=>'Site archivé.','Site deleted.'=>'Site effacé.','Sites deleted.'=>'Sites effacés.','Sorry, you are not allowed to change the current site.'=>'Désolé, vous n’avez pas l’autorisation de modifier le site actuel.','There was an error creating the user.'=>'Une erreur s’est produite lors de la création du compte.','Upload file types'=>'Types des fichiers téléversés','Limit total size of files uploaded to %s MB'=>'La taille totale des fichiers téléversés est limitée à %s Mo','The URL for the first comment on a new site.'=>'L’URL du premier commentaire sur tout nouveau site.','The author of the first comment on a new site.'=>'L’auteur ou l’autrice du premier commentaire sur tout nouveau site.','The first comment on a new site.'=>'Le premier commentaire sur tout nouveau site.','The first page on a new site.'=>'La première page sur tout nouveau site.','The first post on a new site.'=>'Le premier article sur un nouveau site.','All done!'=>'Terminé !','Both sites and user accounts can be registered'=>'La création de sites et de comptes est autorisée.','Logged in users may register new sites'=>'Les comptes connectés peuvent créer de nouveaux sites.','User accounts may be registered'=>'Des comptes peuvent être créés.','Registration is disabled'=>'Les inscriptions ne sont pas autorisées pour le moment.','Enable administration menus'=>'Activer les menus d’administration','Upload Settings'=>'Réglages des téléversements','New Site Settings'=>'Réglages des nouveaux sites','Registration Settings'=>'Réglages d’inscription','Operational Settings'=>'Réglages de fonctionnement','Missing email address.'=>'Adresse e-mail manquante.','Missing or invalid site address.'=>'Adresse de site manquante ou non valide.','Next Sites'=>'Sites suivants','Site upload space'=>'Espace de stockage du site','The welcome email sent to new site owners.'=>'Ce message de bienvenue sera envoyé aux propriétaires de nouveaux sites.','Users are not allowed to register these sites. Separate names by spaces.'=>'Les comptes ne sont pas autorisés à créer un site avec l’un de ces noms. Séparez les noms par un espace.','Send the network admin an email notification every time someone registers a site or user account'=>'Envoyer un message à l’administrateur ou à l’administratrice du réseau à chaque création de site ou de compte.','Network Admin Email'=>'E-mail de l’administrateur ou de l’administratrice du réseau','A new user will be created if the above email address is not in the database.'=>'Un nouveau compte sera créé si l’adresse e-mail n’existe pas dans la base de données.','Admin Email'=>'E-mail de l’administrateur ou de l’administratrice','Add Site'=>'Ajouter un site','Default Language'=>'Langue par défaut','Max upload file size'=>'Taille maximale des fichiers téléversés','First Comment URL'=>'Adresse du premier commentaire','First Comment Author'=>'Auteur ou autrice du premier commentaire','First Comment'=>'Premier commentaire','First Page'=>'Première page','The welcome email sent to new users.'=>'Ce message de bienvenue sera envoyé aux nouveaux comptes.','Welcome User Email'=>'Message de bienvenue aux nouveaux comptes','Welcome Email'=>'Message de bienvenue','Banned Email Domains'=>'Noms de domaines bannis','Limited Email Registrations'=>'Enregistrement réservé aux noms de domaines','Banned Names'=>'Noms bannis','Add New Users'=>'Ajouter de nouveaux comptes','Registration notification'=>'Notification d’inscription','Allow new registrations'=>'Autoriser les nouvelles inscriptions','Duplicated username or email address.'=>'Identifiant ou adresse e-mail déjà utilisé(e).','Cannot create an empty user.'=>'Impossible de créer un compte vide.','Confirm'=>'Confirmer']]; \ No newline at end of file +return ['x-generator'=>'GlotPress/4.0.1','translation-revision-date'=>'2025-03-31 12:54:40+0000','plural-forms'=>'nplurals=2; plural=n > 1;','project-id-version'=>'WordPress - 6.8.x - Development - Administration - Network Admin','language'=>'fr','messages'=>['Documentation on Upgrade Network'=>'Documentation sur la mise à jour d’un réseau multisite (en anglais)','Deleting a site is a permanent action that cannot be undone. This will delete the entire site and its uploads directory.'=>'Supprimer un site est une action irréversible. Cela supprimera l’ensemble du site ainsi que son dossier contenantles téléversements.','Delete this site permanently'=>'Supprimer définitivement ce site.','Visit to go to the front-end of the live site.'=>'Cliquer pour aller voir le site en live.','Documentation on Network Settings'=>'Documentation sur les réglages du réseau multisite (en anglais)','Documentation on the Network Admin'=>'Documentation sur l’administration d’un réseau multisite (en anglais)','Documentation on Creating a Network'=>'Documentation sur la création d’un réseau multisite (en anglais)','https://developer.wordpress.org/advanced-administration/server/web-server/nginx/'=>'https://developer.wordpress.org/advanced-administration/server/web-server/nginx/','siteActivate'=>'Activer','Missing site title.'=>'Titre du site manquant.','Table ordered by User Registered Date.'=>'Tableau trié par date d’inscription du compte.','Table ordered by Theme Name.'=>'Tableau trié par nom de thème.','Table ordered by Site Registered Date.'=>'Tableau trié par date de création du site.','Table ordered by Last Updated.'=>'Tableau trié par date de dernière mise à jour.','Table ordered by Site Path.'=>'Tableau trié par chemin d’accès du site.','Table ordered by Site Domain Name.'=>'Tableau trié par nom de domaine du site.','Network configuration authentication keys'=>'Clés d’authentification de la configuration du réseau','Network configuration rules for %s'=>'Règles de configuration du réseau pour le fichier %s','WordPress has been updated! Next and final step is to individually upgrade the sites in your network.'=>'WordPress a été mis à jour ! La prochaine étape pour finaliser est de mettre à niveau individuellement les sites de votre réseau.','Cannot create an empty site.'=>'Impossible de créer un site vide.','You should back up your existing %s file.'=>'Vous devez sauvegarder votre fichier %s existant.','You should back up your existing %1$s and %2$s files.'=>'Vous devriez sauvegarder vos fichiers %1$s et %2$s existants.','Visit theme site for %s'=>'Consultez le site du thème pour %s','Child theme of %s'=>'Thème enfant de %s','sitePublic'=>'Public','siteNot spam'=>'Non indésirable','%s theme will no longer be auto-updated.'=>'%s thème ne sera plus mis à jour automatiquement.' . "\0" . '%s thèmes ne seront plus mis à jour automatiquement.','%s theme will be auto-updated.'=>'%s thème sera mis à jour automatiquement.' . "\0" . '%s thèmes seront mis à jour automatiquement.','Sorry, you are not allowed to change themes automatic update settings.'=>'Désolé, vous n’avez pas l’autorisation de modifier les réglages de mise à jour automatique des thèmes.','No themes are currently available.'=>'Aucun thème n’est actuellement disponible.','Y/m/d g:i:s a'=>'d/m/Y G:i:s','It seems your network is running with Nginx web server. Learn more about further configuration.'=>'Il semble que votre réseau fonctionne avec un serveur web Nginx. En savoir plus sur les possibilités de configurations supplémentaires.','Deleted (%s)'=>'Supprimé (%s)' . "\0" . 'Supprimés (%s)','sitesSpam (%s)'=>'Indésirable (%s)' . "\0" . 'Indésirables (%s)','Mature (%s)'=>'Contenu adulte (%s)' . "\0" . 'Contenu adulte (%s)','Archived (%s)'=>'Archivé (%s)' . "\0" . 'Archivés (%s)','Public (%s)'=>'Public (%s)' . "\0" . 'Publics (%s)','sitesAll (%s)'=>'Tous (%s)' . "\0" . 'Tous (%s)','themesUpdate Available (%s)'=>'Mise à jour disponible (%s)' . "\0" . 'Mises à jour disponible (%s)','Main'=>'Principal','Documentation on the Network Screen'=>'Documentation sur l’écran Créer un réseau de sites WordPress (en anglais)','The constant %s cannot be defined when creating a network.'=>'La constante %s ne peut pas être définie lors de la création d’un réseau.','You are about to delete the following sites:'=>'Vous allez supprimer les sites suivants :','User could not be added to this site.'=>'Le compte ne peut pas être ajouté à ce site.','The username and a link to set the password will be mailed to this email address.'=>'L’identifiant et un lien pour mettre en place son mot de passe seront envoyés à cette adresse e-mail.','There is a pending change of the network admin email to %s.'=>'Il y a une modification en attente pour l’e-mail d’administration du réseau sur %s.','Sub-domain Installation'=>'Installation en sous-domaine','Sub-directory Installation'=>'Installation en sous-répertoire','Active Child Theme'=>'Thème enfant actif','%s KB'=>'%s Ko','%s Sites'=>'Les sites de %s','Sorry, you are not allowed to delete themes for this site.'=>'Désolé, vous n’avez pas l’autorisation de supprimer les thèmes de ce site.','Sorry, you are not allowed to manage network themes.'=>'Désolé, vous n’avez pas l’autorisation de gérer les thèmes du réseau.','Sorry, you are not allowed to delete that site.'=>'Désolé, vous n’avez pas l’autorisation de supprimer ce site.','Sorry, you are not allowed to manage themes for this site.'=>'Désolé, vous n’avez pas l’autorisation de gérer les thèmes de ce site.','Sorry, you are not allowed to add sites to this network.'=>'Désolé, vous n’avez pas l’autorisation d’ajouter des sites sur ce réseau.','Sorry, you are not allowed to edit this site.'=>'Désolé, vous n’avez pas l’autorisation de modifier ce site.','The email address of the first comment author on a new site.'=>'L’adresse e-mail de l’auteur ou autrice du premier commentaire sur un nouveau site.','First Comment Email'=>'E-mail du premier commentaire','That’s all, stop editing! Happy publishing.'=>'C’est tout, ne touchez pas à ce qui suit ! Bonne publication de contenus !','Add the following to your %1$s file in %2$s above the line reading %3$s:'=>'Ajouter ce texte à votre fichier %1$s dans %2$s au dessus de la ligne %3$s :','theme%1$s by %2$s'=>'%1$s par %2$s','Only lowercase letters (a-z), numbers, and hyphens are allowed.'=>'Uniquement des lettres minuscules non accentuées (a-z), des chiffres (0-9), et des traits d’union (-) sont autorisés.','These unique authentication keys are also missing from your %s file.'=>'Ces clés d’authentification uniques manquent également à votre fichier %s.','This unique authentication key is also missing from your %s file.'=>'La clé unique d’authentification est aussi absente de votre fichier %s.','Because you are using %1$s, the sites in your WordPress network must use sub-directories. Consider using %2$s if you wish to use sub-domains.'=>'Dans le mesure où vous utilisez %1$s, les sites de votre réseau WordPress doivent fonctionner avec des sous-répertoires. Utilisez plutôt %2$s si vous préférez qu’ils fonctionnent avec des sous-domaines.','The internet address of your network will be %s.'=>'L’adresse internet de votre réseau sera %s.','You should consider changing your site domain to %1$s before enabling the network feature. It will still be possible to visit your site using the %3$s prefix with an address like %2$s but any links will not have the %3$s prefix.'=>'Il est recommandé de modifier votre adresse de site pour %1$s avant d’activer la fonctionnalité réseau. Il sera toujours possible de parcourir votre site en mettant le préfixe %3$s à une adresse telle que %2$s, mais tous les liens n’auront pas le préfixe %3$s.','You cannot change this later.'=>'Vous ne pourrez pas changer ceci ultérieurement.','Please choose whether you would like sites in your WordPress network to use sub-domains or sub-directories.'=>'Veuillez indiquer si vous souhaitez que les sites de votre réseau WordPress utilisent des sous-domaines ou des sous-répertoires.','If %1$s is disabled, ask your administrator to enable that module, or look at the Apache documentation or elsewhere for help setting it up.'=>'Si %1$s est désactivé, demandez à votre administrateur ou administratrice d’activer ce module, ou parcourez la documentation Apache . Vous pouvez aussi lancer une recherche afin de trouver de l’aide sur l’installation.','It looks like the Apache %s module is not installed.'=>'Il semble que le module %s d’Apache ne soit pas installé.','Please make sure the Apache %s module is installed as it will be used at the end of this installation.'=>'Veuillez vous assurer que le module %s d’Apache soit installé, car il sera utilisé à la fin de l’installation.','userRegistered'=>'Inscription','Super Admin (%s)'=>'Super-admin (%s)' . "\0" . 'Super-admins (%s)','userNot spam'=>'N’est pas un indésirable','userMark as spam'=>'Marquer comme indésirable','Visit Theme Site'=>'Aller sur le site du thème','Broken Theme:'=>'Thème cassé :','Network Disable %s'=>'Désactiver %s pour le réseau','Disable %s'=>'Désactiver %s','Network Enable %s'=>'Activer %s sur le réseau','Enable %s'=>'Activer %s','Network Disable'=>'Désactiver du réseau','themesBroken (%s)'=>'Cassé (%s)' . "\0" . 'Cassés (%s)','themesDisabled (%s)'=>'Désactivé (%s)' . "\0" . 'Désactivés (%s)','themesEnabled (%s)'=>'Activé (%s)' . "\0" . 'Activés (%s)','themesAll (%s)'=>'Tous (%s)' . "\0" . 'Tous (%s)','No themes found.'=>'Aucun thème trouvé.','verb; siteArchive'=>'Archiver','Unarchive'=>'Désarchiver','Never'=>'Jamais','%1$s – %2$s'=>'%1$s – %2$s','siteRegistered'=>'Inscription','Last Updated'=>'Dernière mise à jour','siteNot Spam'=>'N’est pas un indésirable','siteMark as spam'=>'Marquer comme indésirable','No sites found.'=>'Aucun site trouvé.','Mature'=>'Adulte','Deleted'=>'Supprimé','siteSpam'=>'Indésirable','Archived'=>'Archivé','A password reset link will be sent to the user via email.'=>'Un lien de réinitialisation de mot de passe sera envoyé par e-mail au compte.','If registration is disabled, please set %1$s in %2$s to a URL you will redirect visitors to if they visit a non-existent site.'=>'Si la création de compte est désactivée, veuillez remplir la valeur de %1$s (dans le fichier %2$s) avec l’adresse vers laquelle vous souhaitez que les visiteurs soient redirigés lorsqu’ils se rendent à un site qui n’existe pas.','You must define the %1$s constant as true in your %2$s file to allow creation of a Network.'=>'Vous devez mettre la constante %1$s à true dans votre fichier %2$s afin de permettre la création d’un Réseau.','Themes list navigation'=>'Naviguation de la liste des thèmes','Sites list'=>'Liste des sites','Sites list navigation'=>'Navigation de la liste des sites','Site users list'=>'Liste des comptes du site','Site users list navigation'=>'Parcours de la liste des comptes du site','Filter site users list'=>'Filtrer la liste des comptes du site','Site themes list'=>'Liste des thèmes du site','Site themes list navigation'=>'Parcours de la liste des thèmes du site','Filter site themes list'=>'Filtrer la liste des thème du site','The domain or path entered conflicts with an existing username.'=>'Le domaine ou le chemin saisi est entré en conflit avec un identifiant existant.','The requested action is not valid.'=>'L’action demandée n’est pas valide.','You are about to mark the site %s as not mature.'=>'Vous êtes sur le point d’indiquer que le site %s n’est pas réservé aux adultes.','You are about to mark the site %s as mature.'=>'Vous êtes sur le point d’indiquer que le site %s est réservé aux adultes.','You are about to delete the site %s.'=>'Vous êtes sur le point de supprimer le site %s.','You are about to mark the site %s as spam.'=>'Vous êtes sur le point de marquer le site %s comme indésirable.','You are about to unspam the site %s.'=>'Vous êtes sur le point de marquer le site %s comme sain.','You are about to archive the site %s.'=>'Vous êtes sur le point d’archiver le site %s.','You are about to unarchive the site %s.'=>'Vous êtes sur le point de désarchiver le site %s.','You are about to deactivate the site %s.'=>'Vous êtes sur le point de désactiver le site %s.','You are about to activate the site %s.'=>'Vous êtes sur le point d’activer le site %s.','The requested site does not exist.'=>'Le site demandé n’existe pas.','Path'=>'Chemin ','Domain'=>'Domaine','Documentation on Network Users'=>'Documentation sur les comptes du réseau (en anglais).','Documentation on Network Themes'=>'Documentation sur les thèmes du réseau (en anglais).','Warning! Problem updating %1$s. Your server may not be able to connect to sites running on it. Error message: %2$s'=>'Attention ! Un problème est survenu lors de la mise à jour de %1$s. Votre serveur peut ne pas être en mesure de se connecter à certains sites qui y sont installés. Message d’erreur : %2$s.','%s theme deleted.'=>'%s thème supprimé.' . "\0" . '%s thèmes supprimés.','%s theme disabled.'=>'%s thème désactivé.' . "\0" . '%s thèmes désactivés.','%s theme enabled.'=>'%s thème activé.' . "\0" . '%s thèmes activés.','Yes, delete these themes'=>'Oui, supprimer ces thèmes','You are about to remove the following themes:'=>'Vous êtes sur le point d’enlever les thèmes suivants :','These themes may be active on other sites in the network.'=>'Ces thèmes peuvent être actifs sur d’autres site de ce réseau.','Delete Themes'=>'Supprimer les thèmes','Set site attributes'=>'Configurer les attributs du site','Enable menus'=>'Activer les menus','Size in kilobytes'=>'Taille en kilooctets','Allowed file types. Separate types by spaces.'=>'Types de fichier autorisés. Séparez les types par une espace.','New registrations settings'=>'Réglages pour les nouvelles inscriptions','Add the following to your %1$s file in %2$s, replacing other WordPress rules:'=>'Ajoutez les règles suivantes à votre fichier %1$s, dans le dossier %2$s, en remplacement d’autres règles de WordPress :','Confirm your action'=>'Confirmez cette action','Hover over any user on the list to make the edit links appear. The Edit link on the left will take you to their Edit User profile page; the Edit link on the right by any site name goes to an Edit Site screen for that site.'=>'Survolez n’importe quel compte de la liste pour faire apparaître les liens de modification. Le lien Modifier à gauche ouvrira la page de modification du profil du compte ; le lien Modifier à droite de n’importe quel nom de site ouvrira l’écran de modification de ce site.','To search for a site, enter the path or domain.'=>'Pour rechercher un site, saisissez son chemin ou son domaine.','To search for a user, enter an email address or username. Use a wildcard to search for a partial username, such as user*.'=>'Pour rechercher un compte, saisissez une adresse e-mail ou un identifiant. Utilisez le signe étoile (*) pour lancer une recherche sur un identifiant partiel, par exemple compt*.','To add a new site, click Create a New Site.'=>'Pour ajouter un nouveau site, cliquer sur Créer un nouveau site.','To add a new user, click Create a New User.'=>'Pour ajouter un nouveau compte, cliquez sur Créer un nouveau compte.','Quick Tasks'=>'Tâches rapides','To search for a user or site, use the search boxes.'=>'Pour rechercher un compte ou un site, utilisez les champs de recherche.','The Right Now widget on this screen provides current user and site counts on your network.'=>'Le widget « Aujourd’hui » de cet écran vous donne le nombre actuel de comptes et de sites sur votre réseau.','Modify global network settings'=>'Modifier les réglages globaux du réseau','Update your network'=>'Mettre à jour votre réseau','Install and activate themes or plugins'=>'Installer et activer des thèmes ou des extensions','Add and manage sites or users'=>'Ajouter et gérer des sites ou des comptes','From here you can:'=>'D’ici, vous pouvez :','Welcome to your Network Admin. This area of the Administration Screens is used for managing all aspects of your Multisite Network.'=>'Bienvenue dans l’administration de votre réseau ! Cette partie des écrans d’administration sert à gérer tous les aspects de votre réseau multisite.','Only use this screen once you have updated to a new version of WordPress through Updates/Available Updates (via the Network Administration navigation menu or the Toolbar). Clicking the Upgrade Network button will step through each site in the network, five at a time, and make sure any database updates are applied.'=>'N’utilisez cet écran que quand vous avez mis à jour cette installation de WordPress (au moyen de la fonction de mise à jour automatique ou la barre d’outils). En cliquant sur « Mettre à jour le réseau », WordPress s’occupera de tous les sites du réseau, par groupes de cinq, et s’assurera que toutes les mises à jour de bases de données sont appliquées.','Upgrade Network'=>'Mettre à jour le réseau','Subdirectory networks may not be fully compatible with custom wp-content directories.'=>'Les sous-répertoires du réseau peuvent ne pas être totalement compatibles avec les répertoires personnalisés de wp-content.','Add the designated lines of code to wp-config.php (just before /*...stop editing...*/) and .htaccess (replacing the existing WordPress rules).'=>'Ajoutez les lignes de code désignées dans le fichier wp-config.php (juste avant /*...C’est tout...*/) et le fichier .htaccess (en remplaçant les règles existantes de WordPress).','Language Settings'=>'Réglages de langue','Allow site administrators to add new users to their site via the "Users → Add User" page'=>'Autoriser les administrateurs ou administratrices de sites à ajouter de nouveaux comptes à leurs sites via la page « Comptes → Ajouter ».','Super admins can no longer be added on the Options screen. You must now go to the list of existing users on Network Admin > Users and click on Username or the Edit action link below that name. This goes to an Edit User page where you can check a box to grant super admin privileges.'=>'Les super-admins ne peuvent plus être ajoutés via l’écran des options. Vous devez aller à la liste des comptes (option « Comptes » du menu « Admin du réseau » et cliquer sur un identifiant ou sur le lien « Modifier » qui s’affiche en dessous. Vous arriverez alors à un écran vous permettant de modifier ce compte, où une case à cocher donne les droits de super-admin.','Enter the username and email.'=>'Saisissez l’identifiant et l’adresse e-mail.','User created.'=>'Le compte a été créé.','Select a user to remove.'=>'Sélectionnez un compte à supprimer.','Select a user to change role.'=>'Sélectionnez un compte dont vous voulez changer le rôle.','Enter the username of an existing user.'=>'Saisir l’identifiant d’un compte existant.','User is already a member of this site.'=>'Ce compte est déjà membre de ce site.','Site options updated.'=>'Les réglages du site ont été mis à jour.','Site added. Visit Dashboard or Edit Site'=>'Site ajouté. Afficher le tableau de bord | Modifier le site','This screen is for Super Admins to add new sites to the network. This is not affected by the registration settings.'=>'Cet écran permet aux super-admins d’ajouter de nouveaux sites au réseau. Il n’est pas limité par les réglages d’inscription.','Site info updated.'=>'Les infos du site ont été mises à jour.','You cannot delete a theme while it is active on the main site.'=>'Vous ne pouvez pas effacer un thème s’il est activé sur le site principal.','Themes can be enabled on a site by site basis by the network admin on the Edit Site screen (which has a Themes tab); get there via the Edit action link on the All Sites screen. Only network admins are able to install or edit themes.'=>'Les thèmes peuvent être activés par l’administrateur/administratrice du réseau pour chaque site, individuellement, par le biais de l’écran de modification d’un site (et de son onglet « Thèmes »), accessible via le lien « Modifier » de la liste des sites. Seuls les administrateurs ou administratrices du réseau peuvent installer ou modifier des thèmes.','No, return me to the theme list'=>'Non, je veux revenir à la liste des thèmes.','Yes, delete this theme'=>'Oui, supprimer ce thème','Are you sure you want to delete these themes?'=>'Confirmez-vous la suppression de ces thèmes ?','You are about to remove the following theme:'=>'Vous êtes sur le point de supprimer le thème suivant :','This theme may be active on other sites in the network.'=>'Ce thème est peut-être activé sur d’autres sites du réseau','Delete Theme'=>'Supprimer le thème','Network enabled themes are not shown on this screen.'=>'Les thèmes activés pour le réseau ne sont pas visibles sur cet écran.','No theme selected.'=>'Aucun thème sélectionné.','Theme disabled.'=>'Thème désactivé.','Theme enabled.'=>'Thème activé.','Edit Site: %s'=>'Modifier le site : %s','Invalid site ID.'=>'ID du site non valide.','Sorry, you are not allowed to delete the site %s.'=>'Désolé, vous n’avez pas l’autorisation de supprimer le site %s.','Delete which is a permanent action after the confirmation screen.'=>'« Supprimer » est une action irréversible une fois passé l’écran de confirmation.','Dashboard leads to the Dashboard for that site.'=>'« Tableau de bord » envoie vers le tableau de bord du site.','An Edit link to a separate Edit Site screen.'=>'Un lien « Modifier » vers un nouvel écran de modification de site.','Add Site takes you to the screen for adding a new site to the network. You can search for a site by Name, ID number, or IP address. Screen Options allows you to choose how many sites to display on one page.'=>'« Ajouter un site » vous enverra au formulaire en bas de cette page. Vous pouvez rechercher un site par le nom, l’identifiant ou l’adresse IP. Les options d’écran vous permettent de choisir le nombre de sites à afficher sur une même page.','Add Users'=>'Ajouter un compte','Cannot add user.'=>'Impossible d’ajouter le compte.','Add User will set up a new user account on the network and send that person an email with username and password.'=>'« Ajouter un compte » créera un nouveau compte sur le réseau, et enverra un message contenant son identifiant et son mot de passe au destinataire.','Updates'=>'Mises à jour','Network Settings'=>'Réglages du réseau','Installed Themes'=>'Thèmes installés','All Sites'=>'Tous les sites','Once you complete these steps, your network is enabled and configured. You will have to log in again.'=>'Une fois que vous aurez passé ces étapes, votre réseau sera activé et configuré. Vous devrez vous reconnecter.','To make your installation more secure, you should also add:'=>'Pour sécuriser encore plus votre installation, vous devriez également ajouter :','Complete the following steps to enable the features for creating a network of sites.'=>'Suivez les étapes suivantes pour activer les fonctionnalités de création de réseau de sites.','Enabling the Network'=>'Activer le Réseau','Please complete the configuration steps. To create a new network, you will need to empty or remove the network database tables.'=>'Veuillez suivre les étapes de configuration. Pour créer un nouveau réseau, vous devrez vider ou supprimer les tables du réseau de la base de données.','An existing WordPress network was detected.'=>'Un réseau WordPress pré-existant a été détecté.','The original configuration steps are shown here for reference.'=>'Les étapes de la configuration originale sont affichées ici pour référence.','Your email address.'=>'Votre adresse e-mail.','What would you like to call your network?'=>'Comment souhaitez-vous appeler votre réseau ?','Network Title'=>'Titre du réseau','Because your installation is not new, the sites in your WordPress network must use sub-domains.'=>'Comme votre installation de WordPress n’est pas récente, les sites de votre réseau doivent utiliser des sous-domaines.','Because your installation is in a directory, the sites in your WordPress network must use sub-directories.'=>'Comme votre installation de WordPress se trouve dans un répertoire, les sites de votre réseau doivent utiliser des sous-répertoires.','The main site in a sub-directory installation will need to use a modified permalink structure, potentially breaking existing links.'=>'Le site principal d’une installation en sous-répertoire devra utiliser une structure de permaliens modifiée, ce qui pourrait potentiellement casser vos liens existants.','Network Details'=>'Détails du réseau','Server Address'=>'Adresse du serveur','subdirectory exampleslike %1$s/site1 and %1$s/site2'=>'comme %1$s/site1 et %1$s/site2','Sub-directories'=>'Sous-répertoires','subdomain exampleslike site1.%1$s and site2.%1$s'=>'comme site1.%1$s et site2.%1$s','Sub-domains'=>'Sous-domaines','You will need a wildcard DNS record if you are going to use the virtual host (sub-domain) functionality.'=>'Si vous souhaitez utiliser la fonctionnalité d’hébergement virtuel (sous-domaine), vous aurez besoin d’un enregistrement DNS générique (joker/wildcard).','Addresses of Sites in your Network'=>'Adresses des sites de votre réseau','Fill in the information below and you’ll be on your way to creating a network of WordPress sites. Configuration files will be created in the next step.'=>'Remplissez les informations ci-dessous et vous pourrez créer un réseau de sites WordPress. Les fichiers de configuration seront créés lors de la prochaine étape.','Welcome to the Network installation process!'=>'Bienvenue dans l’installation du Réseau !','The network could not be created.'=>'Le réseau ne peut pas être créé.','Once the network is created, you may reactivate your plugins.'=>'Dès que le réseau sera créé, vous pourrez réactiver vos extensions.','Please deactivate your plugins before enabling the Network feature.'=>'Veuillez désactiver vos extensions avant d’activer la fonctionnalité Réseau.','Network'=>'Réseau','The choice of subdirectory sites is disabled if this setup is more than a month old because of permalink problems with “/blog/” from the main site. This disabling will be addressed in a future version.'=>'Le choix d’avoir des sites en mode sous-répertoire est désactivé si le réseau a été installé il y a un mois ou plus, afin de pallier les problèmes de permaliens avec l’ajout de «  /blog/ » sur les adresses du site principal. Cette limitation sera corrigée dans une prochaine version.','Once you add this code and refresh your browser, multisite should be enabled. This screen, now in the Network Admin navigation menu, will keep an archive of the added code. You can toggle between Network Admin and Site Admin by clicking on the Network Admin or an individual site name under the My Sites dropdown in the Toolbar.'=>'Une fois que vous aurez ajouté ce code et rafraîchi la page dans votre navigateur, le mode multisite devrait être activé. Cet écran, désormais placé dans le menu de navigation Admin du Réseau, conservera une archive du code ajouté. Vous pouvez basculer de l’administration du réseau à l’administration du site en cliquant sur « Admin du réseau », ou en cliquant sur le nom d’un site individuel dans le menu déroulant « Mes Sites » de la barre d’outils.','The next screen for Network Setup will give you individually-generated lines of code to add to your wp-config.php and .htaccess files. Make sure the settings of your FTP client make files starting with a dot visible, so that you can find .htaccess; you may have to create this file if it really is not there. Make backup copies of those two files.'=>'L’écran suivant vous présentera un ensemble de lignes de code générées à partir de votre configuration, qu’il vous faudra ajouter à vos fichiers wp-config.php et .htaccess. Veillez bien à ce que votre client FTP soit configuré pour afficher les fichiers commençant par un point, afin que vous puissiez trouver le fichier .htaccess. Il est possible que vous ayez à créer ce fichier s’il n’est pas déjà présent. Avant toute modification de wp-config.php et .htaccess, faites-en une copie de sauvegarde.','Choose subdomains or subdirectories; this can only be switched afterwards by reconfiguring your installation. Fill out the network details, and click Install. If this does not work, you may have to add a wildcard DNS record (for subdomains) or change to another setting in Permalinks (for subdirectories).'=>'Faites le choix entre sous-domaines ou sous-dossiers. Une fois l’installation configurée, vous ne pourrez pas revenir en arrière sans recommencer à zéro. Saisissez tous les détails, et cliquez sur « Installer ». Si cela ne marche pas, vous devrez sans doute ajouter une entrée de sous-domaine générique (wildcard) dans vos enregistrements DNS, ou passer à un réglage différent pour vos permaliens (si en mode sous-dossiers).','This screen allows you to configure a network as having subdomains (site1.example.com) or subdirectories (example.com/site1). Subdomains require wildcard subdomains to be enabled in Apache and DNS records, if your host allows it.'=>'Cet écran vous permet de configurer un réseau, sous la forme sous-domaines (site1.example.com) ou sous-dossiers (example.com/site1). La forme sous-domaines nécessite une entrée de sous-domaine générique (wildcard) dans les enregistrements DNS et la configuration Apache, si votre hébergeur le permet.','Create a Network of WordPress Sites'=>'Créer un réseau de sites WordPress','The Network creation panel is not for WordPress MU networks.'=>'Le panneau de création de réseau n’est pas conçu pour les réseaux WordPress MU.','Warning! User cannot be modified. The user %s is a network administrator.'=>'Avertissement ! Le compte %s ne peut être modifié car c’est un administrateur ou une administratrice du réseau.','If the admin email for the new site does not exist in the database, a new user will also be created.'=>'Si l’adresse de contact du nouveau site n’existe pas dans la base de données, un nouveau compte sera créé pour l’occasion.','Deactivate, Archive, and Spam which lead to confirmation screens. These actions can be reversed later.'=>'« Désactiver », « Archiver » et « Indésirable » envoient chacun à des écrans de confirmation. Ces actions peuvent être annulées par la suite.','Hovering over each site reveals seven options (three for the primary site):'=>'Survoler chaque site avec la souris révèle sept options (trois pour le site principal) :','Operational settings has fields for the network’s name and admin email.'=>'Les réglages de fonctionnement permettent de modifier le nom du réseau, et l’adresse e-mail de l’administrateur ou de l’administratrice.','The bulk action will permanently delete selected users, or mark/unmark those selected as spam. Spam users will have posts removed and will be unable to sign up again with the same email addresses.'=>'Le menu « Actions groupées » permet de supprimer définitivement plusieurs comptes d’un coup, ou de les marquer comme indésirables ou non. Les comptes indésirables verront leurs articles supprimés, et ne pourront plus se connecter avec leur adresse e-mail.','You can also go to the user’s profile page by clicking on the individual username.'=>'Vous pouvez également aller sur la page de profil d’un compte en cliquant sur son identifiant.','Upload settings control the size of the uploaded files and the amount of available upload space for each site. You can change the default value for specific sites when you edit a particular site. Allowed file types are also listed (space separated only).'=>'Les réglages d’envoi des fichiers permettent de limiter la taille des fichiers téléversés et l’espace disponible pour chaque site. Vous pouvez préciser la valeur pour chaque site individuellement. Vous pouvez également préciser les types de fichiers acceptés (séparés par des espaces).','You can make an existing user an additional super admin by going to the Edit User profile page and checking the box to grant that privilege.'=>'Vous pouvez promouvoir un compte existant en super-admin en allant sur leur page de profil, et en cochant la case correspondante.','Users who are signed up to the network without a site are added as subscribers to the main or primary dashboard site, giving them profile pages to manage their accounts. These users will only see Dashboard and My Sites in the main navigation until a site is created for them.'=>'Les comptes qui se sont inscrits sur le réseau sans créer de site deviennent abonnés du site d’accueil. Celui-ci leur permet d’accéder à leur compte. Ces comptes ne voient dans la navigation principale que les options « Tableau de bord » et « Mes sites », jusqu’à ce qu’un site leur soit créé.','You can sort the table by clicking on any of the table headings and switch between list and excerpt views by using the icons above the users list.'=>'Un clic sur le titre d’une colonne permet de changer le tri du tableau. Les icônes en haut à droite permettent d’afficher des extraits ou non.','This table shows all users across the network and the sites to which they are assigned.'=>'Ce tableau affiche tous les comptes appartenant au réseau, et les sites auxquels ils sont assignés.','If this process fails for any reason, users logging in to their sites will force the same update.'=>'Si ce processus échoue pour n’importe quelles raisons, les comptes se connectant à leurs sites déclencheront la même mise à jour.','If a version update to core has not happened, clicking this button will not affect anything.'=>'S’il n’y a pas eu de mise à jour du cœur WordPress récemment, cliquer sur ce bouton n’aura aucun effet.','If the network admin disables a theme that is in use, it can still remain selected on that site. If another theme is chosen, the disabled theme will not appear in the site’s Appearance > Themes screen.'=>'Si l’administrateur/administratrice du réseau désactive un thème en cours d’utilisation par un site, ce thème restera en place pour ce site. Si le site change de thème, le thème désactivé n’apparaîtra plus dans l’écran de sélection des thèmes de ce site.','This screen enables and disables the inclusion of themes available to choose in the Appearance menu for each site. It does not activate or deactivate which theme a site is currently using.'=>'Cet écran permet d’activer ou désactiver la disponibilité des thèmes pour tous les sites du réseau. Il ne permet pas d’activer ou activer le thème actuellement utilisé ce site.','This is the main table of all sites on this network. Switch between list and excerpt views by using the icons above the right side of the table.'=>'Voici la liste de tous les sites de ce réseau. Vous pouvez changer de vue (liste avec ou sans extrait) en utilisant les icônes présentes en haut à droite de la liste.','Menu setting enables/disables the plugin menus from appearing for non super admins, so that only super admins, not site admins, have access to activate plugins.'=>'Le réglage du menu (dés)active la section « Extensions » du menu pour les comptes normaux, de telle sorte que seuls les super-admins peuvent y accéder pour activer une extension.','New site settings are defaults applied when a new site is created in the network. These include welcome email for when a new site or user account is registered, and what᾿s put in the first post, page, comment, comment author, and comment URL.'=>'Les réglages des nouveaux sites sont les réglages par défaut appliqués à tout nouveau site créé sur le réseau. Cela comprend le message d’accueil quand un nouveau compte ou un nouveau site est enregistré, ainsi que le contenu du premier article, de la première page et du premier commentaire (dont le nom et l’URL de la personne ayant commenté).','Registration settings can disable/enable public signups. If you let others sign up for a site, install spam plugins. Spaces, not commas, should separate names banned as sites for this network.'=>'Les réglages d’inscription permettent d’ouvrir ou fermer les inscriptions au public. Si vous ouvrez les inscriptions, veillez à installer des extensions antispam. Les domaines bannis devraient être indiqués séparés d’un espace, non d’une virgule.','This screen sets and changes options for the network as a whole. The first site is the main site in the network and network options are pulled from that original site’s options.'=>'Cet écran vous donne accès aux options régissant l’ensemble du réseau. Le premier site est le site principal du réseau, et les options du réseau sont tirées des options de ce premier site.','The following words are reserved for use by WordPress functions and cannot be used as site names: %s'=>'Les mots suivants sont réservés pour l’usage de fonctions WordPress et ne peuvent pas être utilisés comme nom de site : %s','If your browser does not start loading the next page automatically, click this link:'=>'Si votre navigateur ne lance pas automatiquement la page suivante, cliquez sur ce lien :','If you want to ban domains from site registrations. One domain per line.'=>'Si vous souhaitez interdire la création de site aux personnes dont l’adresse e-mail est liée à certains noms de domaines. Un domaine par ligne.','If you want to limit site registrations to certain domains. One domain per line.'=>'Si vous souhaitez que les seules personnes habilitées à créer un site soient celles disposant d’une adresse e-mail liée à certains noms de domaines. Un domaine par ligne.','Users removed from spam.'=>'Comptes retirés de la liste de comptes indésirables.','Site marked as spam.'=>'Site marqué comme indésirable.','Site removed from spam.'=>'Site marqué comme sain.','Sites marked as spam.'=>'Sites marqués comme indésirables.','Sites removed from spam.'=>'Sites retirés des indésirables.','Users deleted.'=>'Comptes supprimés.','Users marked as spam.'=>'Comptes marqués comme indésirables.','Site deactivated.'=>'Site désactivé.','Site activated.'=>'Site activé.','Site unarchived.'=>'Site désarchivé.','Site archived.'=>'Site archivé.','Site deleted.'=>'Site effacé.','Sites deleted.'=>'Sites effacés.','Sorry, you are not allowed to change the current site.'=>'Désolé, vous n’avez pas l’autorisation de modifier le site actuel.','There was an error creating the user.'=>'Une erreur s’est produite lors de la création du compte.','Upload file types'=>'Types des fichiers téléversés','Limit total size of files uploaded to %s MB'=>'La taille totale des fichiers téléversés est limitée à %s Mo','The URL for the first comment on a new site.'=>'L’URL du premier commentaire sur tout nouveau site.','The author of the first comment on a new site.'=>'L’auteur ou l’autrice du premier commentaire sur tout nouveau site.','The first comment on a new site.'=>'Le premier commentaire sur tout nouveau site.','The first page on a new site.'=>'La première page sur tout nouveau site.','The first post on a new site.'=>'Le premier article sur un nouveau site.','All done!'=>'Terminé !','Both sites and user accounts can be registered'=>'La création de sites et de comptes est autorisée.','Logged in users may register new sites'=>'Les comptes connectés peuvent créer de nouveaux sites.','User accounts may be registered'=>'Des comptes peuvent être créés.','Registration is disabled'=>'Les inscriptions ne sont pas autorisées pour le moment.','Enable administration menus'=>'Activer les menus d’administration','Upload Settings'=>'Réglages des téléversements','New Site Settings'=>'Réglages des nouveaux sites','Registration Settings'=>'Réglages d’inscription','Operational Settings'=>'Réglages de fonctionnement','Missing email address.'=>'Adresse e-mail manquante.','Missing or invalid site address.'=>'Adresse de site manquante ou non valide.','Next Sites'=>'Sites suivants','Site upload space'=>'Espace de stockage du site','The welcome email sent to new site owners.'=>'Ce message de bienvenue sera envoyé aux propriétaires de nouveaux sites.','Users are not allowed to register these sites. Separate names by spaces.'=>'Les comptes ne sont pas autorisés à créer un site avec l’un de ces noms. Séparez les noms par un espace.','Send the network admin an email notification every time someone registers a site or user account'=>'Envoyer un message à l’administrateur ou à l’administratrice du réseau à chaque création de site ou de compte.','Network Admin Email'=>'E-mail de l’administrateur ou de l’administratrice du réseau','A new user will be created if the above email address is not in the database.'=>'Un nouveau compte sera créé si l’adresse e-mail n’existe pas dans la base de données.','Admin Email'=>'E-mail de l’administrateur ou de l’administratrice','Add Site'=>'Ajouter un site','Default Language'=>'Langue par défaut','Max upload file size'=>'Taille maximale des fichiers téléversés','First Comment URL'=>'Adresse du premier commentaire','First Comment Author'=>'Auteur ou autrice du premier commentaire','First Comment'=>'Premier commentaire','First Page'=>'Première page','The welcome email sent to new users.'=>'Ce message de bienvenue sera envoyé aux nouveaux comptes.','Welcome User Email'=>'Message de bienvenue aux nouveaux comptes','Welcome Email'=>'Message de bienvenue','Banned Email Domains'=>'Noms de domaines bannis','Limited Email Registrations'=>'Enregistrement réservé aux noms de domaines','Banned Names'=>'Noms bannis','Add New User'=>'Ajouter un compte','Registration notification'=>'Notification d’inscription','Allow new registrations'=>'Autoriser les nouvelles inscriptions','Duplicated username or email address.'=>'Identifiant ou adresse e-mail déjà utilisé(e).','Cannot create an empty user.'=>'Impossible de créer un compte vide.','Confirm'=>'Confirmer']]; \ No newline at end of file diff --git a/web/app/languages/admin-network-fr_FR.mo b/web/app/languages/admin-network-fr_FR.mo old mode 100755 new mode 100644 index ddd48781..0f2d3205 Binary files a/web/app/languages/admin-network-fr_FR.mo and b/web/app/languages/admin-network-fr_FR.mo differ diff --git a/web/app/languages/admin-network-fr_FR.po b/web/app/languages/admin-network-fr_FR.po old mode 100755 new mode 100644 index 9ed527a3..d3820b38 --- a/web/app/languages/admin-network-fr_FR.po +++ b/web/app/languages/admin-network-fr_FR.po @@ -1,15 +1,15 @@ -# Translation of WordPress - 6.7.x - Development - Administration - Network Admin in French (France) -# This file is distributed under the same license as the WordPress - 6.7.x - Development - Administration - Network Admin package. +# Translation of WordPress - 6.8.x - Development - Administration - Network Admin in French (France) +# This file is distributed under the same license as the WordPress - 6.8.x - Development - Administration - Network Admin package. msgid "" msgstr "" -"PO-Revision-Date: 2024-06-28 14:16:02+0000\n" +"PO-Revision-Date: 2025-03-31 12:54:40+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: GlotPress/4.0.1\n" "Language: fr\n" -"Project-Id-Version: WordPress - 6.7.x - Development - Administration - Network Admin\n" +"Project-Id-Version: WordPress - 6.8.x - Development - Administration - Network Admin\n" #: wp-admin/network/upgrade.php:32 msgid "Documentation on Upgrade Network" @@ -106,12 +106,12 @@ msgid "You should back up your existing %1$s and %2$s files." msgstr "Vous devriez sauvegarder vos fichiers %1$s et %2$s existants." #. translators: %s: Theme name. -#: wp-admin/includes/class-wp-ms-themes-list-table.php:738 +#: wp-admin/includes/class-wp-ms-themes-list-table.php:744 msgid "Visit theme site for %s" msgstr "Consultez le site du thème pour %s" #. translators: %s: Theme name. -#: wp-admin/includes/class-wp-ms-themes-list-table.php:751 +#: wp-admin/includes/class-wp-ms-themes-list-table.php:757 msgid "Child theme of %s" msgstr "Thème enfant de %s" @@ -248,7 +248,7 @@ msgstr "Installation en sous-domaine" msgid "Sub-directory Installation" msgstr "Installation en sous-répertoire" -#: wp-admin/includes/class-wp-ms-themes-list-table.php:944 +#: wp-admin/includes/class-wp-ms-themes-list-table.php:950 msgid "Active Child Theme" msgstr "Thème enfant actif" @@ -391,7 +391,7 @@ msgctxt "user" msgid "Mark as spam" msgstr "Marquer comme indésirable" -#: wp-admin/includes/class-wp-ms-themes-list-table.php:744 +#: wp-admin/includes/class-wp-ms-themes-list-table.php:750 msgid "Visit Theme Site" msgstr "Aller sur le site du thème" @@ -527,7 +527,7 @@ msgstr "Indésirable" msgid "Archived" msgstr "Archivé" -#: wp-admin/network/site-users.php:373 wp-admin/network/user-new.php:149 +#: wp-admin/network/site-users.php:376 wp-admin/network/user-new.php:149 msgid "A password reset link will be sent to the user via email." msgstr "Un lien de réinitialisation de mot de passe sera envoyé par e-mail au compte." @@ -786,7 +786,7 @@ msgstr "Bienvenue dans l’administration de votre réseau ! Cette partie des msgid "Only use this screen once you have updated to a new version of WordPress through Updates/Available Updates (via the Network Administration navigation menu or the Toolbar). Clicking the Upgrade Network button will step through each site in the network, five at a time, and make sure any database updates are applied." msgstr "N’utilisez cet écran que quand vous avez mis à jour cette installation de WordPress (au moyen de la fonction de mise à jour automatique ou la barre d’outils). En cliquant sur « Mettre à jour le réseau », WordPress s’occupera de tous les sites du réseau, par groupes de cinq, et s’assurera que toutes les mises à jour de bases de données sont appliquées." -#: wp-admin/network/menu.php:46 wp-admin/network/upgrade.php:16 +#: wp-admin/network/menu.php:51 wp-admin/network/upgrade.php:16 #: wp-admin/network/upgrade.php:43 wp-admin/network/upgrade.php:145 msgid "Upgrade Network" msgstr "Mettre à jour le réseau" @@ -805,7 +805,7 @@ msgid "Language Settings" msgstr "Réglages de langue" #: wp-admin/network/settings.php:253 -msgid "Allow site administrators to add new users to their site via the \"Users → Add New\" page" +msgid "Allow site administrators to add new users to their site via the \"Users → Add User\" page" msgstr "Autoriser les administrateurs ou administratrices de sites à ajouter de nouveaux comptes à leurs sites via la page « Comptes → Ajouter »." #: wp-admin/network/settings.php:58 @@ -930,11 +930,11 @@ msgid "An Edit link to a separate Edit Site screen." msgstr "Un lien « Modifier » vers un nouvel écran de modification de site." #: wp-admin/network/sites.php:31 -msgid "Add New Site takes you to the screen for adding a new site to the network. You can search for a site by Name, ID number, or IP address. Screen Options allows you to choose how many sites to display on one page." -msgstr "« Ajouter » vous enverra au formulaire en bas de cette page. Vous pouvez rechercher un site par le nom, l’identifiant ou l’adresse IP. Les options d’écran vous permettent de choisir le nombre de sites à afficher sur une même page." +msgid "Add Site takes you to the screen for adding a new site to the network. You can search for a site by Name, ID number, or IP address. Screen Options allows you to choose how many sites to display on one page." +msgstr "« Ajouter un site » vous enverra au formulaire en bas de cette page. Vous pouvez rechercher un site par le nom, l’identifiant ou l’adresse IP. Les options d’écran vous permettent de choisir le nombre de sites à afficher sur une même page." -#: wp-admin/network/site-users.php:336 wp-admin/network/user-new.php:161 -msgid "Add User" +#: wp-admin/network/settings.php:251 +msgid "Add Users" msgstr "Ajouter un compte" #: wp-admin/network/user-new.php:55 @@ -945,19 +945,19 @@ msgstr "Impossible d’ajouter le compte." msgid "Add User will set up a new user account on the network and send that person an email with username and password." msgstr "« Ajouter un compte » créera un nouveau compte sur le réseau, et enverra un message contenant son identifiant et son mot de passe au destinataire." -#: wp-admin/network/menu.php:41 +#: wp-admin/network/menu.php:46 msgid "Updates" msgstr "Mises à jour" -#: wp-admin/network/menu.php:111 wp-admin/network/settings.php:21 +#: wp-admin/network/menu.php:116 wp-admin/network/settings.php:21 msgid "Network Settings" msgstr "Réglages du réseau" -#: wp-admin/network/menu.php:80 +#: wp-admin/network/menu.php:85 msgid "Installed Themes" msgstr "Thèmes installés" -#: wp-admin/network/menu.php:52 +#: wp-admin/network/menu.php:57 msgid "All Sites" msgstr "Tous les sites" @@ -1060,8 +1060,8 @@ msgid "Welcome to the Network installation process!" msgstr "Bienvenue dans l’installation du Réseau !" #: wp-admin/includes/network.php:161 -msgid "Error: The network could not be created." -msgstr "Erreur : Le réseau ne peut pas être créé." +msgid "The network could not be created." +msgstr "Le réseau ne peut pas être créé." #: wp-admin/includes/network.php:146 msgid "Once the network is created, you may reactivate your plugins." @@ -1375,7 +1375,9 @@ msgstr "Un nouveau compte sera créé si l’adresse e-mail n’existe pas dans msgid "Admin Email" msgstr "E-mail de l’administrateur ou de l’administratrice" -#: wp-admin/network/site-new.php:299 +#: wp-admin/network/menu.php:58 wp-admin/network/site-new.php:182 +#: wp-admin/network/site-new.php:192 wp-admin/network/site-new.php:299 +#: wp-admin/network/sites.php:391 msgid "Add Site" msgstr "Ajouter un site" @@ -1427,9 +1429,9 @@ msgstr "Enregistrement réservé aux noms de domaines" msgid "Banned Names" msgstr "Noms bannis" -#: wp-admin/network/settings.php:251 -msgid "Add New Users" -msgstr "Ajouter de nouveaux comptes" +#: wp-admin/network/site-users.php:353 +msgid "Add New User" +msgstr "Ajouter un compte" #: wp-admin/network/settings.php:239 msgid "Registration notification" diff --git a/web/app/languages/continents-cities-fr_FR.l10n.php b/web/app/languages/continents-cities-fr_FR.l10n.php old mode 100755 new mode 100644 index c94f62e7..d4b9c770 --- a/web/app/languages/continents-cities-fr_FR.l10n.php +++ b/web/app/languages/continents-cities-fr_FR.l10n.php @@ -1,2 +1,2 @@ 'GlotPress/4.0.1','translation-revision-date'=>'2024-02-29 08:00:23+0000','plural-forms'=>'nplurals=2; plural=n > 1;','project-id-version'=>'WordPress - 6.7.x - Development - Continents & Cities','language'=>'fr','messages'=>['Kanton'=>'Canton','Kyiv'=>'Kyiv','Qostanay'=>'Qostanay','Nuuk'=>'Nuuk','Saratov'=>'Saratov','Yangon'=>'Yangon','Famagusta'=>'Famagouste','Atyrau'=>'Atyrau','Punta Arenas'=>'Punta Arenas','Pohnpei'=>'Pohnpei','Chuuk'=>'Chuuk','Bougainville'=>'Bougainville','Ulyanovsk'=>'Oulianovsk','Kirov'=>'Kirov','Busingen'=>'Büsingen','Astrakhan'=>'Astrakhan','Ust-Nera'=>'Oust-Nera','Tomsk'=>'Tomsk','Srednekolymsk'=>'Srednekolymsk','Novokuznetsk'=>'Novokouznetsk','Khandyga'=>'Khandyga','Kathmandu'=>'Katmandou','Hebron'=>'Hébron','Chita'=>'Tchita','Barnaul'=>'Barnaoul','Troll'=>'Troll','Macquarie'=>'Macquarie','Sitka'=>'Sitka','Santarem'=>'Santarém','Santa Isabel'=>'Santa Isabel','Ojinaga'=>'Ojinaga','Beulah'=>'Beulah','Metlakatla'=>'Metlakatla','Matamoros'=>'Matamoros','Lower Princes'=>'Lower Princes','Kralendijk'=>'Kralendijk','Fort Nelson'=>'Fort Nelson','Creston'=>'Creston','Bahia Banderas'=>'Bahía de Banderas','Salta'=>'Salta','Juba'=>'Djouba','Yap'=>'Yap','Wallis'=>'Wallis-et-Futuna','Wake'=>'Île Wake','Truk'=>'Chuuk (Truk)','Tongatapu'=>'Tongatapu','Tarawa'=>'Tarawa','Tahiti'=>'Tahiti','Samoa'=>'Samoa','Saipan'=>'Saipan','Rarotonga'=>'Rarotonga','Port Moresby'=>'Port Moresby','Ponape'=>'Pohnpei (Ponape)','Pitcairn'=>'Îles Pitcairn','Palau'=>'Palaos','Pago Pago'=>'Pago Pago','Noumea'=>'Nouméa','Norfolk'=>'Norfolk','Niue'=>'Niué','Nauru'=>'Nauru','Midway'=>'Atoll de Midway','Marquesas'=>'Îles Marquises','Majuro'=>'Majuro','Kwajalein'=>'Kwajalein','Kosrae'=>'Kosrae','Kiritimati'=>'Île Christmas (Kiribati)','Johnston'=>'Atoll de Johnston','Honolulu'=>'Honolulu','Guam'=>'Guam','Guadalcanal'=>'Guadalcanal','Gambier'=>'Îles Gambier','Galapagos'=>'Îles Galápagos','Funafuti'=>'Funafuti','Fiji'=>'Fidji','Fakaofo'=>'Fakaofo','Enderbury'=>'Enderbury','Efate'=>'Éfaté','Easter'=>'Île de Pâques','Chatham'=>'Îles Chatham','Auckland'=>'Auckland','Apia'=>'Apia','Pacific'=>'Océan Pacifique','Reunion'=>'Île de la Réunion','Mayotte'=>'Mayotte','Mauritius'=>'Île Maurice','Maldives'=>'Maldives','Mahe'=>'Mahé','Kerguelen'=>'Îles Kerguelen','Comoro'=>'Archipel des Comores','Cocos'=>'Îles Cocos','Christmas'=>'Île Christmas','Chagos'=>'Archipel des Chagos','Antananarivo'=>'Antananarivo','Indian'=>'Océan Indien','Zurich'=>'Zurich','Zaporozhye'=>'Zaporojie','Zagreb'=>'Zagreb','Warsaw'=>'Varsovie','Volgograd'=>'Volgograd','Vilnius'=>'Vilnius','Vienna'=>'Vienne','Vatican'=>'Vatican','Vaduz'=>'Vaduz','Uzhgorod'=>'Oujhorod (Uzhgorod)','Tiraspol'=>'Tiraspol','Tirane'=>'Tirana','Tallinn'=>'Tallinn','Stockholm'=>'Stockholm','Sofia'=>'Sofia','Skopje'=>'Skopje','Simferopol'=>'Simferopol','Sarajevo'=>'Sarajevo','San Marino'=>'Saint-Marin','Samara'=>'Samara','Rome'=>'Rome','Riga'=>'Riga','Prague'=>'Prague','Podgorica'=>'Podgorica','Paris'=>'Paris','Oslo'=>'Oslo','Moscow'=>'Moscou','Monaco'=>'Monaco','Minsk'=>'Minsk','Mariehamn'=>'Mariehamn','Malta'=>'Malte','Madrid'=>'Madrid','Luxembourg'=>'Luxembourg','London'=>'Londres','Ljubljana'=>'Ljubljana','Lisbon'=>'Lisbonne','Kiev'=>'Kiev','Kaliningrad'=>'Kaliningrad','Jersey'=>'Jersey','Isle of Man'=>'Île de Man','Helsinki'=>'Helsinki','Guernsey'=>'Guernesey','Gibraltar'=>'Gibraltar','Dublin'=>'Dublin','Copenhagen'=>'Copenhague','Chisinau'=>'Chişinău (Kichinev)','Budapest'=>'Budapest','Bucharest'=>'Bucarest','Brussels'=>'Bruxelles','Bratislava'=>'Bratislava','Berlin'=>'Berlin','Belgrade'=>'Belgrade','Belfast'=>'Belfast','Athens'=>'Athènes','Andorra'=>'Andorre','Amsterdam'=>'Amsterdam','Europe'=>'Europe','Zulu'=>'Zulu','UTC'=>'UTC','Universal'=>'Universel','UCT'=>'UTC','Greenwich'=>'Greenwich','GMT0'=>'UTC0','GMT-9'=>'UTC-9','GMT-8'=>'UTC-8','GMT-7'=>'UTC-7','GMT-6'=>'UTC-6','GMT-5'=>'UTC-5','GMT-4'=>'UTC-4','GMT-3'=>'UTC-3','GMT-2'=>'UTC-2','GMT-14'=>'UTC-14','GMT-13'=>'UTC-13','GMT-12'=>'UTC-12','GMT-11'=>'UTC-11','GMT-10'=>'UTC-10','GMT-1'=>'UTC-1','GMT-0'=>'UTC-0','GMT+9'=>'UTC+9','GMT+8'=>'UTC+8','GMT+7'=>'UTC+7','GMT+6'=>'UTC+6','GMT+5'=>'UTC+5','GMT+4'=>'UTC+4','GMT+3'=>'UTC+3','GMT+2'=>'UTC+2','GMT+12'=>'UTC+12','GMT+11'=>'UTC+11','GMT+10'=>'UTC+10','GMT+1'=>'UTC+1','GMT+0'=>'UTC+0','GMT'=>'UTC','Etc'=>'Etc.','Yancowinna'=>'Yancowinna','West'=>'Ouest','Victoria'=>'Victoria','Tasmania'=>'Tasmanie','Sydney'=>'Sydney','South'=>'Sud','Queensland'=>'Queensland','Perth'=>'Perth','NSW'=>'Nouvelle-Galles du Sud (NSW)','North'=>'Nord','Melbourne'=>'Melbourne','Lord Howe'=>'Île Lord Howe (LHI)','Lindeman'=>'Lindeman','LHI'=>'Île Lord Howe (LHI)','Hobart'=>'Hobart','Eucla'=>'Eucla','Darwin'=>'Darwin','Currie'=>'Currie','Canberra'=>'Canberra','Broken Hill'=>'Broken Hill','Brisbane'=>'Brisbane','Adelaide'=>'Adélaïde','ACT'=>'Territoire de la capitale australienne (ACT)','Australia'=>'Australie','Stanley'=>'Stanley','St Helena'=>'Sainte-Hélène','South Georgia'=>'Île de Géorgie du Sud','Reykjavik'=>'Reykjavík','Madeira'=>'Madère','Jan Mayen'=>'Île Jan Mayen','Faroe'=>'Îles Féroé','Faeroe'=>'Îles Féroé','Cape Verde'=>'Cap-Vert','Canary'=>'Îles Canaries','Bermuda'=>'Bermudes','Azores'=>'Açores','Atlantic'=>'Atlantique','Yerevan'=>'Yerevan (Erevan)','Yekaterinburg'=>'Iekaterinbourg','Yakutsk'=>'Iakoutsk','Vladivostok'=>'Vladivostok','Vientiane'=>'Vientiane','Urumqi'=>'Ürümqi','Ulan Bator'=>'Oulan-Bator (Ulaanbaatar)','Ulaanbaatar'=>'Oulan-Bator (Ulaanbaatar)','Ujung Pandang'=>'Makassar (Ujung Pandang)','Tokyo'=>'Tōkyō','Thimphu'=>'Thimphou','Thimbu'=>'Thimphou','Tel Aviv'=>'Tel Aviv-Jaffa','Tehran'=>'Téhéran','Tbilisi'=>'Tbilissi','Tashkent'=>'Tachkent','Taipei'=>'Taipei','Singapore'=>'Singapour','Shanghai'=>'Shanghai','Seoul'=>'Séoul','Samarkand'=>'Samarcande','Sakhalin'=>'Sakhaline','Saigon'=>'Hô-Chi-Minh-Ville (Saigon)','Riyadh'=>'Riyad','Rangoon'=>'Rangoon','Qyzylorda'=>'Kyzylorda','Qatar'=>'Qatar','Pyongyang'=>'Pyongyang','Pontianak'=>'Pontianak','Phnom Penh'=>'Phnom Penh','Oral'=>'Oural','Omsk'=>'Omsk','Novosibirsk'=>'Novossibirsk','Nicosia'=>'Nicosie','Muscat'=>'Mascate','Manila'=>'Manille','Makassar'=>'Makassar','Magadan'=>'Magadan','Macau'=>'Macao','Macao'=>'Macao','Kuwait'=>'Koweït','Kuching'=>'Kuching','Kuala Lumpur'=>'Kuala Lumpur','Krasnoyarsk'=>'Krasnoïarsk','Kolkata'=>'Calcutta','Katmandu'=>'Katmandou','Kashgar'=>'Kachgar','Karachi'=>'Karachi','Kamchatka'=>'Kamtchatka','Kabul'=>'Kaboul','Jerusalem'=>'Jérusalem','Jayapura'=>'Jayapura','Jakarta'=>'Jakarta','Istanbul'=>'Istanbul','Irkutsk'=>'Irkoutsk','Hovd'=>'Hovd','Hong Kong'=>'Hong Kong','Ho Chi Minh'=>'Hô-Chi-Minh-Ville','Harbin'=>'Harbin','Gaza'=>'Gaza','Dushanbe'=>'Douchanbé','Dubai'=>'Dubaï','Dili'=>'Dili','Dhaka'=>'Dhâkâ (Dacca)','Damascus'=>'Damas','Dacca'=>'Dhâkâ (Dacca)','Colombo'=>'Colombo','Chungking'=>'Chungking','Chongqing'=>'Chongqing','Choibalsan'=>'Choybalsan','Calcutta'=>'Calcutta','Brunei'=>'Brunei','Bishkek'=>'Bichkek','Beirut'=>'Beyrouth','Bangkok'=>'Bangkok','Baku'=>'Bakou','Bahrain'=>'Bahreïn','Baghdad'=>'Bagdad','Ashkhabad'=>'Achgabat','Ashgabat'=>'Achgabat','Aqtobe'=>'Aktioubé','Aqtau'=>'Aqtou','Anadyr'=>'Anadyr','Amman'=>'Amman','Almaty'=>'Almaty','Aden'=>'Aden','Asia'=>'Asie','Longyearbyen'=>'Longyearbyen','Arctic'=>'Arctique','Vostok'=>'Vostok','Syowa'=>'Syowa','South Pole'=>'Pôle Sud','Rothera'=>'Rothera','Palmer'=>'Palmer','McMurdo'=>'McMurdo','Mawson'=>'Mawson','DumontDUrville'=>'Dumont d’Urville','Davis'=>'Davis','Casey'=>'Casey','Antarctica'=>'Antartique','Yellowknife'=>'Yellowknife','Yakutat'=>'Yakutat','Winnipeg'=>'Winnipeg','Whitehorse'=>'Whitehorse','Virgin'=>'Virgin','Vancouver'=>'Vancouver','Tortola'=>'Tortola','Toronto'=>'Toronto','Tijuana'=>'Tijuana','Thunder Bay'=>'Thunder Bay','Thule'=>'Thule','Tegucigalpa'=>'Tegucigalpa','Swift Current'=>'Swift Current','St Vincent'=>'Saint Vincent','St Thomas'=>'Saint Thomas','St Lucia'=>'Sainte-Lucie','St Kitts'=>'Île Saint-Christophe','St Johns'=>'Saint John’s','St Barthelemy'=>'Saint-Barthélemy','Shiprock'=>'Shiprock','Scoresbysund'=>'Ittoqqortoormiit (Scoresbysund)','Sao Paulo'=>'Sao Paulo','Santo Domingo'=>'Saint-Domingue','Santiago'=>'Santiago du Chili','Rosario'=>'Rosario','Rio Branco'=>'Rio Branco','Resolute'=>'Resolute','Regina'=>'Regina','Recife'=>'Recife','Rankin Inlet'=>'Kangiqtiniq (Rankin Inlet)','Rainy River'=>'Rainy River','Puerto Rico'=>'Porto Rico','Porto Velho'=>'Porto Velho','Porto Acre'=>'Porto Acre','Port of Spain'=>'Port-d’Espagne','Port-au-Prince'=>'Port-au-Prince','Phoenix'=>'Phoenix','Paramaribo'=>'Paramaribo','Pangnirtung'=>'Pangnirtung','Panama'=>'Panama','New Salem'=>'New Salem','Center'=>'Center','North Dakota'=>'Dakota du Nord','Noronha'=>'Noronha','Nome'=>'Nome','Nipigon'=>'Nipigon','New York'=>'New York','Nassau'=>'Nassau','Montserrat'=>'Montserrat','Montreal'=>'Montréal','Montevideo'=>'Montévidéo','Monterrey'=>'Monterrey','Moncton'=>'Moncton','Miquelon'=>'Miquelon','Mexico City'=>'Mexico','Merida'=>'Merida','Menominee'=>'Menominee','Mazatlan'=>'Mazatlan','Martinique'=>'Martinique','Marigot'=>'Marigot','Manaus'=>'Manaos','Managua'=>'Managua','Maceio'=>'Maceió','Los Angeles'=>'Los Angeles','Lima'=>'Lima','La Paz'=>'La Paz','Knox IN'=>'Knox (Indiana)','Monticello'=>'Monticello','Louisville'=>'Louisville','Kentucky'=>'Kentucky','Juneau'=>'Juneau','Jamaica'=>'Jamaïque','Iqaluit'=>'Iqaluit','Inuvik'=>'Inuvik','Winamac'=>'Winamac','Vincennes'=>'Vincennes','Vevay'=>'Vevay','Tell City'=>'Tell City','Petersburg'=>'Petersburg','Marengo'=>'Marengo','Knox'=>'Knox','Indianapolis'=>'Indianapolis','Indiana'=>'Indiana','Hermosillo'=>'Hermosillo','Havana'=>'La Havane','Halifax'=>'Halifax','Guyana'=>'Guyana','Guayaquil'=>'Guayaquil','Guatemala'=>'Guatemala','Guadeloupe'=>'Guadeloupe','Grenada'=>'Grenade','Grand Turk'=>'Grand Turk','Goose Bay'=>'Goose Bay','Godthab'=>'Nuuk (Godthåb)','Glace Bay'=>'Glace Bay','Fortaleza'=>'Fortaleza','Fort Wayne'=>'Fort Wayne','Ensenada'=>'Ensenada','El Salvador'=>'Salvador','Eirunepe'=>'Eirunepé','Edmonton'=>'Edmonton','Dominica'=>'Dominique','Detroit'=>'Detroit','Denver'=>'Denver','Dawson Creek'=>'Dawson Creek','Dawson'=>'Dawson','Danmarkshavn'=>'Danmarkshavn','Curacao'=>'Curaçao','Cuiaba'=>'Cuiabá','Costa Rica'=>'Costa Rica','Coral Harbour'=>'Coral Harbour','Chihuahua'=>'Etat de Chihuahua','Chicago'=>'Chicago','Cayman'=>'Îles Caïmans','Cayenne'=>'Cayenne','Caracas'=>'Caracas','Cancun'=>'Cancún','Campo Grande'=>'Campo Grande','Cambridge Bay'=>'Ikaluktutiak','Boise'=>'Boise','Bogota'=>'Bogotá','Boa Vista'=>'Boa Vista','Blanc-Sablon'=>'Blanc-Sablon','Belize'=>'Belize','Belem'=>'Belém','Barbados'=>'Barbade','Bahia'=>'Bahia','Atka'=>'Atka','Atikokan'=>'Atikokan','Asuncion'=>'Asunción','Aruba'=>'Aruba','Ushuaia'=>'Ushuaïa','Tucuman'=>'San Miguel de Tucumán','San Luis'=>'San Luis','San Juan'=>'San Juan','Rio Gallegos'=>'Rio Gallegos','Mendoza'=>'Mendoza','La Rioja'=>'La Rioja','Jujuy'=>'San Salvador de Jujuy','Cordoba'=>'Cordoba','ComodRivadavia'=>'Comodoro Rivadavia','Catamarca'=>'Catamarca','Buenos Aires'=>'Buenos Aires','Argentina'=>'Argentine','Araguaina'=>'Araguaína','Antigua'=>'Antigua','Anguilla'=>'Anguilla','Anchorage'=>'Anchorage','Adak'=>'Adak','America'=>'Amériques','Windhoek'=>'Windhoek','Tunis'=>'Tunis','Tripoli'=>'Tripoli','Timbuktu'=>'Tombouctou','Sao Tome'=>'Sao Tomé','Porto-Novo'=>'Porto-Novo','Ouagadougou'=>'Ouagadougou','Nouakchott'=>'Nouakchott','Niamey'=>'Niamey','Ndjamena'=>'N’Djamena','Nairobi'=>'Nairobi','Monrovia'=>'Monrovia','Mogadishu'=>'Mogadiscio','Mbabane'=>'Mbabane','Maseru'=>'Maseru','Maputo'=>'Maputo','Malabo'=>'Malabo','Lusaka'=>'Lusaka','Lubumbashi'=>'Lubumbashi','Luanda'=>'Luanda','Lome'=>'Lomé','Libreville'=>'Libreville','Lagos'=>'Lagos','Kinshasa'=>'Kinshasa','Kigali'=>'Kigali','Khartoum'=>'Khartoum','Kampala'=>'Kampala','Johannesburg'=>'Johannesburg','Harare'=>'Harare','Gaborone'=>'Gaborone','Freetown'=>'Freetown','El Aaiun'=>'Laâyoune','Douala'=>'Douala','Djibouti'=>'Djibouti','Dar es Salaam'=>'Dar es Salaam','Dakar'=>'Dakar','Conakry'=>'Conakry','Ceuta'=>'Ceuta','Casablanca'=>'Casablanca','Cairo'=>'Le Caire','Bujumbura'=>'Bujumbura','Brazzaville'=>'Brazzaville','Blantyre'=>'Blantyre','Bissau'=>'Bissau','Banjul'=>'Banjul','Bangui'=>'Bangui','Bamako'=>'Bamako','Asmera'=>'Asmara','Asmara'=>'Asmara','Algiers'=>'Alger','Addis Ababa'=>'Addis-Abeba','Accra'=>'Accra','Abidjan'=>'Abidjan','Africa'=>'Afrique']]; \ No newline at end of file +return ['x-generator'=>'GlotPress/4.0.1','translation-revision-date'=>'2024-02-29 08:00:23+0000','plural-forms'=>'nplurals=2; plural=n > 1;','project-id-version'=>'WordPress - 6.8.x - Development - Continents & Cities','language'=>'fr','messages'=>['Kanton'=>'Canton','Kyiv'=>'Kyiv','Qostanay'=>'Qostanay','Nuuk'=>'Nuuk','Saratov'=>'Saratov','Yangon'=>'Yangon','Famagusta'=>'Famagouste','Atyrau'=>'Atyrau','Punta Arenas'=>'Punta Arenas','Pohnpei'=>'Pohnpei','Chuuk'=>'Chuuk','Bougainville'=>'Bougainville','Ulyanovsk'=>'Oulianovsk','Kirov'=>'Kirov','Busingen'=>'Büsingen','Astrakhan'=>'Astrakhan','Ust-Nera'=>'Oust-Nera','Tomsk'=>'Tomsk','Srednekolymsk'=>'Srednekolymsk','Novokuznetsk'=>'Novokouznetsk','Khandyga'=>'Khandyga','Kathmandu'=>'Katmandou','Hebron'=>'Hébron','Chita'=>'Tchita','Barnaul'=>'Barnaoul','Troll'=>'Troll','Macquarie'=>'Macquarie','Sitka'=>'Sitka','Santarem'=>'Santarém','Santa Isabel'=>'Santa Isabel','Ojinaga'=>'Ojinaga','Beulah'=>'Beulah','Metlakatla'=>'Metlakatla','Matamoros'=>'Matamoros','Lower Princes'=>'Lower Princes','Kralendijk'=>'Kralendijk','Fort Nelson'=>'Fort Nelson','Creston'=>'Creston','Bahia Banderas'=>'Bahía de Banderas','Salta'=>'Salta','Juba'=>'Djouba','Yap'=>'Yap','Wallis'=>'Wallis-et-Futuna','Wake'=>'Île Wake','Truk'=>'Chuuk (Truk)','Tongatapu'=>'Tongatapu','Tarawa'=>'Tarawa','Tahiti'=>'Tahiti','Samoa'=>'Samoa','Saipan'=>'Saipan','Rarotonga'=>'Rarotonga','Port Moresby'=>'Port Moresby','Ponape'=>'Pohnpei (Ponape)','Pitcairn'=>'Îles Pitcairn','Palau'=>'Palaos','Pago Pago'=>'Pago Pago','Noumea'=>'Nouméa','Norfolk'=>'Norfolk','Niue'=>'Niué','Nauru'=>'Nauru','Midway'=>'Atoll de Midway','Marquesas'=>'Îles Marquises','Majuro'=>'Majuro','Kwajalein'=>'Kwajalein','Kosrae'=>'Kosrae','Kiritimati'=>'Île Christmas (Kiribati)','Johnston'=>'Atoll de Johnston','Honolulu'=>'Honolulu','Guam'=>'Guam','Guadalcanal'=>'Guadalcanal','Gambier'=>'Îles Gambier','Galapagos'=>'Îles Galápagos','Funafuti'=>'Funafuti','Fiji'=>'Fidji','Fakaofo'=>'Fakaofo','Enderbury'=>'Enderbury','Efate'=>'Éfaté','Easter'=>'Île de Pâques','Chatham'=>'Îles Chatham','Auckland'=>'Auckland','Apia'=>'Apia','Pacific'=>'Océan Pacifique','Reunion'=>'Île de la Réunion','Mayotte'=>'Mayotte','Mauritius'=>'Île Maurice','Maldives'=>'Maldives','Mahe'=>'Mahé','Kerguelen'=>'Îles Kerguelen','Comoro'=>'Archipel des Comores','Cocos'=>'Îles Cocos','Christmas'=>'Île Christmas','Chagos'=>'Archipel des Chagos','Antananarivo'=>'Antananarivo','Indian'=>'Océan Indien','Zurich'=>'Zurich','Zaporozhye'=>'Zaporojie','Zagreb'=>'Zagreb','Warsaw'=>'Varsovie','Volgograd'=>'Volgograd','Vilnius'=>'Vilnius','Vienna'=>'Vienne','Vatican'=>'Vatican','Vaduz'=>'Vaduz','Uzhgorod'=>'Oujhorod (Uzhgorod)','Tiraspol'=>'Tiraspol','Tirane'=>'Tirana','Tallinn'=>'Tallinn','Stockholm'=>'Stockholm','Sofia'=>'Sofia','Skopje'=>'Skopje','Simferopol'=>'Simferopol','Sarajevo'=>'Sarajevo','San Marino'=>'Saint-Marin','Samara'=>'Samara','Rome'=>'Rome','Riga'=>'Riga','Prague'=>'Prague','Podgorica'=>'Podgorica','Paris'=>'Paris','Oslo'=>'Oslo','Moscow'=>'Moscou','Monaco'=>'Monaco','Minsk'=>'Minsk','Mariehamn'=>'Mariehamn','Malta'=>'Malte','Madrid'=>'Madrid','Luxembourg'=>'Luxembourg','London'=>'Londres','Ljubljana'=>'Ljubljana','Lisbon'=>'Lisbonne','Kiev'=>'Kiev','Kaliningrad'=>'Kaliningrad','Jersey'=>'Jersey','Isle of Man'=>'Île de Man','Helsinki'=>'Helsinki','Guernsey'=>'Guernesey','Gibraltar'=>'Gibraltar','Dublin'=>'Dublin','Copenhagen'=>'Copenhague','Chisinau'=>'Chişinău (Kichinev)','Budapest'=>'Budapest','Bucharest'=>'Bucarest','Brussels'=>'Bruxelles','Bratislava'=>'Bratislava','Berlin'=>'Berlin','Belgrade'=>'Belgrade','Belfast'=>'Belfast','Athens'=>'Athènes','Andorra'=>'Andorre','Amsterdam'=>'Amsterdam','Europe'=>'Europe','Zulu'=>'Zulu','UTC'=>'UTC','Universal'=>'Universel','UCT'=>'UTC','Greenwich'=>'Greenwich','GMT0'=>'UTC0','GMT-9'=>'UTC-9','GMT-8'=>'UTC-8','GMT-7'=>'UTC-7','GMT-6'=>'UTC-6','GMT-5'=>'UTC-5','GMT-4'=>'UTC-4','GMT-3'=>'UTC-3','GMT-2'=>'UTC-2','GMT-14'=>'UTC-14','GMT-13'=>'UTC-13','GMT-12'=>'UTC-12','GMT-11'=>'UTC-11','GMT-10'=>'UTC-10','GMT-1'=>'UTC-1','GMT-0'=>'UTC-0','GMT+9'=>'UTC+9','GMT+8'=>'UTC+8','GMT+7'=>'UTC+7','GMT+6'=>'UTC+6','GMT+5'=>'UTC+5','GMT+4'=>'UTC+4','GMT+3'=>'UTC+3','GMT+2'=>'UTC+2','GMT+12'=>'UTC+12','GMT+11'=>'UTC+11','GMT+10'=>'UTC+10','GMT+1'=>'UTC+1','GMT+0'=>'UTC+0','GMT'=>'UTC','Etc'=>'Etc.','Yancowinna'=>'Yancowinna','West'=>'Ouest','Victoria'=>'Victoria','Tasmania'=>'Tasmanie','Sydney'=>'Sydney','South'=>'Sud','Queensland'=>'Queensland','Perth'=>'Perth','NSW'=>'Nouvelle-Galles du Sud (NSW)','North'=>'Nord','Melbourne'=>'Melbourne','Lord Howe'=>'Île Lord Howe (LHI)','Lindeman'=>'Lindeman','LHI'=>'Île Lord Howe (LHI)','Hobart'=>'Hobart','Eucla'=>'Eucla','Darwin'=>'Darwin','Currie'=>'Currie','Canberra'=>'Canberra','Broken Hill'=>'Broken Hill','Brisbane'=>'Brisbane','Adelaide'=>'Adélaïde','ACT'=>'Territoire de la capitale australienne (ACT)','Australia'=>'Australie','Stanley'=>'Stanley','St Helena'=>'Sainte-Hélène','South Georgia'=>'Île de Géorgie du Sud','Reykjavik'=>'Reykjavík','Madeira'=>'Madère','Jan Mayen'=>'Île Jan Mayen','Faroe'=>'Îles Féroé','Faeroe'=>'Îles Féroé','Cape Verde'=>'Cap-Vert','Canary'=>'Îles Canaries','Bermuda'=>'Bermudes','Azores'=>'Açores','Atlantic'=>'Atlantique','Yerevan'=>'Yerevan (Erevan)','Yekaterinburg'=>'Iekaterinbourg','Yakutsk'=>'Iakoutsk','Vladivostok'=>'Vladivostok','Vientiane'=>'Vientiane','Urumqi'=>'Ürümqi','Ulan Bator'=>'Oulan-Bator (Ulaanbaatar)','Ulaanbaatar'=>'Oulan-Bator (Ulaanbaatar)','Ujung Pandang'=>'Makassar (Ujung Pandang)','Tokyo'=>'Tōkyō','Thimphu'=>'Thimphou','Thimbu'=>'Thimphou','Tel Aviv'=>'Tel Aviv-Jaffa','Tehran'=>'Téhéran','Tbilisi'=>'Tbilissi','Tashkent'=>'Tachkent','Taipei'=>'Taipei','Singapore'=>'Singapour','Shanghai'=>'Shanghai','Seoul'=>'Séoul','Samarkand'=>'Samarcande','Sakhalin'=>'Sakhaline','Saigon'=>'Hô-Chi-Minh-Ville (Saigon)','Riyadh'=>'Riyad','Rangoon'=>'Rangoon','Qyzylorda'=>'Kyzylorda','Qatar'=>'Qatar','Pyongyang'=>'Pyongyang','Pontianak'=>'Pontianak','Phnom Penh'=>'Phnom Penh','Oral'=>'Oural','Omsk'=>'Omsk','Novosibirsk'=>'Novossibirsk','Nicosia'=>'Nicosie','Muscat'=>'Mascate','Manila'=>'Manille','Makassar'=>'Makassar','Magadan'=>'Magadan','Macau'=>'Macao','Macao'=>'Macao','Kuwait'=>'Koweït','Kuching'=>'Kuching','Kuala Lumpur'=>'Kuala Lumpur','Krasnoyarsk'=>'Krasnoïarsk','Kolkata'=>'Calcutta','Katmandu'=>'Katmandou','Kashgar'=>'Kachgar','Karachi'=>'Karachi','Kamchatka'=>'Kamtchatka','Kabul'=>'Kaboul','Jerusalem'=>'Jérusalem','Jayapura'=>'Jayapura','Jakarta'=>'Jakarta','Istanbul'=>'Istanbul','Irkutsk'=>'Irkoutsk','Hovd'=>'Hovd','Hong Kong'=>'Hong Kong','Ho Chi Minh'=>'Hô-Chi-Minh-Ville','Harbin'=>'Harbin','Gaza'=>'Gaza','Dushanbe'=>'Douchanbé','Dubai'=>'Dubaï','Dili'=>'Dili','Dhaka'=>'Dhâkâ (Dacca)','Damascus'=>'Damas','Dacca'=>'Dhâkâ (Dacca)','Colombo'=>'Colombo','Chungking'=>'Chungking','Chongqing'=>'Chongqing','Choibalsan'=>'Choybalsan','Calcutta'=>'Calcutta','Brunei'=>'Brunei','Bishkek'=>'Bichkek','Beirut'=>'Beyrouth','Bangkok'=>'Bangkok','Baku'=>'Bakou','Bahrain'=>'Bahreïn','Baghdad'=>'Bagdad','Ashkhabad'=>'Achgabat','Ashgabat'=>'Achgabat','Aqtobe'=>'Aktioubé','Aqtau'=>'Aqtou','Anadyr'=>'Anadyr','Amman'=>'Amman','Almaty'=>'Almaty','Aden'=>'Aden','Asia'=>'Asie','Longyearbyen'=>'Longyearbyen','Arctic'=>'Arctique','Vostok'=>'Vostok','Syowa'=>'Syowa','South Pole'=>'Pôle Sud','Rothera'=>'Rothera','Palmer'=>'Palmer','McMurdo'=>'McMurdo','Mawson'=>'Mawson','DumontDUrville'=>'Dumont d’Urville','Davis'=>'Davis','Casey'=>'Casey','Antarctica'=>'Antartique','Yellowknife'=>'Yellowknife','Yakutat'=>'Yakutat','Winnipeg'=>'Winnipeg','Whitehorse'=>'Whitehorse','Virgin'=>'Virgin','Vancouver'=>'Vancouver','Tortola'=>'Tortola','Toronto'=>'Toronto','Tijuana'=>'Tijuana','Thunder Bay'=>'Thunder Bay','Thule'=>'Thule','Tegucigalpa'=>'Tegucigalpa','Swift Current'=>'Swift Current','St Vincent'=>'Saint Vincent','St Thomas'=>'Saint Thomas','St Lucia'=>'Sainte-Lucie','St Kitts'=>'Île Saint-Christophe','St Johns'=>'Saint John’s','St Barthelemy'=>'Saint-Barthélemy','Shiprock'=>'Shiprock','Scoresbysund'=>'Ittoqqortoormiit (Scoresbysund)','Sao Paulo'=>'Sao Paulo','Santo Domingo'=>'Saint-Domingue','Santiago'=>'Santiago du Chili','Rosario'=>'Rosario','Rio Branco'=>'Rio Branco','Resolute'=>'Resolute','Regina'=>'Regina','Recife'=>'Recife','Rankin Inlet'=>'Kangiqtiniq (Rankin Inlet)','Rainy River'=>'Rainy River','Puerto Rico'=>'Porto Rico','Porto Velho'=>'Porto Velho','Porto Acre'=>'Porto Acre','Port of Spain'=>'Port-d’Espagne','Port-au-Prince'=>'Port-au-Prince','Phoenix'=>'Phoenix','Paramaribo'=>'Paramaribo','Pangnirtung'=>'Pangnirtung','Panama'=>'Panama','New Salem'=>'New Salem','Center'=>'Center','North Dakota'=>'Dakota du Nord','Noronha'=>'Noronha','Nome'=>'Nome','Nipigon'=>'Nipigon','New York'=>'New York','Nassau'=>'Nassau','Montserrat'=>'Montserrat','Montreal'=>'Montréal','Montevideo'=>'Montévidéo','Monterrey'=>'Monterrey','Moncton'=>'Moncton','Miquelon'=>'Miquelon','Mexico City'=>'Mexico','Merida'=>'Merida','Menominee'=>'Menominee','Mazatlan'=>'Mazatlan','Martinique'=>'Martinique','Marigot'=>'Marigot','Manaus'=>'Manaos','Managua'=>'Managua','Maceio'=>'Maceió','Los Angeles'=>'Los Angeles','Lima'=>'Lima','La Paz'=>'La Paz','Knox IN'=>'Knox (Indiana)','Monticello'=>'Monticello','Louisville'=>'Louisville','Kentucky'=>'Kentucky','Juneau'=>'Juneau','Jamaica'=>'Jamaïque','Iqaluit'=>'Iqaluit','Inuvik'=>'Inuvik','Winamac'=>'Winamac','Vincennes'=>'Vincennes','Vevay'=>'Vevay','Tell City'=>'Tell City','Petersburg'=>'Petersburg','Marengo'=>'Marengo','Knox'=>'Knox','Indianapolis'=>'Indianapolis','Indiana'=>'Indiana','Hermosillo'=>'Hermosillo','Havana'=>'La Havane','Halifax'=>'Halifax','Guyana'=>'Guyana','Guayaquil'=>'Guayaquil','Guatemala'=>'Guatemala','Guadeloupe'=>'Guadeloupe','Grenada'=>'Grenade','Grand Turk'=>'Grand Turk','Goose Bay'=>'Goose Bay','Godthab'=>'Nuuk (Godthåb)','Glace Bay'=>'Glace Bay','Fortaleza'=>'Fortaleza','Fort Wayne'=>'Fort Wayne','Ensenada'=>'Ensenada','El Salvador'=>'Salvador','Eirunepe'=>'Eirunepé','Edmonton'=>'Edmonton','Dominica'=>'Dominique','Detroit'=>'Detroit','Denver'=>'Denver','Dawson Creek'=>'Dawson Creek','Dawson'=>'Dawson','Danmarkshavn'=>'Danmarkshavn','Curacao'=>'Curaçao','Cuiaba'=>'Cuiabá','Costa Rica'=>'Costa Rica','Coral Harbour'=>'Coral Harbour','Chihuahua'=>'Etat de Chihuahua','Chicago'=>'Chicago','Cayman'=>'Îles Caïmans','Cayenne'=>'Cayenne','Caracas'=>'Caracas','Cancun'=>'Cancún','Campo Grande'=>'Campo Grande','Cambridge Bay'=>'Ikaluktutiak','Boise'=>'Boise','Bogota'=>'Bogotá','Boa Vista'=>'Boa Vista','Blanc-Sablon'=>'Blanc-Sablon','Belize'=>'Belize','Belem'=>'Belém','Barbados'=>'Barbade','Bahia'=>'Bahia','Atka'=>'Atka','Atikokan'=>'Atikokan','Asuncion'=>'Asunción','Aruba'=>'Aruba','Ushuaia'=>'Ushuaïa','Tucuman'=>'San Miguel de Tucumán','San Luis'=>'San Luis','San Juan'=>'San Juan','Rio Gallegos'=>'Rio Gallegos','Mendoza'=>'Mendoza','La Rioja'=>'La Rioja','Jujuy'=>'San Salvador de Jujuy','Cordoba'=>'Cordoba','ComodRivadavia'=>'Comodoro Rivadavia','Catamarca'=>'Catamarca','Buenos Aires'=>'Buenos Aires','Argentina'=>'Argentine','Araguaina'=>'Araguaína','Antigua'=>'Antigua','Anguilla'=>'Anguilla','Anchorage'=>'Anchorage','Adak'=>'Adak','America'=>'Amériques','Windhoek'=>'Windhoek','Tunis'=>'Tunis','Tripoli'=>'Tripoli','Timbuktu'=>'Tombouctou','Sao Tome'=>'Sao Tomé','Porto-Novo'=>'Porto-Novo','Ouagadougou'=>'Ouagadougou','Nouakchott'=>'Nouakchott','Niamey'=>'Niamey','Ndjamena'=>'N’Djamena','Nairobi'=>'Nairobi','Monrovia'=>'Monrovia','Mogadishu'=>'Mogadiscio','Mbabane'=>'Mbabane','Maseru'=>'Maseru','Maputo'=>'Maputo','Malabo'=>'Malabo','Lusaka'=>'Lusaka','Lubumbashi'=>'Lubumbashi','Luanda'=>'Luanda','Lome'=>'Lomé','Libreville'=>'Libreville','Lagos'=>'Lagos','Kinshasa'=>'Kinshasa','Kigali'=>'Kigali','Khartoum'=>'Khartoum','Kampala'=>'Kampala','Johannesburg'=>'Johannesburg','Harare'=>'Harare','Gaborone'=>'Gaborone','Freetown'=>'Freetown','El Aaiun'=>'Laâyoune','Douala'=>'Douala','Djibouti'=>'Djibouti','Dar es Salaam'=>'Dar es Salaam','Dakar'=>'Dakar','Conakry'=>'Conakry','Ceuta'=>'Ceuta','Casablanca'=>'Casablanca','Cairo'=>'Le Caire','Bujumbura'=>'Bujumbura','Brazzaville'=>'Brazzaville','Blantyre'=>'Blantyre','Bissau'=>'Bissau','Banjul'=>'Banjul','Bangui'=>'Bangui','Bamako'=>'Bamako','Asmera'=>'Asmara','Asmara'=>'Asmara','Algiers'=>'Alger','Addis Ababa'=>'Addis-Abeba','Accra'=>'Accra','Abidjan'=>'Abidjan','Africa'=>'Afrique']]; \ No newline at end of file diff --git a/web/app/languages/continents-cities-fr_FR.mo b/web/app/languages/continents-cities-fr_FR.mo old mode 100755 new mode 100644 index 8de64860..c8d76137 Binary files a/web/app/languages/continents-cities-fr_FR.mo and b/web/app/languages/continents-cities-fr_FR.mo differ diff --git a/web/app/languages/continents-cities-fr_FR.po b/web/app/languages/continents-cities-fr_FR.po old mode 100755 new mode 100644 index b1881a94..28f7ebd5 --- a/web/app/languages/continents-cities-fr_FR.po +++ b/web/app/languages/continents-cities-fr_FR.po @@ -1,5 +1,5 @@ -# Translation of WordPress - 6.7.x - Development - Continents & Cities in French (France) -# This file is distributed under the same license as the WordPress - 6.7.x - Development - Continents & Cities package. +# Translation of WordPress - 6.8.x - Development - Continents & Cities in French (France) +# This file is distributed under the same license as the WordPress - 6.8.x - Development - Continents & Cities package. msgid "" msgstr "" "PO-Revision-Date: 2024-02-29 08:00:23+0000\n" @@ -9,7 +9,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: GlotPress/4.0.1\n" "Language: fr\n" -"Project-Id-Version: WordPress - 6.7.x - Development - Continents & Cities\n" +"Project-Id-Version: WordPress - 6.8.x - Development - Continents & Cities\n" #: wp-admin/includes/continents-cities.php:523 msgid "Kanton" diff --git a/web/app/languages/en_GB-0cc31205f20441b3df1d1b46100f6b8d.json b/web/app/languages/en_GB-0cc31205f20441b3df1d1b46100f6b8d.json old mode 100755 new mode 100644 index 257427c7..64537fa3 --- a/web/app/languages/en_GB-0cc31205f20441b3df1d1b46100f6b8d.json +++ b/web/app/languages/en_GB-0cc31205f20441b3df1d1b46100f6b8d.json @@ -1 +1 @@ -{"translation-revision-date":"2024-11-14 20:17:10+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"The suggested policy text has been copied to your clipboard.":["The suggested policy text has been copied to your clipboard."],"This user’s personal data export file was downloaded.":["This user’s personal data export file was downloaded."],"This user’s personal data export link was sent.":["This user’s personal data export link was sent."],"An error occurred while attempting to find and erase personal data.":["An error occurred while attempting to find and erase personal data."],"Personal data was found for this user but some of the personal data found was not erased.":["Personal data was found for this user, but some of the personal data found was not erased."],"All of the personal data found for this user was erased.":["All of the personal data found for this user was erased."],"Personal data was found for this user but was not erased.":["Personal data was found for this user, but was not erased."],"No personal data was found for this user.":["No personal data was found for this user."],"An error occurred while attempting to export personal data.":["An error occurred while attempting to export personal data."],"No personal data export file was generated.":["No personal data export file was generated."]}},"comment":{"reference":"wp-admin\/js\/privacy-tools.js"}} \ No newline at end of file +{"translation-revision-date":"2025-05-25 12:26:44+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"The suggested policy text has been copied to your clipboard.":["The suggested policy text has been copied to your clipboard."],"This user’s personal data export file was downloaded.":["This user’s personal data export file was downloaded."],"This user’s personal data export link was sent.":["This user’s personal data export link was sent."],"An error occurred while attempting to find and erase personal data.":["An error occurred while attempting to find and erase personal data."],"Personal data was found for this user but some of the personal data found was not erased.":["Personal data was found for this user, but some of the personal data found was not erased."],"All of the personal data found for this user was erased.":["All of the personal data found for this user was erased."],"Personal data was found for this user but was not erased.":["Personal data was found for this user, but was not erased."],"No personal data was found for this user.":["No personal data was found for this user."],"An error occurred while attempting to export personal data.":["An error occurred while attempting to export personal data."],"No personal data export file was generated.":["No personal data export file was generated."]}},"comment":{"reference":"wp-admin\/js\/privacy-tools.js"}} \ No newline at end of file diff --git a/web/app/languages/en_GB-0ce75ad2f775d1cac9696967d484808c.json b/web/app/languages/en_GB-0ce75ad2f775d1cac9696967d484808c.json old mode 100755 new mode 100644 index d3d6b563..396ddb43 --- a/web/app/languages/en_GB-0ce75ad2f775d1cac9696967d484808c.json +++ b/web/app/languages/en_GB-0ce75ad2f775d1cac9696967d484808c.json @@ -1 +1 @@ -{"translation-revision-date":"2024-11-14 20:13:08+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Editor tips":["Editor tips"],"Disable tips":["Disable tips"],"Got it":["Got it"],"See next tip":["See next tip"]}},"comment":{"reference":"wp-includes\/js\/dist\/nux.js"}} \ No newline at end of file +{"translation-revision-date":"2025-04-06 12:37:11+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Editor tips":["Editor tips"],"Disable tips":["Disable tips"],"Got it":["Got it"],"See next tip":["See next tip"]}},"comment":{"reference":"wp-includes\/js\/dist\/nux.js"}} \ No newline at end of file diff --git a/web/app/languages/en_GB-0eebe503220d4a00341eb011b92769b4.json b/web/app/languages/en_GB-0eebe503220d4a00341eb011b92769b4.json old mode 100755 new mode 100644 index 525c46a6..4b4b7690 --- a/web/app/languages/en_GB-0eebe503220d4a00341eb011b92769b4.json +++ b/web/app/languages/en_GB-0eebe503220d4a00341eb011b92769b4.json @@ -1 +1 @@ -{"translation-revision-date":"2024-11-14 20:17:10+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"%1$s is deprecated since version %2$s! Use %3$s instead. Please consider writing more inclusive code.":["%1$s is deprecated since version %2$s! Use %3$s instead. Please consider writing more inclusive code."]}},"comment":{"reference":"wp-admin\/js\/password-strength-meter.js"}} \ No newline at end of file +{"translation-revision-date":"2025-05-25 12:26:44+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"%1$s is deprecated since version %2$s! Use %3$s instead. Please consider writing more inclusive code.":["%1$s is deprecated since version %2$s! Use %3$s instead. Please consider writing more inclusive code."]}},"comment":{"reference":"wp-admin\/js\/password-strength-meter.js"}} \ No newline at end of file diff --git a/web/app/languages/en_GB-17179a5f2930647c89151e365f843b6e.json b/web/app/languages/en_GB-17179a5f2930647c89151e365f843b6e.json old mode 100755 new mode 100644 index 6016b542..341c02a2 --- a/web/app/languages/en_GB-17179a5f2930647c89151e365f843b6e.json +++ b/web/app/languages/en_GB-17179a5f2930647c89151e365f843b6e.json @@ -1 +1 @@ -{"translation-revision-date":"2024-11-14 20:13:08+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"%s applied.":["%s applied."],"%s removed.":["%s removed."]}},"comment":{"reference":"wp-includes\/js\/dist\/rich-text.js"}} \ No newline at end of file +{"translation-revision-date":"2025-04-06 12:37:11+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"%s applied.":["%s applied."],"%s removed.":["%s removed."]}},"comment":{"reference":"wp-includes\/js\/dist\/rich-text.js"}} \ No newline at end of file diff --git a/web/app/languages/en_GB-1780a2033cf98d69ce13c2e5c8510004.json b/web/app/languages/en_GB-1780a2033cf98d69ce13c2e5c8510004.json old mode 100755 new mode 100644 index 096f5a8c..8b0a6be0 --- a/web/app/languages/en_GB-1780a2033cf98d69ce13c2e5c8510004.json +++ b/web/app/languages/en_GB-1780a2033cf98d69ce13c2e5c8510004.json @@ -1 +1 @@ -{"translation-revision-date":"2024-11-14 20:13:08+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"pattern (singular)\u0004Synced":["Synced"],"Sync this pattern across multiple locations.":["Sync this pattern across multiple locations."],"Unsynced pattern created: %s":["Unsynced pattern created: %s"],"Synced pattern created: %s":["Synced pattern created: %s"],"Untitled pattern block":["Untitled pattern block"],"My pattern":["My pattern"],"Create pattern":["Create pattern"],"Manage patterns":["Manage patterns"],"Create":["Create"],"Detach":["Detach"],"Cancel":["Cancel"],"Name":["Name"]}},"comment":{"reference":"wp-includes\/js\/dist\/reusable-blocks.js"}} \ No newline at end of file +{"translation-revision-date":"2025-04-06 12:37:11+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"pattern (singular)\u0004Synced":["Synced"],"Sync this pattern across multiple locations.":["Sync this pattern across multiple locations."],"Unsynced pattern created: %s":["Unsynced pattern created: %s"],"Synced pattern created: %s":["Synced pattern created: %s"],"Untitled pattern block":["Untitled pattern block"],"My pattern":["My pattern"],"Create pattern":["Create pattern"],"Manage patterns":["Manage patterns"],"Create":["Create"],"Detach":["Detach"],"Cancel":["Cancel"],"Name":["Name"]}},"comment":{"reference":"wp-includes\/js\/dist\/reusable-blocks.js"}} \ No newline at end of file diff --git a/web/app/languages/en_GB-1a0cd6a7128913b15c1a10dd68951869.json b/web/app/languages/en_GB-1a0cd6a7128913b15c1a10dd68951869.json old mode 100755 new mode 100644 index bdb4bd7a..a1e4f187 --- a/web/app/languages/en_GB-1a0cd6a7128913b15c1a10dd68951869.json +++ b/web/app/languages/en_GB-1a0cd6a7128913b15c1a10dd68951869.json @@ -1 +1 @@ -{"translation-revision-date":"2024-11-14 20:13:08+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"%1$s Block. Row %2$d":["%1$s Block. Row %2$d"],"Design":["Design"],"%s Block":["%s Block"],"%1$s Block. %2$s":["%1$s Block. %2$s"],"%1$s Block. Column %2$d":["%1$s Block. Column %2$d"],"%1$s Block. Column %2$d. %3$s":["%1$s Block. Column %2$d. %3$s"],"%1$s Block. Row %2$d. %3$s":["%1$s Block. Row %2$d. %3$s"],"Reusable blocks":["Reusable blocks"],"Embeds":["Embeds"],"Text":["Text"],"Widgets":["Widgets"],"Theme":["Theme"],"Media":["Media"]}},"comment":{"reference":"wp-includes\/js\/dist\/blocks.js"}} \ No newline at end of file +{"translation-revision-date":"2025-04-06 12:37:11+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"%1$s Block. Row %2$d":["%1$s Block. Row %2$d"],"Design":["Design"],"%s Block":["%s Block"],"%1$s Block. %2$s":["%1$s Block. %2$s"],"%1$s Block. Column %2$d":["%1$s Block. Column %2$d"],"%1$s Block. Column %2$d. %3$s":["%1$s Block. Column %2$d. %3$s"],"%1$s Block. Row %2$d. %3$s":["%1$s Block. Row %2$d. %3$s"],"Reusable blocks":["Reusable blocks"],"Embeds":["Embeds"],"Text":["Text"],"Widgets":["Widgets"],"Theme":["Theme"],"Media":["Media"]}},"comment":{"reference":"wp-includes\/js\/dist\/blocks.js"}} \ No newline at end of file diff --git a/web/app/languages/en_GB-1bba9045bb07c89671c88a3f328548e8.json b/web/app/languages/en_GB-1bba9045bb07c89671c88a3f328548e8.json old mode 100755 new mode 100644 index e8685d17..dac050b1 --- a/web/app/languages/en_GB-1bba9045bb07c89671c88a3f328548e8.json +++ b/web/app/languages/en_GB-1bba9045bb07c89671c88a3f328548e8.json @@ -1 +1 @@ -{"translation-revision-date":"2024-11-14 20:13:08+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"You are probably offline.":["You are probably offline."],"Media upload failed. If this is a photo or a large image, please scale it down and try again.":["Media upload failed. If this is a photo or a large image, please scale it down and try again."],"The response is not a valid JSON response.":["The response is not a valid JSON response."],"An unknown error occurred.":["An unknown error occurred."]}},"comment":{"reference":"wp-includes\/js\/dist\/api-fetch.js"}} \ No newline at end of file +{"translation-revision-date":"2025-04-06 12:37:11+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"You are probably offline.":["You are probably offline."],"Media upload failed. If this is a photo or a large image, please scale it down and try again.":["Media upload failed. If this is a photo or a large image, please scale it down and try again."],"The response is not a valid JSON response.":["The response is not a valid JSON response."],"An unknown error occurred.":["An unknown error occurred."]}},"comment":{"reference":"wp-includes\/js\/dist\/api-fetch.js"}} \ No newline at end of file diff --git a/web/app/languages/en_GB-1c4303f02ff93b290e9faad991eeb06f.json b/web/app/languages/en_GB-1c4303f02ff93b290e9faad991eeb06f.json old mode 100755 new mode 100644 index a5e7c4f5..6a0f38be --- a/web/app/languages/en_GB-1c4303f02ff93b290e9faad991eeb06f.json +++ b/web/app/languages/en_GB-1c4303f02ff93b290e9faad991eeb06f.json @@ -1 +1 @@ -{"translation-revision-date":"2024-11-14 20:17:10+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Submitted on:":["Submitted on:"],"%1$s %2$s, %3$s at %4$s:%5$s":["%1$s %2$s, %3$s at %4$s:%5$s"]}},"comment":{"reference":"wp-admin\/js\/comment.js"}} \ No newline at end of file +{"translation-revision-date":"2025-05-25 12:26:44+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Submitted on:":["Submitted on:"],"%1$s %2$s, %3$s at %4$s:%5$s":["%1$s %2$s, %3$s at %4$s:%5$s"]}},"comment":{"reference":"wp-admin\/js\/comment.js"}} \ No newline at end of file diff --git a/web/app/languages/en_GB-1d17475f620f63a92e2c5d2681c51ee8.json b/web/app/languages/en_GB-1d17475f620f63a92e2c5d2681c51ee8.json old mode 100755 new mode 100644 index 8978547c..144d02ef --- a/web/app/languages/en_GB-1d17475f620f63a92e2c5d2681c51ee8.json +++ b/web/app/languages/en_GB-1d17475f620f63a92e2c5d2681c51ee8.json @@ -1 +1 @@ -{"translation-revision-date":"2024-11-14 20:17:10+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Selected crop ratio exceeds the boundaries of the image. Try a different ratio.":["Selected crop ratio exceeds the boundaries of the image. Try a different ratio."],"Could not load the preview image.":["Could not load the preview image."],"Could not load the preview image. Please reload the page and try again.":["Could not load the preview image. Please reload the page and try again."],"Image updated.":["Image updated."]}},"comment":{"reference":"wp-admin\/js\/image-edit.js"}} \ No newline at end of file +{"translation-revision-date":"2025-05-25 12:26:44+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Selected crop ratio exceeds the boundaries of the image. Try a different ratio.":["Selected crop ratio exceeds the boundaries of the image. Try a different ratio."],"Could not load the preview image.":["Could not load the preview image."],"Could not load the preview image. Please reload the page and try again.":["Could not load the preview image. Please reload the page and try again."],"Image updated.":["Image updated."]}},"comment":{"reference":"wp-admin\/js\/image-edit.js"}} \ No newline at end of file diff --git a/web/app/languages/en_GB-2617ce121227a46077ede6c69aa9fcb5.json b/web/app/languages/en_GB-2617ce121227a46077ede6c69aa9fcb5.json old mode 100755 new mode 100644 index 2b9980cf..88fd5be4 --- a/web/app/languages/en_GB-2617ce121227a46077ede6c69aa9fcb5.json +++ b/web/app/languages/en_GB-2617ce121227a46077ede6c69aa9fcb5.json @@ -1 +1 @@ -{"translation-revision-date":"2024-11-14 20:13:08+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"pattern\u0004\"%s\" duplicated.":["\"%s\" duplicated."],"pattern\u0004%s (Copy)":["%s (Copy)"],"These blocks are editable using overrides.":["These blocks are editable using overrides."],"This %1$s is editable using the \"%2$s\" override.":["This %1$s is editable using the \"%2$s\" override."],"Allow changes to this block throughout instances of this pattern.":["Allow changes to this block throughout instances of this pattern."],"Overrides currently don't support image captions or links. Remove the caption or link first before enabling overrides.":["Overrides currently don't support image captions or links. Remove the caption or link first before enabling overrides."],"Disable":["Disable"],"Are you sure you want to disable overrides? Disabling overrides will revert all applied overrides for this block throughout instances of this pattern.":["Are you sure you want to disable overrides? Disabling overrides will revert all applied overrides for this block throughout instances of this pattern."],"Disable overrides":["Disable overrides"],"For example, if you are creating a recipe pattern, you use \"Recipe Title\", \"Recipe Description\", etc.":["For example, if you are creating a recipe pattern, you use \"Recipe Title\", \"Recipe Description\", etc."],"Overrides are changes you make to a block within a synced pattern instance. Use overrides to customize a synced pattern instance to suit its new context. Name this block to specify an override.":["Overrides are changes you make to a block within a synced pattern instance. Use overrides to customise a synced pattern instance to suit its new context. Name this block to specify an override."],"Enable overrides":["Enable overrides"],"Overrides":["Overrides"],"pattern (singular)\u0004Synced":["Synced"],"Pattern category renamed.":["Pattern category renamed."],"This category already exists. Please use a different name.":["This category already exists. Please use a different name."],"Please enter a new name for this category.":["Please enter a new name for this category."],"Pattern renamed":["Pattern renamed"],"Sync this pattern across multiple locations.":["Sync this pattern across multiple locations."],"Duplicate pattern":["Duplicate pattern"],"Block name changed to: \"%s\".":["Block name changed to: \"%s\"."],"Unsynced pattern created: %s":["Unsynced pattern created: %s"],"Synced pattern created: %s":["Synced pattern created: %s"],"My pattern":["My pattern"],"Create pattern":["Create pattern"],"An error occurred while renaming the pattern.":["An error occurred while renaming the pattern."],"Manage patterns":["Manage patterns"],"Rename":["Rename"],"Duplicate":["Duplicate"],"Reset":["Reset"],"Detach":["Detach"],"Enable":["Enable"],"Add":["Add"],"Cancel":["Cancel"],"Name":["Name"],"Categories":["Categories"],"Save":["Save"]}},"comment":{"reference":"wp-includes\/js\/dist\/patterns.js"}} \ No newline at end of file +{"translation-revision-date":"2025-04-06 12:37:11+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"pattern\u0004\"%s\" duplicated.":["\"%s\" duplicated."],"pattern\u0004%s (Copy)":["%s (Copy)"],"These blocks are editable using overrides.":["These blocks are editable using overrides."],"This %1$s is editable using the \"%2$s\" override.":["This %1$s is editable using the \"%2$s\" override."],"Allow changes to this block throughout instances of this pattern.":["Allow changes to this block throughout instances of this pattern."],"Overrides currently don't support image captions or links. Remove the caption or link first before enabling overrides.":["Overrides currently don't support image captions or links. Remove the caption or link first before enabling overrides."],"Disable":["Disable"],"Are you sure you want to disable overrides? Disabling overrides will revert all applied overrides for this block throughout instances of this pattern.":["Are you sure you want to disable overrides? Disabling overrides will revert all applied overrides for this block throughout instances of this pattern."],"Disable overrides":["Disable overrides"],"For example, if you are creating a recipe pattern, you use \"Recipe Title\", \"Recipe Description\", etc.":["For example, if you are creating a recipe pattern, you use \"Recipe Title\", \"Recipe Description\", etc."],"Overrides are changes you make to a block within a synced pattern instance. Use overrides to customize a synced pattern instance to suit its new context. Name this block to specify an override.":["Overrides are changes you make to a block within a synced pattern instance. Use overrides to customise a synced pattern instance to suit its new context. Name this block to specify an override."],"Enable overrides":["Enable overrides"],"Overrides":["Overrides"],"pattern (singular)\u0004Synced":["Synced"],"Pattern category renamed.":["Pattern category renamed."],"This category already exists. Please use a different name.":["This category already exists. Please use a different name."],"Please enter a new name for this category.":["Please enter a new name for this category."],"Pattern renamed":["Pattern renamed"],"Sync this pattern across multiple locations.":["Sync this pattern across multiple locations."],"Duplicate pattern":["Duplicate pattern"],"Block name changed to: \"%s\".":["Block name changed to: \"%s\"."],"Unsynced pattern created: %s":["Unsynced pattern created: %s"],"Synced pattern created: %s":["Synced pattern created: %s"],"My pattern":["My pattern"],"Create pattern":["Create pattern"],"An error occurred while renaming the pattern.":["An error occurred while renaming the pattern."],"Manage patterns":["Manage patterns"],"Rename":["Rename"],"Duplicate":["Duplicate"],"Reset":["Reset"],"Detach":["Detach"],"Enable":["Enable"],"Add":["Add"],"Cancel":["Cancel"],"Name":["Name"],"Categories":["Categories"],"Save":["Save"]}},"comment":{"reference":"wp-includes\/js\/dist\/patterns.js"}} \ No newline at end of file diff --git a/web/app/languages/en_GB-270d72d1cff17227d37f3244759cbecb.json b/web/app/languages/en_GB-270d72d1cff17227d37f3244759cbecb.json old mode 100755 new mode 100644 index ae998a6d..31a67490 --- a/web/app/languages/en_GB-270d72d1cff17227d37f3244759cbecb.json +++ b/web/app/languages/en_GB-270d72d1cff17227d37f3244759cbecb.json @@ -1 +1 @@ -{"translation-revision-date":"2024-11-14 20:13:08+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Search commands and settings":["Search commands and settings"],"Command suggestions":["Command suggestions"],"Command palette":["Command palette"],"Open the command palette.":["Open the command palette."],"No results found.":["No results found."]}},"comment":{"reference":"wp-includes\/js\/dist\/commands.js"}} \ No newline at end of file +{"translation-revision-date":"2025-04-06 12:37:11+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Search commands and settings":["Search commands and settings"],"Command suggestions":["Command suggestions"],"Command palette":["Command palette"],"Open the command palette.":["Open the command palette."],"No results found.":["No results found."]}},"comment":{"reference":"wp-includes\/js\/dist\/commands.js"}} \ No newline at end of file diff --git a/web/app/languages/en_GB-28b3c3d595952907e08d98287077426c.json b/web/app/languages/en_GB-28b3c3d595952907e08d98287077426c.json old mode 100755 new mode 100644 index ce398a00..070e1f1b --- a/web/app/languages/en_GB-28b3c3d595952907e08d98287077426c.json +++ b/web/app/languages/en_GB-28b3c3d595952907e08d98287077426c.json @@ -1 +1 @@ -{"translation-revision-date":"2024-11-14 20:13:08+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Pattern imported successfully!":["Pattern imported successfully!"],"Invalid pattern JSON file":["Invalid pattern JSON file"],"button label\u0004Import":["Import"],"Unknown error":["Unknown error"],"Invalid JSON file":["Invalid JSON file"],"Import from JSON":["Import from JSON"],"File":["File"]}},"comment":{"reference":"wp-includes\/js\/dist\/list-reusable-blocks.js"}} \ No newline at end of file +{"translation-revision-date":"2025-04-06 12:37:11+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Pattern imported successfully!":["Pattern imported successfully!"],"Invalid pattern JSON file":["Invalid pattern JSON file"],"button label\u0004Import":["Import"],"Unknown error":["Unknown error"],"Invalid JSON file":["Invalid JSON file"],"Import from JSON":["Import from JSON"],"File":["File"]}},"comment":{"reference":"wp-includes\/js\/dist\/list-reusable-blocks.js"}} \ No newline at end of file diff --git a/web/app/languages/en_GB-2a60fb9605efeab98825d6b2f781090a.json b/web/app/languages/en_GB-2a60fb9605efeab98825d6b2f781090a.json deleted file mode 100755 index 654f95a1..00000000 --- a/web/app/languages/en_GB-2a60fb9605efeab98825d6b2f781090a.json +++ /dev/null @@ -1 +0,0 @@ -{"translation-revision-date":"2024-11-14 20:13:08+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"template\u0004%s (Copy)":["%s (Copy)"],"field\u0004Edit %s":["Edit %s"],"Determines the order of pages. Pages with the same order value are sorted alphabetically. Negative order values are supported.":["Determines the order of pages. Pages with the same order value are sorted alphabetically. Negative order values are supported."],"Order updated.":["Order updated."],"Determines the order of pages.":["Determines the order of pages."],"verb\u0004View":["View"],"Select item":["Select item"],"View revisions (%s)":["View revisions (%s)"],"patterns-export":["patterns-export"],"action label\u0004Duplicate pattern":["Duplicate pattern"],"action label\u0004Duplicate":["Duplicate"],"Some errors occurred while permanently deleting the items: %s":["Some errors occurred while permanently deleting the items: %s"],"An error occurred while permanently deleting the items: %s":["An error occurred while permanently deleting the items: %s"],"An error occurred while permanently deleting the items.":["An error occurred while permanently deleting the items."],"An error occurred while permanently deleting the item.":["An error occurred while permanently deleting the item."],"The items were permanently deleted.":["The items were permanently deleted."],"\"%s\" permanently deleted.":["\"%s\" permanently deleted."],"Permanently delete":["Permanently delete"],"Export as JSON":["Export as JSON"],"An error occurred while duplicating the page.":["An error occurred while duplicating the page."],"An error occurred while updating the order":["An error occurred while updating the order"],"No title":["No title"],"\"%s\" successfully created.":["\"%s\" successfully created."],"Order":["Order"],"Close":["Close"],"Cancel":["Cancel"],"Save":["Save"],"Title":["Title"]}},"comment":{"reference":"wp-includes\/js\/dist\/fields.js"}} \ No newline at end of file diff --git a/web/app/languages/en_GB-2b390f85a3048c5b4255fb45960b6514.json b/web/app/languages/en_GB-2b390f85a3048c5b4255fb45960b6514.json old mode 100755 new mode 100644 index 9445cfb8..3574373e --- a/web/app/languages/en_GB-2b390f85a3048c5b4255fb45960b6514.json +++ b/web/app/languages/en_GB-2b390f85a3048c5b4255fb45960b6514.json @@ -1 +1 @@ -{"translation-revision-date":"2024-11-14 20:17:10+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Dependencies check failed: %s":["Dependencies check failed: %s"],"plugin\/plugins\u0004%s item":["%s item","%s items"],"plugin\u0004%s activation failed":["%s activation failed"],"Activation failed.":["Activation failed."],"Activation completed successfully.":["Activation completed successfully."],"plugin\u0004Activated!":["Activated!"],"plugin\u0004Activating %s":["Activating %s"],"Activating...":["Activating..."],"Activating... please wait.":["Activating... please wait."],"Activation failed: %s":["Activation failed: %s"],"plugin\u0004Cannot activate %1$s. %2$s":["Cannot activate %1$s. %2$s"],"Plugin dependencies check completed successfully.":["Plugin dependencies check completed successfully."],"Checking plugin dependencies... please wait.":["Checking plugin dependencies... please wait."],"plugin\u0004Activate":["Activate"],"plugin\u0004Network Activate":["Network activate"],"plugin\u0004Install Now":["Install now"],"Search Results":["Search Results"],"Search results for: %s":["Search results for: %s"],"The request could not be completed.":["The request could not be completed."],"Disabling...":["Disabling..."],"Enabling...":["Enabling..."],"Number of plugins found: %d":["Number of plugins found: %d"],"Caution: These themes may be active on other sites in the network. Are you sure you want to proceed?":["Caution: these themes may be active on other sites in the network. Are you sure you want to proceed?"],"Are you sure you want to delete the selected plugins and their data?":["Are you sure you want to delete the selected plugins and their data?"],"Are you sure you want to delete %s and its data?":["Are you sure you want to delete %s and its data?"],"Update canceled.":["Update cancelled."],"plugin\u0004Update %s now":["Update %s now"],"Updates may not complete if you navigate away from this page.":["Updates may not complete if you navigate away from this page."],"Connection lost or the server is busy. Please try again later.":["Connection lost or the server is busy. Please try again later."],"Deletion failed: %s":["Deletion failed: %s"],"theme\u0004Deleted!":["Deleted!"],"theme\u0004%s installation failed":["%s installation failed"],"theme\u0004Network Activate %s":["Network Activate %s"],"theme\u0004%s installed!":["%s installed!"],"theme\u0004Installing %s...":["Installing %s..."],"theme\u0004Updated!":["Updated!"],"Updating... please wait.":["Updating... please wait."],"plugin\u0004Deleted!":["Deleted!"],"Deleting...":["Deleting..."],"plugin\u0004Install %s now":["Install %s now"],"Importer installed successfully. Run importer<\/a>":["Importer installed successfully. Run importer<\/a>"],"plugin\u0004%s installation failed":["%s installation failed"],"Installation failed: %s":["Installation failed: %s"],"Installation completed successfully.":["Installation completed successfully."],"plugin\u0004Installed!":["Installed!"],"plugin\u0004%s installed!":["%s installed!"],"Installing... please wait.":["Installing... please wait."],"plugin\u0004Installing %s...":["Installing %s..."],"Installing...":["Installing..."],"plugin\u0004%s update failed.":["%s update failed."],"Update failed: %s":["Update failed: %s"],"Update completed successfully.":["Update completed successfully."],"plugin\u0004Updated!":["Updated!"],"plugin\u0004%s updated!":["%s updated!"],"Updating...":["Updating..."],"plugin\u0004Updating %s...":["Updating %s..."],"No plugins found. Try a different search.":["No plugins found. Try a different search."],"Enable auto-updates":["Enable auto-updates"],"Disable auto-updates":["Disable auto-updates"],"No plugins are currently available.":["No plugins are currently available."],"Auto-updates disabled":["Auto-updates disabled"],"Auto-updates enabled":["Auto-updates enabled"],"theme\u0004Activate":["Activate"],"plugin\u0004Network Activate %s":["Network Activate %s"],"plugin\u0004Activate %s":["Activate %s"],"Run Importer":["Run Importer"],"Run %s":["Run %s"],"%s update failed.":["%s update failed."],"%s theme successfully updated.":["%s theme successfully updated."],"%s plugin successfully updated.":["%s plugin successfully updated."],"plugin\u0004Active":["Active"],"Update failed.":["Update failed."],"theme\u0004Installed!":["Installed!"],"Are you sure you want to delete %s?":["Are you sure you want to delete %s?"],"Network Enable":["Network Enable"],"Update Now":["Update Now"],"Installation failed.":["Installation failed."],"You do not appear to have any plugins available at this time.":["You do not appear to have any plugins available at this time."],"%s update available":["%s update available","%s updates available"],"Something went wrong.":["Something went wrong."],"theme\u0004Activate %s":["Activate %s"],"Live Preview":["Live Preview"],"An error has occurred. Please reload the page and try again.":["An error has occurred. Please reload the page and try again."]}},"comment":{"reference":"wp-admin\/js\/updates.js"}} \ No newline at end of file +{"translation-revision-date":"2025-05-25 12:26:44+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 occurred during the update process. Please try again.":["An error occurred during the update process. Please try again."],"Dependencies check failed: %s":["Dependencies check failed: %s"],"plugin\/plugins\u0004%s item":["%s item","%s items"],"plugin\u0004%s activation failed":["%s activation failed"],"Activation failed.":["Activation failed."],"Activation completed successfully.":["Activation completed successfully."],"plugin\u0004Activated!":["Activated!"],"plugin\u0004Activating %s":["Activating %s"],"Activating...":["Activating..."],"Activating... please wait.":["Activating... please wait."],"Activation failed: %s":["Activation failed: %s"],"plugin\u0004Cannot activate %1$s. %2$s":["Cannot activate %1$s. %2$s"],"Plugin dependencies check completed successfully.":["Plugin dependencies check completed successfully."],"Checking plugin dependencies... please wait.":["Checking plugin dependencies... please wait."],"plugin\u0004Activate":["Activate"],"plugin\u0004Network Activate":["Network activate"],"plugin\u0004Install Now":["Install now"],"Search Results":["Search Results"],"Search results for: %s":["Search results for: %s"],"The request could not be completed.":["The request could not be completed."],"Disabling...":["Disabling..."],"Enabling...":["Enabling..."],"Number of plugins found: %d":["Number of plugins found: %d"],"Caution: These themes may be active on other sites in the network. Are you sure you want to proceed?":["Caution: these themes may be active on other sites in the network. Are you sure you want to proceed?"],"Are you sure you want to delete the selected plugins and their data?":["Are you sure you want to delete the selected plugins and their data?"],"Are you sure you want to delete %s and its data?":["Are you sure you want to delete %s and its data?"],"Update canceled.":["Update cancelled."],"plugin\u0004Update %s now":["Update %s now"],"Updates may not complete if you navigate away from this page.":["Updates may not complete if you navigate away from this page."],"Connection lost or the server is busy. Please try again later.":["Connection lost or the server is busy. Please try again later."],"Deletion failed: %s":["Deletion failed: %s"],"theme\u0004Deleted!":["Deleted!"],"theme\u0004%s installation failed":["%s installation failed"],"theme\u0004Network Activate %s":["Network Activate %s"],"theme\u0004%s installed!":["%s installed!"],"theme\u0004Installing %s...":["Installing %s..."],"theme\u0004Updated!":["Updated!"],"Updating... please wait.":["Updating... please wait."],"plugin\u0004Deleted!":["Deleted!"],"Deleting...":["Deleting..."],"plugin\u0004Install %s now":["Install %s now"],"Importer installed successfully. Run importer<\/a>":["Importer installed successfully. Run importer<\/a>"],"plugin\u0004%s installation failed":["%s installation failed"],"Installation failed: %s":["Installation failed: %s"],"Installation completed successfully.":["Installation completed successfully."],"plugin\u0004Installed!":["Installed!"],"plugin\u0004%s installed!":["%s installed!"],"Installing... please wait.":["Installing... please wait."],"plugin\u0004Installing %s...":["Installing %s..."],"Installing...":["Installing..."],"plugin\u0004%s update failed.":["%s update failed."],"Update failed: %s":["Update failed: %s"],"Update completed successfully.":["Update completed successfully."],"plugin\u0004Updated!":["Updated!"],"plugin\u0004%s updated!":["%s updated!"],"Updating...":["Updating..."],"plugin\u0004Updating %s...":["Updating %s..."],"No plugins found. Try a different search.":["No plugins found. Try a different search."],"Enable auto-updates":["Enable auto-updates"],"Disable auto-updates":["Disable auto-updates"],"No plugins are currently available.":["No plugins are currently available."],"Auto-updates disabled":["Auto-updates disabled"],"Auto-updates enabled":["Auto-updates enabled"],"theme\u0004Activate":["Activate"],"plugin\u0004Network Activate %s":["Network Activate %s"],"plugin\u0004Activate %s":["Activate %s"],"Run Importer":["Run Importer"],"Run %s":["Run %s"],"%s update failed.":["%s update failed."],"%s theme successfully updated.":["%s theme successfully updated."],"%s plugin successfully updated.":["%s plugin successfully updated."],"plugin\u0004Active":["Active"],"Update failed.":["Update failed."],"theme\u0004Installed!":["Installed!"],"Are you sure you want to delete %s?":["Are you sure you want to delete %s?"],"Network Enable":["Network Enable"],"Update Now":["Update Now"],"Installation failed.":["Installation failed."],"You do not appear to have any plugins available at this time.":["You do not appear to have any plugins available at this time."],"%s update available":["%s update available","%s updates available"],"theme\u0004Activate %s":["Activate %s"],"Live Preview":["Live Preview"],"An error has occurred. Please reload the page and try again.":["An error has occurred. Please reload the page and try again."]}},"comment":{"reference":"wp-admin\/js\/updates.js"}} \ No newline at end of file diff --git a/web/app/languages/en_GB-2c5d274ea625dd91556554ad82901529.json b/web/app/languages/en_GB-2c5d274ea625dd91556554ad82901529.json old mode 100755 new mode 100644 index eeb5b356..145b3b86 --- a/web/app/languages/en_GB-2c5d274ea625dd91556554ad82901529.json +++ b/web/app/languages/en_GB-2c5d274ea625dd91556554ad82901529.json @@ -1 +1 @@ -{"translation-revision-date":"2024-11-14 20:13:08+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Annotation":["Annotation"]}},"comment":{"reference":"wp-includes\/js\/dist\/annotations.js"}} \ No newline at end of file +{"translation-revision-date":"2025-04-06 12:37:11+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Annotation":["Annotation"]}},"comment":{"reference":"wp-includes\/js\/dist\/annotations.js"}} \ No newline at end of file diff --git a/web/app/languages/en_GB-320f4ad9792aaa6dedb1e71cbdf85d57.json b/web/app/languages/en_GB-320f4ad9792aaa6dedb1e71cbdf85d57.json old mode 100755 new mode 100644 index ebfb1f61..5c26fc8b --- a/web/app/languages/en_GB-320f4ad9792aaa6dedb1e71cbdf85d57.json +++ b/web/app/languages/en_GB-320f4ad9792aaa6dedb1e71cbdf85d57.json @@ -1 +1 @@ -{"translation-revision-date":"2024-11-14 20:13:08+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Notifications":["Notifications"]}},"comment":{"reference":"wp-includes\/js\/dist\/a11y.js"}} \ No newline at end of file +{"translation-revision-date":"2025-04-06 12:37:11+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Notifications":["Notifications"]}},"comment":{"reference":"wp-includes\/js\/dist\/a11y.js"}} \ No newline at end of file diff --git a/web/app/languages/en_GB-440127dd25bde48a531ded36f33e927b.json b/web/app/languages/en_GB-440127dd25bde48a531ded36f33e927b.json old mode 100755 new mode 100644 index 8414651f..438b3d59 --- a/web/app/languages/en_GB-440127dd25bde48a531ded36f33e927b.json +++ b/web/app/languages/en_GB-440127dd25bde48a531ded36f33e927b.json @@ -1 +1 @@ -{"translation-revision-date":"2024-11-14 20:13:08+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Add non breaking space.":["Add non-breaking space."],"https:\/\/wordpress.org\/documentation\/article\/wordpress-block-editor\/":["https:\/\/wordpress.org\/documentation\/article\/wordpress-block-editor\/"],"Convert the current paragraph or heading to a heading of level 1 to 6.":["Convert the current paragraph or heading to a heading of level 1 to 6."],"Convert the current heading to a paragraph.":["Convert the current heading to a paragraph."],"Make the selected text inline code.":["Make the selected text inline code."],"Strikethrough the selected text.":["Strikethrough the selected text."],"Insert a link to a post or page.":["Insert a link to a post or page."],"https:\/\/wordpress.org\/documentation\/article\/block-based-widgets-editor\/":["https:\/\/wordpress.org\/documentation\/article\/block-based-widgets-editor\/"],"New to the block editor?":["New to the block editor?"],"Get the Classic Widgets plugin.":["Get the Classic Widgets plugin."],"https:\/\/wordpress.org\/plugins\/classic-widgets\/":["https:\/\/en-gb.wordpress.org\/plugins\/classic-widgets\/"],"Want to stick with the old widgets?":["Want to stick with the old widgets?"],"You can now add any block to your site\u2019s widget areas. Don\u2019t worry, all of your favorite widgets still work flawlessly.":["You can now add any block to your site\u2019s widget areas. Don\u2019t worry, all of your favourite widgets still work flawlessly."],"Your theme provides different \u201cblock\u201d areas for you to add and edit content.\u00a0Try adding a search bar, social icons, or other types of blocks here and see how they\u2019ll look on your site.":["Your theme provides different \u201cblock\u201d areas for you to add and edit content.\u00a0Try adding a search bar, social icons, or other types of blocks here and see how they\u2019ll look on your site."],"Welcome to block Widgets":["Welcome to block widgets"],"Contain text cursor inside block deactivated":["Contain text cursor inside block deactivated"],"Contain text cursor inside block activated":["Contain text cursor inside block activated"],"Close inserter":["Close inserter"],"Aids screen readers by stopping text caret from leaving blocks.":["Aids screen readers by stopping text caret from leaving blocks."],"Preferences":["Preferences"],"Show more settings":["Show more settings"],"Contain text cursor inside block":["Contain text cursor inside block"],"Here's a detailed guide.":["Here's a detailed guide."],"Welcome Guide":["Welcome Guide"],"Keyboard shortcuts":["Keyboard shortcuts"],"Generic label for block inserter button\u0004Add block":["Add block"],"Display these keyboard shortcuts.":["Display these keyboard shortcuts."],"Add a block":["Add a block"],"Top toolbar deactivated":["Top toolbar deactivated"],"Top toolbar activated":["Top toolbar activated"],"Top toolbar":["Top toolbar"],"Got it":["Got it"],"Block Settings":["Block Settings"],"Remove a link.":["Remove a link."],"Convert the selected text into a link.":["Convert the selected text into a link."],"Underline the selected text.":["Underline the selected text."],"Make the selected text italic.":["Make the selected text italic."],"Make the selected text bold.":["Make the selected text bold."],"Text formatting":["Text formatting"],"Forward-slash":["Forward-slash"],"Change the block type after adding a new paragraph.":["Change the block type after adding a new paragraph."],"Block shortcuts":["Block shortcuts"],"Selection shortcuts":["Selection shortcuts"],"Redo your last undo.":["Redo your last undo."],"Undo your last changes.":["Undo your last changes."],"Save your changes.":["Save your changes."],"Global shortcuts":["Global shortcuts"],"Access all block and document tools in a single place":["Access all block and document tools in a single place"],"noun\u0004View":["View"],"Options":["Options"],"Document tools":["Document tools"],"The editor has encountered an unexpected error.":["The editor has encountered an unexpected error."],"Copy Error":["Copy Error"],"(opens in a new tab)":["(opens in a new tab)"],"Customizing":["Customising"],"Tools":["Tools"],"Widgets":["Widgets"],"Help":["Help"],"Redo":["Redo"],"Undo":["Undo"]}},"comment":{"reference":"wp-includes\/js\/dist\/customize-widgets.js"}} \ No newline at end of file +{"translation-revision-date":"2025-04-06 12:37:11+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Add non breaking space.":["Add non-breaking space."],"https:\/\/wordpress.org\/documentation\/article\/wordpress-block-editor\/":["https:\/\/wordpress.org\/documentation\/article\/wordpress-block-editor\/"],"Convert the current paragraph or heading to a heading of level 1 to 6.":["Convert the current paragraph or heading to a heading of level 1 to 6."],"Convert the current heading to a paragraph.":["Convert the current heading to a paragraph."],"Make the selected text inline code.":["Make the selected text inline code."],"Strikethrough the selected text.":["Strikethrough the selected text."],"Insert a link to a post or page.":["Insert a link to a post or page."],"https:\/\/wordpress.org\/documentation\/article\/block-based-widgets-editor\/":["https:\/\/wordpress.org\/documentation\/article\/block-based-widgets-editor\/"],"New to the block editor?":["New to the block editor?"],"Get the Classic Widgets plugin.":["Get the Classic Widgets plugin."],"https:\/\/wordpress.org\/plugins\/classic-widgets\/":["https:\/\/en-gb.wordpress.org\/plugins\/classic-widgets\/"],"Want to stick with the old widgets?":["Want to stick with the old widgets?"],"You can now add any block to your site\u2019s widget areas. Don\u2019t worry, all of your favorite widgets still work flawlessly.":["You can now add any block to your site\u2019s widget areas. Don\u2019t worry, all of your favourite widgets still work flawlessly."],"Your theme provides different \u201cblock\u201d areas for you to add and edit content.\u00a0Try adding a search bar, social icons, or other types of blocks here and see how they\u2019ll look on your site.":["Your theme provides different \u201cblock\u201d areas for you to add and edit content.\u00a0Try adding a search bar, social icons, or other types of blocks here and see how they\u2019ll look on your site."],"Welcome to block Widgets":["Welcome to block widgets"],"Contain text cursor inside block deactivated":["Contain text cursor inside block deactivated"],"Contain text cursor inside block activated":["Contain text cursor inside block activated"],"Close inserter":["Close inserter"],"Aids screen readers by stopping text caret from leaving blocks.":["Aids screen readers by stopping text caret from leaving blocks."],"Preferences":["Preferences"],"Show more settings":["Show more settings"],"Contain text cursor inside block":["Contain text cursor inside block"],"Here's a detailed guide.":["Here's a detailed guide."],"Welcome Guide":["Welcome Guide"],"Keyboard shortcuts":["Keyboard shortcuts"],"Generic label for block inserter button\u0004Add block":["Add block"],"Display these keyboard shortcuts.":["Display these keyboard shortcuts."],"Add a block":["Add a block"],"Top toolbar deactivated":["Top toolbar deactivated"],"Top toolbar activated":["Top toolbar activated"],"Top toolbar":["Top toolbar"],"Got it":["Got it"],"Block Settings":["Block Settings"],"Remove a link.":["Remove a link."],"Convert the selected text into a link.":["Convert the selected text into a link."],"Underline the selected text.":["Underline the selected text."],"Make the selected text italic.":["Make the selected text italic."],"Make the selected text bold.":["Make the selected text bold."],"Text formatting":["Text formatting"],"Forward-slash":["Forward-slash"],"Change the block type after adding a new paragraph.":["Change the block type after adding a new paragraph."],"Block shortcuts":["Block shortcuts"],"Selection shortcuts":["Selection shortcuts"],"Redo your last undo.":["Redo your last undo."],"Undo your last changes.":["Undo your last changes."],"Save your changes.":["Save your changes."],"Global shortcuts":["Global shortcuts"],"Access all block and document tools in a single place":["Access all block and document tools in a single place"],"noun\u0004View":["View"],"Options":["Options"],"Document tools":["Document tools"],"The editor has encountered an unexpected error.":["The editor has encountered an unexpected error."],"Copy Error":["Copy Error"],"(opens in a new tab)":["(opens in a new tab)"],"Customizing":["Customising"],"Tools":["Tools"],"Widgets":["Widgets"],"Help":["Help"],"Redo":["Redo"],"Undo":["Undo"]}},"comment":{"reference":"wp-includes\/js\/dist\/customize-widgets.js"}} \ No newline at end of file diff --git a/web/app/languages/en_GB-49c6d4acf36cf3aca9f0b2a77617304f.json b/web/app/languages/en_GB-49c6d4acf36cf3aca9f0b2a77617304f.json old mode 100755 new mode 100644 index f845f5d8..569e5138 --- a/web/app/languages/en_GB-49c6d4acf36cf3aca9f0b2a77617304f.json +++ b/web/app/languages/en_GB-49c6d4acf36cf3aca9f0b2a77617304f.json @@ -1 +1 @@ -{"translation-revision-date":"2024-11-14 20:13:08+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Global Styles":["Global Styles"],"Widget types":["Widget types"],"Menu Item":["Menu Item"],"Comment":["Comment"],"Widget areas":["Widget areas"],"Site":["Site"],"Post Type":["Post Type"],"Taxonomy":["Taxonomy"],"Menu Location":["Menu Location","Menu Locations"],"Status":["Status"],"Menu":["Menu"],"User":["User"],"Base":["Base"],"Widgets":["Widgets"],"Themes":["Themes"],"(no title)":["(no title)"],"Media":["Media"],"Plugins":["Plugins"]}},"comment":{"reference":"wp-includes\/js\/dist\/core-data.js"}} \ No newline at end of file +{"translation-revision-date":"2025-04-06 12:37:11+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Global Styles":["Global Styles"],"Widget types":["Widget types"],"Menu Item":["Menu Item"],"Comment":["Comment"],"Widget areas":["Widget areas"],"Site":["Site"],"Post Type":["Post Type"],"Taxonomy":["Taxonomy"],"Menu Location":["Menu Location","Menu Locations"],"Status":["Status"],"Menu":["Menu"],"User":["User"],"Base":["Base"],"Widgets":["Widgets"],"Themes":["Themes"],"(no title)":["(no title)"],"Media":["Media"],"Plugins":["Plugins"]}},"comment":{"reference":"wp-includes\/js\/dist\/core-data.js"}} \ No newline at end of file diff --git a/web/app/languages/en_GB-4a38fe1c0c45989e44682ba6109d9f46.json b/web/app/languages/en_GB-4a38fe1c0c45989e44682ba6109d9f46.json old mode 100755 new mode 100644 index 232d05b3..2eb5e0ad --- a/web/app/languages/en_GB-4a38fe1c0c45989e44682ba6109d9f46.json +++ b/web/app/languages/en_GB-4a38fe1c0c45989e44682ba6109d9f46.json @@ -1 +1 @@ -{"translation-revision-date":"2024-11-14 20:17:10+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Running additional tests... please wait.":["Running additional tests... please wait."],"All site health tests have finished running. There are items that should be addressed.":["All site health tests have finished running. There are items that should be addressed."],"All site health tests have finished running. Your site is looking good.":["All site health tests have finished running. Your site is looking good."],"Unavailable":["Unavailable"],"No details available":["No details available"],"A test is unavailable":["A test is unavailable"],"Should be improved":["Should be improved"],"Good":["Good"],"%s critical issue":["%s critical issue","%s critical issues"],"%s item with no issues detected":["%s item with no issues detected","%s items with no issues detected"],"%s recommended improvement":["%s recommended improvement","%s recommended improvements"],"Site information has been copied to your clipboard.":["Site information has been copied to your clipboard."]}},"comment":{"reference":"wp-admin\/js\/site-health.js"}} \ No newline at end of file +{"translation-revision-date":"2025-05-25 12:26:44+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Running additional tests... please wait.":["Running additional tests... please wait."],"All site health tests have finished running. There are items that should be addressed.":["All site health tests have finished running. There are items that should be addressed."],"All site health tests have finished running. Your site is looking good.":["All site health tests have finished running. Your site is looking good."],"Unavailable":["Unavailable"],"No details available":["No details available"],"A test is unavailable":["A test is unavailable"],"Should be improved":["Should be improved"],"Good":["Good"],"%s critical issue":["%s critical issue","%s critical issues"],"%s item with no issues detected":["%s item with no issues detected","%s items with no issues detected"],"%s recommended improvement":["%s recommended improvement","%s recommended improvements"],"Site information has been copied to your clipboard.":["Site information has been copied to your clipboard."]}},"comment":{"reference":"wp-admin\/js\/site-health.js"}} \ No newline at end of file diff --git a/web/app/languages/en_GB-4bfa11da57ff2600004bb500368247f4.json b/web/app/languages/en_GB-4bfa11da57ff2600004bb500368247f4.json old mode 100755 new mode 100644 index a7202f90..f2e866c2 --- a/web/app/languages/en_GB-4bfa11da57ff2600004bb500368247f4.json +++ b/web/app/languages/en_GB-4bfa11da57ff2600004bb500368247f4.json @@ -1 +1 @@ -{"translation-revision-date":"2024-11-14 20:17:10+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Use as featured image":["Use as featured image"],"Saving\u2026":["Saving\u2026"],"Could not set that as the thumbnail image. Try a different attachment.":["Could not set that as the thumbnail image. Try a different attachment."],"Done":["Done"]}},"comment":{"reference":"wp-admin\/js\/set-post-thumbnail.js"}} \ No newline at end of file +{"translation-revision-date":"2025-05-25 12:26:44+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Use as featured image":["Use as featured image"],"Saving\u2026":["Saving\u2026"],"Could not set that as the thumbnail image. Try a different attachment.":["Could not set that as the thumbnail image. Try a different attachment."],"Done":["Done"]}},"comment":{"reference":"wp-admin\/js\/set-post-thumbnail.js"}} \ No newline at end of file diff --git a/web/app/languages/en_GB-50278328b502f4eb3f2b8b7ab49324a1.json b/web/app/languages/en_GB-50278328b502f4eb3f2b8b7ab49324a1.json old mode 100755 new mode 100644 index 569a6028..7bbeab5b --- a/web/app/languages/en_GB-50278328b502f4eb3f2b8b7ab49324a1.json +++ b/web/app/languages/en_GB-50278328b502f4eb3f2b8b7ab49324a1.json @@ -1 +1 @@ -{"translation-revision-date":"2024-11-14 20:17:10+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Drag boxes here":["Drag boxes here"],"Add boxes from the Screen Options menu":["Add boxes from the Screen Options menu"],"The boxes order has been saved.":["The boxes order has been saved."],"The box is on the last position":["The box is on the last position"],"The box is on the first position":["The box is on the first position"]}},"comment":{"reference":"wp-admin\/js\/postbox.js"}} \ No newline at end of file +{"translation-revision-date":"2025-05-25 12:26:44+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Screen Options updated.":["Screen Options updated."],"Drag boxes here":["Drag boxes here"],"Add boxes from the Screen Options menu":["Add boxes from the Screen Options menu"],"The boxes order has been saved.":["The boxes order has been saved."],"The box is on the last position":["The box is on the last position"],"The box is on the first position":["The box is on the first position"]}},"comment":{"reference":"wp-admin\/js\/postbox.js"}} \ No newline at end of file diff --git a/web/app/languages/en_GB-5251f7623766a714c8207c7edb938628.json b/web/app/languages/en_GB-5251f7623766a714c8207c7edb938628.json old mode 100755 new mode 100644 index 1c4ad13c..3a1e4b84 --- a/web/app/languages/en_GB-5251f7623766a714c8207c7edb938628.json +++ b/web/app/languages/en_GB-5251f7623766a714c8207c7edb938628.json @@ -1 +1 @@ -{"translation-revision-date":"2024-11-14 20:17:10+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Widget has been added to the selected sidebar":["Widget has been added to the selected sidebar"],"Saved":["Saved"],"The changes you made will be lost if you navigate away from this page.":["The changes you made will be lost if you navigate away from this page."],"Save":["Save"]}},"comment":{"reference":"wp-admin\/js\/widgets.js"}} \ No newline at end of file +{"translation-revision-date":"2025-05-25 12:26:44+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Widget has been added to the selected sidebar":["Widget has been added to the selected sidebar"],"Saved":["Saved"],"The changes you made will be lost if you navigate away from this page.":["The changes you made will be lost if you navigate away from this page."],"Save":["Save"]}},"comment":{"reference":"wp-admin\/js\/widgets.js"}} \ No newline at end of file diff --git a/web/app/languages/en_GB-529362903a5a05b34b06b5e793fb4cf8.json b/web/app/languages/en_GB-529362903a5a05b34b06b5e793fb4cf8.json old mode 100755 new mode 100644 index c3c31d7e..8f99232a --- a/web/app/languages/en_GB-529362903a5a05b34b06b5e793fb4cf8.json +++ b/web/app/languages/en_GB-529362903a5a05b34b06b5e793fb4cf8.json @@ -1 +1 @@ -{"translation-revision-date":"2024-11-14 20:17:10+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"All application passwords revoked.":["All application passwords revoked."],"Are you sure you want to revoke all passwords? This action cannot be undone.":["Are you sure you want to revoke all passwords? This action cannot be undone."],"Application password revoked.":["Application password revoked."],"Are you sure you want to revoke this password? This action cannot be undone.":["Are you sure you want to revoke this password? This action cannot be undone."],"Dismiss this notice.":["Dismiss this notice."]}},"comment":{"reference":"wp-admin\/js\/application-passwords.js"}} \ No newline at end of file +{"translation-revision-date":"2025-05-25 12:26:44+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"All application passwords revoked.":["All application passwords revoked."],"Are you sure you want to revoke all passwords? This action cannot be undone.":["Are you sure you want to revoke all passwords? This action cannot be undone."],"Application password revoked.":["Application password revoked."],"Are you sure you want to revoke this password? This action cannot be undone.":["Are you sure you want to revoke this password? This action cannot be undone."],"Dismiss this notice.":["Dismiss this notice."]}},"comment":{"reference":"wp-admin\/js\/application-passwords.js"}} \ No newline at end of file diff --git a/web/app/languages/en_GB-569e85ef168299eb8c8f24d8ef8c8a78.json b/web/app/languages/en_GB-569e85ef168299eb8c8f24d8ef8c8a78.json old mode 100755 new mode 100644 index 98611d39..6bda63bb --- a/web/app/languages/en_GB-569e85ef168299eb8c8f24d8ef8c8a78.json +++ b/web/app/languages/en_GB-569e85ef168299eb8c8f24d8ef8c8a78.json @@ -1 +1 @@ -{"translation-revision-date":"2024-11-14 20:17:10+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"URL Slug":["URL Slug"],"Permalink saved":["Permalink saved"],"Published on:":["Published on:"],"Publish on:":["Publish on:"],"Schedule for:":["Schedule for:"],"Saving Draft\u2026":["Saving Draft\u2026"],"No more comments found.":["No more comments found."],"Show more comments":["Show more comments"],"post action\/button label\u0004Schedule":["Schedule"],"%1$s %2$s, %3$s at %4$s:%5$s":["%1$s %2$s, %3$s at %4$s:%5$s"],"Public, Sticky":["Public, Sticky"],"Privately Published":["Privately Published"],"Save as Pending":["Save as Pending"],"Password Protected":["Password Protected"],"The file URL has been copied to your clipboard":["The file URL has been copied to your clipboard"],"Could not set that as the thumbnail image. Try a different attachment.":["Could not set that as the thumbnail image. Try a different attachment."],"The changes you made will be lost if you navigate away from this page.":["The changes you made will be lost if you navigate away from this page."],"Update":["Update"],"Public":["Public"],"Private":["Private"],"OK":["OK"],"Save Draft":["Save Draft"],"Cancel":["Cancel"],"Publish":["Publish"],"Published":["Published"]}},"comment":{"reference":"wp-admin\/js\/post.js"}} \ No newline at end of file +{"translation-revision-date":"2025-05-25 12:26:44+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"URL Slug":["URL Slug"],"Permalink saved":["Permalink saved"],"Published on:":["Published on:"],"Publish on:":["Publish on:"],"Schedule for:":["Schedule for:"],"Saving Draft\u2026":["Saving Draft\u2026"],"No more comments found.":["No more comments found."],"Show more comments":["Show more comments"],"post action\/button label\u0004Schedule":["Schedule"],"%1$s %2$s, %3$s at %4$s:%5$s":["%1$s %2$s, %3$s at %4$s:%5$s"],"Public, Sticky":["Public, Sticky"],"Privately Published":["Privately Published"],"Save as Pending":["Save as Pending"],"Password Protected":["Password Protected"],"The file URL has been copied to your clipboard":["The file URL has been copied to your clipboard"],"Could not set that as the thumbnail image. Try a different attachment.":["Could not set that as the thumbnail image. Try a different attachment."],"The changes you made will be lost if you navigate away from this page.":["The changes you made will be lost if you navigate away from this page."],"Update":["Update"],"Public":["Public"],"Private":["Private"],"OK":["OK"],"Save Draft":["Save Draft"],"Cancel":["Cancel"],"Publish":["Publish"],"Published":["Published"]}},"comment":{"reference":"wp-admin\/js\/post.js"}} \ No newline at end of file diff --git a/web/app/languages/en_GB-6025add6bde16aaeb12787d250f9b414.json b/web/app/languages/en_GB-6025add6bde16aaeb12787d250f9b414.json old mode 100755 new mode 100644 index bb8d3384..9f78ad1c --- a/web/app/languages/en_GB-6025add6bde16aaeb12787d250f9b414.json +++ b/web/app/languages/en_GB-6025add6bde16aaeb12787d250f9b414.json @@ -1 +1 @@ -{"translation-revision-date":"2024-11-14 20:17:10+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 you want to do this?\nThe comment changes you made will be lost.":["Are you sure you want to do this?\nThe comment changes you made will be lost."],"Are you sure you want to edit this comment?\nThe changes you made will be lost.":["Are you sure you want to edit this comment?\nThe changes you made will be lost."],"Approve and Reply":["Approve and Reply"],"Comments (%s)":["Comments (%s)"],"Reply":["Reply"],"Comments":["Comments"]}},"comment":{"reference":"wp-admin\/js\/edit-comments.js"}} \ No newline at end of file +{"translation-revision-date":"2025-05-25 12:26:44+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 you want to do this?\nThe comment changes you made will be lost.":["Are you sure you want to do this?\nThe comment changes you made will be lost."],"Are you sure you want to edit this comment?\nThe changes you made will be lost.":["Are you sure you want to edit this comment?\nThe changes you made will be lost."],"Approve and Reply":["Approve and Reply"],"Comments (%s)":["Comments (%s)"],"Reply":["Reply"],"Comments":["Comments"]}},"comment":{"reference":"wp-admin\/js\/edit-comments.js"}} \ No newline at end of file diff --git a/web/app/languages/en_GB-60d06fac6f98e8e8f0ec5a945738b660.json b/web/app/languages/en_GB-60d06fac6f98e8e8f0ec5a945738b660.json old mode 100755 new mode 100644 index 0f9d8197..861e0bf2 --- a/web/app/languages/en_GB-60d06fac6f98e8e8f0ec5a945738b660.json +++ b/web/app/languages/en_GB-60d06fac6f98e8e8f0ec5a945738b660.json @@ -1 +1 @@ -{"translation-revision-date":"2024-11-14 20:13:08+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Preference activated - %s":["Preference activated \u2013 %s"],"Preference deactivated - %s":["Preference deactivated \u2013 %s"],"Preferences":["Preferences"],"Back":["Back"]}},"comment":{"reference":"wp-includes\/js\/dist\/preferences.js"}} \ No newline at end of file +{"translation-revision-date":"2025-04-06 12:37:11+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Preference activated - %s":["Preference activated \u2013 %s"],"Preference deactivated - %s":["Preference deactivated \u2013 %s"],"Preferences":["Preferences"],"Back":["Back"]}},"comment":{"reference":"wp-includes\/js\/dist\/preferences.js"}} \ No newline at end of file diff --git a/web/app/languages/en_GB-68f2cec7514bf8563c723a4d675fcfe6.json b/web/app/languages/en_GB-68f2cec7514bf8563c723a4d675fcfe6.json old mode 100755 new mode 100644 index c99f0ae9..707cbf34 --- a/web/app/languages/en_GB-68f2cec7514bf8563c723a4d675fcfe6.json +++ b/web/app/languages/en_GB-68f2cec7514bf8563c723a4d675fcfe6.json @@ -1 +1 @@ -{"translation-revision-date":"2024-11-14 20:13:08+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Non breaking space":["Non-breaking space"],"https:\/\/www.w3.org\/WAI\/tutorials\/images\/decision-tree\/":["https:\/\/www.w3.org\/WAI\/tutorials\/images\/decision-tree\/"],"Mark as nofollow":["Mark as nofollow"],"Text direction":["Text direction"],"A valid language attribute, like \"en\" or \"fr\".":["A valid language attribute, like \"en\" or \"fr\"."],"Leave empty if decorative.":["Leave empty if decorative."],"Clear Unknown Formatting":["Clear Unknown Formatting"],"Create page: %s<\/mark>":["Create page: %s<\/mark>"],"Highlight":["Highlight"],"Keyboard input":["Keyboard input"],"Inline code":["Inline code"],"Describe the purpose of the image.":["Describe the purpose of the image."],"Link edited.":["Link edited."],"Link removed.":["Link removed."],"Inline image":["Inline image"],"media":["media"],"photo":["photo"],"Warning: the link has been inserted but may have errors. Please test it.":["Warning: the link has been inserted but may have errors. Please test it."],"Link inserted.":["Link inserted."],"Left to right":["Left to right"],"Right to left":["Right to left"],"Link":["Link"],"Background":["Background"],"Superscript":["Superscript"],"Subscript":["Subscript"],"Strikethrough":["Strikethrough"],"Underline":["Underline"],"Italic":["Italic"],"Bold":["Bold"],"Language":["Language"],"Text":["Text"],"Width":["Width"],"Alternative text":["Alternative text"],"Apply":["Apply"]}},"comment":{"reference":"wp-includes\/js\/dist\/format-library.js"}} \ No newline at end of file +{"translation-revision-date":"2025-04-06 12:37:11+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Non breaking space":["Non-breaking space"],"https:\/\/www.w3.org\/WAI\/tutorials\/images\/decision-tree\/":["https:\/\/www.w3.org\/WAI\/tutorials\/images\/decision-tree\/"],"Mark as nofollow":["Mark as nofollow"],"Text direction":["Text direction"],"A valid language attribute, like \"en\" or \"fr\".":["A valid language attribute, like \"en\" or \"fr\"."],"Leave empty if decorative.":["Leave empty if decorative."],"Clear Unknown Formatting":["Clear Unknown Formatting"],"Create page: %s<\/mark>":["Create page: %s<\/mark>"],"Highlight":["Highlight"],"Keyboard input":["Keyboard input"],"Inline code":["Inline code"],"Describe the purpose of the image.":["Describe the purpose of the image."],"Link edited.":["Link edited."],"Link removed.":["Link removed."],"Inline image":["Inline image"],"media":["media"],"photo":["photo"],"Warning: the link has been inserted but may have errors. Please test it.":["Warning: the link has been inserted but may have errors. Please test it."],"Link inserted.":["Link inserted."],"Left to right":["Left to right"],"Right to left":["Right to left"],"Link":["Link"],"Background":["Background"],"Superscript":["Superscript"],"Subscript":["Subscript"],"Strikethrough":["Strikethrough"],"Underline":["Underline"],"Italic":["Italic"],"Bold":["Bold"],"Language":["Language"],"Text":["Text"],"Width":["Width"],"Alternative text":["Alternative text"],"Apply":["Apply"]}},"comment":{"reference":"wp-includes\/js\/dist\/format-library.js"}} \ No newline at end of file diff --git a/web/app/languages/en_GB-7233008897033de5ee0d14f86a42a65a.json b/web/app/languages/en_GB-7233008897033de5ee0d14f86a42a65a.json old mode 100755 new mode 100644 index 4c7964d9..6fd35d98 --- a/web/app/languages/en_GB-7233008897033de5ee0d14f86a42a65a.json +++ b/web/app/languages/en_GB-7233008897033de5ee0d14f86a42a65a.json @@ -1 +1 @@ -{"translation-revision-date":"2024-11-14 20:13:08+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Legacy widget":["Legacy widget"],"Create a classic widget layout with a title that\u2019s styled by your theme for your widget areas.":["Create a classic widget layout with a title that\u2019s styled by your theme for your widget areas."],"Widget Group":["Widget group"],"The \"%s\" block was affected by errors and may not function properly. Check the developer tools for more details.":["The \"%s\" block was affected by errors and may not function properly. Check the developer tools for more details."],"Move to widget area":["Move to widget area"],"Widget is missing.":["Widget is missing."],"No preview available.":["No preview available."],"Legacy Widget Preview":["Legacy Widget Preview"],"Select widget":["Select widget"],"Convert to blocks":["Convert to blocks"],"Move to":["Move to"],"Legacy Widget":["Legacy Widget"],"There are no widgets available.":["There are no widgets available."],"Save":["Save"],"Title":["Title"]}},"comment":{"reference":"wp-includes\/js\/dist\/widgets.js"}} \ No newline at end of file +{"translation-revision-date":"2025-04-06 12:37:11+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Legacy widget":["Legacy widget"],"Create a classic widget layout with a title that\u2019s styled by your theme for your widget areas.":["Create a classic widget layout with a title that\u2019s styled by your theme for your widget areas."],"Widget Group":["Widget group"],"The \"%s\" block was affected by errors and may not function properly. Check the developer tools for more details.":["The \"%s\" block was affected by errors and may not function properly. Check the developer tools for more details."],"Move to widget area":["Move to widget area"],"Widget is missing.":["Widget is missing."],"No preview available.":["No preview available."],"Legacy Widget Preview":["Legacy Widget Preview"],"Select widget":["Select widget"],"Convert to blocks":["Convert to blocks"],"Move to":["Move to"],"Legacy Widget":["Legacy Widget"],"There are no widgets available.":["There are no widgets available."],"Save":["Save"],"Title":["Title"]}},"comment":{"reference":"wp-includes\/js\/dist\/widgets.js"}} \ No newline at end of file diff --git a/web/app/languages/en_GB-7289286ed59e90a8f36ae797df62220b.json b/web/app/languages/en_GB-7289286ed59e90a8f36ae797df62220b.json old mode 100755 new mode 100644 index 3820071e..a1453212 --- a/web/app/languages/en_GB-7289286ed59e90a8f36ae797df62220b.json +++ b/web/app/languages/en_GB-7289286ed59e90a8f36ae797df62220b.json @@ -1 +1 @@ -{"translation-revision-date":"2024-11-14 20:13:08+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"The file URL has been copied to your clipboard":["The file URL has been copied to your clipboard"],"An error has occurred. Please reload the page and try again.":["An error has occurred. Please reload the page and try again."]}},"comment":{"reference":"wp-admin\/js\/media.js"}} \ No newline at end of file +{"translation-revision-date":"2025-04-06 12:37:11+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"The file URL has been copied to your clipboard":["The file URL has been copied to your clipboard"],"An error has occurred. Please reload the page and try again.":["An error has occurred. Please reload the page and try again."]}},"comment":{"reference":"wp-admin\/js\/media.js"}} \ No newline at end of file diff --git a/web/app/languages/en_GB-7436b7ee9e4f11ac0d618d8cc886eb66.json b/web/app/languages/en_GB-7436b7ee9e4f11ac0d618d8cc886eb66.json old mode 100755 new mode 100644 index 8d4ae30f..2b6a1880 --- a/web/app/languages/en_GB-7436b7ee9e4f11ac0d618d8cc886eb66.json +++ b/web/app/languages/en_GB-7436b7ee9e4f11ac0d618d8cc886eb66.json @@ -1 +1 @@ -{"translation-revision-date":"2024-11-14 20:17:10+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Plugin details":["Plugin details"],"Plugin: %s":["Plugin: %s"]}},"comment":{"reference":"wp-admin\/js\/plugin-install.js"}} \ No newline at end of file +{"translation-revision-date":"2025-05-25 12:26:44+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Plugin details":["Plugin details"],"Plugin: %s":["Plugin: %s"]}},"comment":{"reference":"wp-admin\/js\/plugin-install.js"}} \ No newline at end of file diff --git a/web/app/languages/en_GB-77fdfadaf2e1ca3a027d1956b910bc50.json b/web/app/languages/en_GB-77fdfadaf2e1ca3a027d1956b910bc50.json old mode 100755 new mode 100644 index 1b7dddf0..59b364dd --- a/web/app/languages/en_GB-77fdfadaf2e1ca3a027d1956b910bc50.json +++ b/web/app/languages/en_GB-77fdfadaf2e1ca3a027d1956b910bc50.json @@ -1 +1 @@ -{"translation-revision-date":"2024-11-14 20:17:10+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"%1$s is deprecated since version %2$s with no alternative available.":["%1$s is deprecated since version %2$s with no alternative available."],"%1$s is deprecated since version %2$s! Use %3$s instead.":["%1$s is deprecated since version %2$s! Use %3$s instead."],"Please select at least one item to perform this action on.":["Please select at least one item to perform this action on."],"Expand Main menu":["Expand Main menu"],"Dismiss this notice.":["Dismiss this notice."],"You are about to permanently delete these items from your site.\nThis action cannot be undone.\n'Cancel' to stop, 'OK' to delete.":["You are about to permanently delete these items from your site.\nThis action cannot be undone.\n'Cancel' to stop, 'OK' to delete."],"Collapse Main menu":["Collapse Main menu"]}},"comment":{"reference":"wp-admin\/js\/common.js"}} \ No newline at end of file +{"translation-revision-date":"2025-05-25 12:26:44+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Screen Options updated.":["Screen Options updated."],"%1$s is deprecated since version %2$s with no alternative available.":["%1$s is deprecated since version %2$s with no alternative available."],"%1$s is deprecated since version %2$s! Use %3$s instead.":["%1$s is deprecated since version %2$s! Use %3$s instead."],"Please select at least one item to perform this action on.":["Please select at least one item to perform this action on."],"Expand Main menu":["Expand Main menu"],"Dismiss this notice.":["Dismiss this notice."],"You are about to permanently delete these items from your site.\nThis action cannot be undone.\n'Cancel' to stop, 'OK' to delete.":["You are about to permanently delete these items from your site.\nThis action cannot be undone.\n'Cancel' to stop, 'OK' to delete."],"Collapse Main menu":["Collapse Main menu"]}},"comment":{"reference":"wp-admin\/js\/common.js"}} \ No newline at end of file diff --git a/web/app/languages/en_GB-7b74c8457eaa7fcc50db41b431f8a003.json b/web/app/languages/en_GB-7b74c8457eaa7fcc50db41b431f8a003.json old mode 100755 new mode 100644 index bebb2edb..6c771346 --- a/web/app/languages/en_GB-7b74c8457eaa7fcc50db41b431f8a003.json +++ b/web/app/languages/en_GB-7b74c8457eaa7fcc50db41b431f8a003.json @@ -1 +1 @@ -{"translation-revision-date":"2024-11-14 20:13:08+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.":["Something went wrong."],"Sorry, you are not allowed to do that.":["Sorry, you are not allowed to do that."]}},"comment":{"reference":"wp-admin\/js\/tags.js"}} \ No newline at end of file +{"translation-revision-date":"2025-04-06 12:37:11+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 occurred while processing your request. Please try again later.":["An error occurred while processing your request. Please try again later."],"Sorry, you are not allowed to do that.":["Sorry, you are not allowed to do that."]}},"comment":{"reference":"wp-admin\/js\/tags.js"}} \ No newline at end of file diff --git a/web/app/languages/en_GB-7c90cd4398ee2d9d3628c387a87a70e5.json b/web/app/languages/en_GB-7c90cd4398ee2d9d3628c387a87a70e5.json old mode 100755 new mode 100644 index 8f1f63b8..1fce0e01 --- a/web/app/languages/en_GB-7c90cd4398ee2d9d3628c387a87a70e5.json +++ b/web/app/languages/en_GB-7c90cd4398ee2d9d3628c387a87a70e5.json @@ -1 +1 @@ -{"translation-revision-date":"2024-11-14 20:17:10+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Hide":["Hide"],"Hide password":["Hide password"],"Show password":["Show password"],"Show":["Show"]}},"comment":{"reference":"wp-admin\/js\/password-toggle.js"}} \ No newline at end of file +{"translation-revision-date":"2025-05-25 12:26:44+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Hide":["Hide"],"Hide password":["Hide password"],"Show password":["Show password"],"Show":["Show"]}},"comment":{"reference":"wp-admin\/js\/password-toggle.js"}} \ No newline at end of file diff --git a/web/app/languages/en_GB-7d5ca435e60d92f024d46c9257aaa0f7.json b/web/app/languages/en_GB-7d5ca435e60d92f024d46c9257aaa0f7.json old mode 100755 new mode 100644 index 50ede657..f63627ca --- a/web/app/languages/en_GB-7d5ca435e60d92f024d46c9257aaa0f7.json +++ b/web/app/languages/en_GB-7d5ca435e60d92f024d46c9257aaa0f7.json @@ -1 +1 @@ -{"translation-revision-date":"2024-11-14 20:17:10+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"%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."],"Term selected.":["Term selected."],"tag delimiter\u0004,":[","],"No results found.":["No results found."]}},"comment":{"reference":"wp-admin\/js\/tags-suggest.js"}} \ No newline at end of file +{"translation-revision-date":"2025-05-25 12:26:44+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"%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."],"Term selected.":["Term selected."],"tag delimiter\u0004,":[","],"No results found.":["No results found."]}},"comment":{"reference":"wp-admin\/js\/tags-suggest.js"}} \ No newline at end of file diff --git a/web/app/languages/en_GB-7f13c36c641b114bf18cd0bcc9ecc7e0.json b/web/app/languages/en_GB-7f13c36c641b114bf18cd0bcc9ecc7e0.json old mode 100755 new mode 100644 index c54dea96..e49c8461 --- a/web/app/languages/en_GB-7f13c36c641b114bf18cd0bcc9ecc7e0.json +++ b/web/app/languages/en_GB-7f13c36c641b114bf18cd0bcc9ecc7e0.json @@ -1 +1 @@ -{"translation-revision-date":"2024-11-14 20:13:08+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"December":["December"],"November":["November"],"October":["October"],"September":["September"],"August":["August"],"July":["July"],"June":["June"],"May":["May"],"April":["April"],"March":["March"],"February":["February"],"January":["January"],"input control\u0004Show %s":["Show %s"],"Border color picker. The currently selected color has a value of \"%s\".":["Border colour picker. The currently selected colour has a value of \"%s\"."],"Border color picker. The currently selected color is called \"%1$s\" and has a value of \"%2$s\".":["Border colour picker. The currently selected colour is called \"%1$s\" and has a value of \"%2$s\"."],"Border color and style picker. The currently selected color has a value of \"%s\".":["Border colour and style picker. The currently selected colour has a value of \"%s\"."],"Border color and style picker. The currently selected color has a value of \"%1$s\". The currently selected style is \"%2$s\".":["Border colour and style picker. The currently selected colour has a value of \"%1$s\". The currently selected style is \"%2$s\"."],"Border color and style picker. The currently selected color is called \"%1$s\" and has a value of \"%2$s\".":["Border colour and style picker. The currently selected colour is called \"%1$s\" and has a value of \"%2$s\"."],"Border color and style picker. The currently selected color is called \"%1$s\" and has a value of \"%2$s\". The currently selected style is \"%3$s\".":["Border colour and style picker. The currently selected colour is called \"%1$s\" and has a value of \"%2$s\". The currently selected style is \"%3$s\"."],"%s items selected":["%s items selected"],"Select AM or PM":["Select AM or PM"],"Select an item":["Select an item"],"Remove color: %s":["Remove colour: %s"],"authors\u0004All":["All"],"categories\u0004All":["All"],"Edit: %s":["Edit: %s"],"Left and right sides":["Left and right sides"],"Top and bottom sides":["Top and bottom sides"],"Right side":["Right side"],"Left side":["Left side"],"Bottom side":["Bottom side"],"Top side":["Top side"],"Large viewport largest dimension (lvmax)":["Large viewport largest dimension (lvmax)"],"Small viewport largest dimension (svmax)":["Small viewport largest dimension (svmax)"],"Dynamic viewport largest dimension (dvmax)":["Dynamic viewport largest dimension (dvmax)"],"Dynamic viewport smallest dimension (dvmin)":["Dynamic viewport smallest dimension (dvmin)"],"Dynamic viewport width or height (dvb)":["Dynamic viewport width or height (dvb)"],"Dynamic viewport width or height (dvi)":["Dynamic viewport width or height (dvi)"],"Dynamic viewport height (dvh)":["Dynamic viewport height (dvh)"],"Dynamic viewport width (dvw)":["Dynamic viewport width (dvw)"],"Large viewport smallest dimension (lvmin)":["Large viewport smallest dimension (lvmin)"],"Large viewport width or height (lvb)":["Large viewport width or height (lvb)"],"Large viewport width or height (lvi)":["Large viewport width or height (lvi)"],"Large viewport height (lvh)":["Large viewport height (lvh)"],"Large viewport width (lvw)":["Large viewport width (lvw)"],"Small viewport smallest dimension (svmin)":["Small viewport smallest dimension (svmin)"],"Small viewport width or height (svb)":["Small viewport width or height (svb)"],"Viewport smallest size in the block direction (svb)":["Viewport smallest size in the block direction (svb)"],"Small viewport width or height (svi)":["Small viewport width or height (svi)"],"Viewport smallest size in the inline direction (svi)":["Viewport smallest size in the inline direction (svi)"],"Small viewport height (svh)":["Small viewport height (svh)"],"Small viewport width (svw)":["Small viewport width (svw)"],"No color selected":["No colour selected"],"Notice":["Notice"],"Error notice":["Error notice"],"Information notice":["Information notice"],"Warning notice":["Warning notice"],"Focal point top position":["Focal point top position"],"Focal point left position":["Focal point left position"],"Scrollable section":["Scrollable section"],"Initial %d result loaded. Type to filter all available results. Use up and down arrow keys to navigate.":["Initial %d result loaded. Type to filter all available results. Use up and down arrow keys to navigate.","Initial %d results loaded. Type to filter all available results. Use up and down arrow keys to navigate."],"Extra Extra Large":["Extra Extra Large"],"Show details":["Show details"],"Decrement":["Decrement"],"Increment":["Increment"],"All options reset":["All options reset"],"All options are currently hidden":["All options are currently hidden"],"%s is now visible":["%s is now visible"],"%s hidden and reset to default":["%s hidden and reset to default"],"%s reset to default":["%s reset to default"],"XXL":["XXL"],"XL":["XL"],"L":["L"],"M":["M"],"S":["S"],"Unset":["Unset"],"%1$s. Selected":["%1$s. selected"],"%1$s. Selected. There is %2$d event":["%1$s. Selected. There is %2$d event","%1$s. Selected. There are %2$d events"],"View next month":["View next month"],"View previous month":["View previous month"],"Border color and style picker":["Border colour and style picker"],"Loading \u2026":["Loading \u2026"],"All sides":["All sides"],"Bottom border":["Bottom border"],"Right border":["Right border"],"Left border":["Left border"],"Top border":["Top border"],"Close border color":["Close border colour"],"Border color picker.":["Border colour picker."],"Border color and style picker.":["Border colour and style picker."],"Custom color picker. The currently selected color is called \"%1$s\" and has a value of \"%2$s\".":["Custom colour picker. The currently selected colour is called \"%1$s\" and has a value of \"%2$s\"."],"Link sides":["Link sides"],"Unlink sides":["Unlink sides"],"Reset all":["Reset all"],"Button label to reveal tool panel options\u0004%s options":["%s options"],"Hide and reset %s":["Hide and reset %s"],"Reset %s":["Reset %s"],"Search %s":["Search %s"],"Set custom size":["Set custom size"],"Use size preset":["Use size preset"],"Currently selected font size: %s":["Currently selected font size: %s"],"Highlights":["Highlights"],"Size of a UI element\u0004Extra Large":["Extra Large"],"Size of a UI element\u0004Large":["Large"],"Size of a UI element\u0004Medium":["Medium"],"Size of a UI element\u0004Small":["Small"],"Size of a UI element\u0004None":["None"],"Currently selected: %s":["Currently selected: %s"],"Reset colors":["Reset colours"],"Reset gradient":["Reset gradient"],"Remove all colors":["Remove all colours"],"Remove all gradients":["Remove all gradients"],"Color options":["Colour options"],"Gradient options":["Gradient options"],"Add color":["Add colour"],"Add gradient":["Add gradient"],"Gradient name":["Gradient name"],"Color %s":["Colour %s"],"Color format":["Colour format"],"Hex color":["Hex colour"],"Invalid item":["Invalid item"],"Shadows":["Shadows"],"Duotone: %s":["Duotone: %s"],"Duotone code: %s":["Duotone code: %s"],"%1$s. There is %2$d event":["%1$s. There is %2$d event","%1$s. There are %2$d events"],"Relative to root font size (rem)\u0004rems":["rems"],"Relative to parent font size (em)\u0004ems":["ems"],"Points (pt)":["Points (pt)"],"Picas (pc)":["Picas (pc)"],"Inches (in)":["Inches (in)"],"Millimeters (mm)":["Millimetres (mm)"],"Centimeters (cm)":["Centimetres (cm)"],"x-height of the font (ex)":["x-height of the font (ex)"],"Width of the zero (0) character (ch)":["Width of the zero (0) character (ch)"],"Viewport largest dimension (vmax)":["Viewport largest dimension (vmax)"],"Viewport smallest dimension (vmin)":["Viewport smallest dimension (vmin)"],"Percent (%)":["Percent (%)"],"Border width":["Border width"],"Dotted":["Dotted"],"Dashed":["Dashed"],"Viewport height (vh)":["Viewport height (vh)"],"Viewport width (vw)":["Viewport width (vw)"],"Relative to root font size (rem)":["Relative to root font size (rem)"],"Relative to parent font size (em)":["Relative to parent font size (em)"],"Pixels (px)":["Pixels (px)"],"Percentage (%)":["Percentage (%)"],"Close search":["Close search"],"Search in %s":["Search in %s"],"Select unit":["Select unit"],"Radial":["Radial"],"Linear":["Linear"],"Media preview":["Media preview"],"Coordinated Universal Time":["Coordinated Universal Time"],"Color name":["Colour name"],"Reset search":["Reset search"],"Box Control":["Box Control"],"Alignment Matrix Control":["Alignment Matrix Control"],"Bottom Center":["Bottom Centre"],"Center Right":["Centre Right"],"Center Left":["Centre Left"],"Top Center":["Top Centre"],"Solid":["Solid"],"Finish":["Finish"],"Page %1$d of %2$d":["Page %1$d of %2$d"],"Guide controls":["Guide controls"],"Gradient: %s":["Gradient: %s"],"Gradient code: %s":["Gradient code: %s"],"Remove Control Point":["Remove Control Point"],"Use your left or right arrow keys or drag and drop with the mouse to change the gradient position. Press the button to change the color or remove the control point.":["Use your left or right arrow keys or drag and drop with the mouse to change the gradient position. Press the button to change the colour or remove the control point."],"Gradient control point at position %1$s%% with color code %2$s.":["Gradient control point at position %1$s%% with colour code %2$s."],"Extra Large":["Extra Large"],"Small":["Small"],"Angle":["Angle"],"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."],"Copied!":["Copied!"],"%d result found.":["%d result found.","%d results found."],"Number of items":["Number of items"],"Category":["Category"],"Z \u2192 A":["Z \t A"],"A \u2192 Z":["A \t Z"],"Oldest to newest":["Oldest to newest"],"Newest to oldest":["Newest to oldest"],"Order by":["Order by"],"Dismiss this notice":["Dismiss this notice"],"%1$s (%2$s of %3$s)":["%1$s (%2$s of %3$s)"],"Remove item":["Remove item"],"Item removed.":["Item removed."],"Item added.":["Item added."],"Add item":["Add item"],"Reset":["Reset"],"(opens in a new tab)":["(opens in a new tab)"],"Minutes":["Minutes"],"Color: %s":["Colour: %s"],"Color code: %s":["Colour code: %s"],"Custom color picker.":["Custom colour picker."],"No results.":["No results."],"%d result found, use up and down arrow keys to navigate.":["%d result found, use up and down arrow keys to navigate.","%d results found, use up and down arrow keys to navigate."],"Time":["Time"],"Day":["Day"],"Month":["Month"],"Date":["Date"],"Hours":["Hours"],"Item selected.":["Item selected."],"Previous":["Previous"],"Border color":["Border colour"],"Year":["Year"],"Custom Size":["Custom Size"],"Back":["Back"],"Style":["Style"],"Large":["Large"],"Drop files to upload":["Drop files to upload"],"Clear":["Clear"],"Mixed":["Mixed"],"Custom":["Custom"],"Next":["Next"],"PM":["PM"],"AM":["AM"],"Bottom Right":["Bottom Right"],"Bottom Left":["Bottom Left"],"Top Right":["Top Right"],"Top Left":["Top Left"],"Type":["Type"],"Top":["Top"],"Copy":["Copy"],"Font size":["Font size"],"Calendar":["Calendar"],"No results found.":["No results found."],"Default":["Default"],"Close":["Close"],"Search":["Search"],"OK":["OK"],"Size":["Size"],"Medium":["Medium"],"Center":["Centre"],"Left":["Left"],"Cancel":["Cancel"],"Done":["Done"],"Categories":["Categories"],"Author":["Author"]}},"comment":{"reference":"wp-includes\/js\/dist\/components.js"}} \ No newline at end of file +{"translation-revision-date":"2025-04-06 12:37:11+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"December":["December"],"November":["November"],"October":["October"],"September":["September"],"August":["August"],"July":["July"],"June":["June"],"May":["May"],"April":["April"],"March":["March"],"February":["February"],"January":["January"],"input control\u0004Show %s":["Show %s"],"Border color picker. The currently selected color has a value of \"%s\".":["Border colour picker. The currently selected colour has a value of \"%s\"."],"Border color picker. The currently selected color is called \"%1$s\" and has a value of \"%2$s\".":["Border colour picker. The currently selected colour is called \"%1$s\" and has a value of \"%2$s\"."],"Border color and style picker. The currently selected color has a value of \"%s\".":["Border colour and style picker. The currently selected colour has a value of \"%s\"."],"Border color and style picker. The currently selected color has a value of \"%1$s\". The currently selected style is \"%2$s\".":["Border colour and style picker. The currently selected colour has a value of \"%1$s\". The currently selected style is \"%2$s\"."],"Border color and style picker. The currently selected color is called \"%1$s\" and has a value of \"%2$s\".":["Border colour and style picker. The currently selected colour is called \"%1$s\" and has a value of \"%2$s\"."],"Border color and style picker. The currently selected color is called \"%1$s\" and has a value of \"%2$s\". The currently selected style is \"%3$s\".":["Border colour and style picker. The currently selected colour is called \"%1$s\" and has a value of \"%2$s\". The currently selected style is \"%3$s\"."],"%s items selected":["%s items selected"],"Select AM or PM":["Select AM or PM"],"Select an item":["Select an item"],"No items found":["No items found"],"Remove color: %s":["Remove colour: %s"],"authors\u0004All":["All"],"categories\u0004All":["All"],"Edit: %s":["Edit: %s"],"Left and right sides":["Left and right sides"],"Top and bottom sides":["Top and bottom sides"],"Right side":["Right side"],"Left side":["Left side"],"Bottom side":["Bottom side"],"Top side":["Top side"],"Large viewport largest dimension (lvmax)":["Large viewport largest dimension (lvmax)"],"Small viewport largest dimension (svmax)":["Small viewport largest dimension (svmax)"],"Dynamic viewport largest dimension (dvmax)":["Dynamic viewport largest dimension (dvmax)"],"Dynamic viewport smallest dimension (dvmin)":["Dynamic viewport smallest dimension (dvmin)"],"Dynamic viewport width or height (dvb)":["Dynamic viewport width or height (dvb)"],"Dynamic viewport width or height (dvi)":["Dynamic viewport width or height (dvi)"],"Dynamic viewport height (dvh)":["Dynamic viewport height (dvh)"],"Dynamic viewport width (dvw)":["Dynamic viewport width (dvw)"],"Large viewport smallest dimension (lvmin)":["Large viewport smallest dimension (lvmin)"],"Large viewport width or height (lvb)":["Large viewport width or height (lvb)"],"Large viewport width or height (lvi)":["Large viewport width or height (lvi)"],"Large viewport height (lvh)":["Large viewport height (lvh)"],"Large viewport width (lvw)":["Large viewport width (lvw)"],"Small viewport smallest dimension (svmin)":["Small viewport smallest dimension (svmin)"],"Small viewport width or height (svb)":["Small viewport width or height (svb)"],"Viewport smallest size in the block direction (svb)":["Viewport smallest size in the block direction (svb)"],"Small viewport width or height (svi)":["Small viewport width or height (svi)"],"Viewport smallest size in the inline direction (svi)":["Viewport smallest size in the inline direction (svi)"],"Small viewport height (svh)":["Small viewport height (svh)"],"Small viewport width (svw)":["Small viewport width (svw)"],"No color selected":["No colour selected"],"Notice":["Notice"],"Error notice":["Error notice"],"Information notice":["Information notice"],"Warning notice":["Warning notice"],"Focal point top position":["Focal point top position"],"Focal point left position":["Focal point left position"],"Scrollable section":["Scrollable section"],"Initial %d result loaded. Type to filter all available results. Use up and down arrow keys to navigate.":["Initial %d result loaded. Type to filter all available results. Use up and down arrow keys to navigate.","Initial %d results loaded. Type to filter all available results. Use up and down arrow keys to navigate."],"Extra Extra Large":["Extra Extra Large"],"Show details":["Show details"],"Decrement":["Decrement"],"Increment":["Increment"],"All options reset":["All options reset"],"All options are currently hidden":["All options are currently hidden"],"%s is now visible":["%s is now visible"],"%s hidden and reset to default":["%s hidden and reset to default"],"%s reset to default":["%s reset to default"],"XXL":["XXL"],"XL":["XL"],"L":["L"],"M":["M"],"S":["S"],"Unset":["Unset"],"%1$s. Selected":["%1$s. selected"],"%1$s. Selected. There is %2$d event":["%1$s. Selected. There is %2$d event","%1$s. Selected. There are %2$d events"],"View next month":["View next month"],"View previous month":["View previous month"],"Border color and style picker":["Border colour and style picker"],"Loading \u2026":["Loading \u2026"],"All sides":["All sides"],"Bottom border":["Bottom border"],"Right border":["Right border"],"Left border":["Left border"],"Top border":["Top border"],"Border color picker.":["Border colour picker."],"Border color and style picker.":["Border colour and style picker."],"Custom color picker. The currently selected color is called \"%1$s\" and has a value of \"%2$s\".":["Custom colour picker. The currently selected colour is called \"%1$s\" and has a value of \"%2$s\"."],"Link sides":["Link sides"],"Unlink sides":["Unlink sides"],"Reset all":["Reset all"],"Button label to reveal tool panel options\u0004%s options":["%s options"],"Hide and reset %s":["Hide and reset %s"],"Reset %s":["Reset %s"],"Search %s":["Search %s"],"Set custom size":["Set custom size"],"Use size preset":["Use size preset"],"Currently selected font size: %s":["Currently selected font size: %s"],"Highlights":["Highlights"],"Size of a UI element\u0004Extra Large":["Extra Large"],"Size of a UI element\u0004Large":["Large"],"Size of a UI element\u0004Medium":["Medium"],"Size of a UI element\u0004Small":["Small"],"Size of a UI element\u0004None":["None"],"Currently selected: %s":["Currently selected: %s"],"Reset colors":["Reset colours"],"Reset gradient":["Reset gradient"],"Remove all colors":["Remove all colours"],"Remove all gradients":["Remove all gradients"],"Color options":["Colour options"],"Gradient options":["Gradient options"],"Add color":["Add colour"],"Add gradient":["Add gradient"],"Gradient name":["Gradient name"],"Color %s":["Colour %s"],"Color format":["Colour format"],"Hex color":["Hex colour"],"Invalid item":["Invalid item"],"Shadows":["Shadows"],"Duotone: %s":["Duotone: %s"],"Duotone code: %s":["Duotone code: %s"],"%1$s. There is %2$d event":["%1$s. There is %2$d event","%1$s. There are %2$d events"],"Relative to root font size (rem)\u0004rems":["rems"],"Relative to parent font size (em)\u0004ems":["ems"],"Points (pt)":["Points (pt)"],"Picas (pc)":["Picas (pc)"],"Inches (in)":["Inches (in)"],"Millimeters (mm)":["Millimetres (mm)"],"Centimeters (cm)":["Centimetres (cm)"],"x-height of the font (ex)":["x-height of the font (ex)"],"Width of the zero (0) character (ch)":["Width of the zero (0) character (ch)"],"Viewport largest dimension (vmax)":["Viewport largest dimension (vmax)"],"Viewport smallest dimension (vmin)":["Viewport smallest dimension (vmin)"],"Percent (%)":["Percent (%)"],"Border width":["Border width"],"Dotted":["Dotted"],"Dashed":["Dashed"],"Viewport height (vh)":["Viewport height (vh)"],"Viewport width (vw)":["Viewport width (vw)"],"Relative to root font size (rem)":["Relative to root font size (rem)"],"Relative to parent font size (em)":["Relative to parent font size (em)"],"Pixels (px)":["Pixels (px)"],"Percentage (%)":["Percentage (%)"],"Close search":["Close search"],"Search in %s":["Search in %s"],"Select unit":["Select unit"],"Radial":["Radial"],"Linear":["Linear"],"Media preview":["Media preview"],"Coordinated Universal Time":["Coordinated Universal Time"],"Color name":["Colour name"],"Reset search":["Reset search"],"Box Control":["Box Control"],"Alignment Matrix Control":["Alignment Matrix Control"],"Bottom Center":["Bottom Centre"],"Center Right":["Centre Right"],"Center Left":["Centre Left"],"Top Center":["Top Centre"],"Solid":["Solid"],"Finish":["Finish"],"Page %1$d of %2$d":["Page %1$d of %2$d"],"Guide controls":["Guide controls"],"Gradient: %s":["Gradient: %s"],"Gradient code: %s":["Gradient code: %s"],"Remove Control Point":["Remove Control Point"],"Use your left or right arrow keys or drag and drop with the mouse to change the gradient position. Press the button to change the color or remove the control point.":["Use your left or right arrow keys or drag and drop with the mouse to change the gradient position. Press the button to change the colour or remove the control point."],"Gradient control point at position %1$s%% with color code %2$s.":["Gradient control point at position %1$s%% with colour code %2$s."],"Extra Large":["Extra Large"],"Small":["Small"],"Angle":["Angle"],"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."],"Copied!":["Copied!"],"%d result found.":["%d result found.","%d results found."],"Number of items":["Number of items"],"Category":["Category"],"Z \u2192 A":["Z \t A"],"A \u2192 Z":["A \t Z"],"Oldest to newest":["Oldest to newest"],"Newest to oldest":["Newest to oldest"],"Order by":["Order by"],"Dismiss this notice":["Dismiss this notice"],"%1$s (%2$s of %3$s)":["%1$s (%2$s of %3$s)"],"Remove item":["Remove item"],"Item removed.":["Item removed."],"Item added.":["Item added."],"Add item":["Add item"],"Reset":["Reset"],"(opens in a new tab)":["(opens in a new tab)"],"Minutes":["Minutes"],"Color code: %s":["Colour code: %s"],"Custom color picker":["Custom colour picker"],"No results.":["No results."],"%d result found, use up and down arrow keys to navigate.":["%d result found, use up and down arrow keys to navigate.","%d results found, use up and down arrow keys to navigate."],"Time":["Time"],"Day":["Day"],"Month":["Month"],"Date":["Date"],"Hours":["Hours"],"Item selected.":["Item selected."],"Previous":["Previous"],"Year":["Year"],"Custom Size":["Custom Size"],"Back":["Back"],"Style":["Style"],"Large":["Large"],"Drop files to upload":["Drop files to upload"],"Clear":["Clear"],"Mixed":["Mixed"],"Custom":["Custom"],"Next":["Next"],"PM":["PM"],"AM":["AM"],"Bottom Right":["Bottom Right"],"Bottom Left":["Bottom Left"],"Top Right":["Top Right"],"Top Left":["Top Left"],"Type":["Type"],"Top":["Top"],"Copy":["Copy"],"Font size":["Font size"],"Calendar":["Calendar"],"No results found.":["No results found."],"Default":["Default"],"Close":["Close"],"Search":["Search"],"OK":["OK"],"Size":["Size"],"Medium":["Medium"],"Center":["Centre"],"Left":["Left"],"Cancel":["Cancel"],"Done":["Done"],"None":["None"],"Categories":["Categories"],"Author":["Author"]}},"comment":{"reference":"wp-includes\/js\/dist\/components.js"}} \ No newline at end of file diff --git a/web/app/languages/en_GB-803bf1ce2131e13efc590c1bc47851fc.json b/web/app/languages/en_GB-803bf1ce2131e13efc590c1bc47851fc.json old mode 100755 new mode 100644 index 9f97eac2..14e225a8 --- a/web/app/languages/en_GB-803bf1ce2131e13efc590c1bc47851fc.json +++ b/web/app/languages/en_GB-803bf1ce2131e13efc590c1bc47851fc.json @@ -1 +1 @@ -{"translation-revision-date":"2024-11-14 20:13:08+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Uncategorized":["Uncategorised"],"block label\u0004%1$s (%2$s)":["%1$s (%2$s)"],"spacing\u0004%1$s %2$s":["%1$s %2$s"],"font\u0004%1$s %2$s":["%1$s %2$s"],"Empty %s; start writing to edit its value":["Empty %s; start writing to edit its value"],"Upload or drag a video file here, or pick one from your library.":["Upload or drag a video file here, or pick one from your library."],"Upload or drag an image file here, or pick one from your library.":["Upload or drag an image file here, or pick one from your library."],"Upload or drag an audio file here, or pick one from your library.":["Upload or drag an audio file here, or pick one from your library."],"Unlock content locked blocks\u0004Modify":["Modify"],"Attributes connected to custom fields or other dynamic data.":["Attributes connected to custom fields or other dynamic data."],"Drag and drop patterns into the canvas.":["Drag and drop patterns into the canvas."],"Drop pattern.":["Drop pattern."],"Layout type":["Layout type"],"Block with fixed width in flex layout\u0004Fixed":["Fixed"],"Block with expanding width in flex layout\u0004Grow":["Grow"],"Intrinsic block width in flex layout\u0004Fit":["Fit"],"Only one image can be used as a background image.":["Only one image can be used as a background image."],"Background size, position and repeat options.":["Background size, position, and repeat options."],"Grid item position":["Grid item position"],"Grid items are placed automatically depending on their order.":["Grid items are placed automatically depending on their order."],"Grid items can be manually placed in any position on the grid.":["Grid items can be manually placed in any position on the grid."],"font weight\u0004Extra Black":["Extra Black"],"font style\u0004Oblique":["Oblique"],"This block is locked.":["This block is locked."],"Selected blocks are grouped.":["Selected blocks are grouped."],"Generic label for pattern inserter button\u0004Add pattern":["Add pattern"],"verb\u0004Grid":["Grid"],"block toolbar button label and description\u0004These blocks are connected.":["These blocks are connected."],"block toolbar button label and description\u0004This block is connected.":["This block is connected."],"Create a group block from the selected multiple blocks.":["Create a group block from the selected multiple blocks."],"Collapse all other items.":["Collapse all other items."],"This block allows overrides. Changing the name can cause problems with content entered into instances of this pattern.":["This block allows overrides. Changing the name can cause problems with content entered into instances of this pattern."],"Grid placement":["Grid placement"],"Row span":["Row span"],"Column span":["Column span"],"Grid span":["Grid span"],"Background image width":["Background image width"],"Size option for background image control\u0004Tile":["Tile"],"Size option for background image control\u0004Contain":["Contain"],"Size option for background image control\u0004Cover":["Cover"],"No background image selected":["No background image selected"],"Background image: %s":["Background image: %s"],"Add background image":["Add background image"],"Image has a fixed width.":["Image has a fixed width."],"Manual":["Manual"],"Blocks can't be inserted into other blocks with bindings":["Blocks can't be inserted into other blocks with bindings"],"Focal point":["Focal point"],"Be careful!":["Be careful!"],"%s.":["%s."],"%s styles.":["%s styles."],"%s settings.":["%s settings."],"%s element.":["%s element.","%s elements."],"%s block.":["%s block.","%s blocks."],"Disable expand on click":["Disable expand on click"],"Scales the image with a lightbox effect":["Scales the image with a lightbox effect"],"Scale the image with a lightbox effect.":["Scale the image with a lightbox effect."],"Link CSS class":["Link CSS class"],"Link to attachment page":["Link to attachment page"],"Link to image file":["Link to image file"],"screen sizes\u0004All":["All"],"Locked":["Locked"],"Multiple blocks selected":["Multiple blocks selected"],"No transforms.":["No transforms."],"Select parent block: %s":["Select parent block: %s"],"patterns\u0004Not synced":["Not synced"],"patterns\u0004Synced":["Synced"],"Manage the inclusion of blocks added automatically by plugins.":["Manage the inclusion of blocks added automatically by plugins."],"Border & Shadow":["Border and shadow"],"Drop shadows":["Drop shadows"],"Drop shadow":["Drop shadow"],"Repeat":["Repeat"],"Copy link%s":["Copy link%s"],"Link copied to clipboard.":["Link copied to clipboard."],"patterns\u0004All":["All"],"Expand on click":["Expand on click"],"Image settings\u0004Settings":["Settings"],"Ungroup":["Ungroup"],"Block name changed to: \"%s\".":["Block name changed to: \"%s\"."],"Block name reset to: \"%s\".":["Block name reset to: \"%s\"."],"Drop to upload":["Drop to upload"],"Background image":["Background image"],"Only images can be used as a background image.":["Only images can be used as a background image."],"No results found":["No results found"],"%d category button displayed.":["%d category button displayed.","%d category buttons displayed."],"https:\/\/wordpress.org\/patterns\/":["https:\/\/wordpress.org\/patterns\/"],"Patterns are available from the WordPress.org Pattern Directory<\/Link>, bundled in the active theme, or created by users on this site. Only patterns created on this site can be synced.":["Patterns are available from the WordPress.org Pattern Directory<\/Link>, bundled in the active theme, or created by users on this site. Only patterns created on this site can be synced."],"Theme & Plugins":["Theme & Plugins"],"Pattern Directory":["Pattern Directory"],"%d pattern found":["%d pattern found","%d patterns found"],"Select text across multiple blocks.":["Select text across multiple blocks."],"Last page":["Last page"],"paging\u0004%1$s of %2$s":["%1$s of %2$s"],"First page":["First page"],"Image is contained without distortion.":["Image is contained without distortion."],"Image covers the space evenly.":["Image covers the space evenly."],"Image size option for resolution control\u0004Full Size":["Full Size"],"Image size option for resolution control\u0004Large":["Large"],"Image size option for resolution control\u0004Medium":["Medium"],"Image size option for resolution control\u0004Thumbnail":["Thumbnail"],"Scale down the content to fit the space if it is too big. Content that is too small will have additional padding.":["Scale down the content to fit the space if it is too big. Content that is too small will have additional padding."],"Scale option for dimensions control\u0004Scale down":["Scale down"],"Do not adjust the sizing of the content. Content that is too large will be clipped, and content that is too small will have additional padding.":["Do not adjust the sizing of the content. Content that is too large will be clipped, and content that is too small will have additional padding."],"Scale option for dimensions control\u0004None":["None"],"Fill the space by clipping what doesn't fit.":["Fill the space by clipping what doesn't fit."],"Scale option for dimensions control\u0004Cover":["Cover"],"Fit the content to the space without clipping.":["Fit the content to the space without clipping."],"Scale option for dimensions control\u0004Contain":["Contain"],"Fill the space by stretching the content.":["Fill the space by stretching the content."],"Scale option for dimensions control\u0004Fill":["Fill"],"Aspect ratio":["Aspect ratio"],"Aspect ratio option for dimensions control\u0004Custom":["Custom"],"Aspect ratio option for dimensions control\u0004Original":["Original"],"%d word selected.":["%d word selected.","%d words selected."],"%d Block":["%d Block","%d Blocks"],"Suggestions":["Suggestions"],"Additional link settings\u0004Advanced":["Advanced"],"Resolution":["Resolution"],"https:\/\/wordpress.org\/documentation\/article\/customize-date-and-time-format\/":["https:\/\/wordpress.org\/documentation\/article\/customize-date-and-time-format\/"],"Example:":["Example:"],"Change level":["Change level"],"Position: %s":["Position: %s"],"Name for applying graphical effects\u0004Filters":["Filters"],"Color %s styles":["Color %s styles"],"The block will stick to the scrollable area of the parent %s block.":["The block will stick to the scrollable area of the parent %s block."],"Add after":["Add after"],"Add before":["Add before"],"My patterns":["My patterns"],"https:\/\/wordpress.org\/documentation\/article\/page-jumps\/":["https:\/\/wordpress.org\/documentation\/article\/page-jumps\/"],"Minimum column width":["Minimum column width"],"Grid":["Grid"],"Horizontal & vertical":["Horizontal & vertical"],"Name for the value of the CSS position property\u0004Fixed":["Fixed"],"Name for the value of the CSS position property\u0004Sticky":["Sticky"],"There is an error with your CSS structure.":["There is an error with your CSS structure."],"Shadow":["Shadow"],"Append to %1$s block at position %2$d, Level %3$d":["Append to %1$s block at position %2$d, Level %3$d"],"%s block inserted":["%s block inserted"],"Format tools":["Format tools"],"Currently selected position: %s":["Currently selected position: %s"],"Position":["Position"],"The block will not move when the page is scrolled.":["The block will not move when the page is scrolled."],"The block will stick to the top of the window instead of scrolling.":["The block will stick to the top of the window instead of scrolling."],"Sticky":["Sticky"],"Paste styles":["Paste styles"],"Copy styles":["Copy styles"],"Pasted styles to %d blocks.":["Pasted styles to %d blocks."],"Pasted styles to %s.":["Pasted styles to %s."],"Unable to paste styles. Block styles couldn't be found within the copied content.":["Unable to paste styles. Block styles couldn't be found within the copied content."],"Unable to paste styles. Please allow browser clipboard permissions before continuing.":["Unable to paste styles. Please allow browser clipboard permissions before continuing."],"Unable to paste styles. This feature is only available on secure (https) sites in supporting browsers.":["Unable to paste styles. This feature is only available on secure (https) sites in supporting browsers."],"Media List":["Media List"],"Image inserted.":["Image inserted."],"Image uploaded and inserted.":["Image uploaded and inserted."],"External images can be removed by the external provider without warning and could even have legal compliance issues related to privacy legislation.":["External images can be removed by the external provider without warning and could even have legal compliance issues related to privacy legislation."],"This image cannot be uploaded to your Media Library, but it can still be inserted as an external image.":["This image cannot be uploaded to your Media Library, but it can still be inserted as an external image."],"Insert external image":["Insert external image"],"Report %s":["Report %s"],"Pattern":["Pattern"],"Go to parent Navigation block":["Go to parent Navigation block"],"Stretch items":["Stretch items"],"Block vertical alignment setting\u0004Space between":["Space between"],"Block vertical alignment setting\u0004Stretch to fill":["Stretch to fill"],"Fixed":["Fixed"],"Fit contents.":["Fit contents."],"Specify a fixed height.":["Specify a fixed height."],"Specify a fixed width.":["Specify a fixed width."],"Stretch to fill available space.":["Stretch to fill available space."],"Move %1$d blocks from position %2$d left by one place":["Move %1$d blocks from position %2$d left by one place"],"Move %1$d blocks from position %2$d down by one place":["Move %1$d blocks from position %2$d down by one place"],"Hover":["Hover"],"H6":["H6"],"H5":["H5"],"H4":["H4"],"H3":["H3"],"H2":["H2"],"H1":["H1"],"Set the width of the main content area.":["Set the width of the main content area."],"Unset":["Unset"],"Now":["Now"],"short date format without the year\u0004M j":["M j"],"Nested blocks will fill the width of this container. Toggle to constrain.":["Nested blocks will fill the width of this container. Toggle to constrain."],"Nested blocks use content width with options for full and wide widths.":["Nested blocks use content width with options for full and wide widths."],"Inner blocks use content width":["Inner blocks use content width"],"Font":["Font"],"Apply to all blocks inside":["Apply to all blocks inside"],"Restrict editing":["Restrict editing"],"Blocks cannot be moved right as they are already are at the rightmost position":["Blocks cannot be moved right as they are already are at the rightmost position"],"Blocks cannot be moved left as they are already are at the leftmost position":["Blocks cannot be moved left as they are already are at the leftmost position"],"All blocks are selected, and cannot be moved":["All blocks are selected, and cannot be moved"],"Constrained":["Constrained"],"Spacing control":["Spacing control"],"Custom (%s)":["Custom (%s)"],"You are currently in zoom-out mode.":["You are currently in zoom-out mode."],"Close block inserter":["Close block inserter"],"Link sides":["Link sides"],"Unlink sides":["Unlink sides"],"Select the size of the source image.":["Select the size of the source image."],"Use featured image":["Use featured image"],"Delete selection.":["Delete selection."],"Link is empty":["Link is empty"],"Enter a date or time format string<\/Link>.":["Enter a date or time format string<\/Link>."],"Custom format":["Custom format"],"Choose a format":["Choose a format"],"Enter your own date format":["Enter your own date format"],"long date format\u0004F j, Y":["F j, Y"],"medium date format with time\u0004M j, Y g:i A":["j M Y g:i A"],"medium date format\u0004M j, Y":["j M Y"],"short date format with time\u0004n\/j\/Y g:i A":["j\/n\/Y g:i A"],"short date format\u0004n\/j\/Y":["j\/n\/Y"],"Default format":["Default format"],"Date format":["Date format"],"Transform to %s":["Transform to %s"],"%s blocks deselected.":["%s blocks deselected."],"%s deselected.":["%s deselected."],"Transparent text may be hard for people to read.":["Transparent text may be hard for people to read."],"verb\u0004Stack":["Stack"],"single horizontal line\u0004Row":["Row"],"Select parent block (%s)":["Select parent block (%s)"],"Lock":["Lock"],"Unlock":["Unlock"],"Prevent removal":["Prevent removal"],"Disable movement":["Disable movement"],"Lock all":["Lock all"],"Choose specific attributes to restrict or lock all available options.":["Choose specific attributes to restrict or lock all available options."],"Lock %s":["Lock %s"],"Add default block":["Add default block"],"Add pattern":["Add pattern"],"Alignment option\u0004None":["None"],"font weight\u0004Black":["Black"],"font weight\u0004Extra Bold":["Extra Bold"],"font weight\u0004Bold":["Bold"],"font weight\u0004Semi Bold":["Semi Bold"],"font weight\u0004Medium":["Medium"],"font weight\u0004Regular":["Regular"],"font weight\u0004Light":["Light"],"font weight\u0004Extra Light":["Extra Light"],"font weight\u0004Thin":["Thin"],"font style\u0004Italic":["Italic"],"font style\u0004Regular":["Regular"],"Set custom size":["Set custom size"],"Use size preset":["Use size preset"],"Rename":["Rename"],"link color":["link colour"],"Elements":["Elements"],"Explore all patterns":["Explore all patterns"],"Block spacing":["Block spacing"],"Letter spacing":["Letter spacing"],"Radius":["Radius"],"Link radii":["Link radii"],"Unlink radii":["Unlink radii"],"Bottom right":["Bottom right"],"Bottom left":["Bottom left"],"Top right":["Top right"],"Top left":["Top left"],"Max %s wide":["Maximum %s wide"],"Flow":["Flow"],"Orientation":["Orientation"],"Allow to wrap to multiple lines":["Allow to wrap to multiple lines"],"Justification":["Justification"],"Flex":["Flex"],"Currently selected font appearance: %s":["Currently selected font appearance: %s"],"Currently selected font style: %s":["Currently selected font style: %s"],"Currently selected font weight: %s":["Currently selected font weight: %s"],"No selected font appearance":["No selected font appearance"],"Create a two-tone color effect without losing your original image.":["Create a two-tone colour effect without losing your original image."],"Displays more block tools":["Displays more block tools"],"Indicates this palette is created by the user.\u0004Custom":["Custom"],"Indicates this palette comes from the theme.\u0004Custom":["Custom"],"Indicates this palette comes from WordPress.\u0004Default":["Default"],"Indicates this palette comes from the theme.\u0004Theme":["Theme"],"No preview available.":["No preview available."],"Tools provide different interactions for selecting, navigating, and editing blocks. Toggle between select and edit by pressing Escape and Enter.":["Tools provide different interactions for selecting, navigating, and editing blocks. Toggle between select and edit by pressing Escape and Enter."],"Space between items":["Space between items"],"Justify items right":["Justify items right"],"Justify items center":["Justify items centre"],"Justify items left":["Justify items left"],"Carousel view":["Carousel view"],"Next pattern":["Next pattern"],"Previous pattern":["Previous pattern"],"Choose":["Choose"],"Patterns list":["Patterns list"],"Type \/ to choose a block":["Type \/ to choose a block"],"Search for blocks and patterns":["Search for blocks and patterns"],"Use left and right arrow keys to move through blocks":["Use left and right arrow keys to move through blocks"],"Customize the width for all elements that are assigned to the center or wide columns.":["Customise the width for all elements that are assigned to the centre or wide columns."],"Layout":["Layout"],"Apply duotone filter":["Apply duotone filter"],"Duotone":["Duotone"],"Margin":["Margin"],"Vertical":["Vertical"],"Horizontal":["Horizontal"],"Change items justification":["Change items justification"],"Editor canvas":["Editor canvas"],"Block vertical alignment setting\u0004Align bottom":["Align bottom"],"Block vertical alignment setting\u0004Align middle":["Align middle"],"Block vertical alignment setting\u0004Align top":["Align top"],"Transform to variation":["Transform to variation"],"More":["More"],"Drag":["Drag"],"Block patterns":["Block patterns"],"Toggle full height":["Toggle full height"],"Font style":["Font style"],"Font weight":["Font weight"],"Letter case":["Letter case"],"Capitalize":["Capitalise"],"Lowercase":["Lower case"],"Uppercase":["Upper case"],"Decoration":["Decoration"],"Add an anchor":["Add an anchor"],"Captions":["Captions"],"Appearance":["Appearance"],"Create: %s<\/mark>":["Create: %s<\/mark>"],"Search for patterns":["Search for patterns"],"Block pattern \"%s\" inserted.":["Block pattern \"%s\" inserted."],"Filter patterns":["Filter patterns"],"Rotate":["Rotate"],"Zoom":["Zoom"],"Could not edit image. %s":["Could not edit image. %s"],"Portrait":["Portrait"],"Landscape":["Landscape"],"Aspect Ratio":["Aspect Ratio"],"Move the selected block(s) down.":["Move the selected block(s) down."],"Move the selected block(s) up.":["Move the selected block(s) up."],"Current media URL:":["Current media URL:"],"Creating":["Creating"],"An unknown error occurred during creation. Please try again.":["An unknown error occurred during creation. Please try again."],"Image size presets":["Image size presets"],"Block variations":["Block variations"],"Block navigation structure":["Block navigation structure"],"Block %1$d of %2$d, Level %3$d.":["Block %1$d of %2$d, Level %3$d."],"Move to":["Move to"],"Moved %d block to clipboard.":["Moved %d block to clipboard.","Moved %d blocks to clipboard."],"Copied %d block to clipboard.":["Copied %d block to clipboard.","Copied %d blocks to clipboard."],"Moved \"%s\" to clipboard.":["Moved \"%s\" to clipboard."],"Copied \"%s\" to clipboard.":["Copied \"%s\" to clipboard."],"Browse all":["Browse all"],"Browse all. This will open the main inserter panel in the editor toolbar.":["Browse all. This will open the main inserter panel in the editor toolbar."],"A tip for using the block editor":["A tip for using the block editor"],"Patterns":["Patterns"],"%d block added.":["%d block added.","%d blocks added"],"Use the Tab key and Arrow keys to choose new block location. Use Left and Right Arrow keys to move between nesting levels. Once location is selected press Enter or Space to move the block.":["Use the Tab key and Arrow keys to choose new block location. Use Left and Right Arrow keys to move between nesting levels. Once location is selected, press Enter or Space to move the block."],"You are currently in navigation mode. Navigate blocks using the Tab key and Arrow keys. Use Left and Right Arrow keys to move between nesting levels. To exit navigation mode and edit the selected block, press Enter.":["You are currently in navigation mode. Navigate blocks using the Tab key and Arrow keys. Use Left and Right Arrow keys to move between nesting levels. To exit navigation mode and edit the selected block, press Enter."],"Change a block's type by pressing the block icon on the toolbar.":["Change a block's type by pressing the block icon on the toolbar."],"Drag files into the editor to automatically insert media blocks.":["Drag files into the editor to automatically insert media blocks."],"Outdent a list by pressing backspace<\/kbd> at the beginning of a line.":["Outdent a list by pressing backspace<\/kbd> at the beginning of a line."],"Indent a list by pressing space<\/kbd> at the beginning of a line.":["Indent a list by pressing space<\/kbd> at the beginning of a line."],"Open Colors Selector":["Open colours selector"],"Change matrix alignment":["Change matrix alignment"],"Spacing":["Spacing"],"Padding":["Padding"],"Typography":["Typography"],"Line height":["Line height"],"Block %1$s is at the beginning of the content and can\u2019t be moved left":["Block %1$s is at the beginning of the content and can\u2019t be moved left"],"Block %1$s is at the beginning of the content and can\u2019t be moved up":["Block %1$s is at the beginning of the content and can\u2019t be moved up"],"Block %1$s is at the end of the content and can\u2019t be moved left":["Block %1$s is at the end of the content and can\u2019t be moved left"],"Block %1$s is at the end of the content and can\u2019t be moved down":["Block %1$s is at the end of the content and can\u2019t be moved down"],"Move %1$s block from position %2$d right to position %3$d":["Move %1$s block from position %2$d right to position %3$d"],"Move %1$s block from position %2$d left to position %3$d":["Move %1$s block from position %2$d left to position %3$d"],"Toggle between using the same value for all screen sizes or using a unique value per screen size.":["Toggle between using the same value for all screen sizes or using a unique value per screen size."],"Use the same %s on all screen sizes.":["Use the same %s on all screen sizes."],"Large screens":["Large screens"],"Medium screens":["Medium screens"],"Small screens":["Small screens"],"Text labelling a interface as controlling a given layout property (eg: margin) for a given screen size.\u0004Controls the %1$s property for %2$s viewports.":["Controls the %1$s property for %2$s viewports."],"Open Media Library":["Open Media Library"],"The media file has been replaced":["The media file has been replaced"],"Currently selected":["Currently selected"],"Search or type URL":["Search or type URL"],"Press ENTER to add this link":["Press ENTER to add this link"],"Currently selected link settings":["Currently selected link settings"],"Select a variation to start with:":["Select a variation to start with:"],"Choose variation":["Choose variation"],"Generic label for block inserter button\u0004Add block":["Add block"],"directly add the only allowed block\u0004Add %s":["Add %s"],"%s block added":["%s block added"],"Multiple selected blocks":["Multiple selected blocks"],"You are currently in edit mode. To return to the navigation mode, press Escape.":["You are currently in edit mode. To return to the navigation mode, press Escape."],"Midnight":["Midnight"],"Electric grass":["Electric grass"],"Pale ocean":["Pale ocean"],"Luminous dusk":["Luminous dusk"],"Blush bordeaux":["Blush bordeaux"],"Blush light purple":["Blush light purple"],"Cool to warm spectrum":["Cool to warm spectrum"],"Very light gray to cyan bluish gray":["Very light grey to cyan bluish grey"],"Luminous vivid orange to vivid red":["Luminous vivid orange to vivid red"],"Luminous vivid amber to luminous vivid orange":["Luminous vivid amber to luminous vivid orange"],"Light green cyan to vivid green cyan":["Light green cyan to vivid green cyan"],"Vivid cyan blue to vivid purple":["Vivid cyan blue to vivid purple"],"Block breadcrumb":["Block breadcrumb"],"Gradient":["Gradient"],"Grid view":["Grid view"],"List view":["List view"],"Move right":["Move right"],"Move left":["Move left"],"Link rel":["Link rel"],"Border radius":["Border radius"],"Open in new tab":["Open in new tab"],"Group":["Group"],"Separate multiple classes with spaces.":["Separate multiple classes with spaces."],"Learn more about anchors":["Learn more about anchors"],"Enter a word or two \u2014 without spaces \u2014 to make a unique web address just for this block, called an \u201canchor\u201d. Then, you\u2019ll be able to link directly to this section of your page.":["Enter a word or two \u2013 without spaces \u2013 to make a unique web address just for this block, called an \u201canchor\u201d. Then, you\u2019ll be able to link directly to this section of your page."],"Upload a media file or pick one from your media library.":["Upload a media file or pick one from your media library."],"Skip":["Skip"],"This color combination may be hard for people to read.":["This colour combination may be hard for people to read."],"Add a block":["Add a block"],"While writing, you can press \/<\/kbd> to quickly insert new blocks.":["While writing, you can press \/<\/kbd> to quickly insert new blocks."],"Vivid purple":["Vivid purple"],"Block vertical alignment setting label\u0004Change vertical alignment":["Change vertical alignment"],"Ungrouping blocks from within a grouping block back into individual blocks within the Editor\u0004Ungroup":["Ungroup"],"verb\u0004Group":["Group"],"Change block type or style":["Change block type or style"],"block style\u0004Default":["Default"],"To edit this block, you need permission to upload media.":["To edit this block, you need permission to upload media."],"Block tools":["Block Tools"],"%s block selected.":["%s block selected.","%s blocks selected."],"Align text right":["Align text right"],"Align text center":["Align text centre"],"Align text left":["Align text left"],"Heading":["Heading"],"Heading %d":["Heading %d"],"Text alignment":["Text alignment"],"Edit URL":["Edit URL"],"Fixed background":["Fixed background"],"Button":["Button"],"This block can only be used once.":["This block can only be used once."],"Find original":["Find original"],"Document":["Document"],"%d block":["%d block","%d blocks"],"Insert a new block after the selected block(s).":["Insert a new block after the selected block(s)."],"Insert a new block before the selected block(s).":["Insert a new block before the selected block(s)."],"Remove the selected block(s).":["Remove the selected block(s)."],"Duplicate the selected block(s).":["Duplicate the selected block(s)."],"Select all text when typing. Press again to select all blocks.":["Select all text when typing. Press again to select all blocks."],"Navigate to the nearest toolbar.":["Navigate to the nearest toolbar."],"Options":["Options"],"font size name\u0004Huge":["Huge"],"font size name\u0004Large":["Large"],"font size name\u0004Medium":["Medium"],"font size name\u0004Small":["Small"],"Cyan bluish gray":["Cyan bluish grey"],"Vivid cyan blue":["Vivid cyan blue"],"Pale cyan blue":["Pale cyan blue"],"Vivid green cyan":["Vivid green cyan"],"Light green cyan":["Light green cyan"],"Luminous vivid amber":["Luminous vivid amber"],"Luminous vivid orange":["Luminous vivid orange"],"Vivid red":["Vivid red"],"Pale pink":["Pale pink"],"Additional CSS class(es)":["Additional CSS class(es)"],"HTML anchor":["HTML anchor"],"Link settings":["Link settings"],"Skip to the selected block":["Skip to the selected block"],"no title":["no title"],"Paste or type URL":["Paste or type URL"],"blocks\u0004Most used":["Most used"],"%d result found.":["%d result found.","%d results found."],"Add %s":["Add %s"],"Attempt recovery":["Attempt recovery"],"This color combination may be hard for people to read. Try using a brighter background color and\/or a darker %s.":["This colour combination may be hard for people to read. Try using a brighter background colour and\/or a darker %s."],"This color combination may be hard for people to read. Try using a darker background color and\/or a brighter %s.":["This colour combination may be hard for people to read. Try using a darker background colour and\/or a brighter %s."],"Transform to":["Transform to"],"Change type of %d block":["Change type of %d block","Change type of %d blocks"],"Duplicate":["Duplicate"],"More options":["More options"],"Edit visually":["Edit visually"],"Edit as HTML":["Edit as HTML"],"Move %1$d blocks from position %2$d right by one place":["Move %1$d blocks from position %2$d right by one place"],"Move %1$d blocks from position %2$d up by one place":["Move %1$d blocks from position %2$d up by one place"],"Blocks cannot be moved down as they are already at the bottom":["Blocks cannot be moved down as they are already at the bottom"],"Blocks cannot be moved up as they are already at the top":["Blocks cannot be moved up as they are already at the top"],"Block %1$s is at the beginning of the content and can\u2019t be moved right":["Block %1$s is at the beginning of the content and can\u2019t be moved right"],"Move %1$s block from position %2$d up to position %3$d":["Move %1$s block from position %2$d up to position %3$d"],"Block %1$s is at the end of the content and can\u2019t be moved right":["Block %1$s is at the end of the content and can\u2019t be moved right"],"Move %1$s block from position %2$d down to position %3$d":["Move %1$s block from position %2$d down to position %3$d"],"Block %s is the only block, and cannot be moved":["Block %s is the only block, and cannot be moved"],"Block: %s":["Block: %s"],"Block contains unexpected or invalid content.":["Block contains unexpected or invalid content."],"imperative verb\u0004Resolve":["Resolve"],"Convert to Blocks":["Convert to Blocks"],"Resolve Block":["Resolve Block"],"Convert to Classic Block":["Convert to Classic Block"],"This block has encountered an error and cannot be previewed.":["This block has encountered an error and cannot be previewed."],"No block selected.":["No block selected."],"After Conversion":["After Conversion"],"Convert to HTML":["Convert to HTML"],"Current":["Current"],"Change alignment":["Change alignment"],"Full width":["Full width"],"Wide width":["Wide width"],"Change text alignment":["Change text alignment"],"Reset":["Reset"],"font size name\u0004Normal":["Normal"],"No results.":["No results."],"%d result found, use up and down arrow keys to navigate.":["%d result found, use up and down arrow keys to navigate.","%d results found, use up and down arrow keys to navigate."],"Blocks":["Blocks"],"%s item":["%s item","%s items"],"Invalid source":["Invalid source"],"Additional CSS":["Additional CSS"],"Original":["Original"],"Link selected.":["Link selected."],"Paste URL or type to search":["Paste URL or type to search"],"Minimum height":["Minimum height"],"Color":["Colour"],"List View":["List View"],"Back":["Back"],"Auto":["Auto"],"Tools":["Tools"],"Rows":["Rows"],"Replace":["Replace"],"Align left":["Align left"],"Align center":["Align centre"],"Align right":["Align right"],"Move up":["Move up"],"Move down":["Move down"],"Insert from URL":["Insert from URL"],"Video":["Video"],"Audio":["Audio"],"Columns":["Columns"],"Large":["Large"],"Media Library":["Media Library"],"Clear":["Clear"],"Clear selection.":["Clear selection."],"Colors":["Colours"],"text color":["text colour"],"Mixed":["Mixed"],"Remove":["Remove"],"Upload":["Upload"],"Styles":["Styles"],"Link":["Link"],"Content width":["Content width"],"User":["User"],"Custom":["Custom"],"Image":["Image"],"Previous page":["Previous page"],"Next page":["Next page"],"Remove link":["Remove link"],"Insert link":["Insert link"],"Justify text":["Justify text"],"Source":["Source"],"Shuffle":["Shuffle"],"Background":["Background"],"Align":["Align"],"Type":["Type"],"Bottom":["Bottom"],"Top":["Top"],"Dimensions":["Dimensions"],"Border":["Border"],"Copy":["Copy"],"Align text":["Align text"],"Strikethrough":["Strikethrough"],"Underline":["Underline"],"Paragraph":["Paragraph"],"Column":["Column"],"Row":["Row"],"Insert":["Insert"],", ":[", "],"Text":["Text"],"Search results for \"%s\"":["Search results for \"%s\""],"No results found.":["No results found."],"Default":["Default"],"Height":["Height"],"Theme":["Theme"],"Settings":["Settings"],"Edit link":["Edit link"],"Width":["Width"],"White":["White"],"Black":["Black"],"Select":["Select"],"Close":["Close"],"Search":["Search"],"Media":["Media"],"Caption":["Caption"],"Size":["Size"],"Full Size":["Full Size"],"Medium":["Medium"],"Right":["Right"],"Left":["Left"],"Thumbnail":["Thumbnail"],"Scale":["Scale"],"Content":["Content"],"Cancel":["Cancel"],"Plugins":["Plugins"],"Preview":["Preview"],"Submit":["Submit"],"Done":["Done"],"None":["None"],"Name":["Name"],"Advanced":["Advanced"],"Save":["Save"],"Delete":["Delete"],"Attributes":["Attributes"],"Publish":["Publish"],"Apply":["Apply"],"Edit":["Edit"],"URL":["URL"]}},"comment":{"reference":"wp-includes\/js\/dist\/block-editor.js"}} \ No newline at end of file +{"translation-revision-date":"2025-04-06 12:37:11+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Uncategorized":["Uncategorised"],"Enlarge on click":["Enlarge on click"],"Tools provide different sets of interactions for blocks. Choose between simplified content tools (Write) and advanced visual editing tools (Design).":["Tools provide different sets of interactions for blocks. Choose between simplified content tools (Write) and advanced visual editing tools (Design)."],"Edit layout and styles.":["Edit layout and styles."],"Focus on content.":["Focus on content."],"Choose whether to use the same value for all screen sizes or a unique value for each screen size.":["Choose whether to use the same value for all screen sizes or a unique value for each screen size."],"Drag and drop a video, upload, or choose from your library.":["Drag and drop a video, upload, or choose from your library."],"Drag and drop an image, upload, or choose from your library.":["Drag and drop an image, upload, or choose from your library."],"Drag and drop an audio file, upload, or choose from your library.":["Drag and drop an audio file, upload, or choose from your library."],"Drag and drop an image or video, upload, or choose from your library.":["Drag and drop an image or video, upload, or choose from your library."],"%d%%":["%d%%"],"Image cropped and rotated.":["Image cropped and rotated."],"Image rotated.":["Image rotated."],"Image cropped.":["Image cropped."],"%d block moved.":["%d block moved.","%d blocks moved."],"Shuffle styles":["Shuffle styles"],"Change design":["Change design"],"action: convert blocks to grid\u0004Grid":["Grid"],"action: convert blocks to stack\u0004Stack":["Stack"],"action: convert blocks to row\u0004Row":["Row"],"action: convert blocks to group\u0004Group":["Group"],"Lock removal":["Lock removal"],"Lock movement":["Lock movement"],"Lock editing":["Lock editing"],"Select the features you want to lock":["Select the features you want to lock"],"Full height":["Full height"],"Block \"%s\" can't be inserted.":["Block \"%s\" can't be inserted."],"Styles copied to clipboard.":["Styles copied to clipboard."],"Paste the selected block(s).":["Paste the selected block(s)."],"Cut the selected block(s).":["Cut the selected block(s)."],"Copy the selected block(s).":["Copy the selected block(s)."],"file name\u0004unnamed":["unnamed"],"Nested blocks will fill the width of this container.":["Nested blocks will fill the width of this container."],"verb\u0004Upload":["Upload"],"Link information":["Link information"],"Manage link":["Manage link"],"You are currently in Design mode.":["You are currently in Design mode."],"You are currently in Write mode.":["You are currently in Write mode."],"Starter content":["Starter content"],"spacing\u0004%1$s %2$s":["%1$s %2$s"],"font\u0004%1$s %2$s":["%1$s %2$s"],"Empty %s; start writing to edit its value":["Empty %s; start writing to edit its value"],"Unlock content locked blocks\u0004Modify":["Modify"],"Attributes connected to custom fields or other dynamic data.":["Attributes connected to custom fields or other dynamic data."],"Drag and drop patterns into the canvas.":["Drag and drop patterns into the canvas."],"Drop pattern.":["Drop pattern."],"Layout type":["Layout type"],"Block with fixed width in flex layout\u0004Fixed":["Fixed"],"Block with expanding width in flex layout\u0004Grow":["Grow"],"Intrinsic block width in flex layout\u0004Fit":["Fit"],"Background size, position and repeat options.":["Background size, position, and repeat options."],"Grid item position":["Grid item position"],"Grid items are placed automatically depending on their order.":["Grid items are placed automatically depending on their order."],"Grid items can be manually placed in any position on the grid.":["Grid items can be manually placed in any position on the grid."],"font weight\u0004Extra Black":["Extra Black"],"font style\u0004Oblique":["Oblique"],"This block is locked.":["This block is locked."],"Selected blocks are grouped.":["Selected blocks are grouped."],"Generic label for pattern inserter button\u0004Add pattern":["Add pattern"],"block toolbar button label and description\u0004These blocks are connected.":["These blocks are connected."],"block toolbar button label and description\u0004This block is connected.":["This block is connected."],"Create a group block from the selected multiple blocks.":["Create a group block from the selected multiple blocks."],"Collapse all other items.":["Collapse all other items."],"This block allows overrides. Changing the name can cause problems with content entered into instances of this pattern.":["This block allows overrides. Changing the name can cause problems with content entered into instances of this pattern."],"Grid placement":["Grid placement"],"Row span":["Row span"],"Column span":["Column span"],"Grid span":["Grid span"],"Background image width":["Background image width"],"Size option for background image control\u0004Tile":["Tile"],"Size option for background image control\u0004Contain":["Contain"],"Size option for background image control\u0004Cover":["Cover"],"No background image selected":["No background image selected"],"Background image: %s":["Background image: %s"],"Add background image":["Add background image"],"Image has a fixed width.":["Image has a fixed width."],"Manual":["Manual"],"Blocks can't be inserted into other blocks with bindings":["Blocks can't be inserted into other blocks with bindings"],"Focal point":["Focal point"],"Be careful!":["Be careful!"],"%s.":["%s."],"%s styles.":["%s styles."],"%s settings.":["%s settings."],"%s element.":["%s element.","%s elements."],"%s block.":["%s block.","%s blocks."],"Disable enlarge on click":["Disable enlarge on click"],"Scales the image with a lightbox effect":["Scales the image with a lightbox effect"],"Scale the image with a lightbox effect.":["Scale the image with a lightbox effect."],"Link CSS class":["Link CSS class"],"Link to attachment page":["Link to attachment page"],"Link to image file":["Link to image file"],"screen sizes\u0004All":["All"],"Locked":["Locked"],"Multiple blocks selected":["Multiple blocks selected"],"No transforms.":["No transforms."],"Select parent block: %s":["Select parent block: %s"],"patterns\u0004Not synced":["Not synced"],"patterns\u0004Synced":["Synced"],"Manage the inclusion of blocks added automatically by plugins.":["Manage the inclusion of blocks added automatically by plugins."],"Border & Shadow":["Border and shadow"],"Drop shadows":["Drop shadows"],"Drop shadow":["Drop shadow"],"Repeat":["Repeat"],"Link copied to clipboard.":["Link copied to clipboard."],"patterns\u0004All":["All"],"Image settings\u0004Settings":["Settings"],"Ungroup":["Ungroup"],"Block name changed to: \"%s\".":["Block name changed to: \"%s\"."],"Block name reset to: \"%s\".":["Block name reset to: \"%s\"."],"Drop to upload":["Drop to upload"],"Background image":["Background image"],"Only images can be used as a background image.":["Only images can be used as a background image."],"No results found":["No results found"],"%d category button displayed.":["%d category button displayed.","%d category buttons displayed."],"https:\/\/wordpress.org\/patterns\/":["https:\/\/wordpress.org\/patterns\/"],"Patterns are available from the WordPress.org Pattern Directory<\/Link>, bundled in the active theme, or created by users on this site. Only patterns created on this site can be synced.":["Patterns are available from the WordPress.org Pattern Directory<\/Link>, bundled in the active theme, or created by users on this site. Only patterns created on this site can be synced."],"Theme & Plugins":["Theme & Plugins"],"Pattern Directory":["Pattern Directory"],"%d pattern found":["%d pattern found","%d patterns found"],"Select text across multiple blocks.":["Select text across multiple blocks."],"Last page":["Last page"],"paging\u0004%1$s of %2$s":["%1$s of %2$s"],"First page":["First page"],"Image is contained without distortion.":["Image is contained without distortion."],"Image covers the space evenly.":["Image covers the space evenly."],"Image size option for resolution control\u0004Full Size":["Full Size"],"Image size option for resolution control\u0004Large":["Large"],"Image size option for resolution control\u0004Medium":["Medium"],"Image size option for resolution control\u0004Thumbnail":["Thumbnail"],"Scale down the content to fit the space if it is too big. Content that is too small will have additional padding.":["Scale down the content to fit the space if it is too big. Content that is too small will have additional padding."],"Scale option for dimensions control\u0004Scale down":["Scale down"],"Do not adjust the sizing of the content. Content that is too large will be clipped, and content that is too small will have additional padding.":["Do not adjust the sizing of the content. Content that is too large will be clipped, and content that is too small will have additional padding."],"Scale option for dimensions control\u0004None":["None"],"Fill the space by clipping what doesn't fit.":["Fill the space by clipping what doesn't fit."],"Scale option for dimensions control\u0004Cover":["Cover"],"Fit the content to the space without clipping.":["Fit the content to the space without clipping."],"Scale option for dimensions control\u0004Contain":["Contain"],"Fill the space by stretching the content.":["Fill the space by stretching the content."],"Scale option for dimensions control\u0004Fill":["Fill"],"Aspect ratio":["Aspect ratio"],"Aspect ratio option for dimensions control\u0004Custom":["Custom"],"Aspect ratio option for dimensions control\u0004Original":["Original"],"%d Block":["%d Block","%d Blocks"],"Suggestions":["Suggestions"],"Additional link settings\u0004Advanced":["Advanced"],"Resolution":["Resolution"],"https:\/\/wordpress.org\/documentation\/article\/customize-date-and-time-format\/":["https:\/\/wordpress.org\/documentation\/article\/customize-date-and-time-format\/"],"Example:":["Example:"],"Change level":["Change level"],"Position: %s":["Position: %s"],"Name for applying graphical effects\u0004Filters":["Filters"],"The block will stick to the scrollable area of the parent %s block.":["The block will stick to the scrollable area of the parent %s block."],"Add after":["Add after"],"Add before":["Add before"],"My patterns":["My patterns"],"https:\/\/wordpress.org\/documentation\/article\/page-jumps\/":["https:\/\/wordpress.org\/documentation\/article\/page-jumps\/"],"Minimum column width":["Minimum column width"],"Grid":["Grid"],"Horizontal & vertical":["Horizontal & vertical"],"Name for the value of the CSS position property\u0004Fixed":["Fixed"],"Name for the value of the CSS position property\u0004Sticky":["Sticky"],"There is an error with your CSS structure.":["There is an error with your CSS structure."],"Shadow":["Shadow"],"Append to %1$s block at position %2$d, Level %3$d":["Append to %1$s block at position %2$d, Level %3$d"],"%s block inserted":["%s block inserted"],"Format tools":["Format tools"],"Currently selected position: %s":["Currently selected position: %s"],"Position":["Position"],"The block will not move when the page is scrolled.":["The block will not move when the page is scrolled."],"The block will stick to the top of the window instead of scrolling.":["The block will stick to the top of the window instead of scrolling."],"Sticky":["Sticky"],"Paste styles":["Paste styles"],"Copy styles":["Copy styles"],"Pasted styles to %d blocks.":["Pasted styles to %d blocks."],"Pasted styles to %s.":["Pasted styles to %s."],"Unable to paste styles. Block styles couldn't be found within the copied content.":["Unable to paste styles. Block styles couldn't be found within the copied content."],"Unable to paste styles. Please allow browser clipboard permissions before continuing.":["Unable to paste styles. Please allow browser clipboard permissions before continuing."],"Unable to paste styles. This feature is only available on secure (https) sites in supporting browsers.":["Unable to paste styles. This feature is only available on secure (https) sites in supporting browsers."],"Media List":["Media List"],"Image inserted.":["Image inserted."],"Image uploaded and inserted.":["Image uploaded and inserted."],"External images can be removed by the external provider without warning and could even have legal compliance issues related to privacy legislation.":["External images can be removed by the external provider without warning and could even have legal compliance issues related to privacy legislation."],"This image cannot be uploaded to your Media Library, but it can still be inserted as an external image.":["This image cannot be uploaded to your Media Library, but it can still be inserted as an external image."],"Insert external image":["Insert external image"],"Report %s":["Report %s"],"Pattern":["Pattern"],"Go to parent Navigation block":["Go to parent Navigation block"],"Stretch items":["Stretch items"],"Block vertical alignment setting\u0004Space between":["Space between"],"Block vertical alignment setting\u0004Stretch to fill":["Stretch to fill"],"Fixed":["Fixed"],"Fit contents.":["Fit contents."],"Specify a fixed height.":["Specify a fixed height."],"Specify a fixed width.":["Specify a fixed width."],"Stretch to fill available space.":["Stretch to fill available space."],"Move %1$d blocks from position %2$d left by one place":["Move %1$d blocks from position %2$d left by one place"],"Move %1$d blocks from position %2$d down by one place":["Move %1$d blocks from position %2$d down by one place"],"%s: Sorry, you are not allowed to upload this file type.":["%s: Sorry, you are not allowed to upload this file type."],"Hover":["Hover"],"H6":["H6"],"H5":["H5"],"H4":["H4"],"H3":["H3"],"H2":["H2"],"H1":["H1"],"Set the width of the main content area.":["Set the width of the main content area."],"Unset":["Unset"],"Now":["Now"],"short date format without the year\u0004M j":["M j"],"Nested blocks use content width with options for full and wide widths.":["Nested blocks use content width with options for full and wide widths."],"Inner blocks use content width":["Inner blocks use content width"],"Font":["Font"],"Apply to all blocks inside":["Apply to all blocks inside"],"Blocks cannot be moved right as they are already are at the rightmost position":["Blocks cannot be moved right as they are already are at the rightmost position"],"Blocks cannot be moved left as they are already are at the leftmost position":["Blocks cannot be moved left as they are already are at the leftmost position"],"All blocks are selected, and cannot be moved":["All blocks are selected, and cannot be moved"],"Constrained":["Constrained"],"Spacing control":["Spacing control"],"Custom (%s)":["Custom (%s)"],"You are currently in zoom-out mode.":["You are currently in zoom-out mode."],"Close Block Inserter":["Close Block Inserter"],"Link sides":["Link sides"],"Unlink sides":["Unlink sides"],"Select the size of the source image.":["Select the size of the source image."],"Use featured image":["Use featured image"],"Delete selection.":["Delete selection."],"Link is empty":["Link is empty"],"Enter a date or time format string<\/Link>.":["Enter a date or time format string<\/Link>."],"Custom format":["Custom format"],"Choose a format":["Choose a format"],"Enter your own date format":["Enter your own date format"],"long date format\u0004F j, Y":["F j, Y"],"medium date format with time\u0004M j, Y g:i A":["j M Y g:i A"],"medium date format\u0004M j, Y":["j M Y"],"short date format with time\u0004n\/j\/Y g:i A":["j\/n\/Y g:i A"],"short date format\u0004n\/j\/Y":["j\/n\/Y"],"Default format":["Default format"],"Date format":["Date format"],"Transform to %s":["Transform to %s"],"%s blocks deselected.":["%s blocks deselected."],"%s deselected.":["%s deselected."],"Transparent text may be hard for people to read.":["Transparent text may be hard for people to read."],"Select parent block (%s)":["Select parent block (%s)"],"Lock":["Lock"],"Unlock":["Unlock"],"Lock all":["Lock all"],"Lock %s":["Lock %s"],"Add default block":["Add default block"],"Alignment option\u0004None":["None"],"font weight\u0004Black":["Black"],"font weight\u0004Extra Bold":["Extra Bold"],"font weight\u0004Bold":["Bold"],"font weight\u0004Semi Bold":["Semi Bold"],"font weight\u0004Medium":["Medium"],"font weight\u0004Regular":["Regular"],"font weight\u0004Light":["Light"],"font weight\u0004Extra Light":["Extra Light"],"font weight\u0004Thin":["Thin"],"font style\u0004Italic":["Italic"],"font style\u0004Regular":["Regular"],"Set custom size":["Set custom size"],"Use size preset":["Use size preset"],"Rename":["Rename"],"link color":["link colour"],"Elements":["Elements"],"%d block is hidden.":["%d block is hidden.","%d blocks are hidden."],"Explore all patterns":["Explore all patterns"],"Block spacing":["Block spacing"],"Letter spacing":["Letter spacing"],"Radius":["Radius"],"Link radii":["Link radii"],"Unlink radii":["Unlink radii"],"Bottom right":["Bottom right"],"Bottom left":["Bottom left"],"Top right":["Top right"],"Top left":["Top left"],"Max %s wide":["Maximum %s wide"],"Flow":["Flow"],"Orientation":["Orientation"],"Allow to wrap to multiple lines":["Allow to wrap to multiple lines"],"Justification":["Justification"],"Flex":["Flex"],"Currently selected font appearance: %s":["Currently selected font appearance: %s"],"Currently selected font style: %s":["Currently selected font style: %s"],"Currently selected font weight: %s":["Currently selected font weight: %s"],"No selected font appearance":["No selected font appearance"],"Create a two-tone color effect without losing your original image.":["Create a two-tone colour effect without losing your original image."],"Displays more block tools":["Displays more block tools"],"Indicates this palette is created by the user.\u0004Custom":["Custom"],"Indicates this palette comes from WordPress.\u0004Default":["Default"],"Indicates this palette comes from the theme.\u0004Theme":["Theme"],"No preview available.":["No preview available."],"Space between items":["Space between items"],"Justify items right":["Justify items right"],"Justify items center":["Justify items centre"],"Justify items left":["Justify items left"],"Carousel view":["Carousel view"],"Next pattern":["Next pattern"],"Previous pattern":["Previous pattern"],"Choose":["Choose"],"Patterns list":["Patterns list"],"Type \/ to choose a block":["Type \/ to choose a block"],"Use left and right arrow keys to move through blocks":["Use left and right arrow keys to move through blocks"],"Customize the width for all elements that are assigned to the center or wide columns.":["Customise the width for all elements that are assigned to the centre or wide columns."],"Layout":["Layout"],"Apply duotone filter":["Apply duotone filter"],"Duotone":["Duotone"],"Margin":["Margin"],"Vertical":["Vertical"],"Horizontal":["Horizontal"],"Change items justification":["Change items justification"],"Editor canvas":["Editor canvas"],"Block vertical alignment setting\u0004Align bottom":["Align bottom"],"Block vertical alignment setting\u0004Align middle":["Align middle"],"Block vertical alignment setting\u0004Align top":["Align top"],"Transform to variation":["Transform to variation"],"More":["More"],"Drag":["Drag"],"Block patterns":["Block patterns"],"Font style":["Font style"],"Font weight":["Font weight"],"Letter case":["Letter case"],"Capitalize":["Capitalise"],"Lowercase":["Lower case"],"Uppercase":["Upper case"],"Decoration":["Decoration"],"Add an anchor":["Add an anchor"],"Captions":["Captions"],"Appearance":["Appearance"],"Create: %s<\/mark>":["Create: %s<\/mark>"],"Block pattern \"%s\" inserted.":["Block pattern \"%s\" inserted."],"Filter patterns":["Filter patterns"],"Rotate":["Rotate"],"Zoom":["Zoom"],"Could not edit image. %s":["Could not edit image. %s"],"Portrait":["Portrait"],"Landscape":["Landscape"],"Aspect Ratio":["Aspect Ratio"],"Design":["Design"],"Move the selected block(s) down.":["Move the selected block(s) down."],"Move the selected block(s) up.":["Move the selected block(s) up."],"Current media URL:":["Current media URL:"],"Creating":["Creating"],"An unknown error occurred during creation. Please try again.":["An unknown error occurred during creation. Please try again."],"Image size presets":["Image size presets"],"Block variations":["Block variations"],"Block navigation structure":["Block navigation structure"],"Block %1$d of %2$d, Level %3$d.":["Block %1$d of %2$d, Level %3$d."],"Moved %d block to clipboard.":["Moved %d block to clipboard.","Moved %d blocks to clipboard."],"Copied %d block to clipboard.":["Copied %d block to clipboard.","Copied %d blocks to clipboard."],"Moved \"%s\" to clipboard.":["Moved \"%s\" to clipboard."],"Copied \"%s\" to clipboard.":["Copied \"%s\" to clipboard."],"Browse all":["Browse all"],"Browse all. This will open the main inserter panel in the editor toolbar.":["Browse all. This will open the main inserter panel in the editor toolbar."],"A tip for using the block editor":["A tip for using the block editor"],"Patterns":["Patterns"],"%d block added.":["%d block added.","%d blocks added"],"Change a block's type by pressing the block icon on the toolbar.":["Change a block's type by pressing the block icon on the toolbar."],"Drag files into the editor to automatically insert media blocks.":["Drag files into the editor to automatically insert media blocks."],"Outdent a list by pressing backspace<\/kbd> at the beginning of a line.":["Outdent a list by pressing backspace<\/kbd> at the beginning of a line."],"Indent a list by pressing space<\/kbd> at the beginning of a line.":["Indent a list by pressing space<\/kbd> at the beginning of a line."],"Open Colors Selector":["Open colours selector"],"Change matrix alignment":["Change matrix alignment"],"Spacing":["Spacing"],"Padding":["Padding"],"Typography":["Typography"],"Line height":["Line height"],"Block %1$s is at the beginning of the content and can\u2019t be moved left":["Block %1$s is at the beginning of the content and can\u2019t be moved left"],"Block %1$s is at the beginning of the content and can\u2019t be moved up":["Block %1$s is at the beginning of the content and can\u2019t be moved up"],"Block %1$s is at the end of the content and can\u2019t be moved left":["Block %1$s is at the end of the content and can\u2019t be moved left"],"Block %1$s is at the end of the content and can\u2019t be moved down":["Block %1$s is at the end of the content and can\u2019t be moved down"],"Move %1$s block from position %2$d right to position %3$d":["Move %1$s block from position %2$d right to position %3$d"],"Move %1$s block from position %2$d left to position %3$d":["Move %1$s block from position %2$d left to position %3$d"],"Use the same %s on all screen sizes.":["Use the same %s on all screen sizes."],"Large screens":["Large screens"],"Medium screens":["Medium screens"],"Small screens":["Small screens"],"Text labelling a interface as controlling a given layout property (eg: margin) for a given screen size.\u0004Controls the %1$s property for %2$s viewports.":["Controls the %1$s property for %2$s viewports."],"Open Media Library":["Open Media Library"],"The media file has been replaced":["The media file has been replaced"],"Search or type URL":["Search or type URL"],"Press ENTER to add this link":["Press ENTER to add this link"],"Currently selected link settings":["Currently selected link settings"],"Select a variation to start with:":["Select a variation to start with:"],"Choose variation":["Choose variation"],"Generic label for block inserter button\u0004Add block":["Add block"],"directly add the only allowed block\u0004Add %s":["Add %s"],"%s block added":["%s block added"],"Multiple selected blocks":["Multiple selected blocks"],"Midnight":["Midnight"],"Electric grass":["Electric grass"],"Pale ocean":["Pale ocean"],"Luminous dusk":["Luminous dusk"],"Blush bordeaux":["Blush bordeaux"],"Blush light purple":["Blush light purple"],"Cool to warm spectrum":["Cool to warm spectrum"],"Very light gray to cyan bluish gray":["Very light grey to cyan bluish grey"],"Luminous vivid orange to vivid red":["Luminous vivid orange to vivid red"],"Luminous vivid amber to luminous vivid orange":["Luminous vivid amber to luminous vivid orange"],"Light green cyan to vivid green cyan":["Light green cyan to vivid green cyan"],"Vivid cyan blue to vivid purple":["Vivid cyan blue to vivid purple"],"Block breadcrumb":["Block breadcrumb"],"Gradient":["Gradient"],"Grid view":["Grid view"],"List view":["List view"],"Move right":["Move right"],"Move left":["Move left"],"Link rel":["Link rel"],"Border radius":["Border radius"],"Open in new tab":["Open in new tab"],"Group":["Group"],"Separate multiple classes with spaces.":["Separate multiple classes with spaces."],"Learn more about anchors":["Learn more about anchors"],"Enter a word or two \u2014 without spaces \u2014 to make a unique web address just for this block, called an \u201canchor\u201d. Then, you\u2019ll be able to link directly to this section of your page.":["Enter a word or two \u2013 without spaces \u2013 to make a unique web address just for this block, called an \u201canchor\u201d. Then, you\u2019ll be able to link directly to this section of your page."],"Skip":["Skip"],"This color combination may be hard for people to read.":["This colour combination may be hard for people to read."],"Add a block":["Add a block"],"While writing, you can press \/<\/kbd> to quickly insert new blocks.":["While writing, you can press \/<\/kbd> to quickly insert new blocks."],"Vivid purple":["Vivid purple"],"Block vertical alignment setting label\u0004Change vertical alignment":["Change vertical alignment"],"Ungrouping blocks from within a grouping block back into individual blocks within the Editor\u0004Ungroup":["Ungroup"],"verb\u0004Group":["Group"],"Change block type or style":["Change block type or style"],"block style\u0004Default":["Default"],"To edit this block, you need permission to upload media.":["To edit this block, you need permission to upload media."],"Block tools":["Block Tools"],"%s block selected.":["%s block selected.","%s blocks selected."],"Align text right":["Align text right"],"Align text center":["Align text centre"],"Align text left":["Align text left"],"Write":["Write"],"Heading":["Heading"],"Heading %d":["Heading %d"],"Text alignment":["Text alignment"],"Edit URL":["Edit URL"],"Fixed background":["Fixed background"],"Button":["Button"],"This block can only be used once.":["This block can only be used once."],"Find original":["Find original"],"Document":["Document"],"%d block":["%d block","%d blocks"],"Insert a new block after the selected block(s).":["Insert a new block after the selected block(s)."],"Insert a new block before the selected block(s).":["Insert a new block before the selected block(s)."],"Remove the selected block(s).":["Remove the selected block(s)."],"Duplicate the selected block(s).":["Duplicate the selected block(s)."],"Select all text when typing. Press again to select all blocks.":["Select all text when typing. Press again to select all blocks."],"Navigate to the nearest toolbar.":["Navigate to the nearest toolbar."],"Options":["Options"],"%s: This file is empty.":["%s: This file is empty."],"%s: Sorry, this file type is not supported here.":["%s: Sorry, this file type is not supported here."],"font size name\u0004Huge":["Huge"],"font size name\u0004Large":["Large"],"font size name\u0004Medium":["Medium"],"font size name\u0004Small":["Small"],"Cyan bluish gray":["Cyan bluish grey"],"Vivid cyan blue":["Vivid cyan blue"],"Pale cyan blue":["Pale cyan blue"],"Vivid green cyan":["Vivid green cyan"],"Light green cyan":["Light green cyan"],"Luminous vivid amber":["Luminous vivid amber"],"Luminous vivid orange":["Luminous vivid orange"],"Vivid red":["Vivid red"],"Pale pink":["Pale pink"],"Additional CSS class(es)":["Additional CSS class(es)"],"HTML anchor":["HTML anchor"],"Link settings":["Link settings"],"Skip to the selected block":["Skip to the selected block"],"Copy link":["Copy link"],"no title":["no title"],"Paste or type URL":["Paste or type URL"],"blocks\u0004Most used":["Most used"],"Available block types":["Available block types"],"Search for a block":["Search for a block"],"%d result found.":["%d result found.","%d results found."],"Add %s":["Add %s"],"Attempt recovery":["Attempt recovery"],"This color combination may be hard for people to read. Try using a brighter background color and\/or a darker %s.":["This colour combination may be hard for people to read. Try using a brighter background colour and\/or a darker %s."],"This color combination may be hard for people to read. Try using a darker background color and\/or a brighter %s.":["This colour combination may be hard for people to read. Try using a darker background colour and\/or a brighter %s."],"Transform to":["Transform to"],"Change type of %d block":["Change type of %d block","Change type of %d blocks"],"Duplicate":["Duplicate"],"More options":["More options"],"Edit visually":["Edit visually"],"Edit as HTML":["Edit as HTML"],"Move %1$d blocks from position %2$d right by one place":["Move %1$d blocks from position %2$d right by one place"],"Move %1$d blocks from position %2$d up by one place":["Move %1$d blocks from position %2$d up by one place"],"Blocks cannot be moved down as they are already at the bottom":["Blocks cannot be moved down as they are already at the bottom"],"Blocks cannot be moved up as they are already at the top":["Blocks cannot be moved up as they are already at the top"],"Block %1$s is at the beginning of the content and can\u2019t be moved right":["Block %1$s is at the beginning of the content and can\u2019t be moved right"],"Move %1$s block from position %2$d up to position %3$d":["Move %1$s block from position %2$d up to position %3$d"],"Block %1$s is at the end of the content and can\u2019t be moved right":["Block %1$s is at the end of the content and can\u2019t be moved right"],"Move %1$s block from position %2$d down to position %3$d":["Move %1$s block from position %2$d down to position %3$d"],"Block %s is the only block, and cannot be moved":["Block %s is the only block, and cannot be moved"],"Block: %s":["Block: %s"],"Block contains unexpected or invalid content.":["Block contains unexpected or invalid content."],"imperative verb\u0004Resolve":["Resolve"],"Convert to Blocks":["Convert to Blocks"],"Resolve Block":["Resolve Block"],"Convert to Classic Block":["Convert to Classic Block"],"This block has encountered an error and cannot be previewed.":["This block has encountered an error and cannot be previewed."],"No block selected.":["No block selected."],"After Conversion":["After Conversion"],"Convert to HTML":["Convert to HTML"],"Current":["Current"],"Change alignment":["Change alignment"],"Full width":["Full width"],"Wide width":["Wide width"],"Change text alignment":["Change text alignment"],"Reset":["Reset"],"font size name\u0004Normal":["Normal"],"No results.":["No results."],"%d result found, use up and down arrow keys to navigate.":["%d result found, use up and down arrow keys to navigate.","%d results found, use up and down arrow keys to navigate."],"No blocks found.":["No blocks found."],"Blocks":["Blocks"],"%s item":["%s item","%s items"],"Invalid source":["Invalid source"],"Additional CSS":["Additional CSS"],"Original":["Original"],"Link selected.":["Link selected."],"Paste URL or type to search":["Paste URL or type to search"],"Minimum height":["Minimum height"],"Color":["Colour"],"List View":["List View"],"Back":["Back"],"Auto":["Auto"],"Tools":["Tools"],"Rows":["Rows"],"Replace":["Replace"],"Align left":["Align left"],"Align center":["Align centre"],"Align right":["Align right"],"Move up":["Move up"],"Move down":["Move down"],"Insert from URL":["Insert from URL"],"Video":["Video"],"Audio":["Audio"],"Columns":["Columns"],"Large":["Large"],"Media Library":["Media Library"],"Clear":["Clear"],"Clear selection.":["Clear selection."],"Colors":["Colours"],"text color":["text colour"],"Mixed":["Mixed"],"Remove":["Remove"],"Styles":["Styles"],"Link":["Link"],"Content width":["Content width"],"User":["User"],"%s: This file exceeds the maximum upload size for this site.":["%s: This file exceeds the maximum upload size for this site."],"Custom":["Custom"],"Image":["Image"],"Previous page":["Previous page"],"Next page":["Next page"],"Remove link":["Remove link"],"Insert link":["Insert link"],"Justify text":["Justify text"],"Source":["Source"],"Background":["Background"],"Align":["Align"],"Type":["Type"],"Bottom":["Bottom"],"Top":["Top"],"Dimensions":["Dimensions"],"Border":["Border"],"Copy":["Copy"],"Cut":["Cut"],"Align text":["Align text"],"Strikethrough":["Strikethrough"],"Underline":["Underline"],"Paragraph":["Paragraph"],"Column":["Column"],"Row":["Row"],"Insert":["Insert"],", ":[", "],"Text":["Text"],"Search results for \"%s\"":["Search results for \"%s\""],"No results found.":["No results found."],"Default":["Default"],"Height":["Height"],"Theme":["Theme"],"Settings":["Settings"],"Edit link":["Edit link"],"Width":["Width"],"White":["White"],"Black":["Black"],"Close":["Close"],"Search":["Search"],"Media":["Media"],"Caption":["Caption"],"Size":["Size"],"Full Size":["Full Size"],"Medium":["Medium"],"Right":["Right"],"Left":["Left"],"Thumbnail":["Thumbnail"],"Scale":["Scale"],"Content":["Content"],"Cancel":["Cancel"],"Plugins":["Plugins"],"Preview":["Preview"],"Submit":["Submit"],"Done":["Done"],"None":["None"],"Name":["Name"],"Advanced":["Advanced"],"Save":["Save"],"Delete":["Delete"],"Attributes":["Attributes"],"Publish":["Publish"],"Apply":["Apply"],"Undo":["Undo"],"Edit":["Edit"],"URL":["URL"]}},"comment":{"reference":"wp-includes\/js\/dist\/block-editor.js"}} \ No newline at end of file diff --git a/web/app/languages/en_GB-81c889563f09dd13de1701135dc62941.json b/web/app/languages/en_GB-81c889563f09dd13de1701135dc62941.json old mode 100755 new mode 100644 index 0a6e7beb..3a42d06e --- a/web/app/languages/en_GB-81c889563f09dd13de1701135dc62941.json +++ b/web/app/languages/en_GB-81c889563f09dd13de1701135dc62941.json @@ -1 +1 @@ -{"translation-revision-date":"2024-11-14 20:13:08+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Showing %1$s of %2$s media items":["Showing %1$s of %2$s media items"],"Jump to first loaded item":["Jump to first loaded item"],"Load more":["Load more"],"Number of media items displayed: %d. Click load more for more results.":["Number of media items displayed: %d. Click \u201cload more\u201d for more results."],"The file URL has been copied to your clipboard":["The file URL has been copied to your clipboard"],"%s item selected":["%s item selected","%s items selected"],"Number of media items displayed: %d. Scroll the page for more results.":["Number of media items displayed: %d. Scroll the page for more results."]}},"comment":{"reference":"wp-includes\/js\/media-views.js"}} \ No newline at end of file +{"translation-revision-date":"2025-04-06 12:37:11+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Showing %1$s of %2$s media items":["Showing %1$s of %2$s media items"],"Jump to first loaded item":["Jump to first loaded item"],"Load more":["Load more"],"Number of media items displayed: %d. Click load more for more results.":["Number of media items displayed: %d. Click \u201cload more\u201d for more results."],"The file URL has been copied to your clipboard":["The file URL has been copied to your clipboard"],"%s item selected":["%s item selected","%s items selected"],"Number of media items displayed: %d. Scroll the page for more results.":["Number of media items displayed: %d. Scroll the page for more results."]}},"comment":{"reference":"wp-includes\/js\/media-views.js"}} \ No newline at end of file diff --git a/web/app/languages/en_GB-81d6f084cb273e02e15b01bd9ece87f7.json b/web/app/languages/en_GB-81d6f084cb273e02e15b01bd9ece87f7.json old mode 100755 new mode 100644 index ad33be96..638e7ead --- a/web/app/languages/en_GB-81d6f084cb273e02e15b01bd9ece87f7.json +++ b/web/app/languages/en_GB-81d6f084cb273e02e15b01bd9ece87f7.json @@ -1 +1 @@ -{"translation-revision-date":"2024-11-14 20:17:10+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Application password has been copied to your clipboard.":["Application password has been copied to your clipboard."],"Your new password has not been saved.":["Your new password has not been saved."],"Hide":["Hide"],"Confirm use of weak password":["Confirm use of weak password"],"Hide password":["Hide password"],"Show password":["Show password"],"Show":["Show"],"The changes you made will be lost if you navigate away from this page.":["The changes you made will be lost if you navigate away from this page."]}},"comment":{"reference":"wp-admin\/js\/user-profile.js"}} \ No newline at end of file +{"translation-revision-date":"2025-05-25 12:26:44+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Application password has been copied to your clipboard.":["Application password has been copied to your clipboard."],"Your new password has not been saved.":["Your new password has not been saved."],"Hide":["Hide"],"Confirm use of weak password":["Confirm use of weak password"],"Hide password":["Hide password"],"Show password":["Show password"],"Show":["Show"],"The changes you made will be lost if you navigate away from this page.":["The changes you made will be lost if you navigate away from this page."]}},"comment":{"reference":"wp-admin\/js\/user-profile.js"}} \ No newline at end of file diff --git a/web/app/languages/en_GB-8240df461220d1d3a028a9a4c5652a5b.json b/web/app/languages/en_GB-8240df461220d1d3a028a9a4c5652a5b.json old mode 100755 new mode 100644 index b798f094..4f4cef73 --- a/web/app/languages/en_GB-8240df461220d1d3a028a9a4c5652a5b.json +++ b/web/app/languages/en_GB-8240df461220d1d3a028a9a4c5652a5b.json @@ -1 +1 @@ -{"translation-revision-date":"2024-11-14 20:17:10+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"There is %s error which must be fixed before you can update this file.":["There is %s error which must be fixed before you can update this file.","There are %s errors which must be fixed before you can update this file."],"Something went wrong. Your change may not have been saved. Please try again. There is also a chance that you may need to manually fix and upload the file over FTP.":["Something went wrong. Your change may not have been saved. Please try again. There is also a chance that you may need to manually fix and upload the file over FTP."],"The changes you made will be lost if you navigate away from this page.":["The changes you made will be lost if you navigate away from this page."]}},"comment":{"reference":"wp-admin\/js\/theme-plugin-editor.js"}} \ No newline at end of file +{"translation-revision-date":"2025-05-25 12:26:44+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 occurred while saving your changes. Please try again. If the problem persists, you may need to manually update the file via FTP.":["An error occurred while saving your changes. Please try again. If the problem persists, you may need to manually update the file via FTP."],"There is %s error which must be fixed before you can update this file.":["There is %s error which must be fixed before you can update this file.","There are %s errors which must be fixed before you can update this file."],"The changes you made will be lost if you navigate away from this page.":["The changes you made will be lost if you navigate away from this page."]}},"comment":{"reference":"wp-admin\/js\/theme-plugin-editor.js"}} \ No newline at end of file diff --git a/web/app/languages/en_GB-8860e58c20c6a2ab5876a0f07be43bd9.json b/web/app/languages/en_GB-8860e58c20c6a2ab5876a0f07be43bd9.json old mode 100755 new mode 100644 index 54baf216..a1edb7ec --- a/web/app/languages/en_GB-8860e58c20c6a2ab5876a0f07be43bd9.json +++ b/web/app/languages/en_GB-8860e58c20c6a2ab5876a0f07be43bd9.json @@ -1 +1 @@ -{"translation-revision-date":"2024-11-14 20:13:08+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Use up and down arrow keys to resize the meta box panel.":["Use up and down arrow keys to resize the meta box panel."],"Meta Boxes":["Meta boxes"],"New to the block editor? Want to learn more about using it? Here's a detailed guide.<\/a>":["New to the block editor? Want to learn more about using it? Here's a detailed guide.<\/a>"],"pattern (singular)\u0004Synced":["Synced"],"Sync this pattern across multiple locations.":["Sync this pattern across multiple locations."],"Fullscreen on.":["Fullscreen on."],"Fullscreen off.":["Fullscreen off."],"Show and hide the admin user interface":["Show and hide the admin user interface"],"Enter fullscreen":["Enter fullscreen"],"My pattern":["My pattern"],"Create pattern":["Create pattern"],"Hide & Reload Page":["Hide & Reload Page"],"Show & Reload Page":["Show & Reload Page"],"Manage patterns":["Manage patterns"],"https:\/\/wordpress.org\/documentation\/article\/wordpress-block-editor\/":["https:\/\/wordpress.org\/documentation\/article\/wordpress-block-editor\/"],"\"%s\" successfully created.":["\"%s\" successfully created."],"The \"%s\" plugin has encountered an error and cannot be rendered.":["The \"%s\" plugin has encountered an error and cannot be rendered."],"Drag to resize":["Drag to resize"],"Templates help define the layout of the site. You can customize all aspects of your posts and pages using blocks and patterns in this editor.":["Templates help define the layout of the site. You can customise all aspects of your posts and pages using blocks and patterns in this editor."],"Welcome to the template editor":["Welcome to the template editor"],"Use theme styles":["Use theme styles"],"Make the editor look like your theme.":["Make the editor look like your theme."],"Learn how to use the block editor":["Learn how to use the block editor"],"All of the blocks available to you live in the block library. You\u2019ll find it wherever you see the icon.":["All of the blocks available to you live in the block library. You\u2019ll find it wherever you see the icon."],"Get to know the block library":["Get to know the block library"],"Each block comes with its own set of controls for changing things like color, width, and alignment. These will show and hide automatically when you have a block selected.":["Each block comes with its own set of controls for changing things like colour, width and alignment. These will show and hide automatically when you have a block selected."],"Make each block your own":["Make each block your own"],"In the WordPress editor, each paragraph, image, or video is presented as a distinct \u201cblock\u201d of content.":["In the WordPress editor, each paragraph, image or video is presented as a distinct \u201cblock\u201d of content."],"Get started":["Get started"],"Welcome to the block editor":["Welcome to the block editor"],"inserter":["inserter"],"Welcome Guide":["Welcome Guide"],"A page reload is required for this change. Make sure your content is saved before reloading.":["A page reload is required for this change. Make sure your content is saved before reloading."],"Fullscreen mode deactivated":["Fullscreen mode deactivated"],"Fullscreen mode activated":["Fullscreen mode activated"],"Custom fields":["Custom fields"],"Create":["Create"],"Fullscreen mode":["Fullscreen mode"],"Site Icon":["Site Icon"],"Back":["Back"],"Exit fullscreen":["Exit fullscreen"],"Toggle fullscreen mode.":["Toggle fullscreen mode."],"Name":["Name"],"Advanced":["Advanced"],"Undo":["Undo"],"Edit":["Edit"]}},"comment":{"reference":"wp-includes\/js\/dist\/edit-post.js"}} \ No newline at end of file +{"translation-revision-date":"2025-04-06 12:37:11+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Explore all blocks":["Explore all blocks"],"Customize each block":["Customise each block"],"Welcome to the editor":["Welcome to the editor"],"Enable or disable fullscreen mode.":["Enable or disable fullscreen mode."],"Use up and down arrow keys to resize the meta box panel.":["Use up and down arrow keys to resize the meta box panel."],"Meta Boxes":["Meta boxes"],"New to the block editor? Want to learn more about using it? Here's a detailed guide.<\/a>":["New to the block editor? Want to learn more about using it? Here's a detailed guide.<\/a>"],"pattern (singular)\u0004Synced":["Synced"],"Sync this pattern across multiple locations.":["Sync this pattern across multiple locations."],"Fullscreen on.":["Fullscreen on."],"Fullscreen off.":["Fullscreen off."],"Show and hide the admin user interface":["Show and hide the admin user interface"],"Enter fullscreen":["Enter fullscreen"],"My pattern":["My pattern"],"Create pattern":["Create pattern"],"Hide & Reload Page":["Hide & Reload Page"],"Show & Reload Page":["Show & Reload Page"],"Manage patterns":["Manage patterns"],"https:\/\/wordpress.org\/documentation\/article\/wordpress-block-editor\/":["https:\/\/wordpress.org\/documentation\/article\/wordpress-block-editor\/"],"\"%s\" successfully created.":["\"%s\" successfully created."],"The \"%s\" plugin has encountered an error and cannot be rendered.":["The \"%s\" plugin has encountered an error and cannot be rendered."],"Drag to resize":["Drag to resize"],"Templates help define the layout of the site. You can customize all aspects of your posts and pages using blocks and patterns in this editor.":["Templates help define the layout of the site. You can customise all aspects of your posts and pages using blocks and patterns in this editor."],"Welcome to the template editor":["Welcome to the template editor"],"Use theme styles":["Use theme styles"],"Make the editor look like your theme.":["Make the editor look like your theme."],"All of the blocks available to you live in the block library. You\u2019ll find it wherever you see the icon.":["All of the blocks available to you live in the block library. You\u2019ll find it wherever you see the icon."],"Each block comes with its own set of controls for changing things like color, width, and alignment. These will show and hide automatically when you have a block selected.":["Each block comes with its own set of controls for changing things like colour, width and alignment. These will show and hide automatically when you have a block selected."],"In the WordPress editor, each paragraph, image, or video is presented as a distinct \u201cblock\u201d of content.":["In the WordPress editor, each paragraph, image or video is presented as a distinct \u201cblock\u201d of content."],"Get started":["Get started"],"inserter":["inserter"],"Welcome Guide":["Welcome Guide"],"A page reload is required for this change. Make sure your content is saved before reloading.":["A page reload is required for this change. Make sure your content is saved before reloading."],"Fullscreen mode deactivated.":["Fullscreen mode deactivated."],"Fullscreen mode activated.":["Fullscreen mode activated."],"Custom fields":["Custom fields"],"Create":["Create"],"Fullscreen mode":["Fullscreen mode"],"Site Icon":["Site Icon"],"Back":["Back"],"Exit fullscreen":["Exit fullscreen"],"Learn more":["Learn more"],"Name":["Name"],"Advanced":["Advanced"],"Undo":["Undo"],"Edit":["Edit"]}},"comment":{"reference":"wp-includes\/js\/dist\/edit-post.js"}} \ No newline at end of file diff --git a/web/app/languages/en_GB-93882e8f9976382d7f724ac595ed7151.json b/web/app/languages/en_GB-93882e8f9976382d7f724ac595ed7151.json old mode 100755 new mode 100644 index 3a827019..4c1a21ce --- a/web/app/languages/en_GB-93882e8f9976382d7f724ac595ed7151.json +++ b/web/app/languages/en_GB-93882e8f9976382d7f724ac595ed7151.json @@ -1 +1 @@ -{"translation-revision-date":"2024-11-14 20:13:08+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Your session has expired. You can log in again from this page or go to the login page.":["Your session has expired. You can log in again from this page or go to the login page."]}},"comment":{"reference":"wp-includes\/js\/wp-auth-check.js"}} \ No newline at end of file +{"translation-revision-date":"2025-04-06 12:37:11+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Your session has expired. You can log in again from this page or go to the login page.":["Your session has expired. You can log in again from this page or go to the login page."]}},"comment":{"reference":"wp-includes\/js\/wp-auth-check.js"}} \ No newline at end of file diff --git a/web/app/languages/en_GB-947c76bb5095da30e16668eec15406b2.json b/web/app/languages/en_GB-947c76bb5095da30e16668eec15406b2.json old mode 100755 new mode 100644 index d8016703..bceb46c2 --- a/web/app/languages/en_GB-947c76bb5095da30e16668eec15406b2.json +++ b/web/app/languages/en_GB-947c76bb5095da30e16668eec15406b2.json @@ -1 +1 @@ -{"translation-revision-date":"2024-11-14 20:13:08+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Get started here":["Get started here"],"Interested in creating your own block?":["Interested in creating your own block?"],"Select a block to install and add it to your post.":["Select a block to install and add it to your post."],"Available to install":["Available to install"],"No results available from your installed blocks.":["No results available from your installed blocks."],"%d additional block is available to install.":["%d additional block is available to install.","%d additional blocks are available to install."],"Blocks available for install":["Blocks available for install"],"Install block":["Install block"],"%1$s by %2$s<\/span>":["%1$s by %2$s<\/span>"],"Installing\u2026":["Installing\u2026"],"Install %1$s. %2$s stars with %3$s review.":["Install %1$s. %2$s stars with %3$s review.","Install %1$s. %2$s stars with %3$s reviews."],"Try reloading the page.":["Try reloading the page."],"Block %s installed and added.":["Block %s installed and added."],"Your site doesn\u2019t include support for the %s block. You can try installing the block, convert it to a Custom HTML block, or remove it entirely.":["Your site doesn\u2019t include support for the %s block. You can try installing the block, convert it to a Custom HTML block, or remove it entirely."],"Your site doesn\u2019t include support for the %s block. You can try installing the block or remove it entirely.":["Your site doesn\u2019t include support for the %s block. You can try installing the block or remove it entirely."],"The following block has been added to your site.":["The following block has been added to your site.","The following blocks have been added to your site."],"Added: %d block":["Added: %d block","Added: %d blocks"],"Error installing block. You can reload the page and try again.":["Error installing block. You can reload the page and try again."],"This block is already installed. Try reloading the page.":["This block is already installed. Try reloading the page."],"An error occurred.":["An error occurred."],"Error registering block. Try reloading the page.":["Error registering block. Try reloading the page."],"%s out of 5 stars":["%s out of 5 stars"],"Keep as HTML":["Keep as HTML"],"Install %s":["Install %s"],"Installed!":["Installed!"],"No results found.":["No results found."],"By %s":["By %s"]}},"comment":{"reference":"wp-includes\/js\/dist\/block-directory.js"}} \ No newline at end of file +{"translation-revision-date":"2025-04-06 12:37:11+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Get started here":["Get started here"],"Interested in creating your own block?":["Interested in creating your own block?"],"Select a block to install and add it to your post.":["Select a block to install and add it to your post."],"Available to install":["Available to install"],"No results available from your installed blocks.":["No results available from your installed blocks."],"%d additional block is available to install.":["%d additional block is available to install.","%d additional blocks are available to install."],"Blocks available for install":["Blocks available for install"],"Install block":["Install block"],"%1$s by %2$s<\/span>":["%1$s by %2$s<\/span>"],"Installing\u2026":["Installing\u2026"],"Install %1$s. %2$s stars with %3$s review.":["Install %1$s. %2$s stars with %3$s review.","Install %1$s. %2$s stars with %3$s reviews."],"Try reloading the page.":["Try reloading the page."],"Block %s installed and added.":["Block %s installed and added."],"Your site doesn\u2019t include support for the %s block. You can try installing the block, convert it to a Custom HTML block, or remove it entirely.":["Your site doesn\u2019t include support for the %s block. You can try installing the block, convert it to a Custom HTML block, or remove it entirely."],"Your site doesn\u2019t include support for the %s block. You can try installing the block or remove it entirely.":["Your site doesn\u2019t include support for the %s block. You can try installing the block or remove it entirely."],"The following block has been added to your site.":["The following block has been added to your site.","The following blocks have been added to your site."],"Added: %d block":["Added: %d block","Added: %d blocks"],"Error installing block. You can reload the page and try again.":["Error installing block. You can reload the page and try again."],"This block is already installed. Try reloading the page.":["This block is already installed. Try reloading the page."],"An error occurred.":["An error occurred."],"Error registering block. Try reloading the page.":["Error registering block. Try reloading the page."],"%s out of 5 stars":["%s out of 5 stars"],"Keep as HTML":["Keep as HTML"],"Install %s":["Install %s"],"Installed!":["Installed!"],"No results found.":["No results found."],"By %s":["By %s"]}},"comment":{"reference":"wp-includes\/js\/dist\/block-directory.js"}} \ No newline at end of file diff --git a/web/app/languages/en_GB-9b256ea9cd54df92095e04c76758ceb0.json b/web/app/languages/en_GB-9b256ea9cd54df92095e04c76758ceb0.json old mode 100755 new mode 100644 index d5d9ffc2..8b273647 --- a/web/app/languages/en_GB-9b256ea9cd54df92095e04c76758ceb0.json +++ b/web/app/languages/en_GB-9b256ea9cd54df92095e04c76758ceb0.json @@ -1 +1 @@ -{"translation-revision-date":"2024-11-14 20:17:10+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Some selected posts have this category":["Some selected posts have this category"],"All selected items have been removed. Select new items to use Bulk Actions.":["All selected items have been removed. Select new items to use Bulk Actions."],"Remove “%s” from Bulk Edit":["Remove “%s” from Bulk Edit"],"Error while saving the changes.":["Error while saving the changes."],"Changes saved.":["Changes saved."],"Item removed.":["Item removed."],"tag delimiter\u0004,":[","],"(no title)":["(no title)"]}},"comment":{"reference":"wp-admin\/js\/inline-edit-post.js"}} \ No newline at end of file +{"translation-revision-date":"2025-05-25 12:26:44+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Some selected posts have this category":["Some selected posts have this category"],"All selected items have been removed. Select new items to use Bulk Actions.":["All selected items have been removed. Select new items to use Bulk Actions."],"Remove “%s” from Bulk Edit":["Remove “%s” from Bulk Edit"],"Error while saving the changes.":["Error while saving the changes."],"Changes saved.":["Changes saved."],"Item removed.":["Item removed."],"tag delimiter\u0004,":[","],"(no title)":["(no title)"]}},"comment":{"reference":"wp-admin\/js\/inline-edit-post.js"}} \ No newline at end of file diff --git a/web/app/languages/en_GB-9c3519f4870fac83dc0dbf18cb6bd4c4.json b/web/app/languages/en_GB-9c3519f4870fac83dc0dbf18cb6bd4c4.json old mode 100755 new mode 100644 index 8342d566..fe0d3944 --- a/web/app/languages/en_GB-9c3519f4870fac83dc0dbf18cb6bd4c4.json +++ b/web/app/languages/en_GB-9c3519f4870fac83dc0dbf18cb6bd4c4.json @@ -1 +1 @@ -{"translation-revision-date":"2024-11-14 20:17:10+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Clear color":["Clear colour"],"Select default color":["Select default colour"],"Color value":["Colour value"],"Select Color":["Select Colour"],"Clear":["Clear"],"Default":["Default"]}},"comment":{"reference":"wp-admin\/js\/color-picker.js"}} \ No newline at end of file +{"translation-revision-date":"2025-05-25 12:26:44+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Clear color":["Clear colour"],"Select default color":["Select default colour"],"Color value":["Colour value"],"Select Color":["Select Colour"],"Clear":["Clear"],"Default":["Default"]}},"comment":{"reference":"wp-admin\/js\/color-picker.js"}} \ No newline at end of file diff --git a/web/app/languages/en_GB-9d47a87c240c1d10701cd6a02b28aa1b.json b/web/app/languages/en_GB-9d47a87c240c1d10701cd6a02b28aa1b.json old mode 100755 new mode 100644 index d2ddf246..0c1c8a31 --- a/web/app/languages/en_GB-9d47a87c240c1d10701cd6a02b28aa1b.json +++ b/web/app/languages/en_GB-9d47a87c240c1d10701cd6a02b28aa1b.json @@ -1 +1 @@ -{"translation-revision-date":"2024-11-14 20:17:10+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Term added.":["Term added."],"Term removed.":["Term removed."],"Remove term:":["Remove term:"],"tag delimiter\u0004,":[","]}},"comment":{"reference":"wp-admin\/js\/tags-box.js"}} \ No newline at end of file +{"translation-revision-date":"2025-05-25 12:26:44+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Term added.":["Term added."],"Term removed.":["Term removed."],"Remove term:":["Remove term:"],"tag delimiter\u0004,":[","]}},"comment":{"reference":"wp-admin\/js\/tags-box.js"}} \ No newline at end of file diff --git a/web/app/languages/en_GB-a25d1cc7bf7ca0b4e114f6bea64943f4.json b/web/app/languages/en_GB-a25d1cc7bf7ca0b4e114f6bea64943f4.json old mode 100755 new mode 100644 index d7fac905..09f6247c --- a/web/app/languages/en_GB-a25d1cc7bf7ca0b4e114f6bea64943f4.json +++ b/web/app/languages/en_GB-a25d1cc7bf7ca0b4e114f6bea64943f4.json @@ -1 +1 @@ -{"translation-revision-date":"2024-11-14 20:13:08+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Tilde":["Tilde"],"Backtick":["Backtick"],"Period":["Period"],"Comma":["Comma"]}},"comment":{"reference":"wp-includes\/js\/dist\/keycodes.js"}} \ No newline at end of file +{"translation-revision-date":"2025-04-06 12:37:11+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Tilde":["Tilde"],"Backtick":["Backtick"],"Period":["Period"],"Comma":["Comma"]}},"comment":{"reference":"wp-includes\/js\/dist\/keycodes.js"}} \ No newline at end of file diff --git a/web/app/languages/en_GB-a2796e57f680e25d84c4b352ee6d7280.json b/web/app/languages/en_GB-a2796e57f680e25d84c4b352ee6d7280.json old mode 100755 new mode 100644 index 388ba372..17fcdb93 --- a/web/app/languages/en_GB-a2796e57f680e25d84c4b352ee6d7280.json +++ b/web/app/languages/en_GB-a2796e57f680e25d84c4b352ee6d7280.json @@ -1 +1 @@ -{"translation-revision-date":"2024-11-14 20:13:08+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"App icon preview: The current image has no alternative text. The file name is: %s":["App icon preview: the current image has no alternative text. The file name is: %s"],"App icon preview: Current image: %s":["App icon preview: current image: %s"],"Browser icon preview: The current image has no alternative text. The file name is: %s":["Browser icon preview: the current image has no alternative text. The file name is: %s"],"Browser icon preview: Current image: %s":["Browser icon preview: current image: %s"]}},"comment":{"reference":"wp-admin\/js\/site-icon.js"}} \ No newline at end of file +{"translation-revision-date":"2025-04-06 12:37:11+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"App icon preview: The current image has no alternative text. The file name is: %s":["App icon preview: the current image has no alternative text. The file name is: %s"],"App icon preview: Current image: %s":["App icon preview: current image: %s"],"Browser icon preview: The current image has no alternative text. The file name is: %s":["Browser icon preview: the current image has no alternative text. The file name is: %s"],"Browser icon preview: Current image: %s":["Browser icon preview: current image: %s"]}},"comment":{"reference":"wp-admin\/js\/site-icon.js"}} \ No newline at end of file diff --git a/web/app/languages/en_GB-a9dc201dcd011fe71849743133052619.json b/web/app/languages/en_GB-a9dc201dcd011fe71849743133052619.json old mode 100755 new mode 100644 index 88ef26de..c9db8f29 --- a/web/app/languages/en_GB-a9dc201dcd011fe71849743133052619.json +++ b/web/app/languages/en_GB-a9dc201dcd011fe71849743133052619.json @@ -1 +1 @@ -{"translation-revision-date":"2024-11-14 20:17:10+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"You are about to permanently delete this menu.\n'Cancel' to stop, 'OK' to delete.":["You are about to permanently delete this menu.\n'Cancel' to stop, 'OK' to delete."],"missing menu item navigation label\u0004(no label)":["(no label)"],"The changes you made will be lost if you navigate away from this page.":["The changes you made will be lost if you navigate away from this page."],"No results found.":["No results found."]}},"comment":{"reference":"wp-admin\/js\/nav-menu.js"}} \ No newline at end of file +{"translation-revision-date":"2025-05-25 12:26:44+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"part of a total number of menu items\u0004%1$s of %2$s":["%1$s of %2$s"],"menu item without a parent in navigation menu\u0004No Parent":["No Parent"],"You are about to permanently delete this menu.\n'Cancel' to stop, 'OK' to delete.":["You are about to permanently delete this menu.\n'Cancel' to stop, 'OK' to delete."],"missing menu item navigation label\u0004(no label)":["(no label)"],"The changes you made will be lost if you navigate away from this page.":["The changes you made will be lost if you navigate away from this page."],"No results found.":["No results found."]}},"comment":{"reference":"wp-admin\/js\/nav-menu.js"}} \ No newline at end of file diff --git a/web/app/languages/en_GB-aabfce98c410957228848dc581e3c420.json b/web/app/languages/en_GB-aabfce98c410957228848dc581e3c420.json old mode 100755 new mode 100644 index 75e53dce..41d79a58 --- a/web/app/languages/en_GB-aabfce98c410957228848dc581e3c420.json +++ b/web/app/languages/en_GB-aabfce98c410957228848dc581e3c420.json @@ -1 +1 @@ -{"translation-revision-date":"2024-11-14 20:17:10+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Your new password for %s is:":["Your new password for %s is:"],"Be sure to save this in a safe location. You will not be able to retrieve it.":["Be sure to save this in a safe location. You will not be able to retrieve it."]}},"comment":{"reference":"wp-admin\/js\/auth-app.js"}} \ No newline at end of file +{"translation-revision-date":"2025-05-25 12:26:44+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Your new password for %s is:":["Your new password for %s is:"],"Be sure to save this in a safe location. You will not be able to retrieve it.":["Be sure to save this in a safe location. You will not be able to retrieve it."]}},"comment":{"reference":"wp-admin\/js\/auth-app.js"}} \ No newline at end of file diff --git a/web/app/languages/en_GB-ac23eee47530ac63a1178c827db28087.json b/web/app/languages/en_GB-ac23eee47530ac63a1178c827db28087.json old mode 100755 new mode 100644 index e4ab10a6..2224ab32 --- a/web/app/languages/en_GB-ac23eee47530ac63a1178c827db28087.json +++ b/web/app/languages/en_GB-ac23eee47530ac63a1178c827db28087.json @@ -1 +1 @@ -{"translation-revision-date":"2024-11-14 20:13:08+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"text direction\u0004ltr":["ltr"]}},"comment":{"reference":"wp-includes\/js\/dist\/i18n.js"}} \ No newline at end of file +{"translation-revision-date":"2025-04-06 12:37:11+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"text direction\u0004ltr":["ltr"]}},"comment":{"reference":"wp-includes\/js\/dist\/i18n.js"}} \ No newline at end of file diff --git a/web/app/languages/en_GB-bf0f094965d3d4a95b47babcb35fc136.json b/web/app/languages/en_GB-bf0f094965d3d4a95b47babcb35fc136.json old mode 100755 new mode 100644 index 222032c0..d8b1fa48 --- a/web/app/languages/en_GB-bf0f094965d3d4a95b47babcb35fc136.json +++ b/web/app/languages/en_GB-bf0f094965d3d4a95b47babcb35fc136.json @@ -1 +1 @@ -{"translation-revision-date":"2024-11-14 20:13:08+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Word count type. Do not translate!\u0004words":["words"],"Uncategorized":["Uncategorised"],"sidebar button label\u0004Settings":["Settings"],"noun, sidebar\u0004Document":["Document"],"noun, breadcrumb\u0004Document":["Document"],"template part\u0004Delete \"%s\"?":["Delete \"%s\"?"],"template part\u0004%s (Copy)":["%s (Copy)"],"template part\u0004\"%s\" duplicated.":["\"%s\" duplicated."],"settings landmark area\u0004Settings":["Settings"],"field\u0004Edit %s":["Edit %s"],"Are you sure you want to move \"%s\" to the trash?":["Are you sure you want to move \"%s\" to the bin?"],"Approval step":["Approval step"],"Require approval step when optimizing existing media.":["Require approval step when optimising existing media."],"Pre-upload compression":["Pre-upload compression"],"Compress media items before uploading to the server.":["Compress media items before uploading to the server."],"Customize options related to the media upload flow.":["Customise options related to the media upload flow."],"Show starter patterns":["Show starter patterns"],"Shows starter patterns when creating a new page.":["Shows starter patterns when creating a new page."],"Zoom Out":["Zoom out"],"Unlock content locked blocks\u0004Unlock":["Unlock"],"Customize the last part of the URL. Learn more.<\/a>":["Customise the last part of the URL. Learn more.<\/a>"],"Change status: %s":["Change status: %s"],"Pin this post to the top of the blog":["Pin this post to the top of the blog"],"Upload failed, try again.":["Upload failed, try again."],"Edit or replace the featured image":["Edit or replace the featured image"],"Adjective: e.g. \"Comments are open\"\u0004Open":["Open"],"(No author)":["(No author)"],"They also show up as sub-items in the default navigation menu. Learn more.<\/a>":["They also show up as sub-items in the default navigation menu. Learn more.<\/a>"],"Determines the order of pages. Pages with the same order value are sorted alphabetically. Negative order values are supported.":["Determines the order of pages. Pages with the same order value are sorted alphabetically. Negative order values are supported."],"Order updated.":["Order updated."],"Determines the order of pages.":["Determines the order of pages."],"verb\u0004View":["View"],"An error occurred while updating.":["An error occurred while updating."],"Select item":["Select item"],"date order\u0004dmy":["dmy"],"Some errors occurred while reverting the items: %s":["Some errors occurred while reverting the items: %s"],"An error occurred while reverting the item.":["An error occurred while reverting the item."],"Comments closed":["Comments closed"],"Comments open":["Comments open"],"Change discussion settings":["Change discussion settings"],"Change posts per page":["Change posts per page"],"Change blog title: %s":["Change blog title: %s"],"Only visible to those who know the password":["Only visible to those who know the password"],"Change format: %s":["Change format: %s"],"%1$s, %2$s read time.":["%1$s, %2$s read time."],"1 minute":["1 minute"],"Reset to default and clear all customizations?":["Reset to default and clear all customisations?"],"%s items reset.":["%s items reset."],"Name updated":["Name updated"],"View revisions (%s)":["View revisions (%s)"],"%d pages have been restored.":["%d pages have been restored."],"%s item moved to the trash.":["%s item moved to the bin.","%s items moved to the bin."],"patterns-export":["patterns-export"],"You\u2019ve tried to select a block that is part of a template, which may be used on other posts and pages. Would you like to edit the template?":["You\u2019ve tried to select a block that is part of a template, which may be used on other posts and pages. Would you like to edit the template?"],"Temporarily unlock the parent block to edit, delete or make further changes to this block.":["Temporarily unlock the parent block to edit, delete, or make further changes to this block."],"Edit pattern":["Edit pattern"],"Only users with permissions to edit the template can move or delete this block":["Only users with permissions to edit the template can move or delete this block"],"Edit the template to move, delete, or make further changes to this block.":["Edit the template to move, delete, or make further changes to this block."],"Edit the pattern to move, delete, or make further changes to this block.":["Edit the pattern to move, delete, or make further changes to this block."],"The deleted block allows instance overrides. Removing it may result in content not displaying where this pattern is used. Are you sure you want to proceed?":["The deleted block allows instance overrides. Removing it may result in content not displaying where this pattern is used. Are you sure you want to proceed?","Some of the deleted blocks allow instance overrides. Removing them may result in content not displaying where this pattern is used. Are you sure you want to proceed?"],"Change link: %s":["Change link: %s"],"Unschedule":["Unschedule"],"Unpublish":["Unpublish"],"Edit excerpt":["Edit excerpt"],"Edit description":["Edit description"],"Add an excerpt\u2026":["Add an excerpt\u2026"],"Add a description\u2026":["Add a description\u2026"],"Write a description":["Write a description"],"Write a description (optional)":["Write a description (optional)"],"Change discussion options":["Change discussion options"],"Pings enabled":["Pings enabled"],"Pings only":["Pings only"],"Comments only":["Comments only"],"Learn more about pingbacks & trackbacks":["Learn more about pingbacks and trackbacks"],"https:\/\/wordpress.org\/documentation\/article\/trackbacks-and-pingbacks\/":["https:\/\/wordpress.org\/documentation\/article\/trackbacks-and-pingbacks\/"],"Comment status":["Comment status"],"Existing comments remain visible.":["Existing comments remain visible."],"Visitors cannot add new comments or replies.":["Visitors cannot add new comments or replies."],"Closed":["Closed"],"Visitors can add new comments and replies.":["Visitors can add new comments and replies."],"Change author: %s":["Change author: %s"],"Show template":["Show template"],"https:\/\/wordpress.org\/documentation\/article\/page-post-settings-sidebar\/#page-attributes":["https:\/\/wordpress.org\/documentation\/article\/page-post-settings-sidebar\/#page-attributes"],"Child pages inherit characteristics from their parent, such as URL structure. For instance, if \"Pricing\" is a child of \"Services\", its URL would be %s\/services\/pricing.":["Child pages inherit characteristics from their parent, such as URL structure. For instance, if \"Pricing\" is a child of \"Services\", its URL would be %s\/services\/pricing."],"Change parent: %s":["Change parent: %s"],"Choose a parent page.":["Choose a parent page."],"Set the page order.":["Set the page order."],"Post Meta.":["Post meta."],"Open the List View.":["Open the list view."],"Items deleted.":["Items deleted."],"Items reset.":["Items reset."],"\"%s\" reset.":["\"%s\" reset."],"Template reset.":["Template reset."],"List View shortcuts":["List view shortcuts"],"pattern (singular)\u0004Not synced":["Not synced"],"pattern (singular)\u0004Synced":["Synced"],"Add non breaking space.":["Add non-breaking space."],"An error occurred while reverting the templates.":["An error occurred while reverting the templates."],"An error occurred while restoring the posts: %s":["An error occurred while restoring the posts: %s"],"An error occurred while deleting the items.":["An error occurred while deleting the items."],"An error occurred while restoring the post.":["An error occurred while restoring the post."],"An error occurred while restoring the posts.":["An error occurred while restoring the posts."],"An error occurred while reverting the items: %s":["An error occurred while reverting the items: %s"],"Manage block visibility":["Manage block visibility"],"Adds a category with the most frequently used blocks in the inserter.":["Adds a category with the most frequently used blocks in the inserter."],"Inserter":["Inserter"],"Show text instead of icons on buttons across the interface.":["Show text instead of icons on buttons across the interface."],"Keeps the text cursor within the block boundaries, aiding users with screen readers by preventing unintentional cursor movement outside the block.":["Keeps the text cursor within the block boundaries, aiding users with screen readers by preventing unintentional cursor movement outside the block."],"Optimize the editing experience for enhanced control.":["Optimise the editing experience for enhanced control."],"Accessibility":["Accessibility"],"Access all block and document tools in a single place.":["Access all block and document tools in a single place."],"Customize the editor interface to suit your needs.":["Customise the editor interface to suit your needs."],"Select what settings are shown in the document panel.":["Select what settings are shown in the document panel."],"Allow right-click contextual menus":["Allow right-click contextual menus"],"Allows contextual List View menus via right-click, overriding browser defaults.":["Allows contextual list view menus via right-click, overriding browser defaults."],"Display the block hierarchy trail at the bottom of the editor.":["Display the block hierarchy trail at the bottom of the editor."],"Interface":["Interface"],"Are you sure you want to move %d item to the trash ?":["Are you sure you want to move %d item to the bin?","Are you sure you want to move %d items to the bin?"],"Upload external images to the Media Library. Images from different domains may load slowly, display incorrectly, or be removed unexpectedly.":["Upload external images to the Media Library. Images from different domains may load slowly, display incorrectly, or be removed unexpectedly."],"Create new template":["Create new template"],"There is %d site change<\/strong> waiting to be saved.":["There is %d site change<\/strong> waiting to be saved.","There are %d site changes<\/strong> waiting to be saved."],"The following has been modified.":["The following has been modified."],"Delete %d item?":["Delete %d item?","Delete %d items?"],"action label\u0004Duplicate template part":["Duplicate template part"],"action label\u0004Duplicate pattern":["Duplicate pattern"],"action label\u0004Duplicate":["Duplicate"],"Some errors occurred while restoring the posts: %s":["Some errors occurred while restoring the posts: %s"],"\"%s\" has been restored.":["\"%s\" has been restored."],"%d posts have been restored.":["%d posts have been restored."],"Some errors occurred while permanently deleting the items: %s":["Some errors occurred while permanently deleting the items: %s"],"An error occurred while permanently deleting the items: %s":["An error occurred while permanently deleting the items: %s"],"An error occurred while permanently deleting the items.":["An error occurred while permanently deleting the items."],"An error occurred while permanently deleting the item.":["An error occurred while permanently deleting the item."],"The items were permanently deleted.":["The items were permanently deleted."],"\"%s\" permanently deleted.":["\"%s\" permanently deleted."],"Permanently delete":["Permanently delete"],"Some errors occurred while moving the items to the trash: %s":["Some errors occurred while moving the items to the bin: %s"],"An error occurred while moving the item to the trash: %s":["An error occurred while moving the item to the bin: %s"],"An error occurred while moving the items to the trash.":["An error occurred while moving the items to the bin."],"Revisions (%s)":["Revisions (%s)"],"Duplicate pattern":["Duplicate pattern"],"Rename pattern":["Rename pattern"],"Some errors occurred while deleting the items: %s":["Some errors occurred while deleting the items: %s"],"An error occurred while deleting the items: %s":["An error occurred while deleting the items: %s"],"template part\u0004\"%s\" deleted.":["\"%s\" deleted."],"Pre-publish checks enabled.":["Pre-publish checks enabled."],"Pre-publish checks disabled.":["Pre-publish checks disabled."],"Top toolbar on.":["Top toolbar on."],"Top toolbar off.":["Top toolbar off."],"List View on.":["List view on."],"List View off.":["List view off."],"Close List View":["Close list view"],"Spotlight on.":["Spotlight on."],"Spotlight off.":["Spotlight off."],"Toggle spotlight":["Toggle spotlight"],"Enter Distraction Free":["Enter distraction free"],"Exit Distraction Free":["Exit distraction free"],"header landmark area\u0004Header":["Header"],"Deleting this block will stop your post or page content from displaying on this template. It is not recommended.":["Deleting this block will stop your post or page content from displaying on this template. It is not recommended.","Deleting these blocks will stop your post or page content from displaying on this template. It is not recommended."],"An error occurred while reverting the template.":["An error occurred while reverting the template."],"Export as JSON":["Export as JSON"],"Open code editor":["Open code editor"],"Use default template":["Use default template"],"Choose a template":["Choose a template"],"Swap template":["Swap template"],"An error occurred while reverting the template part.":["An error occurred while reverting the template part."],"Preview in a new tab":["Preview in a new tab"],"Disable pre-publish checks":["Disable pre-publish checks"],"Breadcrumbs visible.":["Breadcrumbs visible."],"Breadcrumbs hidden.":["Breadcrumbs hidden."],"Show block breadcrumbs":["Show block breadcrumbs"],"Hide block breadcrumbs":["Hide block breadcrumbs"],"Editor preferences":["Editor preferences"],"You can enable the visual editor in your profile settings.":["You can enable the visual editor in your profile settings."],"Distraction free on.":["Distraction free on."],"Distraction free off.":["Distraction free off."],"Changes will apply to new posts only. Individual posts may override these settings.":["Changes will apply to new posts only. Individual posts may override these settings."],"Post overview\u0004Outline":["Outline"],"Post overview\u0004List View":["List View"],"https:\/\/wordpress.org\/documentation\/article\/page-post-settings-sidebar\/#permalink":["https:\/\/wordpress.org\/documentation\/article\/page-post-settings-sidebar\/#permalink"],"Sync status":["Sync status"],"External media":["External media"],"Select image block.":["Select image block."],"https:\/\/wordpress.org\/documentation\/article\/page-post-settings-sidebar\/#excerpt":["https:\/\/wordpress.org\/documentation\/article\/page-post-settings-sidebar\/#excerpt"],"Document not found":["Document not found"],"Fallback content":["Fallback content"],"Last edited %s.":["Last edited %s."],"Change publish date":["Change publish date"],"An error occurred while updating the name":["An error occurred while updating the name"],"Publish automatically on a chosen date.":["Publish automatically on a chosen date."],"Waiting for review before publishing.":["Waiting for review before publishing."],"Not ready to publish.":["Not ready to publish."],"An error occurred while moving the item to the trash.":["An error occurred while moving the item to the bin."],"\"%s\" moved to the trash.":["\"%s\" moved to the bin."],"Parent":["Parent"],"An error occurred while updating the order":["An error occurred while updating the order"],"No title":["No title"],"Set the default number of posts to display on blog pages, including categories and tags. Some templates may override this setting.":["Set the default number of posts to display on blog pages, including categories and tags. Some templates may override this setting."],"Posts per page":["Posts per page"],"Set the Posts Page title. Appears in search results, and when the page is shared on social media.":["Set the Posts Page title. Appears in search results, and when the page is shared on social media."],"Toggle top toolbar":["Toggle top toolbar"],"Toggle block inspector":["Toggle block inspector"],"Toggle settings sidebar":["Toggle settings sidebar"],"https:\/\/wordpress.org\/documentation\/article\/wordpress-block-editor\/":["https:\/\/wordpress.org\/documentation\/article\/wordpress-block-editor\/"],"Hide block tools":["Hide block tools"],"Show block tools":["Show block tools"],"caption\u0004Work<\/a>\/ %2$s":["Work<\/a>\/ %2$s"],"Search Openverse":["Search Openverse"],"Openverse":["Openverse"],"Search audio":["Search audio"],"Search videos":["Search videos"],"Search images":["Search images"],"caption\u0004\"%1$s\"\/ %2$s":["\"%1$s\"\/ %2$s"],"caption\u0004Work<\/a> by %2$s\/ %3$s":["Work<\/a> by %2$s\/ %3$s"],"caption\u0004\"%1$s\" by %2$s\/ %3$s":["\"%1$s\" by %2$s\/ %3$s"],"Navigate the structure of your document and address issues like empty or incorrect heading levels.":["Navigate the structure of your document and address issues like empty or incorrect heading levels."],"Time to read:":["Time to read:"],"Words:":["Words:"],"Characters:":["Characters:"],"Distraction free mode deactivated":["Distraction-free mode deactivated"],"Distraction free mode activated":["Distraction-free mode activated"],"Write with calmness":["Write with calmness"],"Document Overview":["Document Overview"],"Distraction free":["Distraction free"],"Reduce visual distractions by hiding the toolbar and other elements to focus on writing.":["Reduce visual distractions by hiding the toolbar and other elements to focus on writing."],"Convert the current paragraph or heading to a heading of level 1 to 6.":["Convert the current paragraph or heading to a heading of level 1 to 6."],"Convert the current heading to a paragraph.":["Convert the current heading to a paragraph."],"Toggle distraction free mode.":["Toggle distraction-free mode."],"Sticky":["Sticky"],"Time to read":["Time to read"],"%s<\/span> minute":["%s<\/span> minute","%s<\/span> minutes"],"< 1<\/span> minute":["< 1<\/span> minute"],"post schedule date format without year\u0004F j g:i\u00a0a":["F j g:i\u00a0a"],"Tomorrow at %s":["Tomorrow at %s"],"post schedule time format\u0004g:i\u00a0a":["g:i\u00a0a"],"Today at %s":["Today at %s"],"post schedule full date format\u0004F j, Y g:i\u00a0a":["F j, Y g:i\u00a0a"],"Control how this post is viewed.":["Control how this post is viewed."],"Only those with the password can view this post.":["Only those with the password can view this post."],"Apply suggested format: %s":["Apply suggested format: %s"],"Create template part":["Create template part"],"View site":["View site"],"Default template":["Default template"],"Edit template":["Edit template"],"Add template":["Add template"],"Templates define the way content is displayed when viewing your site.":["Templates define the way content is displayed when viewing your site."],"Describe the template, e.g. \"Post with sidebar\". A custom template can be manually applied to any post or page.":["Describe the template, e.g. \"Post with sidebar\". A custom template can be manually applied to any post or page."],"Change date: %s":["Change date: %s"],"Always open List View":["Always open list view"],"Opens the List View sidebar by default.":["Opens the list view sidebar by default."],"Copy all blocks":["Copy all blocks"],"Make the selected text inline code.":["Make the selected text inline code."],"Strikethrough the selected text.":["Strikethrough the selected text."],"View options":["View options"],"Categories provide a helpful way to group related posts together and to quickly tell readers what a post is about.":["Categories provide a helpful way to group related posts together and to quickly tell readers what a post is about."],"Assign a category":["Assign a category"],"If you take over, the other user will lose editing control to the post, but their changes will be saved.":["If you take over, the other user will lose editing control of the post, but their changes will be saved."],"%s<\/strong> is currently working on this post (), which means you cannot make changes, unless you take over.":["%s<\/strong> is currently working on this post (), which means you cannot make changes, unless you take over."],"preview":["preview"],"%s<\/strong> now has editing control of this post (). Don\u2019t worry, your changes up to this moment have been saved.":["%s<\/strong> now has editing control of this post (). Don\u2019t worry, your changes up to this moment have been saved."],"Exit editor":["Exit editor"],"These changes will affect your whole site.":["These changes will affect your whole site."],"View Preview":["View Preview"],"Draft saved.":["Draft saved."],"Show button text labels":["Show button text labels"],"The posts page template cannot be changed.":["The posts page template cannot be changed."],"Insert a link to a post or page.":["Insert a link to a post or page."],"Choose a pattern":["Choose a pattern"],"Site updated.":["Site updated."],"Saving failed.":["Saving failed."],"This change will affect pages and posts that use this template.":["This change will affect pages and posts that use this template.","These changes will affect pages and posts that use these templates."],"This change will affect your whole site.":["This change will affect your whole site.","These changes will affect your whole site."],"An error occurred while reverting the template parts.":["An error occurred while reverting the template parts."],"Rename":["Rename"],"An error occurred while creating the template part.":["An error occurred while creating the template part."],"You attempted to edit an item that doesn't exist. Perhaps it was deleted?":["You attempted to edit an item that doesn't exist. Perhaps it was deleted?"],"Use left and right arrow keys to resize the canvas.":["Use left and right arrow keys to resize the canvas."],"Drag to resize":["Drag to resize"],"Template part created.":["Template part created."],"Template revert failed. Please reload.":["Template revert failed. Please reload."],"The editor has encountered an unexpected error. Please reload.":["The editor has encountered an unexpected error. Please reload."],"This template is not revertable.":["This template is not revertible."],"An error occurred while deleting the item.":["An error occurred while deleting the item."],"Disable blocks that you don't want to appear in the inserter. They can always be toggled back on later.":["Disable blocks that you don't want to appear in the inserter. They can always be toggled back on later."],"Review settings, such as visibility and tags.":["Review settings, such as visibility and tags."],"Publishing":["Publishing"],"%d block is hidden.":["%d block is hidden.","%d blocks are hidden."],"Area":["Area"],"Open List View":["Open list view"],"Template Parts":["Template Parts"],"Copied URL to clipboard.":["Copied URL to clipboard."],"Select the items you want to save.":["Select the items you want to save."],"Saving\u2026":["Saving\u2026"],"Create custom template":["Create custom template"],"Custom Template":["Custom Template"],"Template options":["Template options"],"Generic label for block inserter button\u0004Toggle block inserter":["Toggle block inserter"],"Custom template created. You're in template mode now.":["Custom template created. You're in template mode now."],"Templates":["Templates"],"Block Library":["Block Library"],"Editing template. Changes made here affect all posts and pages that use the template.":["Editing template. Changes made here affect all posts and pages that use the template."],"Highlights the current block and fades other content.":["Highlights the current block and fades other content."],"Appearance":["Appearance"],"Show most used blocks":["Show most used blocks"],"Preferences":["Preferences"],"Characters":["Characters"],"Design":["Design"],"Open save panel":["Open save panel"],"Preview in new tab":["Preview in new tab"],"Contain text cursor inside block":["Contain text cursor inside block"],"Mobile":["Mobile"],"Tablet":["Tablet"],"Desktop":["Desktop"],"Save draft":["Save draft"],"Are you ready to save?":["Are you ready to save?"],"Template Part":["Template Part"],"Password protected":["Password protected"],"View post":["View post"],"Page attributes":["Page attributes"],"Keyboard shortcuts":["Keyboard shortcuts"],"Editor footer":["Editor footer"],"Slug":["Slug"],"Pending review":["Pending review"],"All content copied.":["All content copied."],"Display these keyboard shortcuts.":["Display these keyboard shortcuts."],"Skip":["Skip"],"Restore the backup":["Restore the backup"],"The backup of this post in your browser is different from the version below.":["The backup of this post in your browser is different from the version below."],"Details":["Details"],"Spotlight mode deactivated":["Spotlight mode deactivated"],"Spotlight mode activated":["Spotlight mode activated"],"Top toolbar deactivated":["Top toolbar deactivated"],"Top toolbar activated":["Top toolbar activated"],"Search Terms":["Search Terms"],"The current image has no alternative text. The file name is: %s":["The current image has no alternative text. The file name is: %s"],"%s minute":["%s minute","%s minutes"],"Top toolbar":["Top toolbar"],"%s word":["%s word","%s words"],"To edit the featured image, you need permission to upload media.":["To edit the featured image, you need permission to upload media."],"Start writing with text or HTML":["Start writing with text or HTML"],"Type text or HTML":["Type text or HTML"],"Scheduled":["Scheduled"],"Create":["Create"],"Code editor selected":["Code editor selected"],"Visual editor selected":["Visual editor selected"],"Exit code editor":["Exit code editor"],"Editing code":["Editing code"],"Editor settings":["Editor settings"],"Close Settings":["Close Settings"],"Document settings":["Document settings"],"Visibility":["Visibility"],"Status & visibility":["Status & visibility"],"Pin to toolbar":["Pin to toolbar"],"Unpin from toolbar":["Unpin from toolbar"],"Close plugin":["Close plugin"],"Discussion":["Discussion"],"Enable pre-publish checks":["Enable pre-publish checks"],"Open publish panel":["Open publish panel"],"Editor content":["Editor content"],"Editor publish":["Editor publish"],"Remove a link.":["Remove a link."],"Convert the selected text into a link.":["Convert the selected text into a link."],"Underline the selected text.":["Underline the selected text."],"Make the selected text italic.":["Make the selected text italic."],"Make the selected text bold.":["Make the selected text bold."],"Text formatting":["Text formatting"],"Forward-slash":["Forward-slash"],"Change the block type after adding a new paragraph.":["Change the block type after adding a new paragraph."],"Block shortcuts":["Block shortcuts"],"Selection shortcuts":["Selection shortcuts"],"Switch between visual editor and code editor.":["Switch between visual editor and code editor."],"Navigate to the previous part of the editor.":["Navigate to the previous part of the editor."],"Navigate to the next part of the editor.":["Navigate to the next part of the editor."],"Show or hide the Settings sidebar.":["Show or hide the Settings sidebar."],"Redo your last undo.":["Redo your last undo."],"Undo your last changes.":["Undo your last changes."],"Save your changes.":["Save your changes."],"Global shortcuts":["Global shortcuts"],"Focus on one block at a time":["Focus on one block at a time"],"Spotlight mode":["Spotlight mode"],"Access all block and document tools in a single place":["Access all block and document tools in a single place"],"noun\u0004View":["View"],"Options":["Options"],"Editor":["Editor"],"Code editor":["Code editor"],"Visual editor":["Visual editor"],"Editor top bar":["Editor top bar"],"Document tools":["Document tools"],"Trashing failed":["Binning failed"],"Updating failed.":["Updating failed."],"Scheduling failed.":["Scheduling failed."],"Publishing failed.":["Publishing failed."],"You have unsaved changes. If you proceed, they will be lost.":["You have unsaved changes. If you proceed, they will be lost."],"Reset the template":["Reset the template"],"Keep it as is":["Keep it as is"],"The content of your post doesn\u2019t match the template assigned to your post type.":["The content of your post doesn\u2019t match the template assigned to your post type."],"Resetting the template may result in loss of content, do you want to continue?":["Resetting the template may result in loss of content, do you want to continue?"],"Document Outline":["Document Outline"],"Paragraphs":["Paragraphs"],"Headings":["Headings"],"Document Statistics":["Document Statistics"],"View the autosave":["View the autosave"],"There is an autosave of this post that is more recent than the version below.":["There is an autosave of this post that is more recent than the version below."],"Only visible to site admins and editors.":["Only visible to site admins and editors."],"Visible to everyone.":["Visible to everyone."],"Use a secure password":["Use a secure password"],"Create password":["Create password"],"Would you like to privately publish this post now?":["Would you like to privately publish this post now?"],"Move to trash":["Move to bin"],"Add title":["Add title"],"Terms":["Terms"],"Parent Term":["Parent Term"],"Add new term":["Add new term"],"Add new category":["Add new category"],"term\u0004Remove %s":["Remove %s"],"term\u0004%s removed":["%s removed"],"term\u0004%s added":["%s added"],"Term":["Term"],"Tag":["Tag"],"Add new Term":["Add new term"],"Switch to draft":["Switch to draft"],"Are you sure you want to unschedule this post?":["Are you sure you want to unschedule this post?"],"Are you sure you want to unpublish this post?":["Are you sure you want to unpublish this post?"],"Immediately":["Immediately"],"Saving":["Saving"],"Autosaving":["Autosaving"],"Publish:":["Publish:"],"Visibility:":["Visibility:"],"Double-check your settings before publishing.":["Double-check your settings before publishing."],"Are you ready to publish?":["Are you ready to publish?"],"Your work will be published at the specified date and time.":["Your work will be published at the specified date and time."],"Are you ready to schedule?":["Are you ready to schedule?"],"When you\u2019re ready, submit your work for review, and an Editor will be able to approve it for you.":["When you\u2019re ready, submit your work for review, and an Editor will be able to approve it for you."],"Are you ready to submit for review?":["Are you ready to submit for review?"],"Copied!":["Copied!"],"%s address":["%s address"],"What\u2019s next?":["What\u2019s next?"],"is now live.":["is now live."],"is now scheduled. It will go live on":["is now scheduled. It will go live on"],"Tags help users and search engines navigate your site and find your content. Add a few keywords to describe your post.":["Tags help users and search engines navigate your site and find your content. Add a few keywords to describe your post."],"Add tags":["Add tags"],"Apply the \"%1$s\" format.":["Apply the \"%1$s\" format."],"Your theme uses post formats to highlight different kinds of content, like images or videos. Apply a post format to see this special styling.":["Your theme uses post formats to highlight different kinds of content, like images or videos. Apply a post format to see this special styling."],"Use a post format":["Use a post format"],"Always show pre-publish checks.":["Always show pre-publish checks."],"Close panel":["Close panel"],"Submit for Review":["Submit for Review"],"Publishing\u2026":["Publishing\u2026"],"imperative verb\u0004Preview":["Preview"],"Generating preview\u2026":["Generating preview\u2026"],"Enable pingbacks & trackbacks":["Enable pingbacks and trackbacks"],"Another user is currently working on this post (), which means you cannot make changes, unless you take over.":["Another user is currently working on this post (), which means you cannot make changes, unless you take over."],"Another user now has editing control of this post (). Don\u2019t worry, your changes up to this moment have been saved.":["Another user now has editing control of this post (). Don\u2019t worry, your changes up to this moment have been saved."],"Avatar":["Avatar"],"This post is already being edited":["This post is already being edited"],"Someone else has taken over this post":["Someone else has taken over this post"],"Post Format":["Post Format"],"Chat":["Chat"],"Standard":["Standard"],"Aside":["Aside"],"Learn more about manual excerpts":["Learn more about manual excerpts"],"Write an excerpt (optional)":["Write an excerpt (optional)"],"no title":["no title"],"Order":["Order"],"Available block types":["Available block types"],"Search for a block":["Search for a block"],"%d result found.":["%d result found.","%d results found."],"The editor has encountered an unexpected error.":["The editor has encountered an unexpected error."],"Copy Error":["Copy Error"],"Copy Post Text":["Copy Post Text"],"(Multiple H1 headings are not recommended)":["(Multiple H1 headings are not recommended)"],"(Your theme may already use a H1 for the post title)":["(Your theme may already use a H1 for the post title)"],"(Incorrect heading level)":["(Incorrect heading level)"],"(Empty heading)":["(Empty heading)"],"Category":["Category"],"Reset":["Reset"],"(opens in a new tab)":["(opens in a new tab)"],"No blocks found.":["No blocks found."],"Blocks":["Blocks"],"Pending":["Pending"],"Take over":["Take over"],"Go back":["Go back"],"Gallery":["Gallery"],"Current image: %s":["Current image: %s"],"Homepage":["Homepage"],"(Untitled)":["(Untitled)"],"Site Icon":["Site Icon"],"Detach":["Detach"],"verb\u0004Trash":["Bin"],"Back":["Back"],"Tools":["Tools"],"Footer":["Footer"],"Replace":["Replace"],"Block":["Block"],"Status":["Status"],"Video":["Video"],"Videos":["Videos"],"Audio":["Audio"],"Saved":["Saved"],"Remove":["Remove"],"Upload":["Upload"],"Featured image":["Featured image"],"Template":["Template"],"Posts Page":["Posts page"],"Navigation":["Navigation"],"Link":["Link"],"Words":["Words"],"Parent Category":["Parent Category"],"Add a featured image":["Add a featured image"],"Image":["Image"],"You do not have permission to create Pages.":["You do not have permission to create pages."],"Quote":["Quote"],"General":["General"],"Copy":["Copy"],"Format":["Format"],"Suggestion:":["Suggestion:"],"Untitled":["Untitled"],"Blog title":["Blog title"],"Help":["Help"],"(no title)":["(no title)"],"Close":["Close"],"Images":["Images"],"Add":["Add"],"Add new tag":["Add new tag"],"Schedule":["Schedule"],"Public":["Public"],"Private":["Private"],"Save as pending":["Save as pending"],"Actions":["Actions"],"Media":["Media"],"Redo":["Redo"],"Password":["Password"],"Content":["Content"],"Cancel":["Cancel"],"Plugins":["Plugins"],"None":["None"],"Description":["Description"],"Name":["Name"],"Save":["Save"],"Delete":["Delete"],"Revisions":["Revisions"],"Excerpt":["Excerpt"],"Publish":["Publish"],"Undo":["Undo"],"View":["View"],"Restore":["Restore"],"Author":["Author"],"Draft":["Draft"],"Published":["Published"],"Title":["Title"]}},"comment":{"reference":"wp-includes\/js\/dist\/editor.js"}} \ No newline at end of file +{"translation-revision-date":"2025-04-06 12:37:11+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Word count type. Do not translate!\u0004words":["words"],"Keeps the text cursor within blocks while navigating with arrow keys, preventing it from moving to other blocks and enhancing accessibility for keyboard users.":["Keeps the text cursor within blocks while navigating with arrow keys, preventing it from moving to other blocks and enhancing accessibility for keyboard users."],"panel button label\u0004Settings":["Settings"],"noun, panel\u0004Document":["Document"],"Changes will be applied to all selected %s.":["Changes will be applied to all selected %s."],"%i %s":["%i %s"],"Set as posts page":["Set as posts page"],"Set posts page":["Set posts page"],"Set \"%1$s\" as the posts page? %2$s":["Set \"%1$s\" as the posts page? %2$s"],"This page will show the latest posts.":["This page will show the latest posts."],"This will replace the current posts page: \"%s\"":["This will replace the current posts page: \"%s\""],"An error occurred while setting the posts page.":["An error occurred while setting the posts page."],"Posts page updated.":["Posts page updated."],"Set as homepage":["Set as homepage"],"Set homepage":["Set homepage"],"Set \"%1$s\" as the site homepage? %2$s":["Set \"%1$s\" as the site homepage? %2$s"],"This will replace the current homepage: \"%s\"":["This will replace the current homepage: \"%s\""],"This will replace the current homepage which is set to display latest posts.":["This will replace the current homepage which is set to display latest posts."],"Homepage updated.":["Homepage updated."],"Enter or exit zoom out.":["Enter or exit zoom out."],"Comment deleted successfully.":["Comment deleted successfully."],"Something went wrong. Please try publishing the post, or you may have already submitted your comment earlier.":["Something went wrong. Please try publishing the post, or you may have already submitted your comment earlier."],"Comment edited successfully.":["Comment edited successfully."],"Comment marked as resolved.":["Comment marked as resolved."],"Comment added successfully.":["Comment added successfully."],"Reply added successfully.":["Reply added successfully."],"View comment\u0004Comment":["Comment"],"Add comment button\u0004Comment":["Comment"],"Are you sure you want to mark this comment as resolved?":["Are you sure you want to mark this comment as resolved?"],"verb\u0004Update":["Update"],"Resolved":["Resolved"],"Select comment action\u0004Select an action":["Select an action"],"Mark comment as resolved\u0004Resolve":["Resolve"],"Delete comment\u0004Delete":["Delete"],"Edit comment\u0004Edit":["Edit"],"Add reply comment\u0004Reply":["Reply"],"Show replies button\u0004%s more replies..":["%s more replies.."],"No comments available":["No comments available"],"Cancel comment button\u0004Cancel":["Cancel"],"User avatar":["User avatar"],"Customize the last part of the Permalink.<\/span> Learn more.<\/a>":["Customise the last part of the Permalink.<\/span> Learn more.<\/a>"],"Your work will be reviewed and then approved.":["Your work will be reviewed and then approved."],"Could not retrieve the featured image data.":["Could not retrieve the featured image data."],"Copy error":["Copy error"],"Copy contents":["Copy contents"],"This change will affect other parts of your site that use this template.":["This change will affect other parts of your site that use this template."],"Enter or exit distraction free mode.":["Enter or exit distraction free mode."],"Show or hide the List View.":["Show or hide the List View."],"Content preview":["Content preview"],"Empty content":["Empty content"],"Open Site Editor":["Open Site Editor"],"Enter Spotlight mode":["Enter Spotlight mode"],"Exit Spotlight mode":["Exit Spotlight mode"],"Change template":["Change template"],"Child pages inherit characteristics from their parent, such as URL structure. For instance, if \"Pricing\" is a child of \"Services\", its URL would be %1$s\/services\/pricing.":["Child pages inherit characteristics from their parent, such as URL structure. For instance, if \"Pricing\" is a child of \"Services\", its URL would be %1$s\/services\/pricing."],"Customize the last part of the Permalink.":["Customise the last part of the Permalink."],"Copied Permalink to clipboard.":["Copied Permalink to clipboard."],"Choose an image\u2026":["Choose an image\u2026"],"Are you sure you want to permanently delete \"%s\"?":["Are you sure you want to permanently delete \"%s\"?"],"Are you sure you want to permanently delete %d item?":["Are you sure you want to permanently delete %d item?","Are you sure you want to permanently delete %d items?"],"An error occurred while reverting the items.":["An error occurred while reverting the items."],"Top toolbar deactivated.":["Top toolbar deactivated."],"Top toolbar activated.":["Top toolbar activated."],"verb\u0004Upload":["Upload"],"noun, breadcrumb\u0004Document":["Document"],"template part\u0004Delete \"%s\"?":["Delete \"%s\"?"],"template part\u0004%s (Copy)":["%s (Copy)"],"template part\u0004\"%s\" duplicated.":["\"%s\" duplicated."],"settings landmark area\u0004Settings":["Settings"],"field\u0004Edit %s":["Edit %s"],"Are you sure you want to move \"%s\" to the trash?":["Are you sure you want to move \"%s\" to the bin?"],"Approval step":["Approval step"],"Require approval step when optimizing existing media.":["Require approval step when optimising existing media."],"Pre-upload compression":["Pre-upload compression"],"Compress media items before uploading to the server.":["Compress media items before uploading to the server."],"Customize options related to the media upload flow.":["Customise options related to the media upload flow."],"Show starter patterns":["Show starter patterns"],"Shows starter patterns when creating a new page.":["Shows starter patterns when creating a new page."],"Zoom Out":["Zoom out"],"Unlock content locked blocks\u0004Unlock":["Unlock"],"Change status: %s":["Change status: %s"],"Pin this post to the top of the blog":["Pin this post to the top of the blog"],"Upload failed, try again.":["Upload failed, try again."],"Edit or replace the featured image":["Edit or replace the featured image"],"Adjective: e.g. \"Comments are open\"\u0004Open":["Open"],"(No author)":["(No author)"],"They also show up as sub-items in the default navigation menu. Learn more.<\/a>":["They also show up as sub-items in the default navigation menu. Learn more.<\/a>"],"Determines the order of pages. Pages with the same order value are sorted alphabetically. Negative order values are supported.":["Determines the order of pages. Pages with the same order value are sorted alphabetically. Negative order values are supported."],"Order updated.":["Order updated."],"Determines the order of pages.":["Determines the order of pages."],"verb\u0004View":["View"],"An error occurred while updating.":["An error occurred while updating."],"Visitors cannot add new comments or replies. Existing comments remain visible.":["Visitors cannot add new comments or replies. Existing comments remain visible."],"Author avatar":["Author avatar"],"Select item":["Select item"],"date order\u0004dmy":["dmy"],"Some errors occurred while reverting the items: %s":["Some errors occurred while reverting the items: %s"],"An error occurred while reverting the item.":["An error occurred while reverting the item."],"Comments closed":["Comments closed"],"Comments open":["Comments open"],"Change discussion settings":["Change discussion settings"],"Change posts per page":["Change posts per page"],"Change blog title: %s":["Change blog title: %s"],"Only visible to those who know the password":["Only visible to those who know the password"],"Change format: %s":["Change format: %s"],"%1$s, %2$s read time.":["%1$s, %2$s read time."],"1 minute":["1 minute"],"Reset to default and clear all customizations?":["Reset to default and clear all customisations?"],"%s items reset.":["%s items reset."],"Name updated":["Name updated"],"View revisions (%s)":["View revisions (%s)"],"%d pages have been restored.":["%d pages have been restored."],"%s item moved to the trash.":["%s item moved to the bin.","%s items moved to the bin."],"patterns-export":["patterns-export"],"You\u2019ve tried to select a block that is part of a template that may be used elsewhere on your site. Would you like to edit the template?":["You\u2019ve tried to select a block that is part of a template that may be used elsewhere on your site. Would you like to edit the template?"],"Temporarily unlock the parent block to edit, delete or make further changes to this block.":["Temporarily unlock the parent block to edit, delete, or make further changes to this block."],"Edit pattern":["Edit pattern"],"Only users with permissions to edit the template can move or delete this block":["Only users with permissions to edit the template can move or delete this block"],"Edit the template to move, delete, or make further changes to this block.":["Edit the template to move, delete, or make further changes to this block."],"Edit the pattern to move, delete, or make further changes to this block.":["Edit the pattern to move, delete, or make further changes to this block."],"The deleted block allows instance overrides. Removing it may result in content not displaying where this pattern is used. Are you sure you want to proceed?":["The deleted block allows instance overrides. Removing it may result in content not displaying where this pattern is used. Are you sure you want to proceed?","Some of the deleted blocks allow instance overrides. Removing them may result in content not displaying where this pattern is used. Are you sure you want to proceed?"],"Change link: %s":["Change link: %s"],"Unschedule":["Unschedule"],"Unpublish":["Unpublish"],"Edit excerpt":["Edit excerpt"],"Edit description":["Edit description"],"Add an excerpt\u2026":["Add an excerpt\u2026"],"Add a description\u2026":["Add a description\u2026"],"Write a description":["Write a description"],"Write a description (optional)":["Write a description (optional)"],"Change discussion options":["Change discussion options"],"Pings enabled":["Pings enabled"],"Pings only":["Pings only"],"Comments only":["Comments only"],"Learn more about pingbacks & trackbacks":["Learn more about pingbacks and trackbacks"],"https:\/\/wordpress.org\/documentation\/article\/trackbacks-and-pingbacks\/":["https:\/\/wordpress.org\/documentation\/article\/trackbacks-and-pingbacks\/"],"Comment status":["Comment status"],"Existing comments remain visible.":["Existing comments remain visible."],"Visitors cannot add new comments or replies.":["Visitors cannot add new comments or replies."],"Closed":["Closed"],"Visitors can add new comments and replies.":["Visitors can add new comments and replies."],"Open":["Open"],"Change author: %s":["Change author: %s"],"Show template":["Show template"],"https:\/\/wordpress.org\/documentation\/article\/page-post-settings-sidebar\/#page-attributes":["https:\/\/wordpress.org\/documentation\/article\/page-post-settings-sidebar\/#page-attributes"],"Child pages inherit characteristics from their parent, such as URL structure. For instance, if \"Pricing\" is a child of \"Services\", its URL would be %s\/services\/pricing.":["Child pages inherit characteristics from their parent, such as URL structure. For instance, if \"Pricing\" is a child of \"Services\", its URL would be %s\/services\/pricing."],"Change parent: %s":["Change parent: %s"],"Choose a parent page.":["Choose a parent page."],"Set the page order.":["Set the page order."],"Post Meta.":["Post meta."],"Items deleted.":["Items deleted."],"Items reset.":["Items reset."],"\"%s\" reset.":["\"%s\" reset."],"Template reset.":["Template reset."],"List View shortcuts":["List view shortcuts"],"pattern (singular)\u0004Not synced":["Not synced"],"Published: Work<\/a>\/ %2$s":["Work<\/a>\/ %2$s"],"Search Openverse":["Search Openverse"],"Openverse":["Openverse"],"Search audio":["Search audio"],"Search videos":["Search videos"],"Search images":["Search images"],"caption\u0004\"%1$s\"\/ %2$s":["\"%1$s\"\/ %2$s"],"caption\u0004Work<\/a> by %2$s\/ %3$s":["Work<\/a> by %2$s\/ %3$s"],"caption\u0004\"%1$s\" by %2$s\/ %3$s":["\"%1$s\" by %2$s\/ %3$s"],"Navigate the structure of your document and address issues like empty or incorrect heading levels.":["Navigate the structure of your document and address issues like empty or incorrect heading levels."],"Time to read:":["Time to read:"],"Words:":["Words:"],"Characters:":["Characters:"],"Distraction free mode deactivated.":["Distraction free mode deactivated."],"Distraction free mode activated.":["Distraction free mode activated."],"Write with calmness":["Write with calmness"],"Document Overview":["Document Overview"],"Distraction free":["Distraction free"],"Reduce visual distractions by hiding the toolbar and other elements to focus on writing.":["Reduce visual distractions by hiding the toolbar and other elements to focus on writing."],"Convert the current paragraph or heading to a heading of level 1 to 6.":["Convert the current paragraph or heading to a heading of level 1 to 6."],"Convert the current heading to a paragraph.":["Convert the current heading to a paragraph."],"Sticky":["Sticky"],"Time to read":["Time to read"],"%s<\/span> minute":["%s<\/span> minute","%s<\/span> minutes"],"< 1<\/span> minute":["< 1<\/span> minute"],"post schedule date format without year\u0004F j g:i\u00a0a":["F j g:i\u00a0a"],"Tomorrow at %s":["Tomorrow at %s"],"post schedule time format\u0004g:i\u00a0a":["g:i\u00a0a"],"Today at %s":["Today at %s"],"post schedule full date format\u0004F j, Y g:i\u00a0a":["F j, Y g:i\u00a0a"],"Control how this post is viewed.":["Control how this post is viewed."],"Only those with the password can view this post.":["Only those with the password can view this post."],"Apply suggested format: %s":["Apply suggested format: %s"],"Create template part":["Create template part"],"View site":["View site"],"Default template":["Default template"],"Edit template":["Edit template"],"Add template":["Add template"],"Templates define the way content is displayed when viewing your site.":["Templates define the way content is displayed when viewing your site."],"Describe the template, e.g. \"Post with sidebar\". A custom template can be manually applied to any post or page.":["Describe the template, e.g. \"Post with sidebar\". A custom template can be manually applied to any post or page."],"Change date: %s":["Change date: %s"],"Always open List View":["Always open list view"],"Opens the List View panel by default.":["Opens the List View panel by default."],"Copy all blocks":["Copy all blocks"],"Make the selected text inline code.":["Make the selected text inline code."],"Strikethrough the selected text.":["Strikethrough the selected text."],"View options":["View options"],"Categories provide a helpful way to group related posts together and to quickly tell readers what a post is about.":["Categories provide a helpful way to group related posts together and to quickly tell readers what a post is about."],"Assign a category":["Assign a category"],"If you take over, the other user will lose editing control to the post, but their changes will be saved.":["If you take over, the other user will lose editing control of the post, but their changes will be saved."],"%s<\/strong> is currently working on this post (), which means you cannot make changes, unless you take over.":["%s<\/strong> is currently working on this post (), which means you cannot make changes, unless you take over."],"preview":["preview"],"%s<\/strong> now has editing control of this post (). Don\u2019t worry, your changes up to this moment have been saved.":["%s<\/strong> now has editing control of this post (). Don\u2019t worry, your changes up to this moment have been saved."],"Exit editor":["Exit editor"],"These changes will affect your whole site.":["These changes will affect your whole site."],"View Preview":["View Preview"],"Draft saved.":["Draft saved."],"Show button text labels":["Show button text labels"],"The posts page template cannot be changed.":["The posts page template cannot be changed."],"Insert a link to a post or page.":["Insert a link to a post or page."],"Choose a pattern":["Choose a pattern"],"Site updated.":["Site updated."],"Saving failed.":["Saving failed."],"This change will affect your whole site.":["This change will affect your whole site.","These changes will affect your whole site."],"An error occurred while reverting the template parts.":["An error occurred while reverting the template parts."],"Rename":["Rename"],"An error occurred while setting the homepage.":["An error occurred while setting the homepage."],"An error occurred while creating the template part.":["An error occurred while creating the template part."],"You attempted to edit an item that doesn't exist. Perhaps it was deleted?":["You attempted to edit an item that doesn't exist. Perhaps it was deleted?"],"Show or hide the Block settings panel":["Show or hide the Block settings panel"],"Use left and right arrow keys to resize the canvas.":["Use left and right arrow keys to resize the canvas."],"Drag to resize":["Drag to resize"],"Template part created.":["Template part created."],"Template revert failed. Please reload.":["Template revert failed. Please reload."],"The editor has encountered an unexpected error. Please reload.":["The editor has encountered an unexpected error. Please reload."],"This template is not revertable.":["This template is not revertible."],"An error occurred while deleting the item.":["An error occurred while deleting the item."],"Disable blocks that you don't want to appear in the inserter. They can always be toggled back on later.":["Disable blocks that you don't want to appear in the inserter. They can always be toggled back on later."],"Review settings, such as visibility and tags.":["Review settings, such as visibility and tags."],"Publishing":["Publishing"],"Area":["Area"],"Open List View":["Open list view"],"Template Parts":["Template Parts"],"Featured Image":["Featured Image"],"Select the items you want to save.":["Select the items you want to save."],"Saving\u2026":["Saving\u2026"],"Create custom template":["Create custom template"],"Custom Template":["Custom Template"],"Template options":["Template options"],"Generic label for block inserter button\u0004Block Inserter":["Block Inserter"],"Custom template created. You're in template mode now.":["Custom template created. You're in template mode now."],"Templates":["Templates"],"Block Library":["Block Library"],"Editing template. Changes made here affect all posts and pages that use the template.":["Editing template. Changes made here affect all posts and pages that use the template."],"Highlights the current block and fades other content.":["Highlights the current block and fades other content."],"Appearance":["Appearance"],"Show most used blocks":["Show most used blocks"],"Preferences":["Preferences"],"Characters":["Characters"],"Design":["Design"],"Open save panel":["Open save panel"],"Preview in new tab":["Preview in new tab"],"Contain text cursor inside block":["Contain text cursor inside block"],"Mobile":["Mobile"],"Tablet":["Tablet"],"Desktop":["Desktop"],"Save draft":["Save draft"],"Are you ready to save?":["Are you ready to save?"],"Template Part":["Template Part"],"Password protected":["Password protected"],"View post":["View post"],"Page attributes":["Page attributes"],"Keyboard shortcuts":["Keyboard shortcuts"],"Editor footer":["Editor footer"],"Slug":["Slug"],"Pending review":["Pending review"],"All content copied.":["All content copied."],"Display these keyboard shortcuts.":["Display these keyboard shortcuts."],"Skip":["Skip"],"Restore the backup":["Restore the backup"],"The backup of this post in your browser is different from the version below.":["The backup of this post in your browser is different from the version below."],"Details":["Details"],"Spotlight mode deactivated.":["Spotlight mode deactivated."],"Spotlight mode activated.":["Spotlight mode activated."],"Search Terms":["Search Terms"],"The current image has no alternative text. The file name is: %s":["The current image has no alternative text. The file name is: %s"],"%s minute":["%s minute","%s minutes"],"Top toolbar":["Top toolbar"],"%s word":["%s word","%s words"],"To edit the featured image, you need permission to upload media.":["To edit the featured image, you need permission to upload media."],"Start writing with text or HTML":["Start writing with text or HTML"],"Type text or HTML":["Type text or HTML"],"Scheduled":["Scheduled"],"Create":["Create"],"Code editor selected":["Code editor selected"],"Visual editor selected":["Visual editor selected"],"Exit code editor":["Exit code editor"],"Editing code":["Editing code"],"Editor settings":["Editor settings"],"Close Settings":["Close Settings"],"Document settings":["Document settings"],"Visibility":["Visibility"],"Status & visibility":["Status & visibility"],"Pin to toolbar":["Pin to toolbar"],"Unpin from toolbar":["Unpin from toolbar"],"Close plugin":["Close plugin"],"Discussion":["Discussion"],"Enable pre-publish checks":["Enable pre-publish checks"],"Open publish panel":["Open publish panel"],"Editor content":["Editor content"],"Editor publish":["Editor publish"],"Remove a link.":["Remove a link."],"Convert the selected text into a link.":["Convert the selected text into a link."],"Underline the selected text.":["Underline the selected text."],"Make the selected text italic.":["Make the selected text italic."],"Make the selected text bold.":["Make the selected text bold."],"Text formatting":["Text formatting"],"Forward-slash":["Forward-slash"],"Change the block type after adding a new paragraph.":["Change the block type after adding a new paragraph."],"Block shortcuts":["Block shortcuts"],"Selection shortcuts":["Selection shortcuts"],"Switch between visual editor and code editor.":["Switch between visual editor and code editor."],"Navigate to the previous part of the editor.":["Navigate to the previous part of the editor."],"Navigate to the next part of the editor.":["Navigate to the next part of the editor."],"Show or hide the Settings panel.":["Show or hide the Settings panel."],"Redo your last undo.":["Redo your last undo."],"Undo your last changes.":["Undo your last changes."],"Save your changes.":["Save your changes."],"Global shortcuts":["Global shortcuts"],"Focus on one block at a time":["Focus on one block at a time"],"Spotlight mode":["Spotlight mode"],"Access all block and document tools in a single place":["Access all block and document tools in a single place"],"noun\u0004View":["View"],"Options":["Options"],"Editor":["Editor"],"Code editor":["Code editor"],"Visual editor":["Visual editor"],"Editor top bar":["Editor top bar"],"Document tools":["Document tools"],"Trashing failed":["Binning failed"],"Updating failed.":["Updating failed."],"Scheduling failed.":["Scheduling failed."],"Publishing failed.":["Publishing failed."],"You have unsaved changes. If you proceed, they will be lost.":["You have unsaved changes. If you proceed, they will be lost."],"Reset the template":["Reset the template"],"Keep it as is":["Keep it as is"],"The content of your post doesn\u2019t match the template assigned to your post type.":["The content of your post doesn\u2019t match the template assigned to your post type."],"Resetting the template may result in loss of content, do you want to continue?":["Resetting the template may result in loss of content, do you want to continue?"],"Document Outline":["Document Outline"],"Paragraphs":["Paragraphs"],"Headings":["Headings"],"Document Statistics":["Document Statistics"],"View the autosave":["View the autosave"],"There is an autosave of this post that is more recent than the version below.":["There is an autosave of this post that is more recent than the version below."],"Only visible to site admins and editors.":["Only visible to site admins and editors."],"Visible to everyone.":["Visible to everyone."],"Use a secure password":["Use a secure password"],"Create password":["Create password"],"Would you like to privately publish this post now?":["Would you like to privately publish this post now?"],"Move to trash":["Move to bin"],"Add title":["Add title"],"Terms":["Terms"],"Parent Term":["Parent Term"],"Add new term":["Add new term"],"Add new category":["Add new category"],"term\u0004Remove %s":["Remove %s"],"term\u0004%s removed":["%s removed"],"term\u0004%s added":["%s added"],"Term":["Term"],"Tag":["Tag"],"Add new Term":["Add new term"],"Switch to draft":["Switch to draft"],"Are you sure you want to unschedule this post?":["Are you sure you want to unschedule this post?"],"Are you sure you want to unpublish this post?":["Are you sure you want to unpublish this post?"],"Immediately":["Immediately"],"Saving":["Saving"],"Autosaving":["Autosaving"],"Publish:":["Publish:"],"Visibility:":["Visibility:"],"Double-check your settings before publishing.":["Double-check your settings before publishing."],"Are you ready to publish?":["Are you ready to publish?"],"Your work will be published at the specified date and time.":["Your work will be published at the specified date and time."],"Are you ready to schedule?":["Are you ready to schedule?"],"Are you ready to submit for review?":["Are you ready to submit for review?"],"Copied!":["Copied!"],"%s address":["%s address"],"What\u2019s next?":["What\u2019s next?"],"is now live.":["is now live."],"is now scheduled. It will go live on":["is now scheduled. It will go live on"],"Tags help users and search engines navigate your site and find your content. Add a few keywords to describe your post.":["Tags help users and search engines navigate your site and find your content. Add a few keywords to describe your post."],"Add tags":["Add tags"],"Apply the \"%1$s\" format.":["Apply the \"%1$s\" format."],"Your theme uses post formats to highlight different kinds of content, like images or videos. Apply a post format to see this special styling.":["Your theme uses post formats to highlight different kinds of content, like images or videos. Apply a post format to see this special styling."],"Use a post format":["Use a post format"],"Always show pre-publish checks.":["Always show pre-publish checks."],"Close panel":["Close panel"],"Submit for Review":["Submit for Review"],"Publishing\u2026":["Publishing\u2026"],"imperative verb\u0004Preview":["Preview"],"Generating preview\u2026":["Generating preview\u2026"],"Enable pingbacks & trackbacks":["Enable pingbacks and trackbacks"],"Permalink:":["Permalink:"],"Another user is currently working on this post (), which means you cannot make changes, unless you take over.":["Another user is currently working on this post (), which means you cannot make changes, unless you take over."],"Another user now has editing control of this post (). Don\u2019t worry, your changes up to this moment have been saved.":["Another user now has editing control of this post (). Don\u2019t worry, your changes up to this moment have been saved."],"Avatar":["Avatar"],"This post is already being edited":["This post is already being edited"],"Someone else has taken over this post":["Someone else has taken over this post"],"Post Format":["Post Format"],"Chat":["Chat"],"Standard":["Standard"],"Aside":["Aside"],"Learn more about manual excerpts":["Learn more about manual excerpts"],"Write an excerpt (optional)":["Write an excerpt (optional)"],"no title":["no title"],"Order":["Order"],"%d result found.":["%d result found.","%d results found."],"The editor has encountered an unexpected error.":["The editor has encountered an unexpected error."],"(Multiple H1 headings are not recommended)":["(Multiple H1 headings are not recommended)"],"(Your theme may already use a H1 for the post title)":["(Your theme may already use a H1 for the post title)"],"(Incorrect heading level)":["(Incorrect heading level)"],"(Empty heading)":["(Empty heading)"],"Category":["Category"],"Reset":["Reset"],"(opens in a new tab)":["(opens in a new tab)"],"Blocks":["Blocks"],"Pending":["Pending"],"Take over":["Take over"],"Go back":["Go back"],"Gallery":["Gallery"],"Date":["Date"],"Current image: %s":["Current image: %s"],"Homepage":["Homepage"],"(Untitled)":["(Untitled)"],"Site Icon":["Site Icon"],"Detach":["Detach"],"verb\u0004Trash":["Bin"],"Back":["Back"],"Trash":["Bin"],"Tools":["Tools"],"Footer":["Footer"],"Replace":["Replace"],"Block":["Block"],"Status":["Status"],"Delete permanently":["Delete permanently"],"Video":["Video"],"Videos":["Videos"],"Audio":["Audio"],"Saved":["Saved"],"Remove":["Remove"],"Featured image":["Featured image"],"Template":["Template"],"Posts Page":["Posts page"],"Navigation":["Navigation"],"Link":["Link"],"Words":["Words"],"Learn more":["Learn more"],"Parent Category":["Parent Category"],"Add a featured image":["Add a featured image"],"Image":["Image"],"You do not have permission to create Pages.":["You do not have permission to create pages."],"Quote":["Quote"],"General":["General"],"Copy":["Copy"],"Format":["Format"],"Suggestion:":["Suggestion:"],"Untitled":["Untitled"],"Blog title":["Blog title"],"Help":["Help"],"(no title)":["(no title)"],"Close":["Close"],"Images":["Images"],"Add":["Add"],"Add new tag":["Add new tag"],"Schedule":["Schedule"],"Public":["Public"],"Private":["Private"],"Save as pending":["Save as pending"],"Actions":["Actions"],"Media":["Media"],"Redo":["Redo"],"Password":["Password"],"Content":["Content"],"Cancel":["Cancel"],"Plugins":["Plugins"],"None":["None"],"Description":["Description"],"Name":["Name"],"Save":["Save"],"Delete":["Delete"],"Revisions":["Revisions"],"Excerpt":["Excerpt"],"Publish":["Publish"],"Comments":["Comments"],"Undo":["Undo"],"View":["View"],"Restore":["Restore"],"Author":["Author"],"Draft":["Draft"],"Pending Review":["Pending Review"],"Published":["Published"],"Title":["Title"]}},"comment":{"reference":"wp-includes\/js\/dist\/editor.js"}} \ No newline at end of file diff --git a/web/app/languages/en_GB-bf23b24175490c2e46aaf92ff6a0c70f.json b/web/app/languages/en_GB-bf23b24175490c2e46aaf92ff6a0c70f.json old mode 100755 new mode 100644 index ae821e07..e6aa0b94 --- a/web/app/languages/en_GB-bf23b24175490c2e46aaf92ff6a0c70f.json +++ b/web/app/languages/en_GB-bf23b24175490c2e46aaf92ff6a0c70f.json @@ -1 +1 @@ -{"translation-revision-date":"2024-11-14 20:13:08+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Dismiss":["Dismiss"]}},"comment":{"reference":"wp-includes\/js\/wp-pointer.js"}} \ No newline at end of file +{"translation-revision-date":"2025-04-06 12:37:11+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Dismiss":["Dismiss"]}},"comment":{"reference":"wp-includes\/js\/wp-pointer.js"}} \ No newline at end of file diff --git a/web/app/languages/en_GB-c31d5f185753910c14afebc6deb2ce24.json b/web/app/languages/en_GB-c31d5f185753910c14afebc6deb2ce24.json old mode 100755 new mode 100644 index 77bc594a..711e0820 --- a/web/app/languages/en_GB-c31d5f185753910c14afebc6deb2ce24.json +++ b/web/app/languages/en_GB-c31d5f185753910c14afebc6deb2ce24.json @@ -1 +1 @@ -{"translation-revision-date":"2024-11-14 20:13:08+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Uncategorized":["Uncategorised"],"field\u0004Edit %s":["Edit %s"],"navigation menu\u0004%s (Copy)":["%s (Copy)"],"menu label\u0004%1$s (%2$s)":["%1$s (%2$s)"],"Previewing %1$s: %2$s":["Previewing %1$s: %2$s"],"taxonomy menu label\u0004%1$s (%2$s)":["%1$s (%2$s)"],"taxonomy template menu label\u0004%1$s (%2$s)":["%1$s (%2$s)"],"post type menu label\u0004Single item: %1$s (%2$s)":["Single item: %1$s (%2$s)"],"post type menu label\u0004%1$s (%2$s)":["%1$s (%2$s)"],"pattern category\u0004Delete \"%s\"?":["Delete \"%s\"?"],"pattern category\u0004\"%s\" deleted.":["\"%s\" deleted."],"field\u0004Show %s":["Show %s"],"field\u0004Hide %s":["Hide %s"],"breadcrumb trail\u0004%1$s \u2039 %2$s":["%1$s \u2039 %2$s"],"variation label\u0004%1$s (%2$s)":["%1$s (%2$s)"],"There was an error updating the font family. %s":["There was an error updating the font family. %s"],"Select a page to edit":["Select a page to edit"],"Post Edit":["Post edit"],"Toggle details panel":["Toggle details panel"],"Visitors cannot add new comments or replies. Existing comments remain visible.":["Visitors cannot add new comments or replies. Existing comments remain visible."],"Author avatar":["Author avatar"],"Draft new: %s":["Draft new: %s"],"All items":["All items"],"View is used as a noun\u0004View options":["View options"],"Properties":["Properties"],"Move %s down":["Move %s down"],"Move %s up":["Move %s up"],"Preview size":["Preview size"],"paging\u0004
Page<\/div>%1$s
of %2$s<\/div>":["
Page<\/div>%1$s
of %2$s<\/div>"],"Page %1$s of %2$s":["Page %1$s of %2$s"],"Hide column":["Hide column"],"%d Item":["%d Item","%d Items"],"Toggle filter display":["Toggle filter display"],"Select item":["Select item"],"Set styles for the site\u2019s background.":["Set styles for the site\u2019s background."],"Create and edit the presets used for font sizes across the site.":["Create and edit the presets used for font sizes across the site."],"New Font Size %d":["New font size %d"],"Reset font size presets":["Reset font size presets"],"Remove font size presets":["Remove font size presets"],"Font size presets options":["Font size presets options"],"Add font size":["Add font size"],"Are you sure you want to reset all font size presets to their default values?":["Are you sure you want to reset all font size presets to their default values?"],"Are you sure you want to remove all custom font size presets?":["Are you sure you want to remove all custom font size presets?"],"Maximum":["Maximum"],"Minimum":["Minimum"],"Set custom min and max values for the fluid font size.":["Set custom minimum and maximum values for the fluid font size."],"Custom fluid values":["Custom fluid values"],"Scale the font size dynamically to fit the screen or viewport.":["Scale the font size dynamically to fit the screen or viewport."],"Fluid typography":["Fluid typography"],"Font size options":["Font size options"],"Manage the font size %s.":["Manage the font size %s."],"Font size preset name":["Font size preset name"],"Are you sure you want to delete \"%s\" font size preset?":["Are you sure you want to delete \"%s\" font size preset?"],"All headings":["All headings"],"Typesets":["Typesets"],"Available fonts, typographic styles, and the application of those styles.":["Available fonts, typographic styles, and the application of those styles."],"No fonts activated.":["No fonts activated."],"font source\u0004Custom":["Custom"],"font source\u0004Theme":["Theme"],"Font family updated successfully.":["Font family updated successfully."],"Font size presets":["Font size presets"],"Edit font size presets":["Edit font size presets"],"Background styles":["Background styles"],"Go to Site Editor":["Go to Site Editor"],"Closed":["Closed"],"Visitors can add new comments and replies.":["Visitors can add new comments and replies."],"Open":["Open"],"No items found":["No items found"],"Loading items\u2026":["Loading items\u2026"],"pattern (singular)\u0004Not synced":["Not synced"],"Includes every template part defined for any area.":["Includes every template part defined for any area."],"All Template Parts":["All template parts"],"Published:
Page<\/div>%1$s
of %2$s<\/div>":["
Page<\/div>%1$s
of %2$s<\/div>"],"Page %1$s of %2$s":["Page %1$s of %2$s"],"Hide column":["Hide column"],"%d Item":["%d Item","%d Items"],"Select item":["Select item"],"Set styles for the site\u2019s background.":["Set styles for the site\u2019s background."],"Create and edit the presets used for font sizes across the site.":["Create and edit the presets used for font sizes across the site."],"New Font Size %d":["New font size %d"],"Reset font size presets":["Reset font size presets"],"Remove font size presets":["Remove font size presets"],"Font size presets options":["Font size presets options"],"Add font size":["Add font size"],"Are you sure you want to reset all font size presets to their default values?":["Are you sure you want to reset all font size presets to their default values?"],"Are you sure you want to remove all custom font size presets?":["Are you sure you want to remove all custom font size presets?"],"Maximum":["Maximum"],"Minimum":["Minimum"],"Set custom min and max values for the fluid font size.":["Set custom minimum and maximum values for the fluid font size."],"Custom fluid values":["Custom fluid values"],"Scale the font size dynamically to fit the screen or viewport.":["Scale the font size dynamically to fit the screen or viewport."],"Fluid typography":["Fluid typography"],"Font size options":["Font size options"],"Manage the font size %s.":["Manage the font size %s."],"Font size preset name":["Font size preset name"],"Are you sure you want to delete \"%s\" font size preset?":["Are you sure you want to delete \"%s\" font size preset?"],"All headings":["All headings"],"Typesets":["Typesets"],"Available fonts, typographic styles, and the application of those styles.":["Available fonts, typographic styles, and the application of those styles."],"No fonts activated.":["No fonts activated."],"font source\u0004Custom":["Custom"],"font source\u0004Theme":["Theme"],"Font family updated successfully.":["Font family updated successfully."],"Font size presets":["Font size presets"],"Background styles":["Background styles"],"Go to Site Editor":["Go to Site Editor"],"No items found":["No items found"],"Loading items\u2026":["Loading items\u2026"],"pattern (singular)\u0004Not synced":["Not synced"],"Includes every template part defined for any area.":["Includes every template part defined for any area."],"All Template Parts":["All template parts"],"%d Item selected":["%d Item selected","%d Items selected"],"%1$s is not: <\/Name>%2$s<\/Value>":["%1$s is not: <\/Name>%2$s<\/Value>"],"%1$s is: <\/Name>%2$s<\/Value>":["%1$s is: <\/Name>%2$s<\/Value>"],"%1$s is not all: <\/Name>%2$s<\/Value>":["%1$s is not all: <\/Name>%2$s<\/Value>"],"%1$s is all: <\/Name>%2$s<\/Value>":["%1$s is all: <\/Name>%2$s<\/Value>"],"%1$s is none: <\/Name>%2$s<\/Value>":["%1$s is none: <\/Name>%2$s<\/Value>"],"%1$s is any: <\/Name>%2$s<\/Value>":["%1$s is any: <\/Name>%2$s<\/Value>"],"List of: %1$s":["List of: %1$s"],"Is not all":["Is not all"],"Is all":["Is all"],"Is none":["Is none"],"Is any":["Is any"],"Are you sure you want to apply this revision? Any unsaved changes will be lost.":["Are you sure you want to apply this revision? Any unsaved changes will be lost."],"Spread":["Spread"],"Blur":["Blur"],"Y Position":["Y position"],"X Position":["X position"],"Inset":["Inset"],"Outset":["Outset"],"Inner shadow":["Inner shadow"],"Remove shadow":["Remove shadow"],"Shadow name":["Shadow name"],"Add shadow":["Add shadow"],"Shadow %s":["Shadow %s"],"Manage and create shadow styles for use across the site.":["Manage and create shadow styles for use across the site."],"The combination of colors used across the site and in color pickers.":["The combination of colours used across the site and in colour pickers."],"Palettes":["Palettes"],"Palette colors and the application of those colors on site elements.":["Palette colours and the application of those colours on site elements."],"Add colors":["Add colours"],"Edit palette":["Edit palette"],"Lowercase letter A\u0004a":["a"],"Uppercase letter A\u0004A":["A"],"pattern (singular)\u0004Synced":["Synced"],"https:\/\/developer.wordpress.org\/advanced-administration\/wordpress\/css\/":["https:\/\/developer.wordpress.org\/advanced-administration\/wordpress\/css\/"],"Font library\u0004Library":["Library"],"There was an error installing fonts.":["There was an error installing fonts."],"Empty template":["Empty template"],"Action menu for %s pattern category":["Action menu for %s pattern category"],"Are you sure you want to delete the category \"%s\"? The patterns will not be deleted.":["Are you sure you want to delete the category \"%s\"? The patterns will not be deleted."],"An error occurred while deleting the pattern category.":["An error occurred while deleting the pattern category."],"Filter by: %1$s":["Filter by: %1$s"],"Conditions":["Conditions"],"Unknown status for %1$s":["Unknown status for %1$s"],"Search items":["Search items"],"Sort by":["Sort by"],"Items per page":["Items per page"],"%1$s \u2039 %2$s \u2039 Editor \u2014 WordPress":["%1$s \u2039 %2$s \u2039 Editor \u2013 WordPress"],"Click on previously saved styles to preview them. To restore a selected version to the editor, hit \"Apply.\" When you're ready, use the Save button to save your changes.":["Click on previously saved styles to preview them. To restore a selected version to the editor, hit \"Apply.\" When you're ready, use the \u201cSave\u201d button to save your changes."],"Revisions (%s)":["Revisions (%s)"],"These styles are already applied to your site.":["These styles are already applied to your site."],"(Unsaved)":["(Unsaved)"],"Changes saved by %1$s on %2$s. This revision matches current editor styles.":["Changes saved by %1$s on %2$s. This revision matches current editor styles."],"heading levels\u0004All":["All"],"Add fonts":["Add fonts"],"No fonts installed.":["No fonts installed."],"Uploaded fonts appear in your library and can be used in your theme. Supported formats: .ttf, .otf, .woff, and .woff2.":["Uploaded fonts appear in your library and can be used in your theme. Supported formats: .ttf, .otf, .woff, and .woff2."],"No fonts found to install.":["No fonts found to install."],"Current page":["Current page"],"Revoke access to Google Fonts":["Revoke access to Google Fonts"],"Error installing the fonts, could not be downloaded.":["Error installing the fonts, could not be downloaded."],"font categories\u0004All":["All"],"Connect to Google Fonts":["Connect to Google Fonts"],"Are you sure you want to delete \"%s\" font and all its variants and assets?":["Are you sure you want to delete \"%s\" font and all its variants and assets?"],"There was an error uninstalling the font family.":["There was an error uninstalling the font family."],"%d variant":["%d variant","%d variants"],"Reset styles":["Reset styles"],"Saving your changes will change your active theme from %1$s to %2$s.":["Saving your changes will change your active theme from %1$s to %2$s."],"Custom Views":["Custom views"],"Add new view":["Add new view"],"New view":["New view"],"My view":["My view"],"Drafts":["Drafts"],"Activate %s":["Activate %s"],"Activate %s & Save":["Activate %s and save"],"Activating %s":["Activating %s"],"Sort descending":["Sort descending"],"Sort ascending":["Sort ascending"],"Is not":["Is not"],"Is":["Is"],"No results":["No results"],"Deselect all":["Deselect all"],"Add filter":["Add filter"],"Style Revisions":["Style revisions"],"Drop shadow":["Drop shadow"],"Empty template part":["Empty template part"],"Style revisions":["Style revisions"],"Customize CSS":["Customise CSS"],"Default styles":["Default styles"],"Reset the styles to the theme defaults":["Reset the styles to the theme defaults"],"Manage fonts":["Manage fonts"],"Fonts":["Fonts"],"Install Fonts":["Install Fonts"],"Upload font":["Upload font"],"No fonts found. Try with a different search term":["No fonts found. Try with a different search term"],"Font name\u2026":["Font name\u2026"],"Select font variants to install.":["Select font variants to install."],"Allow access to Google Fonts":["Allow access to Google Fonts"],"You can alternatively upload files directly on the Upload tab.":["You can alternatively upload files directly on the Upload tab."],"To install fonts from Google you must give permission to connect directly to Google servers. The fonts you install will be downloaded from Google and stored on your site. Your site will then use these locally-hosted fonts.":["To install fonts from Google you must give permission to connect directly to Google servers. The fonts you install will be downloaded from Google and stored on your site. Your site will then use these locally-hosted fonts."],"Choose font variants. Keep in mind that too many variants could make your site slower.":["Choose font variants. Keep in mind that too many variants could make your site slower."],"Font family uninstalled successfully.":["Font family uninstalled successfully."],"Fonts were installed successfully.":["Fonts were installed successfully."],"%1$s\/%2$s variants active":["%1$s\/%2$s variants active"],"font style\u0004Normal":["Normal"],"font weight\u0004Extra-bold":["Extra-bold"],"font weight\u0004Semi-bold":["Semi-bold"],"font weight\u0004Normal":["Normal"],"font weight\u0004Extra-light":["Extra-light"],"Add your own CSS to customize the appearance of the %s block. You do not need to include a CSS selector, just add the property and value.":["Add your own CSS to customise the appearance of the %s block. You do not need to include a CSS selector, just add the property and value."],"Imported \"%s\" from JSON.":["Imported \"%s\" from JSON."],"Import pattern from JSON":["Import pattern from JSON"],"A list of all patterns from all sources.":["A list of all patterns from all sources."],"No results found":["No results found"],"All patterns":["All patterns"],"Changes saved by %1$s on %2$s":["Changes saved by %1$s on %2$s"],"Unsaved changes by %s":["Unsaved changes by %s"],"Sync status":["Sync status"],"Patterns content":["Patterns content"],"Patterns that can be changed freely without affecting the site.":["Patterns that can be changed freely without affecting the site."],"Patterns that are kept in sync across the site.":["Patterns that are kept in sync across the site."],"Last page":["Last page"],"paging\u0004%1$s of %2$s":["%1$s of %2$s"],"First page":["First page"],"Empty pattern":["Empty pattern"],"Learn about styles":["Learn about styles"],"Open styles":["Open styles"],"Save panel":["Save panel"],"Use left and right arrow keys to resize the canvas. Hold shift to resize in larger increments.":["Use left and right arrow keys to resize the canvas. Hold shift to resize in larger increments."],"Open command palette":["Open command palette"],"View site (opens in a new tab)":["View site (opens in a new tab)"],"Open Navigation":["Open Navigation"],"Note that the same template can be used by multiple pages, so any changes made here may affect other pages on the site. To switch back to editing the page content click the \u2018Back\u2019 button in the toolbar.":["Note that the same template can be used by multiple pages, so any changes made here may affect other pages on the site. To switch back to editing the page content click the \u2018Back\u2019 button in the toolbar."],"Editing a template":["Editing a template"],"It\u2019s now possible to edit page content in the site editor. To customise other parts of the page like the header and footer switch to editing the template using the settings sidebar.":["It\u2019s now possible to edit page content in the site editor. To customise other parts of the page like the header and footer switch to editing the template using the settings sidebar."],"Continue":["Continue"],"Editing a page":["Editing a page"],"Close Styles":["Close Styles"],"Close revisions":["Close revisions"],"Manage the fonts and typography used on captions.":["Manage the fonts and typography used on captions."],"Create draft":["Create draft"],"No title":["No title"],"Review %d change\u2026":["Review %d change\u2026","Review %d changes\u2026"],"Activate & Save":["Activate & Save"],"Manage your Navigation Menus.":["Manage your navigation menus."],"No Navigation Menus found.":["No Navigation Menus found."],"Unable to duplicate Navigation Menu (%s).":["Unable to duplicate navigation menu (%s)."],"Duplicated Navigation Menu":["Duplicated navigation menu"],"Unable to rename Navigation Menu (%s).":["Unable to rename navigation menu (%s)."],"Renamed Navigation Menu":["Renamed navigation menu"],"Unable to delete Navigation Menu (%s).":["Unable to delete navigation menu (%s)."],"Navigation Menu missing.":["Navigation Menu missing."],"Navigation Menus are a curated collection of blocks that allow visitors to get around your site.":["Navigation menus are a curated collection of blocks that allow visitors to get around your site."],"Are you sure you want to delete this Navigation Menu?":["Are you sure you want to delete this navigation menu?"],"Navigation title":["Navigation title"],"Go to %s":["Go to %s"],"Manage what patterns are available when editing the site.":["Manage what patterns are available when editing the site."],"Select what the new template should apply to:":["Select what the new template should apply to:"],"E.g. %s":["E.g. %s"],"Examples of blocks":["Examples of blocks"],"Global styles revisions list":["Global styles revisions list"],"Go to the Dashboard":["Go to the Dashboard"],"My patterns":["My patterns"],"Grid":["Grid"],"Examples of blocks in the %s category":["Examples of blocks in the %s category"],"A custom template can be manually applied to any post or page.":["A custom template can be manually applied to any post or page."],"Create new templates, or reset any customizations made to the templates supplied by your theme.":["Create new templates, or reset any customisations made to the templates supplied by your theme."],"Customize the appearance of your website using the block editor.":["Customise the appearance of your website using the block editor."],"Template part":["Template part"],"CSS":["CSS"],"Open %s styles in Styles panel":["Open %s styles in Styles panel"],"Style Book":["Style Book"],"Choose a variation to change the look of the site.":["Choose a variation to change the look of the site."],"Randomize colors":["Randomise colours"],"Add your own CSS to customize the appearance and layout of your site.":["Add your own CSS to customise the appearance and layout of your site."],"Style Variations":["Style Variations"],"All template parts":["All Template Parts"],"Apply globally":["Apply globally"],"Apply this block\u2019s typography, spacing, dimensions, and color styles to all %s blocks.":["Apply this block\u2019s typography, spacing, dimensions, and colour styles to all %s blocks."],"%s styles applied.":["%s styles applied."],"(no title %s)":["(no title %s)"],"Pattern":["Pattern"],"Custom template":["Custom template"],"\"%s\" successfully created.":["\"%s\" successfully created."],"This template will be used only for the specific item chosen.":["This template will be used only for the specific item chosen."],"For a specific item":["For a specific item"],"For all items":["For all items"],"Select whether to create a single template for all items or a specific one.":["Select whether to create a single template for all items or a specific one."],"Add template: %s":["Add template: %s"],"Suggestions list":["Suggestions list"],"All Authors":["All authors"],"No authors found.":["No authors found."],"Search Authors":["Search Authors"],"Displays taxonomy: %s.":["Displays taxonomy: %s."],"Displays a single item: %s.":["Displays a single item: %s."],"Single item: %s":["Single item: %s"],"Displays an archive with the latest posts of type: %s.":["Displays an archive with the latest posts of type: %s."],"Archive: %1$s (%2$s)":["Archive: %1$s (%2$s)"],"Manage the fonts and typography used on buttons.":["Manage the fonts and typography used on buttons."],"Manage the fonts and typography used on headings.":["Manage the fonts and typography used on headings."],"H6":["H6"],"H5":["H5"],"H4":["H4"],"H3":["H3"],"H2":["H2"],"H1":["H1"],"Select heading level":["Select heading level"],"View site":["View site"],"Add template":["Add template"],"Describe the template, e.g. \"Post with sidebar\". A custom template can be manually applied to any post or page.":["Describe the template, e.g. \"Post with sidebar\". A custom template can be manually applied to any post or page."],"This Navigation Menu is empty.":["This Navigation Menu is empty."],"Browse styles":["Browse styles"],"Download your theme with updated templates and styles.":["Download your theme with updated templates and styles."],"The \"%s\" plugin has encountered an error and cannot be rendered.":["The \"%s\" plugin has encountered an error and cannot be rendered."],"Navigation Menu successfully deleted.":["Navigation menu successfully deleted."],"font weight\u0004Black":["Black"],"font weight\u0004Bold":["Bold"],"font weight\u0004Medium":["Medium"],"font weight\u0004Light":["Light"],"font weight\u0004Thin":["Thin"],"font style\u0004Italic":["Italic"],"site exporter menu item\u0004Export":["Export"],"Rename":["Rename"],"An error occurred while creating the template.":["An error occurred while creating the template."],"Here\u2019s a detailed guide to learn how to make the most of it.":["Here\u2019s a detailed guide to learn how to make the most of it."],"https:\/\/wordpress.org\/documentation\/article\/styles-overview\/":["https:\/\/wordpress.org\/documentation\/article\/styles-overview\/"],"New to block themes and styling your site?":["New to block themes and styling your site?"],"You can adjust your blocks to ensure a cohesive experience across your site \u2014 add your unique colors to a branded Button block, or adjust the Heading block to your preferred size.":["You can adjust your blocks to ensure a cohesive experience across your site \u2013 add your unique colours to a branded button block, or adjust the heading block to your preferred size."],"Personalize blocks":["Personalise blocks"],"You can customize your site as much as you like with different colors, typography, and layouts. Or if you prefer, just leave it up to your theme to handle!":["You can customise your site as much as you like with different colours, typography, and layouts. Or if you prefer, just leave it up to your theme to handle!"],"Set the design":["Set the design"],"Tweak your site, or give it a whole new look! Get creative \u2014 how about a new color palette for your buttons, or choosing a new font? Take a look at what you can do here.":["Tweak your site, or give it a whole new look! Get creative \u2013 how about a new colour palette for your buttons, or choosing a new font? Take a look at what you can do here."],"Welcome to Styles":["Welcome to styles"],"styles":["styles"],"Click to start designing your blocks, and choose your typography, layout, and colors.":["Click to start designing your blocks, and choose your typography, layout, and colours."],"Design everything on your site \u2014 from the header right down to the footer \u2014 using blocks.":["Design everything on your site \u2013 from the header right down to the footer \u2013 using blocks."],"Edit your site":["Edit your site"],"Welcome to the site editor":["Welcome to the site editor"],"Drag to resize":["Drag to resize"],"Reset to defaults":["Reset to defaults"],"Manage the fonts and typography used on the links.":["Manage the fonts and typography used on the links."],"Manage the fonts used on the site.":["Manage the fonts used on the site."],"Elements":["Elements"],"Aa":["Aa"],"Customize the appearance of specific blocks and for the whole site.":["Customise the appearance of specific blocks and for the whole site."],"Customize the appearance of specific blocks for the whole site.":["Customise the appearance of specific blocks for the whole site."],"An error occurred while creating the site export.":["An error occurred while creating the site export."],"Remove %s":["Remove %s"],"Sorry, you are not allowed to upload this file type.":["Sorry, you are not allowed to upload this file type."],"Displays latest posts written by a single author.":["Displays latest posts written by a single author."],"Create custom template":["Create custom template"],"Custom Template":["Custom Template"],"Shadows":["Shadows"],"Layout":["Layout"],"Duotone":["Duotone"],"All templates":["All templates"],"Templates":["Templates"],"More":["More"],"Captions":["Captions"],"Appearance":["Appearance"],"Design":["Design"],"Open save panel":["Open save panel"],"Patterns":["Patterns"],"Typography":["Typography"],"Review changes":["Review changes"],"Buttons":["Buttons"],"Get started":["Get started"],"Welcome Guide":["Welcome Guide"],"Gradient":["Gradient"],"Move right":["Move right"],"Move left":["Move left"],"Posts":["Posts"],"Details":["Details"],"Custom Colors":["Custom Colours"],"Scheduled":["Scheduled"],"Create":["Create"],"Pagination":["Pagination"],"Heading %d":["Heading %d"],"Embeds":["Embeds"],"Save your changes.":["Save your changes."],"Options":["Options"],"Headings":["Headings"],"Saving":["Saving"],"%d Revision":["%d Revision","%d Revisions"],"Order":["Order"],"%d result found.":["%d result found.","%d results found."],"Duplicate":["Duplicate"],"Category":["Category"],"Reset":["Reset"],"(opens in a new tab)":["(opens in a new tab)"],"No blocks found.":["No blocks found."],"All Blocks":["All Blocks"],"Blocks":["Blocks"],"Pending":["Pending"],"%s item":["%s item","%s items"],"Learn more about CSS":["Learn more about CSS"],"Additional CSS":["Additional CSS"],"Site Icon":["Site Icon"],"Site Identity":["Site Identity"],"Site Preview":["Site Preview"],"Archive: %s":["Archive: %s"],"Color":["Colour"],"Font Sizes":["Font Sizes"],"Back":["Back"],"Trash":["Bin"],"Table":["Table"],"Move up":["Move up"],"Move down":["Move down"],"Overview":["Overview"],"Menu":["Menu"],"Colors":["Colours"],"Saved":["Saved"],"Remove":["Remove"],"Template":["Template"],"Navigation":["Navigation"],"Styles":["Styles"],"Learn more":["Learn more"],"An error occurred while creating the item.":["An error occurred while creating the item."],"User":["User"],"Custom":["Custom"],"Previous page":["Previous page"],"Next page":["Next page"],"Select all":["Select all"],"Hidden":["Hidden"],"Background":["Background"],"List":["List"],"Palette":["Palette"],"Heading 6":["Heading 6"],"Heading 5":["Heading 5"],"Heading 4":["Heading 4"],"Heading 3":["Heading 3"],"Heading 2":["Heading 2"],"Heading 1":["Heading 1"],"Text":["Text"],"Widgets":["Widgets"],"Default":["Default"],"Theme":["Theme"],"(no title)":["(no title)"],"Close":["Close"],"Pages":["Pages"],"Links":["Links"],"Search":["Search"],"Update":["Update"],"Private":["Private"],"Actions":["Actions"],"Media":["Media"],"Size":["Size"],"Install":["Install"],"Cancel":["Cancel"],"Preview":["Preview"],"Description":["Description"],"Name":["Name"],"Advanced":["Advanced"],"Save":["Save"],"Delete":["Delete"],"Revisions":["Revisions"],"Comments":["Comments"],"Apply":["Apply"],"Undo":["Undo"],"Edit":["Edit"],"Author":["Author"],"Published":["Published"],"Title":["Title"],"Activate":["Activate"]}},"comment":{"reference":"wp-includes\/js\/dist\/edit-site.js"}} \ No newline at end of file diff --git a/web/app/languages/en_GB-ca28138671823450e87dfd354f7afc6b.json b/web/app/languages/en_GB-ca28138671823450e87dfd354f7afc6b.json old mode 100755 new mode 100644 index 26ca9491..073dbd66 --- a/web/app/languages/en_GB-ca28138671823450e87dfd354f7afc6b.json +++ b/web/app/languages/en_GB-ca28138671823450e87dfd354f7afc6b.json @@ -1 +1 @@ -{"translation-revision-date":"2024-11-14 20:17:10+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Error while saving the changes.":["Error while saving the changes."],"Changes saved.":["Changes saved."]}},"comment":{"reference":"wp-admin\/js\/inline-edit-tax.js"}} \ No newline at end of file +{"translation-revision-date":"2025-05-25 12:26:44+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Error while saving the changes.":["Error while saving the changes."],"Changes saved.":["Changes saved."]}},"comment":{"reference":"wp-admin\/js\/inline-edit-tax.js"}} \ No newline at end of file diff --git a/web/app/languages/en_GB-daeb084aab42199d26393a56c3465bc0.json b/web/app/languages/en_GB-daeb084aab42199d26393a56c3465bc0.json old mode 100755 new mode 100644 index eb4e94c4..8b43d0b7 --- a/web/app/languages/en_GB-daeb084aab42199d26393a56c3465bc0.json +++ b/web/app/languages/en_GB-daeb084aab42199d26393a56c3465bc0.json @@ -1 +1 @@ -{"translation-revision-date":"2024-11-14 20:13:08+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"%s: Sorry, you are not allowed to upload this file type.":["%s: Sorry, you are not allowed to upload this file type."],"Select or Upload Media":["Select or Upload Media"],"Error while uploading file %s to the media library.":["Error while uploading file %s to the media library."],"%s: This file is empty.":["%s: This file is empty."],"%s: Sorry, this file type is not supported here.":["%s: Sorry, this file type is not supported here."],"%s: This file exceeds the maximum upload size for this site.":["%s: This file exceeds the maximum upload size for this site."]}},"comment":{"reference":"wp-includes\/js\/dist\/media-utils.js"}} \ No newline at end of file +{"translation-revision-date":"2025-04-06 12:37:11+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Error while sideloading file %s to the server.":["Error while sideloading file %s to the server."],"Only one file can be used here.":["Only one file can be used here."],"%s: Sorry, you are not allowed to upload this file type.":["%s: Sorry, you are not allowed to upload this file type."],"Select or Upload Media":["Select or Upload Media"],"Error while uploading file %s to the media library.":["Error while uploading file %s to the media library."],"%s: This file is empty.":["%s: This file is empty."],"%s: Sorry, this file type is not supported here.":["%s: Sorry, this file type is not supported here."],"%s: This file exceeds the maximum upload size for this site.":["%s: This file exceeds the maximum upload size for this site."]}},"comment":{"reference":"wp-includes\/js\/dist\/media-utils.js"}} \ No newline at end of file diff --git a/web/app/languages/en_GB-e2791ba830489d23043be8650a22a22b.json b/web/app/languages/en_GB-e2791ba830489d23043be8650a22a22b.json old mode 100755 new mode 100644 index 7ab01aef..440ce2b1 --- a/web/app/languages/en_GB-e2791ba830489d23043be8650a22a22b.json +++ b/web/app/languages/en_GB-e2791ba830489d23043be8650a22a22b.json @@ -1 +1 @@ -{"translation-revision-date":"2024-11-14 20:13:08+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Block rendered as empty.":["Block rendered as empty."],"Error loading block: %s":["Error loading block: %s"]}},"comment":{"reference":"wp-includes\/js\/dist\/server-side-render.js"}} \ No newline at end of file +{"translation-revision-date":"2025-04-06 12:37:11+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Block rendered as empty.":["Block rendered as empty."],"Error loading block: %s":["Error loading block: %s"]}},"comment":{"reference":"wp-includes\/js\/dist\/server-side-render.js"}} \ No newline at end of file diff --git a/web/app/languages/en_GB-e2e4c4b80f3adf2c70b431bfdb1b4872.json b/web/app/languages/en_GB-e2e4c4b80f3adf2c70b431bfdb1b4872.json old mode 100755 new mode 100644 index a0b41273..9279b063 --- a/web/app/languages/en_GB-e2e4c4b80f3adf2c70b431bfdb1b4872.json +++ b/web/app/languages/en_GB-e2e4c4b80f3adf2c70b431bfdb1b4872.json @@ -1 +1 @@ -{"translation-revision-date":"2024-11-14 20:17:10+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Attend an upcoming event near you.":["Attend an upcoming event near you."],"Events widget offset prefix\u0004GMT":["GMT"],"%1$s %2$d \u2013 %3$s %4$d, %5$d":["%1$s %2$d \u2013 %3$s %4$d, %5$d"],"upcoming events year format\u0004Y":["Y"],"upcoming events day format\u0004j":["j"],"%1$s %2$d\u2013%3$d, %4$d":["%1$s %2$d\u2013%3$d, %4$d"],"upcoming events month format\u0004F":["F"],"City updated. Listing events near %s.":["City updated. Listing events near %s."],"We couldn\u2019t locate %s. Please try another nearby city. For example: Kansas City; Springfield; Portland.":["We couldn\u2019t locate %s. Please try another nearby city. For example: Edinburgh; London; Cardiff."],"An error occurred. Please try again.":["An error occurred. Please try again."],"Enter your closest city to find nearby events.":["Enter your closest city to find nearby events."],"l, M j, Y":["l j F Y"]}},"comment":{"reference":"wp-admin\/js\/dashboard.js"}} \ No newline at end of file +{"translation-revision-date":"2025-05-25 12:26:44+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Screen Options updated.":["Screen Options updated."],"Attend an upcoming event near you.":["Attend an upcoming event near you."],"Events widget offset prefix\u0004GMT":["GMT"],"%1$s %2$d \u2013 %3$s %4$d, %5$d":["%1$s %2$d \u2013 %3$s %4$d, %5$d"],"upcoming events year format\u0004Y":["Y"],"upcoming events day format\u0004j":["j"],"%1$s %2$d\u2013%3$d, %4$d":["%1$s %2$d\u2013%3$d, %4$d"],"upcoming events month format\u0004F":["F"],"City updated. Listing events near %s.":["City updated. Listing events near %s."],"We couldn\u2019t locate %s. Please try another nearby city. For example: Kansas City; Springfield; Portland.":["We couldn\u2019t locate %s. Please try another nearby city. For example: Edinburgh; London; Cardiff."],"An error occurred. Please try again.":["An error occurred. Please try again."],"Enter your closest city to find nearby events.":["Enter your closest city to find nearby events."],"l, M j, Y":["l j F Y"]}},"comment":{"reference":"wp-admin\/js\/dashboard.js"}} \ No newline at end of file diff --git a/web/app/languages/en_GB-e53526243551a102928735ec9eed4edf.json b/web/app/languages/en_GB-e53526243551a102928735ec9eed4edf.json old mode 100755 new mode 100644 index 2769f5e6..9821c6ac --- a/web/app/languages/en_GB-e53526243551a102928735ec9eed4edf.json +++ b/web/app/languages/en_GB-e53526243551a102928735ec9eed4edf.json @@ -1 +1 @@ -{"translation-revision-date":"2024-11-14 20:13:08+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"settings landmark area\u0004Settings":["Settings"],"New to the block editor? Want to learn more about using it? Here's a detailed guide.<\/a>":["New to the block editor? Want to learn more about using it? Here's a detailed guide.<\/a>"],"List View shortcuts":["List view shortcuts"],"Add non breaking space.":["Add non-breaking space."],"header landmark area\u0004Header":["Header"],"https:\/\/wordpress.org\/documentation\/article\/wordpress-block-editor\/":["https:\/\/wordpress.org\/documentation\/article\/wordpress-block-editor\/"],"Convert the current paragraph or heading to a heading of level 1 to 6.":["Convert the current paragraph or heading to a heading of level 1 to 6."],"Convert the current heading to a paragraph.":["Convert the current heading to a paragraph."],"Make the selected text inline code.":["Make the selected text inline code."],"Strikethrough the selected text.":["Strikethrough the selected text."],"The \"%s\" plugin has encountered an error and cannot be rendered.":["The \"%s\" plugin has encountered an error and cannot be rendered."],"Close block inserter":["Close block inserter"],"Insert a link to a post or page.":["Insert a link to a post or page."],"https:\/\/wordpress.org\/documentation\/article\/block-based-widgets-editor\/":["https:\/\/wordpress.org\/documentation\/article\/block-based-widgets-editor\/"],"Your theme provides %s \u201cblock\u201d area for you to add and edit content.\u00a0Try adding a search bar, social icons, or other types of blocks here and see how they\u2019ll look on your site.":["Your theme provides %s \u201cblock\u201d area for you to add and edit content.\u00a0Try adding a search bar, social icons, or other types of blocks here and see how they\u2019ll look on your site.","Your theme provides %s different \u201cblock\u201d areas for you to add and edit content.\u00a0Try adding a search bar, social icons, or other types of blocks here and see how they\u2019ll look on your site."],"Widgets footer":["Widgets footer"],"Widgets and blocks":["Widgets and blocks"],"Widgets top bar":["Widgets top bar"],"Display block breadcrumbs deactivated":["Display block breadcrumbs deactivated"],"Display block breadcrumbs activated":["Display block breadcrumbs activated"],"Saving\u2026":["Saving\u2026"],"Widget Areas":["Widget Areas"],"Manage with live preview":["Manage with live preview"],"Your theme does not contain any Widget Areas.":["Your theme does not contain any Widget Areas."],"Blocks in this Widget Area will not be displayed in your site.":["Blocks in this Widget Area will not be displayed in your site."],"Widget Areas are global parts in your site\u2019s layout that can accept blocks. These vary by theme, but are typically parts like your Sidebar or Footer.":["Widget Areas are global parts in your site\u2019s layout that can accept blocks. These vary by theme, but are typically parts like your Sidebar or Footer."],"A widget area container.":["A widget area container."],"Widget Area":["Widget Area"],"Could not save the following widgets: %s.":["Could not save the following widgets: %s."],"There was an error. %s":["There was an error. %s"],"Widgets saved.":["Widgets saved."],"Generic label for block inserter button\u0004Toggle block inserter":["Toggle block inserter"],"Get the Classic Widgets plugin.":["Get the Classic Widgets plugin."],"https:\/\/wordpress.org\/plugins\/classic-widgets\/":["https:\/\/en-gb.wordpress.org\/plugins\/classic-widgets\/"],"Want to stick with the old widgets?":["Want to stick with the old widgets?"],"You can now add any block to your site\u2019s widget areas. Don\u2019t worry, all of your favorite widgets still work flawlessly.":["You can now add any block to your site\u2019s widget areas. Don\u2019t worry, all of your favourite widgets still work flawlessly."],"Welcome to block Widgets":["Welcome to block widgets"],"Contain text cursor inside block deactivated":["Contain text cursor inside block deactivated"],"Contain text cursor inside block activated":["Contain text cursor inside block activated"],"Widgets settings":["Widgets settings"],"Block Library":["Block Library"],"Display block breadcrumbs":["Display block breadcrumbs"],"Shows block breadcrumbs at the bottom of the editor.":["Shows block breadcrumbs at the bottom of the editor."],"Use theme styles":["Use theme styles"],"Make the editor look like your theme.":["Make the editor look like your theme."],"Aids screen readers by stopping text caret from leaving blocks.":["Aids screen readers by stopping text caret from leaving blocks."],"Preferences":["Preferences"],"Contain text cursor inside block":["Contain text cursor inside block"],"Learn how to use the block editor":["Learn how to use the block editor"],"All of the blocks available to you live in the block library. You\u2019ll find it wherever you see the icon.":["All of the blocks available to you live in the block library. You\u2019ll find it wherever you see the icon."],"Get to know the block library":["Get to know the block library"],"Each block comes with its own set of controls for changing things like color, width, and alignment. These will show and hide automatically when you have a block selected.":["Each block comes with its own set of controls for changing things like colour, width and alignment. These will show and hide automatically when you have a block selected."],"Make each block your own":["Make each block your own"],"Get started":["Get started"],"inserter":["inserter"],"Welcome Guide":["Welcome Guide"],"Keyboard shortcuts":["Keyboard shortcuts"],"Display these keyboard shortcuts.":["Display these keyboard shortcuts."],"Top toolbar deactivated":["Top toolbar deactivated"],"Top toolbar activated":["Top toolbar activated"],"Top toolbar":["Top toolbar"],"Close Settings":["Close Settings"],"Pin to toolbar":["Pin to toolbar"],"Unpin from toolbar":["Unpin from toolbar"],"Close plugin":["Close plugin"],"Remove a link.":["Remove a link."],"Convert the selected text into a link.":["Convert the selected text into a link."],"Underline the selected text.":["Underline the selected text."],"Make the selected text italic.":["Make the selected text italic."],"Make the selected text bold.":["Make the selected text bold."],"Text formatting":["Text formatting"],"Forward-slash":["Forward-slash"],"Change the block type after adding a new paragraph.":["Change the block type after adding a new paragraph."],"Block shortcuts":["Block shortcuts"],"Selection shortcuts":["Selection shortcuts"],"Navigate to the previous part of the editor.":["Navigate to the previous part of the editor."],"Navigate to the next part of the editor.":["Navigate to the next part of the editor."],"Redo your last undo.":["Redo your last undo."],"Undo your last changes.":["Undo your last changes."],"Save your changes.":["Save your changes."],"Global shortcuts":["Global shortcuts"],"Access all block and document tools in a single place":["Access all block and document tools in a single place"],"noun\u0004View":["View"],"Options":["Options"],"Document tools":["Document tools"],"You have unsaved changes. If you proceed, they will be lost.":["You have unsaved changes. If you proceed, they will be lost."],"The editor has encountered an unexpected error.":["The editor has encountered an unexpected error."],"Copy Error":["Copy Error"],"No block selected.":["No block selected."],"(opens in a new tab)":["(opens in a new tab)"],"List View":["List View"],"Tools":["Tools"],"Footer":["Footer"],"Block":["Block"],"Widgets":["Widgets"],"Settings":["Settings"],"Help":["Help"],"Close":["Close"],"Update":["Update"],"Redo":["Redo"],"Content":["Content"],"Publish":["Publish"],"Undo":["Undo"]}},"comment":{"reference":"wp-includes\/js\/dist\/edit-widgets.js"}} \ No newline at end of file +{"translation-revision-date":"2025-04-06 12:37:11+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Explore all blocks":["Explore all blocks"],"Customize each block":["Customise each block"],"settings landmark area\u0004Settings":["Settings"],"New to the block editor? Want to learn more about using it? Here's a detailed guide.<\/a>":["New to the block editor? Want to learn more about using it? Here's a detailed guide.<\/a>"],"List View shortcuts":["List view shortcuts"],"Add non breaking space.":["Add non-breaking space."],"header landmark area\u0004Header":["Header"],"https:\/\/wordpress.org\/documentation\/article\/wordpress-block-editor\/":["https:\/\/wordpress.org\/documentation\/article\/wordpress-block-editor\/"],"Convert the current paragraph or heading to a heading of level 1 to 6.":["Convert the current paragraph or heading to a heading of level 1 to 6."],"Convert the current heading to a paragraph.":["Convert the current heading to a paragraph."],"Make the selected text inline code.":["Make the selected text inline code."],"Strikethrough the selected text.":["Strikethrough the selected text."],"The \"%s\" plugin has encountered an error and cannot be rendered.":["The \"%s\" plugin has encountered an error and cannot be rendered."],"Insert a link to a post or page.":["Insert a link to a post or page."],"https:\/\/wordpress.org\/documentation\/article\/block-based-widgets-editor\/":["https:\/\/wordpress.org\/documentation\/article\/block-based-widgets-editor\/"],"Your theme provides %s \u201cblock\u201d area for you to add and edit content.\u00a0Try adding a search bar, social icons, or other types of blocks here and see how they\u2019ll look on your site.":["Your theme provides %s \u201cblock\u201d area for you to add and edit content.\u00a0Try adding a search bar, social icons, or other types of blocks here and see how they\u2019ll look on your site.","Your theme provides %s different \u201cblock\u201d areas for you to add and edit content.\u00a0Try adding a search bar, social icons, or other types of blocks here and see how they\u2019ll look on your site."],"Widgets footer":["Widgets footer"],"Widgets and blocks":["Widgets and blocks"],"Widgets top bar":["Widgets top bar"],"Display block breadcrumbs deactivated":["Display block breadcrumbs deactivated"],"Display block breadcrumbs activated":["Display block breadcrumbs activated"],"Saving\u2026":["Saving\u2026"],"Widget Areas":["Widget Areas"],"Manage with live preview":["Manage with live preview"],"Your theme does not contain any Widget Areas.":["Your theme does not contain any Widget Areas."],"Blocks in this Widget Area will not be displayed in your site.":["Blocks in this Widget Area will not be displayed in your site."],"Widget Areas are global parts in your site\u2019s layout that can accept blocks. These vary by theme, but are typically parts like your Sidebar or Footer.":["Widget Areas are global parts in your site\u2019s layout that can accept blocks. These vary by theme, but are typically parts like your Sidebar or Footer."],"A widget area container.":["A widget area container."],"Widget Area":["Widget Area"],"Could not save the following widgets: %s.":["Could not save the following widgets: %s."],"There was an error. %s":["There was an error. %s"],"Widgets saved.":["Widgets saved."],"Generic label for block inserter button\u0004Block Inserter":["Block Inserter"],"Get the Classic Widgets plugin.":["Get the Classic Widgets plugin."],"https:\/\/wordpress.org\/plugins\/classic-widgets\/":["https:\/\/en-gb.wordpress.org\/plugins\/classic-widgets\/"],"Want to stick with the old widgets?":["Want to stick with the old widgets?"],"You can now add any block to your site\u2019s widget areas. Don\u2019t worry, all of your favorite widgets still work flawlessly.":["You can now add any block to your site\u2019s widget areas. Don\u2019t worry, all of your favourite widgets still work flawlessly."],"Welcome to block Widgets":["Welcome to block widgets"],"Contain text cursor inside block deactivated":["Contain text cursor inside block deactivated"],"Contain text cursor inside block activated":["Contain text cursor inside block activated"],"Widgets settings":["Widgets settings"],"Block Library":["Block Library"],"Display block breadcrumbs":["Display block breadcrumbs"],"Shows block breadcrumbs at the bottom of the editor.":["Shows block breadcrumbs at the bottom of the editor."],"Use theme styles":["Use theme styles"],"Make the editor look like your theme.":["Make the editor look like your theme."],"Aids screen readers by stopping text caret from leaving blocks.":["Aids screen readers by stopping text caret from leaving blocks."],"Preferences":["Preferences"],"Contain text cursor inside block":["Contain text cursor inside block"],"All of the blocks available to you live in the block library. You\u2019ll find it wherever you see the icon.":["All of the blocks available to you live in the block library. You\u2019ll find it wherever you see the icon."],"Each block comes with its own set of controls for changing things like color, width, and alignment. These will show and hide automatically when you have a block selected.":["Each block comes with its own set of controls for changing things like colour, width and alignment. These will show and hide automatically when you have a block selected."],"Get started":["Get started"],"inserter":["inserter"],"Welcome Guide":["Welcome Guide"],"Keyboard shortcuts":["Keyboard shortcuts"],"Display these keyboard shortcuts.":["Display these keyboard shortcuts."],"Top toolbar deactivated":["Top toolbar deactivated"],"Top toolbar activated":["Top toolbar activated"],"Top toolbar":["Top toolbar"],"Close Settings":["Close Settings"],"Pin to toolbar":["Pin to toolbar"],"Unpin from toolbar":["Unpin from toolbar"],"Close plugin":["Close plugin"],"Remove a link.":["Remove a link."],"Convert the selected text into a link.":["Convert the selected text into a link."],"Underline the selected text.":["Underline the selected text."],"Make the selected text italic.":["Make the selected text italic."],"Make the selected text bold.":["Make the selected text bold."],"Text formatting":["Text formatting"],"Forward-slash":["Forward-slash"],"Change the block type after adding a new paragraph.":["Change the block type after adding a new paragraph."],"Block shortcuts":["Block shortcuts"],"Selection shortcuts":["Selection shortcuts"],"Navigate to the previous part of the editor.":["Navigate to the previous part of the editor."],"Navigate to the next part of the editor.":["Navigate to the next part of the editor."],"Redo your last undo.":["Redo your last undo."],"Undo your last changes.":["Undo your last changes."],"Save your changes.":["Save your changes."],"Global shortcuts":["Global shortcuts"],"Access all block and document tools in a single place":["Access all block and document tools in a single place"],"noun\u0004View":["View"],"Options":["Options"],"Document tools":["Document tools"],"You have unsaved changes. If you proceed, they will be lost.":["You have unsaved changes. If you proceed, they will be lost."],"The editor has encountered an unexpected error.":["The editor has encountered an unexpected error."],"Copy Error":["Copy Error"],"No block selected.":["No block selected."],"(opens in a new tab)":["(opens in a new tab)"],"List View":["List View"],"Tools":["Tools"],"Footer":["Footer"],"Block":["Block"],"Learn more":["Learn more"],"Widgets":["Widgets"],"Settings":["Settings"],"Help":["Help"],"Close":["Close"],"Update":["Update"],"Redo":["Redo"],"Content":["Content"],"Publish":["Publish"],"Undo":["Undo"]}},"comment":{"reference":"wp-includes\/js\/dist\/edit-widgets.js"}} \ No newline at end of file diff --git a/web/app/languages/en_GB-f575f481034e90e21d832e415fd95fcf.json b/web/app/languages/en_GB-f575f481034e90e21d832e415fd95fcf.json old mode 100755 new mode 100644 index e22637a5..7fabda4d --- a/web/app/languages/en_GB-f575f481034e90e21d832e415fd95fcf.json +++ b/web/app/languages/en_GB-f575f481034e90e21d832e415fd95fcf.json @@ -1 +1 @@ -{"translation-revision-date":"2024-11-14 20:13:08+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Could not set that as the thumbnail image. Try a different attachment.":["Could not set that as the thumbnail image. Try a different attachment."]}},"comment":{"reference":"wp-includes\/js\/media-editor.js"}} \ No newline at end of file +{"translation-revision-date":"2025-04-06 12:37:11+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Could not set that as the thumbnail image. Try a different attachment.":["Could not set that as the thumbnail image. Try a different attachment."]}},"comment":{"reference":"wp-includes\/js\/media-editor.js"}} \ No newline at end of file diff --git a/web/app/languages/en_GB-f70806bf0c7d62f2908bd5a1c3fe4efc.json b/web/app/languages/en_GB-f70806bf0c7d62f2908bd5a1c3fe4efc.json old mode 100755 new mode 100644 index 53bc0e00..81588c04 --- a/web/app/languages/en_GB-f70806bf0c7d62f2908bd5a1c3fe4efc.json +++ b/web/app/languages/en_GB-f70806bf0c7d62f2908bd5a1c3fe4efc.json @@ -1 +1 @@ -{"translation-revision-date":"2024-11-14 20:13:08+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 post":["Add new post"],"Template parts":["Template parts"],"Templates":["Templates"],"Patterns":["Patterns"],"Navigation":["Navigation"],"Styles":["Styles"],"Add new page":["Add new page"],"An error occurred while creating the item.":["An error occurred while creating the item."],"(no title)":["(no title)"],"Pages":["Pages"]}},"comment":{"reference":"wp-includes\/js\/dist\/core-commands.js"}} \ No newline at end of file +{"translation-revision-date":"2025-04-06 12:37:11+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 post":["Add new post"],"Template parts":["Template parts"],"Templates":["Templates"],"Patterns":["Patterns"],"Navigation":["Navigation"],"Styles":["Styles"],"Add new page":["Add new page"],"An error occurred while creating the item.":["An error occurred while creating the item."],"(no title)":["(no title)"],"Pages":["Pages"]}},"comment":{"reference":"wp-includes\/js\/dist\/core-commands.js"}} \ No newline at end of file diff --git a/web/app/languages/en_GB-f8f49d9fc4a9cf7d78ec99285417bd9c.json b/web/app/languages/en_GB-f8f49d9fc4a9cf7d78ec99285417bd9c.json old mode 100755 new mode 100644 index 5d6aa485..65fad495 --- a/web/app/languages/en_GB-f8f49d9fc4a9cf7d78ec99285417bd9c.json +++ b/web/app/languages/en_GB-f8f49d9fc4a9cf7d78ec99285417bd9c.json @@ -1 +1 @@ -{"translation-revision-date":"2024-11-14 20:13:08+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Word count type. Do not translate!\u0004words":["words"],"text tracks\u0004Edit %s":["Edit %s"],"archive label\u0004%1$s: %2$s":["%1$s: %2$s"],"Choose an existing %s.":["Choose an existing %s."],"Custom Template Part":["Custom template part"],"Create new %s":["Create new %s"],"Edit social link":["Edit social link"],"Query block: Reload full page enabled":["Query block: reload full page enabled"],"Items":["Items"],"Display a list of posts or custom post types based on specific criteria.":["Display a list of posts or custom post types based on specific criteria."],"Display a list of posts or custom post types based on the current template.":["Display a list of posts or custom post types based on the current template."],"Query type":["Query type"],"Select the type of content to display: posts, pages, or custom post types.":["Select the type of content to display: posts, pages, or custom post types."],"Max pages":["Max pages"],"Sticky posts always appear first, regardless of their publish date.":["Sticky posts always appear first, regardless of their publish date."],"Reload full page":["Reload full page"],"Enhancement disabled because there are non-compatible blocks inside the Query block.":["Enhancement disabled because there are non-compatible blocks inside the Query block."],"Reload the full page\u2014instead of just the posts list\u2014when visitors navigate between pages.":["Reload the full page \u2013 instead of just the posts list \u2013 when visitors navigate between pages."],"date order\u0004dmy":["dmy"],"Your site doesn\u2019t include support for the \"%s\" block. You can leave it as-is or remove it.":["Your site doesn\u2019t include support for the \"%s\" block. You can leave it as-is or remove it."],"Your site doesn\u2019t include support for the \"%s\" block. You can leave it as-is, convert it to custom HTML, or remove it.":["Your site doesn\u2019t include support for the \"%s\" block. You can leave it as-is, convert it to custom HTML, or remove it."],"List style":["List style"],"La Mancha":["La Mancha"],"Media Files":["Media files"],"Link images to media files":["Link images to media files"],"Link images to attachment pages":["Link images to attachment pages"],"%s Embed":["%s Embed"],"Embed caption text":["Embed caption text"],"Categories List":["Categories list"],"Terms List":["Terms list"],"Show empty terms":["Show empty terms"],"Show only top level terms":["Show only top level terms"],"Upload or drag an image file here, or pick one from your library.":["Upload or drag an image file here, or pick one from your library."],"When enabled, videos will play directly within the webpage on mobile browsers, instead of opening in a fullscreen player.":["When enabled, videos will play directly within the web page on mobile browsers, instead of opening in a full screen player."],"Template Part \"%s\" updated.":["Template part \"%s\" updated."],"Show text":["Show text"],"The text is visible when enabled from the parent Social Icons block.":["The text is visible when enabled from the parent Social Icons block."],"Enter social link":["Enter social link"],"RSS block display setting\u0004Grid view":["Grid view"],"RSS block display setting\u0004List view":["List view"],"RSS URL":["RSS URL"],"Remove citation":["Remove citation"],"Experimental full-page client-side navigation setting enabled.":["Experimental full-page client-side navigation setting enabled."],"Post template block display setting\u0004Grid view":["Grid view"],"Post template block display setting\u0004List view":["List view"],"Latest posts block display setting\u0004Grid view":["Grid view"],"Latest posts block display setting\u0004List view":["List view"],"Embed a Bluesky post.":["Embed a Bluesky post."],"Divide into columns. Select a layout:":["Divide into columns. Select a layout:"],"https:\/\/www.w3.org\/WAI\/tutorials\/images\/decision-tree\/":["https:\/\/www.w3.org\/WAI\/tutorials\/images\/decision-tree\/"],"Currently, avoiding full page reloads is not possible when non-interactive or non-client Navigation compatible blocks from plugins are present inside the Query block.":["Currently, avoiding full page reloads is not possible when non-interactive or non-client navigation-compatible blocks from plugins are present inside the Query block."],"Edit original":["Edit original"],"Only link to posts that have the same taxonomy terms as the current post. For example the same tags or categories.":["Only link to posts that have the same taxonomy terms as the current post. For example, the same tags or categories."],"Filter by taxonomy":["Filter by taxonomy"],"Unfiltered":["Unfiltered"],"This Navigation Menu displays your website's pages. Editing it will enable you to add, delete, or reorder pages. However, new pages will no longer be added automatically.":["This navigation menu displays your website's pages. Editing it will enable you to add, delete, or reorder pages. However, new pages will no longer be added automatically."],"Pattern \"%s\" cannot be rendered inside itself.":["Pattern \"%s\" cannot be rendered inside itself."],"Search for and add a link to your Navigation.":["Search for and add a link to your navigation."],"Choose a block to add to your Navigation.":["Choose a block to add to your navigation."],"Crop image to fill":["Crop image to fill"],"Alternative text for an image. Block toolbar label, a low character count is preferred.\u0004Alternative text":["Alternative text"],"Upload to Media Library":["Upload to Media Library"],"Connected to dynamic data":["Connected to dynamic data"],"Connected to %s":["Connected to %s"],"HTML preview is not yet fully accessible. Please switch screen reader to virtualized mode to navigate the below iFrame.":["HTML preview is not yet fully accessible. Please switch screen reader to virtualised mode to navigate the iFrame below."],"Custom HTML Preview":["Custom HTML preview"],"Open images in new tab":["Open images in new tab"],"Randomize order":["Randomise order"],"Crop images to fit":["Crop images to fit"],"Add gallery caption":["Add gallery caption"],"Error\/failure message for form submissions.":["Error\/failure message for form submissions."],"Form Submission Error":["Form submission error"],"Your form has been submitted successfully.":["Your form has been submitted successfully."],"Success message for form submissions.":["Success message for form submissions."],"Form Submission Success":["Form submission success"],"Submission error notification":["Submission error notification"],"Submission success notification":["Submission success notification"],"Enter the message you wish displayed for form submission error\/success, and select the type of the message (success\/error) from the block's options.":["Enter the message you wish to be displayed for form submission error\/success, and select the type of the message (success\/error) from the block's options."],"A numeric input.":["A numeric input."],"Number Input":["Number input"],"Used for phone numbers.":["Used for phone numbers."],"Telephone Input":["Telephone input"],"Used for URLs.":["Used for URLs."],"URL Input":["URL input"],"Used for email addresses.":["Used for email addresses."],"Email Input":["Email input"],"A simple checkbox input.":["A simple tickbox input."],"Checkbox Input":["Tickbox input"],"A textarea input to allow entering multiple lines of text.":["A text area input to allow entering multiple lines of text."],"Textarea Input":["Text area input"],"A generic text input.":["A generic text input."],"Text Input":["Text input"],"Type the label for this input":["Type the label for this input"],"Empty label":["Empty label"],"Value":["Value"],"Affects the \"name\" atribute of the input element, and is used as a name for the form submission results.":["Affects the \"name\" atribute of the input element, and is used as a name for the form submission results."],"Required":["Required"],"Inline label":["Inline label"],"Request data deletion":["Request data deletion"],"Request data export":["Request data export"],"To request an export or deletion of your personal data on this site, please fill-in the form below. You can define the type of request you wish to perform, and your email address. Once the form is submitted, you will receive a confirmation email with instructions on the next steps.":["To request an export or deletion of your personal data on this site, please fill in the form below. You can define the type of request you wish to perform, and your email address. Once the form is submitted, you will receive a confirmation email with instructions on the next steps."],"A form to request data exports and\/or deletion.":["A form to request data exports and\/or deletion."],"Experimental privacy request form":["Experimental privacy request form"],"A comment form for posts and pages.":["A comment form for posts and pages."],"Experimental Comment form":["Experimental comment form"],"The URL where the form should be submitted.":["The URL where the form should be submitted."],"Form action":["Form action"],"Method":["Method"],"The email address where form submissions will be sent. Separate multiple email addresses with a comma.":["The email address where form submissions will be sent. Separate multiple email addresses with a comma."],"Email for form submissions":["Email for form submissions"],"Select the method to use for form submissions.":["Select the method to use for form submissions."],"Select the method to use for form submissions. Additional options for the \"custom\" mode can be found in the \"Advanced\" section.":["Select the method to use for form submissions. Additional options for the \"custom\" mode can be found in the \"Advanced\" section."],"- Custom -":["- Custom -"],"Send email":["Send email"],"Submissions method":["Submissions method"],"There was an error submitting your form.":["There was an error submitting your form."],"Your form has been submitted successfully":["Your form has been submitted successfully"],"Focal point":["Focal point"],"Caption text":["Caption text"],"Currently, avoiding full page reloads is not possible when a Content block is present inside the Query block.":["Currently, avoiding full page reloads is not possible when a Content block is present inside the Query block."],"If you still want to prevent full page reloads, remove that block, then disable \"Reload full page\" again in the Query Block settings.":["If you still want to prevent full page reloads, remove that block, then disable \"Reload full page\" again in the Query Block settings."],"Mark as nofollow":["Mark as nofollow"],"Footnotes are not supported here. Add this block to post or page content.":["Footnotes are not supported here. Add this block to post or page content."],"%s name":["%s name"],"%s: Name":["%s: Name"],"Specify how many links can appear before and after the current page number. Links to the first, current and last page are always visible.":["Specify how many links can appear before and after the current page number. Links to the first, current and last page are always visible."],"Number of links":["Number of links"],"Browsing between pages requires a full page reload.":["Browsing between pages requires a full page reload."],"Modified Date":["Modified Date"],"Comments form disabled in editor.":["Comments form disabled in editor."],"Block: Paragraph":["Block: Paragraph"],"Edit Page List":["Edit Page List"],"Unsaved Navigation Menu.":["Unsaved Navigation Menu."],"Overlay menu controls":["Overlay menu controls"],"The current menu options offer reduced accessibility for users and are not recommended. Enabling either \"Open on Click\" or \"Show arrow\" offers enhanced accessibility by allowing keyboard users to browse submenus selectively.":["The current menu options offer reduced accessibility for users and are not recommended. Enabling either \"Open on Click\" or \"Show arrow\" offers enhanced accessibility by allowing keyboard users to browse submenus selectively."],"Navigation Menu: \"%s\"":["Navigation menu: \"%s\""],"Navigation Menu has been deleted or is unavailable.