Compare commits
32 Commits
v3.8.22
...
dependabot
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
b12ccafc81 | ||
|
|
01fe047f2b | ||
|
|
a4dc0fb0e6 | ||
|
|
0905ad98c1 | ||
|
|
6a309a9624 | ||
|
|
7969e51231 | ||
|
|
3c879b2523 | ||
|
|
783d016bd1 | ||
|
|
1436122b01 | ||
|
|
922e4f993b | ||
|
|
16d79ec11a | ||
|
|
f08158342a | ||
|
|
be7437d117 | ||
|
|
1a76eb8a83 | ||
|
|
24851106bd | ||
|
|
46e3692a03 | ||
|
|
196fbab5b1 | ||
|
|
f9e6e75c0c | ||
|
|
61363a1985 | ||
|
|
2c639c8f4e | ||
|
|
3cdf77ce54 | ||
|
|
1719e5dd21 | ||
|
|
2436aa527c | ||
|
|
855b2b5c36 | ||
|
|
b78b86cea3 | ||
|
|
047eec686d | ||
|
|
ff28962660 | ||
|
|
6751ebd110 | ||
|
|
03fbe79152 | ||
|
|
9abba8fd01 | ||
|
|
787e4cef0b | ||
|
|
56de3e28f5 |
2
.github/workflows/build.yml
vendored
2
.github/workflows/build.yml
vendored
@@ -9,7 +9,7 @@ jobs:
|
|||||||
|
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
ruby: [2.5, 2.6, 2.7, '3.0', 3.1]
|
ruby: [2.7, '3.0', 3.1, 3.2]
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
|
|||||||
8
.github/workflows/docker.yml
vendored
8
.github/workflows/docker.yml
vendored
@@ -34,22 +34,22 @@ jobs:
|
|||||||
exit 1
|
exit 1
|
||||||
|
|
||||||
- name: Set up QEMU
|
- name: Set up QEMU
|
||||||
uses: docker/setup-qemu-action@v1
|
uses: docker/setup-qemu-action@v2
|
||||||
|
|
||||||
- name: Set up Docker Buildx
|
- name: Set up Docker Buildx
|
||||||
uses: docker/setup-buildx-action@v1
|
uses: docker/setup-buildx-action@v2
|
||||||
id: buildx
|
id: buildx
|
||||||
with:
|
with:
|
||||||
install: true
|
install: true
|
||||||
|
|
||||||
- name: Login to Docker Hub
|
- name: Login to Docker Hub
|
||||||
uses: docker/login-action@v1.14.1
|
uses: docker/login-action@v2.1.0
|
||||||
with:
|
with:
|
||||||
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
||||||
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
||||||
|
|
||||||
- name: Build and push
|
- name: Build and push
|
||||||
uses: docker/build-push-action@v2
|
uses: docker/build-push-action@v3
|
||||||
with:
|
with:
|
||||||
platforms: linux/amd64,linux/arm/v7,linux/arm64
|
platforms: linux/amd64,linux/arm/v7,linux/arm64
|
||||||
push: true
|
push: true
|
||||||
|
|||||||
2
.github/workflows/gempush.yml
vendored
2
.github/workflows/gempush.yml
vendored
@@ -12,7 +12,7 @@ jobs:
|
|||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
- name: Set up Ruby 2.6
|
- name: Set up Ruby 2.6
|
||||||
uses: actions/setup-ruby@v1.1.3
|
uses: ruby/setup-ruby@v1
|
||||||
with:
|
with:
|
||||||
ruby-version: 2.6.x
|
ruby-version: 2.6.x
|
||||||
|
|
||||||
|
|||||||
@@ -90,15 +90,12 @@ The DB is located at ~/.wpscan/db
|
|||||||
|
|
||||||
The WPScan CLI tool uses the [WordPress Vulnerability Database API](https://wpscan.com/api) to retrieve WordPress vulnerability data in real time. For WPScan to retrieve the vulnerability data an API token must be supplied via the `--api-token` option, or via a configuration file, as discussed below. An API token can be obtained by registering an account on [WPScan.com](https://wpscan.com/register).
|
The WPScan CLI tool uses the [WordPress Vulnerability Database API](https://wpscan.com/api) to retrieve WordPress vulnerability data in real time. For WPScan to retrieve the vulnerability data an API token must be supplied via the `--api-token` option, or via a configuration file, as discussed below. An API token can be obtained by registering an account on [WPScan.com](https://wpscan.com/register).
|
||||||
|
|
||||||
Up to 25 API requests per day are given free of charge, that should be suitable to scan most WordPress websites at least once per day. When the daily 25 API requests are exhausted, WPScan will continue to work as normal but without any vulnerability data. Users can upgrade to paid API usage to increase their API limits within their user profile on [WPScan.com](https://wpscan.com/).
|
Up to **75** API requests per day are given free of charge, that should be suitable to scan most WordPress websites at least once per day. When the daily 75 API requests are exhausted, WPScan will continue to work as normal but without any vulnerability data.
|
||||||
|
|
||||||
#### The Free plan allows 25 API requests per day. View the different [available API plans](https://wpscan.com/api).
|
|
||||||
|
|
||||||
### How many API requests do you need?
|
### How many API requests do you need?
|
||||||
|
|
||||||
- Our WordPress scanner makes one API request for the WordPress version, one request per installed plugin and one request per installed theme.
|
- Our WordPress scanner makes one API request for the WordPress version, one request per installed plugin and one request per installed theme.
|
||||||
- On average, a WordPress website has 22 installed plugins.
|
- On average, a WordPress website has 22 installed plugins.
|
||||||
- The Free plan should cover around 50% of all WordPress websites.
|
|
||||||
|
|
||||||
## Load CLI options from file/s
|
## Load CLI options from file/s
|
||||||
|
|
||||||
@@ -137,7 +134,7 @@ The feature mentioned above is useful to keep the API Token in a config file and
|
|||||||
|
|
||||||
```yml
|
```yml
|
||||||
cli_options:
|
cli_options:
|
||||||
api_token: YOUR_API_TOKEN
|
api_token: 'YOUR_API_TOKEN'
|
||||||
```
|
```
|
||||||
|
|
||||||
## Load API Token From ENV (since v3.7.10)
|
## Load API Token From ENV (since v3.7.10)
|
||||||
|
|||||||
@@ -17,7 +17,8 @@ module WPScan
|
|||||||
'Maximum number of passwords to send by request with XMLRPC multicall'],
|
'Maximum number of passwords to send by request with XMLRPC multicall'],
|
||||||
default: 500),
|
default: 500),
|
||||||
OptChoice.new(['--password-attack ATTACK',
|
OptChoice.new(['--password-attack ATTACK',
|
||||||
'Force the supplied attack to be used rather than automatically determining one.'],
|
'Force the supplied attack to be used rather than automatically determining one.',
|
||||||
|
'Multicall will only work against WP < 4.4'],
|
||||||
choices: %w[wp-login xmlrpc xmlrpc-multicall],
|
choices: %w[wp-login xmlrpc xmlrpc-multicall],
|
||||||
normalize: %i[downcase underscore to_sym]),
|
normalize: %i[downcase underscore to_sym]),
|
||||||
OptString.new(['--login-uri URI', 'The URI of the login page if different from /wp-login.php'])
|
OptString.new(['--login-uri URI', 'The URI of the login page if different from /wp-login.php'])
|
||||||
|
|||||||
11006
spec/fixtures/db/dynamic_finders.yml
vendored
11006
spec/fixtures/db/dynamic_finders.yml
vendored
File diff suppressed because it is too large
Load Diff
4814
spec/fixtures/dynamic_finders/expected.yml
vendored
4814
spec/fixtures/dynamic_finders/expected.yml
vendored
File diff suppressed because it is too large
Load Diff
156
spec/fixtures/dynamic_finders/plugin_version/4partners/translation_file/languages/4partners-ru_RU.po
vendored
Normal file
156
spec/fixtures/dynamic_finders/plugin_version/4partners/translation_file/languages/4partners-ru_RU.po
vendored
Normal file
@@ -0,0 +1,156 @@
|
|||||||
|
# Copyright (C) 2022 4partners
|
||||||
|
# This file is distributed under the GPL2.
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: 4partners 1.0.0\n"
|
||||||
|
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/4partners\n"
|
||||||
|
"POT-Creation-Date: 2022-10-13T14:15:50+00:00\n"
|
||||||
|
"PO-Revision-Date: 2022-10-13 17:18+0300\n"
|
||||||
|
"Last-Translator: \n"
|
||||||
|
"Language-Team: \n"
|
||||||
|
"Language: ru\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"X-Generator: Poedit 3.0\n"
|
||||||
|
"X-Domain: 4partners\n"
|
||||||
|
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
|
||||||
|
"%10<=4 && (n%100<12 || n%100>14) ? 1 : 2);\n"
|
||||||
|
|
||||||
|
#. Plugin Name of the plugin
|
||||||
|
#. Author of the plugin
|
||||||
|
msgid "4partners"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Plugin URI of the plugin
|
||||||
|
#. Description of the plugin
|
||||||
|
msgid "-"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Author URI of the plugin
|
||||||
|
msgid "4partners.io"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: classes/Plugin.php:145
|
||||||
|
msgid ""
|
||||||
|
"4partners plugin error: please install and activate WooCommerce wordpress "
|
||||||
|
"plugin"
|
||||||
|
msgstr ""
|
||||||
|
"Ошибка плагина 4partners: пожалуйста, установите и активируйте WooCommerce "
|
||||||
|
"плагин"
|
||||||
|
|
||||||
|
#: classes/Plugin.php:152
|
||||||
|
msgid ""
|
||||||
|
"4partners plugin error: please install and activate Cyr-To-Lat wordpress "
|
||||||
|
"plugin"
|
||||||
|
msgstr ""
|
||||||
|
"Ошибка плагина 4partners: пожалуйста, установите и активируйте Cyr-To-Lat "
|
||||||
|
"wordpress плагин"
|
||||||
|
|
||||||
|
#: classes/Services/CategoryService.php:164
|
||||||
|
msgid "4partners price adjustment"
|
||||||
|
msgstr "4partners увеличение цены"
|
||||||
|
|
||||||
|
#: classes/Services/CategoryService.php:176
|
||||||
|
msgid "No less than"
|
||||||
|
msgstr "Не менее чем"
|
||||||
|
|
||||||
|
#: classes/Services/ProductService.php:52
|
||||||
|
msgid "Fix product field values"
|
||||||
|
msgstr "Фиксировать значение полей товара"
|
||||||
|
|
||||||
|
#: classes/Services/ProductService.php:59
|
||||||
|
msgid "Title"
|
||||||
|
msgstr "Название"
|
||||||
|
|
||||||
|
#: classes/Services/ProductService.php:62
|
||||||
|
msgid "Description"
|
||||||
|
msgstr "Описание"
|
||||||
|
|
||||||
|
#: classes/Services/ProductService.php:65
|
||||||
|
#: classes/Services/SettingsService.php:298
|
||||||
|
msgid "Category"
|
||||||
|
msgstr "Категория"
|
||||||
|
|
||||||
|
#: classes/Services/SettingsService.php:58
|
||||||
|
#: classes/Services/SettingsService.php:133
|
||||||
|
msgid "Synchronization"
|
||||||
|
msgstr "Синхронизация"
|
||||||
|
|
||||||
|
#: classes/Services/SettingsService.php:59
|
||||||
|
#: classes/Services/SettingsService.php:141
|
||||||
|
#: classes/Services/SettingsService.php:385
|
||||||
|
msgid "Categories"
|
||||||
|
msgstr "Категории"
|
||||||
|
|
||||||
|
#: classes/Services/SettingsService.php:222
|
||||||
|
msgid "Product catalog language"
|
||||||
|
msgstr "Язык каталога товаров"
|
||||||
|
|
||||||
|
#: classes/Services/SettingsService.php:230
|
||||||
|
msgid "Daily"
|
||||||
|
msgstr "Ежедневно"
|
||||||
|
|
||||||
|
#: classes/Services/SettingsService.php:231
|
||||||
|
msgid "Twice daily"
|
||||||
|
msgstr "Дважды в день"
|
||||||
|
|
||||||
|
#: classes/Services/SettingsService.php:232
|
||||||
|
msgid "Weekly"
|
||||||
|
msgstr "Еженедельно"
|
||||||
|
|
||||||
|
#: classes/Services/SettingsService.php:240
|
||||||
|
msgid "How often to sync products?"
|
||||||
|
msgstr "Как часто синхронизировать товары?"
|
||||||
|
|
||||||
|
#: classes/Services/SettingsService.php:288
|
||||||
|
msgid "Please check categories for import from API"
|
||||||
|
msgstr "Пожалуйста, выберите категории для синхронизации с API"
|
||||||
|
|
||||||
|
#: classes/Services/SettingsService.php:295
|
||||||
|
msgid "Check all"
|
||||||
|
msgstr "Выбрать все"
|
||||||
|
|
||||||
|
#: classes/Services/SettingsService.php:299
|
||||||
|
msgid "Amount"
|
||||||
|
msgstr "Кол-во"
|
||||||
|
|
||||||
|
#: classes/Services/SettingsService.php:300
|
||||||
|
msgid "Started at"
|
||||||
|
msgstr "Начало"
|
||||||
|
|
||||||
|
#: classes/Services/SettingsService.php:301
|
||||||
|
msgid "Ended at"
|
||||||
|
msgstr "Окончание"
|
||||||
|
|
||||||
|
#: classes/Services/SettingsService.php:302
|
||||||
|
msgid "Status"
|
||||||
|
msgstr "Статус"
|
||||||
|
|
||||||
|
#: classes/Services/SettingsService.php:303
|
||||||
|
msgid "Items loaded"
|
||||||
|
msgstr "Товаров загружено"
|
||||||
|
|
||||||
|
#: classes/Services/SettingsService.php:357
|
||||||
|
msgid "Processing..."
|
||||||
|
msgstr "В процессе..."
|
||||||
|
|
||||||
|
#: classes/Services/SettingsService.php:360
|
||||||
|
msgid "Error"
|
||||||
|
msgstr "Ошибка"
|
||||||
|
|
||||||
|
#: classes/Services/SettingsService.php:362
|
||||||
|
msgid "Completed"
|
||||||
|
msgstr "Завершен"
|
||||||
|
|
||||||
|
#: classes/Services/SettingsService.php:386
|
||||||
|
msgid "Products"
|
||||||
|
msgstr "Товары"
|
||||||
|
|
||||||
|
#: classes/Services/SettingsService.php:388
|
||||||
|
msgid "Progress"
|
||||||
|
msgstr "Прогресс"
|
||||||
|
|
||||||
|
#: classes/Services/SettingsService.php:440
|
||||||
|
msgid "Checked categories"
|
||||||
|
msgstr "Выбранные категории"
|
||||||
@@ -0,0 +1,55 @@
|
|||||||
|
# Copyright (C) 2022 Accedeme
|
||||||
|
# This file is distributed under the GPLv2 or later.
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Accedeme for WP 0.2\n"
|
||||||
|
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wp-accedeme\n"
|
||||||
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"POT-Creation-Date: 2022-07-03T18:09:27+02:00\n"
|
||||||
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
|
"X-Generator: WP-CLI 2.6.0\n"
|
||||||
|
"X-Domain: wp-accedeme\n"
|
||||||
|
|
||||||
|
#. Plugin Name of the plugin
|
||||||
|
msgid "Accedeme for WP"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Plugin URI of the plugin
|
||||||
|
msgid "https://accedeme.com/plataforma-framework/wordpress"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Description of the plugin
|
||||||
|
msgid "Añade a tu sitio WordPress una capa de accesibilidad. Permite que cualquiera pueda acceder a tu página web independientemente de sus capacidades, conocimientos y del dispositivo usado."
|
||||||
|
msgstr "Añade a tu sitio WordPress una capa de accesibilidad. Permite que cualquiera pueda acceder a tu página web independientemente de sus capacidades, conocimientos y del dispositivo usado."
|
||||||
|
|
||||||
|
#. Author of the plugin
|
||||||
|
msgid "Accedeme"
|
||||||
|
msgstr "Accedeme"
|
||||||
|
|
||||||
|
#. Author URI of the plugin
|
||||||
|
msgid "https://accedeme.com/"
|
||||||
|
msgstr "https://accedeme.com/"
|
||||||
|
|
||||||
|
#: admin/wp-accedeme-admin.php:27
|
||||||
|
msgid "No tiene suficientes permisos para acceder a esta página."
|
||||||
|
msgstr "No tiene suficientes permisos para acceder a esta página."
|
||||||
|
|
||||||
|
#: admin/wp-accedeme-admin.php:46
|
||||||
|
msgid "WP Accedeme » Settings"
|
||||||
|
msgstr "WP Accedeme » Settings"
|
||||||
|
|
||||||
|
#: admin/wp-accedeme-admin.php:57
|
||||||
|
msgid "Panel de control"
|
||||||
|
msgstr "Panel de control"
|
||||||
|
|
||||||
|
#: admin/wp-accedeme-admin.php:64
|
||||||
|
msgid "Ya sólo queda registrar tu dominio en accedeme.com"
|
||||||
|
msgstr "Ya sólo queda registrar tu dominio en accedeme.com"
|
||||||
|
|
||||||
|
#: admin/wp-accedeme-admin.php:68
|
||||||
|
msgid "Registra tu dominio ahora"
|
||||||
|
msgstr "Registra tu dominio ahora"
|
||||||
@@ -0,0 +1,269 @@
|
|||||||
|
# Copyright (C) 2022 Codenroll
|
||||||
|
# This file is distributed under the GPL version 2 or later - http://www.gnu.org/licenses/old-licenses/gpl-2.0.html.
|
||||||
|
#, fuzzy
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: AccessibleWP - Skiplinks 1.0.0\n"
|
||||||
|
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/accessiblewp-skiplinks\n"
|
||||||
|
"POT-Creation-Date: 2022-09-10 14:07+0300\n"
|
||||||
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"X-Generator: Poedit 3.1.1\n"
|
||||||
|
"X-Domain: acwp\n"
|
||||||
|
|
||||||
|
#. Plugin Name of the plugin
|
||||||
|
msgid "AccessibleWP - Skiplinks"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Plugin URI of the plugin
|
||||||
|
msgid "https://wordpress.org/plugins/accessiblewp-skiplinks/"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Description of the plugin
|
||||||
|
msgid "Adds an accessible way to skip to page sections, as required by WCAG 2.0 for all levels."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Author of the plugin
|
||||||
|
msgid "Codenroll"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Author URI of the plugin
|
||||||
|
msgid "https://www.codenroll.co.il/"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: accessiblewp-skiplinks.php:96 accessiblewp-skiplinks.php:97
|
||||||
|
#: accessiblewp-skiplinks.php:101 accessiblewp-skiplinks.php:104
|
||||||
|
msgid "Navigate to"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/meta.php:12
|
||||||
|
msgid "Skiplinks"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/meta.php:58
|
||||||
|
msgid "The skiplinks allow the user to skip between page sections. In order to define unique skiplinks to this specific page, you need to set the ID of the section and a label."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/meta.php:59
|
||||||
|
msgid "For example:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/meta.php:61
|
||||||
|
msgid "Under \"Section ID\""
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/meta.php:62
|
||||||
|
msgid "Under \"Skiplink Label\""
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/meta.php:62
|
||||||
|
msgid "Meet Our Team"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/meta.php:68
|
||||||
|
msgid "Section ID"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/meta.php:69
|
||||||
|
msgid "Skiplink Label"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/meta.php:77
|
||||||
|
msgid "Drag this to reorder the skiplinks"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/meta.php:82
|
||||||
|
msgid "Drag Icon"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/meta.php:86 inc/meta.php:93 inc/meta.php:99
|
||||||
|
msgid "Remove skiplink"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/meta.php:104
|
||||||
|
msgid "Add another skiplink"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/panel.php:22 inc/panel.php:241
|
||||||
|
msgid "AccessibleWP Skiplinks"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/panel.php:49
|
||||||
|
msgid "Welcome to <span>AccessibleWP</span> Dashboard!"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/panel.php:50
|
||||||
|
msgid "Accessibility solutions for websites based on the WordPress."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/panel.php:52
|
||||||
|
msgid "Toolbar Settings"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/panel.php:55
|
||||||
|
msgid "Who We Are?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/panel.php:55
|
||||||
|
msgid "About The Author"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/panel.php:55
|
||||||
|
msgid "W3C Accessibility Standards Overview"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/panel.php:59
|
||||||
|
msgid "Send Feedback"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/panel.php:72 inc/panel.php:248
|
||||||
|
msgid "Options"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/panel.php:75
|
||||||
|
msgid "Activate the skiplinks"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/panel.php:80
|
||||||
|
msgid "Turn sides over"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/panel.php:84
|
||||||
|
msgid "The default state of the skiplinks is that in LTR mode they appear on the left side and in RTL mode they appear on the right side. If you check this checkbox, the skiplinks will be displayed on opposite sides."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/panel.php:94
|
||||||
|
msgid "Header link label"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/panel.php:97
|
||||||
|
msgid "Header"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/panel.php:98
|
||||||
|
msgid "Set the label of your header link."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/panel.php:103
|
||||||
|
msgid "Header link ID"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/panel.php:107
|
||||||
|
msgid "Set the ID of your header HTML tag in a CSS format. For example:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/panel.php:117
|
||||||
|
msgid "Content link label"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/panel.php:120
|
||||||
|
msgid "Page Content"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/panel.php:121
|
||||||
|
msgid "Set the label of your content link."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/panel.php:126
|
||||||
|
msgid "Content ID"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/panel.php:130
|
||||||
|
msgid "Set the ID of the HTML tag of your main content area in a CSS format. For example:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/panel.php:140
|
||||||
|
msgid "Footer link label"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/panel.php:143
|
||||||
|
msgid "Footer"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/panel.php:144
|
||||||
|
msgid "Set the label of your footer link."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/panel.php:149
|
||||||
|
msgid "Footer ID"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/panel.php:153
|
||||||
|
msgid "Set the ID of your footer HTML tag in a CSS format. For example:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/panel.php:164 inc/panel.php:247
|
||||||
|
msgid "How To Use?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/panel.php:165
|
||||||
|
msgid "This screen describes what the skiplinks are and how to use them."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/panel.php:167
|
||||||
|
msgid "What are skiplinks?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/panel.php:168
|
||||||
|
msgid "Skiplinks allow the user to skip between the page sections using the keyboard (usually using the TAB key). These skiplinks are not visible in the interface but are accessible via the keyboard and appear on the screen only when they are in focus mode."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/panel.php:169
|
||||||
|
msgid "How to use the skiplinks?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/panel.php:170
|
||||||
|
msgid "To activate the skiplinks properly there are several steps that need to be done"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/panel.php:172
|
||||||
|
msgid "First, activate the skiplinks to appear on the front-end by checking the checkbox on the \"Options\" screen next to the label: \"Activate the skiplinks\"."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/panel.php:173
|
||||||
|
msgid "Now the permanent sections must be defined, those that appear on all your website pages (header, footer and page content). You can set this under the \"Options\" screen. Defining the skiplinks is done by setting the ID of that section and a very short description. For example if the ID of our header is 'header' we will define the ID of the section like this: <b>header</b> (without the # at the beginning), and in the label field we can write \"Header\"."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/panel.php:174
|
||||||
|
msgid "Once the permanent sections have been defined, it is possible to define more skiplinks for each page to its own unique sections. These skiplinks will only appear on that specific page. You can do this through the meta box found on each page edit in the same way we defined the permanent skiplinks (section ID and label)."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/panel.php:175
|
||||||
|
msgid "You can check the skiplinks you created by navigating the page using the TAB button on your keyboard."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/panel.php:184 inc/panel.php:249
|
||||||
|
msgid "Style"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/panel.php:188
|
||||||
|
msgid "Disable skiplinks animation"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/panel.php:193
|
||||||
|
msgid "Disable skiplinks shadows"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/panel.php:198
|
||||||
|
msgid "Custom background color"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/panel.php:205
|
||||||
|
msgid "Custom text color"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/panel.php:219 inc/panel.php:250
|
||||||
|
msgid "Settings"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/panel.php:224
|
||||||
|
msgid "My theme support 'wp_body_open' (recommended)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: inc/panel.php:229
|
||||||
|
msgid "Disable additional skiplinks from page meta"
|
||||||
|
msgstr ""
|
||||||
23
spec/fixtures/dynamic_finders/plugin_version/acf-beautiful-flexible/change_log/CHANGELOG.md
vendored
Normal file
23
spec/fixtures/dynamic_finders/plugin_version/acf-beautiful-flexible/change_log/CHANGELOG.md
vendored
Normal file
@@ -0,0 +1,23 @@
|
|||||||
|
# Changelog ##
|
||||||
|
|
||||||
|
## 1.0.3 - 05 Mai 2022
|
||||||
|
* Publish on WP directory
|
||||||
|
|
||||||
|
## 1.0.1 - 30 Apr 2018
|
||||||
|
* Compatibility with latest versions of ACF and WordPress.
|
||||||
|
* Look for nested fields into repeaters and flexibles.
|
||||||
|
|
||||||
|
## 1.0.0
|
||||||
|
* FIX [#10](https://github.com/BeAPI/acf-beautiful-flexible/issues/10): fix warning
|
||||||
|
* Update readme with new requirements.
|
||||||
|
* FEATURE [#11](https://github.com/BeAPI/acf-beautiful-flexible/issues/11): add more filetype.
|
||||||
|
* FIX [#10](https://github.com/BeAPI/acf-beautiful-flexible/issues/10): fix warning.
|
||||||
|
* FIX [#8](https://github.com/BeAPI/acf-beautiful-flexible/issues/8): breaking changes with ACF 5.7.0 by adding new JS.
|
||||||
|
* Refactor way requirements are loaded by adding dedicated class.
|
||||||
|
* [#6](https://github.com/BeAPI/acf-beautiful-flexible/issues/6): fix title display.
|
||||||
|
* First version of the plugin.
|
||||||
|
* Dynamically get flexible layouts.
|
||||||
|
* Finish readme.
|
||||||
|
* Add screenshot.
|
||||||
|
* Add composer.json.
|
||||||
|
* Init plugin.
|
||||||
@@ -0,0 +1,116 @@
|
|||||||
|
# Copyright (C) 2022 Bili Plugins
|
||||||
|
# This file is distributed under the same license as the ActiveCampaign Newsletter Subscription package.
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: ActiveCampaign Newsletter Subscription 1.0.0\n"
|
||||||
|
"Report-Msgid-Bugs-To: "
|
||||||
|
"https://wordpress.org/support/plugin/activecampaign-newsletter-subscription\n"
|
||||||
|
"POT-Creation-Date: 2022-04-13 08:38:20+00:00\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=utf-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"PO-Revision-Date: 2022-MO-DA HO:MI+ZONE\n"
|
||||||
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
"Language: en\n"
|
||||||
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
"X-Poedit-Country: United States\n"
|
||||||
|
"X-Poedit-SourceCharset: UTF-8\n"
|
||||||
|
"X-Poedit-KeywordsList: "
|
||||||
|
"__;_e;_x:1,2c;_ex:1,2c;_n:1,2;_nx:1,2,4c;_n_noop:1,2;_nx_noop:1,2,3c;esc_"
|
||||||
|
"attr__;esc_html__;esc_attr_e;esc_html_e;esc_attr_x:1,2c;esc_html_x:1,2c;\n"
|
||||||
|
"X-Poedit-Basepath: ../\n"
|
||||||
|
"X-Poedit-SearchPath-0: .\n"
|
||||||
|
"X-Poedit-Bookmarks: \n"
|
||||||
|
"X-Textdomain-Support: yes\n"
|
||||||
|
"X-Generator: grunt-wp-i18n 1.0.3\n"
|
||||||
|
|
||||||
|
#: activecampaign-newsletter-subscription.php:75
|
||||||
|
msgid "Settings"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: app/admin/class-activecampaign-newsletter-subscription-admin.php:42
|
||||||
|
#: app/admin/class-activecampaign-newsletter-subscription-admin.php:43
|
||||||
|
msgid "Newsletter Subscription"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: app/admin/class-activecampaign-newsletter-subscription-admin.php:59
|
||||||
|
msgid "Activecampaign Newsletter Subscription."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: app/admin/class-activecampaign-newsletter-subscription-admin.php:68
|
||||||
|
msgid "Enter Your ActiveCampaign API URL"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: app/admin/class-activecampaign-newsletter-subscription-admin.php:72
|
||||||
|
msgid "https://youraccountname.api-us1.com"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: app/admin/class-activecampaign-newsletter-subscription-admin.php:74
|
||||||
|
msgid "Enter ActiveCapmpaign API URL Here. Don't know What's this?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: app/admin/class-activecampaign-newsletter-subscription-admin.php:75
|
||||||
|
#: app/admin/class-activecampaign-newsletter-subscription-admin.php:88
|
||||||
|
#: app/admin/class-activecampaign-newsletter-subscription-admin.php:101
|
||||||
|
#: app/admin/class-activecampaign-newsletter-subscription-admin.php:114
|
||||||
|
msgid "Click Here"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: app/admin/class-activecampaign-newsletter-subscription-admin.php:81
|
||||||
|
msgid "Enter Your ActiveCampaign API Key"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: app/admin/class-activecampaign-newsletter-subscription-admin.php:87
|
||||||
|
msgid "Enter ActiveCapmpaign API Key Here. Don't know What's this?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: app/admin/class-activecampaign-newsletter-subscription-admin.php:94
|
||||||
|
msgid "Enter List ID"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: app/admin/class-activecampaign-newsletter-subscription-admin.php:100
|
||||||
|
msgid ""
|
||||||
|
"Enter ActiveCapmpaign List ID Here, By Default Users will be added to "
|
||||||
|
"\"Contacts\". Don't know What's this?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: app/admin/class-activecampaign-newsletter-subscription-admin.php:107
|
||||||
|
msgid "Enter Custom Text"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: app/admin/class-activecampaign-newsletter-subscription-admin.php:113
|
||||||
|
msgid "Enter Text you Want to display on SignUp Page. Don't know What's this?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: app/admin/class-activecampaign-newsletter-subscription-admin.php:150
|
||||||
|
msgid "Invalid Submission"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: app/admin/class-activecampaign-newsletter-subscription-admin.php:173
|
||||||
|
msgid "Settings Saved"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: app/main/class-activecampaign-newsletter-subscription.php:50
|
||||||
|
msgid "Subscribe For Newsletter"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Plugin Name of the plugin/theme
|
||||||
|
msgid "ActiveCampaign Newsletter Subscription"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Plugin URI of the plugin/theme
|
||||||
|
msgid "https://bhargavb.com/"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Description of the plugin/theme
|
||||||
|
msgid "This Plugin Used to Add User's Email to ActiveCampaign List."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Author of the plugin/theme
|
||||||
|
msgid "Bili Plugins"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Author URI of the plugin/theme
|
||||||
|
msgid "https://biliplugins.com/"
|
||||||
|
msgstr ""
|
||||||
@@ -0,0 +1,930 @@
|
|||||||
|
# Copyright (C) 2022 WP White Security
|
||||||
|
# This file is distributed under the GPL2.
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Activity Log for Memberpress 1.0.0\n"
|
||||||
|
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/activity-log-memberpress\n"
|
||||||
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"POT-Creation-Date: 2022-11-04T10:14:56+00:00\n"
|
||||||
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
|
"X-Generator: WP-CLI 2.6.0\n"
|
||||||
|
"X-Domain: wsal-memberpress\n"
|
||||||
|
|
||||||
|
#. Plugin Name of the plugin
|
||||||
|
msgid "Activity Log for Memberpress"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Plugin URI of the plugin
|
||||||
|
msgid "https://wpactivitylog.com/extensions/"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Description of the plugin
|
||||||
|
msgid "A WP Activity Log plugin extension"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Author of the plugin
|
||||||
|
msgid "WP White Security"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Author URI of the plugin
|
||||||
|
msgid "http://www.wpwhitesecurity.com/"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/wsal-functions.php:23
|
||||||
|
msgid "Expired"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/wsal-functions.php:40
|
||||||
|
msgid "Memberships in MemberPress"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/wsal-functions.php:41
|
||||||
|
msgid "Groups in MemberPress"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/wsal-functions.php:42
|
||||||
|
msgid "Rules in MemberPress"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/wsal-functions.php:43
|
||||||
|
msgid "Settings in MemberPress"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/wsal-functions.php:44
|
||||||
|
msgid "Roles in MemberPress"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/wsal-functions.php:45
|
||||||
|
msgid "Subscriptions in MemberPress"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/wsal-functions.php:46
|
||||||
|
msgid "Transactions in MemberPress"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/wsal-functions.php:47
|
||||||
|
msgid "Members in MemberPress"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-alerts.php:12
|
||||||
|
msgid "Memberpress"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-alerts.php:13
|
||||||
|
msgid "Memberships"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-alerts.php:17
|
||||||
|
msgid "A membership was created, deleted or restored."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-alerts.php:18
|
||||||
|
msgid "Membership name %name%."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-alerts.php:20
|
||||||
|
#: wp-security-audit-log/custom-alerts.php:34
|
||||||
|
#: wp-security-audit-log/custom-alerts.php:51
|
||||||
|
msgid "Membership ID"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-alerts.php:23
|
||||||
|
#: wp-security-audit-log/custom-alerts.php:40
|
||||||
|
msgid "View Membership"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-alerts.php:31
|
||||||
|
msgid "A membership was modified."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-alerts.php:32
|
||||||
|
msgid "Membership Option was modified in %name%"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-alerts.php:35
|
||||||
|
#: wp-security-audit-log/custom-alerts.php:78
|
||||||
|
#: wp-security-audit-log/custom-alerts.php:121
|
||||||
|
msgid "Option name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-alerts.php:36
|
||||||
|
#: wp-security-audit-log/custom-alerts.php:79
|
||||||
|
#: wp-security-audit-log/custom-alerts.php:122
|
||||||
|
#: wp-security-audit-log/custom-alerts.php:149
|
||||||
|
#: wp-security-audit-log/custom-alerts.php:249
|
||||||
|
msgid "Previous value"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-alerts.php:37
|
||||||
|
#: wp-security-audit-log/custom-alerts.php:80
|
||||||
|
#: wp-security-audit-log/custom-alerts.php:123
|
||||||
|
#: wp-security-audit-log/custom-alerts.php:150
|
||||||
|
#: wp-security-audit-log/custom-alerts.php:250
|
||||||
|
msgid "New value"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-alerts.php:48
|
||||||
|
msgid "A membership was permanently deleted."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-alerts.php:49
|
||||||
|
msgid "Permanently deleted the Membership %name%"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-alerts.php:60
|
||||||
|
msgid "A group was created, deleted or restored."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-alerts.php:61
|
||||||
|
msgid "Group name %name%"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-alerts.php:63
|
||||||
|
#: wp-security-audit-log/custom-alerts.php:77
|
||||||
|
#: wp-security-audit-log/custom-alerts.php:94
|
||||||
|
msgid "Group ID"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-alerts.php:66
|
||||||
|
msgid "View Group"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-alerts.php:74
|
||||||
|
msgid "A group option was modified."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-alerts.php:75
|
||||||
|
msgid "Group Option was modified in %name%"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-alerts.php:83
|
||||||
|
msgid "View Group"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-alerts.php:91
|
||||||
|
msgid "A group was permanently deleted."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-alerts.php:92
|
||||||
|
msgid "Permanently deleted the Group %name%"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-alerts.php:103
|
||||||
|
msgid "A rule was created, deleted or restored."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-alerts.php:104
|
||||||
|
msgid "Rule %name% ."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-alerts.php:106
|
||||||
|
#: wp-security-audit-log/custom-alerts.php:120
|
||||||
|
#: wp-security-audit-log/custom-alerts.php:137
|
||||||
|
msgid "Rule ID"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-alerts.php:109
|
||||||
|
#: wp-security-audit-log/custom-alerts.php:126
|
||||||
|
msgid "View Rule"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-alerts.php:117
|
||||||
|
msgid "A rule option was modified."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-alerts.php:118
|
||||||
|
msgid "Rule Option was modified in %name%"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-alerts.php:134
|
||||||
|
msgid "A rule was permanently deleted."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-alerts.php:135
|
||||||
|
msgid "Permanently deleted the Ruke %name%"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-alerts.php:146
|
||||||
|
msgid "A setting was modified."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-alerts.php:147
|
||||||
|
msgid "Setting %setting_name% was modified."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-alerts.php:160
|
||||||
|
msgid "A role was created, modified or deleted."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-alerts.php:161
|
||||||
|
#: wp-security-audit-log/custom-alerts.php:175
|
||||||
|
msgid "Role name: %name%"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-alerts.php:163
|
||||||
|
#: wp-security-audit-log/custom-alerts.php:177
|
||||||
|
msgid "Role ID"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-alerts.php:166
|
||||||
|
#: wp-security-audit-log/custom-alerts.php:180
|
||||||
|
msgid "View role"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-alerts.php:174
|
||||||
|
msgid "A role was modified."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-alerts.php:189
|
||||||
|
msgid "A subscription was created, cancelled or deleted."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-alerts.php:190
|
||||||
|
#: wp-security-audit-log/custom-alerts.php:218
|
||||||
|
msgid "Subscription number: %name%"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-alerts.php:192
|
||||||
|
#: wp-security-audit-log/custom-alerts.php:206
|
||||||
|
#: wp-security-audit-log/custom-alerts.php:220
|
||||||
|
msgid "Subscription ID"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-alerts.php:195
|
||||||
|
#: wp-security-audit-log/custom-alerts.php:209
|
||||||
|
#: wp-security-audit-log/custom-alerts.php:223
|
||||||
|
msgid "View Subscription"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-alerts.php:203
|
||||||
|
msgid "A subscription number was modified."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-alerts.php:204
|
||||||
|
msgid "Made changes to the subscription number %name%"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-alerts.php:217
|
||||||
|
msgid "A subscription was expired."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-alerts.php:231
|
||||||
|
msgid "A transaction was created or deleted."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-alerts.php:232
|
||||||
|
#: wp-security-audit-log/custom-alerts.php:246
|
||||||
|
msgid "Transaction number: %name%"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-alerts.php:234
|
||||||
|
#: wp-security-audit-log/custom-alerts.php:248
|
||||||
|
#: wp-security-audit-log/custom-alerts.php:264
|
||||||
|
msgid "Transaction ID"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-alerts.php:237
|
||||||
|
#: wp-security-audit-log/custom-alerts.php:253
|
||||||
|
msgid "View Transaction"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-alerts.php:245
|
||||||
|
msgid "A transaction was modified."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-alerts.php:261
|
||||||
|
msgid "A member transaction was created or deleted."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-alerts.php:262
|
||||||
|
msgid "Made changes to the transaction number %name%"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-alerts.php:265
|
||||||
|
msgid "Membership"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-alerts.php:268
|
||||||
|
msgid "View Members profile page"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:436
|
||||||
|
msgid "Membership Terms: Price"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:437
|
||||||
|
msgid "Period"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:438
|
||||||
|
msgid "Membership Terms: Billing interval"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:439
|
||||||
|
msgid "Registration Button Text"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:440
|
||||||
|
msgid "Membership Terms: Limit payment cycles"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:441
|
||||||
|
msgid "Membership Terms: Max number of payment Cycle"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:442
|
||||||
|
msgid "Membership Terms: Access After Last Cycle"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:443
|
||||||
|
msgid "Cyles Limit Expires After"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:444
|
||||||
|
msgid "Cyles Limit Expires Denominator"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:445
|
||||||
|
msgid "Membership Terms: Trial"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:446
|
||||||
|
msgid "Membership Terms: Trial length"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:447
|
||||||
|
msgid "Membership Terms: Trial price"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:448
|
||||||
|
msgid "Membership Terms: Allow Only One Trial"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:449
|
||||||
|
msgid "Group"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:450
|
||||||
|
msgid "Group Order"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:451
|
||||||
|
msgid "Is Highlighted"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:452
|
||||||
|
msgid "Pricing Title"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:453
|
||||||
|
msgid "Pricing Display"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:454
|
||||||
|
msgid "Custom Price"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:455
|
||||||
|
msgid "Pricing heading text"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:456
|
||||||
|
msgid "Pricing footer text"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:457
|
||||||
|
msgid "Pricing button text"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:458
|
||||||
|
msgid "Pricing button position"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:459
|
||||||
|
msgid "Pricing benefits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:460
|
||||||
|
msgid "Membership Pricing Terms"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:461
|
||||||
|
msgid "Custom Registration Pricing Term"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:462
|
||||||
|
msgid "Enable custom thank you page message"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:463
|
||||||
|
msgid "Thank you page type"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:464
|
||||||
|
msgid "Custom Thank you message"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:465
|
||||||
|
msgid "Custom Thank you page ID"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:466
|
||||||
|
msgid "Custom Login Redirect Enabled"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:467
|
||||||
|
msgid "Custom Login Redirect URLs"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:468
|
||||||
|
msgid "Custom Login URLs"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:469
|
||||||
|
msgid "Membership Terms: Access Type"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:470
|
||||||
|
msgid "Expires After"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:471
|
||||||
|
msgid "Expiry Unit"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:472
|
||||||
|
msgid "Exiry Fixes"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:473
|
||||||
|
msgid "This Membership is Tax Exempt"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:474
|
||||||
|
msgid "Tax Class"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:475
|
||||||
|
msgid "Allow Renewals"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:476
|
||||||
|
msgid "Membership Access URL"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:477
|
||||||
|
msgid "Send Membership-Specific Welcome Email to User"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:478
|
||||||
|
msgid "Disable Address Fields"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:479
|
||||||
|
msgid "Allow users to create multiple, active subscriptions to this membership"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:480
|
||||||
|
msgid "Use Custom Template"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:481
|
||||||
|
msgid "Custom Template"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:482
|
||||||
|
msgid "Customize Payment Methods"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:483
|
||||||
|
msgid "Customize User Information Fields"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:484
|
||||||
|
msgid "Cannot Purchase Message"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:485
|
||||||
|
msgid "Plan Code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:486
|
||||||
|
msgid "Use Roles for this Membership"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:487
|
||||||
|
msgid "Membership Roles"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:488
|
||||||
|
msgid "Who can purchase this Membership"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:489
|
||||||
|
msgid "Custom Profile Fields"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:491
|
||||||
|
msgid "Enable Pricing Page"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:492
|
||||||
|
msgid "Disable Change Plan Pop-Up"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:493
|
||||||
|
msgid "Enable Group is Upgrade Path"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:494
|
||||||
|
msgid "Enable Reset billing period"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:495
|
||||||
|
msgid "Group Theme"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:496
|
||||||
|
msgid "Group Memberships"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:497
|
||||||
|
msgid "Custom Button CSS classe"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:498
|
||||||
|
msgid "Custom Highlighted Button CSS classe"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:499
|
||||||
|
msgid "Custom Disabled Button CSS classe"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:500
|
||||||
|
msgid "Group Page Style Options"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:501
|
||||||
|
msgid "Alernative Group URL"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:502
|
||||||
|
msgid "Enable Use Custom Page Template"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:503
|
||||||
|
msgid "Page Template"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:504
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:525
|
||||||
|
msgid "Unauthorised Access Message Type"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:505
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:526
|
||||||
|
msgid "Unauthorised Access Message"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:506
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:527
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:594
|
||||||
|
msgid "Unauthorised Access Show Login"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:507
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:523
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:592
|
||||||
|
msgid "Unauthorised Access Excerpt Type"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:508
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:524
|
||||||
|
msgid "Unauthorised Access Excerpt Length"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:510
|
||||||
|
msgid "Rule Type"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:511
|
||||||
|
msgid "Rule Content"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:512
|
||||||
|
msgid "Rule Rexexp"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:513
|
||||||
|
msgid "Enable Drip"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:514
|
||||||
|
msgid "Drip Amount"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:515
|
||||||
|
msgid "Drip Unit"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:516
|
||||||
|
msgid "Drip After Fixed Date"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:517
|
||||||
|
msgid "Drip After Type"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:518
|
||||||
|
msgid "Enable Expiry"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:519
|
||||||
|
msgid "Rule Expires Amount"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:520
|
||||||
|
msgid "Rule Exires Unit"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:521
|
||||||
|
msgid "Rule Expires After"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:522
|
||||||
|
msgid "Expires After Fixed Date"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:528
|
||||||
|
msgid "Using Autogenerated Title"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:540
|
||||||
|
msgid "Legacy integrations"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:541
|
||||||
|
msgid "Account Page"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:542
|
||||||
|
msgid "Login Page"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:543
|
||||||
|
msgid "Thank You Page"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:544
|
||||||
|
msgid "Use MemberPress login page URL"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:545
|
||||||
|
msgid "Login Redirect URL"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:546
|
||||||
|
msgid "Logout Recirect URL"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:547
|
||||||
|
msgid "Disable Modrewrite"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:548
|
||||||
|
msgid "Enable Card Testing Protection"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:549
|
||||||
|
msgid "Card Testing Protection Metod"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:550
|
||||||
|
msgid "Blocked IPs"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:551
|
||||||
|
msgid "Account CSS width"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:552
|
||||||
|
msgid "Custom Message"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:553
|
||||||
|
msgid "Has setup completed"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:554
|
||||||
|
msgid "Activation Timestamp"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:555
|
||||||
|
msgid "Currency Code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:556
|
||||||
|
msgid "Currency Symbol"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:557
|
||||||
|
msgid "Show Currency Symbol After"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:558
|
||||||
|
msgid "Language Code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:559
|
||||||
|
msgid "Integrations/Payment Methods"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:560
|
||||||
|
msgid "Keep members out of the WordPress Dashboard"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:561
|
||||||
|
msgid "Enforce strong password"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:562
|
||||||
|
msgid "Disable the standard WordPress registration form"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:563
|
||||||
|
msgid "Disable the WordPress admin bar for members"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:564
|
||||||
|
msgid "Pro-rate subscription prices when a member upgrades"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:565
|
||||||
|
msgid "Disable Password Fields on membership registration forms"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:566
|
||||||
|
msgid "Enable Single Page Checkout"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:567
|
||||||
|
msgid "Enable Single Page Checkout Invoice"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:568
|
||||||
|
msgid "Enable Coupon Field on membership registration forms"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:569
|
||||||
|
msgid "Require Terms of Service on membership registration forms"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:570
|
||||||
|
msgid "Require Privacy Policy acceptance on membership registration forms"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:571
|
||||||
|
msgid "Terms of Service URL"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:572
|
||||||
|
msgid "Terms of Service Title"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:573
|
||||||
|
msgid "Privacy Policy Title"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:574
|
||||||
|
msgid "Mail Send From Name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:575
|
||||||
|
msgid "Mail Send From Email Address"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:576
|
||||||
|
msgid "Members must use their email address for their Username"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:577
|
||||||
|
msgid "Extended User Information Fields: Show Name Fields"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:578
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:580
|
||||||
|
msgid "Extended User Information Fields: Require Name Fields"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:579
|
||||||
|
msgid "Extended User Information Fields: Show Address Fields"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:581
|
||||||
|
msgid "Show fields to logged in users"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:582
|
||||||
|
msgid "Address Fields"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:583
|
||||||
|
msgid "Product Pages Slug"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:584
|
||||||
|
msgid "Group Pages Slug"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:585
|
||||||
|
msgid "Admin Email Address"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:586
|
||||||
|
msgid "Unaythorsised Access Message"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:587
|
||||||
|
msgid "Redirect on Unauthorised Access"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:588
|
||||||
|
msgid "Unauthorised Access Redirect URL"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:589
|
||||||
|
msgid "Redirect non-singular views"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:590
|
||||||
|
msgid "Redirect Method"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:591
|
||||||
|
msgid "Unauthorised Access Show Excerpt"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:593
|
||||||
|
msgid "Unauthorised Access Excerpt Size"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:595
|
||||||
|
msgid "Authorise Search Engines"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:596
|
||||||
|
msgid "Block Search Engines"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:597
|
||||||
|
msgid "Enable Paywal"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:598
|
||||||
|
msgid "Number of free views"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:599
|
||||||
|
msgid "Disable Summary Email"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:600
|
||||||
|
msgid "Disable the 1 day grace period after signup"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:601
|
||||||
|
msgid "Grace Period"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:602
|
||||||
|
msgid "Grace Expiry Days"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:603
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:604
|
||||||
|
msgid "Allow Members to Cancel their own subscriptions"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:605
|
||||||
|
msgid "Disable Global Autoresponser List"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:606
|
||||||
|
msgid "Opt In checked by default"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:607
|
||||||
|
msgid "Use Global Styles"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:608
|
||||||
|
msgid "Include email privacy link"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wp-security-audit-log/custom-sensors/WSAL_Sensors_MemberPress.php:609
|
||||||
|
msgid "Emails"
|
||||||
|
msgstr ""
|
||||||
@@ -0,0 +1,213 @@
|
|||||||
|
# Copyright (C) 2022 WP connect
|
||||||
|
# This file is distributed under the same license as the Add-on CF7 for Airtable plugin.
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Add-on CF7 for Airtable 1.0.0\n"
|
||||||
|
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/develop\n"
|
||||||
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"POT-Creation-Date: 2022-04-21T12:44:14+00:00\n"
|
||||||
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
|
"X-Generator: WP-CLI 2.6.0\n"
|
||||||
|
"X-Domain: wpc-wpcf7-at\n"
|
||||||
|
|
||||||
|
#. Plugin Name of the plugin
|
||||||
|
msgid "Add-on CF7 for Airtable"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Description of the plugin
|
||||||
|
msgid "Send the entries of your Contact Form 7 forms to your Airtable databases."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Author of the plugin
|
||||||
|
msgid "WP connect"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Author URI of the plugin
|
||||||
|
msgid "https://wpconnect.co/"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: add-on-cf7-for-airtable.php:82
|
||||||
|
msgid "The \"Contact Form 7 to Airtable\" plugin is inactive because the minimal requirements are not met."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/classes/class-api-airtable.php:95
|
||||||
|
#: includes/classes/class-api-airtable.php:106
|
||||||
|
msgid "The Airtable API responded with an error."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/classes/class-wpcf7-airtable-service.php:64
|
||||||
|
#: includes/contact-form-properties.php:235
|
||||||
|
#: includes/contact-form-properties.php:408
|
||||||
|
msgid "Airtable"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/classes/class-wpcf7-airtable-service.php:191
|
||||||
|
#: includes/classes/class-wpcf7-airtable-service.php:243
|
||||||
|
msgid "Invalid key values."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/classes/class-wpcf7-airtable-service.php:234
|
||||||
|
#: includes/classes/class-wpcf7-airtable-service.php:242
|
||||||
|
msgid "Error"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/classes/class-wpcf7-airtable-service.php:235
|
||||||
|
msgid "You have not been authenticated. Make sure the provided API key is correct."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/classes/class-wpcf7-airtable-service.php:250
|
||||||
|
msgid "Settings saved."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: %s: html link
|
||||||
|
#: includes/classes/class-wpcf7-airtable-service.php:264
|
||||||
|
msgid "Store form submissions in Airtable table. For details, see %s."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/classes/class-wpcf7-airtable-service.php:267
|
||||||
|
#: includes/contact-form-properties.php:115
|
||||||
|
msgid "https://wordpress.org/plugins/wpconnect-contactform7-airtable/"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/classes/class-wpcf7-airtable-service.php:268
|
||||||
|
#: includes/contact-form-properties.php:116
|
||||||
|
msgid "Airtable integration"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/classes/class-wpcf7-airtable-service.php:276
|
||||||
|
msgid "Airtable is active on this site."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/classes/class-wpcf7-airtable-service.php:286
|
||||||
|
msgid "Setup integration"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/classes/class-wpcf7-airtable-service.php:305
|
||||||
|
msgid "API key"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/classes/class-wpcf7-airtable-service.php:328
|
||||||
|
msgctxt "API keys"
|
||||||
|
msgid "Remove key"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/classes/class-wpcf7-airtable-service.php:333
|
||||||
|
msgid "Save changes"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/contact-form-properties.php:78
|
||||||
|
msgid "help"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: %s: html link
|
||||||
|
#: includes/contact-form-properties.php:113
|
||||||
|
msgid "You can set up the Airtable integration here. For details, see %s."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/contact-form-properties.php:243
|
||||||
|
msgid "Table lookup"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/contact-form-properties.php:243
|
||||||
|
msgid "Paste full Airtable table URL, it will populate the App ID and Table id fields."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/contact-form-properties.php:251
|
||||||
|
msgid "App ID"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/contact-form-properties.php:252
|
||||||
|
msgid "Use the Table lookup field above or visit the link below to find your App ID"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/contact-form-properties.php:262
|
||||||
|
msgid "Table id or name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/contact-form-properties.php:263
|
||||||
|
msgid "Use the Table lookup field above or visit the link below to find your Table id"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/contact-form-properties.php:275
|
||||||
|
msgid "Table fields"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/contact-form-properties.php:277
|
||||||
|
msgid "Enter an Airtable field name for each Contact Form 7 field to map them."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/contact-form-properties.php:278
|
||||||
|
msgid "Be careful, field names should be exactly the same or the form won't be saved."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/contact-form-properties.php:284
|
||||||
|
msgid "Contact Form 7 field"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/contact-form-properties.php:285
|
||||||
|
msgid "Airtable field name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: %s: tag name
|
||||||
|
#: includes/contact-form-properties.php:322
|
||||||
|
msgid "%s: mapped"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: %s: tag name
|
||||||
|
#: includes/contact-form-properties.php:327
|
||||||
|
msgid "The column \"%s\" looks like to be an Attachment field, it should be mapped with a Contact Form 7 file field."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: %s: tag name
|
||||||
|
#: includes/contact-form-properties.php:331
|
||||||
|
msgid "The column \"%s\" looks like to be a Multiple Select field, it should be mapped with a Contact Form 7 select, checkbox or radio field."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: %s: tag name
|
||||||
|
#: includes/contact-form-properties.php:335
|
||||||
|
msgid "The column \"%s\" looks like to be a Multiple Select field, the options should match the ones you have on Airtable."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: %s: tag name
|
||||||
|
#: includes/contact-form-properties.php:339
|
||||||
|
msgid "The column \"%s\" looks like to be an URL field, it should be mapped with a Contact Form 7 URL field."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: %s: tag name
|
||||||
|
#: includes/contact-form-properties.php:343
|
||||||
|
msgid "The column \"%s\" looks like to be a date field, it should be mapped with a Contact Form 7 date field."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: %s: tag name
|
||||||
|
#: includes/contact-form-properties.php:347
|
||||||
|
msgid "The column \"%s\" looks like to be a number field, it should be mapped with a Contact Form 7 number or range field."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: %s: tag name
|
||||||
|
#: includes/contact-form-properties.php:351
|
||||||
|
msgid "The column \"%s\" looks like to be an email field, it should be mapped with a Contact Form 7 email field."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/contact-form-properties.php:394
|
||||||
|
msgid "The Airtable's field name below is not mapped yet:"
|
||||||
|
msgid_plural "The Airtable's fields name below are not mapped yet:"
|
||||||
|
msgstr[0] ""
|
||||||
|
msgstr[1] ""
|
||||||
|
|
||||||
|
#: includes/entry.php:78
|
||||||
|
#: includes/fields.php:254
|
||||||
|
msgid "No"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/entry.php:98
|
||||||
|
msgid "Sorry, your form data can't be saved, please try again later."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: %s: consent checkbox text
|
||||||
|
#: includes/entry.php:102
|
||||||
|
msgid "Sorry, your form data can't be saved, please try again later or uncheck \"%s\"."
|
||||||
|
msgstr ""
|
||||||
@@ -0,0 +1,185 @@
|
|||||||
|
# Copyright (C) 2022 WP connect
|
||||||
|
# This file is distributed under the same license as the Add-on CF7 for Notion plugin.
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Add-on CF7 for Notion 1.0.0\n"
|
||||||
|
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/develop\n"
|
||||||
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"POT-Creation-Date: 2022-04-06T09:33:44+00:00\n"
|
||||||
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
|
"X-Generator: WP-CLI 2.6.0\n"
|
||||||
|
"X-Domain: wpc-wpcf7-ntn\n"
|
||||||
|
|
||||||
|
#. Plugin Name of the plugin
|
||||||
|
msgid "Add-on CF7 for Notion"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Description of the plugin
|
||||||
|
msgid "Send the entries of your Contact Form 7 forms to your Notion databases."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Author of the plugin
|
||||||
|
msgid "WP connect"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Author URI of the plugin
|
||||||
|
msgid "https://wpconnect.co/"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/classes/class-api-notion.php:86
|
||||||
|
msgid "The Notion API responded with an error."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/classes/class-wpcf7-notion-service.php:64
|
||||||
|
#: includes/contact-form-properties.php:191
|
||||||
|
#: includes/contact-form-properties.php:413
|
||||||
|
msgid "Notion"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/classes/class-wpcf7-notion-service.php:237
|
||||||
|
#: includes/classes/class-wpcf7-notion-service.php:245
|
||||||
|
msgid "Error"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/classes/class-wpcf7-notion-service.php:238
|
||||||
|
msgid "You have not been authenticated. Make sure the provided API key is correct."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/classes/class-wpcf7-notion-service.php:246
|
||||||
|
msgid "Invalid key values."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/classes/class-wpcf7-notion-service.php:253
|
||||||
|
msgid "Settings saved."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: %s: html link
|
||||||
|
#: includes/classes/class-wpcf7-notion-service.php:267
|
||||||
|
msgid "Store form submissions in Notion database. For details, see %s."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/classes/class-wpcf7-notion-service.php:270
|
||||||
|
#: includes/contact-form-properties.php:112
|
||||||
|
msgid "https://wordpress.org/plugins/wpconnect-contactform7-notion/"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/classes/class-wpcf7-notion-service.php:271
|
||||||
|
#: includes/contact-form-properties.php:113
|
||||||
|
msgid "Notion integration"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/classes/class-wpcf7-notion-service.php:279
|
||||||
|
msgid "Notion is active on this site."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/classes/class-wpcf7-notion-service.php:289
|
||||||
|
msgid "Setup integration"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/classes/class-wpcf7-notion-service.php:308
|
||||||
|
msgid "API key"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/classes/class-wpcf7-notion-service.php:331
|
||||||
|
msgctxt "API keys"
|
||||||
|
msgid "Remove key"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/classes/class-wpcf7-notion-service.php:336
|
||||||
|
msgid "Save changes"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: %s: html link
|
||||||
|
#: includes/contact-form-properties.php:110
|
||||||
|
msgid "You can set up the Notion integration here. For details, see %s."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/contact-form-properties.php:202
|
||||||
|
msgid "Databases"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/contact-form-properties.php:211
|
||||||
|
msgid "Databases lists"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/contact-form-properties.php:220
|
||||||
|
msgid "Add form submissions to your database"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/contact-form-properties.php:237
|
||||||
|
msgid "Select the database to which form submissions are added:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/contact-form-properties.php:269
|
||||||
|
msgid "You have no database yet."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/contact-form-properties.php:282
|
||||||
|
msgid "Database fields"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/contact-form-properties.php:284
|
||||||
|
msgid "Select a Notion field name for each Contact Form 7 field to map them."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/contact-form-properties.php:285
|
||||||
|
msgid "You can only select compatible fields (e.g. a Contact Form 7 url field with a Notion url or text field)."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/contact-form-properties.php:291
|
||||||
|
msgid "Contact Form 7 field"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/contact-form-properties.php:292
|
||||||
|
msgid "Notion Database column"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: %s: tag name
|
||||||
|
#: includes/contact-form-properties.php:335
|
||||||
|
msgid "%s: mapped"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: %s: tag name
|
||||||
|
#: includes/contact-form-properties.php:341
|
||||||
|
msgid "%s: error"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/contact-form-properties.php:344
|
||||||
|
msgid "The mapped column does not exist or its type is not supported"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: %s: WPCF7 tag type
|
||||||
|
#: includes/contact-form-properties.php:347
|
||||||
|
msgid "The column is not supported by the tag type \"%s\""
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/contact-form-properties.php:370
|
||||||
|
msgid "None"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/contact-form-properties.php:399
|
||||||
|
msgid "The Notion's column below is not mapped yet:"
|
||||||
|
msgid_plural "The Notion's columns below are not mapped yet:"
|
||||||
|
msgstr[0] ""
|
||||||
|
msgstr[1] ""
|
||||||
|
|
||||||
|
#: includes/entry.php:76
|
||||||
|
msgid "No"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/entry.php:94
|
||||||
|
msgid "Sorry, your form data can't be saved, please try again later."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: %s: consent checkbox text
|
||||||
|
#: includes/entry.php:98
|
||||||
|
msgid "Sorry, your form data can't be saved, please try again later or uncheck \"%s\"."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: wpconnect-contactform7-notion.php:82
|
||||||
|
msgid "The \"Contact Form 7 to Notion\" plugin is inactive because the minimal requirements are not met."
|
||||||
|
msgstr ""
|
||||||
@@ -0,0 +1,220 @@
|
|||||||
|
# Copyright (C) 2022 WP connect
|
||||||
|
# This file is distributed under the same license as the Add-on Sendinblue for Gravity Forms Free plugin.
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Add-on Sendinblue for Gravity Forms Free 1.0.0\n"
|
||||||
|
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/develop\n"
|
||||||
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"POT-Creation-Date: 2022-08-29T06:13:25+00:00\n"
|
||||||
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
|
"X-Generator: WP-CLI 2.6.0\n"
|
||||||
|
"X-Domain: addon-gravityforms-sendinblue-free\n"
|
||||||
|
|
||||||
|
#. Plugin Name of the plugin
|
||||||
|
msgid "Add-on Sendinblue for Gravity Forms Free"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Plugin URI of the plugin
|
||||||
|
msgid "https://wpconnect.co"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Description of the plugin
|
||||||
|
msgid "Create Sendinblue contacts directly from your Gravity Forms forms."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Author of the plugin
|
||||||
|
msgid "WP connect"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Author URI of the plugin
|
||||||
|
msgid "https://wpconnect.co/"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: addon-gravityforms-sendinblue-free.php:80
|
||||||
|
msgid "The \"Gravity Forms Sendinblue Add-on\" plugin is inactive because the minimal requirements are not met."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/classes/api-sendinblue.php:82
|
||||||
|
msgid "The Sendinblue API returned an error."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/classes/gf-addon.php:110
|
||||||
|
msgid "Sendinblue Add-On Settings"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/classes/gf-addon.php:114
|
||||||
|
msgid "License Activation"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: %1$s: Sendinblue account API URL
|
||||||
|
#: includes/classes/gf-addon.php:120
|
||||||
|
msgid "Visit the <a href=\"%1$s\" target=\"_blank\">\"Settings > SMTP & API\"</a> page in your Sendinblue account to generate an API key."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/classes/gf-addon.php:121
|
||||||
|
msgid "Sendinblue API Key"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/classes/gf-addon.php:143
|
||||||
|
msgid "License Key"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/classes/gf-addon.php:209
|
||||||
|
msgid "Name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/classes/gf-addon.php:210
|
||||||
|
msgid "List(s)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/classes/gf-addon.php:211
|
||||||
|
msgid "Condition(s)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: %1$s: Gravity Form Sendinblue settings page URL
|
||||||
|
#: includes/classes/gf-addon.php:247
|
||||||
|
msgid "Please visit the <a href=\"%1$s\">plugin settings page</a> and enter a valid Sendinblue API key."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/classes/gf-addon.php:254
|
||||||
|
msgid "API key missing or invalid"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/classes/gf-addon.php:285
|
||||||
|
#: includes/classes/gf-addon.php:413
|
||||||
|
msgid "(Pro version)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/classes/gf-addon.php:299
|
||||||
|
msgid "E-mail address"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/classes/gf-addon.php:307
|
||||||
|
msgid "Enabled"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/classes/gf-addon.php:312
|
||||||
|
msgid "Feed name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/classes/gf-addon.php:316
|
||||||
|
msgid "Enter a feed name to uniquely identify it."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/classes/gf-addon.php:321
|
||||||
|
msgid "Fields mapping"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/classes/gf-addon.php:322
|
||||||
|
msgid "Add and select the Sendinblue attributes for which to send data, then choose the form fields that match."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/classes/gf-addon.php:326
|
||||||
|
msgid "Form fields"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/classes/gf-addon.php:328
|
||||||
|
msgid "Sendinblue attributes"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: %1$s Pro version link
|
||||||
|
#: includes/classes/gf-addon.php:340
|
||||||
|
msgid "Free version only includes E-mail and Consent fields (\"OPT_IN\" boolean in Sendinblue), while the %1$s is unlimited."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/classes/gf-addon.php:344
|
||||||
|
#: includes/classes/gf-addon.php:396
|
||||||
|
msgid "Pro version"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/classes/gf-addon.php:357
|
||||||
|
msgid "Add to list"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/classes/gf-addon.php:358
|
||||||
|
msgid "All your Sendinblue lists are displayed below. You can choose which one(s) to save each new contact to."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/classes/gf-addon.php:364
|
||||||
|
msgid "None"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: %1$s Pro version link
|
||||||
|
#: includes/classes/gf-addon.php:392
|
||||||
|
msgid "Free version only allows you to select one list at a time, while the %1$s is unlimited."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/classes/gf-addon.php:408
|
||||||
|
msgid "Double opt-in (Pro version)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/classes/gf-addon.php:413
|
||||||
|
msgid "Enable double opt-in"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/classes/gf-addon.php:417
|
||||||
|
msgid "By enabling this, Sendinblue will send a confirmation email to the user before adding them to your list(s)."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/classes/gf-addon.php:425
|
||||||
|
msgid "Integration with Sendinblue"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/classes/gf-addon.php:431
|
||||||
|
msgid "Conditional logic"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/classes/gf-addon.php:438
|
||||||
|
msgid "Conditions"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/classes/gf-addon.php:439
|
||||||
|
msgid "Enable conditional processing"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/classes/gf-addon.php:440
|
||||||
|
msgid "Create a contact in Sendinblue only if"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/hooks.php:86
|
||||||
|
msgid "No e-mail address found in form values."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/hooks.php:111
|
||||||
|
msgid "Sendinblue"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/hooks.php:134
|
||||||
|
#: includes/hooks.php:182
|
||||||
|
msgid "No data."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: %1$d: Feed id
|
||||||
|
#: includes/hooks.php:143
|
||||||
|
msgid "Feed #%1$d"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/hooks.php:151
|
||||||
|
msgid "Error:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: %1$d: Feed entry id
|
||||||
|
#: includes/hooks.php:162
|
||||||
|
msgid "New contact created (ID #%1$d)."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/hooks.php:167
|
||||||
|
msgid "New contact created."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/hooks.php:176
|
||||||
|
msgid "Existing contact updated."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: assets/js/admin.js:34
|
||||||
|
msgid "Upgrade to Pro version"
|
||||||
|
msgstr ""
|
||||||
@@ -0,0 +1,293 @@
|
|||||||
|
# Copyright (C) 2022
|
||||||
|
# This file is distributed under the same license as the Stripe With Contact Form 7 plugin.
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Stripe With Contact Form 7 1.0\n"
|
||||||
|
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/stripe-with-contact-form-7\n"
|
||||||
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"POT-Creation-Date: 2022-07-07T08:07:03+02:00\n"
|
||||||
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
|
"X-Generator: WP-CLI 2.6.0\n"
|
||||||
|
"X-Domain: stripe-with-contact-form-7\n"
|
||||||
|
|
||||||
|
#. Plugin Name of the plugin
|
||||||
|
msgid "Stripe With Contact Form 7"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Description of the plugin
|
||||||
|
msgid "This plugin allows create Addon Paypal With Contact Form 7 plugin."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/cfyspay-cf7-panel.php:25
|
||||||
|
msgid "Stripe"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/cfyspay-cf7-panel.php:31
|
||||||
|
msgid "Use Stripe"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/cfyspay-cf7-panel.php:34
|
||||||
|
msgid "enabled_use_stripe"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/cfyspay-cf7-panel.php:40
|
||||||
|
msgid "Customer Email"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/cfyspay-cf7-panel.php:43
|
||||||
|
msgid "stripe_customer_email"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/cfyspay-cf7-panel.php:48
|
||||||
|
msgid "Payment Gateway"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/cfyspay-cf7-panel.php:51
|
||||||
|
msgid "- Use this custom tag to add payment method option to your form."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/cfyspay-cf7-panel.php:56
|
||||||
|
msgid "Item Description"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/cfyspay-cf7-panel.php:59
|
||||||
|
msgid "stripe_item_description"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/cfyspay-cf7-panel.php:64
|
||||||
|
msgid "Item ID / SKU"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/cfyspay-cf7-panel.php:67
|
||||||
|
msgid "stripe_item_id_sku"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/cfyspay-cf7-panel.php:72
|
||||||
|
msgid "Custom Amount"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/cfyspay-cf7-panel.php:82
|
||||||
|
msgid "Custom Quantity"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/cfyspay-cf7-panel.php:86
|
||||||
|
msgid "quantity"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/cfyspay-cf7-panel.php:92
|
||||||
|
msgid "Stripe Settings"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/cfyspay-cf7-panel.php:99
|
||||||
|
#: main/backend/cfyspay-cf7-panel.php:102
|
||||||
|
msgid "Use Sandbox"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/cfyspay-cf7-panel.php:107
|
||||||
|
msgid "Pay with Stripe Label"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/cfyspay-cf7-panel.php:115
|
||||||
|
msgid "Live Publishable Key"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/cfyspay-cf7-panel.php:123
|
||||||
|
msgid "Live Secret Key"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/cfyspay-cf7-panel.php:131
|
||||||
|
msgid "Test Publishable Key"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/cfyspay-cf7-panel.php:139
|
||||||
|
msgid "Test Secret Key"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/cfyspay-cf7-panel.php:147
|
||||||
|
msgid "Currency"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/cfyspay-cf7-panel.php:153
|
||||||
|
msgid "Australian dollar (AUD)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/cfyspay-cf7-panel.php:156
|
||||||
|
msgid "Brazilian real (BRL)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/cfyspay-cf7-panel.php:159
|
||||||
|
msgid "British pound (GBP)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/cfyspay-cf7-panel.php:162
|
||||||
|
msgid "Canadian dollar (CAD)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/cfyspay-cf7-panel.php:165
|
||||||
|
msgid "Czech koruna (CZK)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/cfyspay-cf7-panel.php:168
|
||||||
|
msgid "Danish krone (DKK)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/cfyspay-cf7-panel.php:171
|
||||||
|
msgid "Euro (EUR)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/cfyspay-cf7-panel.php:174
|
||||||
|
msgid "Hong kong Dollar (HKD)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/cfyspay-cf7-panel.php:177
|
||||||
|
msgid "Hungarian forint (HUF)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/cfyspay-cf7-panel.php:180
|
||||||
|
msgid "Israeli new shekel (ILS)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/cfyspay-cf7-panel.php:183
|
||||||
|
msgid "Japanese yen (JPY)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/cfyspay-cf7-panel.php:186
|
||||||
|
msgid "Malaysian Ringgit (MYR)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/cfyspay-cf7-panel.php:189
|
||||||
|
msgid "Mexican peso (MXN)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/cfyspay-cf7-panel.php:192
|
||||||
|
msgid "New Taiwan dollar (TWD)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/cfyspay-cf7-panel.php:195
|
||||||
|
msgid "New Zealand dollar (NZD)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/cfyspay-cf7-panel.php:198
|
||||||
|
msgid " Norwegian krone (NOK)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/cfyspay-cf7-panel.php:201
|
||||||
|
msgid "Philippine peso (PHP)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/cfyspay-cf7-panel.php:204
|
||||||
|
msgid "Polish złoty (PLN)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/cfyspay-cf7-panel.php:207
|
||||||
|
msgid "Russian ruble (RUB)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/cfyspay-cf7-panel.php:210
|
||||||
|
msgid "Singapore dollar (SGD)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/cfyspay-cf7-panel.php:213
|
||||||
|
msgid "Swedish krona (SEK)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/cfyspay-cf7-panel.php:216
|
||||||
|
msgid "Swiss franc (CHF)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/cfyspay-cf7-panel.php:219
|
||||||
|
msgid "Thai baht (THB)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/cfyspay-cf7-panel.php:222
|
||||||
|
msgid "Turkish Lira (TRY)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/cfyspay-cf7-panel.php:225
|
||||||
|
msgid "U.S dollar (USD)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/cfyspay-cf7-panel.php:232
|
||||||
|
msgid "Success Return URL"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/cfyspay-cf7-panel.php:240
|
||||||
|
msgid "Default Text:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/cfyspay-cf7-panel.php:246
|
||||||
|
msgid "Card Number"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/cfyspay-cf7-panel.php:254
|
||||||
|
msgid "Card Code (CSV)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/cfyspay-cf7-panel.php:262
|
||||||
|
msgid "Expiration (MM/YY)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/cfyspay-cf7-panel.php:270
|
||||||
|
msgid "Billing Zip / Postal Code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/cfyspay-cf7-panel.php:278
|
||||||
|
msgid "Pay"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/cfyspay-cf7-panel.php:286
|
||||||
|
msgid "Status"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/cfyspay-cf7-panel.php:295
|
||||||
|
msgid "Order"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/cfyspay-cf7-panel.php:303
|
||||||
|
msgid "Payment Successful"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/cfyspay-cf7-panel.php:311
|
||||||
|
msgid "Payment Failed"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/cfyspay-cf7-panel.php:319
|
||||||
|
msgid "Processing Payment"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/cfyspay-cf7-panel.php:327
|
||||||
|
msgid "Currency Symbol"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/cfyspay-cf7-panel.php:339
|
||||||
|
#: main/backend/cfyspay-cf7-panel.php:434
|
||||||
|
msgid "Note:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/cfyspay-cf7-panel.php:339
|
||||||
|
msgid " When using Custom Amount and Custom Quantity dynamic values defined below will be ignored, means either use Custom Amount and Custom Quantity for single static product or use multiple products adding details below."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/cfyspay-cf7-panel.php:434
|
||||||
|
msgid " If you want to use radio buttons or select dropdown in form, you can use"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/cfyspay-cf7-panel.php:434
|
||||||
|
msgid "[radio price \"item1-$10--10\" \"item2-$20--20\"], in this example item1-$10 will be your label and 10 will be value of radio button elements. simply seperate label and value with"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/cfyspay-cf7-panel.php:434
|
||||||
|
msgid "\"--\""
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/cfyspay-cf7-panel.php:434
|
||||||
|
msgid " seperator. If Empty custom amount field and custom Quantity field then this multiple field working."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/resources/cfyspay-installation-require.php:14
|
||||||
|
msgid " Stripe conatct form 7 plugin is deactivated because it require <a href=\"plugin-install.php?tab=search&s=contact+form+7\">Contact Form 7</a> plugin installed and activated."
|
||||||
|
msgstr ""
|
||||||
@@ -0,0 +1,84 @@
|
|||||||
|
# Copyright (C) 2022 bPlugins LLC
|
||||||
|
# This file is distributed under the GPLv3.
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Advance Custom HTML 1.0.0\n"
|
||||||
|
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/advance-custom-html\n"
|
||||||
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"POT-Creation-Date: 2022-11-10T04:43:37+00:00\n"
|
||||||
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
|
"X-Generator: WP-CLI 2.6.0\n"
|
||||||
|
"X-Domain: custom-html\n"
|
||||||
|
|
||||||
|
#. Plugin Name of the plugin
|
||||||
|
msgid "Advance Custom HTML"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Description of the plugin
|
||||||
|
msgid "An advance html code editor which enable you to code professionally. It provides different skins, denting, correction and more."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Author of the plugin
|
||||||
|
msgid "bPlugins LLC"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Author URI of the plugin
|
||||||
|
msgid "http://bplugins.com"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dist/editor.js:6
|
||||||
|
#: dist/editor.js:29251
|
||||||
|
msgid "Settings"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dist/editor.js:6
|
||||||
|
#: dist/editor.js:29252
|
||||||
|
msgid "Font Size"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dist/editor.js:6
|
||||||
|
#: dist/editor.js:29408
|
||||||
|
#: dist/editor.js:29409
|
||||||
|
#: dist/editor.js:29411
|
||||||
|
#: dist/editor.js:29414
|
||||||
|
msgid "Preview"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dist/editor.js:6
|
||||||
|
#: dist/editor.js:29412
|
||||||
|
msgid "HTML"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dist/editor.js:6
|
||||||
|
#: dist/editor.js:29415
|
||||||
|
msgid "HTML with Preview"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: block.json
|
||||||
|
msgctxt "block title"
|
||||||
|
msgid "Advance Custom HTML"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: block.json
|
||||||
|
msgctxt "block description"
|
||||||
|
msgid "Write code like editor."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: block.json
|
||||||
|
msgctxt "block keyword"
|
||||||
|
msgid "custom html"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: block.json
|
||||||
|
msgctxt "block keyword"
|
||||||
|
msgid "code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: block.json
|
||||||
|
msgctxt "block keyword"
|
||||||
|
msgid "html"
|
||||||
|
msgstr ""
|
||||||
@@ -0,0 +1,460 @@
|
|||||||
|
# Copyright (C) 2022 WP connect
|
||||||
|
# This file is distributed under the same license as the Air WP Sync plugin.
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Air WP Sync 1.0.0\n"
|
||||||
|
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/air-wp-sync\n"
|
||||||
|
"POT-Creation-Date: 2022-07-11T15:34:21+02:00\n"
|
||||||
|
"PO-Revision-Date: 2022-07-11 15:36+0200\n"
|
||||||
|
"Last-Translator: \n"
|
||||||
|
"Language-Team: \n"
|
||||||
|
"Language: fr_FR\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: Poedit 3.1.1\n"
|
||||||
|
"X-Domain: airwpsync\n"
|
||||||
|
|
||||||
|
#. Plugin Name of the plugin
|
||||||
|
#: includes/class-air-wp-sync-admin-page.php:74
|
||||||
|
#: includes/class-air-wp-sync-admin-page.php:75 views/header.php:13
|
||||||
|
msgid "Air WP Sync"
|
||||||
|
msgstr "Air WP Sync"
|
||||||
|
|
||||||
|
#. Plugin URI of the plugin
|
||||||
|
msgid "https://wpconnect.co/air-wp-sync-plugin/"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Description of the plugin
|
||||||
|
msgid "Swiftly sync Airtable to your WordPress website!"
|
||||||
|
msgstr "Synchronisez facilement Airtable avec votre site WordPress !"
|
||||||
|
|
||||||
|
#. Author of the plugin
|
||||||
|
msgid "WP connect"
|
||||||
|
msgstr "WP connect"
|
||||||
|
|
||||||
|
#. Author URI of the plugin
|
||||||
|
msgid "https://wpconnect.co/"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/class-air-wp-sync-admin-page.php:56
|
||||||
|
msgid "Error:"
|
||||||
|
msgstr "Erreur :"
|
||||||
|
|
||||||
|
#: includes/class-air-wp-sync-admin-page.php:56
|
||||||
|
msgid "Some required fields are missing."
|
||||||
|
msgstr "Certains champs obligatoires sont manquants."
|
||||||
|
|
||||||
|
#: includes/class-air-wp-sync-admin-page.php:83
|
||||||
|
#: includes/class-air-wp-sync-admin-page.php:84
|
||||||
|
msgid "All Connections"
|
||||||
|
msgstr "Toutes les connexions"
|
||||||
|
|
||||||
|
#: includes/class-air-wp-sync-admin-page.php:90
|
||||||
|
#: includes/class-air-wp-sync-admin-page.php:91
|
||||||
|
#: includes/class-air-wp-sync.php:53
|
||||||
|
msgid "Add New"
|
||||||
|
msgstr "Ajouter"
|
||||||
|
|
||||||
|
#: includes/class-air-wp-sync-admin-page.php:104
|
||||||
|
msgid "Settings"
|
||||||
|
msgstr "Paramètres"
|
||||||
|
|
||||||
|
#: includes/class-air-wp-sync-admin-page.php:116
|
||||||
|
msgid "Last Modified On"
|
||||||
|
msgstr "Dernière modification le"
|
||||||
|
|
||||||
|
#: includes/class-air-wp-sync-admin-page.php:117
|
||||||
|
#: views/metabox-post-settings.php:12
|
||||||
|
msgid "Post Type"
|
||||||
|
msgstr "Type de publication"
|
||||||
|
|
||||||
|
#: includes/class-air-wp-sync-admin-page.php:118
|
||||||
|
msgid "Last Synced On"
|
||||||
|
msgstr "Dernière synchronisation le"
|
||||||
|
|
||||||
|
#: includes/class-air-wp-sync-admin-page.php:119 views/metabox-sync.php:27
|
||||||
|
msgid "Trigger"
|
||||||
|
msgstr "Déclencheur"
|
||||||
|
|
||||||
|
#: includes/class-air-wp-sync-admin-page.php:147 views/metabox-sync.php:33
|
||||||
|
msgid "Manual only"
|
||||||
|
msgstr "Manuel uniquement"
|
||||||
|
|
||||||
|
#: includes/class-air-wp-sync-admin-page.php:150 views/metabox-sync.php:38
|
||||||
|
msgid "Recurring"
|
||||||
|
msgstr "Récurrent"
|
||||||
|
|
||||||
|
#: includes/class-air-wp-sync-admin-page.php:179
|
||||||
|
msgid "Airtable Settings"
|
||||||
|
msgstr "Paramètres Airtable"
|
||||||
|
|
||||||
|
#: includes/class-air-wp-sync-admin-page.php:188
|
||||||
|
msgid "Import As..."
|
||||||
|
msgstr "Importer en tant que..."
|
||||||
|
|
||||||
|
#: includes/class-air-wp-sync-admin-page.php:195
|
||||||
|
msgid ""
|
||||||
|
"Add all the Airtable fields you want to synchronize and then select the "
|
||||||
|
"corresponding data types where they will be imported into your post. Make "
|
||||||
|
"sure the column names are entered identically into your database"
|
||||||
|
msgstr ""
|
||||||
|
"Ajoutez tous les champs Airtable que vous souhaitez synchroniser, puis "
|
||||||
|
"sélectionnez les types de données correspondants où ils seront importés dans "
|
||||||
|
"votre publication. Assurez-vous que les noms des colonnes sont identiques "
|
||||||
|
"dans Airtable"
|
||||||
|
|
||||||
|
#: includes/class-air-wp-sync-admin-page.php:198
|
||||||
|
msgid "Field Mapping"
|
||||||
|
msgstr "Mapping de Champs"
|
||||||
|
|
||||||
|
#: includes/class-air-wp-sync-admin-page.php:207
|
||||||
|
msgid "Actions"
|
||||||
|
msgstr "Actions"
|
||||||
|
|
||||||
|
#: includes/class-air-wp-sync-admin-page.php:215
|
||||||
|
msgid "Sync Settings"
|
||||||
|
msgstr "Paramètres de synchronisation"
|
||||||
|
|
||||||
|
#: includes/class-air-wp-sync-admin-page.php:330
|
||||||
|
msgid ""
|
||||||
|
"Thank you for using the free version of our plugin! To be able to create as "
|
||||||
|
"many connections as you want, <a href=\"https://wpconnect.co/air-wp-sync-"
|
||||||
|
"plugin/#pro-version\" target=\"_blank\">upgrade to Pro version</a>."
|
||||||
|
msgstr ""
|
||||||
|
"Merci d’utiliser la version gratuite de notre plugin ! Pour pouvoir créer "
|
||||||
|
"autant de connexions que vous le souhaitez, <a href=\"https://wpconnect.co/"
|
||||||
|
"air-wp-sync-plugin/#pro-version\" target=\"_blank\">passez à la version Pro</"
|
||||||
|
"a>."
|
||||||
|
|
||||||
|
#: includes/class-air-wp-sync-admin-page.php:349
|
||||||
|
msgid "Back to list"
|
||||||
|
msgstr "Retour à la liste"
|
||||||
|
|
||||||
|
#: includes/class-air-wp-sync-admin-page.php:383
|
||||||
|
#: includes/class-air-wp-sync-admin-page.php:423
|
||||||
|
msgid "Finished!"
|
||||||
|
msgstr "Terminé !"
|
||||||
|
|
||||||
|
#: includes/class-air-wp-sync-admin-page.php:391
|
||||||
|
msgid "Finished with errors."
|
||||||
|
msgstr "Terminé avec des erreurs."
|
||||||
|
|
||||||
|
#: includes/class-air-wp-sync-admin-page.php:437
|
||||||
|
msgid "Wrong API Key"
|
||||||
|
msgstr "Mauvaise clé API"
|
||||||
|
|
||||||
|
#: includes/class-air-wp-sync-admin-page.php:488
|
||||||
|
#: includes/class-air-wp-sync-admin-page.php:518
|
||||||
|
#: includes/class-air-wp-sync-admin-page.php:564
|
||||||
|
#: includes/destinations/class-air-wp-sync-taxonomy-destination.php:44
|
||||||
|
msgid "(Pro version, coming soon)"
|
||||||
|
msgstr "(Version Pro, à venir)"
|
||||||
|
|
||||||
|
#: includes/class-air-wp-sync-admin-page.php:496
|
||||||
|
msgid "Custom Post Type (Pro version, coming soon)"
|
||||||
|
msgstr "Type de publication personnalisé (version Pro, à venir)"
|
||||||
|
|
||||||
|
#: includes/class-air-wp-sync-admin-page.php:546
|
||||||
|
msgid "Add"
|
||||||
|
msgstr "Ajouter"
|
||||||
|
|
||||||
|
#: includes/class-air-wp-sync-admin-page.php:547
|
||||||
|
msgid "Add & Update"
|
||||||
|
msgstr "Ajouter et mettre à jour"
|
||||||
|
|
||||||
|
#: includes/class-air-wp-sync-admin-page.php:548
|
||||||
|
msgid "Add, Update & Delete"
|
||||||
|
msgstr "Ajouter, mettre à jour et supprimer"
|
||||||
|
|
||||||
|
#: includes/class-air-wp-sync.php:51
|
||||||
|
msgid "Connections"
|
||||||
|
msgstr "Connexions"
|
||||||
|
|
||||||
|
#: includes/class-air-wp-sync.php:52
|
||||||
|
msgid "Connection"
|
||||||
|
msgstr "Connexion"
|
||||||
|
|
||||||
|
#: includes/class-air-wp-sync.php:54
|
||||||
|
msgid "Add New Connection"
|
||||||
|
msgstr "Ajouter une nouvelle connexion"
|
||||||
|
|
||||||
|
#: includes/class-air-wp-sync.php:55
|
||||||
|
msgid "Edit Connection"
|
||||||
|
msgstr "Modifier la connexion"
|
||||||
|
|
||||||
|
#: includes/class-air-wp-sync.php:56
|
||||||
|
msgid "New Connection"
|
||||||
|
msgstr "Nouvelle connexion"
|
||||||
|
|
||||||
|
#: includes/class-air-wp-sync.php:57
|
||||||
|
msgid "View Connection"
|
||||||
|
msgstr "Afficher la connexion"
|
||||||
|
|
||||||
|
#: includes/class-air-wp-sync.php:58
|
||||||
|
msgid "Search Connections"
|
||||||
|
msgstr "Rechercher des connexions"
|
||||||
|
|
||||||
|
#: includes/class-air-wp-sync.php:59
|
||||||
|
msgid "No Connections found"
|
||||||
|
msgstr "Aucune connexion trouvée"
|
||||||
|
|
||||||
|
#: includes/class-air-wp-sync.php:60
|
||||||
|
msgid "No Connections found in Trash"
|
||||||
|
msgstr "Aucune connexion trouvée dans la corbeille"
|
||||||
|
|
||||||
|
#: includes/class-air-wp-sync.php:80
|
||||||
|
msgid "Every 5 minutes"
|
||||||
|
msgstr "Toutes les 5 minutes"
|
||||||
|
|
||||||
|
#: includes/class-air-wp-sync.php:84
|
||||||
|
msgid "Every 10 minutes"
|
||||||
|
msgstr "Toutes les 10 minutes"
|
||||||
|
|
||||||
|
#: includes/class-air-wp-sync.php:88
|
||||||
|
msgid "Every 30 minutes"
|
||||||
|
msgstr "Toutes les 30 minutes"
|
||||||
|
|
||||||
|
#: includes/destinations/class-air-wp-sync-meta-destination.php:27
|
||||||
|
msgid "Featured Image"
|
||||||
|
msgstr "Image mise en avant"
|
||||||
|
|
||||||
|
#: includes/destinations/class-air-wp-sync-meta-destination.php:32
|
||||||
|
msgid "Custom Field (Pro version, coming soon)"
|
||||||
|
msgstr "Champ personnalisé (version Pro, à venir)"
|
||||||
|
|
||||||
|
#: includes/destinations/class-air-wp-sync-meta-destination.php:47
|
||||||
|
msgid "The Airtable field mapped to the featured image seems invalid."
|
||||||
|
msgstr ""
|
||||||
|
"Le champs Airtable choisi pour l’image mise en avant ne semble pas valide."
|
||||||
|
|
||||||
|
#: includes/destinations/class-air-wp-sync-post-destination.php:19
|
||||||
|
msgid "Post"
|
||||||
|
msgstr "Publication"
|
||||||
|
|
||||||
|
#: includes/destinations/class-air-wp-sync-post-destination.php:28
|
||||||
|
msgid "Title"
|
||||||
|
msgstr "Titre"
|
||||||
|
|
||||||
|
#: includes/destinations/class-air-wp-sync-post-destination.php:33
|
||||||
|
msgid "Content"
|
||||||
|
msgstr "Contenu"
|
||||||
|
|
||||||
|
#: includes/destinations/class-air-wp-sync-post-destination.php:38
|
||||||
|
msgid "Excerpt"
|
||||||
|
msgstr "Extrait"
|
||||||
|
|
||||||
|
#: includes/destinations/class-air-wp-sync-post-destination.php:43
|
||||||
|
msgid "Slug"
|
||||||
|
msgstr "Slug"
|
||||||
|
|
||||||
|
#: includes/destinations/class-air-wp-sync-post-destination.php:48
|
||||||
|
msgid "Publication Date"
|
||||||
|
msgstr "Date de publication"
|
||||||
|
|
||||||
|
#: includes/destinations/class-air-wp-sync-post-destination.php:70
|
||||||
|
msgid "The Airtable field mapped to the publication date seems invalid."
|
||||||
|
msgstr ""
|
||||||
|
"Le champs Airtable choisi pour la date de publication ne semble pas valide."
|
||||||
|
|
||||||
|
#: includes/destinations/class-air-wp-sync-taxonomy-destination.php:22
|
||||||
|
msgid "Taxonomies"
|
||||||
|
msgstr "Taxonomies"
|
||||||
|
|
||||||
|
#: views/header.php:17
|
||||||
|
msgid ""
|
||||||
|
"Want more features? <strong>Pro version</strong> is coming soon... Keep "
|
||||||
|
"informed!"
|
||||||
|
msgstr ""
|
||||||
|
"Vous voulez plus de fonctionnalités? <strong>La version Pro</strong> arrive "
|
||||||
|
"bientôt... Restez au courant!"
|
||||||
|
|
||||||
|
#: views/metabox-airtable-settings.php:14
|
||||||
|
msgid "API Key"
|
||||||
|
msgstr "Clé API"
|
||||||
|
|
||||||
|
#: views/metabox-airtable-settings.php:15
|
||||||
|
msgid ""
|
||||||
|
"Visit your Airtable <a href=\"https://airtable.com/account\" target=\"_blank"
|
||||||
|
"\">account overview page</a> to generate an API key."
|
||||||
|
msgstr ""
|
||||||
|
"Visitez <a href=\"https://airtable.com/account\" target=\"_blank\">la page "
|
||||||
|
"de présentation de votre compte</a> Airtable pour générer une clé API."
|
||||||
|
|
||||||
|
#: views/metabox-airtable-settings.php:27
|
||||||
|
msgid "App ID"
|
||||||
|
msgstr "App ID"
|
||||||
|
|
||||||
|
#: views/metabox-airtable-settings.php:28
|
||||||
|
msgid ""
|
||||||
|
"Open your database on Airtable and look at the URL in your browser bar. The "
|
||||||
|
"app ID is the part starting with ‘app’ and located between two slashes."
|
||||||
|
msgstr ""
|
||||||
|
"Ouvrez votre base de données sur Airtable et regardez l’URL dans la barre de "
|
||||||
|
"votre navigateur. L’App ID est la partie commençant par « app » et située "
|
||||||
|
"entre deux slashs."
|
||||||
|
|
||||||
|
#: views/metabox-airtable-settings.php:40
|
||||||
|
msgid "Table ID"
|
||||||
|
msgstr "Table ID"
|
||||||
|
|
||||||
|
#: views/metabox-airtable-settings.php:41
|
||||||
|
msgid ""
|
||||||
|
"Enter the table name from which you want to synchronize your posts. You can "
|
||||||
|
"also use the part starting with ‘tbl’ located between two slashes in the URL."
|
||||||
|
msgstr ""
|
||||||
|
"Entrez le nom de la table à partir de laquelle vous souhaitez synchroniser "
|
||||||
|
"vos publications. Vous pouvez également utiliser la partie commençant par "
|
||||||
|
"'tbl' située entre deux slashs dans l’URL."
|
||||||
|
|
||||||
|
#: views/metabox-mapping.php:12 views/metabox-mapping.php:29
|
||||||
|
msgid "Airtable Field"
|
||||||
|
msgstr "Champs Airtable"
|
||||||
|
|
||||||
|
#: views/metabox-mapping.php:13 views/metabox-mapping.php:38
|
||||||
|
msgid "Import As"
|
||||||
|
msgstr "Importer en tant que"
|
||||||
|
|
||||||
|
#: views/metabox-mapping.php:21
|
||||||
|
msgid ""
|
||||||
|
"Click the <strong>+ Add Field</strong> button to create your first field."
|
||||||
|
msgstr ""
|
||||||
|
"Cliquez sur le bouton <strong>+ Ajouter un champ</strong> pour créer votre "
|
||||||
|
"premier champ."
|
||||||
|
|
||||||
|
#: views/metabox-mapping.php:33
|
||||||
|
msgid "Convert Airtable rich text formatting"
|
||||||
|
msgstr "Convertir le texte riche de Airtable"
|
||||||
|
|
||||||
|
#: views/metabox-mapping.php:54
|
||||||
|
msgid "Remove"
|
||||||
|
msgstr "Retirer"
|
||||||
|
|
||||||
|
#: views/metabox-mapping.php:67
|
||||||
|
msgid "+ Add Field"
|
||||||
|
msgstr "+ Ajouter un champ"
|
||||||
|
|
||||||
|
#: views/metabox-post-settings.php:24
|
||||||
|
msgid "Post Status"
|
||||||
|
msgstr "Statut de l’article"
|
||||||
|
|
||||||
|
#: views/metabox-post-settings.php:36
|
||||||
|
msgid "Post Author"
|
||||||
|
msgstr "Auteur de l’article"
|
||||||
|
|
||||||
|
#: views/metabox-side.php:13
|
||||||
|
msgid "Sync now"
|
||||||
|
msgstr "Synchroniser"
|
||||||
|
|
||||||
|
#: views/metabox-side.php:18
|
||||||
|
msgid ""
|
||||||
|
"You will be able to sync your Airtable content once you have saved this "
|
||||||
|
"connection."
|
||||||
|
msgstr ""
|
||||||
|
"Vous pourrez synchroniser votre contenu Airtable une fois que vous aurez "
|
||||||
|
"enregistré cette connexion."
|
||||||
|
|
||||||
|
#: views/metabox-side/infos.php:1
|
||||||
|
msgid "Last Sync Status"
|
||||||
|
msgstr "État de la dernière synchronisation"
|
||||||
|
|
||||||
|
#: views/metabox-side/infos.php:5
|
||||||
|
msgid "Successful!"
|
||||||
|
msgstr "Réussi !"
|
||||||
|
|
||||||
|
#: views/metabox-side/infos.php:7
|
||||||
|
msgid "Error"
|
||||||
|
msgstr "Erreur"
|
||||||
|
|
||||||
|
#: views/metabox-side/infos.php:17
|
||||||
|
msgid "Last Sync"
|
||||||
|
msgstr "Dernière synchronisation"
|
||||||
|
|
||||||
|
#: views/metabox-side/infos.php:27
|
||||||
|
msgid "Scheduled Next Sync"
|
||||||
|
msgstr "Prochaine synchronisation"
|
||||||
|
|
||||||
|
#: views/metabox-sync.php:13
|
||||||
|
msgid "Strategy"
|
||||||
|
msgstr "Stratégie"
|
||||||
|
|
||||||
|
#: views/metabox-sync.php:14
|
||||||
|
msgid ""
|
||||||
|
"Select the method to synchronize your Airtable content with WordPress."
|
||||||
|
"<br><br><strong>Add:</strong> only adds new content.<br><br><strong>Add & "
|
||||||
|
"Update:</strong> same + updates content from modified records."
|
||||||
|
"<br><br><strong>Add, Update & Delete:</strong> same + deletes content that "
|
||||||
|
"is no longer in Airtable."
|
||||||
|
msgstr ""
|
||||||
|
"Sélectionnez la méthode de synchronisation de votre contenu Airtable avec "
|
||||||
|
"WordPress.<br><br><strong>Ajouter :</strong> ajoute uniquement du nouveau "
|
||||||
|
"contenu.<br><br><strong>Ajouter et mettre à jour :</strong> idem + met à "
|
||||||
|
"jour le contenu des enregistrements modifiés.<br><br><strong>Ajouter, mettre "
|
||||||
|
"à jour et supprimer :</strong> idem + supprime le contenu qui n’est plus "
|
||||||
|
"dans Airtable."
|
||||||
|
|
||||||
|
#: views/metabox-sync.php:34
|
||||||
|
msgid ""
|
||||||
|
"Disables automatic synchronization of your Airtable content. You can still "
|
||||||
|
"do it manually by clicking on the 'Sync Now' button in the side panel."
|
||||||
|
msgstr ""
|
||||||
|
"Désactive la synchronisation automatique de votre contenu Airtable. Vous "
|
||||||
|
"pouvez toujours la faire manuellement en cliquant sur le bouton "
|
||||||
|
"« Synchroniser » dans le panneau latéral."
|
||||||
|
|
||||||
|
#: views/metabox-sync.php:39
|
||||||
|
msgid ""
|
||||||
|
"Enables recurring synchronization of your Airtable content. Choose a "
|
||||||
|
"frequency and it will take effect from the date and time the connection is "
|
||||||
|
"updated."
|
||||||
|
msgstr ""
|
||||||
|
"Permet la synchronisation récurrente de votre contenu Airtable. Choisissez "
|
||||||
|
"une fréquence et elle prendra effet à partir de la date et de l’heure de "
|
||||||
|
"mise à jour de la connexion."
|
||||||
|
|
||||||
|
#: views/metabox-sync.php:44
|
||||||
|
msgid "Frequency"
|
||||||
|
msgstr "Fréquence"
|
||||||
|
|
||||||
|
#: views/metabox-sync.php:50
|
||||||
|
msgid ""
|
||||||
|
"We recommend <a href=\"https://developer.wordpress.org/plugins/cron/"
|
||||||
|
"scheduling-wp-cron-events/\" target=\"_blank\">setting up WP-Cron</a> as a "
|
||||||
|
"cron job for better performance."
|
||||||
|
msgstr ""
|
||||||
|
"Nous vous recommandons de <a href=\"https://developer.wordpress.org/plugins/"
|
||||||
|
"cron/scheduling-wp-cron-events/\" target=\"_blank\">configurer WP-Cron</a> "
|
||||||
|
"en tant que tâche cron pour de meilleures performances."
|
||||||
|
|
||||||
|
#: views/metabox-sync.php:55
|
||||||
|
msgid "Instant (Pro version, coming soon)"
|
||||||
|
msgstr "Instantané (version Pro, à venir)"
|
||||||
|
|
||||||
|
#: views/metabox-sync.php:56
|
||||||
|
msgid ""
|
||||||
|
"Enables instant synchronization of your Airtable content. Using Airtable "
|
||||||
|
"webhooks, choose your own trigger and the connection will be updated as soon "
|
||||||
|
"as the chosen event occurs."
|
||||||
|
msgstr ""
|
||||||
|
"Permet la synchronisation instantanée de votre contenu Airtable. À l’aide "
|
||||||
|
"des webhooks Airtable, choisissez votre propre déclencheur et la connexion "
|
||||||
|
"sera mise à jour dès que l’événement choisi se produira."
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "You are currently using the free version of our plugin.\n"
|
||||||
|
#~ "\t\t\t\t\t\t<br>To be able to activate more than two simultaneous "
|
||||||
|
#~ "connections, you can upgrade to the Pro version (thanks for your "
|
||||||
|
#~ "support!).\n"
|
||||||
|
#~ "\t\t\t\t\t\t<br>Otherwise, you just have to deactivate at least one of "
|
||||||
|
#~ "the two active connections you already have and then try come back to "
|
||||||
|
#~ "activate this one."
|
||||||
|
#~ msgstr ""
|
||||||
|
#~ "Vous utilisez actuellement la version gratuite de notre plugin.<br>Pour "
|
||||||
|
#~ "pouvoir activer plus de deux connexions simultanées, vous pouvez passer à "
|
||||||
|
#~ "la version Pro (merci pour votre soutien !).<br>Sinon, il vous suffit de "
|
||||||
|
#~ "désactiver au moins une des deux connexions actives que vous avez déjà, "
|
||||||
|
#~ "puis de revenir pour activer celle-ci."
|
||||||
|
|
||||||
|
#~ msgid "Recurrence"
|
||||||
|
#~ msgstr "Récurrence"
|
||||||
@@ -0,0 +1,400 @@
|
|||||||
|
# Copyright (C) 2022 Aircash
|
||||||
|
# This file is distributed under the GPLv2 or later.
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Aircash for WooCommerce 1.0\n"
|
||||||
|
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/aircash-"
|
||||||
|
"woocommerce\n"
|
||||||
|
"POT-Creation-Date: 2022-05-05T13:03:21+02:00\n"
|
||||||
|
"PO-Revision-Date: 2022-05-06 13:54+0200\n"
|
||||||
|
"Last-Translator: \n"
|
||||||
|
"Language-Team: \n"
|
||||||
|
"Language: hr_HR\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
|
||||||
|
"%10<=4 && (n%100<12 || n%100>14) ? 1 : 2);\n"
|
||||||
|
"X-Generator: Poedit 3.0.1\n"
|
||||||
|
"X-Domain: aircash\n"
|
||||||
|
|
||||||
|
#. Plugin Name of the plugin
|
||||||
|
msgid "Aircash for WooCommerce"
|
||||||
|
msgstr "Aircash for WooCommerce"
|
||||||
|
|
||||||
|
#. Plugin URI of the plugin
|
||||||
|
msgid "https://aircash.eu/aircash-woocommerce/"
|
||||||
|
msgstr "https://aircash.eu/aircash-woocommerce/"
|
||||||
|
|
||||||
|
#. Description of the plugin
|
||||||
|
msgid "Aircash - for quick and simple payments"
|
||||||
|
msgstr "Aircash - za brza i jednostavna plaćanja"
|
||||||
|
|
||||||
|
#. Author of the plugin
|
||||||
|
msgid "Aircash"
|
||||||
|
msgstr "Aircash"
|
||||||
|
|
||||||
|
#. Author URI of the plugin
|
||||||
|
msgid "https://aircash.eu/"
|
||||||
|
msgstr "https://aircash.eu/"
|
||||||
|
|
||||||
|
#: aircash-woocommerce.php:82
|
||||||
|
msgid ""
|
||||||
|
"\"Aircash for WooCommerce\" gateway is disabled because OpenSSL extension is "
|
||||||
|
"not installed."
|
||||||
|
msgstr ""
|
||||||
|
"\"Aircash for WooCommerce\" je onemogućen jer proširenje OpenSSL nije "
|
||||||
|
"instalirano."
|
||||||
|
|
||||||
|
#: aircash-woocommerce.php:83
|
||||||
|
msgid ""
|
||||||
|
"Please <a href=\"https://www.php.net/manual/en/openssl.installation.php\" "
|
||||||
|
"target=\"_blank\">install OpenSSL PHP extension</a> in order to use "
|
||||||
|
"\"Aircash for WooCommerce\"."
|
||||||
|
msgstr ""
|
||||||
|
"Molimo, <a href=\"https://www.php.net/manual/en/openssl.installation.php\" "
|
||||||
|
"target=\"_blank\">instaliraj OpenSSL PHP proširenje</a>"
|
||||||
|
|
||||||
|
#: aircash-woocommerce.php:84
|
||||||
|
msgid ""
|
||||||
|
"Contact your web server administrator or your web hosting provider if not "
|
||||||
|
"sure how to install PHP extensions."
|
||||||
|
msgstr ""
|
||||||
|
"Kontaktirajte administratora web poslužitelja ili davatelju web hostinga ako "
|
||||||
|
"niste sigurni kako instalirati PHP proširenja."
|
||||||
|
|
||||||
|
#: aircash-woocommerce.php:101
|
||||||
|
msgid "\"Aircash for WooCommerce\" is in <b>test mode.</b>"
|
||||||
|
msgstr "\"Aircash for WooCommerce\" je u <b>testnom načinu rada.</b>"
|
||||||
|
|
||||||
|
#: aircash-woocommerce.php:118 aircash-woocommerce.php:133
|
||||||
|
msgid "\"Aircash for WooCommerce\" is almost ready."
|
||||||
|
msgstr "\"Aircash for WooCommerce\" je gotovo spreman."
|
||||||
|
|
||||||
|
#: aircash-woocommerce.php:119
|
||||||
|
msgid ""
|
||||||
|
"<a href=\"%s\" class=\"thickbox open-plugin-details-modal\">Connect with "
|
||||||
|
"Aircash</a> to submit a new account request or configure Aircash settings <a "
|
||||||
|
"href=\"%s\" class=\"thickbox open-plugin-details-modal\">manually</a>."
|
||||||
|
msgstr ""
|
||||||
|
"<a href=\"%s\" class=\"thickbox open-plugin-details-modal\">Poveži se s "
|
||||||
|
"Aircash-om</a> za slanje novog zahtjeva za kreiranje računa ili "
|
||||||
|
"konfiguriranje postavki Aircash-a <a href=\"%s\" class=\"thickbox open-"
|
||||||
|
"plugin-details-modal\">ručno</a>."
|
||||||
|
|
||||||
|
#: aircash-woocommerce.php:123
|
||||||
|
msgid ""
|
||||||
|
"If you want to test \"Aircash for WooCommerce\", enable the "Test "
|
||||||
|
"mode" in the <a href=\"%s\">payment gateway settings</a>."
|
||||||
|
msgstr ""
|
||||||
|
"Ako želite testirati \"Aircash for WooCommerce\", omogućite "Testni "
|
||||||
|
"način rada" u <a href=\"%s\">postavkama plaćanja</a>."
|
||||||
|
|
||||||
|
#: aircash-woocommerce.php:134
|
||||||
|
msgid ""
|
||||||
|
"You have successfully submitted a new account request. Please wait until "
|
||||||
|
"Aircash verifies your account and then update account status request by <a "
|
||||||
|
"class=\"thickbox open-plugin-details-modal\" href=\"%s\">checking the "
|
||||||
|
"configuration</a>."
|
||||||
|
msgstr ""
|
||||||
|
"Zahtjev za novi račun je uspješno poslan. Pričekaj da Aircash potvrdi tvoj "
|
||||||
|
"račun, a zatim ažuriraj zahtjev za status računa <a class=\"thickbox open-"
|
||||||
|
"plugin-details-modal\" href=\"%s\">provjerom konfiguracije</a>."
|
||||||
|
|
||||||
|
#: aircash-woocommerce.php:146
|
||||||
|
msgid ""
|
||||||
|
"There has been an error while sending new account request to Aircash. Please "
|
||||||
|
"check the <a href=\"%s\">log file</a> for details."
|
||||||
|
msgstr ""
|
||||||
|
"Došlo je do pogreške prilikom slanja zahtjeva za kreiranje novog Aircash "
|
||||||
|
"računa. Pojedinosti potraži u <a href=\"%s\">log datoteci</a>."
|
||||||
|
|
||||||
|
#: aircash-woocommerce.php:237
|
||||||
|
msgid "Settings"
|
||||||
|
msgstr "Postavke"
|
||||||
|
|
||||||
|
#: includes/class-aircash-payment-gateway.php:184
|
||||||
|
#: includes/class-aircash-payment-gateway.php:185
|
||||||
|
msgid "Connect with Aircash"
|
||||||
|
msgstr "Poveži se s Aircash-om"
|
||||||
|
|
||||||
|
#: includes/class-aircash-payment-gateway.php:193
|
||||||
|
#: includes/class-aircash-payment-gateway.php:194
|
||||||
|
msgid "Manual configuration"
|
||||||
|
msgstr "Ručna konfiguracija"
|
||||||
|
|
||||||
|
#: includes/class-aircash-payment-gateway.php:201
|
||||||
|
msgid "Configuration check"
|
||||||
|
msgstr "Provjera konfiguracije"
|
||||||
|
|
||||||
|
#: includes/class-aircash-payment-gateway.php:202
|
||||||
|
msgid "Check configuration"
|
||||||
|
msgstr "Provjeri konfiguraciju"
|
||||||
|
|
||||||
|
#: includes/class-aircash-payment-gateway.php:217
|
||||||
|
msgid "After confirming your order, you will be redirected to pay via Aircash"
|
||||||
|
msgstr "Nakon potvrde narudžbe, nastavi s plaćanjem putem Aircash-a"
|
||||||
|
|
||||||
|
#: includes/class-aircash-payment-gateway.php:284
|
||||||
|
msgid "Enable \"Aircash for WooCommerce\""
|
||||||
|
msgstr "Omogući \"Aircash for WooCommerce\""
|
||||||
|
|
||||||
|
#: includes/class-aircash-payment-gateway.php:289
|
||||||
|
#: includes/class-aircash-payment-gateway.php:1243
|
||||||
|
msgid "Partner ID"
|
||||||
|
msgstr "ID partnera"
|
||||||
|
|
||||||
|
#: includes/class-aircash-payment-gateway.php:295
|
||||||
|
msgid "Public key"
|
||||||
|
msgstr "Javni ključ"
|
||||||
|
|
||||||
|
#: includes/class-aircash-payment-gateway.php:300
|
||||||
|
msgid "Private key"
|
||||||
|
msgstr "Privatni ključ"
|
||||||
|
|
||||||
|
#: includes/class-aircash-payment-gateway.php:305
|
||||||
|
msgid "Passphrase"
|
||||||
|
msgstr "Lozinka"
|
||||||
|
|
||||||
|
#: includes/class-aircash-payment-gateway.php:310
|
||||||
|
#: includes/class-aircash-payment-gateway.php:351
|
||||||
|
#: includes/class-aircash-payment-gateway.php:1246
|
||||||
|
msgid "Currency"
|
||||||
|
msgstr "Valuta"
|
||||||
|
|
||||||
|
#: includes/class-aircash-payment-gateway.php:316
|
||||||
|
msgid "Paid order status"
|
||||||
|
msgstr "Status plaćene narudžbe"
|
||||||
|
|
||||||
|
#. translators: %s: Order status
|
||||||
|
#: includes/class-aircash-payment-gateway.php:319
|
||||||
|
msgid "(Default status: \"%s\")."
|
||||||
|
msgstr "(Zadani status: \"%s\")."
|
||||||
|
|
||||||
|
#: includes/class-aircash-payment-gateway.php:324
|
||||||
|
msgid "Enable Test mode"
|
||||||
|
msgstr "Omogući probni način rada"
|
||||||
|
|
||||||
|
#: includes/class-aircash-payment-gateway.php:326
|
||||||
|
msgid "Test mode"
|
||||||
|
msgstr "Testni način rada"
|
||||||
|
|
||||||
|
#: includes/class-aircash-payment-gateway.php:327
|
||||||
|
msgid "Uses Aircash testing environment"
|
||||||
|
msgstr "Koristi Aircash testni način rada"
|
||||||
|
|
||||||
|
#: includes/class-aircash-payment-gateway.php:332
|
||||||
|
msgid "Log file"
|
||||||
|
msgstr "Log datoteka"
|
||||||
|
|
||||||
|
#: includes/class-aircash-payment-gateway.php:338
|
||||||
|
#: includes/class-aircash-payment-gateway.php:1244
|
||||||
|
msgid "Partner name"
|
||||||
|
msgstr "Ime partnera"
|
||||||
|
|
||||||
|
#: includes/class-aircash-payment-gateway.php:342
|
||||||
|
#: includes/class-aircash-payment-gateway.php:1245
|
||||||
|
msgid "E-mail"
|
||||||
|
msgstr "Email"
|
||||||
|
|
||||||
|
#: includes/class-aircash-payment-gateway.php:346
|
||||||
|
msgid "Phone"
|
||||||
|
msgstr "Telefon"
|
||||||
|
|
||||||
|
#: includes/class-aircash-payment-gateway.php:357
|
||||||
|
msgid "Note"
|
||||||
|
msgstr "Bilješka"
|
||||||
|
|
||||||
|
#: includes/class-aircash-payment-gateway.php:517
|
||||||
|
msgid "Pay with Aircash"
|
||||||
|
msgstr "Plati Aircash-om"
|
||||||
|
|
||||||
|
#: includes/class-aircash-payment-gateway.php:527
|
||||||
|
msgid "Open Aircash application"
|
||||||
|
msgstr "Otvori Aircash aplikaciju"
|
||||||
|
|
||||||
|
#: includes/class-aircash-payment-gateway.php:528
|
||||||
|
msgid "Select \"Scan and Pay\""
|
||||||
|
msgstr "Odaberi \"Skeniraj i plati\""
|
||||||
|
|
||||||
|
#: includes/class-aircash-payment-gateway.php:529
|
||||||
|
msgid "Point your camera to QR code"
|
||||||
|
msgstr "Usmjeri kameru prema QR kodu"
|
||||||
|
|
||||||
|
#: includes/class-aircash-payment-gateway.php:530
|
||||||
|
msgid "Follow instructions in Aircash application"
|
||||||
|
msgstr "Slijedi upute u Aircash aplikaciji"
|
||||||
|
|
||||||
|
#: includes/class-aircash-payment-gateway.php:535
|
||||||
|
msgid "Payment Successful"
|
||||||
|
msgstr "Plaćanje uspješno"
|
||||||
|
|
||||||
|
#: includes/class-aircash-payment-gateway.php:545
|
||||||
|
msgid "Download the latest Aircash app:"
|
||||||
|
msgstr "Preuzmi najnoviju verziju Aircash aplikacije:"
|
||||||
|
|
||||||
|
#. translators: %s: Order ID
|
||||||
|
#: includes/class-aircash-payment-gateway.php:599
|
||||||
|
msgid "Order with ID \"%s\" is not found"
|
||||||
|
msgstr "Narudžba s ID-om \"%s\" nije pronađena"
|
||||||
|
|
||||||
|
#: includes/class-aircash-payment-gateway.php:618
|
||||||
|
msgid "Aircash public certificate file not found or unreadable"
|
||||||
|
msgstr "Datoteka javnog Aircash certifikata nije pronađena ili je nečitljiva"
|
||||||
|
|
||||||
|
#: includes/class-aircash-payment-gateway.php:626
|
||||||
|
msgid "Unable to verify signature: %s"
|
||||||
|
msgstr "Nije moguće provjeriti potpis: %s"
|
||||||
|
|
||||||
|
#. translators: %s: Currency code
|
||||||
|
#: includes/class-aircash-payment-gateway.php:632
|
||||||
|
msgid "Currency code %s is not supported."
|
||||||
|
msgstr "Kôd valute %s nije podržan."
|
||||||
|
|
||||||
|
#. translators: 1: Order currency ISO, 2: Aircash transaction currency code
|
||||||
|
#: includes/class-aircash-payment-gateway.php:637
|
||||||
|
msgid "Order has different currency (%1$s) from Aircash payment (%2$s)"
|
||||||
|
msgstr "Narudžba ima drukčiju valutu (%1$s) od Aircash plaćanja (%2$s)"
|
||||||
|
|
||||||
|
#. translators: 1: Order amount, 2: Aircash transaction amount
|
||||||
|
#: includes/class-aircash-payment-gateway.php:643
|
||||||
|
msgid "Order has different amount (%1$s) from Aircash payment (%2$s)"
|
||||||
|
msgstr "Narudžba ima drukčiji iznos (%1$s) od Aircash plaćanja (%2$s)"
|
||||||
|
|
||||||
|
#. translators: %s: Order status
|
||||||
|
#: includes/class-aircash-payment-gateway.php:650
|
||||||
|
msgid "Order is already in status \"%s"
|
||||||
|
msgstr "Status narudžbe je već %s"
|
||||||
|
|
||||||
|
#: includes/class-aircash-payment-gateway.php:800
|
||||||
|
msgid "Aircash does not support partial refunds."
|
||||||
|
msgstr "Aircash ne podržava djelomične povrate novca"
|
||||||
|
|
||||||
|
#: includes/class-aircash-payment-gateway.php:998
|
||||||
|
msgid "Partner name is required."
|
||||||
|
msgstr "Ime partnera je obavezno"
|
||||||
|
|
||||||
|
#: includes/class-aircash-payment-gateway.php:1001
|
||||||
|
msgid "E-mail address is required."
|
||||||
|
msgstr "Email adresa je obavezna"
|
||||||
|
|
||||||
|
#: includes/class-aircash-payment-gateway.php:1003
|
||||||
|
msgid "E-mail address is invalid."
|
||||||
|
msgstr "Email adresa je neispravna"
|
||||||
|
|
||||||
|
#: includes/class-aircash-payment-gateway.php:1006
|
||||||
|
msgid "Phone number is requred."
|
||||||
|
msgstr "Broj telefona je obavezan"
|
||||||
|
|
||||||
|
#: includes/class-aircash-payment-gateway.php:1114
|
||||||
|
msgid ""
|
||||||
|
"Account request already submitted.<br>Please wait until we process your "
|
||||||
|
"request or contact our support."
|
||||||
|
msgstr ""
|
||||||
|
"Zahtjev za račun je već poslan.<br>Pričekaj dok ne obradimo zahtjev ili "
|
||||||
|
"kontaktirajte našu podršku."
|
||||||
|
|
||||||
|
#: includes/class-aircash-payment-gateway.php:1122
|
||||||
|
msgid ""
|
||||||
|
"<b>Error</b> - there was an error submitting new account request. Check the "
|
||||||
|
"log file for details."
|
||||||
|
msgstr ""
|
||||||
|
"<b>Pogreška</b> - došlo je do pogreške prilikom slanja zahtjeva za novi "
|
||||||
|
"račun. Provjeri log datoteku za pojedinosti."
|
||||||
|
|
||||||
|
#: includes/class-aircash-payment-gateway.php:1151
|
||||||
|
msgid "Send new account request"
|
||||||
|
msgstr "Pošalji zahtjev za novi račun"
|
||||||
|
|
||||||
|
#: includes/class-aircash-payment-gateway.php:1177
|
||||||
|
msgid ""
|
||||||
|
"<b>Warning</b> - changing this values may cause Aircash payment to stop "
|
||||||
|
"working properly."
|
||||||
|
msgstr ""
|
||||||
|
"<b>Upozorenje</b> - promjena ovih vrijednosti može uzrokovati da Aircash "
|
||||||
|
"plaćanje prestane ispravno raditi."
|
||||||
|
|
||||||
|
#: includes/class-aircash-payment-gateway.php:1188
|
||||||
|
msgid "Save configuration"
|
||||||
|
msgstr "Spremi konfiguraciju"
|
||||||
|
|
||||||
|
#: includes/class-aircash-payment-gateway.php:1227
|
||||||
|
#: includes/class-aircash-payment-gateway.php:1229
|
||||||
|
msgid "Account status"
|
||||||
|
msgstr "Status računa"
|
||||||
|
|
||||||
|
#: includes/class-aircash-payment-gateway.php:1236
|
||||||
|
msgid "Remote check"
|
||||||
|
msgstr "Provjera konfiguracije"
|
||||||
|
|
||||||
|
#: includes/class-aircash-payment-gateway.php:1238
|
||||||
|
msgid "Last check"
|
||||||
|
msgstr "Zadnja provjera"
|
||||||
|
|
||||||
|
#: includes/class-aircash-payment-gateway.php:1241
|
||||||
|
msgid "Configuration"
|
||||||
|
msgstr "Konfiguracija"
|
||||||
|
|
||||||
|
#: includes/class-aircash-payment-gateway.php:1248
|
||||||
|
msgid "Callback URL"
|
||||||
|
msgstr "Callback URL"
|
||||||
|
|
||||||
|
#: includes/class-aircash-payment-gateway.php:1251
|
||||||
|
msgid "Certificate check"
|
||||||
|
msgstr "Provjera certifikata"
|
||||||
|
|
||||||
|
#: includes/class-aircash-payment-gateway.php:1254
|
||||||
|
#: includes/class-aircash-payment-gateway.php:1298
|
||||||
|
msgid "Private key error"
|
||||||
|
msgstr "Greška privatnog ključa"
|
||||||
|
|
||||||
|
#: includes/class-aircash-payment-gateway.php:1258
|
||||||
|
#: includes/class-aircash-payment-gateway.php:1302
|
||||||
|
msgid "Public certificate not set"
|
||||||
|
msgstr "Certifikat nije postavljen"
|
||||||
|
|
||||||
|
#: includes/class-aircash-payment-gateway.php:1265
|
||||||
|
#: includes/class-aircash-payment-gateway.php:1309
|
||||||
|
msgid "It's all good."
|
||||||
|
msgstr "Sve je u redu"
|
||||||
|
|
||||||
|
#: includes/class-aircash-payment-gateway.php:1268
|
||||||
|
#: includes/class-aircash-payment-gateway.php:1312
|
||||||
|
msgid "Error verfiying - check public certificate/passphrase."
|
||||||
|
msgstr "Pogreška pri provjeravanju - provjerite javni certifikat/lozinku."
|
||||||
|
|
||||||
|
#: includes/class-aircash-payment-gateway.php:1274
|
||||||
|
msgid "Test mode enabled"
|
||||||
|
msgstr "Uključen testni način rada"
|
||||||
|
|
||||||
|
#: includes/class-aircash-payment-gateway.php:1275
|
||||||
|
msgid "Test mode configuration"
|
||||||
|
msgstr "Konfiguracija testnog načina rada"
|
||||||
|
|
||||||
|
#: includes/class-aircash-payment-gateway.php:1279
|
||||||
|
msgid "Test account status"
|
||||||
|
msgstr "Status"
|
||||||
|
|
||||||
|
#: includes/class-aircash-payment-gateway.php:1286
|
||||||
|
msgid "Test remote account check"
|
||||||
|
msgstr "Provjera računa"
|
||||||
|
|
||||||
|
#: includes/class-aircash-payment-gateway.php:1288
|
||||||
|
msgid "Test configuration"
|
||||||
|
msgstr "Konfiguracija"
|
||||||
|
|
||||||
|
#: includes/class-aircash-payment-gateway.php:1290
|
||||||
|
msgid "Test partner ID"
|
||||||
|
msgstr "ID partnera"
|
||||||
|
|
||||||
|
#: includes/class-aircash-payment-gateway.php:1291
|
||||||
|
msgid "Test currency"
|
||||||
|
msgstr "Valuta"
|
||||||
|
|
||||||
|
#: includes/class-aircash-payment-gateway.php:1292
|
||||||
|
msgid "Test callback URL"
|
||||||
|
msgstr "Callback URL"
|
||||||
|
|
||||||
|
#: includes/class-aircash-payment-gateway.php:1295
|
||||||
|
msgid "Test certificate check"
|
||||||
|
msgstr "Provjera certifikata"
|
||||||
6
spec/fixtures/dynamic_finders/plugin_version/alceris-analytics/change_log/CHANGELOG.md
vendored
Normal file
6
spec/fixtures/dynamic_finders/plugin_version/alceris-analytics/change_log/CHANGELOG.md
vendored
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
Changelog
|
||||||
|
==========
|
||||||
|
|
||||||
|
#### 1.0.0 - July 30, 2022
|
||||||
|
|
||||||
|
Initial plugin release.
|
||||||
5
spec/fixtures/dynamic_finders/plugin_version/ali2woo-migration-tool/change_log/changelog.txt
vendored
Normal file
5
spec/fixtures/dynamic_finders/plugin_version/ali2woo-migration-tool/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
1.0.0
|
||||||
|
* Initial release
|
||||||
|
|
||||||
|
1.1.0
|
||||||
|
* Added converter for ALD plugin
|
||||||
@@ -0,0 +1,135 @@
|
|||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Floating Product Publish Button for WooCommerce 1.1.0\n"
|
||||||
|
"POT-Creation-Date: 2022-11-14 15:51+0100\n"
|
||||||
|
"PO-Revision-Date: 2022-11-14 16:18+0100\n"
|
||||||
|
"Last-Translator: Andrea <andrea.daneluz@aerofeel.com>\n"
|
||||||
|
"Language-Team: andre.dane.dev@gmail.com\n"
|
||||||
|
"Language: it\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: Poedit 3.2\n"
|
||||||
|
"X-Poedit-Basepath: ..\n"
|
||||||
|
"X-Poedit-KeywordsList: esc_html__\n"
|
||||||
|
"X-Poedit-SearchPath-0: languages\n"
|
||||||
|
"X-Poedit-SearchPath-1: .\n"
|
||||||
|
|
||||||
|
#: floating-product-publish-button.php:79
|
||||||
|
msgid "Floating Product Publish Button"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: floating-product-publish-button.php:82
|
||||||
|
#, php-format
|
||||||
|
msgid ""
|
||||||
|
"This is where you can set options concerning the position and style of the "
|
||||||
|
"buttons.%sIn particular, you can insert the colours you prefer with any CSS "
|
||||||
|
"notation: if you are not handy, I recommend searching for \"css colour picker"
|
||||||
|
"\" on your search engine to select the colour that suits you.%sFor custom "
|
||||||
|
"position settings, on the other hand, I recommend searching for \"css units "
|
||||||
|
"for length\" on your search engine to check all units (I recommend "
|
||||||
|
"percentage values)."
|
||||||
|
msgstr ""
|
||||||
|
"Qui si possono impostare le opzioni relative alla posizione e allo stile dei "
|
||||||
|
"pulsanti.%sIn particolare, si possono inserire i colori che preferite con "
|
||||||
|
"qualsiasi notazione CSS: se non si è pratici, consiglio di cercare \"css "
|
||||||
|
"colour picker\" sul vostro motore di ricerca per selezionare il colore che "
|
||||||
|
"fa per voi.%sPer le impostazioni di posizione personalizzate, invece, "
|
||||||
|
"consiglio di cercare \"css units for length\" sul vostro motore di ricerca "
|
||||||
|
"per verificare tutte le unità (consiglio valori in percentuale)."
|
||||||
|
|
||||||
|
#: floating-product-publish-button.php:89
|
||||||
|
msgid "Button text color"
|
||||||
|
msgstr "Colore testo bottone"
|
||||||
|
|
||||||
|
#: floating-product-publish-button.php:91
|
||||||
|
#: floating-product-publish-button.php:99
|
||||||
|
#: floating-product-publish-button.php:107
|
||||||
|
#: floating-product-publish-button.php:115
|
||||||
|
msgid "Enter the color."
|
||||||
|
msgstr "Inserisci il colore."
|
||||||
|
|
||||||
|
#: floating-product-publish-button.php:97
|
||||||
|
msgid "Button background color"
|
||||||
|
msgstr "Colore sfondo bottone"
|
||||||
|
|
||||||
|
#: floating-product-publish-button.php:105
|
||||||
|
msgid "Button border color"
|
||||||
|
msgstr "Colore bordo bottone"
|
||||||
|
|
||||||
|
#: floating-product-publish-button.php:113
|
||||||
|
msgid "Button shadow color"
|
||||||
|
msgstr "Colore ombra bottone"
|
||||||
|
|
||||||
|
#: floating-product-publish-button.php:122
|
||||||
|
msgid "Button default position"
|
||||||
|
msgstr "Posizione predefinita bottone"
|
||||||
|
|
||||||
|
#: floating-product-publish-button.php:124
|
||||||
|
msgid "Top left"
|
||||||
|
msgstr "In alto a sinistra"
|
||||||
|
|
||||||
|
#: floating-product-publish-button.php:125
|
||||||
|
msgid "Top center"
|
||||||
|
msgstr "In alto in mezzo"
|
||||||
|
|
||||||
|
#: floating-product-publish-button.php:126
|
||||||
|
msgid "Top right"
|
||||||
|
msgstr "In alto a destra"
|
||||||
|
|
||||||
|
#: floating-product-publish-button.php:127
|
||||||
|
msgid "Middle left"
|
||||||
|
msgstr "Al centro a sinistra"
|
||||||
|
|
||||||
|
#: floating-product-publish-button.php:128
|
||||||
|
msgid "Middle center"
|
||||||
|
msgstr "Al centro in mezzo"
|
||||||
|
|
||||||
|
#: floating-product-publish-button.php:129
|
||||||
|
msgid "Middle right"
|
||||||
|
msgstr "Al centro a destra"
|
||||||
|
|
||||||
|
#: floating-product-publish-button.php:130
|
||||||
|
msgid "Bottom left"
|
||||||
|
msgstr "In basso a sinistra"
|
||||||
|
|
||||||
|
#: floating-product-publish-button.php:131
|
||||||
|
msgid "Bottom center"
|
||||||
|
msgstr "In basso in mezzo"
|
||||||
|
|
||||||
|
#: floating-product-publish-button.php:132
|
||||||
|
msgid "Bottom right"
|
||||||
|
msgstr "In basso a destra"
|
||||||
|
|
||||||
|
#: floating-product-publish-button.php:133
|
||||||
|
msgid "Custom"
|
||||||
|
msgstr "Personalizzato"
|
||||||
|
|
||||||
|
#: floating-product-publish-button.php:136
|
||||||
|
msgid "Choose the button position."
|
||||||
|
msgstr "Scegli la posizione del bottone."
|
||||||
|
|
||||||
|
#: floating-product-publish-button.php:141
|
||||||
|
msgid "Custom value: Top"
|
||||||
|
msgstr "Valore personalizzato: Top"
|
||||||
|
|
||||||
|
#: floating-product-publish-button.php:143
|
||||||
|
msgid ""
|
||||||
|
"Enter the value of the \"top\" attribute: this controls how far the button "
|
||||||
|
"should be from the top of the screen."
|
||||||
|
msgstr ""
|
||||||
|
"Inserisci il valore dell'attributo \"top\": controlla la distanza del "
|
||||||
|
"pulsante dalla parte superiore dello schermo."
|
||||||
|
|
||||||
|
#: floating-product-publish-button.php:149
|
||||||
|
msgid "Custom value: Left"
|
||||||
|
msgstr "Valore personalizzato: Left"
|
||||||
|
|
||||||
|
#: floating-product-publish-button.php:151
|
||||||
|
msgid ""
|
||||||
|
"Enter the value of the \"left\" attribute: this controls how far the button "
|
||||||
|
"should be from the left side of the screen."
|
||||||
|
msgstr ""
|
||||||
|
"Inserisci il valore dell'attributo \"left\": controlla la distanza del "
|
||||||
|
"pulsante dal lato sinistro dello schermo."
|
||||||
64
spec/fixtures/dynamic_finders/plugin_version/am-lottieplayer/composer_file/package.json
vendored
Normal file
64
spec/fixtures/dynamic_finders/plugin_version/am-lottieplayer/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,64 @@
|
|||||||
|
{
|
||||||
|
"name": "am-lottieplayer",
|
||||||
|
"version": "1.0.3",
|
||||||
|
"description": "Lightweight, versatile and easy to use! Upload Lottie animations to WordPress and add them in Gutenberg or the Divi Builder.",
|
||||||
|
"author": {
|
||||||
|
"name": "Aarstein Media",
|
||||||
|
"email": "johan@aarstein.media",
|
||||||
|
"url": "https://www.aarstein.media",
|
||||||
|
"organization": "Aarstein Media"
|
||||||
|
},
|
||||||
|
"license": "GPL-2.0-or-later",
|
||||||
|
"keywords": [
|
||||||
|
"animation",
|
||||||
|
"gif",
|
||||||
|
"motion",
|
||||||
|
"motion graphics",
|
||||||
|
"vector",
|
||||||
|
"lottie",
|
||||||
|
"dotlottie",
|
||||||
|
"svg",
|
||||||
|
"canvas"
|
||||||
|
],
|
||||||
|
"repository": {
|
||||||
|
"type": "git",
|
||||||
|
"url": "https://github.com/johanaarstein/am-lottieplayer"
|
||||||
|
},
|
||||||
|
"bugs": {
|
||||||
|
"url": "https://github.com/johanaarstein/am-lottieplayer/issues",
|
||||||
|
"email": "johan@aarstein.media"
|
||||||
|
},
|
||||||
|
"files": [
|
||||||
|
"build",
|
||||||
|
"includes",
|
||||||
|
"scripts",
|
||||||
|
"styles",
|
||||||
|
"am-lottieplayer.php"
|
||||||
|
],
|
||||||
|
"main": "build/index.js",
|
||||||
|
"devDependencies": {
|
||||||
|
"@wordpress/scripts": "^25.0.0",
|
||||||
|
"classnames": "^2.3.2"
|
||||||
|
},
|
||||||
|
"scripts": {
|
||||||
|
"build": "wp-scripts build && npm run svn",
|
||||||
|
"check-engines": "wp-scripts check-engines",
|
||||||
|
"check-licenses": "wp-scripts check-licenses",
|
||||||
|
"format": "wp-scripts format",
|
||||||
|
"lint:css": "wp-scripts lint-style",
|
||||||
|
"lint:js": "wp-scripts lint-js",
|
||||||
|
"lint:md:docs": "wp-scripts lint-md-docs",
|
||||||
|
"lint:pkg-json": "wp-scripts lint-pkg-json",
|
||||||
|
"packages-update": "wp-scripts packages-update",
|
||||||
|
"plugin-zip": "wp-scripts plugin-zip",
|
||||||
|
"start": "wp-scripts start",
|
||||||
|
"test:e2e": "wp-scripts test-e2e",
|
||||||
|
"test:unit": "wp-scripts test-unit-js",
|
||||||
|
"stash": "wp-scripts build && wp-scripts plugin-zip",
|
||||||
|
"svn": "cp -R ./build ./includes ./scripts ./styles ./svn/trunk && cp ./am-lottieplayer.php ./LICENSE ./package.json ./readme.txt ./svn/trunk"
|
||||||
|
},
|
||||||
|
"cde": {
|
||||||
|
"gettext": "am-lottieplayer",
|
||||||
|
"prefix": "am"
|
||||||
|
}
|
||||||
|
}
|
||||||
28
spec/fixtures/dynamic_finders/plugin_version/amwal-checkout/composer_file/package.json
vendored
Normal file
28
spec/fixtures/dynamic_finders/plugin_version/amwal-checkout/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,28 @@
|
|||||||
|
{
|
||||||
|
"name": "amwal-checkout-woocommerce",
|
||||||
|
"version": "1.0.15",
|
||||||
|
"description": "Amwal Checkout for WooCommerce",
|
||||||
|
"scripts": {
|
||||||
|
"build": "wp-scripts build assets/src/index.js --output-path=assets/build",
|
||||||
|
"start": "wp-scripts start assets/src/index.js --output-path=assets/build"
|
||||||
|
},
|
||||||
|
"repository": {
|
||||||
|
"type": "git",
|
||||||
|
"url": "git+https://github.com/amwal-tech/amwal-woocommerce.git"
|
||||||
|
},
|
||||||
|
"keywords": [
|
||||||
|
"amwal",
|
||||||
|
"checkout",
|
||||||
|
"woocommerce"
|
||||||
|
],
|
||||||
|
"author": "Amwal Tech, Inc.",
|
||||||
|
"license": "GPL-3.0",
|
||||||
|
"bugs": {
|
||||||
|
"url": "https://github.com/amwal-tech/amwal-woocommerce/issues"
|
||||||
|
},
|
||||||
|
"homepage": "https://github.com/amwal-tech/amwal-woocommerce#readme",
|
||||||
|
"devDependencies": {
|
||||||
|
"@wordpress/scripts": "24.3.0",
|
||||||
|
"amwal-checkout-button": "0.0.28"
|
||||||
|
}
|
||||||
|
}
|
||||||
4380
spec/fixtures/dynamic_finders/plugin_version/anrghg/translation_file/languages/anrghg-en_GB.po
vendored
Normal file
4380
spec/fixtures/dynamic_finders/plugin_version/anrghg/translation_file/languages/anrghg-en_GB.po
vendored
Normal file
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
20
spec/fixtures/dynamic_finders/plugin_version/atr-inline-rtl-ltr/composer_file/package.json
vendored
Normal file
20
spec/fixtures/dynamic_finders/plugin_version/atr-inline-rtl-ltr/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
{
|
||||||
|
"name": "atr-inline-rtl-ltr",
|
||||||
|
"version": "1.0.1",
|
||||||
|
"description": "Wrap words (or sentences) in paragraph block with span element and change their direction from rtl to ltr and vice versa.",
|
||||||
|
"author": "Yehuda Tiram atarimtr.co.il",
|
||||||
|
"license": "GPL-2.0-or-later",
|
||||||
|
"main": "build/index.js",
|
||||||
|
"scripts": {
|
||||||
|
"build": "SET NODE_OPTIONS=--openssl-legacy-provider && wp-scripts build",
|
||||||
|
"format": "SET NODE_OPTIONS=--openssl-legacy-provider && wp-scripts format",
|
||||||
|
"lint:css": "SET NODE_OPTIONS=--openssl-legacy-provider && wp-scripts lint-style",
|
||||||
|
"lint:js": "SET NODE_OPTIONS=--openssl-legacy-provider && wp-scripts lint-js",
|
||||||
|
"packages-update": "SET NODE_OPTIONS=--openssl-legacy-provider && wp-scripts packages-update",
|
||||||
|
"plugin-zip": "SET NODE_OPTIONS=--openssl-legacy-provider && wp-scripts plugin-zip",
|
||||||
|
"start": "SET NODE_OPTIONS=--openssl-legacy-provider && wp-scripts start"
|
||||||
|
},
|
||||||
|
"devDependencies": {
|
||||||
|
"@wordpress/scripts": "^22.5.0"
|
||||||
|
}
|
||||||
|
}
|
||||||
310
spec/fixtures/dynamic_finders/plugin_version/b-slider/translation_file/languages/sliders-en_US.po
vendored
Normal file
310
spec/fixtures/dynamic_finders/plugin_version/b-slider/translation_file/languages/sliders-en_US.po
vendored
Normal file
@@ -0,0 +1,310 @@
|
|||||||
|
# Copyright (C) 2022 bPlugins LLC
|
||||||
|
# This file is distributed under the GPLv3.
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: B Slider 1.0.3\n"
|
||||||
|
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/b-slider\n"
|
||||||
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"POT-Creation-Date: 2022-10-06T05:42:41+02:00\n"
|
||||||
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
|
"X-Generator: WP-CLI 2.6.0\n"
|
||||||
|
"X-Domain: slider\n"
|
||||||
|
|
||||||
|
#. Plugin Name of the plugin
|
||||||
|
msgid "B Slider"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Description of the plugin
|
||||||
|
msgid "Simple slider with bootstrap."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Author of the plugin
|
||||||
|
msgid "bPlugins LLC"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Author URI of the plugin
|
||||||
|
msgid "http://bplugins.com"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dist/editor.js:1
|
||||||
|
#: dist/editor.js:15
|
||||||
|
msgid "General"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dist/editor.js:1
|
||||||
|
#: dist/editor.js:20
|
||||||
|
#: dist/editor.js:5941
|
||||||
|
msgid "Style"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dist/editor.js:1
|
||||||
|
#: dist/editor.js:26
|
||||||
|
msgid "red"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dist/editor.js:1
|
||||||
|
#: dist/editor.js:27
|
||||||
|
msgid "white"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dist/editor.js:1
|
||||||
|
#: dist/editor.js:28
|
||||||
|
msgid "blue"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dist/editor.js:1
|
||||||
|
#: dist/editor.js:32
|
||||||
|
msgid "400"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dist/editor.js:1
|
||||||
|
#: dist/editor.js:33
|
||||||
|
msgid "500"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dist/editor.js:1
|
||||||
|
#: dist/editor.js:34
|
||||||
|
msgid "600"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dist/editor.js:1
|
||||||
|
#: dist/editor.js:35
|
||||||
|
msgid "700"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dist/editor.js:1
|
||||||
|
#: dist/editor.js:36
|
||||||
|
msgid "800"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dist/editor.js:1
|
||||||
|
#: dist/editor.js:37
|
||||||
|
msgid "900"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dist/editor.js:1
|
||||||
|
#: dist/editor.js:43
|
||||||
|
msgid "Small"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dist/editor.js:1
|
||||||
|
#: dist/editor.js:48
|
||||||
|
msgid "Medium"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dist/editor.js:1
|
||||||
|
#: dist/editor.js:53
|
||||||
|
msgid "Big"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dist/editor.js:1
|
||||||
|
#: dist/editor.js:60
|
||||||
|
#: dist/editor.js:5913
|
||||||
|
#: dist/editor.js:5936
|
||||||
|
msgid "Show"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dist/editor.js:1
|
||||||
|
#: dist/editor.js:61
|
||||||
|
msgid "Hide"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dist/editor.js:1
|
||||||
|
#: dist/editor.js:66
|
||||||
|
msgid "Default"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dist/editor.js:1
|
||||||
|
#: dist/editor.js:67
|
||||||
|
msgid "Dot"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dist/editor.js:1
|
||||||
|
#: dist/editor.js:5758
|
||||||
|
msgid "Help"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dist/editor.js:1
|
||||||
|
#: dist/editor.js:5760
|
||||||
|
msgid "Read Documentation"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dist/editor.js:1
|
||||||
|
#: dist/editor.js:5765
|
||||||
|
msgid "Would you please rate us?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dist/editor.js:1
|
||||||
|
#: dist/editor.js:5766
|
||||||
|
msgid "We are new and we need your help to grow!🙏"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dist/editor.js:1
|
||||||
|
#: dist/editor.js:5770
|
||||||
|
msgid "Slides"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dist/editor.js:1
|
||||||
|
#: dist/editor.js:5777
|
||||||
|
msgid "Slide Image:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dist/editor.js:1
|
||||||
|
#: dist/editor.js:5778
|
||||||
|
msgid "Enter Image URL"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dist/editor.js:1
|
||||||
|
#: dist/editor.js:5781
|
||||||
|
msgid "Title"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dist/editor.js:1
|
||||||
|
#: dist/editor.js:5781
|
||||||
|
#: dist/editor.js:5784
|
||||||
|
msgid "top"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dist/editor.js:1
|
||||||
|
#: dist/editor.js:5781
|
||||||
|
msgid "Enter Title"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dist/editor.js:1
|
||||||
|
#: dist/editor.js:5784
|
||||||
|
msgid "Description"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dist/editor.js:1
|
||||||
|
#: dist/editor.js:5784
|
||||||
|
msgid "Enter desc"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dist/editor.js:1
|
||||||
|
#: dist/editor.js:5788
|
||||||
|
msgid "Remove"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dist/editor.js:1
|
||||||
|
#: dist/editor.js:5790
|
||||||
|
msgid "Duplicate"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dist/editor.js:1
|
||||||
|
#: dist/editor.js:5798
|
||||||
|
msgid "Add New Slide"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dist/editor.js:1
|
||||||
|
#: dist/editor.js:5805
|
||||||
|
msgid "Animation:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dist/editor.js:1
|
||||||
|
#: dist/editor.js:5833
|
||||||
|
msgid "Slider Height"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dist/editor.js:1
|
||||||
|
#: dist/editor.js:5851
|
||||||
|
msgid "Content Position"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dist/editor.js:1
|
||||||
|
#: dist/editor.js:5852
|
||||||
|
msgid "Content Position:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dist/editor.js:1
|
||||||
|
#: dist/editor.js:5866
|
||||||
|
msgid "Slider Overly Color"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dist/editor.js:1
|
||||||
|
#: dist/editor.js:5868
|
||||||
|
msgid "Overly Color"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dist/editor.js:1
|
||||||
|
#: dist/editor.js:5876
|
||||||
|
msgid "Title Style"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dist/editor.js:1
|
||||||
|
#: dist/editor.js:5879
|
||||||
|
#: dist/editor.js:5897
|
||||||
|
#: dist/editor.js:5921
|
||||||
|
#: dist/editor.js:5963
|
||||||
|
msgid "Color"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dist/editor.js:1
|
||||||
|
#: dist/editor.js:5886
|
||||||
|
msgid "Padding"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dist/editor.js:1
|
||||||
|
#: dist/editor.js:5890
|
||||||
|
#: dist/editor.js:5903
|
||||||
|
msgid "Typography:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dist/editor.js:1
|
||||||
|
#: dist/editor.js:5895
|
||||||
|
msgid "Description Style"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dist/editor.js:1
|
||||||
|
#: dist/editor.js:5906
|
||||||
|
msgid "Margin"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dist/editor.js:1
|
||||||
|
#: dist/editor.js:5911
|
||||||
|
msgid "Arrow Style"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dist/editor.js:1
|
||||||
|
#: dist/editor.js:5926
|
||||||
|
#: dist/editor.js:5956
|
||||||
|
msgid "Size"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dist/editor.js:1
|
||||||
|
#: dist/editor.js:5934
|
||||||
|
msgid "Indicators Style"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dist/editor.js:1
|
||||||
|
#: dist/editor.js:5970
|
||||||
|
msgid "Active Color"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: block.json
|
||||||
|
msgctxt "block title"
|
||||||
|
msgid "B Slider"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: block.json
|
||||||
|
msgctxt "block description"
|
||||||
|
msgid "Display Amazing Gutenberg Responsive Image And Content Slider"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: block.json
|
||||||
|
msgctxt "block keyword"
|
||||||
|
msgid "slider"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: block.json
|
||||||
|
msgctxt "block keyword"
|
||||||
|
msgid "bootstrap"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: block.json
|
||||||
|
msgctxt "block keyword"
|
||||||
|
msgid "carousel"
|
||||||
|
msgstr ""
|
||||||
414
spec/fixtures/dynamic_finders/plugin_version/b-tiktok-feed/translation_file/languages/tiktok.pot
vendored
Normal file
414
spec/fixtures/dynamic_finders/plugin_version/b-tiktok-feed/translation_file/languages/tiktok.pot
vendored
Normal file
@@ -0,0 +1,414 @@
|
|||||||
|
# Copyright (C) 2022 bPlugins LLC
|
||||||
|
# This file is distributed under the GPLv3.
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: B Tiktok Feed 1.0.2\n"
|
||||||
|
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/player-for-tiktok\n"
|
||||||
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"POT-Creation-Date: 2022-12-20T17:28:05+01:00\n"
|
||||||
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
|
"X-Generator: WP-CLI 2.6.0\n"
|
||||||
|
"X-Domain: tiktok\n"
|
||||||
|
|
||||||
|
#. Plugin Name of the plugin
|
||||||
|
msgid "B Tiktok Feed"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Description of the plugin
|
||||||
|
msgid "Embed Tiktok feed in your website"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Author of the plugin
|
||||||
|
msgid "bPlugins LLC"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Author URI of the plugin
|
||||||
|
msgid "http://bplugins.com"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: bblocksdk/components/BControlPro.js:6
|
||||||
|
#: bblocksdk/components/BTypographyPro.js:7
|
||||||
|
#: dist/editor.js:1
|
||||||
|
#: dist/editor.js:5932
|
||||||
|
#: dist/editor.js:5954
|
||||||
|
msgid "Pro"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dist/editor.js:1
|
||||||
|
#: dist/editor.js:5803
|
||||||
|
msgid "Pro Feature"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dist/editor.js:1
|
||||||
|
#: dist/editor.js:5806
|
||||||
|
msgid "Unlock Tiktok Player Feature"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dist/editor.js:1
|
||||||
|
#: dist/editor.js:5808
|
||||||
|
msgid "Upgrade to Pro"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dist/editor.js:1
|
||||||
|
#: dist/editor.js:5896
|
||||||
|
msgid "Left"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dist/editor.js:1
|
||||||
|
#: dist/editor.js:5897
|
||||||
|
msgid "Center"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dist/editor.js:1
|
||||||
|
#: dist/editor.js:5898
|
||||||
|
msgid "Right"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dist/editor.js:1
|
||||||
|
#: dist/editor.js:5902
|
||||||
|
msgid "Default"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dist/editor.js:1
|
||||||
|
#: dist/editor.js:5903
|
||||||
|
msgid "Card"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dist/editor.js:1
|
||||||
|
#: dist/editor.js:5904
|
||||||
|
msgid "Compact"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dist/editor.js:1
|
||||||
|
#: dist/editor.js:5908
|
||||||
|
msgid "Vertical"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dist/editor.js:1
|
||||||
|
#: dist/editor.js:5909
|
||||||
|
msgid "Horizontal"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dist/editor.js:1
|
||||||
|
#: dist/editor.js:5913
|
||||||
|
msgid "General"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dist/editor.js:1
|
||||||
|
#: dist/editor.js:5914
|
||||||
|
msgid "Style"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dist/editor.js:1
|
||||||
|
#: dist/editor.js:6059
|
||||||
|
msgid "Remove Authorize"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dist/editor.js:1
|
||||||
|
#: dist/editor.js:6060
|
||||||
|
msgid "Clear Cache"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dist/editor.js:1
|
||||||
|
#: dist/editor.js:6068
|
||||||
|
msgid "Add TikTok Account"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dist/editor.js:1
|
||||||
|
#: dist/editor.js:6073
|
||||||
|
msgid "Help"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dist/editor.js:1
|
||||||
|
#: dist/editor.js:6075
|
||||||
|
msgid "Read Documentation"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dist/editor.js:1
|
||||||
|
#: dist/editor.js:6080
|
||||||
|
msgid "Would you please rate us?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dist/editor.js:1
|
||||||
|
#: dist/editor.js:6081
|
||||||
|
msgid "We are new and we need your help to grow!🙏"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dist/editor.js:1
|
||||||
|
#: dist/editor.js:6086
|
||||||
|
#: dist/editor.js:6088
|
||||||
|
#: dist/editor.js:6207
|
||||||
|
msgid "Profile"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dist/editor.js:1
|
||||||
|
#: dist/editor.js:6092
|
||||||
|
msgid "Profile Image"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dist/editor.js:1
|
||||||
|
#: dist/editor.js:6095
|
||||||
|
msgid "Display Name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dist/editor.js:1
|
||||||
|
#: dist/editor.js:6098
|
||||||
|
msgid "Share button"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dist/editor.js:1
|
||||||
|
#: dist/script.js:33
|
||||||
|
#: dist/editor.js:6100
|
||||||
|
#: dist/editor.js:6546
|
||||||
|
#: dist/editor.js:6589
|
||||||
|
#: dist/editor.js:6641
|
||||||
|
#: dist/script.js:922
|
||||||
|
#: dist/script.js:965
|
||||||
|
#: dist/script.js:1017
|
||||||
|
msgid "Following"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dist/editor.js:1
|
||||||
|
#: dist/script.js:33
|
||||||
|
#: dist/editor.js:6103
|
||||||
|
#: dist/editor.js:6549
|
||||||
|
#: dist/editor.js:6592
|
||||||
|
#: dist/editor.js:6644
|
||||||
|
#: dist/script.js:925
|
||||||
|
#: dist/script.js:968
|
||||||
|
#: dist/script.js:1020
|
||||||
|
msgid "Followers"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dist/editor.js:1
|
||||||
|
#: dist/editor.js:6106
|
||||||
|
msgid "Total Like"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dist/editor.js:1
|
||||||
|
#: dist/editor.js:6109
|
||||||
|
#: dist/editor.js:6343
|
||||||
|
msgid "Biography"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dist/editor.js:1
|
||||||
|
#: dist/editor.js:6114
|
||||||
|
msgid "Content/Videos"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dist/editor.js:1
|
||||||
|
#: dist/editor.js:6115
|
||||||
|
msgid "Videos"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dist/editor.js:1
|
||||||
|
#: dist/editor.js:6125
|
||||||
|
#: dist/editor.js:6210
|
||||||
|
msgid "Layout"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dist/editor.js:1
|
||||||
|
#: dist/editor.js:6127
|
||||||
|
msgid "Feed Per Page"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dist/editor.js:1
|
||||||
|
#: dist/editor.js:6135
|
||||||
|
msgid "Column Gap:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dist/editor.js:1
|
||||||
|
#: dist/editor.js:6138
|
||||||
|
msgid "Row Gap:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dist/editor.js:1
|
||||||
|
#: dist/editor.js:6142
|
||||||
|
msgid "Columns:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dist/editor.js:1
|
||||||
|
#: dist/editor.js:6148
|
||||||
|
msgid "Video Overly"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dist/editor.js:1
|
||||||
|
#: dist/editor.js:6149
|
||||||
|
msgid "Show Like "
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dist/editor.js:1
|
||||||
|
#: dist/editor.js:6154
|
||||||
|
msgid "Show Comment "
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dist/editor.js:1
|
||||||
|
#: dist/editor.js:6159
|
||||||
|
msgid "Show View "
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dist/editor.js:1
|
||||||
|
#: dist/editor.js:6167
|
||||||
|
msgid "Cache Time"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dist/editor.js:1
|
||||||
|
#: dist/editor.js:6171
|
||||||
|
msgid "Profile:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dist/editor.js:1
|
||||||
|
#: dist/editor.js:6187
|
||||||
|
msgid "Video:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dist/editor.js:1
|
||||||
|
#: dist/editor.js:6253
|
||||||
|
msgid "Alignment"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dist/editor.js:1
|
||||||
|
#: dist/editor.js:6275
|
||||||
|
msgid "Background Color"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dist/editor.js:1
|
||||||
|
#: dist/editor.js:6278
|
||||||
|
#: dist/editor.js:6306
|
||||||
|
#: dist/editor.js:6344
|
||||||
|
#: dist/editor.js:6367
|
||||||
|
msgid "Color"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dist/editor.js:1
|
||||||
|
#: dist/editor.js:6291
|
||||||
|
#: dist/editor.js:6318
|
||||||
|
msgid "Padding"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dist/editor.js:1
|
||||||
|
#: dist/editor.js:6294
|
||||||
|
msgid "Compact Profile"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dist/editor.js:1
|
||||||
|
#: dist/editor.js:6296
|
||||||
|
msgid "Top Background Color:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dist/editor.js:1
|
||||||
|
#: dist/editor.js:6298
|
||||||
|
msgid "Bottom Background Color:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dist/editor.js:1
|
||||||
|
#: dist/editor.js:6302
|
||||||
|
msgid "Name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dist/editor.js:1
|
||||||
|
#: dist/editor.js:6311
|
||||||
|
msgid "Share Button"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dist/editor.js:1
|
||||||
|
#: dist/editor.js:6313
|
||||||
|
#: dist/editor.js:6357
|
||||||
|
msgid "Text"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dist/editor.js:1
|
||||||
|
#: dist/editor.js:6320
|
||||||
|
#: dist/editor.js:6361
|
||||||
|
msgid "Colors"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dist/editor.js:1
|
||||||
|
#: dist/editor.js:6322
|
||||||
|
#: dist/editor.js:6363
|
||||||
|
msgid "Hover Colors"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dist/editor.js:1
|
||||||
|
#: dist/editor.js:6327
|
||||||
|
msgid "Info Count"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dist/editor.js:1
|
||||||
|
#: dist/editor.js:6329
|
||||||
|
msgid "Count Color"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dist/editor.js:1
|
||||||
|
#: dist/editor.js:6331
|
||||||
|
msgid "Text Color"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dist/editor.js:1
|
||||||
|
#: dist/editor.js:6336
|
||||||
|
msgid "Border Color"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dist/editor.js:1
|
||||||
|
#: dist/editor.js:6355
|
||||||
|
msgid "Load More"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dist/editor.js:1
|
||||||
|
#: dist/editor.js:6366
|
||||||
|
msgid "Overly Icon Color"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dist/editor.js:1
|
||||||
|
#: dist/script.js:33
|
||||||
|
#: dist/editor.js:6552
|
||||||
|
#: dist/editor.js:6595
|
||||||
|
#: dist/editor.js:6647
|
||||||
|
#: dist/script.js:928
|
||||||
|
#: dist/script.js:971
|
||||||
|
#: dist/script.js:1023
|
||||||
|
msgid "Likes"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dist/editor.js:1
|
||||||
|
#: dist/script.js:33
|
||||||
|
#: dist/editor.js:6762
|
||||||
|
#: dist/script.js:1155
|
||||||
|
msgid "Videos Not Found"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dist/editor.js:1
|
||||||
|
#: dist/script.js:33
|
||||||
|
#: dist/editor.js:6747
|
||||||
|
#: dist/script.js:1140
|
||||||
|
msgid "Authorization Required"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: block.json
|
||||||
|
msgctxt "block title"
|
||||||
|
msgid "B TikTok Feed"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: block.json
|
||||||
|
msgctxt "block description"
|
||||||
|
msgid "Embed Tiktok feed in your website"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: block.json
|
||||||
|
msgctxt "block keyword"
|
||||||
|
msgid "tiktok"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: block.json
|
||||||
|
msgctxt "block keyword"
|
||||||
|
msgid "feed"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: block.json
|
||||||
|
msgctxt "block keyword"
|
||||||
|
msgid "tiktok gallery"
|
||||||
|
msgstr ""
|
||||||
71
spec/fixtures/dynamic_finders/plugin_version/better-comments/change_log/changelog.txt
vendored
Normal file
71
spec/fixtures/dynamic_finders/plugin_version/better-comments/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,71 @@
|
|||||||
|
= 1.4.1 (2022-04-21) =
|
||||||
|
* Add - add ALT text to gravatar images to solve SEO issues
|
||||||
|
* Enhancement - better replytocom handling
|
||||||
|
* Enhancement - code refactoring
|
||||||
|
* Enhancement - rename sections for consistency
|
||||||
|
* Fix - ensure $screen is defined when viewing the backend
|
||||||
|
|
||||||
|
= 1.4 (2022-03-03) =
|
||||||
|
* Fix - optimize quicktags placement for Quick Reply on the backend's Comments page
|
||||||
|
* Fix - ensure quicktags bar is displayed inline for all themes
|
||||||
|
* Fix - local avatars now display correctly on the frontend, with a fallback on a custom default avatar, then gravatar as last resort
|
||||||
|
* Fix - local avatars now display correctly in the backend: dashboard, edit comments pages
|
||||||
|
* Fix - local avatars no longer take over other avatars on Settings > Discussion
|
||||||
|
* Fix - local avatars (even on localhost!) now display correctly on Settings > Discussion
|
||||||
|
* Add - add padding setting to reply links
|
||||||
|
* Add - add setting to remove text-decoration from reply links
|
||||||
|
* Enhancement - only apply styles for comment form if comments are enabled and the form shown
|
||||||
|
* Enhancement - clarify the options names for the comment policy option
|
||||||
|
* Enhancement - better custom quicktags scenario
|
||||||
|
* Enhancement - better replytocom handling
|
||||||
|
* Enhancement - better styles handling
|
||||||
|
* Enhancement - better options handling
|
||||||
|
* Update - Freemius SDK
|
||||||
|
* Update - CF SDK
|
||||||
|
|
||||||
|
= 1.3 (2020-12-24) =
|
||||||
|
|
||||||
|
* New - introduce new sliders style
|
||||||
|
* New - add better looking icons to the admin page, with dual colors
|
||||||
|
* New - add new admin menu icon
|
||||||
|
* New - translations and POT file
|
||||||
|
* Enhancement - move menu underneath Comments menu for easy access and consistency
|
||||||
|
* Enhancement - ensure avatar shapes are only applied to the comments avatars
|
||||||
|
* Enhancement - enqueue and tie inline styles to the (child) theme
|
||||||
|
* Enhancement - add further translatable strings
|
||||||
|
* Performance - replace the font file with standalone SVG icons (this shaved 3.7 MB off the plugin)
|
||||||
|
* Fix - display uploaded avatar as default if it is set
|
||||||
|
* Update - CF SDK
|
||||||
|
|
||||||
|
= 1.2 (2020-11-05) =
|
||||||
|
|
||||||
|
* New - add new plugin icon, derived from the banner
|
||||||
|
* New - add new tab colors
|
||||||
|
* Fix - fix backend quicktags display on the comments and dashboard pages
|
||||||
|
* Enhancement - ensure border-radius is not set when an avatar shape is set
|
||||||
|
* Enhancement - only output avatar code if a shape has been set
|
||||||
|
* Enhancement - add missing default colors for quicktags
|
||||||
|
* Enhancement - improve frontend loading times by 40%
|
||||||
|
* Enhancement - rename functions for consistency
|
||||||
|
* Enhancement - refactor CSS
|
||||||
|
* Update - Freemius SDK
|
||||||
|
* Update - CF SDK
|
||||||
|
|
||||||
|
= 1.1 (2020-10-12) =
|
||||||
|
|
||||||
|
* New - add default colors and palettes for color controls
|
||||||
|
* New - set maximum and minimum comment length
|
||||||
|
* New - set reply title
|
||||||
|
* New - set submit button label
|
||||||
|
* New - add brand-new Avatars section
|
||||||
|
* New - add more shapes for avatars
|
||||||
|
* New - upload a sitewide default avatar
|
||||||
|
* Fix - fix static methods for comments oEmbeds
|
||||||
|
* Enhancement - reorganize Comments tab, add a new Avatars section
|
||||||
|
* Enhancement - display our icon in the WP Admin sidebar
|
||||||
|
* Enhancement - adjust readme.txt
|
||||||
|
* Enhancement - ensure emojis are not intercepted by WP emoji functions on our settings page
|
||||||
|
|
||||||
|
= 1.0 (2020-10-08) =
|
||||||
|
|
||||||
|
Initial release.
|
||||||
File diff suppressed because it is too large
Load Diff
54
spec/fixtures/dynamic_finders/plugin_version/block-catalog/change_log/CHANGELOG.md
vendored
Normal file
54
spec/fixtures/dynamic_finders/plugin_version/block-catalog/change_log/CHANGELOG.md
vendored
Normal file
@@ -0,0 +1,54 @@
|
|||||||
|
# Changelog
|
||||||
|
|
||||||
|
All notable changes to this project will be documented in this file, per [the Keep a Changelog standard](http://keepachangelog.com/).
|
||||||
|
|
||||||
|
## [Unreleased] - TBD
|
||||||
|
|
||||||
|
- todo
|
||||||
|
|
||||||
|
## [1.4.0] - 2022-12-03
|
||||||
|
|
||||||
|
- Improves Core Block Display Titles logic
|
||||||
|
- Fixes parent term for blocks registered without namespace
|
||||||
|
- Improve Reusable Block detection
|
||||||
|
- Add hooks to support nested variations
|
||||||
|
- Adds unit tests
|
||||||
|
|
||||||
|
## [1.3.2] - 2022-11-25
|
||||||
|
|
||||||
|
- Updates readme.txt
|
||||||
|
|
||||||
|
## [1.3.1] - 2022-11-25
|
||||||
|
|
||||||
|
- Minor docs updates
|
||||||
|
|
||||||
|
## [1.3.0] - 2022-11-25
|
||||||
|
|
||||||
|
- Adds support for hierarchical classification
|
||||||
|
- Improves WP CLI find command
|
||||||
|
- Adds inline filter hook documentation
|
||||||
|
- Updates screenshots
|
||||||
|
|
||||||
|
## [1.2.2] - 2022-11-25
|
||||||
|
|
||||||
|
- Updates Documentation
|
||||||
|
|
||||||
|
## [1.2.1] - 2022-11-25
|
||||||
|
|
||||||
|
- Improves block title detection when default title is missing.
|
||||||
|
- Initial svn release
|
||||||
|
|
||||||
|
## [1.2.0] - 2022-11-24
|
||||||
|
|
||||||
|
- Improves filter output with wp_kses.
|
||||||
|
|
||||||
|
## [1.1.0] - 2022-11-23
|
||||||
|
|
||||||
|
- Improves batch indexing for larger sites.
|
||||||
|
- Refactor delete index to use batch mode.
|
||||||
|
- Improves error handling during indexing & deleting via WP-Admin.
|
||||||
|
|
||||||
|
## [1.0.1] - 2022-11-21
|
||||||
|
|
||||||
|
- Initial release
|
||||||
|
|
||||||
@@ -0,0 +1,31 @@
|
|||||||
|
# Copyright (C) 2022 Phi Phan
|
||||||
|
# This file is distributed under the GPL-2.0-or-later.
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Block Enhancements 1.0.6\n"
|
||||||
|
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/block-enhancements\n"
|
||||||
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"POT-Creation-Date: 2022-04-27T12:57:41+00:00\n"
|
||||||
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
|
"X-Generator: WP-CLI 2.5.0\n"
|
||||||
|
"X-Domain: block-enhancements\n"
|
||||||
|
|
||||||
|
#. Plugin Name of the plugin
|
||||||
|
msgid "Block Enhancements"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Description of the plugin
|
||||||
|
msgid "Make core blocks more useful."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Author of the plugin
|
||||||
|
msgid "Phi Phan"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Author URI of the plugin
|
||||||
|
msgid "https://boldblocks.net"
|
||||||
|
msgstr ""
|
||||||
77
spec/fixtures/dynamic_finders/plugin_version/blockify/composer_file/package.json
vendored
Normal file
77
spec/fixtures/dynamic_finders/plugin_version/blockify/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,77 @@
|
|||||||
|
{
|
||||||
|
"name": "blockify-plugin",
|
||||||
|
"version": "0.0.3",
|
||||||
|
"description": "Blockify plugin.",
|
||||||
|
"author": "Blockify",
|
||||||
|
"license": "GPL-2.0-or-later",
|
||||||
|
"main": "src/index.tsx",
|
||||||
|
"scripts": {
|
||||||
|
"format": "wp-scripts format",
|
||||||
|
"lint:css": "wp-scripts lint-style",
|
||||||
|
"lint:js": "wp-scripts lint-js",
|
||||||
|
"packages-update": "wp-scripts packages-update",
|
||||||
|
"start": "wp-scripts start --hot",
|
||||||
|
"rename:tsx": "./bin/build-tsx.js",
|
||||||
|
"oslllo-svg-fixer": "node node_modules/oslllo-svg-fixer/src/cli.js -s assets/svg/feather -d assets/svg/feather-fix",
|
||||||
|
"clean": "npm run rename:tsx",
|
||||||
|
"build": "wp-scripts build",
|
||||||
|
"build:public": "wp-scripts build wp-scripts build --webpack-src-dir=bin --config=webpack.public.config.js --output-path=build/public && npm run rename:tsx",
|
||||||
|
"build:zip": "wp-scripts plugin-zip",
|
||||||
|
"tsx": "wp-scripts build assets/js/index.tsx --webpack-src-dir=assets/js --output-path=assets/js/min"
|
||||||
|
},
|
||||||
|
"devDependencies": {
|
||||||
|
"@fortawesome/fontawesome-svg-core": "^6.1.1",
|
||||||
|
"@fortawesome/free-regular-svg-icons": "^6.1.1",
|
||||||
|
"@glidejs/glide": "^3.5.2",
|
||||||
|
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.7",
|
||||||
|
"@react-google-maps/api": "^2.10.3",
|
||||||
|
"@srexi/purecounterjs": "^1.5.0",
|
||||||
|
"@types/jquery": "^3.5.14",
|
||||||
|
"@wordpress/api-fetch": "^6.3.0",
|
||||||
|
"@wordpress/block-editor": "^8.0.13",
|
||||||
|
"@wordpress/blocks": "^11.1.5",
|
||||||
|
"@wordpress/components": "^19.2.0",
|
||||||
|
"@wordpress/compose": "^5.0.7",
|
||||||
|
"@wordpress/data": "^6.3.0",
|
||||||
|
"@wordpress/dependency-extraction-webpack-plugin": "^3.6.0",
|
||||||
|
"@wordpress/dom-ready": "^3.6.0",
|
||||||
|
"@wordpress/edit-post": "^6.3.0",
|
||||||
|
"@wordpress/editor": "^12.5.1",
|
||||||
|
"@wordpress/element": "^4.0.4",
|
||||||
|
"@wordpress/hooks": "^3.6.0",
|
||||||
|
"@wordpress/i18n": "^4.2.4",
|
||||||
|
"@wordpress/icons": "^6.1.1",
|
||||||
|
"@wordpress/keycodes": "^3.2.4",
|
||||||
|
"@wordpress/plugins": "^4.4.0",
|
||||||
|
"@wordpress/primitives": "^3.9.0",
|
||||||
|
"@wordpress/scripts": "^21.0.1",
|
||||||
|
"@wordpress/server-side-render": "^3.10.0",
|
||||||
|
"classnames": "^2.3.1",
|
||||||
|
"clean-webpack-plugin": "^4.0.0",
|
||||||
|
"copy-webpack-plugin": "^10.2.4",
|
||||||
|
"filemanager-webpack-plugin": "^7.0.0",
|
||||||
|
"fs": "^0.0.1-security",
|
||||||
|
"get-scrollbar-width": "^1.0.5",
|
||||||
|
"glob": "^8.0.3",
|
||||||
|
"google-map-react": "^2.1.10",
|
||||||
|
"html-react-parser": "^1.4.5",
|
||||||
|
"jquery": "github:jquery/jquery",
|
||||||
|
"json-to-css": "^0.1.0",
|
||||||
|
"lodash": "^4.17.21",
|
||||||
|
"mini-css-extract-plugin": "^2.6.0",
|
||||||
|
"node-fetch": "^3.2.3",
|
||||||
|
"node-sass-glob-importer": "^5.3.2",
|
||||||
|
"number-to-words": "^1.2.4",
|
||||||
|
"oslllo-svg-fixer": "^2.1.1",
|
||||||
|
"postcss-preset-env": "^7.4.3",
|
||||||
|
"react-google-autocomplete": "^2.6.1",
|
||||||
|
"remove-files-webpack-plugin": "^1.5.0",
|
||||||
|
"run-for-every-file": "^1.1.0",
|
||||||
|
"style-object-to-css-string": "^1.0.1",
|
||||||
|
"svgo": "^2.8.0",
|
||||||
|
"uglifyjs-folder": "^3.1.2",
|
||||||
|
"webpack-bundle-analyzer": "^4.5.0",
|
||||||
|
"webpack-remove-empty-scripts": "^0.7.2",
|
||||||
|
"wp-pot": "^1.10.2"
|
||||||
|
}
|
||||||
|
}
|
||||||
923
spec/fixtures/dynamic_finders/plugin_version/blockify/translation_file/assets/lang/blockify.pot
vendored
Normal file
923
spec/fixtures/dynamic_finders/plugin_version/blockify/translation_file/assets/lang/blockify.pot
vendored
Normal file
@@ -0,0 +1,923 @@
|
|||||||
|
# Copyright (C) 2022 Blockify
|
||||||
|
# This file is distributed under the GPLv2-or-Later.
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Blockify 0.3.0\n"
|
||||||
|
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/blockify\n"
|
||||||
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"POT-Creation-Date: 2022-09-03T14:11:40+00:00\n"
|
||||||
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
|
"X-Generator: WP-CLI 2.6.0\n"
|
||||||
|
"X-Domain: blockify\n"
|
||||||
|
|
||||||
|
#. Plugin Name of the plugin
|
||||||
|
#. Author of the plugin
|
||||||
|
msgid "Blockify"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Plugin URI of the plugin
|
||||||
|
msgid "https://blockifywp.com/"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Description of the plugin
|
||||||
|
msgid "Lightweight block library for full site editing themes."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Author URI of the plugin
|
||||||
|
msgid "https://blockifywp.com/about/"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/blocks.php:49
|
||||||
|
#: build/blocks/form/index.js:1
|
||||||
|
msgid "Form"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/blocks/breadcrumbs.php:64
|
||||||
|
msgid "Home"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/blocks/form.php:62
|
||||||
|
msgid "Thank you for subscribing!"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/blocks/form.php:146
|
||||||
|
msgid "Invalid nonce."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/blocks/form.php:206
|
||||||
|
msgid "User with email already exists."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/patterns.php:38
|
||||||
|
msgctxt "Block Pattern General Name"
|
||||||
|
msgid "Block Patterns"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/patterns.php:39
|
||||||
|
msgctxt "Block Pattern Singular Name"
|
||||||
|
msgid "Block Pattern"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/patterns.php:40
|
||||||
|
msgid "Block Patterns"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/patterns.php:41
|
||||||
|
#: includes/patterns.php:68
|
||||||
|
msgid "Block Pattern"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/patterns.php:42
|
||||||
|
msgid "Item Archives"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/patterns.php:43
|
||||||
|
msgid "Item Attributes"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/patterns.php:44
|
||||||
|
#: includes/patterns.php:107
|
||||||
|
msgid "Parent Item:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/patterns.php:45
|
||||||
|
#: includes/patterns.php:105
|
||||||
|
msgid "All Items"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/patterns.php:46
|
||||||
|
#: includes/patterns.php:109
|
||||||
|
msgid "Add New Item"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/patterns.php:47
|
||||||
|
msgid "Add New"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/patterns.php:48
|
||||||
|
msgid "New Item"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/patterns.php:49
|
||||||
|
#: includes/patterns.php:110
|
||||||
|
msgid "Edit Item"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/patterns.php:50
|
||||||
|
#: includes/patterns.php:111
|
||||||
|
msgid "Update Item"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/patterns.php:51
|
||||||
|
#: includes/patterns.php:112
|
||||||
|
msgid "View Item"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/patterns.php:52
|
||||||
|
msgid "View Items"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/patterns.php:53
|
||||||
|
msgid "Search Item"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/patterns.php:54
|
||||||
|
msgid "Not found"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/patterns.php:55
|
||||||
|
msgid "Not found in Trash"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/patterns.php:56
|
||||||
|
msgid "Featured Image"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/patterns.php:57
|
||||||
|
msgid "Set featured image"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/patterns.php:58
|
||||||
|
msgid "Remove featured image"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/patterns.php:59
|
||||||
|
msgid "Use as featured image"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/patterns.php:60
|
||||||
|
msgid "Place into item"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/patterns.php:61
|
||||||
|
msgid "Uploaded to this item"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/patterns.php:62
|
||||||
|
#: includes/patterns.php:120
|
||||||
|
msgid "Items list"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/patterns.php:63
|
||||||
|
#: includes/patterns.php:121
|
||||||
|
msgid "Items list navigation"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/patterns.php:64
|
||||||
|
msgid "Filter items list"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/patterns.php:69
|
||||||
|
msgid "Block Pattern Description"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/patterns.php:102
|
||||||
|
msgctxt "Pattern Category General Name"
|
||||||
|
msgid "Pattern Category"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/patterns.php:103
|
||||||
|
msgctxt "Pattern Category Singular Name"
|
||||||
|
msgid "Pattern Category"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/patterns.php:104
|
||||||
|
msgid "Pattern Category"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/patterns.php:106
|
||||||
|
msgid "Parent Item"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/patterns.php:108
|
||||||
|
msgid "New Item Name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/patterns.php:113
|
||||||
|
msgid "Separate items with commas"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/patterns.php:114
|
||||||
|
msgid "Add or remove items"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/patterns.php:115
|
||||||
|
msgid "Choose from the most used"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/patterns.php:116
|
||||||
|
msgid "Popular Items"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/patterns.php:117
|
||||||
|
msgid "Search Items"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/patterns.php:118
|
||||||
|
msgid "Not Found"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/patterns.php:119
|
||||||
|
msgid "No items"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/patterns.php:148
|
||||||
|
#: includes/patterns.php:149
|
||||||
|
msgid "Patterns"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/patterns.php:289
|
||||||
|
msgid "Preview"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/patterns.php:376
|
||||||
|
msgid "Dark "
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/accordion/index.js:1
|
||||||
|
msgid "Closed"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/accordion/index.js:1
|
||||||
|
msgid "Open"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/accordion/index.js:1
|
||||||
|
msgid "Accordion item"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/accordion/index.js:1
|
||||||
|
msgid "Item title"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/breadcrumbs/index.js:1
|
||||||
|
msgid "Home / Page"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/counter/index.js:1
|
||||||
|
msgid "Counter Settings"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/counter/index.js:1
|
||||||
|
msgid "Start"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/counter/index.js:1
|
||||||
|
msgid "End"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/counter/index.js:1
|
||||||
|
msgid "Duration (seconds)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/counter/index.js:1
|
||||||
|
msgid "Delay (seconds)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/counter/index.js:1
|
||||||
|
msgid "HTML Tag"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/counter/index.js:1
|
||||||
|
msgid "Suffix"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/form/index.js:1
|
||||||
|
msgid "Custom"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/form/index.js:1
|
||||||
|
msgid "Displays a custom text input field."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/form/index.js:1
|
||||||
|
msgid "Placeholder"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/form/index.js:1
|
||||||
|
msgid "First name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/form/index.js:1
|
||||||
|
msgid "Displays a first name input field."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/form/index.js:1
|
||||||
|
msgid "Last name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/form/index.js:1
|
||||||
|
msgid "Displays a last name input field."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/form/index.js:1
|
||||||
|
msgid "Email"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/form/index.js:1
|
||||||
|
msgid "Displays an email input field."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/form/index.js:1
|
||||||
|
msgid "Email address"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/form/index.js:1
|
||||||
|
msgid "Newsletter"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/form/index.js:1
|
||||||
|
msgid "Sign up"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/form/index.js:1
|
||||||
|
msgid "URL"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/form/index.js:1
|
||||||
|
msgid "Displays a website URL input field."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/form/index.js:1
|
||||||
|
msgid "https://example.com/"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/form/index.js:1
|
||||||
|
msgid "Website"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/form/index.js:1
|
||||||
|
msgid "Link"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/form/index.js:1
|
||||||
|
msgid "Phone"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/form/index.js:1
|
||||||
|
msgid "Displays a phone number input field."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/form/index.js:1
|
||||||
|
msgid "Telephone"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/form/index.js:1
|
||||||
|
msgid "Call"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/form/index.js:1
|
||||||
|
msgid "Mobile"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/form/index.js:1
|
||||||
|
msgid "Number"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/form/index.js:1
|
||||||
|
msgid "Displays a number input field."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/form/index.js:1
|
||||||
|
msgid "Password"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/form/index.js:1
|
||||||
|
msgid "Displays a password input field."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/form/index.js:1
|
||||||
|
msgid "User"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/form/index.js:1
|
||||||
|
msgid "Text Area"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/form/index.js:1
|
||||||
|
msgid "Displays a custom text area field."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/form/index.js:1
|
||||||
|
msgid "Leave a message"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/form/index.js:1
|
||||||
|
msgid "Input"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/form/index.js:1
|
||||||
|
msgid "Show Label"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/form/index.js:1
|
||||||
|
msgid " field"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/form/index.js:1
|
||||||
|
msgid "Show icon"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/form/index.js:1
|
||||||
|
msgid "Required"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/form/index.js:1
|
||||||
|
msgid "Checkbox"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/form/index.js:1
|
||||||
|
msgid "Displays a checkbox field"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/form/index.js:1
|
||||||
|
msgid "Terms"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/form/index.js:1
|
||||||
|
msgid "Tick"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/form/index.js:1
|
||||||
|
msgid "Agree"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/form/index.js:1
|
||||||
|
msgid "Agree to terms and conditions."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/form/index.js:1
|
||||||
|
#: build/blocks/google-map/index.js:1
|
||||||
|
msgid "Width"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/form/index.js:1
|
||||||
|
msgid "Auto"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/form/index.js:1
|
||||||
|
msgid "Submit"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/form/index.js:1
|
||||||
|
msgid "Displays a submit button"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/form/index.js:1
|
||||||
|
msgid "Button"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/form/index.js:1
|
||||||
|
msgid "Submit settings"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/form/index.js:1
|
||||||
|
msgid "Button width"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/form/index.js:1
|
||||||
|
msgid "Enable reCAPTCHA v3"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/form/index.js:1
|
||||||
|
#: build/blocks/google-map/index.js:1
|
||||||
|
msgid "API Key"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/form/index.js:1
|
||||||
|
msgid "Enter your Google reCAPTCHA v2 API key to enable the recaptcha field. Get your key here https://google.com/recaptcha/admin/site/"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/form/index.js:1
|
||||||
|
msgid "reCaptcha v2"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/form/index.js:1
|
||||||
|
msgid "Displays a Google reCaptcha v2 field. (v3 can be enabled with the Submit block). Enter your API Key from the Blockify global settings tab on any page or post."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/form/index.js:1
|
||||||
|
msgid "Google"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/form/index.js:1
|
||||||
|
msgid "Recaptcha"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/form/index.js:1
|
||||||
|
msgid "Confirm"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/form/index.js:1
|
||||||
|
msgid "reCaptcha Settings"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/form/index.js:1
|
||||||
|
msgid "Color Scheme"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/form/index.js:1
|
||||||
|
msgid "Light"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/form/index.js:1
|
||||||
|
msgid "Dark"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/form/index.js:1
|
||||||
|
msgid "Google reCaptcha V3"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/form/index.js:1
|
||||||
|
msgid "Default (current page/post)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/form/index.js:1
|
||||||
|
msgid "Form Settings"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/form/index.js:1
|
||||||
|
msgid "Create WordPress user"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/form/index.js:1
|
||||||
|
msgid "If enabled, will attempt to register a new WordPress subscriber with the information provided."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/form/index.js:1
|
||||||
|
msgid "Success page"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/form/index.js:1
|
||||||
|
msgid "Select which page users should be redirected to after a successful form submission."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/form/index.js:1
|
||||||
|
msgid "Success message"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/form/index.js:1
|
||||||
|
msgid "Message to display to users after a successful form submission."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/google-map/index.js:1
|
||||||
|
msgid "Marker"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/google-map/index.js:1
|
||||||
|
msgid "Map Settings"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/google-map/index.js:1
|
||||||
|
msgid "Height"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/google-map/index.js:1
|
||||||
|
msgid "Zoom"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/google-map/index.js:1
|
||||||
|
msgid "Address"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/google-map/index.js:1
|
||||||
|
msgid "Light style"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/google-map/index.js:1
|
||||||
|
msgid "Default"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/google-map/index.js:1
|
||||||
|
msgid "Ultra Light"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/google-map/index.js:1
|
||||||
|
msgid "Subtle greyscale"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/google-map/index.js:1
|
||||||
|
msgid "WY"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/google-map/index.js:1
|
||||||
|
msgid "Interface"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/google-map/index.js:1
|
||||||
|
msgid "Dark style"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/google-map/index.js:1
|
||||||
|
msgid "Night mode"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/google-map/index.js:1
|
||||||
|
msgid "Shades of grey"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/google-map/index.js:1
|
||||||
|
msgid "Assassins Creed"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/google-map/index.js:1
|
||||||
|
msgid "Modest"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/google-map/index.js:1
|
||||||
|
msgid "Toggle dark mode preview"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/icon/index.js:1
|
||||||
|
msgid "Flip Horizontal"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/icon/index.js:1
|
||||||
|
msgid "Flip Vertical"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/icon/index.js:1
|
||||||
|
msgid "Icon Settings"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/icon/index.js:1
|
||||||
|
msgid "Select Icon Set"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/icon/index.js:1
|
||||||
|
msgid "Select Icon"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/icon/index.js:1
|
||||||
|
msgid "Icon Width"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/icon/index.js:1
|
||||||
|
msgid "Color"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/icon/index.js:1
|
||||||
|
msgid "Icon"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/icon/index.js:1
|
||||||
|
msgid "Background"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/slider/index.js:1
|
||||||
|
msgid "Slide"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/slider/index.js:1
|
||||||
|
msgid "Slider Settings"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/slider/index.js:1
|
||||||
|
msgid "Per View"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/slider/index.js:1
|
||||||
|
msgid "Number of slides to display in the viewport on desktop."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/slider/index.js:1
|
||||||
|
msgid "Show arrows"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/slider/index.js:1
|
||||||
|
msgid "Show dots"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/slider/index.js:1
|
||||||
|
msgid "Previous"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/slider/index.js:1
|
||||||
|
msgid "Next"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/tabs/index.js:1
|
||||||
|
msgid "Tab title"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/tabs/index.js:1
|
||||||
|
msgid "Tab link colors"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/tabs/index.js:1
|
||||||
|
msgid "Tab link"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/tabs/index.js:1
|
||||||
|
msgid "Tab link active"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/tabs/index.js:1
|
||||||
|
msgid "Tab link background"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/tabs/index.js:1
|
||||||
|
msgid "Tab link background active"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/accordion/block.json
|
||||||
|
#: src/blocks/accordion/block.json
|
||||||
|
msgctxt "block title"
|
||||||
|
msgid "Accordion"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/accordion/block.json
|
||||||
|
#: src/blocks/accordion/block.json
|
||||||
|
msgctxt "block description"
|
||||||
|
msgid "A simple, customizable, accordion/faq block."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/accordion/block.json
|
||||||
|
#: src/blocks/accordion/block.json
|
||||||
|
msgctxt "block keyword"
|
||||||
|
msgid "Faq"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/accordion/block.json
|
||||||
|
#: src/blocks/accordion/block.json
|
||||||
|
msgctxt "block keyword"
|
||||||
|
msgid "Toggle"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/breadcrumbs/block.json
|
||||||
|
#: src/blocks/breadcrumbs/block.json
|
||||||
|
msgctxt "block title"
|
||||||
|
msgid "Breadcrumbs"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/breadcrumbs/block.json
|
||||||
|
#: src/blocks/breadcrumbs/block.json
|
||||||
|
msgctxt "block description"
|
||||||
|
msgid "Displays page and post breadcrumbs. This block will be removed if WordPress core adds a breadcrumbs block."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/breadcrumbs/block.json
|
||||||
|
#: src/blocks/breadcrumbs/block.json
|
||||||
|
msgctxt "block keyword"
|
||||||
|
msgid "links"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/counter/block.json
|
||||||
|
#: src/blocks/counter/block.json
|
||||||
|
msgctxt "block title"
|
||||||
|
msgid "Counter"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/counter/block.json
|
||||||
|
#: src/blocks/counter/block.json
|
||||||
|
msgctxt "block description"
|
||||||
|
msgid "Counts up or down from one number to another."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/counter/block.json
|
||||||
|
#: src/blocks/counter/block.json
|
||||||
|
msgctxt "block keyword"
|
||||||
|
msgid "countdown"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/counter/block.json
|
||||||
|
#: src/blocks/counter/block.json
|
||||||
|
msgctxt "block keyword"
|
||||||
|
msgid "timer"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/counter/block.json
|
||||||
|
#: src/blocks/counter/block.json
|
||||||
|
msgctxt "block keyword"
|
||||||
|
msgid "count"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/counter/block.json
|
||||||
|
#: src/blocks/counter/block.json
|
||||||
|
msgctxt "block keyword"
|
||||||
|
msgid "clock"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/form/block.json
|
||||||
|
#: src/blocks/form/block.json
|
||||||
|
msgctxt "block title"
|
||||||
|
msgid "Form"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/form/block.json
|
||||||
|
#: src/blocks/form/block.json
|
||||||
|
msgctxt "block description"
|
||||||
|
msgid "Displays a form block. Please note that this block is still experimental."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/form/block.json
|
||||||
|
#: src/blocks/form/block.json
|
||||||
|
msgctxt "block keyword"
|
||||||
|
msgid "Email"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/form/block.json
|
||||||
|
#: src/blocks/form/block.json
|
||||||
|
msgctxt "block keyword"
|
||||||
|
msgid "Newsletter"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/form/block.json
|
||||||
|
#: src/blocks/form/block.json
|
||||||
|
msgctxt "block keyword"
|
||||||
|
msgid "Subscribe"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/form/block.json
|
||||||
|
#: src/blocks/form/block.json
|
||||||
|
msgctxt "block keyword"
|
||||||
|
msgid "Form"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/google-map/block.json
|
||||||
|
#: src/blocks/google-map/block.json
|
||||||
|
msgctxt "block title"
|
||||||
|
msgid "Google Map"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/google-map/block.json
|
||||||
|
#: src/blocks/google-map/block.json
|
||||||
|
msgctxt "block description"
|
||||||
|
msgid "Easy to use, customizable Google Map block. Also supports dark mode."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/icon/block.json
|
||||||
|
#: src/blocks/icon/block.json
|
||||||
|
msgctxt "block title"
|
||||||
|
msgid "Icon"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/icon/block.json
|
||||||
|
#: src/blocks/icon/block.json
|
||||||
|
msgctxt "block description"
|
||||||
|
msgid "Lightweight, fully customizable SVG icon block. Default icon sets include Dashicons, Social icons and WordPress editor icons. Renders an inline SVG, no icon fonts are loaded. Supports gradients and shadows."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/icon/block.json
|
||||||
|
#: src/blocks/icon/block.json
|
||||||
|
msgctxt "block keyword"
|
||||||
|
msgid "font awesome"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/icon/block.json
|
||||||
|
#: src/blocks/icon/block.json
|
||||||
|
msgctxt "block keyword"
|
||||||
|
msgid "fontawesome"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/icon/block.json
|
||||||
|
#: src/blocks/icon/block.json
|
||||||
|
msgctxt "block keyword"
|
||||||
|
msgid "dashicons"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/icon/block.json
|
||||||
|
#: src/blocks/icon/block.json
|
||||||
|
msgctxt "block keyword"
|
||||||
|
msgid "svg"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/slider/block.json
|
||||||
|
#: src/blocks/slider/block.json
|
||||||
|
msgctxt "block title"
|
||||||
|
msgid "Slider"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/slider/block.json
|
||||||
|
#: src/blocks/slider/block.json
|
||||||
|
msgctxt "block description"
|
||||||
|
msgid "A simple, lightweight vanilla JS slider block."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/slider/block.json
|
||||||
|
#: src/blocks/slider/block.json
|
||||||
|
msgctxt "block keyword"
|
||||||
|
msgid "slider"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/slider/block.json
|
||||||
|
#: src/blocks/slider/block.json
|
||||||
|
msgctxt "block keyword"
|
||||||
|
msgid "carousel"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/tabs/block.json
|
||||||
|
#: src/blocks/tabs/block.json
|
||||||
|
msgctxt "block title"
|
||||||
|
msgid "Tabs"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/blocks/tabs/block.json
|
||||||
|
#: src/blocks/tabs/block.json
|
||||||
|
msgctxt "block description"
|
||||||
|
msgid "Simple and useful tabbed content section block. Can also be used for creating pricing table switches."
|
||||||
|
msgstr ""
|
||||||
2447
spec/fixtures/dynamic_finders/plugin_version/blockons/translation_file/lang/blockons.pot
vendored
Normal file
2447
spec/fixtures/dynamic_finders/plugin_version/blockons/translation_file/lang/blockons.pot
vendored
Normal file
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,97 @@
|
|||||||
|
# Copyright (C) 2022 Bright Plugins
|
||||||
|
# This file is distributed under the same license as the ChaChing - New Order Notifications for WooCommerce plugin.
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: ChaChing - New Order Notifications for WooCommerce 0.1\n"
|
||||||
|
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/bp-new-order-notification\n"
|
||||||
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"POT-Creation-Date: 2022-07-26T08:22:49+00:00\n"
|
||||||
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
|
"X-Generator: WP-CLI 2.6.0\n"
|
||||||
|
"X-Domain: bp-new-order-notifications-for-woocommerce\n"
|
||||||
|
|
||||||
|
#. Plugin Name of the plugin
|
||||||
|
msgid "ChaChing - New Order Notifications for WooCommerce"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Plugin URI of the plugin
|
||||||
|
#. Author URI of the plugin
|
||||||
|
msgid "https://brightplugins.com"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Description of the plugin
|
||||||
|
msgid "Produces a popup notification for every new order received with a unique ChaChing sound."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Author of the plugin
|
||||||
|
msgid "Bright Plugins"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main.php:49
|
||||||
|
msgid "Oops! looks like WooCommerce is disabled. Please, enable it in order to use BP Custom Order Status for WooCommerce."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Bootstrap.php:28
|
||||||
|
#: src/Bootstrap.php:29
|
||||||
|
msgid "Order Notification"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Bootstrap.php:38
|
||||||
|
msgid "Recent Order List"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Bootstrap.php:41
|
||||||
|
msgid "Activate new order alert"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Bootstrap.php:46
|
||||||
|
msgid "Order ID"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Bootstrap.php:47
|
||||||
|
msgid "Order Date"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Bootstrap.php:48
|
||||||
|
msgid "Order Status"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Bootstrap.php:49
|
||||||
|
msgid "Action"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Settings.php:41
|
||||||
|
msgid "Refresh Timer"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Settings.php:42
|
||||||
|
msgid "Check new orders after second."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Settings.php:68
|
||||||
|
msgid "Display Daily total sales when you enable notification"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Settings.php:88
|
||||||
|
msgid "Recent Orders"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Settings.php:89
|
||||||
|
msgid "Set how many orders will show into the order notification table"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Settings.php:104
|
||||||
|
msgid "Notification Title"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Settings.php:105
|
||||||
|
msgid "Set Title for Notifications"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Settings.php:110
|
||||||
|
msgid "Notification Additional Text"
|
||||||
|
msgstr ""
|
||||||
@@ -0,0 +1,43 @@
|
|||||||
|
# Copyright (C) 2021 Bright Plugins
|
||||||
|
# This file is distributed under the same license as the BP Delivery For Woocommerce plugin.
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: BP Delivery For Woocommerce 0.1\n"
|
||||||
|
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/\n"
|
||||||
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"POT-Creation-Date: 2021-12-13T23:56:33+01:00\n"
|
||||||
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
|
"X-Generator: WP-CLI 2.5.0\n"
|
||||||
|
"X-Domain: bp-woopick-delivery\n"
|
||||||
|
|
||||||
|
#. Plugin Name of the plugin
|
||||||
|
msgid "BP Delivery For Woocommerce"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Plugin URI of the plugin
|
||||||
|
msgid "https://brightplugins.com/"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Description of the plugin
|
||||||
|
msgid "BP Delivery For Woocommerce"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Author of the plugin
|
||||||
|
msgid "Bright Plugins"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Author URI of the plugin
|
||||||
|
msgid "https://brightplugins.com"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/core.php:33
|
||||||
|
msgid "Bright Plugins License Activation"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/core.php:35
|
||||||
|
msgid "Enter your Purchase key here, to activate the product, and get full feature updates and premium support."
|
||||||
|
msgstr ""
|
||||||
@@ -0,0 +1,59 @@
|
|||||||
|
# Copyright (C) 2022 Bili Plugins
|
||||||
|
# This file is distributed under the same license as the BPWP Set Homepages package.
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: BPWP Set Homepages 1.0.0\n"
|
||||||
|
"Report-Msgid-Bugs-To: "
|
||||||
|
"https://wordpress.org/support/plugin/bpwp-set-homepages\n"
|
||||||
|
"POT-Creation-Date: 2022-09-05 12:11:33+00:00\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=utf-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"PO-Revision-Date: 2022-MO-DA HO:MI+ZONE\n"
|
||||||
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
"Language: en\n"
|
||||||
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
"X-Poedit-Country: United States\n"
|
||||||
|
"X-Poedit-SourceCharset: UTF-8\n"
|
||||||
|
"X-Poedit-KeywordsList: "
|
||||||
|
"__;_e;_x:1,2c;_ex:1,2c;_n:1,2;_nx:1,2,4c;_n_noop:1,2;_nx_noop:1,2,3c;esc_"
|
||||||
|
"attr__;esc_html__;esc_attr_e;esc_html_e;esc_attr_x:1,2c;esc_html_x:1,2c;\n"
|
||||||
|
"X-Poedit-Basepath: ../\n"
|
||||||
|
"X-Poedit-SearchPath-0: .\n"
|
||||||
|
"X-Poedit-Bookmarks: \n"
|
||||||
|
"X-Textdomain-Support: yes\n"
|
||||||
|
"X-Generator: grunt-wp-i18n 1.0.3\n"
|
||||||
|
|
||||||
|
#: app/admin/class-wp-set-homepages-admin.php:56
|
||||||
|
msgid "Homepage for logged-in Users"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: app/admin/class-wp-set-homepages-admin.php:76
|
||||||
|
msgid "— Select —"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: app/admin/class-wp-set-homepages-admin.php:86
|
||||||
|
#. translators: %s: Setting description.
|
||||||
|
msgid "Redirect logged-in users to this page when they try to access homepage."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Plugin Name of the plugin/theme
|
||||||
|
msgid "BPWP Set Homepages"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Plugin URI of the plugin/theme
|
||||||
|
msgid "https://biliplugins.com/"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Description of the plugin/theme
|
||||||
|
msgid "Set a different homepage for logged-in users."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Author of the plugin/theme
|
||||||
|
msgid "Bili Plugins"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Author URI of the plugin/theme
|
||||||
|
msgid "https://bhargavb.com/"
|
||||||
|
msgstr ""
|
||||||
22
spec/fixtures/dynamic_finders/plugin_version/btb-full-width-section/composer_file/package.json
vendored
Normal file
22
spec/fixtures/dynamic_finders/plugin_version/btb-full-width-section/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,22 @@
|
|||||||
|
{
|
||||||
|
"name": "btb-full-width-section",
|
||||||
|
"version": "2.0.0",
|
||||||
|
"description": "Full width Section block.",
|
||||||
|
"author": "birkblauner",
|
||||||
|
"license": "GPL-2.0-or-later",
|
||||||
|
"main": "build/index.js",
|
||||||
|
"scripts": {
|
||||||
|
"build": "wp-scripts build",
|
||||||
|
"format": "wp-scripts format",
|
||||||
|
"lint:css": "wp-scripts lint-style",
|
||||||
|
"lint:fix:css": "wp-scripts lint-style --fix",
|
||||||
|
"lint:js": "wp-scripts lint-js",
|
||||||
|
"lint:fix:js": "wp-scripts lint-js --fix",
|
||||||
|
"packages-update": "wp-scripts packages-update",
|
||||||
|
"plugin-zip": "wp-scripts plugin-zip",
|
||||||
|
"start": "wp-scripts start"
|
||||||
|
},
|
||||||
|
"devDependencies": {
|
||||||
|
"@wordpress/scripts": "^24.2.0"
|
||||||
|
}
|
||||||
|
}
|
||||||
325
spec/fixtures/dynamic_finders/plugin_version/bumbal/translation_file/languages/bumbal.pot
vendored
Normal file
325
spec/fixtures/dynamic_finders/plugin_version/bumbal/translation_file/languages/bumbal.pot
vendored
Normal file
@@ -0,0 +1,325 @@
|
|||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Bumbal 1.0.0\n"
|
||||||
|
"POT-Creation-Date: 2021-03-01 13:05+0100\n"
|
||||||
|
"PO-Revision-Date: 2021-03-01 13:05+0100\n"
|
||||||
|
"Last-Translator: \n"
|
||||||
|
"Language-Team: Bumbal\n"
|
||||||
|
"Language: en\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"X-Generator: Poedit 2.4.2\n"
|
||||||
|
"X-Poedit-Basepath: ..\n"
|
||||||
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
"X-Poedit-KeywordsList: __;_e\n"
|
||||||
|
"X-Poedit-SearchPath-0: .\n"
|
||||||
|
|
||||||
|
#: admin/class-bumbal-admin.php:109 backup/bumbal_config.php:24
|
||||||
|
msgid "Bumbal"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/class-bumbal-admin.php:127 backup/bumbal_config.php:37
|
||||||
|
msgid "Bumbal connection settings"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/class-bumbal-admin.php:129
|
||||||
|
msgid "All the settings for making a connection with Bumbal."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/class-bumbal-admin.php:134 backup/bumbal_config.php:44
|
||||||
|
msgid "Instance name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/class-bumbal-admin.php:136
|
||||||
|
msgid "Instance name for Bumbal."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/class-bumbal-admin.php:142 backup/bumbal_config.php:52
|
||||||
|
msgid "API-key"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/class-bumbal-admin.php:144
|
||||||
|
msgid "API-key for Bumbal."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/class-bumbal-admin.php:150
|
||||||
|
msgid "Status for sending"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/class-bumbal-admin.php:152
|
||||||
|
msgid "Select the order status whereby the order is send to Bumbal."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/class-bumbal-admin.php:156
|
||||||
|
msgid "Processing"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/class-bumbal-admin.php:157
|
||||||
|
msgid "Completed"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/class-bumbal-admin.php:167 backup/bumbal_config.php:65
|
||||||
|
msgid "Bumbal communication settings"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/class-bumbal-admin.php:169
|
||||||
|
msgid "All the settings for sending communication to Bumbal."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/class-bumbal-admin.php:174 backup/bumbal_config.php:72
|
||||||
|
msgid "Send invite"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/class-bumbal-admin.php:176
|
||||||
|
msgid ""
|
||||||
|
"Send an invite message for scheduling a timeslot when the order is send to "
|
||||||
|
"Bumbal."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/class-bumbal-admin.php:181
|
||||||
|
msgid "Send invite after error"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/class-bumbal-admin.php:183
|
||||||
|
msgid ""
|
||||||
|
"Send an invite message for scheduling a timeslot when an order is send "
|
||||||
|
"manual after an error occured."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/class-bumbal-admin.php:188 backup/bumbal_config.php:79
|
||||||
|
msgid "Send reminder"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/class-bumbal-admin.php:190
|
||||||
|
msgid "Send a reminder when no timeslot is booked yet."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/class-bumbal-admin.php:195 backup/bumbal_config.php:86
|
||||||
|
msgid "Send confirmation"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/class-bumbal-admin.php:197
|
||||||
|
msgid "Send a confirmation message when a timesloot is booked."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/class-bumbal-admin.php:202 backup/bumbal_config.php:93
|
||||||
|
msgid "Send plannend"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/class-bumbal-admin.php:204
|
||||||
|
msgid "Send a message when the activity is planned on a route."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/class-bumbal-admin.php:209
|
||||||
|
msgid "Send ETA"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/class-bumbal-admin.php:211
|
||||||
|
msgid "send an estimated time of arrival message."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/class-bumbal-admin.php:216
|
||||||
|
msgid "Send finished"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/class-bumbal-admin.php:218 backup/bumbal_config.php:109
|
||||||
|
msgid "Send a message when the activity is finished."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/class-bumbal-admin.php:223
|
||||||
|
msgid "Send cancelled"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/class-bumbal-admin.php:225 backup/bumbal_config.php:116
|
||||||
|
msgid "Send a message when the activity is cancelled."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/class-bumbal-admin.php:238
|
||||||
|
msgid "Bumbal shipping method settings"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/class-bumbal-admin.php:240
|
||||||
|
msgid "Select all the shipping methods whereby the order is send to Bumbal."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/class-bumbal-admin.php:338
|
||||||
|
msgid "Activity planned"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/class-bumbal-admin.php:339
|
||||||
|
msgid "Activity in progress"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/class-bumbal-admin.php:340
|
||||||
|
msgid "Activity executed"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/class-bumbal-admin.php:341
|
||||||
|
msgid "Activity incomplete"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/class-bumbal-admin.php:342
|
||||||
|
msgid "Activity new"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/class-bumbal-admin.php:343
|
||||||
|
msgid "Activity accepted"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/class-bumbal-admin.php:344
|
||||||
|
msgid "Activity cancelled"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/class-bumbal-admin.php:345
|
||||||
|
msgid "Activity awaiting"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/partials/bumbal-show-status.php:17
|
||||||
|
msgid "Number"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/partials/bumbal-show-status.php:24
|
||||||
|
msgid "API error"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/partials/bumbal-show-status.php:28
|
||||||
|
#: admin/partials/bumbal-show-status.php:40
|
||||||
|
msgid "Unknown"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/partials/bumbal-show-status.php:34
|
||||||
|
msgid "Status"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/partials/bumbal-show-status.php:47
|
||||||
|
msgid "Route"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: backup/bumbal_config.php:39
|
||||||
|
msgid "All the settings for making a connection with Bumbal"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: backup/bumbal_config.php:46
|
||||||
|
msgid "Instance name for Bumbal"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: backup/bumbal_config.php:54
|
||||||
|
msgid "API-key for Bumbal"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: backup/bumbal_config.php:67
|
||||||
|
msgid "All the settings for sending communication with Bumbal"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: backup/bumbal_config.php:74
|
||||||
|
msgid "Send an invite email for making a appointment when order is made."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: backup/bumbal_config.php:81
|
||||||
|
msgid "Send a reminder if no appointment is made."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: backup/bumbal_config.php:88
|
||||||
|
msgid "Send an email if prefered times are added"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: backup/bumbal_config.php:95
|
||||||
|
msgid "Send an email if activity is planned"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: backup/bumbal_config.php:100
|
||||||
|
msgid "Send ETA message"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: backup/bumbal_config.php:102
|
||||||
|
msgid "Send an estimated time of arrival message"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: backup/bumbal_config.php:107
|
||||||
|
msgid "Send finished message"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: backup/bumbal_config.php:114
|
||||||
|
msgid "Send cancelled message"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: public/class-bumbal-public.php:116 public/class-bumbal-public.php:173
|
||||||
|
#: public/class-bumbal-public.php:201
|
||||||
|
msgid "Can not connect to Bumbal API"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: public/class-bumbal-public.php:132
|
||||||
|
msgid "Thank you, we have booked your timeslot."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: public/class-bumbal-public.php:133
|
||||||
|
msgid "Timeslot succesfully booked by client."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: public/class-bumbal-public.php:136
|
||||||
|
msgid "Sorry, we where not able to book your timeslot."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: public/class-bumbal-public.php:137
|
||||||
|
#, php-format
|
||||||
|
msgid ""
|
||||||
|
"Failed to book timeslot. API responded with %s. Check BumbalTimeSlotResponse "
|
||||||
|
"meta data."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: public/class-bumbal-public.php:207
|
||||||
|
#, php-format
|
||||||
|
msgid "Error code (%s) when retrieving timeslots."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: public/class-bumbal-public.php:208
|
||||||
|
#, php-format
|
||||||
|
msgid ""
|
||||||
|
"Failed to retrieve timeslot, API responded with: %s. \n"
|
||||||
|
"\t\t\t\t\t\t\t\t\t\t\t\t\t\tCheck BumbalRetrieveTimeSlotError meta data."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: public/class-bumbal-public.php:218
|
||||||
|
msgid "Thank you, we already received your preferred timeslot."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: public/class-bumbal-public.php:233
|
||||||
|
#, php-format
|
||||||
|
msgid "Can not retrieving timeslots: %s."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: public/class-bumbal-public.php:234
|
||||||
|
#, php-format
|
||||||
|
msgid ""
|
||||||
|
"Failed to retrieve timeslot, API responded with: %s. \n"
|
||||||
|
"\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t Check BumbalRetrieveTimeSlotError meta data."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: public/class-bumbal-public.php:274
|
||||||
|
msgid ""
|
||||||
|
"Order not send to Bumbal because it could not connect to Bumbal API. Check "
|
||||||
|
"BumbalError in meta_data."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: public/class-bumbal-public.php:296
|
||||||
|
msgid "Invite message triggered."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: public/class-bumbal-public.php:302
|
||||||
|
#, php-format
|
||||||
|
msgid "Order successfully send to Bumbal (%s)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: public/class-bumbal-public.php:308
|
||||||
|
msgid "Bumbal API responded with failed. Check BumbalAPIresponse meta data."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: public/partials/bumbal-public-time-slot.php:17
|
||||||
|
msgid "Schedule your appointment:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: public/partials/bumbal-public-time-slot.php:48
|
||||||
|
#, php-format
|
||||||
|
msgid "From <b>%s</b> to <b>%s</b>"
|
||||||
|
msgstr ""
|
||||||
@@ -0,0 +1,116 @@
|
|||||||
|
# Copyright (C) 2022 mrjz
|
||||||
|
# This file is distributed under the GPL-2.0+.
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Buy Now Button, Direct Checkout, Quick Checkout/Purchase Button For "
|
||||||
|
"WooCommerce 1.0.0\n"
|
||||||
|
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/buy-now-direct-checkout-for-"
|
||||||
|
"woocommerce\n"
|
||||||
|
"POT-Creation-Date: 2022-10-31T15:41:43+01:00\n"
|
||||||
|
"PO-Revision-Date: 2022-10-31 20:46+0530\n"
|
||||||
|
"Last-Translator: \n"
|
||||||
|
"Language-Team: \n"
|
||||||
|
"Language: hi_IN\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==0 || n==1);\n"
|
||||||
|
"X-Generator: Poedit 3.2\n"
|
||||||
|
"X-Domain: buy-now-direct-checkout-for-woocommerce\n"
|
||||||
|
|
||||||
|
#. Plugin Name of the plugin
|
||||||
|
msgid "Buy Now Button, Direct Checkout, Quick Checkout/Purchase Button For WooCommerce"
|
||||||
|
msgstr "WooCommerce के लिए अभी खरीदें बटन, प्रत्यक्ष चेकआउट, त्वरित चेकआउट/खरीद बटन"
|
||||||
|
|
||||||
|
#. Plugin URI of the plugin
|
||||||
|
msgid "https://wordpress.org/plugins/buy-now-direct-checkout-for-woocommerce"
|
||||||
|
msgstr "https://wordpress.org/plugins/buy-now-direct-checkout-for-woocommerce"
|
||||||
|
|
||||||
|
#. Description of the plugin
|
||||||
|
msgid ""
|
||||||
|
"This plugin will add a \"Buy Now\" button below the \"Add to cart\" button that add product "
|
||||||
|
"to cart and quickly redirects the customer directly to the checkout page for a quick "
|
||||||
|
"purchase using custom ajax call. This plugin is designed to help boost your business "
|
||||||
|
"conversion rate by reducing the number of steps required to complete a purchase. With the "
|
||||||
|
"\"Buy Now\" button, customers can be taken directly to the checkout page, skipping the "
|
||||||
|
"traditional cart page redirect of WooCommerce."
|
||||||
|
msgstr ""
|
||||||
|
"यह प्लगइन \"कार्ट में जोड़ें\" बटन के नीचे एक \"अभी खरीदें\" बटन जोड़ देगा जो उत्पाद को कार्ट में जोड़ता है और "
|
||||||
|
"कस्टम अजाक्स कॉल का उपयोग करके त्वरित खरीदारी के लिए ग्राहक को सीधे चेकआउट पृष्ठ पर रीडायरेक्ट करता है। "
|
||||||
|
"यह प्लगइन खरीदारी को पूरा करने के लिए आवश्यक चरणों की संख्या को कम करके आपके व्यापार रूपांतरण दर को बढ़ाने "
|
||||||
|
"में मदद करने के लिए डिज़ाइन किया गया है। \"अभी खरीदें\" बटन के साथ, ग्राहकों को सीधे चेकआउट पृष्ठ पर ले "
|
||||||
|
"जाया जा सकता है, WooCommerce के पारंपरिक कार्ट पेज रीडायरेक्ट को छोड़कर।"
|
||||||
|
|
||||||
|
#. Author of the plugin
|
||||||
|
msgid "mrjz"
|
||||||
|
msgstr "mrjz"
|
||||||
|
|
||||||
|
#. Author URI of the plugin
|
||||||
|
msgid "https://profiles.wordpress.org/mrjz/"
|
||||||
|
msgstr "https://profiles.wordpress.org/mrjz/"
|
||||||
|
|
||||||
|
#: admin/class-buy-now-direct-checkout-for-woocommerce-admin.php:108
|
||||||
|
msgid "Buy now button settings"
|
||||||
|
msgstr "अभी खरीदें बटन सेटिंग"
|
||||||
|
|
||||||
|
#: admin/class-buy-now-direct-checkout-for-woocommerce-admin.php:109
|
||||||
|
msgid "Buy Now Button"
|
||||||
|
msgstr "अभी खरीदें बटन"
|
||||||
|
|
||||||
|
#: admin/class-buy-now-direct-checkout-for-woocommerce-admin.php:123
|
||||||
|
msgid "Buy Now, Direct Checkout For WooCommerce Settings."
|
||||||
|
msgstr "WooCommerce के लिए अभी खरीदें, डायरेक्ट चेकआउट सेटिंग्स।"
|
||||||
|
|
||||||
|
#: admin/class-buy-now-direct-checkout-for-woocommerce-admin.php:129
|
||||||
|
msgid "Buy now button CSS class:"
|
||||||
|
msgstr "अभी खरीदें बटन CSS वर्ग:"
|
||||||
|
|
||||||
|
#: admin/class-buy-now-direct-checkout-for-woocommerce-admin.php:132
|
||||||
|
msgid ""
|
||||||
|
"Specify CSS class to be applied on Buy now button. (You can specify multiple CSS classes "
|
||||||
|
"separated by space)"
|
||||||
|
msgstr ""
|
||||||
|
"अभी खरीदें बटन पर लागू होने वाली CSS क्लास निर्दिष्ट करें। (आप अंतरिक्ष द्वारा अलग किए गए कई सीएसएस वर्ग "
|
||||||
|
"निर्दिष्ट कर सकते हैं)"
|
||||||
|
|
||||||
|
#: admin/class-buy-now-direct-checkout-for-woocommerce-admin.php:136
|
||||||
|
msgid "Remove other product from cart"
|
||||||
|
msgstr "कार्ट से अन्य उत्पाद निकालें"
|
||||||
|
|
||||||
|
#: admin/class-buy-now-direct-checkout-for-woocommerce-admin.php:138
|
||||||
|
msgid ""
|
||||||
|
"When checked, previously added product(s) into the cart will be removed and only product(s) "
|
||||||
|
"added by Buy now button remain in the cart."
|
||||||
|
msgstr ""
|
||||||
|
"चेक किए जाने पर, कार्ट में पहले जोड़े गए उत्पाद हटा दिए जाएंगे और कार्ट में केवल अभी खरीदें बटन द्वारा जोड़े गए "
|
||||||
|
"उत्पाद ही बचे रहेंगे।"
|
||||||
|
|
||||||
|
#: buy-now-direct-checkout-for-woocommerce.php:45
|
||||||
|
msgid ""
|
||||||
|
"Sorry, but \"Buy Now, Direct Checkout For WooCommerce\" plugin is deactivated as it "
|
||||||
|
"requires WooCommerce in order to work. Please ensure that WooCommerce is installed and "
|
||||||
|
"activated."
|
||||||
|
msgstr ""
|
||||||
|
"क्षमा करें, लेकिन \"WooCommerce के लिए अभी खरीदें बटन, प्रत्यक्ष चेकआउट\" प्लगइन निष्क्रिय है क्योंकि इसे काम "
|
||||||
|
"करने के लिए WooCommerce की आवश्यकता होती है। कृपया सुनिश्चित करें कि WooCommerce स्थापित और सक्रिय है।"
|
||||||
|
|
||||||
|
#: public/class-buy-now-direct-checkout-for-woocommerce-public.php:120
|
||||||
|
msgid "Buy now"
|
||||||
|
msgstr "अभी खरीदें"
|
||||||
|
|
||||||
|
#: public/class-buy-now-direct-checkout-for-woocommerce-public.php:127
|
||||||
|
#: public/class-buy-now-direct-checkout-for-woocommerce-public.php:144
|
||||||
|
msgid "Error : Security check failed!"
|
||||||
|
msgstr "त्रुटि : सुरक्षा जांच विफल!"
|
||||||
|
|
||||||
|
#: public/class-buy-now-direct-checkout-for-woocommerce-public.php:151
|
||||||
|
msgid "Error : Product data not received"
|
||||||
|
msgstr "त्रुटि: उत्पाद डेटा प्राप्त नहीं हुआ"
|
||||||
|
|
||||||
|
#: public/class-buy-now-direct-checkout-for-woocommerce-public.php:158
|
||||||
|
msgid "Error : Product variation data not received"
|
||||||
|
msgstr "त्रुटि : उत्पाद विविधता डेटा प्राप्त नहीं हुआ"
|
||||||
|
|
||||||
|
#: public/class-buy-now-direct-checkout-for-woocommerce-public.php:165
|
||||||
|
msgid "Error: Cart object not defined"
|
||||||
|
msgstr "त्रुटि: कार्ट ऑब्जेक्ट परिभाषित नहीं है"
|
||||||
6
spec/fixtures/dynamic_finders/plugin_version/categorize-pages/change_log/CHANGELOG.md
vendored
Normal file
6
spec/fixtures/dynamic_finders/plugin_version/categorize-pages/change_log/CHANGELOG.md
vendored
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
Changelog
|
||||||
|
=========
|
||||||
|
|
||||||
|
#### 1.0.0 - June 23, 2022
|
||||||
|
- Public release
|
||||||
|
|
||||||
414
spec/fixtures/dynamic_finders/plugin_version/cf-images/translation_file/languages/cf-images.pot
vendored
Normal file
414
spec/fixtures/dynamic_finders/plugin_version/cf-images/translation_file/languages/cf-images.pot
vendored
Normal file
@@ -0,0 +1,414 @@
|
|||||||
|
# Copyright (C) 2022 Anton Vanyukov
|
||||||
|
# This file is distributed under the GPL-2.0+.
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Offload Media to Cloudflare Images 1.1.0\n"
|
||||||
|
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/cloudflare-images\n"
|
||||||
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"POT-Creation-Date: 2022-09-09T02:20:31+00:00\n"
|
||||||
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
|
"X-Generator: WP-CLI 2.6.0\n"
|
||||||
|
"X-Domain: cf-images\n"
|
||||||
|
|
||||||
|
#. Plugin Name of the plugin
|
||||||
|
msgid "Offload Media to Cloudflare Images"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Plugin URI of the plugin
|
||||||
|
msgid "https://vcore.ru"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Description of the plugin
|
||||||
|
msgid "Offload media library images to the `Cloudflare Images` service."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Author of the plugin
|
||||||
|
msgid "Anton Vanyukov"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Author URI of the plugin
|
||||||
|
msgid "https://vanyukov.su"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: App/Admin.php:127
|
||||||
|
#: App/Views/Settings.php:149
|
||||||
|
#: App/Views/Setup.php:180
|
||||||
|
#: build/cf-images/App/Admin.php:127
|
||||||
|
#: build/cf-images/App/Views/Settings.php:133
|
||||||
|
#: build/cf-images/App/Views/Setup.php:180
|
||||||
|
msgid "Save Changes"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: App/Admin.php:128
|
||||||
|
#: build/cf-images/App/Admin.php:128
|
||||||
|
msgid "Processing"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: App/Admin.php:129
|
||||||
|
#: build/cf-images/App/Admin.php:129
|
||||||
|
msgid "Error during offload"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: App/Admin.php:130
|
||||||
|
#: App/Admin.php:309
|
||||||
|
#: App/Views/Settings.php:118
|
||||||
|
#: build/cf-images/App/Admin.php:130
|
||||||
|
#: build/cf-images/App/Admin.php:309
|
||||||
|
#: build/cf-images/App/Views/Settings.php:102
|
||||||
|
msgid "Offloaded"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: App/Admin.php:152
|
||||||
|
#: App/Views/Settings.php:39
|
||||||
|
#: build/cf-images/App/Admin.php:152
|
||||||
|
#: build/cf-images/App/Views/Settings.php:39
|
||||||
|
msgid "Settings"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: App/Admin.php:168
|
||||||
|
#: App/Views/Settings.php:32
|
||||||
|
#: App/Views/Setup.php:24
|
||||||
|
#: build/cf-images/App/Admin.php:168
|
||||||
|
#: build/cf-images/App/Views/Settings.php:32
|
||||||
|
#: build/cf-images/App/Views/Setup.php:24
|
||||||
|
msgid "Offload Images to Cloudflare"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: App/Admin.php:169
|
||||||
|
#: build/cf-images/App/Admin.php:169
|
||||||
|
msgid "Offload Settings"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: %1$s - error message, %2$d - error code
|
||||||
|
#: App/Admin.php:188
|
||||||
|
#: build/cf-images/App/Admin.php:188
|
||||||
|
msgid "%1$s (code: %2$d)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: App/Admin.php:199
|
||||||
|
#: build/cf-images/App/Admin.php:199
|
||||||
|
msgid "Settings saved."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: App/Admin.php:204
|
||||||
|
#: build/cf-images/App/Admin.php:204
|
||||||
|
msgid "All images have been successfully removed from Cloudflare Images."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: App/Admin.php:209
|
||||||
|
#: build/cf-images/App/Admin.php:209
|
||||||
|
msgid "All images have been successfully uploaded to Cloudflare Images."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: App/Admin.php:286
|
||||||
|
#: build/cf-images/App/Admin.php:286
|
||||||
|
msgid "Offload status"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: App/Admin.php:316
|
||||||
|
#: build/cf-images/App/Admin.php:316
|
||||||
|
msgid "Unsupported format"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: App/Admin.php:322
|
||||||
|
#: build/cf-images/App/Admin.php:322
|
||||||
|
msgid "Skipped from processing"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: %1$s - opening <a> tag, %2$s - closing </a> tag
|
||||||
|
#: App/Admin.php:325
|
||||||
|
#: build/cf-images/App/Admin.php:325
|
||||||
|
msgid "%1$sRetry offload%2$s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: %1$s - opening <a> tag, %2$s - closing </a> tag
|
||||||
|
#: App/Admin.php:333
|
||||||
|
#: build/cf-images/App/Admin.php:333
|
||||||
|
msgid "%1$sOffload%2$s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: App/Api/Api.php:194
|
||||||
|
#: build/cf-images/App/Api/Api.php:193
|
||||||
|
msgid "Unsupported API call method"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: App/Core.php:280
|
||||||
|
#: build/cf-images/App/Core.php:278
|
||||||
|
msgid "Incorrect action call"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: App/Core.php:284
|
||||||
|
#: build/cf-images/App/Core.php:282
|
||||||
|
msgid "No current step or total steps defined"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: App/Core.php:293
|
||||||
|
#: build/cf-images/App/Core.php:291
|
||||||
|
msgid "Unsupported action"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: App/Core.php:307
|
||||||
|
#: build/cf-images/App/Core.php:305
|
||||||
|
msgid "No images found"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: App/Core.php:317
|
||||||
|
#: build/cf-images/App/Core.php:315
|
||||||
|
msgid "Step error"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: %1$d - current image, %2$d - total number of images
|
||||||
|
#: App/Core.php:346
|
||||||
|
#: build/cf-images/App/Core.php:344
|
||||||
|
msgid "Processing image %1$d out of %2$d..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: App/Core.php:491
|
||||||
|
#: build/cf-images/App/Core.php:489
|
||||||
|
msgid "Media file not found"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: App/Core.php:496
|
||||||
|
#: build/cf-images/App/Core.php:494
|
||||||
|
msgid "Unsupported media type"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: App/Traits/Helpers.php:82
|
||||||
|
#: build/cf-images/App/Traits/Helpers.php:82
|
||||||
|
msgid "Authentication error. Check and update Cloudflare API key."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: App/Views/Header.php:29
|
||||||
|
#: build/cf-images/App/Views/Header.php:29
|
||||||
|
msgid "Thank you for installing the plugin. This is the first release, not all plugins/themes might be supported. Please report all issues on the wp.org support forums for the plugin, and I will try to fix everything ASAP."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: %1$d - uploaded image count, %2$d - allowed image count
|
||||||
|
#: App/Views/Settings.php:24
|
||||||
|
#: build/cf-images/App/Views/Settings.php:24
|
||||||
|
msgid "API stats: %1$d/%2$d"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: App/Views/Settings.php:44
|
||||||
|
#: build/cf-images/App/Views/Settings.php:44
|
||||||
|
msgid "Status"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: App/Views/Settings.php:44
|
||||||
|
#: build/cf-images/App/Views/Settings.php:44
|
||||||
|
msgid "Connected"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: App/Views/Settings.php:53
|
||||||
|
msgid "Auto offload new images"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: App/Views/Settings.php:58
|
||||||
|
msgid "Enable this option if you want to enable automatic offloading for newly uploaded images."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: App/Views/Settings.php:61
|
||||||
|
msgid "By default, new images will not be auto offloaded to Cloudflare Images."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: App/Views/Settings.php:69
|
||||||
|
#: build/cf-images/App/Views/Settings.php:53
|
||||||
|
msgid "Serve from custom domain"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: App/Views/Settings.php:74
|
||||||
|
#: build/cf-images/App/Views/Settings.php:58
|
||||||
|
msgid "Use the current site domain instead of `imagedelivery.net`."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: App/Views/Settings.php:77
|
||||||
|
#: build/cf-images/App/Views/Settings.php:61
|
||||||
|
msgid "Note: Image delivery is supported from all customer domains under the same Cloudflare account."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: App/Views/Settings.php:85
|
||||||
|
#: build/cf-images/App/Views/Settings.php:69
|
||||||
|
msgid "Disable WordPress image sizes"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: App/Views/Settings.php:90
|
||||||
|
#: build/cf-images/App/Views/Settings.php:74
|
||||||
|
msgid "Setting this option will disable generation of `-scaled` images and other image sizes. Only the original image will be stored in the media library. Only for newly uploaded files, current images will not be affected."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: App/Views/Settings.php:93
|
||||||
|
#: build/cf-images/App/Views/Settings.php:77
|
||||||
|
msgid "Note: This feature is experimental. All the image sizes can be restored with the `Regenerate Thumbnails` plugin."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: App/Views/Settings.php:101
|
||||||
|
#: build/cf-images/App/Views/Settings.php:85
|
||||||
|
msgid "Bulk upload images"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: App/Views/Settings.php:105
|
||||||
|
#: build/cf-images/App/Views/Settings.php:89
|
||||||
|
msgid "Upload"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: App/Views/Settings.php:110
|
||||||
|
#: App/Views/Settings.php:135
|
||||||
|
#: build/cf-images/App/Views/Settings.php:94
|
||||||
|
#: build/cf-images/App/Views/Settings.php:119
|
||||||
|
msgid "Initializing..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: App/Views/Settings.php:114
|
||||||
|
#: build/cf-images/App/Views/Settings.php:98
|
||||||
|
msgid "You can either manually upload individual images from the media library, or bulk upload/remove all the images using the buttons below."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: App/Views/Settings.php:118
|
||||||
|
#: build/cf-images/App/Views/Settings.php:102
|
||||||
|
msgid "images"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: App/Views/Settings.php:126
|
||||||
|
#: build/cf-images/App/Views/Settings.php:110
|
||||||
|
msgid "Bulk remove"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: App/Views/Settings.php:130
|
||||||
|
#: build/cf-images/App/Views/Settings.php:114
|
||||||
|
msgid "Remove"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: App/Views/Settings.php:139
|
||||||
|
#: build/cf-images/App/Views/Settings.php:123
|
||||||
|
msgid "Remove all previously uploaded images."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: App/Views/Settings.php:142
|
||||||
|
#: build/cf-images/App/Views/Settings.php:126
|
||||||
|
msgid "Note: If `Disable WordPress image sizes` option has been selected above, you will need to regenerate all the image sizes manually."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: App/Views/Setup.php:28
|
||||||
|
#: build/cf-images/App/Views/Setup.php:28
|
||||||
|
msgid "Setup"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: App/Views/Setup.php:34
|
||||||
|
#: build/cf-images/App/Views/Setup.php:34
|
||||||
|
msgid "It appears there is something wrong with the API token, and the plugin is not able to authenticate on the Cloudflare API. Please check the details below and update the API token and/or account ID."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: App/Views/Setup.php:40
|
||||||
|
#: build/cf-images/App/Views/Setup.php:40
|
||||||
|
msgid "For proper functionality, the plugin requires access to Cloudflare Images API."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: %1$s - opening <code> tag, %2$s - closing </code> tag
|
||||||
|
#: App/Views/Setup.php:46
|
||||||
|
#: build/cf-images/App/Views/Setup.php:46
|
||||||
|
msgid "To do this, either set %1$sdefine( 'CF_IMAGES_ACCOUNT_ID', '<ACCOUNT ID>' );%2$s and %1$sdefine( 'CF_IMAGES_KEY_TOKEN', '<API KEY>' );%2$s manually in wp-config.php file or use the form with instructions below."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: App/Views/Setup.php:54
|
||||||
|
#: build/cf-images/App/Views/Setup.php:54
|
||||||
|
msgid "Note: The form will attempt to automatically set the required defines in wp-config.php file."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: App/Views/Setup.php:60
|
||||||
|
#: build/cf-images/App/Views/Setup.php:60
|
||||||
|
msgid "Cloudflare Account ID"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: App/Views/Setup.php:63
|
||||||
|
#: build/cf-images/App/Views/Setup.php:63
|
||||||
|
msgid "Paste your Cloudflare ID here"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: %1$s - opening <a> tag, %2$s - closing </a> tag
|
||||||
|
#: App/Views/Setup.php:67
|
||||||
|
#: build/cf-images/App/Views/Setup.php:67
|
||||||
|
msgid "Log in to the %1$sCloudflare dashboard%2$s, and select your account and website."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: %1$s - opening <strong> tag, %2$s - closing </strong> tag
|
||||||
|
#: App/Views/Setup.php:76
|
||||||
|
#: build/cf-images/App/Views/Setup.php:76
|
||||||
|
msgid "In %1$sOverview%2$s, scroll down to find your Account ID."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: App/Views/Setup.php:88
|
||||||
|
#: build/cf-images/App/Views/Setup.php:88
|
||||||
|
msgid "Cloudflare API Token"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: App/Views/Setup.php:91
|
||||||
|
#: build/cf-images/App/Views/Setup.php:91
|
||||||
|
msgid "Paste your Cloudflare API key here"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: %1$s - opening <code> tag, %2$s - closing </code> tag
|
||||||
|
#: App/Views/Setup.php:95
|
||||||
|
#: build/cf-images/App/Views/Setup.php:95
|
||||||
|
msgid "To use Cloudflare Images you need to create a custom token with the correct %1$sRead%2$s and %1$sUpdate%2$s permissions:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: %1$s - opening <a> tag, %2$s - closing </a> tag, %3$s - opening <strong> tag, %4$s - closing </strong> tag
|
||||||
|
#: App/Views/Setup.php:104
|
||||||
|
#: build/cf-images/App/Views/Setup.php:104
|
||||||
|
msgid "In the Cloudflare dashboard, locate %1$sAPI Tokens%2$s under %3$sMy Profile > API Tokens%4$s."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: %1$s - opening <strong> tag, %2$s - closing </strong> tag
|
||||||
|
#: App/Views/Setup.php:115
|
||||||
|
#: build/cf-images/App/Views/Setup.php:115
|
||||||
|
msgid "Select %1$sCreate Token%2$s."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: %1$s - opening <strong> tag, %2$s - closing </strong> tag
|
||||||
|
#: App/Views/Setup.php:124
|
||||||
|
#: build/cf-images/App/Views/Setup.php:124
|
||||||
|
msgid "In Custom token, select %1$sGet started%2$s."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: App/Views/Setup.php:131
|
||||||
|
#: build/cf-images/App/Views/Setup.php:131
|
||||||
|
msgid "Give your custom token a name."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: %1$s - opening <strong> tag, %2$s - closing </strong> tag
|
||||||
|
#: App/Views/Setup.php:136
|
||||||
|
#: build/cf-images/App/Views/Setup.php:136
|
||||||
|
msgid "Scroll to %1$sPermissions%2$s."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: %1$s - opening <em> tag, %2$s - closing </em> tag
|
||||||
|
#: App/Views/Setup.php:145
|
||||||
|
#: build/cf-images/App/Views/Setup.php:145
|
||||||
|
msgid "On the %1$sSelect item…%2$s drop-down menu, choose %1$sCloudflare Images%2$s."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: %1$s - opening <em> tag, %2$s - closing </em> tag
|
||||||
|
#: App/Views/Setup.php:154
|
||||||
|
#: build/cf-images/App/Views/Setup.php:154
|
||||||
|
msgid "In the next drop-down menu, choose %1$sEdit%2$s."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: App/Views/Setup.php:161
|
||||||
|
#: build/cf-images/App/Views/Setup.php:161
|
||||||
|
msgid "How to create a custom token for Cloudflare images"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: %1$s - opening <strong> tag, %2$s - closing </strong> tag
|
||||||
|
#: App/Views/Setup.php:166
|
||||||
|
#: build/cf-images/App/Views/Setup.php:166
|
||||||
|
msgid "Select %1$sContinue to summary > Create Token%2$s."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: App/Views/Setup.php:173
|
||||||
|
#: build/cf-images/App/Views/Setup.php:173
|
||||||
|
msgid "Your token for Cloudflare Images is now created."
|
||||||
|
msgstr ""
|
||||||
109
spec/fixtures/dynamic_finders/plugin_version/checkoutwc-lite/composer_file/package.json
vendored
Normal file
109
spec/fixtures/dynamic_finders/plugin_version/checkoutwc-lite/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,109 @@
|
|||||||
|
{
|
||||||
|
"name": "checkoutwc-lite",
|
||||||
|
"version": "1.0.5",
|
||||||
|
"description": "### Development installation instructions",
|
||||||
|
"scripts": {
|
||||||
|
"build_dev": "./build/build-dev.sh",
|
||||||
|
"build_prod": "./build/build-prod.sh",
|
||||||
|
"dev": "npx webpack --config webpack.dev.js",
|
||||||
|
"production": "npx webpack --config webpack.prod.js",
|
||||||
|
"watch": "npm run dev -- --watch",
|
||||||
|
"test": "node tests/e2e-tests/cypress-runner.js",
|
||||||
|
"composer_install": "composer install --no-dev",
|
||||||
|
"composer_install_dev": "composer install",
|
||||||
|
"min_php_version_test": "./vendor/bin/phpcs -p . --standard=PHPCompatibility --runtime-set testVersion 7.1 --extensions=php,inc,lib --ignore=node_modules/*,dist/*,vendor/kint-php/*,vendor/squizlabs/php_codesniffer/*,vendor/phpcompatibility/*,vendor/sebastian/*,vendor/phpdocumentor/*,vendor/phpunit/*,vendor/nikic/php-parser/*,tests/*",
|
||||||
|
"max_php_version_test": "./vendor/bin/phpcs -p . --standard=PHPCompatibility --runtime-set testVersion 8.1 --extensions=php,inc,lib --ignore=node_modules/*,dist/*,vendor/kint-php/*,vendor/squizlabs/php_codesniffer/*,vendor/phpcompatibility/*,vendor/sebastian/*,vendor/phpdocumentor/*,vendor/phpunit/*,vendor/nikic/php-parser/*,tests/*",
|
||||||
|
"phpunit": "./vendor/bin/phpunit -c phpunit.xml --testdox",
|
||||||
|
"tailwind": "npx tailwind --output './sources/scss/admin/tailwind.css' --watch"
|
||||||
|
},
|
||||||
|
"browserslist": [
|
||||||
|
"> 1%",
|
||||||
|
"last 1 Android versions",
|
||||||
|
"last 1 ChromeAndroid versions",
|
||||||
|
"last 2 Chrome versions",
|
||||||
|
"last 2 Firefox versions",
|
||||||
|
"last 2 Safari versions",
|
||||||
|
"last 2 iOS versions",
|
||||||
|
"last 2 Edge versions",
|
||||||
|
"last 2 Opera versions"
|
||||||
|
],
|
||||||
|
"repository": {
|
||||||
|
"type": "git",
|
||||||
|
"url": "git@github.com:Objectivco/checkoutwc-lite.git"
|
||||||
|
},
|
||||||
|
"author": "Clifton Griffin <clif@checkoutwc.com> (https://www.checkoutwc.com/)",
|
||||||
|
"license": "GPL-3.0",
|
||||||
|
"homepage": "https://www.checkoutwc.com/",
|
||||||
|
"devDependencies": {
|
||||||
|
"@types/google.maps": "^3.50.5",
|
||||||
|
"@types/intl-tel-input": "^17.0.5",
|
||||||
|
"@types/jest": "^27.5.2",
|
||||||
|
"@types/jquery": "^3.5.14",
|
||||||
|
"@types/jquery.blockui": "0.0.28",
|
||||||
|
"@types/select2": "^4.0.55",
|
||||||
|
"@typescript-eslint/eslint-plugin": "^4.33.0",
|
||||||
|
"@typescript-eslint/parser": "^4.33.0",
|
||||||
|
"acorn": "^8.8.1",
|
||||||
|
"autoprefixer": "^10.4.13",
|
||||||
|
"clean-webpack-plugin": "^3.0.0",
|
||||||
|
"command-line-args": "^5.2.1",
|
||||||
|
"cpy-cli": "^2.0.0",
|
||||||
|
"cross-env": "^5.2.1",
|
||||||
|
"css-loader": "^6.7.1",
|
||||||
|
"css-minimizer-webpack-plugin": "^3.4.1",
|
||||||
|
"cypress": "^9.7.0",
|
||||||
|
"del": "^3.0.0",
|
||||||
|
"dom4": "^2.1.6",
|
||||||
|
"eslint": "^7.32.0",
|
||||||
|
"eslint-config-airbnb-base": "^15.0.0",
|
||||||
|
"eslint-import-resolver-typescript": "^2.7.1",
|
||||||
|
"eslint-plugin-arca": "^0.10.1",
|
||||||
|
"eslint-plugin-import": "^2.26.0",
|
||||||
|
"eslint-plugin-jest": "^24.7.0",
|
||||||
|
"file-loader": "^6.2.0",
|
||||||
|
"har-validator": "^5.1.5",
|
||||||
|
"install": "^0.12.2",
|
||||||
|
"jest": "^27.5.1",
|
||||||
|
"mini-css-extract-plugin": "^2.6.1",
|
||||||
|
"postcss": "^8.4.18",
|
||||||
|
"postcss-loader": "^6.2.1",
|
||||||
|
"postcss-rtlcss": "^3.7.2",
|
||||||
|
"resolve-url-loader": "^4.0.0",
|
||||||
|
"sass-loader": "^12.6.0",
|
||||||
|
"style-loader": "^0.23.1",
|
||||||
|
"tailwindcss": "^3.2.1",
|
||||||
|
"ts-jest": "^27.1.5",
|
||||||
|
"ts-loader": "^9.4.1",
|
||||||
|
"typescript": "^3.9.10",
|
||||||
|
"typings": "^2.1.1",
|
||||||
|
"webpack": "^5.74.0",
|
||||||
|
"webpack-cli": "^4.10.0",
|
||||||
|
"webpack-merge": "^5.8.0",
|
||||||
|
"webpack-notifier": "^1.15.0",
|
||||||
|
"webpack-shell-plugin-next": "*"
|
||||||
|
},
|
||||||
|
"dependencies": {
|
||||||
|
"@tailwindcss/forms": "^0.5.3",
|
||||||
|
"@wordpress/hooks": "^3.21.0",
|
||||||
|
"bootstrap": "^5.2.2",
|
||||||
|
"cfwselectwoo": "^1.0.10",
|
||||||
|
"core-js": "^3.26.0",
|
||||||
|
"debounce": "^1.2.1",
|
||||||
|
"delete-empty": "^2.0.0",
|
||||||
|
"easytabs": "git+https://github.com/Objectivco/jQuery-EasyTabs.git#3.2.3",
|
||||||
|
"fast-deep-equal": "^3.1.3",
|
||||||
|
"garlicjs": "git+https://github.com/objectivco/Garlic.js.git#1.4.3-cgd",
|
||||||
|
"jquery-first-event": "^1.0.2",
|
||||||
|
"jquery-validation": "^1.19.5",
|
||||||
|
"js-cookie": "^3.0.1",
|
||||||
|
"modaal": "^0.4.4",
|
||||||
|
"normalize.css": "^8.0.1",
|
||||||
|
"parsleyjs": "^2.9.2",
|
||||||
|
"postcss-nested": "^5.0.6",
|
||||||
|
"requirejs": "^2.3.6",
|
||||||
|
"sass": "^1.55.0",
|
||||||
|
"tippy.js": "^6.3.7",
|
||||||
|
"ts-md5": "^1.3.1",
|
||||||
|
"ts-polyfill": "^3.8.2"
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,2 @@
|
|||||||
|
/**1.0.0 - 2022.06.06**/
|
||||||
|
~ The first released.
|
||||||
@@ -0,0 +1,2 @@
|
|||||||
|
/**1.0.0 - 2022.0.0**/
|
||||||
|
- Released
|
||||||
86
spec/fixtures/dynamic_finders/plugin_version/clickship/translation_file/languages/clickship.pot
vendored
Normal file
86
spec/fixtures/dynamic_finders/plugin_version/clickship/translation_file/languages/clickship.pot
vendored
Normal file
@@ -0,0 +1,86 @@
|
|||||||
|
# Copyright (C) 2022 ClickShip
|
||||||
|
# This file is distributed under the same license as the ClickShip package.
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: ClickShip 1.0.0\n"
|
||||||
|
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/clickship\n"
|
||||||
|
"POT-Creation-Date: 2022-09-19 07:24:05+00:00\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"PO-Revision-Date: 2022-MO-DA HO:MI+ZONE\n"
|
||||||
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
|
||||||
|
#. translators: %s WC download URL link.
|
||||||
|
|
||||||
|
#: includes/class-clickship-i18n.php:53
|
||||||
|
msgid "WooCommerce ClickShip requires the WooCommerce plugin to be installed and active. You can download %s here."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/class-clickship-shipping.php:58
|
||||||
|
msgid "ClickShip"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/class-clickship-shipping.php:60
|
||||||
|
msgid "Provide customers with <b>real-time accurate shipping rates</b> at your store checkout. <br/><br/> <b>To get started, integrate your WooCommerce store on ClickShip. Don't have a ClickShip account? <a href=\"https://app.clickship.com/clickship/signup\" target=\"_blank\">Create a free account</a> </b> <br/><br/> Need help setting up? <a href=\"https://www.youtube.com/watch?v=aBEUo5YTsXs\" target=\"_blank\">Watch this tutorial</a>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/class-clickship-shipping.php:92
|
||||||
|
msgid "Marketplace ID"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/class-clickship-shipping.php:93
|
||||||
|
msgid "Enter the Marketplace ID. On ClickShip go to Marketplaces > Edit Store Settings."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/class-clickship-shipping.php:98
|
||||||
|
msgid "Default Email Address"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/class-clickship-shipping.php:99
|
||||||
|
msgid "Provide a default email address for your customers to find real-time rates at checkout."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/class-clickship-shipping.php:104
|
||||||
|
msgid "Default Phone Number"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/class-clickship-shipping.php:105
|
||||||
|
msgid "Provide a default phone number for your customers to find real-time rates at checkout."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/class-clickship-shipping.php:111
|
||||||
|
msgid "ClickShip Shipping Rates"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/class-clickship-shipping.php:112
|
||||||
|
msgid "Activate Real-Time Rates at Checkout"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/class-clickship-shipping.php:274
|
||||||
|
msgid "%s (%s business days)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/class-clickship-shipping.php:288
|
||||||
|
msgid "Unknown error while fetching shipping rates, Please contact support team"
|
||||||
|
msgstr ""
|
||||||
|
#. Plugin Name of the plugin/theme
|
||||||
|
msgid "ClickShip"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Plugin URI of the plugin/theme
|
||||||
|
msgid "https://www.clickship.com/"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Description of the plugin/theme
|
||||||
|
msgid "We provide shipping rates at checkout to your customers."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Author of the plugin/theme
|
||||||
|
msgid "ClickShip"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Author URI of the plugin/theme
|
||||||
|
msgid "https://www.clickship.com/"
|
||||||
|
msgstr ""
|
||||||
12
spec/fixtures/dynamic_finders/plugin_version/cod-network/change_log/changelog.md
vendored
Normal file
12
spec/fixtures/dynamic_finders/plugin_version/cod-network/change_log/changelog.md
vendored
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
*** Changelog ***
|
||||||
|
= 1.2.2 - 2022-06-08 =
|
||||||
|
* Fix > Avoid message exception MySql on active and inactive plugin
|
||||||
|
* Fix > On push new order when response deference 200 then need to catch exertion with a correct information
|
||||||
|
* Feature > Send each log as a message to the slack channel
|
||||||
|
|
||||||
|
= 1.1.0 - 2022-04-15 =
|
||||||
|
* Feature > Store owner have ability to Activity Logs
|
||||||
|
|
||||||
|
= 1.0.0 - 2022-04-15 =
|
||||||
|
* First Release
|
||||||
|
|
||||||
@@ -1241,3 +1241,9 @@ LiverRoom (Pvt) Ltd., hereby disclaims all copyright interest in the program &ld
|
|||||||
<!-- Gofer SEO - 1.0.1 -->
|
<!-- Gofer SEO - 1.0.1 -->
|
||||||
|
|
||||||
|
|
||||||
|
<!-- file-manager-advanced -->
|
||||||
|
<!--
|
||||||
|
Try: http://docbook.org/xml/5.0/dtd/docbook.dtd
|
||||||
|
-->
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -0,0 +1,2 @@
|
|||||||
|
= 1.0.0 =
|
||||||
|
- Release of Connect LearnDash and Discord WordPress plugin
|
||||||
@@ -0,0 +1,2 @@
|
|||||||
|
= 1.0.0 =
|
||||||
|
- Release of Connect LearnPress and Discord WordPress plugin
|
||||||
109
spec/fixtures/dynamic_finders/plugin_version/cookiegenie/translation_file/lang/cookiegenie-nl_NL.po
vendored
Normal file
109
spec/fixtures/dynamic_finders/plugin_version/cookiegenie/translation_file/lang/cookiegenie-nl_NL.po
vendored
Normal file
@@ -0,0 +1,109 @@
|
|||||||
|
# Copyright (C) 2014 CookieGenie
|
||||||
|
# This file is distributed under the same license as the CookieGenie package.
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: CookieGenie 1.0.1\n"
|
||||||
|
"Report-Msgid-Bugs-To: http://wordpress.org/tag/WordPress-Plugin-Template\n"
|
||||||
|
"POT-Creation-Date: 2014-04-07 11:28:06+00:00\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"PO-Revision-Date: 2022-04-05 14:02+0000\n"
|
||||||
|
"Last-Translator: \n"
|
||||||
|
"Language-Team: Nederlands\n"
|
||||||
|
"Language: nl_NL\n"
|
||||||
|
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||||
|
"X-Generator: Loco https://localise.biz/\n"
|
||||||
|
"X-Loco-Version: 2.6.1; wp-5.9.2"
|
||||||
|
|
||||||
|
msgid "30 days"
|
||||||
|
msgstr "30 dagen"
|
||||||
|
|
||||||
|
msgid "365 days"
|
||||||
|
msgstr "365 dagen"
|
||||||
|
|
||||||
|
msgid "90 days"
|
||||||
|
msgstr "90 dagen"
|
||||||
|
|
||||||
|
msgid "Allow all cookies"
|
||||||
|
msgstr "Alle cookies toestaan"
|
||||||
|
|
||||||
|
msgid "API"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "API Key"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Banner background color"
|
||||||
|
msgstr "Achtergrond kleur"
|
||||||
|
|
||||||
|
msgid "Blacklist domains"
|
||||||
|
msgstr "Blacklist domeinen"
|
||||||
|
|
||||||
|
msgid "Choose a color"
|
||||||
|
msgstr "Kies een kleur"
|
||||||
|
|
||||||
|
msgid "Content color"
|
||||||
|
msgstr "Content kleur"
|
||||||
|
|
||||||
|
msgid "Cookie and scripts domains to allow. One per line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Cookie and scripts domains to block. One per line"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Cookie banner text"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Cookie banner title"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Cookie declaration URL"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Plugin Name of the plugin/theme
|
||||||
|
msgid "CookieGenie"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "CookieGenie settings"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Disabled"
|
||||||
|
msgstr "Uitgeschakeld"
|
||||||
|
|
||||||
|
msgid "Display CookieGenie CookieBanner?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Enable CookieBanner?"
|
||||||
|
msgstr "CookieGenie inschakelen?"
|
||||||
|
|
||||||
|
msgid "Enabled"
|
||||||
|
msgstr "Ingeschakeld"
|
||||||
|
|
||||||
|
msgid "Get your API key at https://www.graphicgenie.nl/cookiegenie"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Only necessary cookies"
|
||||||
|
msgstr "Alleen noodzakelijk cookies"
|
||||||
|
|
||||||
|
msgid "Read more"
|
||||||
|
msgstr "Lees meer"
|
||||||
|
|
||||||
|
#: includes/class-cookiegenie-settings.php:427
|
||||||
|
msgid "Save Settings"
|
||||||
|
msgstr "Instellingen opslaan"
|
||||||
|
|
||||||
|
msgid "Select days before we ask for consent again"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Set Cookie expire time"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Style"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Whitelist domains"
|
||||||
|
msgstr "Whitelist domeinen"
|
||||||
|
|
||||||
|
msgid "Your API key"
|
||||||
|
msgstr ""
|
||||||
@@ -0,0 +1,84 @@
|
|||||||
|
# Copyright (C) 2022 Phi Phan
|
||||||
|
# This file is distributed under the GPL-2.0-or-later.
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Counting Number Block 1.0.0\n"
|
||||||
|
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/counting-number\n"
|
||||||
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"POT-Creation-Date: 2022-07-12T10:04:24+00:00\n"
|
||||||
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
|
"X-Generator: WP-CLI 2.5.0\n"
|
||||||
|
"X-Domain: counting-number\n"
|
||||||
|
|
||||||
|
#. Plugin Name of the plugin
|
||||||
|
msgid "Counting Number Block"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Description of the plugin
|
||||||
|
msgid "An animated number counting effect block."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Author of the plugin
|
||||||
|
msgid "Phi Phan"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/index.js:1
|
||||||
|
#: src/edit.js:98
|
||||||
|
msgid "Block settings"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/index.js:1
|
||||||
|
#: src/edit.js:100
|
||||||
|
msgid "The number value"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/index.js:1
|
||||||
|
#: src/edit.js:109
|
||||||
|
msgid "Start counting from value"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/index.js:1
|
||||||
|
#: src/edit.js:116
|
||||||
|
msgid "Duration (in seconds)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/index.js:1
|
||||||
|
#: src/edit.js:124
|
||||||
|
msgid "Delay (in seconds)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/index.js:1
|
||||||
|
#: src/edit.js:137
|
||||||
|
msgid "Prefix"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/index.js:1
|
||||||
|
#: src/edit.js:140
|
||||||
|
msgid "Display before the number."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/index.js:1
|
||||||
|
#: src/edit.js:143
|
||||||
|
msgid "Suffix"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/index.js:1
|
||||||
|
#: src/edit.js:146
|
||||||
|
msgid "Display after the number."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/block.json
|
||||||
|
#: src/block.json
|
||||||
|
msgctxt "block title"
|
||||||
|
msgid "Counting number block"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: build/block.json
|
||||||
|
#: src/block.json
|
||||||
|
msgctxt "block description"
|
||||||
|
msgid "An animated number counting effect block."
|
||||||
|
msgstr ""
|
||||||
@@ -0,0 +1,68 @@
|
|||||||
|
# Copyright (C) 2022 Roy Orbison, Dr. Max V.
|
||||||
|
# This file is distributed under the same license as the Cron Tasks Viewer plugin.
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Cron Tasks Viewer 1.0.2\n"
|
||||||
|
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/cron-task-viewer-redux\n"
|
||||||
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"POT-Creation-Date: 2022-07-12T16:08:37+09:30\n"
|
||||||
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
|
"X-Generator: WP-CLI 2.6.0\n"
|
||||||
|
"X-Domain: cron-task-viewer-redux\n"
|
||||||
|
|
||||||
|
#. Plugin Name of the plugin
|
||||||
|
msgid "Cron Tasks Viewer"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Description of the plugin
|
||||||
|
msgid "Lists all scheduled cron tasks"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Author of the plugin
|
||||||
|
msgid "Roy Orbison, Dr. Max V."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Author URI of the plugin
|
||||||
|
msgid "https://profiles.wordpress.org/lev0/"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cron-task-viewer-redux.php:38
|
||||||
|
msgid "Cron Tasks"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cron-task-viewer-redux.php:77
|
||||||
|
msgid "Scheduled events"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cron-task-viewer-redux.php:81
|
||||||
|
msgid "Next Schedule"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cron-task-viewer-redux.php:82
|
||||||
|
#: cron-task-viewer-redux.php:106
|
||||||
|
msgid "Frequency"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cron-task-viewer-redux.php:83
|
||||||
|
msgid "Hook"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cron-task-viewer-redux.php:94
|
||||||
|
msgid "One-off event"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cron-task-viewer-redux.php:102
|
||||||
|
msgid "Available schedules"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cron-task-viewer-redux.php:107
|
||||||
|
msgid "ID"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cron-task-viewer-redux.php:108
|
||||||
|
msgid "Interval (seconds)"
|
||||||
|
msgstr ""
|
||||||
10
spec/fixtures/dynamic_finders/plugin_version/crowdcue/change_log/changelog.txt
vendored
Normal file
10
spec/fixtures/dynamic_finders/plugin_version/crowdcue/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
# Changelog
|
||||||
|
All notable changes `Crowdcue` will be documented in this file.
|
||||||
|
|
||||||
|
## [1.0.1] - 2022-04-13
|
||||||
|
### Chore:
|
||||||
|
- Rebranding due to copyright issues
|
||||||
|
|
||||||
|
## [1.0.0] - 2022-04-12
|
||||||
|
### Added:
|
||||||
|
- Development Build to Production
|
||||||
@@ -0,0 +1,234 @@
|
|||||||
|
# Copyright (C) 2022 Blockforce
|
||||||
|
# This file is distributed under the GPLv2 or later.
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Cryptum NFT 1.1.0\n"
|
||||||
|
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/cryptum-nft-wordpress-plugin\n"
|
||||||
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"POT-Creation-Date: 2022-09-19T15:32:17+00:00\n"
|
||||||
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
|
"X-Generator: WP-CLI 2.6.0\n"
|
||||||
|
"X-Domain: cryptum-nft-domain\n"
|
||||||
|
|
||||||
|
#. Plugin Name of the plugin
|
||||||
|
msgid "Cryptum NFT"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Plugin URI of the plugin
|
||||||
|
msgid "https://github.com/blockforce-official/cryptum-nft-wordpress-plugin"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Description of the plugin
|
||||||
|
msgid "Cryptum NFT Plugin"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Author of the plugin
|
||||||
|
msgid "Blockforce"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Author URI of the plugin
|
||||||
|
msgid "https://blockforce.in"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/AdminSettings.php:52
|
||||||
|
msgid "Store id is not valid UUID string"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/AdminSettings.php:61
|
||||||
|
msgid "API key is not valid"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/AdminSettings.php:73
|
||||||
|
msgid "Store not configured yet or not existent. You must configure a store in Cryptum dashboard first"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/AdminSettings.php:81
|
||||||
|
msgid "Changes updated successfully"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/AdminSettings.php:93
|
||||||
|
msgid "Settings"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/AdminSettings.php:114
|
||||||
|
msgid "Cryptum NFT Settings"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/AdminSettings.php:123
|
||||||
|
msgid "This plugin allows to configure your store environment."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/AdminSettings.php:125
|
||||||
|
msgid ""
|
||||||
|
"It is necessary to create an account in\n"
|
||||||
|
"\t\t\t\t\t\tCryptum Dashboard to receive the store id and API key to fill out the fields below."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/AdminSettings.php:139
|
||||||
|
msgid "Environment"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/AdminSettings.php:144
|
||||||
|
msgid "Production"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/AdminSettings.php:147
|
||||||
|
msgid "Test"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/AdminSettings.php:150
|
||||||
|
msgid "Choose your environment. The Test environment should be used for testing only (testnets)."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/AdminSettings.php:154
|
||||||
|
msgid "Store Id"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/AdminSettings.php:157
|
||||||
|
msgid "Enter your Store ID generated in Cryptum Dashboard"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/AdminSettings.php:161
|
||||||
|
msgid "API key"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/AdminSettings.php:164
|
||||||
|
msgid "Enter your Cryptum API Key (Generated in Cryptum Dashboard)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/AdminSettings.php:171
|
||||||
|
msgid "Save Changes"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/OrderSettings.php:85
|
||||||
|
msgid "Error in configuring Cryptum NFT Plugin"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/OrderSettings.php:103
|
||||||
|
msgid "Cryptum NFT Transactions Info"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/OrderSettings.php:125
|
||||||
|
msgid "NFT transactions hashes"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/OrderSettings.php:133
|
||||||
|
msgid "No NFTs have been transferred yet."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/ProductEditPage.php:52
|
||||||
|
msgid "Cryptum NFT Options"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/ProductEditPage.php:66
|
||||||
|
msgid "Enable NFT link"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/ProductEditPage.php:67
|
||||||
|
msgid "Enable/Disable link between this product and NFT"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/ProductEditPage.php:74
|
||||||
|
msgid "After updating this product, go to Cryptum Dashboard to mint and link the NFT to this product SKU"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/ProductEditPage.php:152
|
||||||
|
#: src/Admin/ProductEditPage.php:250
|
||||||
|
msgid "Error in configuring product on Cryptum NFT Plugin"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/ProductEditPage.php:152
|
||||||
|
msgid "Product SKU is duplicate, try to set another SKU value."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/CheckoutPage.php:45
|
||||||
|
msgid "Sign"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/CheckoutPage.php:46
|
||||||
|
msgid "Save"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/CheckoutPage.php:47
|
||||||
|
msgid "Cancel"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/CheckoutPage.php:48
|
||||||
|
msgid "Wallet connected successfully"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/CheckoutPage.php:71
|
||||||
|
msgid "Wallet information"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/CheckoutPage.php:73
|
||||||
|
msgid "Insert or connect your wallet address below to receive the NFTs later."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/CheckoutPage.php:83
|
||||||
|
msgid "User wallet address"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/CheckoutPage.php:92
|
||||||
|
msgid "Click to sign message in order to verify your wallet"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/CheckoutPage.php:99
|
||||||
|
msgid "Click the button to connect your wallet"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/CheckoutPage.php:104
|
||||||
|
msgid "Connecting ..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/CheckoutPage.php:111
|
||||||
|
msgid "Connect to Wallet"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/CheckoutPage.php:118
|
||||||
|
msgid "If you don't have a wallet yet or would like to generate a new one, click below"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/CheckoutPage.php:121
|
||||||
|
msgid "Generate new wallet"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/CheckoutPage.php:123
|
||||||
|
msgid "New Wallet"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/CheckoutPage.php:124
|
||||||
|
msgid "Address"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/CheckoutPage.php:125
|
||||||
|
msgid "Private Key"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/CheckoutPage.php:128
|
||||||
|
msgid "Obs: Copy this private key and save it somewhere safe. For security reasons, we cannot show it to you again"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/CheckoutPage.php:168
|
||||||
|
msgid "Please enter a valid user wallet address."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/ProductInfoPage.php:40
|
||||||
|
msgid "This product is linked by an NFT"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/ProductInfoPage.php:43
|
||||||
|
msgid "Token Address"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/ProductInfoPage.php:44
|
||||||
|
msgid "Token Id"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/ProductInfoPage.php:48
|
||||||
|
msgid "View in explorer"
|
||||||
|
msgstr ""
|
||||||
@@ -0,0 +1,846 @@
|
|||||||
|
# Copyright (C) 2022 cubecolour
|
||||||
|
# This file is distributed under the same license as the Cubecolour Caboodle plugin.
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Cubecolour Caboodle 1.0.1\n"
|
||||||
|
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/cubecolour-caboodle\n"
|
||||||
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"POT-Creation-Date: 2022-07-12T15:05:54+00:00\n"
|
||||||
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
|
"X-Generator: WP-CLI 2.6.0\n"
|
||||||
|
"X-Domain: cubecolour-caboodle\n"
|
||||||
|
|
||||||
|
#. Plugin Name of the plugin
|
||||||
|
msgid "Cubecolour Caboodle"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Description of the plugin
|
||||||
|
msgid "An agglomeration of useful functions"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Author of the plugin
|
||||||
|
msgid "cubecolour"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Author URI of the plugin
|
||||||
|
msgid "https://cubecolour.co.uk/"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cubecolour-caboodle.php:51
|
||||||
|
#: includes/admin.php:93
|
||||||
|
msgid "Settings"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: cubecolour-caboodle.php:52
|
||||||
|
#: includes/admin.php:92
|
||||||
|
msgid "Import/export"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/admin.php:38
|
||||||
|
msgid "The caboodle settings have been imported"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/admin.php:99
|
||||||
|
msgid "Export caboodle settings"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/admin.php:101
|
||||||
|
msgid "Export the current plugin settings as a .json file."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/admin.php:106
|
||||||
|
msgid "Export"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/admin.php:113
|
||||||
|
msgid "Import caboodle settings"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/admin.php:115
|
||||||
|
msgid "Import the plugin settings from a .json file."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/admin.php:123
|
||||||
|
msgid "Import"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/admin.php:142
|
||||||
|
msgid "Current settings:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/admin.php:161
|
||||||
|
msgid "The cc_caboodle option containing the array of setting values does not exist"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/admin.php:226
|
||||||
|
msgid "Please upload a valid .json file"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/admin.php:232
|
||||||
|
msgid "Please upload a file to import"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/customizer.php:92
|
||||||
|
msgid "Caboodle"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/customizer.php:103
|
||||||
|
#: includes/customizer.php:121
|
||||||
|
msgid "Private site"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/customizer.php:104
|
||||||
|
msgid "Redirect unauthenticated visitors to the login page"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/customizer.php:135
|
||||||
|
msgid "Login Background"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/customizer.php:136
|
||||||
|
msgid "Apply a colored background to the login page"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/customizer.php:153
|
||||||
|
msgid "Login background"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/customizer.php:172
|
||||||
|
msgid "Color left & Right"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/customizer.php:191
|
||||||
|
msgid "Color centre"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/customizer.php:204
|
||||||
|
msgid "No login by email address"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/customizer.php:205
|
||||||
|
msgid "Must log in by username, not by email address"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/customizer.php:222
|
||||||
|
msgid "No login by email"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/customizer.php:236
|
||||||
|
msgid "Mask password"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/customizer.php:237
|
||||||
|
msgid "Do not expose password characters when entered on iPad, iPhone and android"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/customizer.php:254
|
||||||
|
msgid "Password mask"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/customizer.php:268
|
||||||
|
msgid "Single login error message"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/customizer.php:269
|
||||||
|
msgid "If login fails, a single error message is returned rather than different messages for wrong username or wrong password"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/customizer.php:286
|
||||||
|
msgid "Single error message"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/customizer.php:297
|
||||||
|
#: includes/login-error-message.php:11
|
||||||
|
msgid "Incorrect credentials"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/customizer.php:305
|
||||||
|
msgid "Error message"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/customizer.php:319
|
||||||
|
#: includes/customizer.php:337
|
||||||
|
msgid "Login warning message"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/customizer.php:320
|
||||||
|
msgid "Extra text added to login form"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/customizer.php:357
|
||||||
|
#: includes/customizer.php:1030
|
||||||
|
msgid "Text color"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/customizer.php:371
|
||||||
|
#: includes/customizer.php:390
|
||||||
|
msgid "Password visualisation"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/customizer.php:372
|
||||||
|
msgid "Display colored bars for visual confirmation of password input"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/customizer.php:408
|
||||||
|
msgid "Number of bars"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/customizer.php:431
|
||||||
|
msgid "Salt"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/customizer.php:447
|
||||||
|
msgid "Also include on frontend"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/customizer.php:460
|
||||||
|
msgid "Open site in new tab"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/customizer.php:461
|
||||||
|
msgid "Modify the view site link in admin to open in a new browser tab"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/customizer.php:478
|
||||||
|
msgid "View site in new tab"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/customizer.php:491
|
||||||
|
#: includes/customizer.php:509
|
||||||
|
msgid "No avatars"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/customizer.php:492
|
||||||
|
msgid "Remove all support for gravatars or user avatars"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/customizer.php:523
|
||||||
|
#: includes/customizer.php:541
|
||||||
|
msgid "Show IDs"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/customizer.php:524
|
||||||
|
msgid "Show the ID for posts, pages, custom post types, taxonomies, media and user IDs in the admin pages"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/customizer.php:560
|
||||||
|
msgid "Posts, pages, post types"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/customizer.php:579
|
||||||
|
msgid "Media"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/customizer.php:598
|
||||||
|
msgid "Taxonomies"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/customizer.php:617
|
||||||
|
msgid "Users"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/customizer.php:636
|
||||||
|
msgid "Comments"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/customizer.php:655
|
||||||
|
msgid "Links"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/customizer.php:670
|
||||||
|
msgid "Show current WP version"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/customizer.php:671
|
||||||
|
msgid "Show the current WP version in the admin footer when an upgrade is available"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/customizer.php:688
|
||||||
|
msgid "Show WP version"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/customizer.php:703
|
||||||
|
#: includes/customizer.php:721
|
||||||
|
msgid "No howdy"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/customizer.php:704
|
||||||
|
msgid "Replace the howdy greeting with a salutation appropriate to the time of day"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/customizer.php:730
|
||||||
|
#: includes/initial-values.php:52
|
||||||
|
#: includes/no-howdy.php:14
|
||||||
|
msgid "Good morning"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/customizer.php:738
|
||||||
|
msgid "Morning greeting"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/customizer.php:747
|
||||||
|
#: includes/initial-values.php:50
|
||||||
|
#: includes/no-howdy.php:16
|
||||||
|
msgid "Good afternoon"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/customizer.php:755
|
||||||
|
msgid "Afternoon greeting"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/customizer.php:764
|
||||||
|
#: includes/initial-values.php:51
|
||||||
|
#: includes/no-howdy.php:18
|
||||||
|
msgid "Good evening"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/customizer.php:772
|
||||||
|
msgid "Evening greeting"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/customizer.php:781
|
||||||
|
#: includes/initial-values.php:53
|
||||||
|
#: includes/no-howdy.php:20
|
||||||
|
msgid "Go to bed"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/customizer.php:789
|
||||||
|
msgid "Night greeting"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/customizer.php:802
|
||||||
|
msgid "Revisions"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/customizer.php:803
|
||||||
|
msgid "Limit the number of saved revisions"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/customizer.php:820
|
||||||
|
msgid "Limit revisions"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/customizer.php:840
|
||||||
|
msgid "Number of Revisions to save"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/customizer.php:843
|
||||||
|
msgid "None"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/customizer.php:852
|
||||||
|
msgid "Unlimited"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/customizer.php:863
|
||||||
|
#: includes/customizer.php:881
|
||||||
|
msgid "Developer link"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/customizer.php:864
|
||||||
|
msgid "Developer link in admin footer and [developer] shortcode for front end"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/customizer.php:898
|
||||||
|
msgid "Developer name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/customizer.php:915
|
||||||
|
msgid "Developer link URL"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/customizer.php:929
|
||||||
|
#: includes/customizer.php:947
|
||||||
|
msgid "Force vertical scrollbar"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/customizer.php:930
|
||||||
|
msgid "Prevent layout shift between long and short pages"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/customizer.php:961
|
||||||
|
#: includes/customizer.php:979
|
||||||
|
msgid "Scroll to anchor"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/customizer.php:962
|
||||||
|
msgid "Smoothly animate when clicking a link targetting an anchored position"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/customizer.php:993
|
||||||
|
#: includes/customizer.php:1011
|
||||||
|
msgid "Text selection"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/customizer.php:994
|
||||||
|
msgid "Color and background color of selected text"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/customizer.php:1049
|
||||||
|
#: includes/customizer.php:1678
|
||||||
|
msgid "Background color"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/customizer.php:1062
|
||||||
|
#: includes/customizer.php:1080
|
||||||
|
msgid "Page slug body class"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/customizer.php:1063
|
||||||
|
msgid "Add a page slug class to the body tag"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/customizer.php:1093
|
||||||
|
#: includes/customizer.php:1111
|
||||||
|
msgid "Dash spacing"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/customizer.php:1094
|
||||||
|
msgid "Replace spaces around en-dashes & em-dashes with hairspaces"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/customizer.php:1124
|
||||||
|
#: includes/customizer.php:1142
|
||||||
|
msgid "Prevent runts"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/customizer.php:1125
|
||||||
|
msgid "Runts are single words appearing on their own on the last line of a paragraph or other block element in the content"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/customizer.php:1155
|
||||||
|
msgid "Posts"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/customizer.php:1156
|
||||||
|
msgid "Keep,remove or rename the posts post type"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/customizer.php:1174
|
||||||
|
msgid "Posts post type"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/customizer.php:1177
|
||||||
|
msgid "Keep posts"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/customizer.php:1178
|
||||||
|
msgid "Rename posts to news"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/customizer.php:1179
|
||||||
|
msgid "Remove posts"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/customizer.php:1190
|
||||||
|
msgid "Pages"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/customizer.php:1191
|
||||||
|
msgid "Add support for manual excerpts to pages"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/customizer.php:1208
|
||||||
|
msgid "Page excerpts"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/customizer.php:1222
|
||||||
|
#: includes/customizer.php:1240
|
||||||
|
msgid "Indicate external links"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/customizer.php:1223
|
||||||
|
msgid "Add an arrow icon to identify external links within the site content"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/customizer.php:1259
|
||||||
|
#: includes/customizer.php:1473
|
||||||
|
msgid "Icon"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/customizer.php:1291
|
||||||
|
msgid "Size (em)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/customizer.php:1315
|
||||||
|
msgid "Vertical position (px)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/customizer.php:1340
|
||||||
|
#: includes/customizer.php:1659
|
||||||
|
msgid "Color"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/customizer.php:1359
|
||||||
|
#: includes/customizer.php:1697
|
||||||
|
msgid "Hover color"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/customizer.php:1372
|
||||||
|
msgid "Show file size in media library"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/customizer.php:1373
|
||||||
|
msgid "Show a file size column in the media library"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/customizer.php:1390
|
||||||
|
msgid "Show file size column"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/customizer.php:1404
|
||||||
|
#: includes/customizer.php:1422
|
||||||
|
msgid "No lazy loading"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/customizer.php:1405
|
||||||
|
msgid "No WordPress lazy loading"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/customizer.php:1436
|
||||||
|
#: includes/customizer.php:1454
|
||||||
|
msgid "Scroll to top"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/customizer.php:1437
|
||||||
|
msgid "Add a dynamic scroll to top button in the website footer"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/customizer.php:1514
|
||||||
|
msgid "Icon size (px)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/customizer.php:1538
|
||||||
|
msgid "Padding (px)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/customizer.php:1562
|
||||||
|
msgid "Border width (px)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/customizer.php:1586
|
||||||
|
msgid "Border radius (%)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/customizer.php:1610
|
||||||
|
msgid "Position right (px)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/customizer.php:1634
|
||||||
|
msgid "Position bottom (px)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/customizer.php:1716
|
||||||
|
msgid "Background hover color"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/customizer.php:1729
|
||||||
|
#: includes/customizer.php:1747
|
||||||
|
msgid "Stomp"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/customizer.php:1730
|
||||||
|
msgid "Fix the footer element to the bottom of the viewport on short pages"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/customizer.php:1764
|
||||||
|
msgid "Footer element to fix"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/customizer.php:1778
|
||||||
|
msgid "Footer years range"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/customizer.php:1779
|
||||||
|
msgid "Copyright years shortcode to use in footer"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/customizer.php:1796
|
||||||
|
msgid "Years shortcode"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/customizer.php:1817
|
||||||
|
msgid "Copyright from year"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/customizer.php:1836
|
||||||
|
#: includes/customizer.php:1853
|
||||||
|
msgid "Anti spambot"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/customizer.php:1854
|
||||||
|
msgid "[email] shortcode to protect email addresses from spambots"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/customizer.php:1868
|
||||||
|
#: includes/customizer.php:1885
|
||||||
|
msgid "Anti clickjack"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/customizer.php:1886
|
||||||
|
msgid "Prevent the site from loading inside an external frame or iframe"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/customizer.php:1899
|
||||||
|
msgid "No Author archives"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/customizer.php:1916
|
||||||
|
msgid "No author archives"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/customizer.php:1917
|
||||||
|
msgid "Requests for author archives will redirect to the homepage"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/customizer.php:1931
|
||||||
|
msgid "No generator"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/customizer.php:1948
|
||||||
|
msgid "No generator tag"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/customizer.php:1949
|
||||||
|
msgid "Remove the WordPress generator meta tag"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/customizer.php:1963
|
||||||
|
#: includes/customizer.php:1980
|
||||||
|
msgid "No RSD"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/customizer.php:1981
|
||||||
|
msgid "Remove the RSD (Really Simple Discovery) endpoint"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/customizer.php:1995
|
||||||
|
#: includes/customizer.php:2012
|
||||||
|
msgid "No shortlinks"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/customizer.php:2013
|
||||||
|
msgid "Remove the short link header tags"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/customizer.php:2027
|
||||||
|
#: includes/customizer.php:2044
|
||||||
|
msgid "No pingbacks"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/customizer.php:2045
|
||||||
|
msgid "Prevent self pingbacks"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/customizer.php:2066
|
||||||
|
msgid "Search placeholder"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/customizer.php:2067
|
||||||
|
msgid "Use translatable default text in header cover search (for astra theme only)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/customizer.php:2084
|
||||||
|
msgid "Search placeholder text"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/customizer.php:2097
|
||||||
|
#: includes/customizer.php:2115
|
||||||
|
msgid "Responsive breakpoints"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/customizer.php:2098
|
||||||
|
msgid "Set custom responsive breakpoints (for astra theme only)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/customizer.php:2133
|
||||||
|
msgid "Breakpoint for mobile"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/customizer.php:2157
|
||||||
|
msgid "Breakpoint for tablet"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/customizer.php:2180
|
||||||
|
#: includes/customizer.php:2198
|
||||||
|
msgid "Polylang SVG flags"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/customizer.php:2181
|
||||||
|
msgid "Modifications to the polylang plugin"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/customizer.php:2216
|
||||||
|
msgid "Flag width px"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/customizer.php:2240
|
||||||
|
msgid "Grayscale %"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/customizer.php:2264
|
||||||
|
msgid "Opacity %"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/customizer.php:2288
|
||||||
|
msgid "Spacing between flags px"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/customizer.php:2311
|
||||||
|
#: includes/customizer.php:2329
|
||||||
|
msgid "Gravity forms"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/customizer.php:2312
|
||||||
|
msgid "Add styles to forms created with the gravity forms plugin"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/customizer.php:2348
|
||||||
|
msgid "Border color"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/customizer.php:2367
|
||||||
|
msgid "Border color: hover"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/customizer.php:2386
|
||||||
|
msgid "Border color: focus"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: Developer credit
|
||||||
|
#: includes/devlink.php:24
|
||||||
|
msgid "website by %1$s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/gravityforms.php:45
|
||||||
|
msgid "Required"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/initial-values.php:39
|
||||||
|
msgid "Incorrect details input"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/initial-values.php:42
|
||||||
|
#: includes/login-warning.php:21
|
||||||
|
msgid "Authorised access only"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/initial-values.php:43
|
||||||
|
#: includes/login-warning.php:21
|
||||||
|
msgid "Disconnect immediately and do not attempt to log in if you are not an authorised user"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/media-file-size.php:25
|
||||||
|
msgid "File Size"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/posts-rename-news.php:16
|
||||||
|
#: includes/posts-rename-news.php:19
|
||||||
|
#: includes/posts-rename-news.php:38
|
||||||
|
#: includes/posts-rename-news.php:43
|
||||||
|
#: includes/posts-rename-news.php:49
|
||||||
|
#: includes/posts-rename-news.php:50
|
||||||
|
#: includes/posts-rename-news.php:66
|
||||||
|
msgid "News"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/posts-rename-news.php:20
|
||||||
|
#: includes/posts-rename-news.php:40
|
||||||
|
#: includes/posts-rename-news.php:41
|
||||||
|
msgid "Add news article"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/posts-rename-news.php:21
|
||||||
|
msgid "News tags"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/posts-rename-news.php:39
|
||||||
|
msgid "News article"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/posts-rename-news.php:42
|
||||||
|
msgid "Edit news"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/posts-rename-news.php:44
|
||||||
|
msgid "View news"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/posts-rename-news.php:45
|
||||||
|
msgid "Search news"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/posts-rename-news.php:46
|
||||||
|
msgid "No news found"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/posts-rename-news.php:47
|
||||||
|
msgid "No news found in trash"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/posts-rename-news.php:48
|
||||||
|
msgid "All news articles"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/posts-rename-news.php:87
|
||||||
|
msgid "News article restored to revision from"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/posts-rename-news.php:97
|
||||||
|
msgid "News updated."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/posts-rename-news.php:99
|
||||||
|
#: includes/posts-rename-news.php:107
|
||||||
|
msgid "View news article"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/posts-rename-news.php:105
|
||||||
|
msgid "News article published."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/posts-rename-news.php:113
|
||||||
|
msgid "News article submitted."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/posts-rename-news.php:115
|
||||||
|
#: includes/posts-rename-news.php:124
|
||||||
|
#: includes/posts-rename-news.php:132
|
||||||
|
msgid "Preview news article"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/posts-rename-news.php:121
|
||||||
|
msgid "News article scheduled for:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/posts-rename-news.php:130
|
||||||
|
msgid "News draft updated."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/posts-rename-news.php:141
|
||||||
|
msgid "Custom field updated."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/posts-rename-news.php:142
|
||||||
|
msgid "Custom field deleted."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/posts-rename-news.php:143
|
||||||
|
msgid "News article updated."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/posts-rename-news.php:146
|
||||||
|
msgid "News article saved."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/show-ids.php:9
|
||||||
|
msgid "ID"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/upgrade-current-version.php:11
|
||||||
|
msgid "Current Version"
|
||||||
|
msgstr ""
|
||||||
@@ -0,0 +1,355 @@
|
|||||||
|
# Copyright (C) 2022
|
||||||
|
# This file is distributed under the same license as the Custom Fields Account Registration For Woocommerce plugin.
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Custom Fields Account Registration For Woocommerce 1.0\n"
|
||||||
|
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/custom-fields-account-for-woocommerce-registration\n"
|
||||||
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"POT-Creation-Date: 2022-07-04T06:12:53+02:00\n"
|
||||||
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
|
"X-Generator: WP-CLI 2.5.0\n"
|
||||||
|
"X-Domain: custom-fields-account-for-woocommerce-registration\n"
|
||||||
|
|
||||||
|
#. Plugin Name of the plugin
|
||||||
|
msgid "Custom Fields Account Registration For Woocommerce"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Description of the plugin
|
||||||
|
msgid "This plugin allows create Custom Fields Registration plugin."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/cfafwr_backend.php:3
|
||||||
|
msgid "Custom Fields Registration"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/cfafwr_backend.php:3
|
||||||
|
msgid "Settings"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/cfafwr_backend.php:10
|
||||||
|
msgid "Custom Fields For Woocommerce Registration"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/cfafwr_backend.php:16
|
||||||
|
msgid "Your Settings Updated Successfully...!"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/cfafwr_backend.php:22
|
||||||
|
msgid "Your Field Deleted Successfully...!"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/cfafwr_backend.php:31
|
||||||
|
msgid "General Setting"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/cfafwr_backend.php:32
|
||||||
|
#: main/backend/cfafwr_backend.php:142
|
||||||
|
msgid "Registration Fields"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/cfafwr_backend.php:41
|
||||||
|
msgid "Enable Authentication"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/cfafwr_backend.php:49
|
||||||
|
msgid "Enable User Registration Email"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/cfafwr_backend.php:57
|
||||||
|
msgid "User Registration Email Subject Message"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/cfafwr_backend.php:65
|
||||||
|
msgid "User Registration Email Body Message"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/cfafwr_backend.php:74
|
||||||
|
msgid "Hide Field labels"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/cfafwr_backend.php:85
|
||||||
|
msgid "Change Login/Register Title Text"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/cfafwr_backend.php:94
|
||||||
|
msgid "Change Login Title Text"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/cfafwr_backend.php:102
|
||||||
|
msgid "Change Register Title Text"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/cfafwr_backend.php:110
|
||||||
|
msgid "Field Required Message Text"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/cfafwr_backend.php:119
|
||||||
|
msgid "Change My Account Custom Tab Title Text"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/cfafwr_backend.php:127
|
||||||
|
msgid "Change My Account Custom Tab Form Heading Text"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/cfafwr_backend.php:189
|
||||||
|
msgid "Add registration fields"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/cfafwr_backend.php:216
|
||||||
|
msgid "Country Field Settings"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/cfafwr_backend.php:220
|
||||||
|
msgid "State Field Show By Selected Country"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/cfafwr_backend.php:228
|
||||||
|
msgid "State Field Required"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/cfafwr_backend.php:236
|
||||||
|
msgid "State Field Title Text"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/cfafwr_backend.php:245
|
||||||
|
msgid "State Field Slug"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/cfafwr_backend.php:254
|
||||||
|
msgid "State Field Size"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/cfafwr_backend.php:267
|
||||||
|
msgid "Add a country field then you can see the State field"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/cfafwr_backend.php:268
|
||||||
|
msgid "Add Country Field"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/cfafwr_backend.php:314
|
||||||
|
msgid "Custom Registration Field Type"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/cfafwr_backend.php:346
|
||||||
|
msgid "Text"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/cfafwr_backend.php:347
|
||||||
|
msgid "Number"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/cfafwr_backend.php:348
|
||||||
|
msgid "Phone"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/cfafwr_backend.php:349
|
||||||
|
msgid "Email"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/cfafwr_backend.php:350
|
||||||
|
msgid "Url"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/cfafwr_backend.php:351
|
||||||
|
msgid "Country"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/cfafwr_backend.php:352
|
||||||
|
msgid "File Upload"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/cfafwr_backend.php:353
|
||||||
|
msgid "Password"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/cfafwr_backend.php:354
|
||||||
|
msgid "Textarea"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/cfafwr_backend.php:355
|
||||||
|
#: main/backend/cfafwr_backend.php:516
|
||||||
|
msgid "Custom Html"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/cfafwr_backend.php:356
|
||||||
|
msgid "Color Picker"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/cfafwr_backend.php:357
|
||||||
|
msgid "Time Picker"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/cfafwr_backend.php:358
|
||||||
|
msgid "Date Picker"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/cfafwr_backend.php:359
|
||||||
|
msgid "Radio"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/cfafwr_backend.php:360
|
||||||
|
msgid "Checkbox"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/cfafwr_backend.php:361
|
||||||
|
msgid "Multiple Checkbox"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/cfafwr_backend.php:362
|
||||||
|
msgid "Select"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/cfafwr_backend.php:363
|
||||||
|
msgid "Multi Select"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/cfafwr_backend.php:364
|
||||||
|
msgid "Hidden"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/cfafwr_backend.php:371
|
||||||
|
msgid "Field Label"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/cfafwr_backend.php:383
|
||||||
|
msgid "Field Slug Name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/cfafwr_backend.php:399
|
||||||
|
msgid "Field Required?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/cfafwr_backend.php:410
|
||||||
|
msgid "Field Size"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/cfafwr_backend.php:417
|
||||||
|
msgid "Full Width"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/cfafwr_backend.php:418
|
||||||
|
msgid "Half Width"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/cfafwr_backend.php:424
|
||||||
|
msgid "Field Options"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/cfafwr_backend.php:432
|
||||||
|
msgid "Add Field Options"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/cfafwr_backend.php:485
|
||||||
|
msgid "Field Placeholder"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/cfafwr_backend.php:495
|
||||||
|
msgid "Select Countries"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/cfafwr_backend.php:527
|
||||||
|
msgid "Add Custom Class"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/cfafwr_backend.php:632
|
||||||
|
msgid "Add New Field"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/cfafwr_backend.php:633
|
||||||
|
msgid "Add New Field "
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/cfafwr_backend.php:634
|
||||||
|
msgid "New "
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/cfafwr_backend.php:635
|
||||||
|
msgid "Edit "
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/cfafwr_backend.php:636
|
||||||
|
msgid "View "
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/cfafwr_backend.php:637
|
||||||
|
msgid "All "
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/cfafwr_backend.php:638
|
||||||
|
msgid "Search "
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/cfafwr_backend.php:639
|
||||||
|
msgid "Parent "
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/cfafwr_backend.php:640
|
||||||
|
msgid "No Register Field found."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/cfafwr_backend.php:641
|
||||||
|
msgid "No Register Field found in Trash."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/cfafwr_backend.php:646
|
||||||
|
msgid "Description"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/cfafwr_backend.php:714
|
||||||
|
msgid "Custom Fields"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/cfafwr_backend.php:774
|
||||||
|
msgid "select option"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/cfafwr_backend.php:794
|
||||||
|
#: main/frontend/cfafwr_frontend.php:98
|
||||||
|
#: main/frontend/cfafwr_frontend.php:591
|
||||||
|
msgid "Select Your Country"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/cfafwr_backend.php:818
|
||||||
|
#: main/frontend/cfafwr_frontend.php:127
|
||||||
|
#: main/frontend/cfafwr_frontend.php:614
|
||||||
|
#: main/frontend/cfafwr_frontend.php:834
|
||||||
|
msgid "Select Your State"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/cfafwr_backend.php:1017
|
||||||
|
msgid "Enable"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/cfafwr_backend.php:1025
|
||||||
|
msgid "Yes"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/cfafwr_backend.php:1027
|
||||||
|
msgid "No"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/frontend/cfafwr_frontend.php:74
|
||||||
|
#: main/frontend/cfafwr_frontend.php:571
|
||||||
|
msgid "Select Option"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/frontend/cfafwr_frontend.php:461
|
||||||
|
msgid "Your account has been created succefully."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/frontend/cfafwr_frontend.php:467
|
||||||
|
msgid "Thanks for creating an account on {site_name}."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/frontend/cfafwr_frontend.php:766
|
||||||
|
msgid "Your Fields Saved Successfully...!"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/frontend/cfafwr_frontend.php:772
|
||||||
|
msgid "You have not any data for custom fields...!"
|
||||||
|
msgstr ""
|
||||||
@@ -0,0 +1,342 @@
|
|||||||
|
# Copyright (C) 2021 thingsym
|
||||||
|
# This file is distributed under the GPLv2 or later.
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Cycle Blocks 1.1.0\n"
|
||||||
|
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/cycle-blocks\n"
|
||||||
|
"POT-Creation-Date: 2022-09-29T11:00:00+00:00\n"
|
||||||
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
"Language: \n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"X-Generator: WP-CLI 2.5.0\n"
|
||||||
|
"X-Domain: cycle-blocks\n"
|
||||||
|
|
||||||
|
#. Plugin Name of the plugin
|
||||||
|
#: inc/class-cycle-blocks.php:136
|
||||||
|
msgid "Cycle Blocks"
|
||||||
|
msgstr "サイクルブロック"
|
||||||
|
|
||||||
|
#. Plugin URI of the plugin
|
||||||
|
msgid "https://github.com/thingsym/cycle-blocks"
|
||||||
|
msgstr "https://github.com/thingsym/cycle-blocks"
|
||||||
|
|
||||||
|
#. Description of the plugin
|
||||||
|
msgid ""
|
||||||
|
"Cycle Blocks plugin is a collection of block for block themes (Full Site "
|
||||||
|
"Editing)."
|
||||||
|
msgstr "Cycle Blocks plugin is a collection of block for block themes (Full Site "
|
||||||
|
"Editing)."
|
||||||
|
|
||||||
|
#. Author of the plugin
|
||||||
|
msgid "thingsym"
|
||||||
|
msgstr "thingsym"
|
||||||
|
|
||||||
|
#. Author URI of the plugin
|
||||||
|
msgid "https://www.thingslabo.com/"
|
||||||
|
msgstr "https://www.thingslabo.com/"
|
||||||
|
|
||||||
|
#: inc/class-cycle-blocks.php:202
|
||||||
|
msgid "Become a sponsor"
|
||||||
|
msgstr "スポンサーになる"
|
||||||
|
|
||||||
|
#: src/blocks/profile/class-profile.php:106 src/blocks/profile/edit.js:448
|
||||||
|
msgid "(no title)"
|
||||||
|
msgstr "(タイトルなし)"
|
||||||
|
|
||||||
|
#: src/blocks/sitemap/class-sitemap.php:56
|
||||||
|
msgid "Page"
|
||||||
|
msgstr "ページ"
|
||||||
|
|
||||||
|
#: src/blocks/sitemap/class-sitemap.php:82
|
||||||
|
msgid "Blog"
|
||||||
|
msgstr "ブログ"
|
||||||
|
|
||||||
|
#: src/blocks/sitemap/class-sitemap.php:95
|
||||||
|
msgid "Category"
|
||||||
|
msgstr "カテゴリ"
|
||||||
|
|
||||||
|
#: src/blocks/sitemap/class-sitemap.php:108
|
||||||
|
msgid "Author"
|
||||||
|
msgstr "投稿者"
|
||||||
|
|
||||||
|
#: src/blocks/fontawesome-icons/edit.js:83
|
||||||
|
msgid "Icon settings"
|
||||||
|
msgstr "アイコンの設定"
|
||||||
|
|
||||||
|
#: src/blocks/fontawesome-icons/edit.js:87
|
||||||
|
msgid "Enable inline block"
|
||||||
|
msgstr "インラインブロックにする"
|
||||||
|
|
||||||
|
#: src/blocks/fontawesome-icons/edit.js:98
|
||||||
|
msgid "Icon Size"
|
||||||
|
msgstr "アイコンのサイズ"
|
||||||
|
|
||||||
|
#: src/blocks/fontawesome-icons/edit.js:106
|
||||||
|
msgid "Icons"
|
||||||
|
msgstr "アイコン一覧"
|
||||||
|
|
||||||
|
#: src/blocks/fontawesome-icons/edit.js:118
|
||||||
|
msgid "Color Settings"
|
||||||
|
msgstr "色の設定"
|
||||||
|
|
||||||
|
#: src/blocks/fontawesome-icons/edit.js:124
|
||||||
|
msgid "Icon Color"
|
||||||
|
msgstr "アイコンカラー"
|
||||||
|
|
||||||
|
#: src/blocks/fontawesome-icons/edit.js:129
|
||||||
|
msgid "Background Color"
|
||||||
|
msgstr "背景画像"
|
||||||
|
|
||||||
|
#: src/blocks/page-list/edit.js:44
|
||||||
|
msgid "List"
|
||||||
|
msgstr "リスト"
|
||||||
|
|
||||||
|
#: src/blocks/page-list/edit.js:48
|
||||||
|
msgid "Card"
|
||||||
|
msgstr "カード"
|
||||||
|
|
||||||
|
#: src/blocks/page-list/edit.js:52
|
||||||
|
msgid "Topics"
|
||||||
|
msgstr "トピック"
|
||||||
|
|
||||||
|
#: src/blocks/page-list/edit.js:56
|
||||||
|
msgid "Article"
|
||||||
|
msgstr "記事"
|
||||||
|
|
||||||
|
#: src/blocks/page-list/edit.js:67
|
||||||
|
msgid "menu_order"
|
||||||
|
msgstr "順序順"
|
||||||
|
|
||||||
|
#: src/blocks/page-list/edit.js:71
|
||||||
|
msgid "post_title"
|
||||||
|
msgstr "タイトル順"
|
||||||
|
|
||||||
|
#: src/blocks/page-list/edit.js:75
|
||||||
|
msgid "post_date"
|
||||||
|
msgstr "投稿日順"
|
||||||
|
|
||||||
|
#: src/blocks/page-list/edit.js:79
|
||||||
|
msgid "post_modified"
|
||||||
|
msgstr "更新日順"
|
||||||
|
|
||||||
|
#: src/blocks/page-list/edit.js:83
|
||||||
|
msgid "ID"
|
||||||
|
msgstr "ID順"
|
||||||
|
|
||||||
|
#: src/blocks/page-list/edit.js:94
|
||||||
|
msgid "ASC"
|
||||||
|
msgstr "昇順 (過去から、1->9 または A->Z)"
|
||||||
|
|
||||||
|
#: src/blocks/page-list/edit.js:98
|
||||||
|
msgid "DESC"
|
||||||
|
msgstr "降順 (最新から、9->1 または Z->A)"
|
||||||
|
|
||||||
|
#: src/blocks/page-list/edit.js:108
|
||||||
|
msgid "Settings"
|
||||||
|
msgstr "設定"
|
||||||
|
|
||||||
|
#: src/blocks/page-list/edit.js:110
|
||||||
|
msgid "Post ID"
|
||||||
|
msgstr "投稿ID"
|
||||||
|
|
||||||
|
#: src/blocks/page-list/edit.js:119
|
||||||
|
msgid "Layout"
|
||||||
|
msgstr "レイアウト"
|
||||||
|
|
||||||
|
#: src/blocks/page-list/edit.js:129
|
||||||
|
msgid "Sort Column"
|
||||||
|
msgstr "カラムをソート"
|
||||||
|
|
||||||
|
#: src/blocks/page-list/edit.js:139
|
||||||
|
msgid "Sort Order"
|
||||||
|
msgstr "順序をソート"
|
||||||
|
|
||||||
|
#: src/blocks/page-list/edit.js:150
|
||||||
|
msgid "Display Ancestor"
|
||||||
|
msgstr "親ページの表示"
|
||||||
|
|
||||||
|
#: src/blocks/page-list/edit.js:161
|
||||||
|
msgid "Depth"
|
||||||
|
msgstr "深さ"
|
||||||
|
|
||||||
|
#: src/blocks/page-list/edit.js:174 src/blocks/profile/edit.js:263
|
||||||
|
msgid "Columns"
|
||||||
|
msgstr "カラム"
|
||||||
|
|
||||||
|
#: src/blocks/page-list/edit.js:186 src/blocks/profile/edit.js:282
|
||||||
|
msgid "Display featured image"
|
||||||
|
msgstr "画像の表示"
|
||||||
|
|
||||||
|
#: src/blocks/page-list/edit.js:215
|
||||||
|
msgid ""
|
||||||
|
"Not Found pages. If the Post ID is blank or not a post/page, it cannot be "
|
||||||
|
"viewed in the editor."
|
||||||
|
msgstr "ページがありません。Post ID がブランク、または投稿/ページでない場合、エディターに表示できません。"
|
||||||
|
|
||||||
|
#: src/blocks/profile/edit.js:156
|
||||||
|
msgid "List view"
|
||||||
|
msgstr "リスト表示"
|
||||||
|
|
||||||
|
#: src/blocks/profile/edit.js:162
|
||||||
|
msgid "Grid view"
|
||||||
|
msgstr "グリッド表示"
|
||||||
|
|
||||||
|
#: src/blocks/profile/edit.js:198
|
||||||
|
msgid "Profile Settings"
|
||||||
|
msgstr "プロフィールの設定"
|
||||||
|
|
||||||
|
#: src/blocks/profile/edit.js:209
|
||||||
|
msgid "Show title"
|
||||||
|
msgstr "タイトルを表示"
|
||||||
|
|
||||||
|
#: src/blocks/profile/edit.js:216
|
||||||
|
msgid "Show avatar"
|
||||||
|
msgstr "アバター画像を表示"
|
||||||
|
|
||||||
|
#: src/blocks/profile/edit.js:224
|
||||||
|
msgid "Avatar size"
|
||||||
|
msgstr "アバター画像サイズ"
|
||||||
|
|
||||||
|
#: src/blocks/profile/edit.js:235
|
||||||
|
msgid "Show bio"
|
||||||
|
msgstr "プロフィール情報を表示"
|
||||||
|
|
||||||
|
#: src/blocks/profile/edit.js:242
|
||||||
|
msgid "Show recent posts"
|
||||||
|
msgstr "最新の投稿を表示"
|
||||||
|
|
||||||
|
#: src/blocks/profile/edit.js:251
|
||||||
|
msgid "Number of Posts"
|
||||||
|
msgstr "投稿数"
|
||||||
|
|
||||||
|
#: src/blocks/profile/edit.js:312
|
||||||
|
msgid ""
|
||||||
|
"Not Found authorId. If the User is blank or not a post/page, it cannot be "
|
||||||
|
"viewed in the editor."
|
||||||
|
msgstr "authorId がありません。ユーザがブランク、または投稿/ページがない場合、エディターに表示できません。"
|
||||||
|
|
||||||
|
#: src/blocks/profile/edit.js:334
|
||||||
|
msgid "Title"
|
||||||
|
msgstr "タイトル"
|
||||||
|
|
||||||
|
#: src/blocks/profile/edit.js:335 src/blocks/profile/edit.js:390
|
||||||
|
msgid "Write title…"
|
||||||
|
msgstr "タイトルを書く"
|
||||||
|
|
||||||
|
#: src/blocks/profile/edit.js:362
|
||||||
|
msgid "Post author byline text"
|
||||||
|
msgstr "投稿者の署名欄"
|
||||||
|
|
||||||
|
#: src/blocks/profile/edit.js:363
|
||||||
|
msgid "Write byline…"
|
||||||
|
msgstr "署名欄を書く"
|
||||||
|
|
||||||
|
#: src/blocks/profile/edit.js:373
|
||||||
|
msgid "Post Author"
|
||||||
|
msgstr "投稿者"
|
||||||
|
|
||||||
|
#: src/blocks/profile/edit.js:389
|
||||||
|
msgid "Author title"
|
||||||
|
msgstr "投稿者のタイトル"
|
||||||
|
|
||||||
|
#: src/blocks/sitemap/edit.js:26
|
||||||
|
msgid "Sitemap settings"
|
||||||
|
msgstr "サイトマップの設定"
|
||||||
|
|
||||||
|
#: src/blocks/sitemap/edit.js:28
|
||||||
|
msgid "Display Page"
|
||||||
|
msgstr "ページの表示"
|
||||||
|
|
||||||
|
#: src/blocks/sitemap/edit.js:37
|
||||||
|
msgid "Display Post"
|
||||||
|
msgstr "投稿の表示"
|
||||||
|
|
||||||
|
#: src/blocks/sitemap/edit.js:46
|
||||||
|
msgid "Display Category"
|
||||||
|
msgstr "カテゴリの表示"
|
||||||
|
|
||||||
|
#: src/blocks/sitemap/edit.js:55
|
||||||
|
msgid "Display Author"
|
||||||
|
msgstr "投稿者の表示"
|
||||||
|
|
||||||
|
#: src/blocks/sitemap/edit.js:77
|
||||||
|
msgid "Empty"
|
||||||
|
msgstr "空です。"
|
||||||
|
|
||||||
|
#: src/helper/featured-image-upload-control/index.js:84
|
||||||
|
msgid "Can not upload the image. you need permission to upload media."
|
||||||
|
msgstr "画像をアップロードできません。メディアをアップロードする権限がありません。"
|
||||||
|
|
||||||
|
#: src/helper/featured-image-upload-control/index.js:90
|
||||||
|
#: src/helper/featured-image-upload-control/index.js:95
|
||||||
|
msgid "Featured image"
|
||||||
|
msgstr "アイキャッチ画像"
|
||||||
|
|
||||||
|
#: src/helper/featured-image-upload-control/index.js:111
|
||||||
|
msgid "Set featured image"
|
||||||
|
msgstr "アイキャッチ画像の設定"
|
||||||
|
|
||||||
|
#: src/helper/featured-image-upload-control/index.js:138
|
||||||
|
msgid "Remove image"
|
||||||
|
msgstr "アイキャッチ画像を削除"
|
||||||
|
|
||||||
|
#: src/helper/user-control/index.js:37
|
||||||
|
msgid "User"
|
||||||
|
msgstr "ユーザ"
|
||||||
|
|
||||||
|
#: src/helper/user-control/index.js:38
|
||||||
|
msgid ""
|
||||||
|
"Select the user to display, if it is blank it will use the post/page author."
|
||||||
|
msgstr "表示したいユーザを選んでください。空白の場合は、その投稿またはページの投稿者が選択されます。"
|
||||||
|
|
||||||
|
#: src/blocks/fontawesome-icons/block.json
|
||||||
|
msgctxt "block title"
|
||||||
|
msgid "Fontawesome Icons"
|
||||||
|
msgstr "Fontawesome アイコン"
|
||||||
|
|
||||||
|
#: src/blocks/fontawesome-icons/block.json
|
||||||
|
msgctxt "block description"
|
||||||
|
msgid "Display a Fontawesome Icon."
|
||||||
|
msgstr "Fontawesome アイコンを表示"
|
||||||
|
|
||||||
|
#: src/blocks/fontawesome-icons/block.json
|
||||||
|
msgctxt "block keyword"
|
||||||
|
msgid "icon"
|
||||||
|
msgstr "アイコン"
|
||||||
|
|
||||||
|
#: src/blocks/page-list/block.json
|
||||||
|
msgctxt "block title"
|
||||||
|
msgid "Page List"
|
||||||
|
msgstr "ページリスト"
|
||||||
|
|
||||||
|
#: src/blocks/page-list/block.json
|
||||||
|
msgctxt "block description"
|
||||||
|
msgid "list page."
|
||||||
|
msgstr "ページをリスト化"
|
||||||
|
|
||||||
|
#: src/blocks/profile/block.json
|
||||||
|
msgctxt "block title"
|
||||||
|
msgid "Profile"
|
||||||
|
msgstr "プロフィール"
|
||||||
|
|
||||||
|
#: src/blocks/profile/block.json
|
||||||
|
msgctxt "block description"
|
||||||
|
msgid "Display profile."
|
||||||
|
msgstr "プロフィールを表示"
|
||||||
|
|
||||||
|
#: src/blocks/sitemap/block.json
|
||||||
|
msgctxt "block title"
|
||||||
|
msgid "Sitemap"
|
||||||
|
msgstr "サイトマップ"
|
||||||
|
|
||||||
|
#: src/blocks/sitemap/block.json
|
||||||
|
msgctxt "block description"
|
||||||
|
msgid "Display sitemap."
|
||||||
|
msgstr "サイトマップを表示"
|
||||||
|
|
||||||
|
#~ msgid "Not Found authorId"
|
||||||
|
#~ msgstr "authorId がありません"
|
||||||
@@ -0,0 +1,138 @@
|
|||||||
|
# Copyright (C) 2022 Roy Orbison
|
||||||
|
# This file is distributed under the same license as the Database Access with Adminer plugin.
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Database Access with Adminer 1.0.0\n"
|
||||||
|
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/db-access-adminer\n"
|
||||||
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"POT-Creation-Date: 2022-07-12T14:08:55+10:00\n"
|
||||||
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
|
"X-Generator: WP-CLI 2.6.0\n"
|
||||||
|
"X-Domain: db-access-adminer\n"
|
||||||
|
|
||||||
|
#. Plugin Name of the plugin
|
||||||
|
msgid "Database Access with Adminer"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Description of the plugin
|
||||||
|
msgid "Direct database administration using the open source Adminer application."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Author of the plugin
|
||||||
|
msgid "Roy Orbison"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Author URI of the plugin
|
||||||
|
msgid "https://profiles.wordpress.org/lev0/"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: db-access-adminer.php:66
|
||||||
|
msgid "Open Adminer"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: open and close <em> tag
|
||||||
|
#: db-access-adminer.php:70
|
||||||
|
msgid "The link is also found under the %sTools%s menu."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: db-access-adminer.php:103
|
||||||
|
msgid "Unknown design selection."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: db-access-adminer.php:134
|
||||||
|
msgid "Failed to set design."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: db-access-adminer.php:156
|
||||||
|
msgid "Alternative design"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: db-access-adminer.php:173
|
||||||
|
msgid "Change the theme Adminer uses."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: db-access-adminer.php:184
|
||||||
|
msgid "Auto-submit Adminer's login form"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: db-access-adminer.php:195
|
||||||
|
msgid "Adminer has its own login system which must still be activated, even though this plugin limits access. It's slightly more secure to submit it manually at the cost of a little convenience."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: db-access-adminer.php:215
|
||||||
|
msgid "I accept"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: open and close <strong> tag on consequences, WP capability name
|
||||||
|
#: db-access-adminer.php:227
|
||||||
|
msgid "This tool enables direct editing of your database, which can be very useful. However, if you are unfamiliar with it, %syou risk irreversible loss of or damage to your site's data%s. This includes losing access to your site admin pages if you modify records in the users table. It is recommended you do not use this tool unless you have a regular backup regime. It will also be available to all accounts that have the %s capability (normally admins), so you may wish to limit other accounts' access now. Checking this box means you understand this and accept the risk."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: db-access-adminer.php:243
|
||||||
|
msgid "Adminer"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: db-access-adminer.php:257
|
||||||
|
msgid "Unable to override menu link."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: db-access-adminer.php:284
|
||||||
|
msgid "Settings"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: PHP config setting name
|
||||||
|
#: db-access-adminer.php:400
|
||||||
|
msgid "You need the cURL PHP extension enabled, or the %s PHP config setting on to use this tool."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: 1: open tag of link to WP admin 2: close tag 3: WP capability name
|
||||||
|
#: db-access-adminer.php:455
|
||||||
|
msgid "You must be %1$slogged in to WordPress%2$s and possess the %3$s capability to use this tool."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: open and close tags of link to plugin settings
|
||||||
|
#: db-access-adminer.php:464
|
||||||
|
msgid "Ensure you have completed %sAdminer setup%s and addressed missing requirements, if any."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: db-access-adminer.php:471
|
||||||
|
msgid "Could not create one or more ephemeral files for Adminer. Write access to the plugin directory is required."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: open and close tags of link to plugin settings
|
||||||
|
#: db-access-adminer.php:475
|
||||||
|
msgid "Could not load one or more ephemeral files from WordPress. The plugin may not be %sset up%s correctly."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: db-access-adminer.php:482
|
||||||
|
msgid "Credentials were not shared because they could not first be secured."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: db-access-adminer.php:485
|
||||||
|
msgid "Could not read secured credentials. Try again."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: db-access-adminer.php:488
|
||||||
|
msgid "Could not communicate with WordPress. It may be being blocked."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: db-access-adminer.php:491
|
||||||
|
msgid "Database communication error."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: db-access-adminer.php:494
|
||||||
|
msgid "Could not load Adminer."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: db-access-adminer.php:497
|
||||||
|
msgid "An unknown error has occurred."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: no specific design selected
|
||||||
|
#: db-access-adminer.php:599
|
||||||
|
msgid "default"
|
||||||
|
msgstr ""
|
||||||
@@ -0,0 +1,62 @@
|
|||||||
|
# Copyright (C) 2022 Greg Perham
|
||||||
|
# This file is distributed under the same license as the Delete Unscaled Images plugin.
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Delete Unscaled Images 1.2.4\n"
|
||||||
|
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/delete-unscaled-images\n"
|
||||||
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"POT-Creation-Date: 2022-11-01T01:49:54+00:00\n"
|
||||||
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
|
"X-Generator: WP-CLI 2.7.1\n"
|
||||||
|
"X-Domain: sgdui\n"
|
||||||
|
|
||||||
|
#. Plugin Name of the plugin
|
||||||
|
msgid "Delete Unscaled Images"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Description of the plugin
|
||||||
|
msgid "Deletes original image files if they have been resized."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Author of the plugin
|
||||||
|
msgid "Greg Perham"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Author URI of the plugin
|
||||||
|
msgid "https://github.com/swinggraphics?tab=repositories"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: delete-unscaled-images.php:45
|
||||||
|
#: delete-unscaled-images.php:57
|
||||||
|
msgid "Bulk Delete Unscaled Images"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: delete-unscaled-images.php:46
|
||||||
|
msgid "Delete Unscaled"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: delete-unscaled-images.php:58
|
||||||
|
msgid "Delete all original, unscaled image files."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: delete-unscaled-images.php:62
|
||||||
|
msgid "Done!"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: delete-unscaled-images.php:82
|
||||||
|
msgid "No unscaled original"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: %s is replaced by file name
|
||||||
|
#: delete-unscaled-images.php:90
|
||||||
|
msgid "Deleted %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: %s is replaced by file name
|
||||||
|
#: delete-unscaled-images.php:96
|
||||||
|
msgid "Error deleting %s"
|
||||||
|
msgstr ""
|
||||||
32
spec/fixtures/dynamic_finders/plugin_version/dev-debug-tools/change_log/changelog.txt
vendored
Normal file
32
spec/fixtures/dynamic_finders/plugin_version/dev-debug-tools/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,32 @@
|
|||||||
|
== changelog.txt ==
|
||||||
|
= 1.3.1 =
|
||||||
|
* Add shortcode finder
|
||||||
|
* Allow posts and pages to be searched by ID in the admin area
|
||||||
|
* Fix order of admin bar items
|
||||||
|
* Add online users
|
||||||
|
* Add quick debug links to Gravity Forms action links
|
||||||
|
* Change admin bar user info to existing wp-account so Debug Bar will work
|
||||||
|
* Minimize space at top of each page
|
||||||
|
* Fix log path notice
|
||||||
|
* Fix PHP warnings
|
||||||
|
|
||||||
|
= 1.3.0 =
|
||||||
|
* Add filter for omitting shortcodes from shortcode finder, good for minimizing page builders
|
||||||
|
* Allow disabling of admin bar items
|
||||||
|
* Fix beta htaccess editing, was in test mode
|
||||||
|
* Add resource dropdown to admin bar
|
||||||
|
* Add more resources
|
||||||
|
* Add jQuery versions
|
||||||
|
* Add Cron Jobs tab
|
||||||
|
* Add Add Cookies tab
|
||||||
|
* Add PHP Info tab
|
||||||
|
* Add WP.org links to About tab
|
||||||
|
* Fix test # when not used
|
||||||
|
* Fix bug not finding Gravity Form forms on admin bar if added via Cornerstone element
|
||||||
|
* Fix bug not allowing updating user or post meta keys that are not all lowercase
|
||||||
|
|
||||||
|
= 1.2.0 =
|
||||||
|
* Prepare for release to WP.org repository
|
||||||
|
|
||||||
|
= 1.0.0 =
|
||||||
|
* Created this plugin on May 13, 2022
|
||||||
@@ -0,0 +1,112 @@
|
|||||||
|
# Copyright (C) 2022 SaffireTech
|
||||||
|
# This file is distributed under the same license as the Discontinued Product Stock Status for WooCommerce plugin.
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Discontinued Product Stock Status for WooCommerce 1.0.0\n"
|
||||||
|
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/discontinued-products-stock-status\n"
|
||||||
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"POT-Creation-Date: 2022-05-20T18:38:02+05:30\n"
|
||||||
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
|
"X-Generator: WP-CLI 2.5.0\n"
|
||||||
|
"X-Domain: discontinued-products-stock-status\n"
|
||||||
|
|
||||||
|
#. Plugin Name of the plugin
|
||||||
|
msgid "Discontinued Product Stock Status for WooCommerce"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Description of the plugin
|
||||||
|
msgid "a plugin to add custom messages to discontinued product page."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Author of the plugin
|
||||||
|
msgid "SaffireTech"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Author URI of the plugin
|
||||||
|
msgid "https://saffiretech.com/"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/dpssw-functions.php:181
|
||||||
|
#: includes/dpssw-functions.php:185
|
||||||
|
#: includes/dpssw-functions.php:247
|
||||||
|
#: includes/dpssw-functions.php:251
|
||||||
|
#: includes/dpssw-product-data-tabs.php:192
|
||||||
|
msgid "This product has been discontinued"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/dpssw-product-data-tabs.php:13
|
||||||
|
#: includes/dpssw-settings.php:7
|
||||||
|
#: includes/dpssw-settings.php:8
|
||||||
|
msgid "Discontinued Products"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/dpssw-product-data-tabs.php:42
|
||||||
|
msgid "Discontinued this product"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/dpssw-product-data-tabs.php:43
|
||||||
|
msgid "Check this box if you want, to discontinue this variable product."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/dpssw-product-data-tabs.php:51
|
||||||
|
msgid "Product Message Type"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/dpssw-product-data-tabs.php:55
|
||||||
|
#: includes/dpssw-product-data-tabs.php:123
|
||||||
|
msgid "Global Message"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/dpssw-product-data-tabs.php:56
|
||||||
|
msgid "Product Specific Message"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/dpssw-product-data-tabs.php:59
|
||||||
|
#: includes/dpssw-product-data-tabs.php:127
|
||||||
|
msgid "Choose type of message to be displayed for Discontinued product"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/dpssw-product-data-tabs.php:118
|
||||||
|
msgid "Variations Message Type"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/dpssw-product-data-tabs.php:124
|
||||||
|
msgid "Variation Specific Message"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/dpssw-product-data-tabs.php:136
|
||||||
|
msgid "Discontinued description"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/dpssw-product-data-tabs.php:198
|
||||||
|
msgid "This product variation has been discontinued"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/dpssw-product-data-tabs.php:247
|
||||||
|
#: includes/dpssw-product-data-tabs.php:278
|
||||||
|
msgid "Discontinued"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/dpssw-settings.php:23
|
||||||
|
msgid "Discontinued products global settings"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/dpssw-settings.php:84
|
||||||
|
msgid "Show in Catalog"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/dpssw-settings.php:85
|
||||||
|
msgid "Enable Custom Message"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/dpssw-settings.php:86
|
||||||
|
msgid "Enter the Global Message"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/dpssw-settings.php:87
|
||||||
|
msgid "Apply Grayscale Effect"
|
||||||
|
msgstr ""
|
||||||
@@ -0,0 +1,117 @@
|
|||||||
|
# Copyright (C) 2020 Direct SMB
|
||||||
|
# This file is distributed under the same license as the Direct SMB payments for WooCommerce plugin.
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Dlocal Go payments for WooCommerce 1.0.0\n"
|
||||||
|
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/woocommerce-"
|
||||||
|
"directsmb-checkout\n"
|
||||||
|
"POT-Creation-Date: 2020-08-21 17:49+0000\n"
|
||||||
|
"PO-Revision-Date: 2020-08-24 14:40-0300\n"
|
||||||
|
"Last-Translator: pablo <pablo@gmail.com>\n"
|
||||||
|
"Language-Team: Spanish (Peru)\n"
|
||||||
|
"Language: es_PE\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"X-Generator: Poedit 2.3\n"
|
||||||
|
"X-Domain: wc-directsmb\n"
|
||||||
|
"X-Poedit-Basepath: ../includes\n"
|
||||||
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
"X-Loco-Version: 2.3.1; wp-5.3.4\n"
|
||||||
|
"X-Poedit-SearchPath-0: .\n"
|
||||||
|
|
||||||
|
#: woocommerce-dlocalgo-checkout.php:73
|
||||||
|
msgid "Configure"
|
||||||
|
msgstr "Configurar"
|
||||||
|
|
||||||
|
#: woocommerce-dlocalgo-checkout.php:94
|
||||||
|
msgid "The store must have HTTPS to work with Dlocal Go."
|
||||||
|
msgstr "La tienda debe tener HTTPS para trabajar con Dlocal Go."
|
||||||
|
|
||||||
|
#: includes/class-wc-gateway-dlocalgo-plugin.php:24
|
||||||
|
msgid "Dlocal Go Checkout"
|
||||||
|
msgstr "Dlocal Go Checkout"
|
||||||
|
|
||||||
|
#: includes/class-wc-gateway-dlocalgo-plugin.php:25
|
||||||
|
msgid ""
|
||||||
|
"Dlocal Go Checkout redirects customers to Dlocal Go to generate local "
|
||||||
|
"payments"
|
||||||
|
msgstr ""
|
||||||
|
"Dlocal Go Checkout redije a los clientes hacia Dlocal Go para generar "
|
||||||
|
"pagos locales"
|
||||||
|
|
||||||
|
#: includes/class-wc-gateway-dlocalgo-plugin.php:55
|
||||||
|
msgid "Enable/Disable"
|
||||||
|
msgstr "Activar/Desactivar"
|
||||||
|
|
||||||
|
#: includes/class-wc-gateway-dlocalgo-plugin.php:57
|
||||||
|
msgid "Enable Dlocal Go Checkout"
|
||||||
|
msgstr "Active Dlocal Go Checkout"
|
||||||
|
|
||||||
|
#: includes/class-wc-gateway-dlocalgo-plugin.php:62
|
||||||
|
msgid "Title"
|
||||||
|
msgstr "Título"
|
||||||
|
|
||||||
|
#: includes/class-wc-gateway-dlocalgo-plugin.php:64
|
||||||
|
msgid ""
|
||||||
|
"This controls the title for the payment method the customer sees during "
|
||||||
|
"checkout."
|
||||||
|
msgstr ""
|
||||||
|
"Esto controla el título del método de pago que el cliente ve durante el pago."
|
||||||
|
|
||||||
|
#. Author of the plugin
|
||||||
|
#: includes/class-wc-gateway-dlocalgo-plugin.php:65
|
||||||
|
msgid "Dlocal Go"
|
||||||
|
msgstr "Dlocal Go"
|
||||||
|
|
||||||
|
#: includes/class-wc-gateway-dlocalgo-plugin.php:70
|
||||||
|
msgid "Description"
|
||||||
|
msgstr "Descripción"
|
||||||
|
|
||||||
|
#: includes/class-wc-gateway-dlocalgo-plugin.php:72
|
||||||
|
msgid "Payment method description that the customer will see on your checkout."
|
||||||
|
msgstr "Descripción del método de pago que el cliente verá en su pago."
|
||||||
|
|
||||||
|
#: includes/class-wc-gateway-dlocalgo-plugin.php:73
|
||||||
|
msgid "Pay using Dlocal Go Checkout."
|
||||||
|
msgstr "Pagar utilizando el checkout de Dlocal Go."
|
||||||
|
|
||||||
|
#: includes/class-wc-gateway-dlocalgo-plugin.php:78
|
||||||
|
msgid "Api Key"
|
||||||
|
msgstr "API Key"
|
||||||
|
|
||||||
|
#: includes/class-wc-gateway-dlocalgo-plugin.php:80
|
||||||
|
msgid "Your Dlocal Go API key."
|
||||||
|
msgstr "Su API key de Dlocal Go."
|
||||||
|
|
||||||
|
#: includes/class-wc-gateway-dlocalgo-plugin.php:105
|
||||||
|
msgid "No redirect URL"
|
||||||
|
msgstr "No hay URL de redirección"
|
||||||
|
|
||||||
|
#: includes/class-wc-gateway-dlocalgo-client.php:64
|
||||||
|
msgid "There was a problem connecting to Dlocal Go."
|
||||||
|
msgstr "Hubo un problema de conexión con Dlocal Go."
|
||||||
|
|
||||||
|
#: includes/class-wc-gateway-dlocalgo-client.php:68
|
||||||
|
msgid "There was an error in your request."
|
||||||
|
msgstr "Hubo un error en la solicitud."
|
||||||
|
|
||||||
|
#: includes/class-wc-gateway-dlocalgo-client.php:72
|
||||||
|
msgid "Dlocal Go did not return any data."
|
||||||
|
msgstr "Dlocal Go no ha retornado información."
|
||||||
|
|
||||||
|
#. Plugin Name of the plugin
|
||||||
|
msgid "Dlocal Go payments for WooCommerce"
|
||||||
|
msgstr "Dlocal Go para WooCommerce"
|
||||||
|
|
||||||
|
#. Description of the plugin
|
||||||
|
msgid ""
|
||||||
|
"Accept local payment methods for LATAM using your Dlocal Go Merchant "
|
||||||
|
"account."
|
||||||
|
msgstr ""
|
||||||
|
"Acepte métodos de pago locales para LATAM utilizando su cuenta de Dlocal Go "
|
||||||
|
"Pago."
|
||||||
|
|
||||||
|
#. Author URI of the plugin
|
||||||
|
msgid "https://www.dlocalgo.com"
|
||||||
|
msgstr "https://www.dlocalgo.com"
|
||||||
@@ -0,0 +1,331 @@
|
|||||||
|
# Copyright (C) 2022 matrixaddons
|
||||||
|
# This file is distributed under the GPL2+.
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Document Engine 1.0.1\n"
|
||||||
|
"Report-Msgid-Bugs-To: matrixaddons@gmail.com\n"
|
||||||
|
"POT-Creation-Date: 2022-04-12 08:43:53+00:00\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=utf-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"PO-Revision-Date: 2022-MO-DA HO:MI+ZONE\n"
|
||||||
|
"Last-Translator: matrixaddons <matrixaddons@gmail.com>\n"
|
||||||
|
"Language-Team: matrixaddons <matrixaddons@gmail.com>\n"
|
||||||
|
"X-Generator: grunt-wp-i18n 1.0.3\n"
|
||||||
|
|
||||||
|
#: includes/Admin/Main.php:62
|
||||||
|
msgid "Settings"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/Admin/Settings/PDF.php:22
|
||||||
|
msgid "PDF Download Settings"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/Admin/Settings/PDF.php:35
|
||||||
|
msgid "Button"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/Admin/Settings/PDF.php:36
|
||||||
|
msgid "Header & Footer"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/Admin/Settings/PDF.php:37
|
||||||
|
msgid "Page"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/Admin/Settings/PDF.php:38
|
||||||
|
msgid "Style"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/Admin/Settings/PDF.php:82
|
||||||
|
msgid "PDF Page Setup"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/Admin/Settings/PDF.php:88
|
||||||
|
msgid "Page orientation"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/Admin/Settings/PDF.php:93
|
||||||
|
msgid "Vertical"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/Admin/Settings/PDF.php:94
|
||||||
|
msgid "Horizontal"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/Admin/Settings/PDF.php:98
|
||||||
|
msgid "Font Size"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/Admin/Settings/PDF.php:99
|
||||||
|
msgid "Font Size in (pt)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/Admin/Settings/PDF.php:104
|
||||||
|
msgid "Margin left"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/Admin/Settings/PDF.php:105
|
||||||
|
msgid "Margin left in (pt)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/Admin/Settings/PDF.php:111
|
||||||
|
msgid "Margin right"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/Admin/Settings/PDF.php:112
|
||||||
|
msgid "Margin right in (pt)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/Admin/Settings/PDF.php:118
|
||||||
|
msgid "Margin Top"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/Admin/Settings/PDF.php:119
|
||||||
|
msgid "Margin Top in (pt)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/Admin/Settings/PDF.php:125
|
||||||
|
msgid "Margin Bottom"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/Admin/Settings/PDF.php:126
|
||||||
|
msgid "Margin Bottom in (pt)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/Admin/Settings/PDF.php:132
|
||||||
|
msgid "Margin Header"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/Admin/Settings/PDF.php:133
|
||||||
|
msgid "Margin Header in (pt)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/Admin/Settings/PDF.php:139
|
||||||
|
msgid "Enable PDF protection"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/Admin/Settings/PDF.php:140
|
||||||
|
msgid " Encrypts PDF file and respects permissions given below"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/Admin/Settings/PDF.php:146
|
||||||
|
msgid "Protected PDF permissions"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/Admin/Settings/PDF.php:152
|
||||||
|
msgid "Keep columns"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/Admin/Settings/PDF.php:153
|
||||||
|
msgid ""
|
||||||
|
" Columns will be written successively ([document_engine_pdf_columns] "
|
||||||
|
"shortcode). i.e. there will be no balancing of the length of columns."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/Admin/Settings/PDF.php:168
|
||||||
|
msgid "PDF Style"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/Admin/Settings/PDF.php:174
|
||||||
|
msgid "Use current theme's CSS"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/Admin/Settings/PDF.php:175
|
||||||
|
msgid ""
|
||||||
|
" Includes the stylesheet from current theme, but is overridden by PDF "
|
||||||
|
"Custom CSS and plugins adding its own stylesheets."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/Admin/Settings/PDF.php:182
|
||||||
|
msgid "Custom CSS"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/Admin/Settings/PDF.php:198
|
||||||
|
msgid "PDF Header"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/Admin/Settings/PDF.php:204
|
||||||
|
msgid "Header Logo"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/Admin/Settings/PDF.php:210 includes/Admin/Settings/PDF.php:267
|
||||||
|
msgid "Show Post Title"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/Admin/Settings/PDF.php:211
|
||||||
|
msgid "Show post title on pdf header"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/Admin/Settings/PDF.php:217 includes/Admin/Settings/PDF.php:274
|
||||||
|
msgid "Show Page Number"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/Admin/Settings/PDF.php:218
|
||||||
|
msgid "Show page number on pdf header"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/Admin/Settings/PDF.php:225
|
||||||
|
msgid "Header font Size"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/Admin/Settings/PDF.php:226 includes/Admin/Settings/PDF.php:282
|
||||||
|
msgid "Font Size in (pt). Leave it blank to use default page font size"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/Admin/Settings/PDF.php:237
|
||||||
|
msgid "PDF Page Footer"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/Admin/Settings/PDF.php:244
|
||||||
|
msgid "Footer text"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/Admin/Settings/PDF.php:246
|
||||||
|
msgid "HTML tags supports: a, br, em, strong, hr, p, h1 to h4"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/Admin/Settings/PDF.php:268
|
||||||
|
msgid "Show post title on pdf footer"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/Admin/Settings/PDF.php:275
|
||||||
|
msgid "Show page number on pdf footer"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/Admin/Settings/PDF.php:281
|
||||||
|
msgid "Footer font Size"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/Admin/Settings/PDF.php:299
|
||||||
|
msgid "PDF Button"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/Admin/Settings/PDF.php:305
|
||||||
|
msgid "Button text"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/Admin/Settings/PDF.php:311
|
||||||
|
msgid "Post types to apply"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/Admin/Settings/PDF.php:317
|
||||||
|
msgid "Action"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/Admin/Settings/PDF.php:321
|
||||||
|
msgid "Open PDF in new window"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/Admin/Settings/PDF.php:322
|
||||||
|
msgid "Download PDF directly"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/Admin/Settings/PDF.php:327
|
||||||
|
msgid "Button Position"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/Admin/Settings/PDF.php:331
|
||||||
|
msgid "Before Content"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/Admin/Settings/PDF.php:332
|
||||||
|
msgid "After Content"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/Admin/Settings/PDF.php:337
|
||||||
|
msgid "Button Alignment"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/Admin/Settings/PDF.php:341
|
||||||
|
msgid "Left"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/Admin/Settings/PDF.php:342
|
||||||
|
msgid "Right"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/Admin/Settings/PDF.php:343
|
||||||
|
msgid "Center"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/Admin/Settings.php:59
|
||||||
|
msgid "Your settings have been saved."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/Admin/Settings.php:667
|
||||||
|
msgid "Select a page…"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/Admin/Settings.php:733
|
||||||
|
msgid "Add New"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/Admin/views/html-admin-settings.php:48
|
||||||
|
msgid "Save changes"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/Assets.php:37
|
||||||
|
msgid "URL"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/Assets.php:38
|
||||||
|
msgid "File"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/Assets.php:41
|
||||||
|
msgid "Pixel"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/Assets.php:42
|
||||||
|
msgid "Percentage"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Plugin Name of the plugin/theme
|
||||||
|
msgid "Document Engine"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/Helpers/main.php:31
|
||||||
|
msgid "post"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/Helpers/main.php:32
|
||||||
|
msgid "page"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/Helpers/main.php:33
|
||||||
|
msgid "attachment"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/Helpers/settings.php:5
|
||||||
|
msgid "Download PDF"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/Helpers/template.php:19
|
||||||
|
#. translators: %s template
|
||||||
|
msgid "%s does not exist."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/Helpers/template.php:36
|
||||||
|
msgid ""
|
||||||
|
"action_args should not be overwritten when calling "
|
||||||
|
"document_engine_get_template."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Plugin URI of the plugin/theme
|
||||||
|
msgid "https://wordpress.org/plugins/document-engine"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Description of the plugin/theme
|
||||||
|
msgid ""
|
||||||
|
"WordPress to PDF plugin that convert any post type to PDF document & PDF "
|
||||||
|
"viewer block"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Author of the plugin/theme
|
||||||
|
msgid "matrixaddons"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Author URI of the plugin/theme
|
||||||
|
msgid "https://profiles.wordpress.org/matrixaddons"
|
||||||
|
msgstr ""
|
||||||
2
spec/fixtures/dynamic_finders/plugin_version/document-library-lite/change_log/changelog.txt
vendored
Normal file
2
spec/fixtures/dynamic_finders/plugin_version/document-library-lite/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
= 1.0 =
|
||||||
|
Initial release.
|
||||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,32 @@
|
|||||||
|
{
|
||||||
|
"name": "downloadlist",
|
||||||
|
"version": "1.0.3",
|
||||||
|
"description": "Provides a Gutenberg block for capturing a download list with file type specific icons.",
|
||||||
|
"author": "threadi",
|
||||||
|
"license": "GPL-2.0-or-later",
|
||||||
|
"main": "build/index.js",
|
||||||
|
"scripts": {
|
||||||
|
"build": "wp-scripts build",
|
||||||
|
"format": "wp-scripts format",
|
||||||
|
"lint:css": "wp-scripts lint-style",
|
||||||
|
"lint:js": "wp-scripts lint-js",
|
||||||
|
"start": "wp-scripts start",
|
||||||
|
"packages-update": "wp-scripts packages-update"
|
||||||
|
},
|
||||||
|
"devDependencies": {
|
||||||
|
"@wordpress/scripts": "^20.0.2",
|
||||||
|
"mini-css-extract-plugin": "2.5.3",
|
||||||
|
"npm-pack-zip": "^1.3.0"
|
||||||
|
},
|
||||||
|
"dependencies": {
|
||||||
|
"@wordpress/i18n": "^4.3.0",
|
||||||
|
"@wordpress/icons": "^6.2.0",
|
||||||
|
"ansi-regex": "^5.0.1",
|
||||||
|
"gutenberg-sortable": "^1.0.5",
|
||||||
|
"markdown-it": "^12.3.2",
|
||||||
|
"node-fetch": "^2.6.7",
|
||||||
|
"nth-check": "^2.0.1",
|
||||||
|
"react-sortable-hoc": "^2.0.0",
|
||||||
|
"yargs-parser": "^13.1.2"
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,5 @@
|
|||||||
|
### 1.0.1: 23.09.2022
|
||||||
|
* Fixed: Checking group administrators ( [#1](https://github.com/WPChill/download-monitor-learndash-integration/issues/1) )
|
||||||
|
|
||||||
|
### 1.0.0: TBA
|
||||||
|
* Initial Release
|
||||||
@@ -0,0 +1,2 @@
|
|||||||
|
### 1.0.0: TBA
|
||||||
|
* Initial Release
|
||||||
2
spec/fixtures/dynamic_finders/plugin_version/dr-widgets-blocks/change_log/changelog.txt
vendored
Normal file
2
spec/fixtures/dynamic_finders/plugin_version/dr-widgets-blocks/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
1.0.0: 2022-07-04
|
||||||
|
- New Feature: Initial Release.
|
||||||
File diff suppressed because it is too large
Load Diff
7
spec/fixtures/dynamic_finders/plugin_version/dropp-pay-tipping/change_log/changelog.txt
vendored
Normal file
7
spec/fixtures/dynamic_finders/plugin_version/dropp-pay-tipping/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
== Changelog ==
|
||||||
|
|
||||||
|
= 1.1.0 =
|
||||||
|
* Added support for HBAR and USDC
|
||||||
|
|
||||||
|
= 1.0.0 =
|
||||||
|
* Initial release of Dropp micropayment enabled plugin with Donation/tipping form and a loaded Like button.
|
||||||
6
spec/fixtures/dynamic_finders/plugin_version/dropship-sell-your-art/change_log/changelog.md
vendored
Normal file
6
spec/fixtures/dynamic_finders/plugin_version/dropship-sell-your-art/change_log/changelog.md
vendored
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
# Changelog
|
||||||
|
|
||||||
|
= 1.1.0 =
|
||||||
|
* Switched Printful authentication from API key to Private Token
|
||||||
|
* Changed how we get the users default Printful currency
|
||||||
|
* Loaded jQuery locally instead of relying on WordPress default admin jQuery
|
||||||
@@ -0,0 +1,80 @@
|
|||||||
|
# Copyright (C) 2022
|
||||||
|
# This file is distributed under the same license as the Dynamic text field for contact form 7 plugin.
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Dynamic text field for contact form 7 1.0\n"
|
||||||
|
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/dynamic-text-field-for-contact-form-7\n"
|
||||||
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"POT-Creation-Date: 2022-05-17T14:42:47+02:00\n"
|
||||||
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
|
"X-Generator: WP-CLI 2.6.0\n"
|
||||||
|
"X-Domain: dynamic-text-field-for-contact-form-7\n"
|
||||||
|
|
||||||
|
#. Plugin Name of the plugin
|
||||||
|
msgid "Dynamic text field for contact form 7"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Description of the plugin
|
||||||
|
msgid "This plugin allows Dynamic text and field for contact form 7"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/DYFCF7_frontend.php:94
|
||||||
|
#: main/backend/DYFCF7_frontend.php:97
|
||||||
|
msgid "Field type"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/DYFCF7_frontend.php:98
|
||||||
|
msgid "Required field"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/DYFCF7_frontend.php:105
|
||||||
|
msgid "Name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/DYFCF7_frontend.php:114
|
||||||
|
msgid "Id attribute"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/DYFCF7_frontend.php:124
|
||||||
|
msgid "Class attribute"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/DYFCF7_frontend.php:133
|
||||||
|
msgid "dynamic text field"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/DYFCF7_frontend.php:138
|
||||||
|
msgid "Add Here Any Shortcode"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/DYFCF7_frontend.php:139
|
||||||
|
msgid "remove square brackets <code> [] </code> "
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/DYFCF7_frontend.php:140
|
||||||
|
msgid "so ex.<code> [shortcode attribute='value'] </code> add like this <code> shortcode attribute='value' </code>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/DYFCF7_frontend.php:141
|
||||||
|
msgid "and on attribut value not use single Quotes not use double Quotes "
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/DYFCF7_frontend.php:153
|
||||||
|
msgid "Insert Tag"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/DYFCF7_frontend.php:158
|
||||||
|
msgid "To use the value input through this field in a mail field, you need to insert the corresponding mail-tag (%s) into the field on the Mail tab."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/DYFCF7_frontend.php:168
|
||||||
|
msgid "shortcodefield"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: main/backend/DYFCF7_frontend.php:178
|
||||||
|
msgid "shortcodehidden"
|
||||||
|
msgstr ""
|
||||||
@@ -0,0 +1,28 @@
|
|||||||
|
{
|
||||||
|
"name": "getkevin/kevin-woocommerce",
|
||||||
|
"description": "E-Commerce payment gateway plugin for kevin. client.",
|
||||||
|
"type": "wordpress-plugin",
|
||||||
|
"version": "3.2.2",
|
||||||
|
"license": "MIT",
|
||||||
|
"authors": [
|
||||||
|
{
|
||||||
|
"name": "kevin.",
|
||||||
|
"email": "info@kevin.eu"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"support": {
|
||||||
|
"email": "support@kevin.eu"
|
||||||
|
},
|
||||||
|
"scripts": {
|
||||||
|
"fix-style": "vendor/bin/php-cs-fixer fix --config ./.php.cs.fixer.php --allow-risky=yes",
|
||||||
|
"check-style": "vendor/bin/php-cs-fixer fix --config ./.php.cs.fixer.php --allow-risky=yes --dry-run --verbose"
|
||||||
|
},
|
||||||
|
"require-dev": {
|
||||||
|
"friendsofphp/php-cs-fixer": "^2.19"
|
||||||
|
},
|
||||||
|
"require": {
|
||||||
|
"php": ">=5.6",
|
||||||
|
"ext-json": "*",
|
||||||
|
"getkevin/kevin-php": "0.16.2"
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,134 @@
|
|||||||
|
# Blank WordPress Pot
|
||||||
|
# Copyright 2014 ...
|
||||||
|
# This file is distributed under the GNU General Public License v3 or later.
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Blank WordPress Pot v1.0.0\n"
|
||||||
|
"Report-Msgid-Bugs-To: Translator Name <translations@example.com>\n"
|
||||||
|
"POT-Creation-Date: 2022-04-28 20:38+0900\n"
|
||||||
|
"PO-Revision-Date: \n"
|
||||||
|
"Last-Translator: \n"
|
||||||
|
"Language-Team: Your Team <translations@example.com>\n"
|
||||||
|
"Language: en_US\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-Textdomain-Support: yesX-Generator: Poedit 1.6.4\n"
|
||||||
|
"X-Poedit-SourceCharset: UTF-8\n"
|
||||||
|
"X-Poedit-KeywordsList: __;_e;esc_html_e;esc_html_x:1,2c;esc_html__;"
|
||||||
|
"esc_attr_e;esc_attr_x:1,2c;esc_attr__;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;"
|
||||||
|
"_x:1,2c;_n:1,2;_n_noop:1,2;__ngettext:1,2;__ngettext_noop:1,2;_c,_nc:4c,1,2\n"
|
||||||
|
"X-Poedit-Basepath: ..\n"
|
||||||
|
"X-Generator: Poedit 3.0.1\n"
|
||||||
|
"X-Poedit-SearchPath-0: .\n"
|
||||||
|
|
||||||
|
#: class.easy-attendance-post.php:29
|
||||||
|
msgid "TEGOS勤怠"
|
||||||
|
msgstr "Easy Attendance"
|
||||||
|
|
||||||
|
#: class.easy-attendance-post.php:31
|
||||||
|
msgid "てご勤怠"
|
||||||
|
msgstr "Easy Attendance"
|
||||||
|
|
||||||
|
#: class.easy-attendance-post.php:32
|
||||||
|
msgid "勤怠一覧"
|
||||||
|
msgstr "Attendance List"
|
||||||
|
|
||||||
|
#: class.easy-attendance-post.php:33
|
||||||
|
msgid "勤怠追加"
|
||||||
|
msgstr "Add Attendance"
|
||||||
|
|
||||||
|
#: class.easy-attendance-post.php:34
|
||||||
|
msgid "勤怠を追加"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: class.easy-attendance-post.php:35
|
||||||
|
msgid "勤怠を編集"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: class.easy-attendance-post.php:77
|
||||||
|
msgid "TEGOSきんたい"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: class.easy-attendance-post.php:87
|
||||||
|
msgid "勤怠CSV出力"
|
||||||
|
msgstr "CSV Export"
|
||||||
|
|
||||||
|
#: class.easy-attendance-post.php:88
|
||||||
|
msgid "CSV出力"
|
||||||
|
msgstr "CSV Export"
|
||||||
|
|
||||||
|
#: class.easy-attendance-setting.php:27 class.easy-attendance-setting.php:36
|
||||||
|
msgid "Tegos 設定画面"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: class.easy-attendance-setting.php:28
|
||||||
|
msgid "Tegos "
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: class.easy-attendance-setting.php:37
|
||||||
|
msgid "タイトル設定"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: easy-attendance.php:59
|
||||||
|
msgid "社員AA"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: easy-attendance.php:60
|
||||||
|
msgid "社員BB"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: easy-attendance.php:61
|
||||||
|
msgid "社員CC"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: easy-attendance.php:62
|
||||||
|
msgid "社員DD"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: easy-attendance.php:63
|
||||||
|
msgid "社員EE"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: views/outputcsv.php:7
|
||||||
|
msgid ""
|
||||||
|
"When you click the button below WordPress will create an CSV file for you to "
|
||||||
|
"save to your computer."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: views/outputcsv.php:9
|
||||||
|
msgid "Choose what to export"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: views/outputcsv.php:16
|
||||||
|
msgid "Download Export CSV File"
|
||||||
|
msgstr "Download Export CSV File"
|
||||||
|
|
||||||
|
#: views/setting.php:2
|
||||||
|
msgid "項目タイトル設定"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: views/setting.php:12
|
||||||
|
msgid "名前の説明"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: views/setting.php:22
|
||||||
|
msgid "日付の説明"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: views/setting.php:32
|
||||||
|
msgid "開始時間の説明"
|
||||||
|
msgstr "Explanation of Start time"
|
||||||
|
|
||||||
|
#: views/setting.php:42
|
||||||
|
msgid "終了時間の説明"
|
||||||
|
msgstr "Explanation of End time"
|
||||||
|
|
||||||
|
#: views/setting.php:52
|
||||||
|
msgid "時間の説明"
|
||||||
|
msgstr "Explanation of Time"
|
||||||
|
|
||||||
|
#: views/setting.php:62
|
||||||
|
msgid "メモの説明"
|
||||||
|
msgstr "Explanation of memo"
|
||||||
@@ -0,0 +1,39 @@
|
|||||||
|
# Copyright (C) 2022 matrixaddons
|
||||||
|
# This file is distributed under the GPL2+.
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Easy Customizer 1.0.1\n"
|
||||||
|
"Report-Msgid-Bugs-To: matrixaddons@gmail.com\n"
|
||||||
|
"POT-Creation-Date: 2022-11-03 05:18:18+00:00\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=utf-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"PO-Revision-Date: 2022-MO-DA HO:MI+ZONE\n"
|
||||||
|
"Last-Translator: matrixaddons <matrixaddons@gmail.com>\n"
|
||||||
|
"Language-Team: matrixaddons <matrixaddons@gmail.com>\n"
|
||||||
|
"X-Generator: grunt-wp-i18n 1.0.3\n"
|
||||||
|
|
||||||
|
#: includes/Admin/Main.php:83 includes/Admin/Main.php:84
|
||||||
|
#: includes/Hooks/AdminBarHook.php:48
|
||||||
|
msgid "Customize"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Plugin Name of the plugin/theme
|
||||||
|
msgid "Easy Customizer"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Plugin URI of the plugin/theme
|
||||||
|
msgid "https://matrixaddons.com/downloads/easy-customizer/"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Description of the plugin/theme
|
||||||
|
msgid "Add Customize sub menu under Themes menu on block based themes"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Author of the plugin/theme
|
||||||
|
msgid "matrixaddons"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Author URI of the plugin/theme
|
||||||
|
msgid "https://profiles.wordpress.org/matrixaddons"
|
||||||
|
msgstr ""
|
||||||
2
spec/fixtures/dynamic_finders/plugin_version/easy-post-types-fields/change_log/changelog.txt
vendored
Normal file
2
spec/fixtures/dynamic_finders/plugin_version/easy-post-types-fields/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
= 1.0.0 =
|
||||||
|
Initial release.
|
||||||
@@ -0,0 +1,939 @@
|
|||||||
|
# Copyright (C) 2022 Barn2 Plugins
|
||||||
|
# This file is distributed under the GNU General Public License v3.0.
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Easy Post Types and Fields 1.0.0\n"
|
||||||
|
"Report-Msgid-Bugs-To: https://barn2.com/support-center/\n"
|
||||||
|
"Last-Translator: Barn2 Plugins <support@barn2.com>\n"
|
||||||
|
"Language-Team: Barn2 Plugins <support@barn2.com>\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"POT-Creation-Date: 2022-05-07T00:00:00+00:00\n"
|
||||||
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
|
"X-Generator: WP-CLI 2.6.0\n"
|
||||||
|
"X-Domain: easy-post-types-fields\n"
|
||||||
|
|
||||||
|
#. Plugin Name of the plugin
|
||||||
|
#: src/Admin/views/html-manage-page-header.php:22
|
||||||
|
msgid "Easy Post Types and Fields"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Plugin URI of the plugin
|
||||||
|
msgid "https://wordpress.org/plugins/easy-post-types-fields/"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Description of the plugin
|
||||||
|
msgid "Create custom post types, fields and taxonomies."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Author of the plugin
|
||||||
|
msgid "Barn2 Plugins"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Author URI of the plugin
|
||||||
|
msgid "https://barn2.com"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dependencies/src/Setup_Wizard.php:483
|
||||||
|
msgid "%s setup wizard"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dependencies/src/Setup_Wizard.php:617
|
||||||
|
#: dependencies/src/Setup_Wizard.php:625
|
||||||
|
#: dependencies/src/Setup_Wizard.php:660
|
||||||
|
msgid "Setup wizard"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dependencies/src/Setup_Wizard.php:620
|
||||||
|
msgid "If you need to access the setup wizard again, please click on the button below."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dependencies/src/Setup_Wizard.php:639
|
||||||
|
#: dependencies/src/Setup_Wizard.php:672
|
||||||
|
msgid "Warning: This will overwrite your existing settings for %s. Are you sure you want to continue?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dependencies/src/Steps/Cross_Selling.php:66
|
||||||
|
#: src/Admin/Wizard/Steps/Upsell.php:98
|
||||||
|
msgid "Something went wrong while retrieving the list of products. Please try again later."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dependencies/src/Steps/Welcome.php:25
|
||||||
|
#: dependencies/src/Steps/Welcome_Free.php:23
|
||||||
|
#: src/Admin/Wizard/Steps/Welcome.php:25
|
||||||
|
msgid "Welcome"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dependencies/src/Steps/Welcome.php:33
|
||||||
|
msgid "License key"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dependencies/src/Steps/Welcome.php:33
|
||||||
|
msgid "Enter your license key to start using the plugin."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dependencies/src/Steps/Welcome.php:33
|
||||||
|
msgid "The licence key is contained in your order confirmation email."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dependencies/src/Steps/Welcome.php:53
|
||||||
|
msgid "You are not allowed to retrieve license details."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dependencies/src/Steps/Welcome.php:65
|
||||||
|
#: dependencies/src/Steps/Welcome_Free.php:40
|
||||||
|
msgid "You are not allowed to validate your license."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dependencies/src/Steps/Welcome.php:69
|
||||||
|
msgid "Please enter a license key."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/Admin/Settings_API_Helper.php:459
|
||||||
|
msgid "Size"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/Admin/Settings_Util.php:56
|
||||||
|
#: src/Util.php:441
|
||||||
|
msgid "Documentation"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/Admin/Settings_Util.php:61
|
||||||
|
#: src/Util.php:442
|
||||||
|
msgid "Support"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/Util.php:30
|
||||||
|
msgid "Read more"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/Admin_Controller.php:86
|
||||||
|
msgid "Settings"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/CPT_Editor.php:75
|
||||||
|
#: src/Util.php:296
|
||||||
|
msgid "Post types"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/CPT_Editor.php:76
|
||||||
|
msgid "Post type"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/CPT_Editor.php:77
|
||||||
|
msgid "Add new"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/CPT_Editor.php:78
|
||||||
|
msgid "Add new post type"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/CPT_Editor.php:79
|
||||||
|
#: src/Admin/CPT_Editor.php:273
|
||||||
|
msgid "Edit post type"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/CPT_Editor.php:80
|
||||||
|
msgid "New post type"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/CPT_Editor.php:81
|
||||||
|
msgid "View post type"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/CPT_Editor.php:82
|
||||||
|
msgid "View post types"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/CPT_Editor.php:83
|
||||||
|
msgid "Search custom post types"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/CPT_Editor.php:84
|
||||||
|
msgid "No custom post types have been created yet."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/CPT_Editor.php:86
|
||||||
|
msgid "All post types"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/CPT_Editor.php:87
|
||||||
|
msgid "Post Type Attributes"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/CPT_Editor.php:88
|
||||||
|
msgid "Filter post types list"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/CPT_Editor.php:89
|
||||||
|
msgid "Filter by date"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/CPT_Editor.php:90
|
||||||
|
msgid "Post types list navigation"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/CPT_Editor.php:91
|
||||||
|
msgid "Post types list"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/CPT_Editor.php:92
|
||||||
|
msgid "Post type published."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/CPT_Editor.php:93
|
||||||
|
msgid "Post type published privately."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/CPT_Editor.php:94
|
||||||
|
msgid "Post type reverted to draft."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/CPT_Editor.php:95
|
||||||
|
msgid "Post scheduled."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/CPT_Editor.php:96
|
||||||
|
msgid "Post updated."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/CPT_Editor.php:97
|
||||||
|
msgid "A link to a post type."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/CPT_Editor.php:99
|
||||||
|
msgid "Define a custom post type"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/CPT_Editor.php:176
|
||||||
|
#: src/Util.php:320
|
||||||
|
msgid "Custom fields"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/CPT_Editor.php:177
|
||||||
|
msgid "Custom field"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: 1: the plural name of the post type, 2: the opening tab of an anchor element, 3: the closing tag of an anchor element, 4: the singular name of the post type, 5: the plural name of the post type,
|
||||||
|
#: src/Admin/CPT_Editor.php:179
|
||||||
|
msgid "Use custom fields to store extra data about your %1$s, such as a reference number or link. Custom fields are for data that is unique to each %4$s. If you want to use the data to organize or group your %5$s then you should create a %2$staxonomy%3$s instead."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/CPT_Editor.php:183
|
||||||
|
#: src/Admin/List_Tables/Post_Type_List_Table.php:367
|
||||||
|
#: src/Util.php:320
|
||||||
|
msgid "Taxonomies"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/CPT_Editor.php:184
|
||||||
|
msgid "Taxonomy"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: the plural name of the post type
|
||||||
|
#: src/Admin/CPT_Editor.php:186
|
||||||
|
msgid "Taxonomies let you organize and group your %1$s. For example, you might want to organize them by category, tag, year, author, or industry. If you need to add data that is unique to each %4$s then you should create a %2$scustom field%3$s instead."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/CPT_Editor.php:228
|
||||||
|
msgid "Post Types"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/CPT_Editor.php:229
|
||||||
|
msgid "Use this page to manage your custom post types. You can add and edit post types, custom fields and taxonomies."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/CPT_Editor.php:267
|
||||||
|
msgid "Manage Taxonomies"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/CPT_Editor.php:268
|
||||||
|
msgid "Manage Custom Fields"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/CPT_Editor.php:280
|
||||||
|
#: src/Admin/views/html-manage-page-lists.php:36
|
||||||
|
#: src/Util.php:333
|
||||||
|
msgid "Add"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/CPT_Editor.php:281
|
||||||
|
#: src/Admin/List_Tables/Custom_Field_List_Table.php:284
|
||||||
|
#: src/Admin/List_Tables/Custom_Field_List_Table.php:285
|
||||||
|
#: src/Admin/List_Tables/Post_Type_List_Table.php:536
|
||||||
|
#: src/Admin/List_Tables/Post_Type_List_Table.php:537
|
||||||
|
#: src/Admin/List_Tables/Taxonomy_List_Table.php:313
|
||||||
|
#: src/Admin/List_Tables/Taxonomy_List_Table.php:314
|
||||||
|
#: src/Util.php:333
|
||||||
|
msgid "Edit"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: either 'Add' or 'Edit'
|
||||||
|
#: src/Admin/CPT_Editor.php:285
|
||||||
|
msgid "%s Taxonomy"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: either 'Add' or 'Edit'
|
||||||
|
#: src/Admin/CPT_Editor.php:287
|
||||||
|
msgid "%s Custom Field"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/CPT_Editor.php:303
|
||||||
|
msgid "Display your post types and fields with Posts Table Pro"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/CPT_Editor.php:317
|
||||||
|
msgid "Restrict access to parts of your website with Password Protected Categories"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/CPT_Editor.php:385
|
||||||
|
msgid "The post type is missing or an error occurred when completing this operation."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/CPT_Editor.php:440
|
||||||
|
msgid "The slug of a post type is required."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/CPT_Editor.php:445
|
||||||
|
msgid "The slug of a post type must be 17 characters or less."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/CPT_Editor.php:450
|
||||||
|
msgid "The singular name of a post type is required."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/CPT_Editor.php:455
|
||||||
|
msgid "The plural name of a post type is required."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/CPT_Editor.php:469
|
||||||
|
msgid "A post type with the same slug is already registered. Please choose a different slug."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/CPT_Editor.php:520
|
||||||
|
msgid "The slug of a taxonomy is required."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: the maximum number of characters of the slug
|
||||||
|
#: src/Admin/CPT_Editor.php:535
|
||||||
|
msgid "The slug of a taxonomy for this post type must be %d characters or less."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/CPT_Editor.php:540
|
||||||
|
msgid "The singular name of a taxonomy is required."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/CPT_Editor.php:545
|
||||||
|
msgid "The plural name of a taxonomy is required."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/CPT_Editor.php:593
|
||||||
|
msgid "A taxonomy with the same slug is already registered to this post type. Please choose a different slug."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/CPT_Editor.php:635
|
||||||
|
msgid "The slug of a custom field is required."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/CPT_Editor.php:640
|
||||||
|
msgid "The name of a custom field is required."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/CPT_Editor.php:677
|
||||||
|
msgid "A field with the same slug is already registered to this post type. Please choose a different slug."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/List_Tables/Custom_Field_List_Table.php:92
|
||||||
|
msgid "No custom fields for this post type yet"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: a post type name followed by underscore
|
||||||
|
#: src/Admin/List_Tables/Custom_Field_List_Table.php:128
|
||||||
|
#: src/Admin/List_Tables/Taxonomy_List_Table.php:149
|
||||||
|
msgid "The slug is a unique code that you can use to identify the custom taxonomy. For example, you can use it to display the data with the Posts Table Pro plugin. If you are using the slug in other ways – for example for development purposes – then you should add the prefix '%1$s' before the slug, for example '%1$scategory' instead of just 'category'."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/List_Tables/Custom_Field_List_Table.php:134
|
||||||
|
#: src/Admin/List_Tables/Post_Type_List_Table.php:260
|
||||||
|
#: src/Admin/List_Tables/Taxonomy_List_Table.php:156
|
||||||
|
msgctxt "column name"
|
||||||
|
msgid "Name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/List_Tables/Custom_Field_List_Table.php:135
|
||||||
|
#: src/Admin/List_Tables/Post_Type_List_Table.php:261
|
||||||
|
#: src/Admin/List_Tables/Taxonomy_List_Table.php:157
|
||||||
|
msgctxt "column name"
|
||||||
|
msgid "Slug"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/List_Tables/Custom_Field_List_Table.php:136
|
||||||
|
msgctxt "column name"
|
||||||
|
msgid "Type"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: a custom field name
|
||||||
|
#. translators: a post type name
|
||||||
|
#. translators: the name of the taxonomy
|
||||||
|
#: src/Admin/List_Tables/Custom_Field_List_Table.php:209
|
||||||
|
#: src/Admin/List_Tables/Post_Type_List_Table.php:337
|
||||||
|
#: src/Admin/List_Tables/Taxonomy_List_Table.php:232
|
||||||
|
msgid "%s (Edit)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/List_Tables/Custom_Field_List_Table.php:292
|
||||||
|
#: src/Admin/List_Tables/Custom_Field_List_Table.php:293
|
||||||
|
#: src/Admin/List_Tables/Post_Type_List_Table.php:543
|
||||||
|
#: src/Admin/List_Tables/Post_Type_List_Table.php:545
|
||||||
|
#: src/Admin/List_Tables/Taxonomy_List_Table.php:321
|
||||||
|
#: src/Admin/List_Tables/Taxonomy_List_Table.php:322
|
||||||
|
msgid "Delete"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/List_Tables/Post_Type_List_Table.php:152
|
||||||
|
msgid "No custom post types found"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: %s: Number of posts.
|
||||||
|
#: src/Admin/List_Tables/Post_Type_List_Table.php:215
|
||||||
|
msgid "Easy Post Types <span class=\"count\">(%s)</span>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: %s: Number of posts.
|
||||||
|
#: src/Admin/List_Tables/Post_Type_List_Table.php:217
|
||||||
|
msgid "Other Post Types <span class=\"count\">(%s)</span>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/List_Tables/Post_Type_List_Table.php:255
|
||||||
|
msgid "The slug is a unique code that you can use to identify the custom post type. For example, you can use it to display the data with the Posts Table Pro plugin. If you are using the slug in other ways – for example for development purposes – then you should add the prefix 'ept_' before the slug, for example 'ept_article' instead of just 'article'."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/List_Tables/Post_Type_List_Table.php:256
|
||||||
|
msgid "Use custom fields for storing unique data about your custom posts, and use taxonomies for organizing and grouping the custom posts."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/List_Tables/Post_Type_List_Table.php:257
|
||||||
|
msgid "The current number of posts for the custom post type."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/List_Tables/Post_Type_List_Table.php:262
|
||||||
|
msgctxt "column name"
|
||||||
|
msgid "Custom Fields"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/List_Tables/Post_Type_List_Table.php:263
|
||||||
|
msgctxt "column name"
|
||||||
|
msgid "Taxonomies"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/List_Tables/Post_Type_List_Table.php:264
|
||||||
|
msgctxt "column name"
|
||||||
|
msgid "Actions"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/List_Tables/Post_Type_List_Table.php:265
|
||||||
|
msgctxt "column name"
|
||||||
|
msgid "Count"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/List_Tables/Post_Type_List_Table.php:366
|
||||||
|
#: src/Post_Types/Abstract_Post_Type.php:210
|
||||||
|
msgid "Custom Fields"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: %s: Post type plural name.
|
||||||
|
#. translators: the plural post type name
|
||||||
|
#. translators: the plural name of a taxonomy
|
||||||
|
#: src/Admin/List_Tables/Post_Type_List_Table.php:553
|
||||||
|
#: src/Admin/List_Tables/Post_Type_List_Table.php:555
|
||||||
|
#: src/Post_Types/Custom_Post_Type.php:133
|
||||||
|
#: src/Taxonomy.php:151
|
||||||
|
msgid "All %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/List_Tables/Taxonomy_List_Table.php:111
|
||||||
|
msgid "No taxonomies for this post type yet"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/List_Tables/Taxonomy_List_Table.php:153
|
||||||
|
#: src/Admin/views/html-manage-page-taxonomies.php:19
|
||||||
|
msgid "Hierarchical taxonomies have a nested parent/child structure like WordPress post categories, whereas non-hierarchical taxonomies are flat like tags."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/List_Tables/Taxonomy_List_Table.php:158
|
||||||
|
msgctxt "column name"
|
||||||
|
msgid "Hierarchical"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/List_Tables/Taxonomy_List_Table.php:264
|
||||||
|
msgid "Yes"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/List_Tables/Taxonomy_List_Table.php:264
|
||||||
|
msgid "No"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/List_Tables/Taxonomy_List_Table.php:329
|
||||||
|
#: src/Admin/List_Tables/Taxonomy_List_Table.php:330
|
||||||
|
msgid "Manage terms"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/views/html-manage-page-fields.php:45
|
||||||
|
#: src/Admin/Wizard/Steps/EPT_Name.php:25
|
||||||
|
msgid "Name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/views/html-manage-page-fields.php:51
|
||||||
|
#: src/Admin/views/html-manage-page-post_type.php:54
|
||||||
|
#: src/Admin/views/html-manage-page-taxonomies.php:54
|
||||||
|
msgid "Slug"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/views/html-manage-page-fields.php:57
|
||||||
|
msgid "Type"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/views/html-manage-page-header.php:38
|
||||||
|
msgid "Add New"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: either `Taxonomy` or `Custom field`
|
||||||
|
#: src/Admin/views/html-manage-page-lists.php:22
|
||||||
|
msgid "%s editor"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: 1: 'Add' or 'Update', 2: 'custom field' or 'taxonomy' phpcs:ignore Squiz.PHP.CommentedOutCode.Found
|
||||||
|
#: src/Admin/views/html-manage-page-lists.php:35
|
||||||
|
msgid "%1$s %2$s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/views/html-manage-page-lists.php:36
|
||||||
|
msgid "Update"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/views/html-manage-page-lists.php:37
|
||||||
|
#: assets/js/admin/ept-editor.js:38
|
||||||
|
msgid "taxonomy"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/views/html-manage-page-lists.php:37
|
||||||
|
#: assets/js/admin/ept-editor.js:38
|
||||||
|
msgid "custom field"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/views/html-manage-page-lists.php:46
|
||||||
|
#: src/Admin/views/html-manage-page-post_type.php:89
|
||||||
|
msgid "Cancel"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: either `Taxonomy` or `Custom field`
|
||||||
|
#. translators: the plural post type name
|
||||||
|
#. translators: the plural name of a taxonomy
|
||||||
|
#: src/Admin/views/html-manage-page-lists.php:56
|
||||||
|
#: src/Post_Types/Custom_Post_Type.php:147
|
||||||
|
#: src/Taxonomy.php:189
|
||||||
|
msgid "%s list"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/views/html-manage-page-post_type.php:42
|
||||||
|
#: src/Admin/views/html-manage-page-taxonomies.php:42
|
||||||
|
#: src/Admin/Wizard/Steps/EPT_Name.php:37
|
||||||
|
msgid "Singular name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/views/html-manage-page-post_type.php:48
|
||||||
|
#: src/Admin/views/html-manage-page-taxonomies.php:48
|
||||||
|
#: src/Admin/Wizard/Steps/EPT_Name.php:42
|
||||||
|
msgid "Plural name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/views/html-manage-page-post_type.php:60
|
||||||
|
#: src/Admin/Wizard/Steps/EPT_Features.php:26
|
||||||
|
msgid "Features"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/views/html-manage-page-post_type.php:80
|
||||||
|
msgid "Update post type"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/views/html-manage-page-taxonomies.php:44
|
||||||
|
msgid "e.g. Category"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/views/html-manage-page-taxonomies.php:50
|
||||||
|
msgid "e.g. Categories"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/views/html-manage-page-taxonomies.php:60
|
||||||
|
msgid "Hierarchical"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: 1: the opening tag of an anchor element, 2: the closing tag of an anchor element
|
||||||
|
#: src/Admin/views/html-promo-display.php:29
|
||||||
|
msgid "Once you have created your post types, custom fields and taxonomies, you can use %1$sPosts Table Pro%2$s to display them in a user-friendly table."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/views/html-promo-display.php:37
|
||||||
|
msgid "Posts Table Pro is a dynamic WordPress table plugin which lists any type of WordPress content in a searchable table. As well as displaying any custom post type, you can choose which columns of information to show in the table - including your custom fields and taxonomies."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/views/html-promo-display.php:40
|
||||||
|
msgid "Your website visitors can use the search box, sortable columns and filter dropdowns to find exactly what they are looking for."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: 1: the opening tag of an anchor element, 2: the closing tag of an anchor element
|
||||||
|
#: src/Admin/views/html-promo-protect.php:29
|
||||||
|
msgid "Do you need to control who can access your custom post types? You can easily do this with the %1$sPassword Protected Categories%2$s plugin."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/views/html-promo-protect.php:37
|
||||||
|
msgid "Password Protected Categories lets you restrict access to any or all of your categories or taxonomies."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/Wizard/Steps/Completed.php:25
|
||||||
|
#: src/Admin/Wizard/Steps/EPT_Ready.php:25
|
||||||
|
msgid "Ready"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: the plural name of a post type
|
||||||
|
#: src/Admin/Wizard/Steps/Completed.php:27
|
||||||
|
msgid "What would you like to do next?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: the singular name of a post type
|
||||||
|
#: src/Admin/Wizard/Steps/Completed.php:29
|
||||||
|
#: src/Admin/Wizard/Steps/EPT_Ready.php:29
|
||||||
|
msgid "The %s post type is ready!"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: the plural name of a post type
|
||||||
|
#: src/Admin/Wizard/Steps/EPT_Features.php:28
|
||||||
|
msgid "Choose which of the standard features you will use. Later, you can create custom fields and taxonomies for storing additional information."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: the plural name of a post type
|
||||||
|
#: src/Admin/Wizard/Steps/EPT_Features.php:30
|
||||||
|
msgid "What type of information do you need for your %s?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/Wizard/Steps/EPT_Features.php:93
|
||||||
|
msgid "It is not possible to create the post type with the current configuration."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/Wizard/Steps/EPT_Name.php:26
|
||||||
|
msgid "First, let's choose the name for your post type. This will appear as a link on the left hand side of the WordPress admin."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/Wizard/Steps/EPT_Name.php:27
|
||||||
|
msgid "What sort of content do you want to create?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/Wizard/Steps/EPT_Name.php:38
|
||||||
|
msgid "e.g. Article"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/Wizard/Steps/EPT_Name.php:43
|
||||||
|
msgid "e.g. Articles"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/Wizard/Steps/EPT_Name.php:58
|
||||||
|
msgid "Both fields must not be empty."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/Wizard/Steps/EPT_Name.php:64
|
||||||
|
msgid "The name of the post type cannot be longer than 17 characters."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/Wizard/Steps/EPT_Name.php:75
|
||||||
|
msgid "A post type with this name is already present. Please input a different name."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: the plural name of a post type
|
||||||
|
#: src/Admin/Wizard/Steps/EPT_Ready.php:27
|
||||||
|
msgid "Now, you can either add extra fields to your post type, or start adding new %s straight away."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/Wizard/Steps/Upsell.php:29
|
||||||
|
msgid "More"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: %1$s: URL to All Access Pass page %2$s: URL to the KB about the upgrading process
|
||||||
|
#: src/Admin/Wizard/Steps/Upsell.php:33
|
||||||
|
msgid "Enhance your store with these fantastic plugins from Barn2, or get them all with an <a href=\"%1$s\" target=\"_blank\">All Access Pass<a/>! (<a href=\"%2$s\" target=\"_blank\">learn how here</a>)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/Wizard/Steps/Upsell.php:38
|
||||||
|
msgid "Extra features"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/Wizard/Steps/Welcome.php:26
|
||||||
|
msgid "Welcome to Easy Post Types and Fields"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/Wizard/Steps/Welcome.php:27
|
||||||
|
msgid "Use this setup wizard to quickly create a post type (e.g. Events, Members, Articles, or something else). Your post type will have its own section in the WordPress admin. If you want to add fields to existing post types, then skip the setup wizard and go to the 'Other post types' section."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Admin/Wizard/Wizard.php:28
|
||||||
|
msgid "You are not authorized."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: the singular post type name
|
||||||
|
#. translators: the singular name of a taxonomy
|
||||||
|
#: src/Post_Types/Custom_Post_Type.php:115
|
||||||
|
#: src/Taxonomy.php:171
|
||||||
|
msgid "Add New %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: the singular post type name
|
||||||
|
#. translators: the singular name of a taxonomy
|
||||||
|
#: src/Post_Types/Custom_Post_Type.php:117
|
||||||
|
#: src/Taxonomy.php:165
|
||||||
|
msgid "Edit %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: the singular post type name
|
||||||
|
#: src/Post_Types/Custom_Post_Type.php:119
|
||||||
|
msgid "New %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: the singular post type name
|
||||||
|
#: src/Post_Types/Custom_Post_Type.php:121
|
||||||
|
msgctxt "singular"
|
||||||
|
msgid "View %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: the plural post type name
|
||||||
|
#: src/Post_Types/Custom_Post_Type.php:123
|
||||||
|
msgctxt "plural"
|
||||||
|
msgid "View %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: the plural post type name
|
||||||
|
#. translators: the plural name of a taxonomy
|
||||||
|
#: src/Post_Types/Custom_Post_Type.php:125
|
||||||
|
#: src/Taxonomy.php:147
|
||||||
|
msgid "Search %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: the plural post type name
|
||||||
|
#. translators: the plural name of a taxonomy
|
||||||
|
#: src/Post_Types/Custom_Post_Type.php:127
|
||||||
|
#: src/Taxonomy.php:181
|
||||||
|
msgid "No %s found."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: the plural post type name
|
||||||
|
#: src/Post_Types/Custom_Post_Type.php:129
|
||||||
|
msgid "No %s found in Trash."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: the singular post type name
|
||||||
|
#. translators: the singular name of a taxonomy
|
||||||
|
#: src/Post_Types/Custom_Post_Type.php:131
|
||||||
|
#: src/Taxonomy.php:155
|
||||||
|
msgid "Parent %s:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: the singular post type name
|
||||||
|
#: src/Post_Types/Custom_Post_Type.php:135
|
||||||
|
msgid "%s Archives"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: the singular post type name
|
||||||
|
#: src/Post_Types/Custom_Post_Type.php:137
|
||||||
|
msgid "%s Attributes"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: the singular post type name
|
||||||
|
#: src/Post_Types/Custom_Post_Type.php:139
|
||||||
|
msgid "Insert into %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: the singular post type name
|
||||||
|
#: src/Post_Types/Custom_Post_Type.php:141
|
||||||
|
msgid "Uploaded to this %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: the plural post type name
|
||||||
|
#: src/Post_Types/Custom_Post_Type.php:143
|
||||||
|
msgid "Filter %s list"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: the plural post type name
|
||||||
|
#. translators: the plural name of a taxonomy
|
||||||
|
#: src/Post_Types/Custom_Post_Type.php:145
|
||||||
|
#: src/Taxonomy.php:187
|
||||||
|
msgid "%s list navigation"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: the singular post type name
|
||||||
|
#: src/Post_Types/Custom_Post_Type.php:149
|
||||||
|
msgid "%s published."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: the singular post type name
|
||||||
|
#: src/Post_Types/Custom_Post_Type.php:151
|
||||||
|
msgid "%s published privately."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: the singular post type name
|
||||||
|
#: src/Post_Types/Custom_Post_Type.php:153
|
||||||
|
msgid "%s reverted to draft."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: the singular post type name
|
||||||
|
#: src/Post_Types/Custom_Post_Type.php:155
|
||||||
|
msgid "%s scheduled."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: the singular post type name
|
||||||
|
#: src/Post_Types/Custom_Post_Type.php:157
|
||||||
|
msgid "%s updated."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: the singular post type name
|
||||||
|
#. translators: the singular name of a taxonomy
|
||||||
|
#: src/Post_Types/Custom_Post_Type.php:159
|
||||||
|
#: src/Taxonomy.php:195
|
||||||
|
msgid "%s Link"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: the singular post type name
|
||||||
|
#. translators: the singular name of a taxonomy
|
||||||
|
#: src/Post_Types/Custom_Post_Type.php:161
|
||||||
|
#: src/Taxonomy.php:197
|
||||||
|
msgid "A link to a %s."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Taxonomy.php:138
|
||||||
|
msgid "The name is how it appears on your site."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Taxonomy.php:139
|
||||||
|
msgid "The “slug” is the URL-friendly version of the name. It is usually all lowercase and contains only letters, numbers, and hyphens."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Taxonomy.php:140
|
||||||
|
msgid "Assign a parent term to create a hierarchy. The term Jazz, for example, would be the parent of Bebop and Big Band."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Taxonomy.php:141
|
||||||
|
msgid "The description is not prominent by default; however, some themes may show it."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: the plural name of a taxonomy
|
||||||
|
#: src/Taxonomy.php:149
|
||||||
|
msgid "Popular %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: the singular name of a taxonomy
|
||||||
|
#: src/Taxonomy.php:153
|
||||||
|
msgid "Parent %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: the singular name of a taxonomy
|
||||||
|
#: src/Taxonomy.php:167
|
||||||
|
msgid "View %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: the singular name of a taxonomy
|
||||||
|
#: src/Taxonomy.php:169
|
||||||
|
msgid "Update %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: the singular name of a taxonomy
|
||||||
|
#: src/Taxonomy.php:173
|
||||||
|
msgid "New %s Name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: the plural name of a taxonomy
|
||||||
|
#: src/Taxonomy.php:175
|
||||||
|
msgid "Separate %s with commas"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: the plural name of a taxonomy
|
||||||
|
#: src/Taxonomy.php:177
|
||||||
|
msgid "Add or remove %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: the plural name of a taxonomy
|
||||||
|
#: src/Taxonomy.php:179
|
||||||
|
msgid "Choose from the most used %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: the plural name of a taxonomy
|
||||||
|
#: src/Taxonomy.php:183
|
||||||
|
msgid "No %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: the plural name of a taxonomy
|
||||||
|
#: src/Taxonomy.php:185
|
||||||
|
msgid "Filter by %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: the plural name of a taxonomy
|
||||||
|
#: src/Taxonomy.php:191
|
||||||
|
msgid "Most Used"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: the plural name of a taxonomy
|
||||||
|
#: src/Taxonomy.php:193
|
||||||
|
msgid "← Go to %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Util.php:392
|
||||||
|
msgid "Title"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Util.php:393
|
||||||
|
msgid "Content"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Util.php:394
|
||||||
|
msgid "Excerpt"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Util.php:395
|
||||||
|
msgid "Author"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Util.php:396
|
||||||
|
msgid "Featured image"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Util.php:397
|
||||||
|
msgid "Comments"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Util.php:398
|
||||||
|
msgid "Page attributes"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Util.php:399
|
||||||
|
msgid "Revisions"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Util.php:428
|
||||||
|
msgid "Text"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Util.php:429
|
||||||
|
msgid "Visual Editor"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: assets/js/admin/ept-editor.js:20
|
||||||
|
msgid "Are you sure you want to delete the %1$s post type?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: assets/js/admin/ept-editor.js:25
|
||||||
|
msgid "The database contains at least one post of this post type. By deleting this post type, WordPress will not be able to access those posts any longer. Are you sure you want to continue?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: assets/js/admin/ept-editor.js:40
|
||||||
|
msgid "Are you sure you want to delete the “%1$s” %2$s?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: assets/js/src/admin/wizard-custom/index.js:63
|
||||||
|
msgid "Manage post types"
|
||||||
|
msgstr ""
|
||||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,119 @@
|
|||||||
|
# Copyright (C) 2022 EncoreSky Technologies
|
||||||
|
# This file is distributed under the same license as the Easy User Registration plugin.
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Easy User Registration 1.0.0\n"
|
||||||
|
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/easy-user-registration\n"
|
||||||
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"POT-Creation-Date: 2022-09-20T05:32:23+00:00\n"
|
||||||
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
|
"X-Generator: WP-CLI 2.6.0\n"
|
||||||
|
"X-Domain: easy-user-registration\n"
|
||||||
|
|
||||||
|
#. Plugin Name of the plugin
|
||||||
|
msgid "Easy User Registration"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Plugin URI of the plugin
|
||||||
|
msgid "https://www.encoresky.com/"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Description of the plugin
|
||||||
|
msgid "A simple frontend user registration plugin that adds functionality to add users from the frontend. This plugin provides a shortcode for registration form which is [EASY_USER_REGISTRATION]."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Author of the plugin
|
||||||
|
msgid "EncoreSky Technologies"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: easy-user-registration.php:23
|
||||||
|
msgid "Please update your PHP to version 5.6.12 or higher, then try activate <strong>Easy User Registration</strong> again."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: front-end/includes/ajax/eur-register-user-form-callback.php:29
|
||||||
|
msgid "Username too short. At least %d characters is required"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: front-end/includes/ajax/eur-register-user-form-callback.php:33
|
||||||
|
msgid "*Sorry, %s already exists!"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: front-end/includes/ajax/eur-register-user-form-callback.php:37
|
||||||
|
msgid "Password length must be greater than %d"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: front-end/includes/ajax/eur-register-user-form-callback.php:41
|
||||||
|
msgid "Email is not valid"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: front-end/includes/ajax/eur-register-user-form-callback.php:45
|
||||||
|
msgid "*Email Already in use"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: front-end/includes/ajax/eur-register-user-form-callback.php:77
|
||||||
|
msgid "User has been created successfully"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: front-end/includes/eur-user-registration-form.php:12
|
||||||
|
msgid "User is Logged in"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: front-end/includes/eur-user-registration-form.php:22
|
||||||
|
msgid "User Registration"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: front-end/includes/eur-user-registration-form.php:28
|
||||||
|
msgid "First Name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: front-end/includes/eur-user-registration-form.php:32
|
||||||
|
msgid "Last Name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: front-end/includes/eur-user-registration-form.php:38
|
||||||
|
msgid "Username"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: front-end/includes/eur-user-registration-form.php:42
|
||||||
|
msgid "Email"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: front-end/includes/eur-user-registration-form.php:48
|
||||||
|
msgid "Password"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: front-end/includes/eur-user-registration-form.php:52
|
||||||
|
msgid "Confirm Password"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: front-end/includes/eur-user-registration-form.php:57
|
||||||
|
msgid "Register"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: front-end/includes/eur-user-registration-form.php:73
|
||||||
|
msgid "Awesome!!!"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: front-end/includes/eur-user-registration-form.php:74
|
||||||
|
msgid "User has been created successfully."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: front-end/assets/js/script.js:14
|
||||||
|
msgid "Field is required"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: front-end/assets/js/script.js:19
|
||||||
|
msgid "Email address is required."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: front-end/assets/js/script.js:23
|
||||||
|
msgid "Email address is invalid."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: front-end/assets/js/script.js:33
|
||||||
|
msgid "Password is not matching"
|
||||||
|
msgstr ""
|
||||||
256
spec/fixtures/dynamic_finders/plugin_version/eazyable/translation_file/languages/eazyable.pot
vendored
Normal file
256
spec/fixtures/dynamic_finders/plugin_version/eazyable/translation_file/languages/eazyable.pot
vendored
Normal file
@@ -0,0 +1,256 @@
|
|||||||
|
# Copyright (C) 2022 Eazyable
|
||||||
|
# This file is distributed under the GPLv2 or later.
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Eazyable 1.0.0\n"
|
||||||
|
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/eazyable\n"
|
||||||
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"POT-Creation-Date: 2022-09-17T22:44:39+00:00\n"
|
||||||
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
|
"X-Generator: WP-CLI 2.6.0\n"
|
||||||
|
"X-Domain: eazyable\n"
|
||||||
|
|
||||||
|
#. Plugin Name of the plugin
|
||||||
|
#. Author of the plugin
|
||||||
|
#: admin/eazyable-settings.php:24
|
||||||
|
msgid "Eazyable"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Description of the plugin
|
||||||
|
msgid "WordPress accessibility plugin that adds useful accessibility tools to your website. It’s lightweight and easy to use. Enjoy!"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/eazyable-settings.php:23
|
||||||
|
msgid "Eazyable settings"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/eazyable-settings.php:98
|
||||||
|
msgid "Eazyable logo"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/eazyable-settings.php:98
|
||||||
|
msgid "Eazyable Logo"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/eazyable-settings.php:105
|
||||||
|
#: admin/eazyable-settings.php:106
|
||||||
|
msgid "Preferences"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/eazyable-settings.php:111
|
||||||
|
#: admin/eazyable-settings.php:112
|
||||||
|
msgid "Documentation"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/eazyable-settings.php:124
|
||||||
|
msgid "Security check failed"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/eazyable-settings.php:169
|
||||||
|
msgid "Settings Updated"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/eazyable-settings.php:193
|
||||||
|
msgid "Let's customize your design"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/eazyable-settings.php:196
|
||||||
|
msgid "Choose Icon"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/eazyable-settings.php:202
|
||||||
|
msgid "Your accessibility icon"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/eazyable-settings.php:212
|
||||||
|
msgid "Choose Icon Size"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/eazyable-settings.php:219
|
||||||
|
msgid "Accessibility icon size "
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/eazyable-settings.php:232
|
||||||
|
msgid "Choose your widget position"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/eazyable-settings.php:249
|
||||||
|
msgid "Icon Background shape"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/eazyable-settings.php:266
|
||||||
|
msgid "Widget Design"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/eazyable-settings.php:282
|
||||||
|
msgid "Control Your Options"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/eazyable-settings.php:285
|
||||||
|
#: views/eazyable-widget.php:223
|
||||||
|
msgid "Readable Experience"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/eazyable-settings.php:285
|
||||||
|
msgid "Options to optimize the content readability."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/eazyable-settings.php:296
|
||||||
|
msgid "Visual Experience"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/eazyable-settings.php:296
|
||||||
|
msgid "Options to optimize the content visibility."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/eazyable-settings.php:307
|
||||||
|
msgid "Orientation Guidance"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/eazyable-settings.php:307
|
||||||
|
msgid "More options to optimize the browsing experience."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/eazyable-settings.php:316
|
||||||
|
msgid "General Options"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/eazyable-settings.php:319
|
||||||
|
msgid "Skip to Content"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/eazyable-settings.php:319
|
||||||
|
msgid "Enables the users to reach the page content directly by skipping the header."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/eazyable-settings.php:326
|
||||||
|
msgid "Hide on Mobile"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/eazyable-settings.php:326
|
||||||
|
msgid "Lets you hide the accessibility options on mobile phones."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/eazyable-settings.php:332
|
||||||
|
msgid "Accessibility Statement Link"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/eazyable-settings.php:334
|
||||||
|
msgid "statement link here"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/eazyable-widget-settings.php:7
|
||||||
|
msgid "Font Size"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/eazyable-widget-settings.php:9
|
||||||
|
msgid "Visitors can increase or decrease the front-end font size using this control."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/eazyable-widget-settings.php:14
|
||||||
|
msgid "Default"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/eazyable-widget-settings.php:17
|
||||||
|
msgid "Highlight Titles"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/eazyable-widget-settings.php:19
|
||||||
|
msgid "The title contents can be highlighted with this option."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/eazyable-widget-settings.php:27
|
||||||
|
msgid "Highlight Links"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/eazyable-widget-settings.php:29
|
||||||
|
msgid "All links on the page can be highlighted using this feature."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/eazyable-widget-settings.php:37
|
||||||
|
msgid "Readable Font"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/eazyable-widget-settings.php:39
|
||||||
|
msgid "The default system font can be applied to the page content using this tool."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/eazyable-widget-settings.php:48
|
||||||
|
msgid "Dark Contrast"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/eazyable-widget-settings.php:50
|
||||||
|
msgid "The page background color will be dark and the text color will be light."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/eazyable-widget-settings.php:59
|
||||||
|
msgid "Light Contrast"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/eazyable-widget-settings.php:61
|
||||||
|
msgid "The page background color will be white and the text color will be dark."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/eazyable-widget-settings.php:70
|
||||||
|
msgid "High Contrast"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/eazyable-widget-settings.php:72
|
||||||
|
msgid "The contrast between the page background color and content color will be maximized."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/eazyable-widget-settings.php:81
|
||||||
|
msgid "Highlight Hover"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/eazyable-widget-settings.php:83
|
||||||
|
msgid "A content area will be highlighted when the mouse is hovered over."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/eazyable-widget-settings.php:91
|
||||||
|
msgid "Big Dark Cursor"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/eazyable-widget-settings.php:93
|
||||||
|
msgid "The default mouse cursor will be transformed into a big black cursor."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/eazyable-widget-settings.php:102
|
||||||
|
msgid "Big White Cursor"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/eazyable-widget-settings.php:104
|
||||||
|
msgid "The default mouse cursor will be transformed into a big white cursor."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: views/eazyable-widget.php:151
|
||||||
|
msgid "Open/Close Acessibility widgets"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: views/eazyable-widget.php:230
|
||||||
|
msgid "Visually Pleasing Experience"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: views/eazyable-widget.php:237
|
||||||
|
msgid "Guidance Experience"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: views/eazyable-widget.php:247
|
||||||
|
msgid "Reset"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: views/eazyable-widget.php:251
|
||||||
|
msgid "Statement"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: views/eazyable-widget.php:255
|
||||||
|
msgid "Hide Forever"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: views/eazyable-widget.php:278
|
||||||
|
msgid "Skip to Page Content"
|
||||||
|
msgstr ""
|
||||||
@@ -0,0 +1,994 @@
|
|||||||
|
# Copyright (C) 2022 Uri Lazcano (Urielink)
|
||||||
|
# This file is distributed under the GPL-2.0-or-later.
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Ekiline Block Collection 0.1.7\n"
|
||||||
|
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/ekiline-"
|
||||||
|
"collection\n"
|
||||||
|
"Language-Team: \n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"POT-Creation-Date: 2022-11-08 17:16-0600\n"
|
||||||
|
"PO-Revision-Date: 2022-11-08 17:25-0600\n"
|
||||||
|
"X-Generator: Poedit 1.8.12\n"
|
||||||
|
"X-Domain: ekiline-collection\n"
|
||||||
|
"Last-Translator: \n"
|
||||||
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
"Language: es_MX\n"
|
||||||
|
|
||||||
|
#. Plugin Name of the plugin
|
||||||
|
msgid "Ekiline Block Collection"
|
||||||
|
msgstr "Ekiline colección de bloques"
|
||||||
|
|
||||||
|
#. Description of the plugin
|
||||||
|
msgid ""
|
||||||
|
"Actions and blocks based on bootstrap 5 (carousel, collapse and more). "
|
||||||
|
"Includes Bootstrap library. Support this project to add new features and "
|
||||||
|
"expand a customer service branch."
|
||||||
|
msgstr ""
|
||||||
|
"Acciones y bloques basados en bootstrap 5 (carrusel, colapso y más). Incluye "
|
||||||
|
"la biblioteca Bootstrap. Apoye este proyecto para añadir nuevas "
|
||||||
|
"características y ampliar una rama de servicio al cliente."
|
||||||
|
|
||||||
|
#. Author of the plugin
|
||||||
|
msgid "Uri Lazcano (Urielink)"
|
||||||
|
msgstr "Uri Lazcano (Urielink)"
|
||||||
|
|
||||||
|
#: includes/ekiline-collection-info.php:26
|
||||||
|
msgid "About Ekiline BC"
|
||||||
|
msgstr "Acerca de Ekiline BC"
|
||||||
|
|
||||||
|
#: includes/ekiline-collection-info.php:48
|
||||||
|
msgid "About Ekiline Block Collection"
|
||||||
|
msgstr "Ekiline colección de bloques"
|
||||||
|
|
||||||
|
#: includes/ekiline-collection-info.php:56
|
||||||
|
msgid "Thanks for using this plugin!"
|
||||||
|
msgstr "¡Gracias por usar este plugin!"
|
||||||
|
|
||||||
|
#: includes/ekiline-collection-info.php:58
|
||||||
|
msgid "Find more information to improve your skills when use it."
|
||||||
|
msgstr "Encuentra más información para mejorar tus habilidades cuando la uses."
|
||||||
|
|
||||||
|
#: includes/ekiline-collection-info.php:65
|
||||||
|
msgid "Add an extra to the creation and delivery of your projects."
|
||||||
|
msgstr "Agrega un extra a la creación y entrega de sus proyectos."
|
||||||
|
|
||||||
|
#: includes/ekiline-collection-info.php:68
|
||||||
|
msgid ""
|
||||||
|
"Quick use guide in Keynote or Powerpoint to freely customize and deliver to "
|
||||||
|
"your clients."
|
||||||
|
msgstr ""
|
||||||
|
"Guía de uso rápido en Keynote o Powerpoint para personalizar libremente y "
|
||||||
|
"entregar a tus clientes."
|
||||||
|
|
||||||
|
#: includes/ekiline-collection-info.php:70
|
||||||
|
msgid "More design elements, CSS, HTML and JS available to grow your project."
|
||||||
|
msgstr ""
|
||||||
|
"Más elementos de diseño, CSS, HTML y JS disponible para crecer tu proyecto."
|
||||||
|
|
||||||
|
#: includes/ekiline-collection-info.php:72
|
||||||
|
msgid "Ekiline Blocks, plugin with carousel and more options in page editor."
|
||||||
|
msgstr ""
|
||||||
|
"Ekiline Blocks, plugin con carrusel y más opciones en editor de páginas."
|
||||||
|
|
||||||
|
#: includes/ekiline-collection-info.php:74
|
||||||
|
msgid "Complete clean theme, no warnings or messages."
|
||||||
|
msgstr "Tema completo y limpio, sin avisos o mensajes."
|
||||||
|
|
||||||
|
#: includes/ekiline-collection-info.php:77
|
||||||
|
msgid "Buy and download"
|
||||||
|
msgstr "Comprar y descargar"
|
||||||
|
|
||||||
|
#: includes/ekiline-collection-info.php:78
|
||||||
|
msgid "FundMe"
|
||||||
|
msgstr "Fondéame"
|
||||||
|
|
||||||
|
#. translators: %1$s is replaced with links data
|
||||||
|
#: includes/ekiline-collection-info.php:84
|
||||||
|
msgid "%1$s with Ekiline and %2$s, %3$s."
|
||||||
|
msgstr "%1$s con Ekiline y %2$s, %3$s."
|
||||||
|
|
||||||
|
#: includes/ekiline-collection-info.php:85
|
||||||
|
msgid "Make money"
|
||||||
|
msgstr "Gana dinero"
|
||||||
|
|
||||||
|
#: includes/ekiline-collection-info.php:86
|
||||||
|
msgid "fund its development"
|
||||||
|
msgstr "fondea el desarrollo"
|
||||||
|
|
||||||
|
#: includes/ekiline-collection-info.php:87
|
||||||
|
msgid "discover how"
|
||||||
|
msgstr "descubra cómo"
|
||||||
|
|
||||||
|
#: includes/ekiline-collection-info.php:95
|
||||||
|
msgid "About Ekiline"
|
||||||
|
msgstr "Acerca de Ekiline"
|
||||||
|
|
||||||
|
#: includes/ekiline-collection-info.php:96
|
||||||
|
msgid ""
|
||||||
|
"Ekiline simplifies the creation of a website with WordPress, it is a working "
|
||||||
|
"method that brings together the standard practices of the internet industry, "
|
||||||
|
"to facilitate the tasks of planning, design, development and optimization. "
|
||||||
|
"For more information visit ekiline.com"
|
||||||
|
msgstr ""
|
||||||
|
"Ekiline simplifica la creación de un sitio web con WordPress, es un método "
|
||||||
|
"de trabajo que reúne las prácticas estándar de la industria de internet, "
|
||||||
|
"para facilitar las tareas de planeación, diseño, desarrollo y optimización. "
|
||||||
|
"Para mayor información visita ekiline.com"
|
||||||
|
|
||||||
|
#: includes/ekiline-collection-info.php:97
|
||||||
|
msgid "About Uri Lazcano"
|
||||||
|
msgstr "Acerca de Uri Lazcano"
|
||||||
|
|
||||||
|
#: includes/ekiline-collection-info.php:100
|
||||||
|
msgid ""
|
||||||
|
"Frontend designer established in Mexico City. 10 years developing websites "
|
||||||
|
"and 10 more years of experience in graphic design for advertising. Check my "
|
||||||
|
"career and work."
|
||||||
|
msgstr ""
|
||||||
|
"Diseñador Frontend, establecido en la ciudad de México. 10 años "
|
||||||
|
"desarrollando sitios web y 10 años diseñando para proyectos de publicidad."
|
||||||
|
|
||||||
|
#: includes/ekiline-collection-info.php:103
|
||||||
|
msgid "WordPress"
|
||||||
|
msgstr "WordPress"
|
||||||
|
|
||||||
|
#: includes/ekiline-collection-info.php:104
|
||||||
|
msgid "Github"
|
||||||
|
msgstr "Github"
|
||||||
|
|
||||||
|
#: includes/ekiline-collection-info.php:105
|
||||||
|
msgid "Linkedin"
|
||||||
|
msgstr "Linkedin"
|
||||||
|
|
||||||
|
#: includes/ekiline-collection-info.php:106
|
||||||
|
msgid "Behance"
|
||||||
|
msgstr "Behance"
|
||||||
|
|
||||||
|
#: includes/ekiline-collection-info.php:107
|
||||||
|
#: includes/ekiline-collection-info.php:158
|
||||||
|
msgid "B I X N I A"
|
||||||
|
msgstr "B I X N I A"
|
||||||
|
|
||||||
|
#: includes/ekiline-collection-info.php:115
|
||||||
|
msgid "Ekiline docs"
|
||||||
|
msgstr "Documentos de Ekiline"
|
||||||
|
|
||||||
|
#: includes/ekiline-collection-info.php:118
|
||||||
|
msgid "Install"
|
||||||
|
msgstr "Instalar"
|
||||||
|
|
||||||
|
#: includes/ekiline-collection-info.php:119
|
||||||
|
msgid "Customize"
|
||||||
|
msgstr "Personalizar"
|
||||||
|
|
||||||
|
#: includes/ekiline-collection-info.php:120
|
||||||
|
msgid "Elements and blocks"
|
||||||
|
msgstr "Elementos y bloques"
|
||||||
|
|
||||||
|
#: includes/ekiline-collection-info.php:121
|
||||||
|
msgid "Compatibility"
|
||||||
|
msgstr "Compatibilidad"
|
||||||
|
|
||||||
|
#: includes/ekiline-collection-info.php:142
|
||||||
|
msgid "Limited liability:"
|
||||||
|
msgstr "Responsabilidad limitada:"
|
||||||
|
|
||||||
|
#: includes/ekiline-collection-info.php:143
|
||||||
|
msgid ""
|
||||||
|
"As a courtesy, we provide information on how to use certain third-party "
|
||||||
|
"products, but we do not directly support their use and we are not "
|
||||||
|
"responsible for the functions, reliability or compatibility of such "
|
||||||
|
"products. The names, trademarks and logos of third parties are registered "
|
||||||
|
"trademarks of their respective owners."
|
||||||
|
msgstr ""
|
||||||
|
"Como cortesía, proporcionamos información de cómo utilizar determinados "
|
||||||
|
"productos de terceros, pero no respaldamos directamente su uso y no somos "
|
||||||
|
"responsables de las funciones, fiabilidad o compatibilidad de dichos "
|
||||||
|
"productos. Los nombres, marcas y logotipos de terceros son marcas "
|
||||||
|
"registradas de sus respectivos propietarios."
|
||||||
|
|
||||||
|
#. translators: %1$s is replaced with date data
|
||||||
|
#: includes/ekiline-collection-info.php:155
|
||||||
|
msgid "© Copyright %1$s Ekiline"
|
||||||
|
msgstr "© Copyright %1$s Ekiline"
|
||||||
|
|
||||||
|
#: includes/ekiline-collection-info.php:157
|
||||||
|
msgid "All rights reserved. Ekiline developed by"
|
||||||
|
msgstr "Todos los derechos reservados. Ekiline desarrollado por"
|
||||||
|
|
||||||
|
#: build/index.js:1 src/accordion/index.js:74
|
||||||
|
msgid "Accordion"
|
||||||
|
msgstr "Acordeón"
|
||||||
|
|
||||||
|
#: build/index.js:1 src/accordion/index.js:76
|
||||||
|
msgid "Show your content as an accordion."
|
||||||
|
msgstr "Muestre su contenido como un acordeón."
|
||||||
|
|
||||||
|
#: build/index.js:1 src/accordion/index.js:128
|
||||||
|
msgid "Accordion Settings"
|
||||||
|
msgstr "Ajustes de acordeón"
|
||||||
|
|
||||||
|
#: build/index.js:1 src/accordion/index.js:130
|
||||||
|
msgid "Clear style."
|
||||||
|
msgstr "Eliminar estilo."
|
||||||
|
|
||||||
|
#: build/index.js:1 src/accordion/index.js:176
|
||||||
|
msgid "Accordion item"
|
||||||
|
msgstr "Acordeón"
|
||||||
|
|
||||||
|
#: build/index.js:1 src/accordion/index.js:179
|
||||||
|
msgid "Set tittle and content in your accordion container"
|
||||||
|
msgstr "Establezca el título y el contenido en su contenedor de acordeón"
|
||||||
|
|
||||||
|
#: build/index.js:1 src/accordion/index.js:205
|
||||||
|
msgid "Item title."
|
||||||
|
msgstr "Título item."
|
||||||
|
|
||||||
|
#: build/index.js:1 src/accordion/index.js:220
|
||||||
|
msgid "Item content."
|
||||||
|
msgstr "Contenido item."
|
||||||
|
|
||||||
|
#: build/index.js:1 src/accordion/index.js:246
|
||||||
|
msgid "Accordion Item Params"
|
||||||
|
msgstr "Parámetros de item de acordeón"
|
||||||
|
|
||||||
|
#: build/index.js:1 src/accordion/index.js:248
|
||||||
|
msgid "Show element by default."
|
||||||
|
msgstr "Mostrar elemento de forma predeterminada."
|
||||||
|
|
||||||
|
#: build/index.js:1 src/accordion/index.js:255
|
||||||
|
msgid "Toggle."
|
||||||
|
msgstr "Plegable"
|
||||||
|
|
||||||
|
#: build/index.js:1 src/accordion/index.js:260
|
||||||
|
msgid "Close previously active accordion elements."
|
||||||
|
msgstr "Cierre los elementos de acordeón previamente activos."
|
||||||
|
|
||||||
|
#: build/index.js:1 src/accordion/index.js:273
|
||||||
|
msgid "Accordion Title"
|
||||||
|
msgstr "Título del acordeón"
|
||||||
|
|
||||||
|
#: build/index.js:1 src/collapse/index.js:73 src/hooks/index.js:114
|
||||||
|
#: src/hooks/index.js:277
|
||||||
|
msgid "Collapse"
|
||||||
|
msgstr "Collapse"
|
||||||
|
|
||||||
|
#: build/index.js:1 src/collapse/index.js:75
|
||||||
|
msgid "Set a collapse behavior block. You can activate from any button."
|
||||||
|
msgstr ""
|
||||||
|
"Establezca un bloque de comportamiento colapsable. Puedes activarlo desde "
|
||||||
|
"cualquier botón."
|
||||||
|
|
||||||
|
#: build/index.js:1 src/collapse/index.js:99
|
||||||
|
msgid "Add your content"
|
||||||
|
msgstr "Agrega tu contenido"
|
||||||
|
|
||||||
|
#: build/index.js:1 src/collapse/index.js:133
|
||||||
|
msgid "Collapse Params"
|
||||||
|
msgstr "Parámetros Collapse"
|
||||||
|
|
||||||
|
#: build/index.js:1 src/collapse/index.js:135
|
||||||
|
msgid "Horizontal collapse"
|
||||||
|
msgstr "Collapse horizontal"
|
||||||
|
|
||||||
|
#: build/index.js:1 src/collapse/index.js:116 src/modal/index.js:186
|
||||||
|
msgid "Add this #anchor to a button and its advanced options."
|
||||||
|
msgstr "Agregue esta #ancla a un botón y sus opciones avanzadas."
|
||||||
|
|
||||||
|
#: build/index.js:1 src/collapse/index.js:124 src/modal/index.js:194
|
||||||
|
msgid "Do not forget to add an anchor. "
|
||||||
|
msgstr "No olvides agregar un ancla."
|
||||||
|
|
||||||
|
#: build/index.js:1 src/popovers/index.js:58
|
||||||
|
msgid "Popover"
|
||||||
|
msgstr "Popover"
|
||||||
|
|
||||||
|
#: build/index.js:1 src/popovers/index.js:60
|
||||||
|
msgid "Add popovers to your links or buttons."
|
||||||
|
msgstr "Agrega popovers a tus enlaces o botones."
|
||||||
|
|
||||||
|
#: build/index.js:1 src/popovers/index.js:70
|
||||||
|
msgid "Popovers have rules added to the core buttons."
|
||||||
|
msgstr "Popovers tienen reglas agregadas a los botones."
|
||||||
|
|
||||||
|
#: build/index.js:1 src/popovers/index.js:71
|
||||||
|
msgid "You need to create a button. And then text an anchor (#name) link."
|
||||||
|
msgstr ""
|
||||||
|
"Necesitas crear un botón. Y luego asignar un enlace de anclaje (#name)."
|
||||||
|
|
||||||
|
#: build/index.js:1 src/popovers/index.js:72
|
||||||
|
msgid "This will allow you to use the advanced options for the button."
|
||||||
|
msgstr "Esto permitirá utilizar las opciones avanzadas para el botón."
|
||||||
|
|
||||||
|
#: build/index.js:1 src/popovers/index.js:73
|
||||||
|
msgid "You can remove this notice, it won't be published in your content."
|
||||||
|
msgstr "Puedes eliminar este aviso, no se publicará en tu contenido."
|
||||||
|
|
||||||
|
#: build/index.js:1 src/popovers/index.js:143
|
||||||
|
msgid "Button to Popover (Ekiline)"
|
||||||
|
msgstr "Botón a popover (Ekiline)"
|
||||||
|
|
||||||
|
#: build/index.js:1 src/popovers/index.js:145
|
||||||
|
msgid "Popover text to show."
|
||||||
|
msgstr "Texto a mostrar en Popover."
|
||||||
|
|
||||||
|
#: build/index.js:1 src/popovers/index.js:151 src/popovers/index.js:154
|
||||||
|
msgid "Popover position"
|
||||||
|
msgstr "Posición de la ventana modal"
|
||||||
|
|
||||||
|
#: build/index.js:1 src/offcanvas/index.js:214 src/popovers/index.js:155
|
||||||
|
msgid "Top"
|
||||||
|
msgstr "Arriba"
|
||||||
|
|
||||||
|
#: build/index.js:1 src/modal/index.js:210 src/offcanvas/index.js:211
|
||||||
|
#: src/popovers/index.js:156
|
||||||
|
msgid "Right"
|
||||||
|
msgstr "Derecha"
|
||||||
|
|
||||||
|
#: build/index.js:1 src/modal/index.js:211 src/offcanvas/index.js:212
|
||||||
|
#: src/popovers/index.js:157
|
||||||
|
msgid "Bottom"
|
||||||
|
msgstr "Abajo"
|
||||||
|
|
||||||
|
#: build/index.js:1 src/modal/index.js:212 src/offcanvas/index.js:213
|
||||||
|
#: src/popovers/index.js:158
|
||||||
|
msgid "Left"
|
||||||
|
msgstr "Izquierda"
|
||||||
|
|
||||||
|
#: build/index.js:1 src/popovers/index.js:166
|
||||||
|
msgid "Is tooltip"
|
||||||
|
msgstr "Es tooltip"
|
||||||
|
|
||||||
|
#: build/index.js:1 src/progress/index.js:71
|
||||||
|
msgid "Progress"
|
||||||
|
msgstr "Progreso"
|
||||||
|
|
||||||
|
#: build/index.js:1 src/progress/index.js:73
|
||||||
|
msgid "Show a bootstrap progress bar for your data."
|
||||||
|
msgstr "Muestra una barra de progreso."
|
||||||
|
|
||||||
|
#: build/index.js:1 src/progress/index.js:116 src/progress/index.js:220
|
||||||
|
msgid "Progress bar Settings"
|
||||||
|
msgstr "Ajustes de la barra de progreso"
|
||||||
|
|
||||||
|
#: build/index.js:1 src/progress/index.js:118
|
||||||
|
msgid "Height bar (pixels)"
|
||||||
|
msgstr "Altura de la barra (pixeles)"
|
||||||
|
|
||||||
|
#: build/index.js:1 src/progress/index.js:167
|
||||||
|
msgid "Progress data bar"
|
||||||
|
msgstr "Datos de barra"
|
||||||
|
|
||||||
|
#: build/index.js:1 src/progress/index.js:170
|
||||||
|
msgid "Progress data, could be multiple bars between 1 to 100."
|
||||||
|
msgstr "Los datos pueden mostrar distintas barras entre 1 a 100."
|
||||||
|
|
||||||
|
#: build/index.js:1 src/progress/index.js:222
|
||||||
|
msgid "Data range min 1% max 100%"
|
||||||
|
msgstr "Rango de datos mín. 1% máx. 100%"
|
||||||
|
|
||||||
|
#: build/index.js:1 src/progress/index.js:232
|
||||||
|
msgid "Hide number in bar."
|
||||||
|
msgstr "Ocultar número en la barra."
|
||||||
|
|
||||||
|
#: build/index.js:1 src/progress/index.js:239
|
||||||
|
msgid "Show stripes over background."
|
||||||
|
msgstr "Muestra rayas sobre el fondo."
|
||||||
|
|
||||||
|
#: build/index.js:1 src/progress/index.js:246
|
||||||
|
msgid "Show animation."
|
||||||
|
msgstr "Mostrar animación"
|
||||||
|
|
||||||
|
#: build/index.js:1 src/toast/index.js:66
|
||||||
|
msgid "Toast"
|
||||||
|
msgstr "Toast (Notificación)"
|
||||||
|
|
||||||
|
#: build/index.js:1 src/toast/index.js:68
|
||||||
|
msgid "Show small bootstrap-style notices."
|
||||||
|
msgstr "Muestra avisos al estilo bootstrap."
|
||||||
|
|
||||||
|
#: build/index.js:1 src/toast/index.js:112
|
||||||
|
msgid "Toast group options"
|
||||||
|
msgstr "Opciones de notificaciones"
|
||||||
|
|
||||||
|
#: build/index.js:1 src/toast/index.js:114
|
||||||
|
msgid "Display position"
|
||||||
|
msgstr "Posición en pantalla"
|
||||||
|
|
||||||
|
#: build/index.js:1 src/toast/index.js:117
|
||||||
|
msgid "Bottom right"
|
||||||
|
msgstr "Inferior derecha"
|
||||||
|
|
||||||
|
#: build/index.js:1 src/toast/index.js:118
|
||||||
|
msgid "Bottom left"
|
||||||
|
msgstr "Inferior Izquierda"
|
||||||
|
|
||||||
|
#: build/index.js:1 src/toast/index.js:119
|
||||||
|
msgid "Top right"
|
||||||
|
msgstr "Superior derecha"
|
||||||
|
|
||||||
|
#: build/index.js:1 src/toast/index.js:120
|
||||||
|
msgid "Top left"
|
||||||
|
msgstr "Superior izquierda"
|
||||||
|
|
||||||
|
#: build/index.js:1 src/toast/index.js:160
|
||||||
|
msgid "Ekiline toast item."
|
||||||
|
msgstr "Ekiline toast item."
|
||||||
|
|
||||||
|
#: build/index.js:1 src/toast/index.js:163
|
||||||
|
msgid ""
|
||||||
|
"Each toast can be executed by time, at the end of scrolling, or with the "
|
||||||
|
"cursor outside the window. You can stack as many as you need."
|
||||||
|
msgstr ""
|
||||||
|
"Cada toast se puede ejecutar por tiempo, al final del desplazamiento o con "
|
||||||
|
"el cursor fuera de la ventana. Puede apilar tantos como necesite."
|
||||||
|
|
||||||
|
#: build/index.js:1 src/toast/index.js:215
|
||||||
|
msgid "Toast Params"
|
||||||
|
msgstr "Parámetros de toast"
|
||||||
|
|
||||||
|
#: build/index.js:1 src/toast/index.js:217
|
||||||
|
msgid "Run by time"
|
||||||
|
msgstr "Ejecutado por tiempo"
|
||||||
|
|
||||||
|
#: build/index.js:1 src/modal/index.js:271 src/toast/index.js:225
|
||||||
|
msgid "Run after page load "
|
||||||
|
msgstr "Ejecutar después de cargar la página "
|
||||||
|
|
||||||
|
#: build/index.js:1 src/modal/index.js:271 src/toast/index.js:225
|
||||||
|
msgid " milliseconds."
|
||||||
|
msgstr " milisegundos."
|
||||||
|
|
||||||
|
#: build/index.js:1 src/toast/index.js:226
|
||||||
|
msgid " run immediately on page load."
|
||||||
|
msgstr " se ejecutará inmediatamente al cargar la página."
|
||||||
|
|
||||||
|
#: build/index.js:1 src/toast/index.js:231
|
||||||
|
msgid "Run at end of page scroll."
|
||||||
|
msgstr "Ejecutar al final del desplazamiento de la página."
|
||||||
|
|
||||||
|
#: build/index.js:1 src/toast/index.js:246
|
||||||
|
msgid "Add toast title"
|
||||||
|
msgstr "Agregar título del sistema"
|
||||||
|
|
||||||
|
#: build/index.js:1 src/tabs/index.js:78
|
||||||
|
msgid "Tabs"
|
||||||
|
msgstr "Tabs (pestañas)"
|
||||||
|
|
||||||
|
#: build/index.js:1 src/tabs/index.js:80
|
||||||
|
msgid "Add a tabs for your posts, full control."
|
||||||
|
msgstr "Agregue una pestaña para sus publicaciones, control total."
|
||||||
|
|
||||||
|
#: build/index.js:1 src/tabs/index.js:144
|
||||||
|
msgid "Tabs Nav Bar"
|
||||||
|
msgstr "Tabs Nav Bar"
|
||||||
|
|
||||||
|
#: build/index.js:1 src/tabs/index.js:147
|
||||||
|
msgid "Tab navigation, add your links."
|
||||||
|
msgstr "Navegación por pestañas, agregue sus enlaces."
|
||||||
|
|
||||||
|
#: build/index.js:1 src/tabs/index.js:178
|
||||||
|
msgid "Tab link 1"
|
||||||
|
msgstr "Enlace tab 1"
|
||||||
|
|
||||||
|
#: build/index.js:1 src/tabs/index.js:181
|
||||||
|
msgid "Tab link 2"
|
||||||
|
msgstr "Enlace tab 2"
|
||||||
|
|
||||||
|
#: build/index.js:1 src/tabs/index.js:246
|
||||||
|
msgid "Tab Link"
|
||||||
|
msgstr "Enlace de Tab"
|
||||||
|
|
||||||
|
#: build/index.js:1 src/tabs/index.js:249
|
||||||
|
msgid ""
|
||||||
|
"Tab button link. Copy Anchor text and paste on Tab Content Anchor field."
|
||||||
|
msgstr ""
|
||||||
|
"Enlace al botón de Tab. Copie el texto de anclaje y péguelo en el campo "
|
||||||
|
"Anclaje de contenido de tab."
|
||||||
|
|
||||||
|
#: build/index.js:1 src/tabs/index.js:264
|
||||||
|
msgid "Tab link"
|
||||||
|
msgstr "Enlace de Tab"
|
||||||
|
|
||||||
|
#: build/index.js:1 src/tabs/index.js:296
|
||||||
|
msgid "Tab Link Params"
|
||||||
|
msgstr "Parámetros de enlace de Tab"
|
||||||
|
|
||||||
|
#: build/index.js:1 src/tabs/index.js:298
|
||||||
|
msgid "Copy this value in a Content Tab HTML anchor field."
|
||||||
|
msgstr "Copie este valor en campo de anclaje HTML de Tab de contenido."
|
||||||
|
|
||||||
|
#: build/index.js:1 src/tabs/index.js:409
|
||||||
|
msgid "Tabs container"
|
||||||
|
msgstr "Contenedor de Tabs"
|
||||||
|
|
||||||
|
#: build/index.js:1 src/tabs/index.js:412
|
||||||
|
msgid "All tabs add here."
|
||||||
|
msgstr "Todas las Tabs se agregan aquí."
|
||||||
|
|
||||||
|
#: build/index.js:1 src/tabs/index.js:467
|
||||||
|
msgid "Tab Content"
|
||||||
|
msgstr "Contenido de Tab"
|
||||||
|
|
||||||
|
#: build/index.js:1 src/tabs/index.js:470
|
||||||
|
msgid ""
|
||||||
|
"Inner tab content. Find Tab Link anchor text, and paste on Anchor field."
|
||||||
|
msgstr ""
|
||||||
|
"Contenido de Tab. Busque el texto de anclaje y péguelo en el campo Anclaje."
|
||||||
|
|
||||||
|
#: build/index.js:1 src/tabs/index.js:482
|
||||||
|
msgid "Add your content and blocks, then copy anchor name to tab content block"
|
||||||
|
msgstr ""
|
||||||
|
"Agregue su contenido y bloques, luego copie el nombre de anclaje al bloque "
|
||||||
|
"de contenido de la pestaña"
|
||||||
|
|
||||||
|
#: build/index.js:1 src/hooks/index.js:115 src/hooks/index.js:278
|
||||||
|
#: src/modal/index.js:92
|
||||||
|
msgid "Modal"
|
||||||
|
msgstr "Modal"
|
||||||
|
|
||||||
|
#: build/index.js:1 src/modal/index.js:94 src/offcanvas/index.js:96
|
||||||
|
msgid "Add your content here, then invoque with a link anchor #anchor."
|
||||||
|
msgstr ""
|
||||||
|
"Agregue su contenido aquí, luego invoque con un anclaje de enlace #anchor."
|
||||||
|
|
||||||
|
#: build/index.js:1 src/modal/index.js:203
|
||||||
|
msgid "Modal Params"
|
||||||
|
msgstr "Parámetros modal"
|
||||||
|
|
||||||
|
#: build/index.js:1 src/modal/index.js:206
|
||||||
|
msgid "Rise modal"
|
||||||
|
msgstr "Lanzar modal"
|
||||||
|
|
||||||
|
#: build/index.js:1 src/carousel-extra/index.js:483 src/carousel/edit.js:260
|
||||||
|
#: src/modal/index.js:209 src/modal/index.js:223 src/offcanvas/index.js:225
|
||||||
|
#: src/offcanvas/index.js:240 src/offcanvas/index.js:278
|
||||||
|
msgid "Default"
|
||||||
|
msgstr "Default"
|
||||||
|
|
||||||
|
#: build/index.js:1 src/modal/index.js:220
|
||||||
|
msgid "Size modal"
|
||||||
|
msgstr "Tamaño modal"
|
||||||
|
|
||||||
|
#: build/index.js:1 src/modal/index.js:224 src/offcanvas/index.js:226
|
||||||
|
#: src/offcanvas/index.js:241 src/offcanvas/index.js:256
|
||||||
|
msgid "Small"
|
||||||
|
msgstr "Pequeño"
|
||||||
|
|
||||||
|
#: build/index.js:1 src/modal/index.js:225 src/offcanvas/index.js:228
|
||||||
|
#: src/offcanvas/index.js:243 src/offcanvas/index.js:258
|
||||||
|
msgid "Large"
|
||||||
|
msgstr "Grande"
|
||||||
|
|
||||||
|
#: build/index.js:1 src/modal/index.js:226
|
||||||
|
msgid "Extra Large"
|
||||||
|
msgstr "Extra grande"
|
||||||
|
|
||||||
|
#: build/index.js:1 src/modal/index.js:227 src/offcanvas/index.js:229
|
||||||
|
#: src/offcanvas/index.js:244
|
||||||
|
msgid "Full window"
|
||||||
|
msgstr "Ventana completa"
|
||||||
|
|
||||||
|
#: build/index.js:1 src/modal/index.js:235
|
||||||
|
msgid "Center in window"
|
||||||
|
msgstr "Centrar en la ventana"
|
||||||
|
|
||||||
|
#: build/index.js:1 src/modal/index.js:242
|
||||||
|
msgid "Enable background click to close"
|
||||||
|
msgstr "Habilitar clic en segundo plano para cerrar"
|
||||||
|
|
||||||
|
#: build/index.js:1 src/modal/index.js:249
|
||||||
|
msgid "Enable ESC key to close"
|
||||||
|
msgstr "Habilitar la clave ESC para cerrar"
|
||||||
|
|
||||||
|
#: build/index.js:1 src/modal/index.js:256
|
||||||
|
msgid "Show resize modal button"
|
||||||
|
msgstr "Mostrar botón modal de cambio de tamaño"
|
||||||
|
|
||||||
|
#: build/index.js:1 src/modal/index.js:263
|
||||||
|
msgid "Show with timer"
|
||||||
|
msgstr "Mostrar con temporizador"
|
||||||
|
|
||||||
|
#: build/index.js:1 src/modal/index.js:272
|
||||||
|
msgid " do nothing."
|
||||||
|
msgstr "no hacer nada."
|
||||||
|
|
||||||
|
#: build/index.js:1 src/modal/index.js:323
|
||||||
|
msgid "play btn"
|
||||||
|
msgstr "play btn"
|
||||||
|
|
||||||
|
#: build/index.js:1 src/modal/index.js:357
|
||||||
|
msgid "Modal header"
|
||||||
|
msgstr "Encabezado del modal"
|
||||||
|
|
||||||
|
#: build/index.js:1 src/modal/index.js:360
|
||||||
|
msgid "Modal header content. "
|
||||||
|
msgstr "Contenido del encabezado modal."
|
||||||
|
|
||||||
|
#: build/index.js:1 src/modal/index.js:375
|
||||||
|
msgid "Add modal title"
|
||||||
|
msgstr "Título modal"
|
||||||
|
|
||||||
|
#: build/index.js:1 src/modal/index.js:418
|
||||||
|
msgid "Modal body content"
|
||||||
|
msgstr "Contenido del cuerpo del modal"
|
||||||
|
|
||||||
|
#: build/index.js:1 src/modal/index.js:421
|
||||||
|
msgid "Modal body content. "
|
||||||
|
msgstr "Contenido del cuerpo del modal. "
|
||||||
|
|
||||||
|
#: build/index.js:1 src/modal/index.js:433
|
||||||
|
msgid "Add modal content blocks"
|
||||||
|
msgstr "Agregar bloques de contenido modal"
|
||||||
|
|
||||||
|
#: build/index.js:1 src/modal/index.js:472
|
||||||
|
msgid "Modal footer"
|
||||||
|
msgstr "Pie de página modal"
|
||||||
|
|
||||||
|
#: build/index.js:1 src/modal/index.js:475
|
||||||
|
msgid "Inner footer content. "
|
||||||
|
msgstr "Contenido del pie de página interior."
|
||||||
|
|
||||||
|
#: build/index.js:1 src/modal/index.js:489
|
||||||
|
msgid "Add modal footer text"
|
||||||
|
msgstr "Agregar texto de pie de página modal"
|
||||||
|
|
||||||
|
#: build/index.js:1 src/carousel/index.js:62
|
||||||
|
msgid "Carousel dynamic"
|
||||||
|
msgstr "Carousel dinámico"
|
||||||
|
|
||||||
|
#: build/index.js:1 src/carousel/index.js:68
|
||||||
|
msgid ""
|
||||||
|
"Add a dynamic carousel to your posts, choose between posts, images, blocks "
|
||||||
|
"and more."
|
||||||
|
msgstr ""
|
||||||
|
"Agrega un carrusel dinámico a tus publicaciones, elige entre publicaciones, "
|
||||||
|
"imágenes, bloques y más."
|
||||||
|
|
||||||
|
#: build/index.js:1 src/carousel/edit.js:58
|
||||||
|
msgid "Choose category"
|
||||||
|
msgstr "Seleccione una categoría"
|
||||||
|
|
||||||
|
#: build/index.js:1 src/carousel-extra/index.js:330 src/carousel/edit.js:83
|
||||||
|
msgid "Carousel content"
|
||||||
|
msgstr "Contenido del carrusel"
|
||||||
|
|
||||||
|
#: build/index.js:1 src/carousel-extra/index.js:333 src/carousel/edit.js:86
|
||||||
|
msgid "Content type"
|
||||||
|
msgstr "Tipo de contenido"
|
||||||
|
|
||||||
|
#: build/index.js:1 src/carousel-extra/index.js:336 src/carousel/edit.js:89
|
||||||
|
msgid "Posts"
|
||||||
|
msgstr "Entradas"
|
||||||
|
|
||||||
|
#: build/index.js:1 src/carousel-extra/index.js:337 src/carousel/edit.js:90
|
||||||
|
msgid "Images / Video"
|
||||||
|
msgstr "Imágenes y Vídeo"
|
||||||
|
|
||||||
|
#: build/index.js:1 src/carousel-extra/index.js:351 src/carousel/edit.js:104
|
||||||
|
msgid "Carousel Images"
|
||||||
|
msgstr "Imágenes del carrusel"
|
||||||
|
|
||||||
|
#: build/index.js:1 src/carousel-extra/index.js:361 src/carousel/edit.js:122
|
||||||
|
msgid "Add images"
|
||||||
|
msgstr "Agregar imágenes"
|
||||||
|
|
||||||
|
#: build/index.js:1 src/carousel/edit.js:133
|
||||||
|
msgid "Post amount"
|
||||||
|
msgstr "Cantidad de entradas"
|
||||||
|
|
||||||
|
#: build/index.js:1 src/carousel/edit.js:146
|
||||||
|
msgid "Sort by"
|
||||||
|
msgstr "Ordenar por"
|
||||||
|
|
||||||
|
#: build/index.js:1 src/carousel-extra/index.js:376 src/carousel/edit.js:149
|
||||||
|
msgid "Date"
|
||||||
|
msgstr "Fecha"
|
||||||
|
|
||||||
|
#: build/index.js:1 src/carousel/edit.js:150
|
||||||
|
msgid "Modified"
|
||||||
|
msgstr "Modificado"
|
||||||
|
|
||||||
|
#: build/index.js:1 src/carousel-extra/index.js:377 src/carousel/edit.js:151
|
||||||
|
msgid "Title"
|
||||||
|
msgstr "Título"
|
||||||
|
|
||||||
|
#: build/index.js:1 src/carousel/edit.js:152
|
||||||
|
msgid "Name"
|
||||||
|
msgstr "Nombre:"
|
||||||
|
|
||||||
|
#: build/index.js:1 src/carousel/edit.js:153
|
||||||
|
msgid "Author"
|
||||||
|
msgstr "Autor"
|
||||||
|
|
||||||
|
#: build/index.js:1 src/carousel/edit.js:154
|
||||||
|
msgid "Random"
|
||||||
|
msgstr "Aleatorio"
|
||||||
|
|
||||||
|
#: build/index.js:1 src/carousel/edit.js:164
|
||||||
|
msgid "Find a block in content"
|
||||||
|
msgstr "Encontrar un bloque en el contenido"
|
||||||
|
|
||||||
|
#: build/index.js:1 src/carousel/edit.js:167 src/hooks/index.js:113
|
||||||
|
#: src/hooks/index.js:276
|
||||||
|
msgid "None"
|
||||||
|
msgstr "Ninguno"
|
||||||
|
|
||||||
|
#: build/index.js:1 src/carousel/edit.js:168
|
||||||
|
msgid "Cover"
|
||||||
|
msgstr "Cover"
|
||||||
|
|
||||||
|
#: build/index.js:1 src/carousel/edit.js:169
|
||||||
|
msgid "Image"
|
||||||
|
msgstr "Imagen"
|
||||||
|
|
||||||
|
#: build/index.js:1 src/carousel/edit.js:170
|
||||||
|
msgid "Media and text"
|
||||||
|
msgstr "Medios y texto"
|
||||||
|
|
||||||
|
#: build/index.js:1 src/carousel/edit.js:171
|
||||||
|
msgid "Video"
|
||||||
|
msgstr "Video"
|
||||||
|
|
||||||
|
#: build/index.js:1 src/carousel/edit.js:181
|
||||||
|
msgid "Show post if there is no block"
|
||||||
|
msgstr "Mostrar publicación si no hay ningún bloqueo"
|
||||||
|
|
||||||
|
#: build/index.js:1 src/carousel-extra/index.js:414 src/carousel/edit.js:190
|
||||||
|
msgid "Carousel Look"
|
||||||
|
msgstr "Diseño de carrusel"
|
||||||
|
|
||||||
|
#: build/index.js:1 src/carousel-extra/index.js:416 src/carousel/edit.js:192
|
||||||
|
msgid "Columns"
|
||||||
|
msgstr "Columnas"
|
||||||
|
|
||||||
|
#: build/index.js:1 src/carousel-extra/index.js:426 src/carousel/edit.js:202
|
||||||
|
msgid "Show controls"
|
||||||
|
msgstr "Mostrar Controles"
|
||||||
|
|
||||||
|
#: build/index.js:1 src/carousel-extra/index.js:434 src/carousel/edit.js:210
|
||||||
|
msgid "Show indicators"
|
||||||
|
msgstr "Mostrar indicadores"
|
||||||
|
|
||||||
|
#: build/index.js:1 src/carousel-extra/index.js:443 src/carousel/edit.js:220
|
||||||
|
msgid "Show text indicators"
|
||||||
|
msgstr "Mostrar indicadores de texto"
|
||||||
|
|
||||||
|
#: build/index.js:1 src/carousel-extra/index.js:451 src/carousel/edit.js:228
|
||||||
|
msgid "Auto start"
|
||||||
|
msgstr "Arranque automático"
|
||||||
|
|
||||||
|
#: build/index.js:1 src/carousel-extra/index.js:457 src/carousel/edit.js:234
|
||||||
|
msgid "Show caption"
|
||||||
|
msgstr "Mostrar leyenda"
|
||||||
|
|
||||||
|
#: build/index.js:1 src/carousel-extra/index.js:464 src/carousel/edit.js:242
|
||||||
|
msgid "Link titles"
|
||||||
|
msgstr "Enlace en títulos"
|
||||||
|
|
||||||
|
#: build/index.js:1 src/carousel-extra/index.js:470 src/carousel/edit.js:248
|
||||||
|
msgid "Transition in milliseconds"
|
||||||
|
msgstr "Transición en milisegundos"
|
||||||
|
|
||||||
|
#: build/index.js:1 src/carousel-extra/index.js:480 src/carousel/edit.js:257
|
||||||
|
msgid "Animation type"
|
||||||
|
msgstr "Tipo de animación"
|
||||||
|
|
||||||
|
#: build/index.js:1 src/carousel-extra/index.js:484 src/carousel/edit.js:261
|
||||||
|
msgid "Fade"
|
||||||
|
msgstr "Desvanecer"
|
||||||
|
|
||||||
|
#: build/index.js:1 src/carousel-extra/index.js:485 src/carousel/edit.js:262
|
||||||
|
msgid "Vertical"
|
||||||
|
msgstr "Vertical"
|
||||||
|
|
||||||
|
#: build/index.js:1 src/carousel/edit.js:270
|
||||||
|
msgid "Height in pixels, set zero to see full display height."
|
||||||
|
msgstr ""
|
||||||
|
"Altura en píxeles, establezca cero para ver la altura completa de la "
|
||||||
|
"pantalla."
|
||||||
|
|
||||||
|
#: build/index.js:1 src/carousel-extra/index.js:574
|
||||||
|
msgid "No category selected. "
|
||||||
|
msgstr "Ninguna categoría seleccionada. "
|
||||||
|
|
||||||
|
#: build/index.js:1 src/carousel-extra/index.js:578
|
||||||
|
msgid "Selected categories: "
|
||||||
|
msgstr "Categorías seleccionadas:"
|
||||||
|
|
||||||
|
#: build/index.js:1 src/carousel-extra/index.js:85
|
||||||
|
msgid "Carousel basic"
|
||||||
|
msgstr "Carrusel básico"
|
||||||
|
|
||||||
|
#: build/index.js:1 src/carousel-extra/index.js:87
|
||||||
|
msgid ""
|
||||||
|
"Add a non dynamic carousel to your posts, choose between posts or images."
|
||||||
|
msgstr ""
|
||||||
|
"Agrega un carrusel no dinámico a tus publicaciones, elige entre "
|
||||||
|
"publicaciones o imágenes."
|
||||||
|
|
||||||
|
#: build/index.js:1 src/carousel-extra/index.js:211
|
||||||
|
msgid "Find and select categories:"
|
||||||
|
msgstr "Buscar y seleccionar categorías:"
|
||||||
|
|
||||||
|
#: build/index.js:1 src/carousel-extra/index.js:360
|
||||||
|
msgid "Manage images"
|
||||||
|
msgstr "Gestionar imágenes"
|
||||||
|
|
||||||
|
#: build/index.js:1 src/carousel-extra/index.js:373
|
||||||
|
msgid "Show posts by"
|
||||||
|
msgstr "Mostrar publicaciones por"
|
||||||
|
|
||||||
|
#: build/index.js:1 src/carousel-extra/index.js:387
|
||||||
|
msgid "Items to show"
|
||||||
|
msgstr "Elementos para mostrar"
|
||||||
|
|
||||||
|
#: build/index.js:1 src/carousel-extra/index.js:394
|
||||||
|
msgid "Danger! 0 shows all."
|
||||||
|
msgstr "¡Peligro! 0 muestra todo."
|
||||||
|
|
||||||
|
#: build/index.js:1 src/carousel-extra/index.js:400
|
||||||
|
msgid "Sort items"
|
||||||
|
msgstr "Ordenar artículos"
|
||||||
|
|
||||||
|
#: build/index.js:1 src/carousel-extra/index.js:403
|
||||||
|
msgid "Descend"
|
||||||
|
msgstr "Descenso"
|
||||||
|
|
||||||
|
#: build/index.js:1 src/carousel-extra/index.js:404
|
||||||
|
msgid "Ascend"
|
||||||
|
msgstr "Ascenso"
|
||||||
|
|
||||||
|
#: build/index.js:1 src/carousel-extra/index.js:493
|
||||||
|
msgid "Height in pixels."
|
||||||
|
msgstr "Altura en píxels."
|
||||||
|
|
||||||
|
#: build/index.js:1 src/carousel-extra/index.js:500
|
||||||
|
msgid "Zero sets carousel at full display height."
|
||||||
|
msgstr "Cero establece el carrusel a la altura de la pantalla completa."
|
||||||
|
|
||||||
|
#: build/index.js:1 src/hooks/index.js:116 src/hooks/index.js:279
|
||||||
|
#: src/offcanvas/index.js:94
|
||||||
|
msgid "Offcanvas"
|
||||||
|
msgstr "Offcanvas"
|
||||||
|
|
||||||
|
#: build/index.js:1 src/offcanvas/index.js:205
|
||||||
|
msgid "Offcanvas Params"
|
||||||
|
msgstr "Parámetros offcanvas"
|
||||||
|
|
||||||
|
#: build/index.js:1 src/offcanvas/index.js:208
|
||||||
|
msgid "Position"
|
||||||
|
msgstr "Posición"
|
||||||
|
|
||||||
|
#: build/index.js:1 src/offcanvas/index.js:222
|
||||||
|
msgid "Width"
|
||||||
|
msgstr "Ancho "
|
||||||
|
|
||||||
|
#: build/index.js:1 src/offcanvas/index.js:227 src/offcanvas/index.js:242
|
||||||
|
msgid "Half"
|
||||||
|
msgstr "Mitad"
|
||||||
|
|
||||||
|
#: build/index.js:1 src/offcanvas/index.js:237
|
||||||
|
msgid "Height"
|
||||||
|
msgstr "Altura"
|
||||||
|
|
||||||
|
#: build/index.js:1 src/offcanvas/index.js:252
|
||||||
|
msgid "Display run"
|
||||||
|
msgstr "Ejecución de pantalla"
|
||||||
|
|
||||||
|
#: build/index.js:1 src/offcanvas/index.js:255
|
||||||
|
msgid "All"
|
||||||
|
msgstr "Todas"
|
||||||
|
|
||||||
|
#: build/index.js:1 src/offcanvas/index.js:257
|
||||||
|
msgid "Medium"
|
||||||
|
msgstr "Medio"
|
||||||
|
|
||||||
|
#: build/index.js:1 src/offcanvas/index.js:263 src/offcanvas/index.js:285
|
||||||
|
msgid "Run only on specific screen sizes"
|
||||||
|
msgstr "Ejecutar solo en tamaños de pantalla específicos"
|
||||||
|
|
||||||
|
#: build/index.js:1 src/offcanvas/index.js:267
|
||||||
|
msgid "Keep scroll window"
|
||||||
|
msgstr "Mantener scroll en ventana"
|
||||||
|
|
||||||
|
#: build/index.js:1 src/offcanvas/index.js:275
|
||||||
|
msgid "Backdrop behavior"
|
||||||
|
msgstr "Comportamiento del fondo"
|
||||||
|
|
||||||
|
#: build/index.js:1 src/offcanvas/index.js:279
|
||||||
|
msgid "Static"
|
||||||
|
msgstr "Estático"
|
||||||
|
|
||||||
|
#: build/index.js:1 src/offcanvas/index.js:280
|
||||||
|
msgid "False"
|
||||||
|
msgstr "Falso"
|
||||||
|
|
||||||
|
#: build/index.js:1 src/offcanvas/index.js:186
|
||||||
|
msgid "Add this anchor: #"
|
||||||
|
msgstr "Agregue este anclaje: #"
|
||||||
|
|
||||||
|
#: build/index.js:1 src/offcanvas/index.js:188
|
||||||
|
msgid ", in a button link field and in its advanced options."
|
||||||
|
msgstr ", en un campo de enlace de botón y en sus opciones avanzadas."
|
||||||
|
|
||||||
|
#: build/index.js:1 src/offcanvas/index.js:196
|
||||||
|
msgid "Do not forget to add an #anchor. "
|
||||||
|
msgstr "No olvides agregar un #ancla. "
|
||||||
|
|
||||||
|
#: build/index.js:1 src/offcanvas/index.js:342
|
||||||
|
msgid "Offcanvas header"
|
||||||
|
msgstr "Encabezado offcanvas"
|
||||||
|
|
||||||
|
#: build/index.js:1 src/offcanvas/index.js:345
|
||||||
|
msgid "Offcanvas header content. "
|
||||||
|
msgstr "Contenido de encabezado offcanvas."
|
||||||
|
|
||||||
|
#: build/index.js:1 src/offcanvas/index.js:370
|
||||||
|
msgid "Add offcanvas title"
|
||||||
|
msgstr "Agregar título offcanvas"
|
||||||
|
|
||||||
|
#: build/index.js:1 src/offcanvas/index.js:423
|
||||||
|
msgid "Offcanvas body content"
|
||||||
|
msgstr "Contenido del cuerpo offcanvas"
|
||||||
|
|
||||||
|
#: build/index.js:1 src/offcanvas/index.js:426
|
||||||
|
msgid "Offcanvas body content. "
|
||||||
|
msgstr "Contenido del cuerpo offcanvas."
|
||||||
|
|
||||||
|
#: build/index.js:1 src/offcanvas/index.js:438
|
||||||
|
msgid "Add offcanvas content blocks"
|
||||||
|
msgstr "Agregar bloques de contenido offcanvas"
|
||||||
|
|
||||||
|
#: build/index.js:1 src/hooks/index.js:101
|
||||||
|
msgid "Link to Block (Ekiline)"
|
||||||
|
msgstr "Enlace al bloque (Ekiline)"
|
||||||
|
|
||||||
|
#: build/index.js:1 src/hooks/index.js:104 src/hooks/index.js:267
|
||||||
|
msgid "Anchor block name"
|
||||||
|
msgstr "Nombre del bloque de anclaje"
|
||||||
|
|
||||||
|
#: build/index.js:1 src/hooks/index.js:110 src/hooks/index.js:273
|
||||||
|
msgid "Choose block"
|
||||||
|
msgstr "Escoja un bloque"
|
||||||
|
|
||||||
|
#: build/index.js:1 src/hooks/index.js:124 src/hooks/index.js:287
|
||||||
|
msgid "Is close button?"
|
||||||
|
msgstr "Botón cerrar Modal."
|
||||||
|
|
||||||
|
#: build/index.js:1 src/hooks/index.js:127 src/hooks/index.js:290
|
||||||
|
msgid "No."
|
||||||
|
msgstr "No."
|
||||||
|
|
||||||
|
#: build/index.js:1 src/hooks/index.js:127 src/hooks/index.js:290
|
||||||
|
msgid "Yes."
|
||||||
|
msgstr "Sí."
|
||||||
|
|
||||||
|
#: build/index.js:1 src/hooks/index.js:264
|
||||||
|
msgid "Link to Ekiline Block"
|
||||||
|
msgstr "Enlace al bloque Ekiline"
|
||||||
|
|
||||||
|
#: src/collection/edit.js:35
|
||||||
|
msgid "Ekiline Block Collection – hello from the editor!"
|
||||||
|
msgstr "Ekiline Block Collection – ¡hola desde el editor!"
|
||||||
|
|
||||||
|
#: src/collection/index.js:55
|
||||||
|
msgid "Ekiline Collection"
|
||||||
|
msgstr "Colección Ekiline"
|
||||||
|
|
||||||
|
#: src/collection/save.js:28
|
||||||
|
msgid "Ekiline Block Collection – hello from the saved content!"
|
||||||
|
msgstr "Ekiline Block Collection – ¡hola desde el contenido guardado!"
|
||||||
|
|
||||||
|
#: build/block.json src/block.json
|
||||||
|
msgctxt "block title"
|
||||||
|
msgid "Ekiline Block Collection"
|
||||||
|
msgstr "Colección Ekiline Block"
|
||||||
|
|
||||||
|
#: build/block.json src/block.json
|
||||||
|
msgctxt "block description"
|
||||||
|
msgid "Actions and blocks based on bootstrap 5."
|
||||||
|
msgstr "Acciones y bloqueos basados en bootstrap 5."
|
||||||
@@ -0,0 +1,390 @@
|
|||||||
|
# Copyright (C) 2022 Elemendas, Santiago Becerra
|
||||||
|
# This file is distributed under the same license as the Elemendas Addons plugin.
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Elemendas Addons 2.1.0\n"
|
||||||
|
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/elemendas-addons\n"
|
||||||
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"POT-Creation-Date: 2022-04-13T22:42:42+02:00\n"
|
||||||
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
|
"X-Generator: WP-CLI 2.6.0\n"
|
||||||
|
|
||||||
|
#. Plugin Name of the plugin
|
||||||
|
#: includes/plugin.php:209
|
||||||
|
#: includes/plugin.php:216
|
||||||
|
msgid "Elemendas Addons"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Plugin URI of the plugin
|
||||||
|
msgid "https://elementor.com/"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Description of the plugin
|
||||||
|
msgid "Improving the search results archive page for Elementor."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Author of the plugin
|
||||||
|
msgid "Elemendas, Santiago Becerra"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Author URI of the plugin
|
||||||
|
msgid "https://elemendas.com/"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/controls/highlighter.php:76
|
||||||
|
#: includes/widgets/added/search-results-highlighted.php:238
|
||||||
|
#: includes/widgets/added/search-results-highlighted.php:378
|
||||||
|
#: includes/widgets/extended/search-results-archive-title.php:279
|
||||||
|
msgid "Thickness (px)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/controls/highlighter.php:97
|
||||||
|
#: includes/widgets/added/search-results-highlighted.php:220
|
||||||
|
#: includes/widgets/added/search-results-highlighted.php:360
|
||||||
|
#: includes/widgets/extended/search-results-archive-title.php:261
|
||||||
|
msgid "Color"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/controls/quotation-marks.php:57
|
||||||
|
msgctxt "Quotation Marks Dropdown Selector"
|
||||||
|
msgid "angular double"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/controls/quotation-marks.php:58
|
||||||
|
msgctxt "Quotation Marks Dropdown Selector"
|
||||||
|
msgid "angular single"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/controls/quotation-marks.php:59
|
||||||
|
msgctxt "Quotation Marks Dropdown Selector"
|
||||||
|
msgid "english double"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/controls/quotation-marks.php:60
|
||||||
|
msgctxt "Quotation Marks Dropdown Selector"
|
||||||
|
msgid "english single"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/controls/quotation-marks.php:61
|
||||||
|
msgctxt "Quotation Marks Dropdown Selector"
|
||||||
|
msgid "german double"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/controls/quotation-marks.php:62
|
||||||
|
msgctxt "Quotation Marks Dropdown Selector"
|
||||||
|
msgid "german single"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/controls/quotation-marks.php:125
|
||||||
|
msgid "No quotation marks"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: 1: Plugin name 2: Elementor/Elementor Pro
|
||||||
|
#: includes/plugin.php:182
|
||||||
|
msgid "\"%1$s\" requires \"%2$s\" to be installed and activated."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: %s: Elementor/Elementor Pro
|
||||||
|
#: includes/plugin.php:184
|
||||||
|
msgid "Install %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: 1: Plugin name 2: Elementor/Elementor Pro
|
||||||
|
#: includes/plugin.php:190
|
||||||
|
msgid "\"%1$s\" requires \"%2$s\" to be activated."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: %s: Elementor/Elementor Pro
|
||||||
|
#: includes/plugin.php:192
|
||||||
|
msgid "Activate %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: 1: Plugin name 2: Elementor/Elementor Pro 3: Required Elementor version
|
||||||
|
#: includes/plugin.php:198
|
||||||
|
msgid "\"%1$s\" requires \"%2$s\" version %3$s or greater."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: %s: Elementor/Elementor Pro
|
||||||
|
#: includes/plugin.php:200
|
||||||
|
msgid "Update %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: %s: widget name
|
||||||
|
#: includes/widgets/added/search-results-highlighted.php:18
|
||||||
|
#: includes/widgets/added/search-results-highlighted.php:70
|
||||||
|
#: includes/widgets/added/search-results-highlighted.php:90
|
||||||
|
#: includes/widgets/added/search-results-highlighted.php:564
|
||||||
|
msgctxt "Widget Name"
|
||||||
|
msgid "Search Results Highlighted"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/widgets/added/search-results-highlighted.php:78
|
||||||
|
msgid "Drop this widget anywhere on the search results archive template."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: 1: strong open tag, 2: strong closing tag. 3: Widget name
|
||||||
|
#: includes/widgets/added/search-results-highlighted.php:89
|
||||||
|
msgid "%1$sNote:%2$s You can only add the %3$s widget once."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/widgets/added/search-results-highlighted.php:105
|
||||||
|
#: includes/widgets/extended/search-results-archive-title.php:67
|
||||||
|
#: includes/widgets/extended/search-results-archive-title.php:113
|
||||||
|
#: includes/widgets/extended/search-results-archive-title.php:121
|
||||||
|
msgid "Searched string"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/widgets/added/search-results-highlighted.php:115
|
||||||
|
#: includes/widgets/extended/search-results-archive-title.php:131
|
||||||
|
msgid "Post count"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/widgets/added/search-results-highlighted.php:132
|
||||||
|
#: includes/widgets/extended/search-results-archive-title.php:198
|
||||||
|
msgid "Search string highlighting"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/widgets/added/search-results-highlighted.php:142
|
||||||
|
msgid "Highlight each word separately"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/widgets/added/search-results-highlighted.php:144
|
||||||
|
#: includes/widgets/added/search-results-highlighted.php:286
|
||||||
|
#: includes/widgets/added/search-results-highlighted.php:426
|
||||||
|
#: includes/widgets/extended/search-results-archive-title.php:327
|
||||||
|
msgid "Yes"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/widgets/added/search-results-highlighted.php:145
|
||||||
|
#: includes/widgets/added/search-results-highlighted.php:287
|
||||||
|
#: includes/widgets/added/search-results-highlighted.php:427
|
||||||
|
#: includes/widgets/extended/search-results-archive-title.php:328
|
||||||
|
msgid "No"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/widgets/added/search-results-highlighted.php:148
|
||||||
|
msgid "Choose between highlighting the whole string or each word separately."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/widgets/added/search-results-highlighted.php:155
|
||||||
|
#: includes/widgets/extended/search-results-archive-title.php:208
|
||||||
|
msgid "Highlight elements"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/widgets/added/search-results-highlighted.php:168
|
||||||
|
msgid "Titles"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/widgets/added/search-results-highlighted.php:178
|
||||||
|
#: includes/widgets/added/search-results-highlighted.php:187
|
||||||
|
#: includes/widgets/added/search-results-highlighted.php:318
|
||||||
|
#: includes/widgets/added/search-results-highlighted.php:327
|
||||||
|
#: includes/widgets/extended/search-results-archive-title.php:219
|
||||||
|
#: includes/widgets/extended/search-results-archive-title.php:228
|
||||||
|
msgid "Highlighter"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/widgets/added/search-results-highlighted.php:208
|
||||||
|
#: includes/widgets/added/search-results-highlighted.php:348
|
||||||
|
#: includes/widgets/extended/search-results-archive-title.php:249
|
||||||
|
msgid "Underline"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/widgets/added/search-results-highlighted.php:263
|
||||||
|
#: includes/widgets/added/search-results-highlighted.php:403
|
||||||
|
#: includes/widgets/extended/search-results-archive-title.php:304
|
||||||
|
msgid "Style"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/widgets/added/search-results-highlighted.php:265
|
||||||
|
#: includes/widgets/added/search-results-highlighted.php:405
|
||||||
|
#: includes/widgets/extended/search-results-archive-title.php:306
|
||||||
|
msgid "Solid"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/widgets/added/search-results-highlighted.php:266
|
||||||
|
#: includes/widgets/added/search-results-highlighted.php:406
|
||||||
|
#: includes/widgets/extended/search-results-archive-title.php:307
|
||||||
|
msgid "Double"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/widgets/added/search-results-highlighted.php:267
|
||||||
|
#: includes/widgets/added/search-results-highlighted.php:407
|
||||||
|
#: includes/widgets/extended/search-results-archive-title.php:308
|
||||||
|
msgid "Dotted"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/widgets/added/search-results-highlighted.php:268
|
||||||
|
#: includes/widgets/added/search-results-highlighted.php:408
|
||||||
|
#: includes/widgets/extended/search-results-archive-title.php:309
|
||||||
|
msgid "Dashed"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/widgets/added/search-results-highlighted.php:269
|
||||||
|
#: includes/widgets/added/search-results-highlighted.php:409
|
||||||
|
#: includes/widgets/extended/search-results-archive-title.php:310
|
||||||
|
msgid "Wavy"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/widgets/added/search-results-highlighted.php:284
|
||||||
|
#: includes/widgets/added/search-results-highlighted.php:424
|
||||||
|
#: includes/widgets/extended/search-results-archive-title.php:325
|
||||||
|
msgid "Skip Ink"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/widgets/added/search-results-highlighted.php:290
|
||||||
|
#: includes/widgets/added/search-results-highlighted.php:430
|
||||||
|
#: includes/widgets/extended/search-results-archive-title.php:331
|
||||||
|
msgid "Specifies how underline is drawn when it pass over glyph descenders."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/widgets/added/search-results-highlighted.php:309
|
||||||
|
msgid "Excerpts"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/widgets/added/search-results-highlighted.php:454
|
||||||
|
#: includes/widgets/extended/search-results-archive-title.php:364
|
||||||
|
msgid "Text style"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: Don't worry about this string, it will actually take it from Elementor's translation file for consistency.
|
||||||
|
#: includes/widgets/added/search-results-highlighted.php:466
|
||||||
|
#: includes/widgets/extended/search-results-archive-title.php:376
|
||||||
|
msgid "Text Color"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: Don't worry about this string, it will actually take it from Elementor's translation file for consistency.
|
||||||
|
#: includes/widgets/added/search-results-highlighted.php:480
|
||||||
|
#: includes/widgets/extended/search-results-archive-title.php:390
|
||||||
|
msgid "Background Color"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: %s: widget name
|
||||||
|
#: includes/widgets/added/search-results-highlighted.php:563
|
||||||
|
msgid "%s widget. You won't see this while previewing your site."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/widgets/added/search-results-highlighted.php:572
|
||||||
|
msgid "This widget only works on the search results page"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: %s: Preview Settings
|
||||||
|
#: includes/widgets/added/search-results-highlighted.php:576
|
||||||
|
#: includes/widgets/extended/search-results-archive-title.php:81
|
||||||
|
msgid "Go to \"%s\""
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: Don't worry about this string, it will actually take it from Elementor's translation file for consistency.
|
||||||
|
#: includes/widgets/added/search-results-highlighted.php:578
|
||||||
|
#: includes/widgets/extended/search-results-archive-title.php:83
|
||||||
|
msgid "Preview Settings"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: 1: 'Preview Dynamic Content as', 2: 'Search Results' 3: 'Search Term'
|
||||||
|
#: includes/widgets/added/search-results-highlighted.php:583
|
||||||
|
#: includes/widgets/extended/search-results-archive-title.php:86
|
||||||
|
msgid "Set \"%1$s\" \"%2$s\" and fill the \"%3$s\""
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: Don't worry about this string, it will actually take it from Elementor's translation file for consistency.
|
||||||
|
#: includes/widgets/added/search-results-highlighted.php:585
|
||||||
|
#: includes/widgets/extended/search-results-archive-title.php:88
|
||||||
|
msgid "Preview Dynamic Content as"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: Don't worry about this string, it will actually take it from Elementor's translation file for consistency.
|
||||||
|
#: includes/widgets/added/search-results-highlighted.php:587
|
||||||
|
#: includes/widgets/added/search-results-highlighted.php:598
|
||||||
|
#: includes/widgets/extended/search-results-archive-title.php:90
|
||||||
|
#: includes/widgets/extended/search-results-archive-title.php:100
|
||||||
|
msgid "Search Results"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: Don't worry about this string, it will actually take it from Elementor's translation file for consistency.
|
||||||
|
#: includes/widgets/added/search-results-highlighted.php:589
|
||||||
|
#: includes/widgets/extended/search-results-archive-title.php:92
|
||||||
|
msgid "Search Term"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: 1: 'Display Conditions' 2: flow icon 3: 'Search Results'
|
||||||
|
#: includes/widgets/added/search-results-highlighted.php:593
|
||||||
|
#: includes/widgets/extended/search-results-archive-title.php:95
|
||||||
|
msgid "Adjust the \"%1$s\" %2$s to \"%3$s\""
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: Don't worry about this string, it will actually take it from Elementor's translation file for consistency.
|
||||||
|
#: includes/widgets/added/search-results-highlighted.php:595
|
||||||
|
#: includes/widgets/extended/search-results-archive-title.php:97
|
||||||
|
msgid "Display Conditions"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: Don't worry about this string, it will actually take it from Elementor's translation file for consistency.
|
||||||
|
#: includes/widgets/extended/search-results-archive-title.php:55
|
||||||
|
msgid "Content"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: 1: strong open tag, 2: strong closing tag. 3: Widget name
|
||||||
|
#: includes/widgets/extended/search-results-archive-title.php:78
|
||||||
|
msgid "%1$sNote:%2$s This section is only available on the search results page."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/widgets/extended/search-results-archive-title.php:138
|
||||||
|
msgid "Multiple results"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: Keep {{result-number}} and {{search-string}} as they are, without translation
|
||||||
|
#: includes/widgets/extended/search-results-archive-title.php:142
|
||||||
|
msgid "Here are the {{result-number}} posts containing {{search-string}}"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/widgets/extended/search-results-archive-title.php:144
|
||||||
|
msgid "Shown when there are more than one post found"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: Keep {{result-number}} as it is, without translation
|
||||||
|
#: includes/widgets/extended/search-results-archive-title.php:146
|
||||||
|
msgid "Use {{result-number}} to show the post found number"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: Keep {{search-string}} as it is, without translation
|
||||||
|
#: includes/widgets/extended/search-results-archive-title.php:148
|
||||||
|
msgid "Use {{search-string}} to show the search string"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/widgets/extended/search-results-archive-title.php:155
|
||||||
|
msgid "Only one result"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: Keep {{search-string}} as it is, without translation
|
||||||
|
#: includes/widgets/extended/search-results-archive-title.php:159
|
||||||
|
msgid "Here is the unique post containing {{search-string}}"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/widgets/extended/search-results-archive-title.php:161
|
||||||
|
msgid "Shown when a single entry is found"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/widgets/extended/search-results-archive-title.php:168
|
||||||
|
msgid "No results found"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: Keep {{search-string}} as it is, without translation
|
||||||
|
#: includes/widgets/extended/search-results-archive-title.php:172
|
||||||
|
msgid "There are no posts containing {{search-string}}"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/widgets/extended/search-results-archive-title.php:174
|
||||||
|
msgid "Shown when there are no posts found"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/widgets/extended/search-results-archive-title.php:348
|
||||||
|
msgid "Quotation Marks"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/widgets/extended/search-results-archive-title.php:434
|
||||||
|
msgid "This setting will have no effect if the font size is set in the typography control"
|
||||||
|
msgstr ""
|
||||||
@@ -0,0 +1,231 @@
|
|||||||
|
# Copyright (C) 2022 bPlugins LLC
|
||||||
|
# This file is distributed under the GPLv3.
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Embed SoundCloud 1.0.0\n"
|
||||||
|
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/sound-cloud-block\n"
|
||||||
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"POT-Creation-Date: 2022-10-06T20:15:43+02:00\n"
|
||||||
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
|
"X-Generator: WP-CLI 2.6.0\n"
|
||||||
|
"X-Domain: sound-cloud\n"
|
||||||
|
|
||||||
|
#. Plugin Name of the plugin
|
||||||
|
msgid "Embed SoundCloud"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Description of the plugin
|
||||||
|
msgid "Embed your soundCloud tracks with a beautiful Gutenberg block ."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Author of the plugin
|
||||||
|
msgid "bPlugins LLC"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Author URI of the plugin
|
||||||
|
msgid "http://bplugins.com"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dist/editor.js:1
|
||||||
|
#: dist/editor.js:39
|
||||||
|
msgid "General"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dist/editor.js:1
|
||||||
|
#: dist/editor.js:44
|
||||||
|
msgid "Style"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dist/editor.js:1
|
||||||
|
#: dist/editor.js:50
|
||||||
|
msgid "red"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dist/editor.js:1
|
||||||
|
#: dist/editor.js:51
|
||||||
|
msgid "white"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dist/editor.js:1
|
||||||
|
#: dist/editor.js:52
|
||||||
|
msgid "blue"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dist/editor.js:1
|
||||||
|
#: dist/editor.js:462
|
||||||
|
msgid "Sound Cloud Settings"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dist/editor.js:1
|
||||||
|
#: dist/editor.js:467
|
||||||
|
msgid "Url"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dist/editor.js:1
|
||||||
|
#: dist/editor.js:467
|
||||||
|
msgid "top"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dist/editor.js:1
|
||||||
|
#: dist/editor.js:467
|
||||||
|
msgid "Enter Track Url"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dist/editor.js:1
|
||||||
|
#: dist/editor.js:471
|
||||||
|
msgid "Start Track"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dist/editor.js:1
|
||||||
|
#: dist/editor.js:481
|
||||||
|
msgid "Width"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dist/editor.js:1
|
||||||
|
#: dist/editor.js:488
|
||||||
|
msgid "Height"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dist/editor.js:1
|
||||||
|
#: dist/editor.js:500
|
||||||
|
msgid "Options"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dist/editor.js:1
|
||||||
|
#: dist/editor.js:503
|
||||||
|
msgid "Enable Auto Play "
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dist/editor.js:1
|
||||||
|
#: dist/editor.js:510
|
||||||
|
msgid "Show Buying "
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dist/editor.js:1
|
||||||
|
#: dist/editor.js:518
|
||||||
|
msgid "Show Download "
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dist/editor.js:1
|
||||||
|
#: dist/editor.js:526
|
||||||
|
msgid "Comments "
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dist/editor.js:1
|
||||||
|
#: dist/editor.js:533
|
||||||
|
msgid "Show Artwork "
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dist/editor.js:1
|
||||||
|
#: dist/editor.js:540
|
||||||
|
msgid "Show Play Count "
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dist/editor.js:1
|
||||||
|
#: dist/editor.js:547
|
||||||
|
msgid "Show User "
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dist/editor.js:1
|
||||||
|
#: dist/editor.js:554
|
||||||
|
msgid "Single Active "
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dist/editor.js:1
|
||||||
|
#: dist/editor.js:572
|
||||||
|
msgid "Hide Related "
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dist/editor.js:1
|
||||||
|
#: dist/editor.js:579
|
||||||
|
msgid "Visual Design"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dist/editor.js:1
|
||||||
|
#: dist/editor.js:586
|
||||||
|
msgid "Teaser "
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dist/editor.js:1
|
||||||
|
#: dist/editor.js:593
|
||||||
|
msgid "Show Sharing "
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dist/editor.js:1
|
||||||
|
#: dist/editor.js:602
|
||||||
|
msgid "Sound Cloud Style"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dist/editor.js:1
|
||||||
|
#: dist/editor.js:605
|
||||||
|
msgid "Color"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dist/editor.js:1
|
||||||
|
#: dist/editor.js:612
|
||||||
|
msgid "Border"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dist/editor.js:1
|
||||||
|
#: dist/editor.js:616
|
||||||
|
msgid "Border Radius"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dist/editor.js:1
|
||||||
|
#: dist/editor.js:621
|
||||||
|
msgid "Shadow"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dist/editor.js:1
|
||||||
|
#: dist/editor.js:630
|
||||||
|
msgid "Sound Cloud in left"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dist/editor.js:1
|
||||||
|
#: dist/editor.js:631
|
||||||
|
msgid "Sound Cloud in center"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: dist/editor.js:1
|
||||||
|
#: dist/editor.js:632
|
||||||
|
msgid "Sound Cloud in right"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: block.json
|
||||||
|
msgctxt "block title"
|
||||||
|
msgid "SoundCloud Block"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: block.json
|
||||||
|
msgctxt "block description"
|
||||||
|
msgid "Embed SoundCloud Tracks"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: block.json
|
||||||
|
msgctxt "block keyword"
|
||||||
|
msgid "soundCloud"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: block.json
|
||||||
|
msgctxt "block keyword"
|
||||||
|
msgid "block"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: block.json
|
||||||
|
msgctxt "block keyword"
|
||||||
|
msgid "Gutenberg"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: block.json
|
||||||
|
msgctxt "block keyword"
|
||||||
|
msgid " music player"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: block.json
|
||||||
|
msgctxt "block keyword"
|
||||||
|
msgid " mp3 player"
|
||||||
|
msgstr ""
|
||||||
@@ -0,0 +1,6 @@
|
|||||||
|
/**1.0.1 - 2022.11.12 **/
|
||||||
|
- Update: Description
|
||||||
|
- Update: Change priority from DESC to ASC
|
||||||
|
|
||||||
|
/**1.0.0 - 2022.11.01 **/
|
||||||
|
~ The first released.
|
||||||
@@ -0,0 +1,3 @@
|
|||||||
|
*** WooCommerce Extension Template Changelog ***
|
||||||
|
|
||||||
|
2022-04-20 - version 1.1
|
||||||
35
spec/fixtures/dynamic_finders/plugin_version/equallyai/composer_file/package.json
vendored
Normal file
35
spec/fixtures/dynamic_finders/plugin_version/equallyai/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,35 @@
|
|||||||
|
{
|
||||||
|
"name": "wp-equally-ai",
|
||||||
|
"version": "1.0.1",
|
||||||
|
"main": "index.js",
|
||||||
|
"license": "gplv2",
|
||||||
|
"dependencies": {
|
||||||
|
"@supercharge/sttp": "^1.3.0",
|
||||||
|
"axios": "^0.21.1",
|
||||||
|
"prop-types": "^15.8.1",
|
||||||
|
"react": "^16.7.0",
|
||||||
|
"react-dom": "^16.7.0"
|
||||||
|
},
|
||||||
|
"devDependencies": {
|
||||||
|
"@babel/preset-es2015": "^7.0.0-beta.53",
|
||||||
|
"babel-core": "^6.25.0",
|
||||||
|
"babel-loader": "^7.1.1",
|
||||||
|
"babel-plugin-transform-class-properties": "^6.24.1",
|
||||||
|
"babel-plugin-transform-react-jsx": "^6.24.1",
|
||||||
|
"babel-preset-env": "^1.6.0",
|
||||||
|
"babel-preset-es2015": "^6.24.1",
|
||||||
|
"babel-preset-react": "^6.24.1",
|
||||||
|
"cross-env": "^5.0.1",
|
||||||
|
"css-loader": "^6.7.1",
|
||||||
|
"postcss-loader": "^6.2.1",
|
||||||
|
"style-loader": "^3.3.1",
|
||||||
|
"svg-inline-loader": "^0.8.2",
|
||||||
|
"webpack": "^5.74.0",
|
||||||
|
"webpack-cli": "^4.10.0"
|
||||||
|
},
|
||||||
|
"scripts": {
|
||||||
|
"test": "echo \"Error: no test specified\" && exit 1",
|
||||||
|
"build": "cross-env BABEL_ENV=default NODE_ENV=production webpack --mode production",
|
||||||
|
"start": "cross-env BABEL_ENV=default webpack --mode development --watch"
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,261 @@
|
|||||||
|
# Copyright (C) 2022
|
||||||
|
# This file is distributed under the same license as the Estimated Shipping Date Per Product For Woocommerce plugin.
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Estimated Shipping Date Per Product For Woocommerce 1.0\n"
|
||||||
|
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/estimated-"
|
||||||
|
"shipping-date-per-product-for-woocommerce\n"
|
||||||
|
"Last-Translator: \n"
|
||||||
|
"Language-Team: English (United States)\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"POT-Creation-Date: 2022-03-03T06:48:55+01:00\n"
|
||||||
|
"PO-Revision-Date: 2022-03-03 05:57+0000\n"
|
||||||
|
"X-Generator: Loco https://localise.biz/\n"
|
||||||
|
"X-Domain: estimated-shipping-date-per-product-for-woocommerce\n"
|
||||||
|
"Language: en_US\n"
|
||||||
|
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||||
|
"X-Loco-Version: 2.5.8; wp-5.9.1"
|
||||||
|
|
||||||
|
#. Plugin Name of the plugin
|
||||||
|
msgid "Estimated Shipping Date Per Product For Woocommerce"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Description of the plugin
|
||||||
|
msgid "This plugin allows create Select Delivery Dates plugin."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/esdpfw-admin.php:15
|
||||||
|
msgid "Sunday"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/esdpfw-admin.php:16
|
||||||
|
msgid "Monday"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/esdpfw-admin.php:17
|
||||||
|
msgid "Tuesday"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/esdpfw-admin.php:18
|
||||||
|
msgid "Wednesday"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/esdpfw-admin.php:19
|
||||||
|
msgid "Thursday"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/esdpfw-admin.php:20
|
||||||
|
msgid "Friday"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/esdpfw-admin.php:21
|
||||||
|
msgid "Saturday"
|
||||||
|
msgstr "cfvfxdgvfzgbdf"
|
||||||
|
|
||||||
|
#: admin/esdpfw-admin.php:24
|
||||||
|
msgid "January"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/esdpfw-admin.php:25
|
||||||
|
msgid "February"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/esdpfw-admin.php:26
|
||||||
|
msgid "March"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/esdpfw-admin.php:27
|
||||||
|
msgid "April"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/esdpfw-admin.php:28
|
||||||
|
msgid "May"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/esdpfw-admin.php:29
|
||||||
|
msgid "June"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/esdpfw-admin.php:30
|
||||||
|
msgid "July"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/esdpfw-admin.php:31
|
||||||
|
msgid "August"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/esdpfw-admin.php:32
|
||||||
|
msgid "September"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/esdpfw-admin.php:33
|
||||||
|
msgid "October"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/esdpfw-admin.php:34
|
||||||
|
msgid "November"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/esdpfw-admin.php:35
|
||||||
|
msgid "December"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/esdpfw-admin.php:49
|
||||||
|
msgid "General Setting"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/esdpfw-admin.php:52
|
||||||
|
msgid "Text Settings"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/esdpfw-admin.php:55
|
||||||
|
msgid "Day Off Settings"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/esdpfw-admin.php:61
|
||||||
|
msgid "Enabled delivery date?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/esdpfw-admin.php:67
|
||||||
|
msgid "Display on cart and checkout page?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/esdpfw-admin.php:73
|
||||||
|
msgid "Display on order page?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/esdpfw-admin.php:79
|
||||||
|
msgid "Display in order email?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/esdpfw-admin.php:85
|
||||||
|
msgid "Hide if product out of stock?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/esdpfw-admin.php:108
|
||||||
|
msgid "Estimated date text"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/esdpfw-admin.php:112
|
||||||
|
msgid "For display number of remaining days"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/esdpfw-admin.php:113
|
||||||
|
msgid "x is number of additional day Example:{d+1},{d+2}.."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/esdpfw-admin.php:114
|
||||||
|
msgid "x is number of additional day Example:{d-1},{d-2}.."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/esdpfw-admin.php:115 admin/esdpfw-admin.php:126
|
||||||
|
msgid "For display delivery date"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/esdpfw-admin.php:116 admin/esdpfw-admin.php:127
|
||||||
|
msgid "x is number of additional day Example:{date+1},{date+2}.."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/esdpfw-admin.php:117 admin/esdpfw-admin.php:128
|
||||||
|
msgid "x is number of additional day Example:{date-1},{date-2}.."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/esdpfw-admin.php:122
|
||||||
|
msgid "Text On order page"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/esdpfw-admin.php:133
|
||||||
|
msgid "Date Format"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/esdpfw-admin.php:137
|
||||||
|
msgid "Day of month (2 digits with leading zeros)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/esdpfw-admin.php:138
|
||||||
|
msgid "A textual representation of a day, three letters"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/esdpfw-admin.php:139
|
||||||
|
msgid "Day of the month without leading zeros"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/esdpfw-admin.php:140
|
||||||
|
msgid "A full textual representation of the day of the week"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/esdpfw-admin.php:141
|
||||||
|
msgid "Numeric representation of a month, with leading zeros"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/esdpfw-admin.php:142
|
||||||
|
msgid "A full textual representation of a month, with leading zeros"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/esdpfw-admin.php:143
|
||||||
|
msgid "A short textual representation of a month, three letters"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/esdpfw-admin.php:144 admin/esdpfw-admin.php:145
|
||||||
|
msgid "Numeric representation of a month, without leading zeros"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/esdpfw-admin.php:146
|
||||||
|
msgid "A full numeric representation of a year, 4 digits"
|
||||||
|
msgstr "A full numeric representation of a year, 4 digitss"
|
||||||
|
|
||||||
|
#: admin/esdpfw-admin.php:147
|
||||||
|
msgid "A two digit representation of a year"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/esdpfw-admin.php:157
|
||||||
|
msgid "Week Day Off"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/esdpfw-admin.php:170
|
||||||
|
msgid "Specific Day Off"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/esdpfw-admin.php:187 admin/esdpfw-admin.php:254
|
||||||
|
#: admin/esdpfw-admin.php:287 admin/esdpfw-admin.php:376
|
||||||
|
#: admin/esdpfw-admin.php:412 admin/esdpfw-admin.php:442
|
||||||
|
msgid "Select Day"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/esdpfw-admin.php:198 admin/esdpfw-admin.php:265
|
||||||
|
#: admin/esdpfw-admin.php:298 admin/esdpfw-admin.php:387
|
||||||
|
#: admin/esdpfw-admin.php:422 admin/esdpfw-admin.php:452
|
||||||
|
msgid "Select Month"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/esdpfw-admin.php:209 admin/esdpfw-admin.php:276
|
||||||
|
#: admin/esdpfw-admin.php:309 admin/esdpfw-admin.php:397
|
||||||
|
#: admin/esdpfw-admin.php:432 admin/esdpfw-admin.php:462
|
||||||
|
msgid "Select Year"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/esdpfw-admin.php:234
|
||||||
|
msgid "Specific Period Off"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/esdpfw-admin.php:576
|
||||||
|
msgid "Enable for this product?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/esdpfw-admin.php:584
|
||||||
|
msgid "Enable for each variation?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/esdpfw-admin.php:592 admin/esdpfw-admin.php:643
|
||||||
|
msgid "Estimation Time :"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/esdpfw-admin.php:600 admin/esdpfw-admin.php:647
|
||||||
|
msgid "Estimated date text :"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: admin/esdpfw-admin.php:639
|
||||||
|
msgid "Enable Shipping Date For This Variation?"
|
||||||
|
msgstr ""
|
||||||
@@ -0,0 +1,49 @@
|
|||||||
|
# Copyright (C) 2022 Erick Hitter
|
||||||
|
# This file is distributed under the same license as the ETH Embed Anchor.fm package.
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: ETH Embed Anchor.fm 1.0\n"
|
||||||
|
"Report-Msgid-Bugs-To: "
|
||||||
|
"https://wordpress.org/support/plugin/eth-embed-anchor-fm\n"
|
||||||
|
"POT-Creation-Date: 2022-07-19 02:48:11+00:00\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=utf-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"PO-Revision-Date: 2022-MO-DA HO:MI+ZONE\n"
|
||||||
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
"Language: en\n"
|
||||||
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
"X-Poedit-Country: United States\n"
|
||||||
|
"X-Poedit-SourceCharset: UTF-8\n"
|
||||||
|
"X-Poedit-KeywordsList: "
|
||||||
|
"__;_e;_x:1,2c;_ex:1,2c;_n:1,2;_nx:1,2,4c;_n_noop:1,2;_nx_noop:1,2,3c;esc_"
|
||||||
|
"attr__;esc_html__;esc_attr_e;esc_html_e;esc_attr_x:1,2c;esc_html_x:1,2c;\n"
|
||||||
|
"X-Poedit-Basepath: ../\n"
|
||||||
|
"X-Poedit-SearchPath-0: .\n"
|
||||||
|
"X-Poedit-Bookmarks: \n"
|
||||||
|
"X-Textdomain-Support: yes\n"
|
||||||
|
"X-Generator: grunt-wp-i18n 1.0.3\n"
|
||||||
|
|
||||||
|
#. Plugin Name of the plugin/theme
|
||||||
|
msgid "ETH Embed Anchor.fm"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Plugin URI of the plugin/theme
|
||||||
|
msgid "https://ethitter.com/plugins/eth-embed-anchor-fm/"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Description of the plugin/theme
|
||||||
|
msgid ""
|
||||||
|
"Adds <a href=\"https://anchor.fm/\">Anchor.fm</a> as an oEmbed provider, "
|
||||||
|
"allowing you to embed a podcast episode in content simply by pasting its "
|
||||||
|
"URL."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Author of the plugin/theme
|
||||||
|
msgid "Erick Hitter"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Author URI of the plugin/theme
|
||||||
|
msgid "https://ethitter.com/"
|
||||||
|
msgstr ""
|
||||||
453
spec/fixtures/dynamic_finders/plugin_version/ethpress/translation_file/languages/ethpress.pot
vendored
Normal file
453
spec/fixtures/dynamic_finders/plugin_version/ethpress/translation_file/languages/ethpress.pot
vendored
Normal file
@@ -0,0 +1,453 @@
|
|||||||
|
# Copyright (C) 2022 Lynn (lynn.mvp at tutanota dot com), ethereumicoio
|
||||||
|
# This file is distributed under the same license as the EthPress package.
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: EthPress 1.7.1\n"
|
||||||
|
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/ethpress\n"
|
||||||
|
"POT-Creation-Date: 2022-09-21 10:00:45+00:00\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=utf-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"PO-Revision-Date: 2022-MO-DA HO:MI+ZONE\n"
|
||||||
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
"Language: en\n"
|
||||||
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
"X-Poedit-Country: United States\n"
|
||||||
|
"X-Poedit-SourceCharset: UTF-8\n"
|
||||||
|
"X-Poedit-KeywordsList: "
|
||||||
|
"__;_e;_x:1,2c;_ex:1,2c;_n:1,2;_nx:1,2,4c;_n_noop:1,2;_nx_noop:1,2,3c;esc_"
|
||||||
|
"attr__;esc_html__;esc_attr_e;esc_html_e;esc_attr_x:1,2c;esc_html_x:1,2c;\n"
|
||||||
|
"X-Poedit-Basepath: ../\n"
|
||||||
|
"X-Poedit-SearchPath-0: .\n"
|
||||||
|
"X-Poedit-Bookmarks: \n"
|
||||||
|
"X-Textdomain-Support: yes\n"
|
||||||
|
"X-Generator: grunt-wp-i18n 1.0.3\n"
|
||||||
|
|
||||||
|
#: app/Address.php:120
|
||||||
|
msgid "Bad address."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: app/Address.php:189
|
||||||
|
msgid "No user for this address exists."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: app/Address.php:326 app/Address.php:333
|
||||||
|
msgid "No matching address."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: app/Address.php:357
|
||||||
|
msgid "You have not registered on this site; we cannot log you in"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: app/Address.php:386
|
||||||
|
msgid "Empty username."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: app/Address.php:391
|
||||||
|
msgid "Username already exists."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: app/Address.php:400
|
||||||
|
msgid "Error during creation"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Plugin Name of the plugin/theme
|
||||||
|
msgid "EthPress"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: app/Admin/Options.php:65
|
||||||
|
msgid "Standard"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: app/Admin/Options.php:117
|
||||||
|
msgid "Settings saved."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: app/Admin/Options.php:133
|
||||||
|
msgid "EthPress Options Page"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: app/Admin/Options.php:134
|
||||||
|
msgid "The MetaMask login plugin."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: app/Admin/Options.php:141
|
||||||
|
msgid "Opens in new tab"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: app/Admin/Options.php:141
|
||||||
|
msgid "Developer's wallet, etherscan.io"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: app/Admin/Options.php:141
|
||||||
|
msgid "Donate to support development!"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: app/Admin/Options.php:141
|
||||||
|
msgid "For fiat, find the charity link on wp plugin directory."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: app/Admin/Options.php:147 app/Admin/Options.php:232
|
||||||
|
msgid ""
|
||||||
|
"If you like <strong>EthPress</strong> please leave us a %1$s rating. A huge "
|
||||||
|
"thanks in advance!"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: app/Admin/Options.php:154
|
||||||
|
msgid "Awesome Premium Features"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: app/Admin/Options.php:155
|
||||||
|
msgid "Managed Verification Service and more."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: app/Admin/Options.php:157
|
||||||
|
msgid "Upgrade Now!"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: app/Admin/Options.php:223
|
||||||
|
msgid "Save Changes"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: app/Admin/Options.php:224
|
||||||
|
msgid "Are you sure you want to delete all EthPress options?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: app/Admin/Options.php:224
|
||||||
|
msgid "Reset"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: app/Admin/Options.php:259
|
||||||
|
msgid "Main Settings"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: app/Admin/Options.php:279
|
||||||
|
msgid "Login Display Settings"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: app/Admin/Options.php:299
|
||||||
|
msgid "Labels Settings"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: app/Admin/Options.php:315 app/Front.php:79 app/Plugin.php:307
|
||||||
|
msgid "Log In With a Crypto Wallet"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: app/Admin/Options.php:322
|
||||||
|
msgid "Login button label"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: app/Admin/Options.php:328
|
||||||
|
msgid "The Login button text can be set there."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: app/Admin/Options.php:332 app/Admin/Options.php:371
|
||||||
|
#: app/Admin/Options.php:410 app/Admin/Options.php:531
|
||||||
|
#: app/Admin/Options.php:590 app/Admin/Options.php:651
|
||||||
|
#: app/Admin/Options.php:714 app/Admin/Options.php:783
|
||||||
|
#: app/Admin/Options.php:851
|
||||||
|
msgid "Upgrade to keep using this feature!"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: app/Admin/Options.php:336 app/Admin/Options.php:375
|
||||||
|
#: app/Admin/Options.php:414 app/Admin/Options.php:535
|
||||||
|
#: app/Admin/Options.php:594 app/Admin/Options.php:655
|
||||||
|
#: app/Admin/Options.php:718 app/Admin/Options.php:787
|
||||||
|
#: app/Admin/Options.php:855
|
||||||
|
msgid "Upgrade to use this feature!"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: app/Admin/Options.php:354 app/Front.php:124 app/Plugin.php:308
|
||||||
|
msgid "Link Your Crypto Wallets"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: app/Admin/Options.php:361
|
||||||
|
msgid "Link button label"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: app/Admin/Options.php:367
|
||||||
|
msgid "The Link button text can be set there."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: app/Admin/Options.php:393 app/Front.php:198 app/Plugin.php:309
|
||||||
|
msgid "Register With a Crypto Wallet"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: app/Admin/Options.php:400
|
||||||
|
msgid "Register button label"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: app/Admin/Options.php:406
|
||||||
|
msgid "The Register button text can be set there."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: app/Admin/Options.php:441
|
||||||
|
msgid "Verification Service API URL"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: app/Admin/Options.php:447 app/Admin/Options.php:572
|
||||||
|
msgid ""
|
||||||
|
"Your PHP installation has the necessary PHP extension to do verifications "
|
||||||
|
"on your server, so there is nothing to configure."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: app/Admin/Options.php:458
|
||||||
|
msgid ""
|
||||||
|
"Use an API or install %1$sPHP-GMP%2$s or %3$sPHP-BCMath%2$s to verify "
|
||||||
|
"Ethereum signatures."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: app/Admin/Options.php:478
|
||||||
|
#. translators: a link.
|
||||||
|
msgid "To deploy your own verification service, see %1$s."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: app/Admin/Options.php:518
|
||||||
|
msgid "Redirect URL"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: app/Admin/Options.php:524
|
||||||
|
msgid "The page to redirect after a successful login"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: app/Admin/Options.php:566
|
||||||
|
msgid "Managed Verification Service"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: app/Admin/Options.php:580
|
||||||
|
msgid "Use Managed Verification Service"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: app/Admin/Options.php:583
|
||||||
|
msgid "Check to use the Managed Verification Service."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: app/Admin/Options.php:636
|
||||||
|
msgid "WooCommerce Login Form"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: app/Admin/Options.php:641
|
||||||
|
msgid "Show on WooCommerce Login Form?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: app/Admin/Options.php:644
|
||||||
|
msgid "Check to show EthPress login button on the WooCommerce Login Form."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: app/Admin/Options.php:660 app/Admin/Options.php:724
|
||||||
|
#: app/Admin/Options.php:792 app/Admin/Options.php:860
|
||||||
|
msgid "Install WooCommerce to use this feature!"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: app/Admin/Options.php:660 app/Admin/Options.php:724
|
||||||
|
#: app/Admin/Options.php:792 app/Admin/Options.php:860
|
||||||
|
msgid ""
|
||||||
|
"WooCommerce is a customizable, open-source eCommerce platform built on "
|
||||||
|
"WordPress."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: app/Admin/Options.php:699
|
||||||
|
msgid "WooCommerce Register Form"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: app/Admin/Options.php:704
|
||||||
|
msgid "Show on WooCommerce Register Form?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: app/Admin/Options.php:707
|
||||||
|
msgid "Check to show EthPress register button on the WooCommerce Register Form."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: app/Admin/Options.php:729 app/Admin/Options.php:797
|
||||||
|
msgid ""
|
||||||
|
"Check the Administration > Settings > General > Membership: Anyone can "
|
||||||
|
"register box to use this feature."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: app/Admin/Options.php:768
|
||||||
|
msgid "WooCommerce Checkout Page Register Form"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: app/Admin/Options.php:773
|
||||||
|
msgid "Show on the WooCommerce Checkout page?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: app/Admin/Options.php:776
|
||||||
|
msgid "Check to show EthPress register button on the WooCommerce Checkout page."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: app/Admin/Options.php:836
|
||||||
|
msgid "WooCommerce Account Details Link Wallet Form"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: app/Admin/Options.php:841
|
||||||
|
msgid "Show the Link Wallet button on the WooCommerce Account Details page?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: app/Admin/Options.php:844
|
||||||
|
msgid "Check to the Link Wallet button on the WooCommerce Account Details page."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: app/Admin/Options.php:935
|
||||||
|
msgid "Settings"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: app/Front.php:31 app/Front.php:150
|
||||||
|
msgid "Enable JavaScript to log in with a crypto wallet."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: app/Linker.php:58
|
||||||
|
#. translators: wallet address
|
||||||
|
msgid "Address %1$s... is already linked to an account. Doing nothing."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: app/Linker.php:80
|
||||||
|
#. translators: wallet address
|
||||||
|
msgid ""
|
||||||
|
"Success! Address %1$s... is now linked to your account. You may close this "
|
||||||
|
"dialog, or link another address."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: app/Linker.php:116
|
||||||
|
msgid "Signature mismatch. Try again."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: app/Linker.php:119
|
||||||
|
msgid "Invalid request."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: app/Linker.php:133
|
||||||
|
msgid "Associate a wallet with your account"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: app/Linker.php:135
|
||||||
|
msgid ""
|
||||||
|
"Account and address have been linked successfully. You may close this "
|
||||||
|
"dialog."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: app/Linker.php:136
|
||||||
|
msgid "Aborted"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: app/Linker.php:137
|
||||||
|
msgid "Link a Wallet"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: app/Linker.php:138
|
||||||
|
msgid "Fetching verification phrase..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: app/Linker.php:166
|
||||||
|
msgid "Linking your account to your crypto wallet."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: app/Login.php:39
|
||||||
|
msgid "Invalid input"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: app/Login.php:91 app/Plugin.php:196
|
||||||
|
msgid "Logged in"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: app/Login.php:101
|
||||||
|
msgid "Signature err, try again."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: app/Login.php:174
|
||||||
|
#. translators: blog name.
|
||||||
|
msgid "Log in to %1$s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: app/Login.php:209
|
||||||
|
msgid "Bad nonce, please refresh."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: app/Login.php:216
|
||||||
|
msgid "No address specified."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: app/Plugin.php:190
|
||||||
|
msgid "Choose your login method"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: app/Plugin.php:191
|
||||||
|
msgid "Error: cannot detect crypto wallet"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: app/Plugin.php:192
|
||||||
|
msgid "Waiting for your permission"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: app/Plugin.php:193
|
||||||
|
msgid "Fetching login phrase..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: app/Plugin.php:194
|
||||||
|
msgid "Waiting for your signature"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: app/Plugin.php:195
|
||||||
|
msgid "Verifying signature..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: app/Plugin.php:197
|
||||||
|
msgid "Login aborted"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: app/Plugin.php:198
|
||||||
|
msgid "Log In"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: app/Plugin.php:199
|
||||||
|
msgid "Scan a QR code with your wallet, https://walletconnect.org"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: app/Plugin.php:200
|
||||||
|
msgid "Browser add-on and mobile app, https://metamask.io"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: app/Plugin.php:253
|
||||||
|
msgid "Log out first"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: app/Widgets/Button.php:34
|
||||||
|
msgid "EthPress Widget"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: app/Widgets/Button.php:84
|
||||||
|
msgid "Title:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: app/Widgets/Button.php:149
|
||||||
|
msgid "Crypto Wallet"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: app/Widgets/Button.php:150
|
||||||
|
msgid "After linking a crypto wallet to your account, you can use it to log in."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ethpress.php:98
|
||||||
|
#. translators: version numbers.
|
||||||
|
msgid ""
|
||||||
|
"“%1$s” requires PHP %2$s (or newer) and WordPress %3$s (or newer) to "
|
||||||
|
"function properly. Your site is using PHP %4$s and WordPress %5$s. Please "
|
||||||
|
"upgrade. The plugin has been automatically deactivated."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Plugin URI of the plugin/theme
|
||||||
|
msgid "https://wordpress.org/plugins/ethpress/"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Description of the plugin/theme
|
||||||
|
msgid "Ethereum Web3 login. Enable crypto wallet logins to WordPress."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Author of the plugin/theme
|
||||||
|
msgid "Lynn (lynn.mvp at tutanota dot com), ethereumicoio"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Author URI of the plugin/theme
|
||||||
|
msgid "https://ethereumico.io"
|
||||||
|
msgstr ""
|
||||||
@@ -0,0 +1,205 @@
|
|||||||
|
# Copyright (C) 2019 Automattic
|
||||||
|
# This file is distributed under the same license as the http://www.gnu.org/licenses/gpl-2.0.html.
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: ExpressTech's MemberPress Discord Add On 1.0.0\n"
|
||||||
|
"Report-Msgid-Bugs-To: "
|
||||||
|
"POT-Creation-Date: 2021-07-22 2:00:21+00:00\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=utf-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"PO-Revision-Date: 2019-MO-DA HO:MI+ZONE\n"
|
||||||
|
"Last-Translator: Ravi Soni <contact@expresstechsoftwares.com>\n"
|
||||||
|
"Language-Team: en-us <contact@expresstechsoftwares.com>\n"
|
||||||
|
"X-Generator:ExpressTech's MemberPress Discord Add On 1.0.0\n"
|
||||||
|
msgid "Discord connection"
|
||||||
|
msgstr "Discord connection"
|
||||||
|
|
||||||
|
msgid "Disconnect From Discord"
|
||||||
|
msgstr "Disconnect From Discord"
|
||||||
|
|
||||||
|
msgid "Connect To Discord"
|
||||||
|
msgstr "Connect To Discord"
|
||||||
|
|
||||||
|
msgid "Following Roles will be assigned to you in Discord:"
|
||||||
|
msgstr "Following Roles will be assigned to you in Discord:"
|
||||||
|
|
||||||
|
msgid "Discord Settings"
|
||||||
|
msgstr "Discord Settings"
|
||||||
|
|
||||||
|
msgid "MemberPress Discord Add On Settings"
|
||||||
|
msgstr "MemberPress Discord Add On Settings"
|
||||||
|
|
||||||
|
msgid "Application Details"
|
||||||
|
msgstr "Application Details"
|
||||||
|
|
||||||
|
msgid "Role Mappings"
|
||||||
|
msgstr "Role Mappings"
|
||||||
|
|
||||||
|
msgid "Advanced"
|
||||||
|
msgstr "Advanced"
|
||||||
|
|
||||||
|
msgid "Logs"
|
||||||
|
msgstr "Logs"
|
||||||
|
|
||||||
|
msgid "Documentation"
|
||||||
|
msgstr "Documentation"
|
||||||
|
|
||||||
|
msgid "Support"
|
||||||
|
msgstr "Support"
|
||||||
|
|
||||||
|
msgid "Your request have been successfully submitted!"
|
||||||
|
msgstr "Your request have been successfully submitted!"
|
||||||
|
|
||||||
|
msgid "Run API"
|
||||||
|
msgstr "Run API"
|
||||||
|
|
||||||
|
msgid "Not Connected"
|
||||||
|
msgstr "Not Connected"
|
||||||
|
|
||||||
|
msgid "Discord"
|
||||||
|
msgstr "Discord"
|
||||||
|
|
||||||
|
msgid "Joined Date"
|
||||||
|
msgstr "Joined Date"
|
||||||
|
|
||||||
|
msgid "Send welcome message"
|
||||||
|
msgstr "Send welcome message"
|
||||||
|
|
||||||
|
msgid "Membership welcome message"
|
||||||
|
msgstr "Membership welcome message"
|
||||||
|
|
||||||
|
msgid "Send membership expiration warning message"
|
||||||
|
msgstr "Send membership expiration warning message"
|
||||||
|
|
||||||
|
msgid "Membership expiration warning message"
|
||||||
|
msgstr "Membership expiration warning message"
|
||||||
|
|
||||||
|
msgid "Send membership expired message"
|
||||||
|
msgstr "Send membership expired message"
|
||||||
|
|
||||||
|
msgid "Membership expired message"
|
||||||
|
msgstr "Membership expired message"
|
||||||
|
|
||||||
|
msgid "Send membership cancel message"
|
||||||
|
msgstr "Send membership cancel message"
|
||||||
|
|
||||||
|
msgid "Membership cancel message"
|
||||||
|
msgstr "Membership cancel message"
|
||||||
|
|
||||||
|
msgid "Re-assign roles upon payment failure"
|
||||||
|
msgstr "Re-assign roles upon payment failure"
|
||||||
|
|
||||||
|
msgid "Retry Failed API calls"
|
||||||
|
msgstr "Retry Failed API calls"
|
||||||
|
|
||||||
|
msgid "How many times a failed API call should get re-try"
|
||||||
|
msgstr "How many times a failed API call should get re-try"
|
||||||
|
|
||||||
|
msgid "Log API calls response (For debugging purpose)"
|
||||||
|
msgstr "Log API calls response (For debugging purpose)"
|
||||||
|
|
||||||
|
msgid "Save Settings"
|
||||||
|
msgstr "Save Settings"
|
||||||
|
|
||||||
|
msgid "Drag and Drop the Discord Roles over to the MemberPress Levels"
|
||||||
|
msgstr "Drag and Drop the Discord Roles over to the MemberPress Levels"
|
||||||
|
|
||||||
|
msgid "Note: Inactive levels will not display"
|
||||||
|
msgstr "Note: Inactive levels will not display"
|
||||||
|
|
||||||
|
msgid "Discord Roles"
|
||||||
|
msgstr "Discord Roles"
|
||||||
|
|
||||||
|
msgid "MemberPress Memberships"
|
||||||
|
msgstr "MemberPress Memberships"
|
||||||
|
|
||||||
|
msgid "Default Role"
|
||||||
|
msgstr "Default Role"
|
||||||
|
|
||||||
|
msgid "-None-"
|
||||||
|
msgstr "-None-"
|
||||||
|
|
||||||
|
msgid "This Role will be assigned to all level members"
|
||||||
|
msgstr "This Role will be assigned to all level members"
|
||||||
|
|
||||||
|
msgid "Allow non-members"
|
||||||
|
msgstr "Allow non-members"
|
||||||
|
|
||||||
|
msgid "Yes"
|
||||||
|
msgstr "Yes"
|
||||||
|
|
||||||
|
msgid "This setting will apply on Cancel and Expiry of Membership"
|
||||||
|
msgstr "This setting will apply on Cancel and Expiry of Membership"
|
||||||
|
|
||||||
|
msgid "Save Settings"
|
||||||
|
msgstr "Save Settings"
|
||||||
|
|
||||||
|
msgid "Flush Mappings"
|
||||||
|
msgstr "Flush Mappings"
|
||||||
|
|
||||||
|
msgid "Client ID"
|
||||||
|
msgstr "Client ID"
|
||||||
|
|
||||||
|
msgid "Client Secret"
|
||||||
|
msgstr "Client Secret"
|
||||||
|
|
||||||
|
msgid "Redirect URL"
|
||||||
|
msgstr "Redirect URL"
|
||||||
|
|
||||||
|
msgid "Registered discord app url"
|
||||||
|
msgstr "Registered discord app url"
|
||||||
|
|
||||||
|
msgid "Bot Token"
|
||||||
|
msgstr "Bot Token"
|
||||||
|
|
||||||
|
msgid "Server ID"
|
||||||
|
msgstr "Server ID"
|
||||||
|
|
||||||
|
msgid "Please save your form"
|
||||||
|
msgstr "Please save your form"
|
||||||
|
|
||||||
|
msgid "Save Settings"
|
||||||
|
msgstr "Save Settings"
|
||||||
|
|
||||||
|
msgid "Connect your Bot"
|
||||||
|
msgstr "Connect your Bot"
|
||||||
|
|
||||||
|
msgid "YouTube video tutorial on how to connect the plugin with discord server"
|
||||||
|
msgstr "YouTube video tutorial on how to connect the plugin with discord server"
|
||||||
|
|
||||||
|
msgid "Step-by-Step Written guide on how to connect the plugin with Discord server"
|
||||||
|
msgstr "Step-by-Step Written guide on how to connect the plugin with Discord server"
|
||||||
|
|
||||||
|
msgid "Click Here"
|
||||||
|
msgstr "Click Here"
|
||||||
|
|
||||||
|
msgid "Features and other documentation"
|
||||||
|
msgstr "Features and other documentation"
|
||||||
|
|
||||||
|
msgid "ExpressTech Softwares Solutions Pvt. Ltd."
|
||||||
|
msgstr "ExpressTech Software Solution Pvt. Ltd. is the leading Enterprise WordPress development company."
|
||||||
|
|
||||||
|
msgid "Contact us for any WordPress Related development projects."
|
||||||
|
msgstr "Contact us for any WordPress Related development projects."
|
||||||
|
|
||||||
|
msgid "Full Name"
|
||||||
|
msgstr "Full Name"
|
||||||
|
|
||||||
|
msgid "Contact Email"
|
||||||
|
msgstr "Contact Email"
|
||||||
|
|
||||||
|
msgid "Subject"
|
||||||
|
msgstr "Subject"
|
||||||
|
|
||||||
|
msgid "Message"
|
||||||
|
msgstr "Message"
|
||||||
|
|
||||||
|
msgid "Skype"
|
||||||
|
msgstr "Skype"
|
||||||
|
|
||||||
|
msgid "Email"
|
||||||
|
msgstr "Email"
|
||||||
|
|
||||||
|
msgid "Whatsapp / Phone"
|
||||||
|
msgstr "Whatsapp / Phone"
|
||||||
@@ -0,0 +1,4 @@
|
|||||||
|
* Extra Product Options Lite for WooCommerce *
|
||||||
|
|
||||||
|
2022-10-04 - version 1.0.0
|
||||||
|
* Initial Release
|
||||||
16
spec/fixtures/dynamic_finders/plugin_version/fcp-lightest-lightbox/change_log/changelog.txt
vendored
Normal file
16
spec/fixtures/dynamic_finders/plugin_version/fcp-lightest-lightbox/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
= 1.3 =
|
||||||
|
|
||||||
|
* Removed the render blocking css to be loaded by js
|
||||||
|
* Moved the main js and css away to load only if a linked image is found
|
||||||
|
|
||||||
|
= 1.2 =
|
||||||
|
|
||||||
|
* Optimized to fit WP 5.7
|
||||||
|
|
||||||
|
= 1.1 =
|
||||||
|
|
||||||
|
* Optimized: Gallery & image sequences tracking added
|
||||||
|
|
||||||
|
= 1.0 =
|
||||||
|
|
||||||
|
* Initial release
|
||||||
4
spec/fixtures/dynamic_finders/plugin_version/feed-for-tiktok-shop/change_log/changelog.txt
vendored
Normal file
4
spec/fixtures/dynamic_finders/plugin_version/feed-for-tiktok-shop/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
*** Feed For TikTok Shop ***
|
||||||
|
|
||||||
|
2022-05-24 - version 1.0.1
|
||||||
|
* Add landing page for tiktok shopping
|
||||||
@@ -0,0 +1,5 @@
|
|||||||
|
/*1.0.1 - 2022.12.15*/
|
||||||
|
– Updated: Update support class
|
||||||
|
|
||||||
|
/*1.0.0 - 2022.*/
|
||||||
|
- Release version 1.0.0
|
||||||
37
spec/fixtures/dynamic_finders/plugin_version/fewcents/composer_file/package.json
vendored
Normal file
37
spec/fixtures/dynamic_finders/plugin_version/fewcents/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,37 @@
|
|||||||
|
{
|
||||||
|
"name": "fewcents",
|
||||||
|
"version": "1.1.3",
|
||||||
|
"main": "index.js",
|
||||||
|
"dependencies": {
|
||||||
|
"@wordpress/hooks": "^3.2.0",
|
||||||
|
"axios": "^0.21.1",
|
||||||
|
"clsx": "^1.1.1",
|
||||||
|
"jwt-decode": "^3.1.2",
|
||||||
|
"react": "^16.7.0",
|
||||||
|
"react-countdown": "^2.3.2",
|
||||||
|
"react-dom": "^16.7.0",
|
||||||
|
"react-hot-toast": "^2.1.1",
|
||||||
|
"react-redux": "^7.2.5",
|
||||||
|
"react-router-dom": "^5.3.0",
|
||||||
|
"react-spinners": "^0.11.0",
|
||||||
|
"redux": "^4.1.1"
|
||||||
|
},
|
||||||
|
"devDependencies": {
|
||||||
|
"@babel/core": "^7.15.5",
|
||||||
|
"@babel/preset-env": "^7.15.4",
|
||||||
|
"@babel/preset-react": "^7.14.5",
|
||||||
|
"@svgr/webpack": "^5.5.0",
|
||||||
|
"babel-loader": "^8.2.2",
|
||||||
|
"cross-env": "^5.0.1",
|
||||||
|
"css-loader": "^6.2.0",
|
||||||
|
"style-loader": "^3.2.1",
|
||||||
|
"url-loader": "^4.1.1",
|
||||||
|
"webpack": "^5.51.1",
|
||||||
|
"webpack-cli": "^4.8.0"
|
||||||
|
},
|
||||||
|
"scripts": {
|
||||||
|
"test": "echo \"Error: no test specified\" && exit 1",
|
||||||
|
"build": "cross-env BABEL_ENV=default NODE_ENV=production webpack",
|
||||||
|
"start": "cross-env BABEL_ENV=default webpack --watch"
|
||||||
|
}
|
||||||
|
}
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user