Compare commits
58 Commits
v3.8.22
...
dependabot
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
7722f5e9b2 | ||
|
|
2613fdcc6b | ||
|
|
fbabd509f0 | ||
|
|
a075c93e6f | ||
|
|
d2a8bf92d9 | ||
|
|
39459fb5a1 | ||
|
|
4fb47e1c3b | ||
|
|
1260a6480f | ||
|
|
598c6ebb69 | ||
|
|
289e2d80c1 | ||
|
|
cb7cd9aac2 | ||
|
|
ea020aa8a5 | ||
|
|
4d30fecc36 | ||
|
|
369bbbe084 | ||
|
|
257a4a458b | ||
|
|
0ddc3cc10b | ||
|
|
9c6f1daa83 | ||
|
|
cb9701eaef | ||
|
|
afc2fe2f79 | ||
|
|
0dd00645f8 | ||
|
|
c7919e3c75 | ||
|
|
fb812554f3 | ||
|
|
63094494d3 | ||
|
|
5ff73256e8 | ||
|
|
06d861c16c | ||
|
|
cfe1a40491 | ||
|
|
01fe047f2b | ||
|
|
a4dc0fb0e6 | ||
|
|
0905ad98c1 | ||
|
|
6a309a9624 | ||
|
|
7969e51231 | ||
|
|
933d6c7d0e | ||
|
|
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 |
4
.github/workflows/build.yml
vendored
4
.github/workflows/build.yml
vendored
@@ -9,11 +9,11 @@ jobs:
|
||||
|
||||
strategy:
|
||||
matrix:
|
||||
ruby: [2.5, 2.6, 2.7, '3.0', 3.1]
|
||||
ruby: [2.7, '3.0', 3.1]
|
||||
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v3
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Set up Ruby ${{ matrix.ruby }}
|
||||
uses: ruby/setup-ruby@v1
|
||||
|
||||
10
.github/workflows/docker.yml
vendored
10
.github/workflows/docker.yml
vendored
@@ -15,7 +15,7 @@ jobs:
|
||||
|
||||
steps:
|
||||
- name: checkout sources
|
||||
uses: actions/checkout@v3
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Set tag to latest
|
||||
if: (github.event_name == 'push' && github.ref == 'refs/heads/master') || github.event_name == 'schedule'
|
||||
@@ -34,22 +34,22 @@ jobs:
|
||||
exit 1
|
||||
|
||||
- name: Set up QEMU
|
||||
uses: docker/setup-qemu-action@v1
|
||||
uses: docker/setup-qemu-action@v3
|
||||
|
||||
- name: Set up Docker Buildx
|
||||
uses: docker/setup-buildx-action@v1
|
||||
uses: docker/setup-buildx-action@v2
|
||||
id: buildx
|
||||
with:
|
||||
install: true
|
||||
|
||||
- name: Login to Docker Hub
|
||||
uses: docker/login-action@v1.14.1
|
||||
uses: docker/login-action@v2.2.0
|
||||
with:
|
||||
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
||||
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
||||
|
||||
- name: Build and push
|
||||
uses: docker/build-push-action@v2
|
||||
uses: docker/build-push-action@v4
|
||||
with:
|
||||
platforms: linux/amd64,linux/arm/v7,linux/arm64
|
||||
push: true
|
||||
|
||||
6
.github/workflows/gempush.yml
vendored
6
.github/workflows/gempush.yml
vendored
@@ -10,11 +10,11 @@ jobs:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: actions/checkout@v4
|
||||
- name: Set up Ruby 2.6
|
||||
uses: actions/setup-ruby@v1.1.3
|
||||
uses: ruby/setup-ruby@v1
|
||||
with:
|
||||
ruby-version: 2.6.x
|
||||
ruby-version: 2.6
|
||||
|
||||
#- name: Publish to GPR
|
||||
# run: |
|
||||
|
||||
@@ -2,7 +2,7 @@ require: rubocop-performance
|
||||
AllCops:
|
||||
NewCops: enable
|
||||
SuggestExtensions: false
|
||||
TargetRubyVersion: 2.5
|
||||
TargetRubyVersion: 2.7
|
||||
Exclude:
|
||||
- '*.gemspec'
|
||||
- 'vendor/**/*'
|
||||
|
||||
10
README.md
10
README.md
@@ -25,8 +25,7 @@
|
||||
## Prerequisites
|
||||
|
||||
- (Optional but highly recommended: [RVM](https://rvm.io/rvm/install))
|
||||
- Ruby >= 2.5 - Recommended: latest
|
||||
- Ruby 2.5.0 to 2.5.3 can cause an 'undefined symbol: rmpd_util_str_to_d' error in some systems, see [#1283](https://github.com/wpscanteam/wpscan/issues/1283)
|
||||
- Ruby >= 2.7 - Recommended: latest
|
||||
- Curl >= 7.72 - Recommended: latest
|
||||
- The 7.29 has a segfault
|
||||
- The < 7.72 could result in `Stream error in the HTTP/2 framing layer` in some cases
|
||||
@@ -90,15 +89,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).
|
||||
|
||||
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/).
|
||||
|
||||
#### The Free plan allows 25 API requests per day. View the different [available API plans](https://wpscan.com/api).
|
||||
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.
|
||||
|
||||
### 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.
|
||||
- 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
|
||||
|
||||
@@ -137,7 +133,7 @@ The feature mentioned above is useful to keep the API Token in a config file and
|
||||
|
||||
```yml
|
||||
cli_options:
|
||||
api_token: YOUR_API_TOKEN
|
||||
api_token: 'YOUR_API_TOKEN'
|
||||
```
|
||||
|
||||
## 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'],
|
||||
default: 500),
|
||||
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],
|
||||
normalize: %i[downcase underscore to_sym]),
|
||||
OptString.new(['--login-uri URI', 'The URI of the login page if different from /wp-login.php'])
|
||||
|
||||
@@ -73,7 +73,7 @@ module WPScan
|
||||
# @return [ Hash ] The params for Typhoeus::Request
|
||||
# @note Those params can't be overriden by CLI options
|
||||
def request_params
|
||||
@request_params ||= Browser.instance.default_connect_request_params.merge(
|
||||
@request_params ||= Browser.instance.default_request_params.merge(
|
||||
timeout: 600,
|
||||
connecttimeout: 300,
|
||||
accept_encoding: 'gzip, deflate',
|
||||
|
||||
@@ -70,7 +70,7 @@ module WPScan
|
||||
# @return [ Hash ]
|
||||
# @note Those params can not be overriden by CLI options
|
||||
def self.default_request_params
|
||||
@default_request_params ||= Browser.instance.default_connect_request_params.merge(
|
||||
@default_request_params ||= Browser.instance.default_request_params.merge(
|
||||
headers: {
|
||||
'User-Agent' => Browser.instance.default_user_agent,
|
||||
'Authorization' => "Token token=#{token}"
|
||||
|
||||
@@ -2,5 +2,5 @@
|
||||
|
||||
# Version
|
||||
module WPScan
|
||||
VERSION = '3.8.22'
|
||||
VERSION = '3.8.25'
|
||||
end
|
||||
|
||||
16523
spec/fixtures/db/dynamic_finders.yml
vendored
16523
spec/fixtures/db/dynamic_finders.yml
vendored
File diff suppressed because it is too large
Load Diff
7244
spec/fixtures/dynamic_finders/expected.yml
vendored
7244
spec/fixtures/dynamic_finders/expected.yml
vendored
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,170 @@
|
||||
# Copyright (C) 2023 Qewebby
|
||||
# This file is distributed under the GPL-2.0+.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 360 Product Viewer for WooCommerce 1.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wp_360view\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: 2023-05-11T17:47:24+05:30\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.7.1\n"
|
||||
"X-Domain: wp360view\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
#. Description of the plugin
|
||||
msgid "360 Product Viewer for WooCommerce"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://wordpress.org/plugins/360-product-viewer-for-woocommerce/"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Qewebby"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://www.qewebby.com"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-wp360view-admin.php:108
|
||||
msgid "360 Product image"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-wp360view-admin.php:141
|
||||
msgid "Delete image"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-wp360view-admin.php:141
|
||||
#: includes/admin/class-wp360view-admin.php:161
|
||||
msgid "Delete"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-wp360view-admin.php:161
|
||||
msgid "Add 360 Product images"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-wp360view-admin.php:161
|
||||
msgid "Add to 360 Product gallery"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-wp360view-admin.php:161
|
||||
msgid "Delete 360 Product image"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-wp360view-admin.php:161
|
||||
msgid "Add 360 product images"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-wp360view-settings.php:39
|
||||
msgid "360 View Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-wp360view-settings.php:56
|
||||
msgid "Shortcode Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-wp360view-settings.php:78
|
||||
msgid "Advance Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-wp360view-settings.php:88
|
||||
msgid "Enable Navigation"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-wp360view-settings.php:90
|
||||
msgid "Enable navigation panel"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-wp360view-settings.php:91
|
||||
msgid "Enable or disable navigation panel globally OR you can override this settings by <b>\"navigation\"</b> attibute by shortcode. Default value is <b>true</b>."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-wp360view-settings.php:99
|
||||
#: includes/admin/class-wp360view-settings.php:101
|
||||
msgid "Enable dragging"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-wp360view-settings.php:102
|
||||
msgid "Enable or disable dragging option globally OR you can override this settings by <b>\"drag\"</b> attibute by shortcode. Default value is <b>true</b>."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-wp360view-settings.php:106
|
||||
#: includes/admin/class-wp360view-settings.php:110
|
||||
msgid "Play Speed"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-wp360view-settings.php:111
|
||||
msgid "Add/change play speed of 360 slider globally OR you can override this settings by <b>\"playspeed\"</b> attibute by shortcode. Default value is <b>100</b>."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-wp360view-settings.php:115
|
||||
#: includes/admin/class-wp360view-settings.php:119
|
||||
msgid "Frame Rate"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-wp360view-settings.php:120
|
||||
msgid "Add/change frame rate of 360 slider globally OR you can override this settings by <b>\"framerate\"</b> attibute by shortcode. Default value is <b>10</b>."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-wp360view-settings.php:128
|
||||
msgid "Enable Spin"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-wp360view-settings.php:130
|
||||
msgid "Enable spin"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-wp360view-settings.php:131
|
||||
msgid "Enable or disable spin settings globally OR you can override this settings by <b>\"enablespin\"</b> attibute by shortcode. Default value is <b>false</b>."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-wp360view-settings.php:139
|
||||
#: includes/admin/class-wp360view-settings.php:141
|
||||
msgid "Show Cursor"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-wp360view-settings.php:142
|
||||
msgid "Hide or show cursor globally OR you can override this settings by <b>\"showcursor\"</b> attibute by shortcode. Default value is <b>false</b>."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-wp360view-settings.php:151
|
||||
msgid "Fullscreen"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-wp360view-settings.php:153
|
||||
msgid "Enable full screen support"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-wp360view-settings.php:154
|
||||
msgid "Enable or disable full screen support settings globally OR you can override this settings by <b>\"fullscreen\"</b> attibute by shortcode. Default value is <b>true</b>."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-wp360view-settings.php:162
|
||||
msgid "Zoom In/Out"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-wp360view-settings.php:164
|
||||
msgid "Enable Zoom In/Out"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-wp360view-settings.php:165
|
||||
msgid "Enable or disable zoom in/out settings globally OR you can override this settings by <b>\"zoominout\"</b> attibute by shortcode. Default value is <b>true</b>"
|
||||
msgstr ""
|
||||
|
||||
#: templates/360-product.php:22
|
||||
#: templates/shortcode-template.php:26
|
||||
msgid "360 Product View"
|
||||
msgstr ""
|
||||
|
||||
#: wp_360view.php:134
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: wp_360view.php:176
|
||||
msgid "WooCommerce"
|
||||
msgstr ""
|
||||
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,84 @@
|
||||
# Copyright (C) 2023 AcyMailing integration for Uncanny Automator
|
||||
# This file is distributed under the same license as the AcyMailing integration for Uncanny Automator package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: AcyMailing integration for Uncanny Automator 1.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/acymailing-integration-for-uncanny-automator\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"POT-Creation-Date: 2023-01-11 15:43:51+00:00\n"
|
||||
"X-Domain: acymailing-integration-for-uncanny-automator\n"
|
||||
|
||||
|
||||
#: acymailing/actions/acy-add-tag.php:24
|
||||
msgid "Add a new tag for lists/campaigns {{Tag name:%s}}"
|
||||
msgstr ""
|
||||
|
||||
#: acymailing/actions/acy-add-tag.php:25
|
||||
msgid "Add a new tag for lists/campaigns"
|
||||
msgstr ""
|
||||
|
||||
#: acymailing/actions/acy-remove-tag.php:23
|
||||
msgid "Remove a tag for lists/campaigns {{Tag name:%s}}"
|
||||
msgstr ""
|
||||
|
||||
#: acymailing/actions/acy-remove-tag.php:24
|
||||
msgid "Remove a tag for lists/campaigns"
|
||||
msgstr ""
|
||||
|
||||
#: acymailing/actions/acy-remove-tag.php:51
|
||||
msgid "Tag name"
|
||||
msgstr ""
|
||||
|
||||
#: acymailing/actions/acy-save-user.php:24
|
||||
msgid "Save the AcyMailing subscriber {{Email address:%s}}"
|
||||
msgstr ""
|
||||
|
||||
#: acymailing/actions/acy-save-user.php:25
|
||||
msgid "Save an AcyMailing {{subscriber}}"
|
||||
msgstr ""
|
||||
|
||||
#: acymailing/actions/acy-subscribe-to-list.php:24
|
||||
msgid "Subscribe a user to {{a list:%s}}"
|
||||
msgstr ""
|
||||
|
||||
#: acymailing/actions/acy-subscribe-to-list.php:25
|
||||
msgid "Subscribe a user to {{a list}}"
|
||||
msgstr ""
|
||||
|
||||
#: acymailing/actions/acy-unsubscribe-from-list.php:24
|
||||
msgid "Unsubscribe a user from {{a list:%s}}"
|
||||
msgstr ""
|
||||
|
||||
#: acymailing/actions/acy-unsubscribe-from-list.php:25
|
||||
msgid "Unsubscribe a user from {{a list}}"
|
||||
msgstr ""
|
||||
|
||||
#: acymailing/actions/acy-update-email.php:24
|
||||
msgid "Change the email address for a subscriber {{Email address:%s}}"
|
||||
msgstr ""
|
||||
|
||||
#: acymailing/actions/acy-update-email.php:25
|
||||
msgid "Change the {{email address}} for a subscriber"
|
||||
msgstr ""
|
||||
|
||||
#: acymailing/triggers/acy-user-updated.php:24
|
||||
msgid "An AcyMailing subscriber is {{created or modified:%s}}"
|
||||
msgstr ""
|
||||
|
||||
#: acymailing/triggers/acy-user-updated.php:25
|
||||
msgid "An AcyMailing subscriber is {{created or modified}}"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "AcyMailing integration for Uncanny Automator"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid "Add AcyMailing triggers and actions in Uncanny Automator"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "AcyMailing Newsletter Team"
|
||||
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,915 @@
|
||||
# Copyright (C) 2023 Bytes Technolab
|
||||
# This file is distributed under the GPL-2.0+.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Add Product Frontend for WooCommerce 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/bytes-add-product-frontend-for-woocommerce\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: 2023-01-02T01:36:43+05:30\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.7.1\n"
|
||||
"X-Domain: bytes_product_frontend\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Add Product Frontend for WooCommerce"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://plugins.demo1.bytestechnolab.com"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Allow users to add products from a frontend page, edit and delete it.Users can see list of products in my account page.Admin will needs to configure mail by using WP Mail SMTP plugin or any other plugin in order to get notified when user add new product to site."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Bytes Technolab"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://www.bytestechnolab.com"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-bytes-add-product-frontend-for-woocommerce-admin.php:42
|
||||
#: admin/partials/plugin-bytes-product-list.php:29
|
||||
#: admin/partials/plugin-info-bytes-add-product-frontend.php:12
|
||||
#: admin/partials/plugin-setting-bytes-add-product-frontend.php:12
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-bytes-add-product-frontend-for-woocommerce-admin.php:136
|
||||
msgid "Product Status"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/plugin-bytes-product-list.php:25
|
||||
#: admin/partials/plugin-info-bytes-add-product-frontend.php:8
|
||||
#: admin/partials/plugin-info-bytes-add-product-frontend.php:25
|
||||
#: admin/partials/plugin-setting-bytes-add-product-frontend.php:8
|
||||
msgid "Add Product Frontend"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/plugin-bytes-product-list.php:28
|
||||
#: admin/partials/plugin-info-bytes-add-product-frontend.php:11
|
||||
#: admin/partials/plugin-setting-bytes-add-product-frontend.php:11
|
||||
msgid "Information"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/plugin-bytes-product-list.php:30
|
||||
#: admin/partials/plugin-info-bytes-add-product-frontend.php:13
|
||||
#: admin/partials/plugin-setting-bytes-add-product-frontend.php:13
|
||||
msgid "Product List"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/plugin-bytes-product-list.php:54
|
||||
#: public/partials/bytes-myaccount-show-product-list.php:101
|
||||
msgid "Sr. No."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/plugin-bytes-product-list.php:55
|
||||
#: public/partials/bytes-myaccount-show-product-list.php:102
|
||||
msgid "Product Name"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/plugin-bytes-product-list.php:56
|
||||
#: public/partials/bytes-myaccount-show-product-list.php:103
|
||||
msgid "Price"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/plugin-bytes-product-list.php:58
|
||||
#: admin/partials/setting/plugin-setting-user-role.php:20
|
||||
#: public/partials/bytes-myaccount-show-product-list.php:105
|
||||
msgid "Author"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/plugin-bytes-product-list.php:60
|
||||
#: public/partials/bytes-myaccount-show-product-list.php:107
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/plugin-bytes-product-list.php:61
|
||||
#: public/partials/bytes-myaccount-show-product-list.php:109
|
||||
msgid "Action"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/plugin-bytes-product-list.php:79
|
||||
#: admin/partials/plugin-bytes-product-list.php:82
|
||||
#: public/partials/bytes-myaccount-show-product-list.php:132
|
||||
#: public/partials/bytes-myaccount-show-product-list.php:135
|
||||
msgid "Edit"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/plugin-bytes-product-list.php:80
|
||||
#: public/partials/bytes-myaccount-show-product-list.php:133
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:113
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:138
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:121
|
||||
msgid "Delete"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/plugin-bytes-product-list.php:92
|
||||
#: public/partials/bytes-myaccount-show-product-list.php:144
|
||||
msgid "No products found"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/plugin-info-bytes-add-product-frontend.php:26
|
||||
msgid "Using frontend pages insert your product."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/plugin-info-bytes-add-product-frontend.php:34
|
||||
msgid "All ready to go!"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/plugin-info-bytes-add-product-frontend.php:36
|
||||
msgid "Goto Menus"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/setting/plugin-setting-additional-fields.php:5
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/setting/plugin-setting-additional-fields.php:11
|
||||
msgid "Short Description"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/setting/plugin-setting-additional-fields.php:17
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-image.php:10
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-image.php:10
|
||||
msgid "Product image"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/setting/plugin-setting-additional-fields.php:23
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-gallery.php:10
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-gallery.php:10
|
||||
msgid "Product gallery"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/setting/plugin-setting-additional-fields.php:29
|
||||
msgid "Categories"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/setting/plugin-setting-additional-fields.php:35
|
||||
msgid "Tags"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/setting/plugin-setting-additional-fields.php:41
|
||||
msgid "Regular Price"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/setting/plugin-setting-additional-fields.php:47
|
||||
msgid "Sale Price"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/setting/plugin-setting-additional-fields.php:53
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:207
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:186
|
||||
msgid "SKU"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/setting/plugin-setting-additional-fields.php:59
|
||||
msgid "Manage stock"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/setting/plugin-setting-additional-fields.php:65
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:262
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:236
|
||||
msgid "Stock status"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/setting/plugin-setting-additional-fields.php:71
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:280
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:253
|
||||
msgid "Sold individually"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/setting/plugin-setting-additional-fields.php:77
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:297
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:270
|
||||
msgid "Weight"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/setting/plugin-setting-additional-fields.php:83
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:306
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:279
|
||||
msgid "Dimensions"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/setting/plugin-setting-additional-fields.php:89
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:46
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:46
|
||||
msgid "Linked Products"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/setting/plugin-setting-additional-fields.php:95
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:51
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:51
|
||||
msgid "Attributes"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/setting/plugin-setting-additional-fields.php:101
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:411
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:378
|
||||
msgid "Purchase note"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/setting/plugin-setting-additional-fields.php:107
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:425
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:392
|
||||
msgid "Menu order"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/setting/plugin-setting-additional-fields.php:113
|
||||
msgid "Enable reviews"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/setting/plugin-setting-product-status.php:6
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/setting/plugin-setting-product-status.php:7
|
||||
msgid "Publish"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/setting/plugin-setting-user-role.php:4
|
||||
msgid "Select user role which can create or edit product"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/setting/plugin-setting-user-role.php:8
|
||||
msgid "Administrator"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/setting/plugin-setting-user-role.php:14
|
||||
msgid "Editor"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/setting/plugin-setting-user-role.php:26
|
||||
msgid "Contributor"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/setting/plugin-setting-user-role.php:32
|
||||
msgid "Subscriber"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/setting/plugin-setting-user-role.php:38
|
||||
msgid "Customer"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/setting/plugin-setting-user-role.php:44
|
||||
msgid "Shop Manager"
|
||||
msgstr ""
|
||||
|
||||
#: lib/plugin-deactivation/deactivate-feedback-form.php:28
|
||||
msgid "Quick Feedback"
|
||||
msgstr ""
|
||||
|
||||
#: lib/plugin-deactivation/deactivate-feedback-form.php:29
|
||||
msgid "If you would be kind enough, please tell us why you're deactivating?"
|
||||
msgstr ""
|
||||
|
||||
#: lib/plugin-deactivation/deactivate-feedback-form.php:30
|
||||
msgid "Please tell us which plugin?"
|
||||
msgstr ""
|
||||
|
||||
#: lib/plugin-deactivation/deactivate-feedback-form.php:31
|
||||
msgid "Please tell us the reason so we can improve the plugin"
|
||||
msgstr ""
|
||||
|
||||
#: lib/plugin-deactivation/deactivate-feedback-form.php:32
|
||||
msgid "Do not send my e-mail address with this feedback"
|
||||
msgstr ""
|
||||
|
||||
#: lib/plugin-deactivation/deactivate-feedback-form.php:34
|
||||
msgid "Please give us any feedback that could help us improve"
|
||||
msgstr ""
|
||||
|
||||
#: lib/plugin-deactivation/deactivate-feedback-form.php:36
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#: lib/plugin-deactivation/deactivate-feedback-form.php:37
|
||||
msgid "Skip & Deactivate"
|
||||
msgstr ""
|
||||
|
||||
#: lib/plugin-deactivation/deactivate-feedback-form.php:38
|
||||
msgid "Submit & Deactivate"
|
||||
msgstr ""
|
||||
|
||||
#: lib/plugin-deactivation/deactivate-feedback-form.php:39
|
||||
msgid "Please wait"
|
||||
msgstr ""
|
||||
|
||||
#: lib/plugin-deactivation/deactivate-feedback-form.php:40
|
||||
msgid "Thank you!"
|
||||
msgstr ""
|
||||
|
||||
#: lib/plugin-deactivation/deactivate-feedback-form.php:49
|
||||
msgid "The plugin suddenly stopped working"
|
||||
msgstr ""
|
||||
|
||||
#: lib/plugin-deactivation/deactivate-feedback-form.php:50
|
||||
msgid "The plugin broke my site"
|
||||
msgstr ""
|
||||
|
||||
#: lib/plugin-deactivation/deactivate-feedback-form.php:51
|
||||
msgid "I don't need this plugin any more"
|
||||
msgstr ""
|
||||
|
||||
#: lib/plugin-deactivation/deactivate-feedback-form.php:52
|
||||
msgid "I found a better plugin"
|
||||
msgstr ""
|
||||
|
||||
#: lib/plugin-deactivation/deactivate-feedback-form.php:53
|
||||
msgid "It's a temporary deactivation, I'm troubleshooting"
|
||||
msgstr ""
|
||||
|
||||
#: lib/plugin-deactivation/deactivate-feedback-form.php:54
|
||||
msgid "Other"
|
||||
msgstr ""
|
||||
|
||||
#: public/class-bytes-add-product-frontend-for-woocommerce-public.php:53
|
||||
msgctxt "enhanced select"
|
||||
msgid "No matches found"
|
||||
msgstr ""
|
||||
|
||||
#: public/class-bytes-add-product-frontend-for-woocommerce-public.php:54
|
||||
msgctxt "enhanced select"
|
||||
msgid "Loading failed"
|
||||
msgstr ""
|
||||
|
||||
#: public/class-bytes-add-product-frontend-for-woocommerce-public.php:55
|
||||
msgctxt "enhanced select"
|
||||
msgid "Please enter 1 or more characters"
|
||||
msgstr ""
|
||||
|
||||
#: public/class-bytes-add-product-frontend-for-woocommerce-public.php:56
|
||||
msgctxt "enhanced select"
|
||||
msgid "Please enter %qty% or more characters"
|
||||
msgstr ""
|
||||
|
||||
#: public/class-bytes-add-product-frontend-for-woocommerce-public.php:57
|
||||
msgctxt "enhanced select"
|
||||
msgid "Please delete 1 character"
|
||||
msgstr ""
|
||||
|
||||
#: public/class-bytes-add-product-frontend-for-woocommerce-public.php:58
|
||||
msgctxt "enhanced select"
|
||||
msgid "Please delete %qty% characters"
|
||||
msgstr ""
|
||||
|
||||
#: public/class-bytes-add-product-frontend-for-woocommerce-public.php:59
|
||||
msgctxt "enhanced select"
|
||||
msgid "You can only select 1 item"
|
||||
msgstr ""
|
||||
|
||||
#: public/class-bytes-add-product-frontend-for-woocommerce-public.php:60
|
||||
msgctxt "enhanced select"
|
||||
msgid "You can only select %qty% items"
|
||||
msgstr ""
|
||||
|
||||
#: public/class-bytes-add-product-frontend-for-woocommerce-public.php:61
|
||||
msgctxt "enhanced select"
|
||||
msgid "Loading more results…"
|
||||
msgstr ""
|
||||
|
||||
#: public/class-bytes-add-product-frontend-for-woocommerce-public.php:62
|
||||
msgctxt "enhanced select"
|
||||
msgid "Searching…"
|
||||
msgstr ""
|
||||
|
||||
#: public/inc/bytes-product-attributes.php:27
|
||||
#: public/inc/bytes-product-attributes.php:171
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-attributes.php:41
|
||||
msgid "Remove"
|
||||
msgstr ""
|
||||
|
||||
#: public/inc/bytes-product-attributes.php:28
|
||||
#: public/inc/bytes-product-attributes.php:172
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-attributes.php:42
|
||||
msgid "Click to toggle"
|
||||
msgstr ""
|
||||
|
||||
#: public/inc/bytes-product-attributes.php:29
|
||||
#: public/inc/bytes-product-attributes.php:173
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-attributes.php:43
|
||||
msgid "Drag and drop to set admin attribute order"
|
||||
msgstr ""
|
||||
|
||||
#: public/inc/bytes-product-attributes.php:37
|
||||
#: public/inc/bytes-product-attributes.php:181
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-attributes.php:51
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:95
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:95
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: public/inc/bytes-product-attributes.php:47
|
||||
#: public/inc/bytes-product-attributes.php:191
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-attributes.php:63
|
||||
msgid "Value(s)"
|
||||
msgstr ""
|
||||
|
||||
#: public/inc/bytes-product-attributes.php:56
|
||||
#: public/inc/bytes-product-attributes.php:200
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-attributes.php:72
|
||||
msgid "Select terms"
|
||||
msgstr ""
|
||||
|
||||
#: public/inc/bytes-product-attributes.php:72
|
||||
#: public/inc/bytes-product-attributes.php:216
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-attributes.php:88
|
||||
msgid "Select all"
|
||||
msgstr ""
|
||||
|
||||
#: public/inc/bytes-product-attributes.php:73
|
||||
#: public/inc/bytes-product-attributes.php:217
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-attributes.php:89
|
||||
msgid "Select none"
|
||||
msgstr ""
|
||||
|
||||
#: public/inc/bytes-product-attributes.php:74
|
||||
#: public/inc/bytes-product-attributes.php:218
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-attributes.php:90
|
||||
msgid "Add new"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: APFFW_SIGN
|
||||
#: public/inc/bytes-product-attributes.php:82
|
||||
#: public/inc/bytes-product-attributes.php:226
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-attributes.php:96
|
||||
msgid "Enter some text, or some attributes by \"%s\" separating values."
|
||||
msgstr ""
|
||||
|
||||
#: public/inc/bytes-product-attributes.php:90
|
||||
#: public/inc/bytes-product-attributes.php:234
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-attributes.php:104
|
||||
msgid "Visible on the product page"
|
||||
msgstr ""
|
||||
|
||||
#: public/inc/bytes-product-attributes.php:96
|
||||
#: public/inc/bytes-product-attributes.php:240
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-attributes.php:110
|
||||
msgid "Used for variations"
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/bytes-myaccount-show-product-list.php:95
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/bytes-myaccount-show-product-list.php:108
|
||||
msgid "Product Link"
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/bytes-myaccount-show-product-list.php:128
|
||||
msgid "View"
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/bytes-edit-product-frontend-template.php:107
|
||||
msgid "Update"
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/bytes-edit-product-frontend-template.php:121
|
||||
#: public/partials/templates/bytes-woo-template/bytes-product-frontend-template.php:73
|
||||
msgid "Success"
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/bytes-edit-product-frontend-template.php:124
|
||||
msgid "Your product has been updated correctly!"
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/bytes-edit-product-frontend-template.php:126
|
||||
#: public/partials/templates/bytes-woo-template/bytes-product-frontend-template.php:78
|
||||
msgid "OK"
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/bytes-edit-product-frontend-template.php:132
|
||||
#: public/partials/templates/bytes-woo-template/bytes-product-frontend-template.php:84
|
||||
msgid "Error!"
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/bytes-edit-product-frontend-template.php:137
|
||||
#: public/partials/templates/bytes-woo-template/bytes-product-frontend-template.php:89
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-attributes.php:7
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-attributes.php:124
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-attributes.php:7
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-attributes.php:30
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/bytes-edit-product-frontend-template.php:150
|
||||
msgid "You are not allow to update product!"
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/bytes-edit-product-frontend-template.php:159
|
||||
#: public/partials/templates/bytes-woo-template/bytes-product-frontend-template.php:111
|
||||
msgid "You must be logged in to view this content!"
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/bytes-product-frontend-template.php:59
|
||||
msgid "Save"
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/bytes-product-frontend-template.php:76
|
||||
msgid "Your product has been added correctly!"
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/bytes-product-frontend-template.php:102
|
||||
msgid "You are not allow to add product!"
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-categories.php:7
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-categories.php:7
|
||||
msgid "Product categories"
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-excerpt.php:7
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-excerpt.php:7
|
||||
msgid "Short product description"
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-attributes.php:7
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-attributes.php:124
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-attributes.php:7
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-attributes.php:30
|
||||
msgid "Expand"
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-attributes.php:10
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-attributes.php:10
|
||||
msgid "Custom product attribute"
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-attributes.php:24
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-tags.php:21
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-attributes.php:24
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-tags.php:21
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-attributes.php:126
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-attributes.php:32
|
||||
msgid "Save attributes"
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-gallery.php:28
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-gallery.php:21
|
||||
msgid "Add product gallery images"
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-image.php:15
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-image.php:15
|
||||
msgid "Click the image to edit or update"
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-image.php:18
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-image.php:18
|
||||
msgid "Set product image"
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-image.php:19
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-image.php:19
|
||||
msgid "Remove product image"
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:8
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:8
|
||||
msgid "Product Data"
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:11
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:11
|
||||
msgid "Simple product"
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:12
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:12
|
||||
msgid "Grouped product"
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:13
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:13
|
||||
msgid "External/Affiliate product"
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:17
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:17
|
||||
msgid "Virtual products are intangible and are not shipped."
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:18
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:18
|
||||
msgid "Virtual"
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:22
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:22
|
||||
msgid "Downloadable products give access to a file upon purchase."
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:23
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:23
|
||||
msgid "Downloadable"
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:34
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:34
|
||||
msgid "General"
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:38
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:38
|
||||
msgid "Inventory"
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:42
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:42
|
||||
msgid "Shipping"
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:56
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:56
|
||||
msgid "Advanced"
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:64
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:64
|
||||
msgid "Product URL"
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:66
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:66
|
||||
msgid "Enter the external URL to the product."
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:69
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:69
|
||||
msgid "Button text"
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:71
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:71
|
||||
msgid "This text will be shown on the button linking to the external product."
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:77
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:77
|
||||
msgid "Regular price"
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:83
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:83
|
||||
msgid "Sale price"
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:95
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:95
|
||||
msgid "This is the name of the download shown to the customer."
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:96
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:96
|
||||
msgid "File URL"
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:96
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:96
|
||||
msgid "This is the URL or absolute path to the file which customers will get access to. URLs entered here should already be encoded."
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:108
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:133
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:116
|
||||
msgid "File name"
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:111
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:136
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:119
|
||||
msgid "http://"
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:112
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:137
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:120
|
||||
msgid "Choose file"
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:112
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:137
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:120
|
||||
msgid "Insert file URL"
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:143
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:125
|
||||
msgid "Add File"
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:150
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:132
|
||||
msgid "Download limit"
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:152
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:134
|
||||
msgid "Leave blank for unlimited re-downloads."
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:156
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:138
|
||||
msgid "Download expiry"
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:158
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:140
|
||||
msgid "Enter the number of days before a download link expires, or leave blank."
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:165
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:148
|
||||
msgid "Define whether or not the entire product is taxable, or just the cost of shipping it."
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:166
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:149
|
||||
msgid "Choose a tax class for this product. Tax classes are used to apply different tax rates specific to certain types of product."
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:172
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:152
|
||||
msgid "Tax status"
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:174
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:154
|
||||
msgid "Taxable"
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:175
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:155
|
||||
msgid "Shipping only"
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:176
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:156
|
||||
msgid "None"
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:183
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:163
|
||||
msgid "Tax class"
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:203
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:182
|
||||
msgid "SKU refers to a Stock-keeping unit, a unique identifier for each distinct product and service that can be purchased."
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:204
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:183
|
||||
msgid "Controls whether or not the product is listed as \"in stock\" or \"out of stock\" on the frontend."
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:216
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:195
|
||||
msgid "Manage stock?"
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:222
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:201
|
||||
msgid "Stock quantity. If this is a variable product this value will be used to control stock for all variations, unless you define stock at variation level."
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:223
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:202
|
||||
msgid "If managing stock, this controls whether or not back-orders are allowed. If enabled, stock quantity can go below 0."
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:224
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:203
|
||||
msgid "When product stock reaches this amount you will be notified by email."
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:227
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:206
|
||||
msgid "Stock quantity"
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:239
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:213
|
||||
msgid "Allow back-orders?"
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:241
|
||||
msgid "Do not allow"
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:242
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:216
|
||||
msgid "Allow, but notify customer"
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:243
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:217
|
||||
msgid "Allow"
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:250
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:224
|
||||
msgid "Low stock threshold"
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:282
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:255
|
||||
msgid "Enable this to only allow one of this item to be bought in a single order"
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:293
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:266
|
||||
msgid "Weight in decimal form."
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:294
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:267
|
||||
msgid "LxWxH in decimal form."
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:322
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:295
|
||||
msgid "Shipping classes are used by certain shipping methods to group similar products."
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:324
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:297
|
||||
msgid "Product shipping class"
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:326
|
||||
msgid "No shipping class"
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:345
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:317
|
||||
msgid "This lets you choose which products are part of this group."
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:346
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:318
|
||||
msgid "Upsells are products which you recommend instead of the currently viewed product, for example, products that are more profitable or better quality or more expensive."
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:347
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:319
|
||||
msgid "Cross-sells are products which you promote in the cart, based on the current product."
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:350
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:322
|
||||
msgid "Grouped products"
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:365
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:336
|
||||
msgid "Upsells"
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:380
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:350
|
||||
msgid "Cross-sells"
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:408
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:375
|
||||
msgid "Enter an optional note to send the customer after purchase."
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:422
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:389
|
||||
msgid "Custom ordering position."
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-product-options.php:436
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:403
|
||||
msgid "Reviews allowed"
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-tags.php:10
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-tags.php:10
|
||||
msgid "Product tags"
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-tags.php:22
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-tags.php:22
|
||||
msgid "Separate tags with commas"
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components-edit/bytes-woo-template-title.php:5
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-title.php:5
|
||||
msgid "Product name"
|
||||
msgstr ""
|
||||
|
||||
#: public/partials/templates/bytes-woo-template/components/bytes-woo-template-product-options.php:215
|
||||
msgid "Do not allowed"
|
||||
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,59 @@
|
||||
# Copyright (C) 2023 DevPress
|
||||
# This file is distributed under the GNU General Public License v3.0.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Address Autocomplete Google Places 1.1.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/address-autocomplete-google-places\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: 2023-03-10T20:47:35+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.6.0\n"
|
||||
"X-Domain: address-autocomplete-google-places\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Address Autocomplete Google Places"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://github.com/devpress/address-autocomplete-google-places"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Enables address autocomplete with Google Places API for WooCommerce."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "DevPress"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://devpress.com"
|
||||
msgstr ""
|
||||
|
||||
#: address-autocomplete.php:119
|
||||
msgid "Address Autocomplete requires at least WooCommerce v%1$s in order to function."
|
||||
msgstr ""
|
||||
|
||||
#: address-autocomplete.php:133
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-settings.php:14
|
||||
msgid "Address Autocomplete"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-settings.php:15
|
||||
msgid "An integration with Google Places API for address autocomplete on checkout page."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-settings.php:32
|
||||
msgid "Google Places API Key"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-settings.php:35
|
||||
msgid "Generate a <a href=\"%s\" target=\"_blank\">Google Places API Key</a>."
|
||||
msgstr ""
|
||||
21
spec/fixtures/dynamic_finders/plugin_version/admin-help-docs/change_log/changelog.txt
vendored
Normal file
21
spec/fixtures/dynamic_finders/plugin_version/admin-help-docs/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
== changelog.txt ==
|
||||
= 1.0.5 =
|
||||
* Added video to readme
|
||||
* When resetting settings, added a notice instead of attempting to refresh
|
||||
|
||||
= 1.0.4 =
|
||||
* Fixed nested ordered lists on main documentation page to show proper list types
|
||||
* Added settings link, website link, and discord support link to plugins list page
|
||||
* Other minor fixes
|
||||
|
||||
= 1.0.3 =
|
||||
* Minor fixes
|
||||
|
||||
= 1.0.2 =
|
||||
* Added feedback form to About tab
|
||||
|
||||
= 1.0.1 =
|
||||
* Initial release January 23, 2023
|
||||
|
||||
= 1.0.0 =
|
||||
* Created this plugin on November 14, 2022
|
||||
@@ -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 ""
|
||||
3
spec/fixtures/dynamic_finders/plugin_version/ahime-image-printer/change_log/changelog.txt
vendored
Normal file
3
spec/fixtures/dynamic_finders/plugin_version/ahime-image-printer/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
= 1.0.0 =
|
||||
* 05 February 2023
|
||||
* Initial release version
|
||||
31
spec/fixtures/dynamic_finders/plugin_version/ai-bot/translation_file/languages/ai-bot.pot
vendored
Normal file
31
spec/fixtures/dynamic_finders/plugin_version/ai-bot/translation_file/languages/ai-bot.pot
vendored
Normal file
@@ -0,0 +1,31 @@
|
||||
# Copyright (C) 2023 wpaibot.com
|
||||
# This file is distributed under the GPL-2.0+ or Artistic License 2.0.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: AI Bot 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/aibot\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: 2023-02-27T18:57:26+01:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.7.1\n"
|
||||
"X-Domain: aibot\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "AI Bot"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Create engaging content with our WordPress AI writer. Our AI writer can help you create content for your WordPress site in seconds."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "wpaibot.com"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://wpaibot.com"
|
||||
msgstr ""
|
||||
2
spec/fixtures/dynamic_finders/plugin_version/ai-co-pilot-for-wp/change_log/changelog.txt
vendored
Normal file
2
spec/fixtures/dynamic_finders/plugin_version/ai-co-pilot-for-wp/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
= 1.0.1 - 29 May 2023 =
|
||||
* Fix: Some minor issues
|
||||
@@ -0,0 +1,257 @@
|
||||
# Copyright (C) 2023 FirstMedia Solutions GmbH
|
||||
# This file is distributed under the same license as the aiflow plugin.
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"POT-Creation-Date: 2023-03-07T08:00:38+00:00\n"
|
||||
"Project-Id-Version: aiflow 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/firstmedia-ai-text\n"
|
||||
"X-Domain: firstmedia-ai-text\n"
|
||||
"X-Generator: WP-CLI 2.7.1\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
#: backend/admin-menu.php:8
|
||||
msgid "aiflow"
|
||||
msgstr "aiflow"
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://www.firstmedia.swiss/angebot/webentwicklung-e-commerce-webhosting/"
|
||||
msgstr "https://www.firstmedia.swiss/angebot/webentwicklung-e-commerce-webhosting/"
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Allows you to generate Product Descriptions with AI."
|
||||
msgstr "Le permite generar Descripciones de Productos con IA."
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "FirstMedia Solutions GmbH"
|
||||
msgstr "FirstMedia Solutions GmbH"
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://www.firstmedia.swiss"
|
||||
msgstr "https://www.firstmedia.swiss"
|
||||
|
||||
#: backend/admin-menu.php:7
|
||||
#: backend/views/view-options.php:6
|
||||
msgid "aiflow Settings"
|
||||
msgstr "Ajustes aiflow"
|
||||
|
||||
#: backend/admin-menu.php:69
|
||||
msgid "Settings"
|
||||
msgstr "Ajustes"
|
||||
|
||||
#: backend/views/view-options.php:14
|
||||
msgid "An error occured checking your session status. Please connect again."
|
||||
msgstr "Se ha producido un error al comprobar el estado de su sesión. Por favor, conéctese de nuevo."
|
||||
|
||||
#: backend/views/view-options.php:15
|
||||
msgid "You are not signed in."
|
||||
msgstr "No has iniciado sesión."
|
||||
|
||||
#: backend/views/view-options.php:16
|
||||
msgid "To Start using our AI, you have to sign in with your account on our platform."
|
||||
msgstr "Para empezar a utilizar nuestra IA, debe iniciar sesión con su cuenta en nuestra plataforma."
|
||||
|
||||
#: backend/views/view-options.php:17
|
||||
msgid "Click the button below to connect or create an account with us."
|
||||
msgstr "Haga clic en el botón de abajo para conectarse o crear una cuenta con nosotros."
|
||||
|
||||
#: backend/views/view-options.php:19
|
||||
msgid "Connect your account now"
|
||||
msgstr "Conecte su cuenta ahora"
|
||||
|
||||
#: backend/views/view-options.php:27
|
||||
msgid "You are connected."
|
||||
msgstr "Estás conectado."
|
||||
|
||||
#: backend/views/view-options.php:28
|
||||
msgid "Manage account"
|
||||
msgstr "Gestionar cuenta"
|
||||
|
||||
#: backend/views/view-options.php:29
|
||||
msgid "Disconnect"
|
||||
msgstr "Desconecte"
|
||||
|
||||
#: backend/views/view-options.php:32
|
||||
msgid "Checking connection to AI..."
|
||||
msgstr "Comprobando conexión con AI..."
|
||||
|
||||
#: backend/views/view-options.php:37
|
||||
msgid "Your available descriptions"
|
||||
msgstr "Sus descripciones disponibles"
|
||||
|
||||
#: backend/views/view-options.php:41
|
||||
msgid "Free descriptions remaining"
|
||||
msgstr "Descripciones libres restantes"
|
||||
|
||||
#: backend/views/view-options.php:47
|
||||
msgid "Need more descriptions?"
|
||||
msgstr "¿Necesita más descripciones?"
|
||||
|
||||
#: backend/views/view-options.php:49
|
||||
msgid "Subscribe now and get monthly tokens."
|
||||
msgstr "Suscríbete ahora y recibe fichas mensuales."
|
||||
|
||||
#: backend/views/view-options.php:51
|
||||
msgid "Subscribe now"
|
||||
msgstr "Suscríbase ahora"
|
||||
|
||||
#: assets/js/product-edit.js:8
|
||||
msgid "Generate new description"
|
||||
msgstr "Generar nueva descripción"
|
||||
|
||||
#: assets/js/product-edit.js:9
|
||||
#: assets/js/product-edit.js:147
|
||||
msgid "Rewrite current description"
|
||||
msgstr "Reescribir la descripción actual"
|
||||
|
||||
#: assets/js/product-edit.js:10
|
||||
msgid "Optimize description for SEO"
|
||||
msgstr "Optimizar la descripción para SEO"
|
||||
|
||||
#: assets/js/product-edit.js:26
|
||||
msgid "Generate Description with AI"
|
||||
msgstr "Generar descripción con IA"
|
||||
|
||||
#: assets/js/product-edit.js:27
|
||||
#: assets/js/product-edit.js:148
|
||||
#: assets/js/product-edit.js:172
|
||||
msgid "Are you ready to take the leap to AI?"
|
||||
msgstr "¿Está preparado para dar el salto a la IA?"
|
||||
|
||||
#: assets/js/product-edit.js:27
|
||||
#: assets/js/product-edit.js:148
|
||||
#: assets/js/product-edit.js:172
|
||||
msgid "Connect to our AI"
|
||||
msgstr "Conéctese a nuestra IA"
|
||||
|
||||
#: assets/js/product-edit.js:28
|
||||
msgid "Manually enter Description"
|
||||
msgstr "Introducir manualmente Descripción"
|
||||
|
||||
#: assets/js/product-edit.js:74
|
||||
msgid "An error occured when processing your request on the AI"
|
||||
msgstr "Se ha producido un error al procesar su solicitud en la IA"
|
||||
|
||||
#: assets/js/product-edit.js:84
|
||||
msgid "You have no credits remaining. Please purchase description credits first."
|
||||
msgstr "No le quedan créditos. Por favor, compre primero créditos de descripción."
|
||||
|
||||
#: assets/js/product-edit.js:84
|
||||
msgid "Purchase now"
|
||||
msgstr "Comprar ahora"
|
||||
|
||||
#: assets/js/product-edit.js:91
|
||||
msgid "You have only"
|
||||
msgstr "Sólo tiene"
|
||||
|
||||
#: assets/js/product-edit.js:91
|
||||
msgid "tokens remaining. We recommend a higher amount."
|
||||
msgstr "fichas restantes. Recomendamos una cantidad mayor."
|
||||
|
||||
#: assets/js/product-edit.js:91
|
||||
msgid "Purchase more tokens"
|
||||
msgstr "Comprar más fichas"
|
||||
|
||||
#: assets/js/product-edit.js:91
|
||||
msgid "Continue anyway"
|
||||
msgstr "Continuar de todos modos"
|
||||
|
||||
#: assets/js/product-edit.js:97
|
||||
msgid "Your authorization seems to be invalid."
|
||||
msgstr "Parece que su autorización no es válida."
|
||||
|
||||
#: assets/js/product-edit.js:97
|
||||
msgid "Connect to AI again"
|
||||
msgstr "Conéctate de nuevo a la IA"
|
||||
|
||||
#: assets/js/product-edit.js:103
|
||||
msgid "Your subscription does not include this action."
|
||||
msgstr "Su suscripción no incluye esta acción."
|
||||
|
||||
#: assets/js/product-edit.js:103
|
||||
msgid "Upgrade now"
|
||||
msgstr "Actualizar ahora"
|
||||
|
||||
#: assets/js/product-edit.js:104
|
||||
#: assets/js/product-edit.js:149
|
||||
#: assets/js/product-edit.js:173
|
||||
msgid "Close"
|
||||
msgstr "Cerrar"
|
||||
|
||||
#: assets/js/product-edit.js:126
|
||||
msgid "Please enter a title first."
|
||||
msgstr "Por favor, introduzca primero un título."
|
||||
|
||||
#: assets/js/product-edit.js:128
|
||||
msgid "Write a long, unique product description for this product:"
|
||||
msgstr "Escriba una descripción larga y única para este producto:"
|
||||
|
||||
#: assets/js/product-edit.js:138
|
||||
msgid "Choose text tone:"
|
||||
msgstr "Elige el tono del texto:"
|
||||
|
||||
#: assets/js/product-edit.js:139
|
||||
msgid "Does not matter"
|
||||
msgstr "No importa"
|
||||
|
||||
#: assets/js/product-edit.js:140
|
||||
msgid "Warmer"
|
||||
msgstr "Más caliente"
|
||||
|
||||
#: assets/js/product-edit.js:141
|
||||
msgid "Professional"
|
||||
msgstr "Profesional"
|
||||
|
||||
#: assets/js/product-edit.js:142
|
||||
msgid "Formal"
|
||||
msgstr "Formal"
|
||||
|
||||
#: assets/js/product-edit.js:143
|
||||
msgid "Expressive"
|
||||
msgstr "Expresivo"
|
||||
|
||||
#: assets/js/product-edit.js:144
|
||||
msgid "Excited"
|
||||
msgstr "Emocionado"
|
||||
|
||||
#: assets/js/product-edit.js:145
|
||||
msgid "Inspirational"
|
||||
msgstr "Inspiración"
|
||||
|
||||
#: assets/js/product-edit.js:158
|
||||
msgid "Rewrite this description so it is unique:"
|
||||
msgstr "Reescribe esta descripción para que sea única:"
|
||||
|
||||
#: assets/js/product-edit.js:160
|
||||
msgid "Rewrite this unique text in a"
|
||||
msgstr "Vuelva a escribir este texto único en un"
|
||||
|
||||
#: assets/js/product-edit.js:160
|
||||
msgid "tone"
|
||||
msgstr "tono"
|
||||
|
||||
#: assets/js/product-edit.js:170
|
||||
msgid "Optimize with these keyswords in mind:"
|
||||
msgstr "Optimice teniendo en cuenta estas palabras clave:"
|
||||
|
||||
#: assets/js/product-edit.js:170
|
||||
msgid "keyword1, keyword2, keyword3"
|
||||
msgstr "palabra clave1, palabra clave2, palabra clave3"
|
||||
|
||||
#: assets/js/product-edit.js:171
|
||||
msgid "Optimize for SEO"
|
||||
msgstr "Optimizar para SEO"
|
||||
|
||||
#: assets/js/product-edit.js:183
|
||||
msgid "Optimize this product description for seo:"
|
||||
msgstr "Optimizar esta descripción de producto para seo:"
|
||||
|
||||
#: assets/js/product-edit.js:185
|
||||
msgid "Optimize this description for seo and use the keywords"
|
||||
msgstr "Optimizar esta descripción para seo y utilizar las palabras clave"
|
||||
28
spec/fixtures/dynamic_finders/plugin_version/ai-image-generator/composer_file/package.json
vendored
Normal file
28
spec/fixtures/dynamic_finders/plugin_version/ai-image-generator/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,28 @@
|
||||
{
|
||||
"name": "ai-for-wordpress-by-upcasted",
|
||||
"version": "1.0.0",
|
||||
"description": "A plugin that uses OpenAI Image Generation API to generate similar images based on an image or a text.",
|
||||
"main": "index.js",
|
||||
"directories": {
|
||||
"lib": "lib"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "echo \"Error: no test specified\" && exit 1"
|
||||
},
|
||||
"author": "Upcasted",
|
||||
"license": "ISC",
|
||||
"dependencies": {
|
||||
"openai": "^3.1.0",
|
||||
"react": "^18.2.0",
|
||||
"react-dom": "^18.2.0",
|
||||
"react-easy-crop": "^4.6.3"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "^7.20.12",
|
||||
"@babel/preset-react": "^7.18.6",
|
||||
"@types/react": "^18.0.27",
|
||||
"babel-loader": "^9.1.2",
|
||||
"webpack": "^5.75.0",
|
||||
"webpack-cli": "^5.0.1"
|
||||
}
|
||||
}
|
||||
1518
spec/fixtures/dynamic_finders/plugin_version/ai-scribe/translation_file/languages/aiscribe.pot
vendored
Normal file
1518
spec/fixtures/dynamic_finders/plugin_version/ai-scribe/translation_file/languages/aiscribe.pot
vendored
Normal file
File diff suppressed because it is too large
Load Diff
@@ -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,160 @@
|
||||
# Copyright (C) 2023 Allpay
|
||||
# This file is distributed under the GPLv2 or later.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Allpay payment gateway 1.0.2\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/allpay-payment-"
|
||||
"gateway.1.0.2\n"
|
||||
"POT-Creation-Date: 2023-07-19T19:35:49+03:00\n"
|
||||
"PO-Revision-Date: 2023-07-19 19:49+0300\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: ru_RU\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 3.3.2\n"
|
||||
"X-Domain: allpay-payment-gateway\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Allpay payment gateway"
|
||||
msgstr "Платежный шлюз Allpay"
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://www.allpay.co.il/integrations/woocommerce"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Allpay Payment Gateway for WooCommerce."
|
||||
msgstr "Платежный шлюз Allpay для WooCommerce."
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Allpay"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://allpay.co.il"
|
||||
msgstr ""
|
||||
|
||||
#: allpay-gateway.php:47
|
||||
msgid "Settings"
|
||||
msgstr "Настройки"
|
||||
|
||||
#: allpay.php:12 allpay.php:16
|
||||
msgid "Bank cards payments Allpay"
|
||||
msgstr "Оплата банковскими картами Allpay"
|
||||
|
||||
#: allpay.php:14
|
||||
msgid "Allpay Payment Gateway Plug-in for WooCommerce"
|
||||
msgstr "Плагин платежного шлюза Allpay для WooCommerce"
|
||||
|
||||
#: allpay.php:55
|
||||
msgid "Enable / Disable"
|
||||
msgstr "Включить/ Выключить"
|
||||
|
||||
#: allpay.php:56
|
||||
msgid "Enable this payment gateway"
|
||||
msgstr "Включить этот метод оплаты"
|
||||
|
||||
#: allpay.php:61
|
||||
msgid "Title"
|
||||
msgstr "Заголовок"
|
||||
|
||||
#: allpay.php:63
|
||||
msgid "Payment title the customer will see during the checkout process."
|
||||
msgstr ""
|
||||
"Заголовок платежа, который покупатель увидит в процессе оформления заказа."
|
||||
|
||||
#: allpay.php:64
|
||||
msgid "Credit card"
|
||||
msgstr "Кредитная карта"
|
||||
|
||||
#: allpay.php:67
|
||||
msgid "Description"
|
||||
msgstr "Описание"
|
||||
|
||||
#: allpay.php:69
|
||||
msgid "Payment description the customer will see during the checkout process."
|
||||
msgstr ""
|
||||
"Описание платежа, которое покупатель увидит в процессе оформления заказа."
|
||||
|
||||
#: allpay.php:70
|
||||
msgid "Pay securely using your credit card."
|
||||
msgstr "Платите безопасно с помощью кредитной карты."
|
||||
|
||||
#: allpay.php:74
|
||||
msgid "API login"
|
||||
msgstr "API логин"
|
||||
|
||||
#: allpay.php:76
|
||||
msgid "Allpay API Login"
|
||||
msgstr "Логин API Allpay"
|
||||
|
||||
#: allpay.php:79
|
||||
msgid "API key"
|
||||
msgstr "API ключ"
|
||||
|
||||
#: allpay.php:81
|
||||
msgid "Allpay API Key"
|
||||
msgstr "Ключ API Allpay"
|
||||
|
||||
#: allpay.php:84
|
||||
msgid "Installment max payments"
|
||||
msgstr "Платежей в рассрочку до"
|
||||
|
||||
#: allpay.php:86
|
||||
msgid "Maximum number of installment payments. Up to 12, zero to disable."
|
||||
msgstr ""
|
||||
"Максимальное количество платежей в рассрочку. Максимум до12-и платежей. 0 "
|
||||
"для отключения."
|
||||
|
||||
#: allpay.php:87
|
||||
msgid ""
|
||||
"Allows client to choose number of payments. Valid for credit cards only (no "
|
||||
"debit cards)"
|
||||
msgstr ""
|
||||
"Позволяет клиенту выбрать количество платежей. Действительно только для "
|
||||
"кредитных карт (без дебетовых карт)"
|
||||
|
||||
#: allpay.php:91
|
||||
msgid "Installment min order amount"
|
||||
msgstr "Минимальная сумма заказа в рассрочку"
|
||||
|
||||
#: allpay.php:93
|
||||
msgid "Minimum order amount for installments. Zero for orders of any amount."
|
||||
msgstr "Минимальная сумма заказа в рассрочку. Ноль для заказов на любую сумму."
|
||||
|
||||
#: allpay.php:94
|
||||
msgid ""
|
||||
"Enables installment option when payment amount equals or above this value"
|
||||
msgstr ""
|
||||
"Включает опцию рассрочки, когда сумма платежа равна или превышает это "
|
||||
"значение"
|
||||
|
||||
#: allpay.php:98
|
||||
msgid "First payment amount"
|
||||
msgstr "Сумма первого платежа"
|
||||
|
||||
#: allpay.php:100
|
||||
msgid "First Installment payment. Zero for auto."
|
||||
msgstr "Оплата первого взноса. Ноль для автоматического расчета."
|
||||
|
||||
#: allpay.php:101
|
||||
msgid ""
|
||||
"Makes first payment amount fixed. If set to 0, the system will calculate the "
|
||||
"first payment"
|
||||
msgstr ""
|
||||
"Фиксирует сумму первого платежа. Если установлено 0, система рассчитает "
|
||||
"первый платеж"
|
||||
|
||||
#: allpay.php:146
|
||||
msgid ""
|
||||
"We are currently experiencing problems trying to connect to this payment "
|
||||
"gateway. Sorry for the inconvenience."
|
||||
msgstr ""
|
||||
"В настоящее время у нас возникают проблемы с подключением к этому платежному "
|
||||
"шлюзу. Приносим извинения за неудобства."
|
||||
|
||||
#: allpay.php:149
|
||||
msgid "Allpay's Response was empty."
|
||||
msgstr "Пустой ответ от платежного шлюза."
|
||||
@@ -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"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,15 @@
|
||||
{
|
||||
"name": "mvam-animiate",
|
||||
"version": "1.0.1",
|
||||
"description": "",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
"build": "wp-scripts build",
|
||||
"start": "wp-scripts start"
|
||||
},
|
||||
"author": "",
|
||||
"license": "ISC",
|
||||
"devDependencies": {
|
||||
"@wordpress/scripts": "^19.2.1"
|
||||
}
|
||||
}
|
||||
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
@@ -0,0 +1,4 @@
|
||||
*** Anti DDOS/BOT ReCaptcha Protection ***
|
||||
|
||||
= 1.0.0 - 2023-02-13 =
|
||||
* ANNOUNCE - First release of this plugin.
|
||||
@@ -0,0 +1,283 @@
|
||||
# Copyright (C) 2023 Aplaz S.A. de C.V.
|
||||
# This file is distributed under the MIT.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Aplazo Payment Gateway 1.0.18\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/aplazo-payment-"
|
||||
"gateway\n"
|
||||
"POT-Creation-Date: 2023-01-11T16:32:47-06:00\n"
|
||||
"PO-Revision-Date: 2023-01-11 16:44-0600\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: es_MX\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.2\n"
|
||||
"X-Domain: aplazo-payment-gateway\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Aplazo Payment Gateway"
|
||||
msgstr "Pasarela de pago Aplazo"
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Aplazo BNPL Payment Gateway plugin"
|
||||
msgstr "Plugin de pasarela de pago BNPL de Aplazo"
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Aplaz S.A. de C.V."
|
||||
msgstr "Aplaz S.A. de C.V."
|
||||
|
||||
#: includes/module/class-aplazo-gateway.php:43
|
||||
msgid "Gateway Payment Aplazo"
|
||||
msgstr "Pasarela de Pago Aplazo"
|
||||
|
||||
#: includes/module/class-aplazo-gateway.php:98
|
||||
msgid "Enable/Disable"
|
||||
msgstr "Activar/Desactivar"
|
||||
|
||||
#: includes/module/class-aplazo-gateway.php:100
|
||||
msgid "Enable"
|
||||
msgstr "Activar"
|
||||
|
||||
#: includes/module/class-aplazo-gateway.php:104
|
||||
msgid "Title of service by site"
|
||||
msgstr "Título del servicio por sitio"
|
||||
|
||||
#: includes/module/class-aplazo-gateway.php:106
|
||||
msgid ""
|
||||
"Title of service by front-end on site chekout page. Keep empty if want to "
|
||||
"show Aplazo banner"
|
||||
msgstr ""
|
||||
"Título del servicio por front-end en el checkout del sitio. Mantener "
|
||||
"vacío si desea mostrar Aplazo banner"
|
||||
|
||||
#: includes/module/class-aplazo-gateway.php:111
|
||||
msgid "Description on front page"
|
||||
msgstr "Descripción"
|
||||
|
||||
#: includes/module/class-aplazo-gateway.php:113
|
||||
msgid "Description on front page when chekout goods"
|
||||
msgstr "Descripción al buscar productos"
|
||||
|
||||
#: includes/module/class-aplazo-gateway.php:117
|
||||
#: includes/module/class-aplazo-gateway.php:119
|
||||
msgid "Message before pay"
|
||||
msgstr "Mensaje antes de pagar"
|
||||
|
||||
#: includes/module/class-aplazo-gateway.php:120
|
||||
msgid "Please, complete the order with Aplazo clicking here:"
|
||||
msgstr "Por favor, completa la orden con Aplazo dando clic abajo:"
|
||||
|
||||
#: includes/module/class-aplazo-gateway.php:124
|
||||
msgid "Merchant ID"
|
||||
msgstr "Merchant ID"
|
||||
|
||||
#: includes/module/class-aplazo-gateway.php:126
|
||||
msgid "Merchant ID Aplazo. Required parameter"
|
||||
msgstr "Merchant ID Aplazo. Parámetro requerido."
|
||||
|
||||
#: includes/module/class-aplazo-gateway.php:130
|
||||
msgid "API Token"
|
||||
msgstr "API Token"
|
||||
|
||||
#: includes/module/class-aplazo-gateway.php:132
|
||||
msgid "API Token Aplazo. Required parameter"
|
||||
msgstr "API Token Aplazo. Parámetro requerido"
|
||||
|
||||
#: includes/module/class-aplazo-gateway.php:136
|
||||
msgid "Language"
|
||||
msgstr "Idioma"
|
||||
|
||||
#: includes/module/class-aplazo-gateway.php:140
|
||||
msgid "Language of interface "
|
||||
msgstr "Idioma"
|
||||
|
||||
#: includes/module/class-aplazo-gateway.php:144
|
||||
msgid "Status of order when get OUTSTANDING state from API"
|
||||
msgstr ""
|
||||
"Estado de la orden cuando se obtiene el estado OUTSTANDING desde el API"
|
||||
|
||||
#: includes/module/class-aplazo-gateway.php:148
|
||||
msgid "pending"
|
||||
msgstr "Pending"
|
||||
|
||||
#: includes/module/class-aplazo-gateway.php:149
|
||||
msgid "processing"
|
||||
msgstr "Processing"
|
||||
|
||||
#: includes/module/class-aplazo-gateway.php:150
|
||||
msgid "on-hold"
|
||||
msgstr "On-hold"
|
||||
|
||||
#: includes/module/class-aplazo-gateway.php:151
|
||||
msgid "cancelled"
|
||||
msgstr "Cancelled"
|
||||
|
||||
#: includes/module/class-aplazo-gateway.php:152
|
||||
msgid "completed"
|
||||
msgstr "Completed"
|
||||
|
||||
#: includes/module/class-aplazo-gateway.php:153
|
||||
msgid "refunded"
|
||||
msgstr "Refunded"
|
||||
|
||||
#: includes/module/class-aplazo-gateway.php:154
|
||||
msgid "failed"
|
||||
msgstr "Failed"
|
||||
|
||||
#: includes/module/class-aplazo-gateway.php:156
|
||||
msgid "Status of order after success pay"
|
||||
msgstr "Estado de la orden después de un pago exitoso"
|
||||
|
||||
#: includes/module/class-aplazo-gateway.php:160
|
||||
msgid "Select the Aplazo environment"
|
||||
msgstr "Selecciona el ambiente de Aplazo"
|
||||
|
||||
#: includes/module/class-aplazo-gateway.php:164
|
||||
msgid "development"
|
||||
msgstr "Desarrollo"
|
||||
|
||||
#: includes/module/class-aplazo-gateway.php:165
|
||||
msgid "stage"
|
||||
msgstr "Stage"
|
||||
|
||||
#: includes/module/class-aplazo-gateway.php:166
|
||||
msgid "production"
|
||||
msgstr "Producción"
|
||||
|
||||
#: includes/module/class-aplazo-gateway.php:168
|
||||
msgid "Aplazo Environmnet"
|
||||
msgstr "Ambiente Aplazo"
|
||||
|
||||
#: includes/module/class-aplazo-gateway.php:172
|
||||
#: includes/module/class-aplazo-gateway.php:179
|
||||
msgid "Show widget on Product Detail Page"
|
||||
msgstr "Mostrar el widget en la página de detalle del producto"
|
||||
|
||||
#: includes/module/class-aplazo-gateway.php:176
|
||||
#: includes/module/class-aplazo-gateway.php:187
|
||||
#: includes/module/class-aplazo-gateway.php:198
|
||||
msgid "yes"
|
||||
msgstr "si"
|
||||
|
||||
#: includes/module/class-aplazo-gateway.php:177
|
||||
#: includes/module/class-aplazo-gateway.php:188
|
||||
#: includes/module/class-aplazo-gateway.php:199
|
||||
msgid "no"
|
||||
msgstr "no"
|
||||
|
||||
#: includes/module/class-aplazo-gateway.php:183
|
||||
#: includes/module/class-aplazo-gateway.php:190
|
||||
msgid "Show widget on Shopping Cart Page"
|
||||
msgstr "Mostrar el widget en la página de carrito"
|
||||
|
||||
#: includes/module/class-aplazo-gateway.php:194
|
||||
#: includes/module/class-aplazo-gateway.php:201
|
||||
msgid "Reserve stock when the order is created"
|
||||
msgstr "Reservar inventario cuando una orden es creada"
|
||||
|
||||
#: includes/module/class-aplazo-gateway.php:205
|
||||
msgid "Time to cancel orders"
|
||||
msgstr "Tiempo para cancelar órdenes sin pagar"
|
||||
|
||||
#: includes/module/class-aplazo-gateway.php:209
|
||||
#: includes/module/class-aplazo-gateway.php:210
|
||||
#: includes/module/class-aplazo-gateway.php:211
|
||||
#: includes/module/class-aplazo-gateway.php:212
|
||||
#: includes/module/class-aplazo-gateway.php:213
|
||||
#: includes/module/class-aplazo-gateway.php:214
|
||||
#: includes/module/class-aplazo-gateway.php:215
|
||||
#: includes/module/class-aplazo-gateway.php:216
|
||||
#: includes/module/class-aplazo-gateway.php:217
|
||||
#: includes/module/class-aplazo-gateway.php:218
|
||||
msgid "hours"
|
||||
msgstr "horas"
|
||||
|
||||
#: includes/module/class-aplazo-gateway.php:219
|
||||
msgid "hour"
|
||||
msgstr "hora"
|
||||
|
||||
#: includes/module/class-aplazo-gateway.php:220
|
||||
#: includes/module/class-aplazo-gateway.php:221
|
||||
msgid "minutes"
|
||||
msgstr "minutos"
|
||||
|
||||
#: includes/module/class-aplazo-gateway.php:222
|
||||
msgid "manual"
|
||||
msgstr "manual"
|
||||
|
||||
#: includes/module/class-aplazo-gateway.php:224
|
||||
msgid "After this time the orders could be cancelled"
|
||||
msgstr "Después de este tiempo las órdenes pueden ser canceladas"
|
||||
|
||||
#: includes/module/class-aplazo-gateway.php:233
|
||||
msgid "Debug"
|
||||
msgstr "Depurador"
|
||||
|
||||
#: includes/module/class-aplazo-gateway.php:235
|
||||
msgid "Active"
|
||||
msgstr "Activo"
|
||||
|
||||
#: includes/module/class-aplazo-gateway.php:265
|
||||
#: includes/module/class-aplazo-module.php:164
|
||||
msgid "Order pending payment via APLAZO"
|
||||
msgstr "Orden con pago pendiente via APLAZO"
|
||||
|
||||
#: includes/module/class-aplazo-gateway.php:266
|
||||
#: includes/module/class-aplazo-module.php:165
|
||||
msgid "Client has redirected to APLAZO gateway for pay his goods"
|
||||
msgstr ""
|
||||
"Cliente ha sido redirigido a la pasarela de APLAZO para pagar su carrito"
|
||||
|
||||
#: includes/module/class-aplazo-gateway.php:272
|
||||
#: includes/module/class-aplazo-gateway.php:275
|
||||
msgid "Payment error:"
|
||||
msgstr "Error de pago:"
|
||||
|
||||
#: includes/module/class-aplazo-gateway.php:272
|
||||
msgid "Communication error"
|
||||
msgstr "Error de comunicación"
|
||||
|
||||
#: includes/module/class-aplazo-gateway.php:520
|
||||
#: includes/module/class-aplazo-gateway.php:525
|
||||
msgid "Client has not payed for his goods (status changed)"
|
||||
msgstr "Cliente no ha pagado su carrito (cambio de status)"
|
||||
|
||||
#: includes/module/class-aplazo-gateway.php:521
|
||||
msgid "Order has pending via APLAZO"
|
||||
msgstr "Orden está pendiente vía APLAZO"
|
||||
|
||||
#: includes/module/class-aplazo-gateway.php:526
|
||||
msgid "Order has cancelled via APLAZO (payment cancelled)"
|
||||
msgstr "Orden ha sido cancelada vía APLAZO (pago cancelado)"
|
||||
|
||||
#: includes/module/class-aplazo-gateway.php:531
|
||||
msgid "Order in "
|
||||
msgstr "Ordena en"
|
||||
|
||||
#: includes/module/class-aplazo-gateway.php:554
|
||||
msgid "Refund failed."
|
||||
msgstr "Reembolso fallido."
|
||||
|
||||
#: includes/module/class-aplazo-gateway.php:559
|
||||
#: includes/module/class-aplazo-module.php:107
|
||||
msgid "Refund communication failed."
|
||||
msgstr "Comunicación de reembolso fallida."
|
||||
|
||||
#: includes/module/class-aplazo-gateway.php:562
|
||||
msgid "Refund in process."
|
||||
msgstr "Reembolso en proceso."
|
||||
|
||||
#: includes/module/class-aplazo-module.php:91
|
||||
msgid "The order was cancelled due to no payment from customer."
|
||||
msgstr "La orden fue cancelada debido a que no hubo pago del cliente."
|
||||
|
||||
#: includes/module/class-aplazo-module.php:189
|
||||
msgid "Configure"
|
||||
msgstr "Configurar"
|
||||
|
||||
#: includes/module/class-aplazo-template-functions.php:21
|
||||
msgid "Place order"
|
||||
msgstr "Terminar orden"
|
||||
File diff suppressed because it is too large
Load Diff
11
spec/fixtures/dynamic_finders/plugin_version/arvancloud-vod/composer_file/package.json
vendored
Normal file
11
spec/fixtures/dynamic_finders/plugin_version/arvancloud-vod/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"name": "arvancloud-vod",
|
||||
"version": "0.0.1",
|
||||
"description": "",
|
||||
"author": "Khorshid <info@khorshidlab.com>",
|
||||
"devDependencies": {
|
||||
"grunt": "*",
|
||||
"grunt-contrib-watch": "*",
|
||||
"grunt-contrib-compass": "*"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,271 @@
|
||||
# Copyright (C) 2022 Khorshid, ArvanCloud
|
||||
# This file is distributed under the GPL-3.0+.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: ArvanCloud VOD 0.0.1\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/arvancloud-vod-for-wordpress\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-14T07:39:30+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.6.0\n"
|
||||
"X-Domain: arvancloud-vod\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
#: inc/VOD/Widgets/Video_Links.php:25
|
||||
#: inc/VOD/Widgets/Video_Links.php:34
|
||||
msgid "ArvanCloud VOD"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
#. Author URI of the plugin
|
||||
msgid "https://www.arvancloud.ir/en/products/video-platform"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "ArvanCloud Video Platform allows users to publish, store and convert their video content without worrying about the required infrastructure."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Khorshid, ArvanCloud"
|
||||
msgstr ""
|
||||
|
||||
#: admin/Enqueue.php:110
|
||||
msgid "you are not allowed to upload this file type."
|
||||
msgstr ""
|
||||
|
||||
#: admin/Enqueue.php:111
|
||||
#: inc/VOD/Assets/Media_Action.php:15
|
||||
#: inc/VOD/Assets/Media_Action.php:33
|
||||
#: inc/VOD/Widgets/Video_Links.php:69
|
||||
msgid "Copy to ArvanVOD"
|
||||
msgstr ""
|
||||
|
||||
#: admin/views/components/footer.php:4
|
||||
msgid "Arvan Video Panel"
|
||||
msgstr ""
|
||||
|
||||
#: admin/views/components/footer.php:5
|
||||
msgid "Support"
|
||||
msgstr ""
|
||||
|
||||
#: admin/views/components/footer.php:6
|
||||
msgid "Email Us"
|
||||
msgstr ""
|
||||
|
||||
#: admin/views/pages/about-us.php:2
|
||||
#: inc/Setup.php:228
|
||||
#: inc/Setup.php:256
|
||||
msgid "About ArvanCloud"
|
||||
msgstr ""
|
||||
|
||||
#: admin/views/pages/about-us.php:8
|
||||
msgid "ArvanCloud, an international cloud services provider in Germany, offers various effective solutions for its customers worldwide. As one of the fastest-growing cloud solutions providers in the market, with an exceptional team, cutting-edge technologies and equipment, ArvancCloud aims to become a leader in the cloud industry. <br /> Equipped with a globally distributed network of more than 40 PoPs, ArvanCloud prides itself on innovative cloud solutions at the best price and highest quality. With ArvanCloud solutions, every customer can enjoy a fast, secure, reliable, and affordable cloud service. <br /> ArvanCloud has always provided the broadest set of services possible, to make a significant difference in the cloud services industry. Currently, its portfolio includes numerous cloud products, such as Cloud CDN, Manage DNS, Cloud Security, Video Streaming, Live Streaming Platform, Cloud Object Storage, and Platform as a service."
|
||||
msgstr ""
|
||||
|
||||
#: admin/views/pages/add-video.php:83
|
||||
#: inc/Setup.php:210
|
||||
msgid "Upload New Video"
|
||||
msgstr ""
|
||||
|
||||
#: admin/views/pages/add-video.php:131
|
||||
msgid "Accepted file types: %s"
|
||||
msgstr ""
|
||||
|
||||
#: admin/views/pages/api-key-settings.php:8
|
||||
msgid "VOD General Settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/views/pages/api-key-settings.php:11
|
||||
msgid "Configure VOD API"
|
||||
msgstr ""
|
||||
|
||||
#: admin/views/pages/api-key-settings.php:15
|
||||
#: inc/API/VOD_Key.php:53
|
||||
msgid "-- not shown --"
|
||||
msgstr ""
|
||||
|
||||
#: admin/views/pages/api-key-settings.php:18
|
||||
msgid "Get API Key"
|
||||
msgstr ""
|
||||
|
||||
#: admin/views/pages/api-key-settings.php:29
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#: admin/views/pages/api-key-settings.php:34
|
||||
#: admin/views/pages/default-channel.php:47
|
||||
msgid "Save"
|
||||
msgstr ""
|
||||
|
||||
#: admin/views/pages/default-channel.php:11
|
||||
msgid "Channels"
|
||||
msgstr ""
|
||||
|
||||
#: admin/views/pages/default-channel.php:15
|
||||
msgid "Select default channel"
|
||||
msgstr ""
|
||||
|
||||
#: admin/views/pages/default-channel.php:22
|
||||
msgid "Change API Key"
|
||||
msgstr ""
|
||||
|
||||
#: admin/views/pages/default-channel.php:29
|
||||
msgid "Select default channel (ArvanCloud Video Channel for Uploading Videos)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/views/pages/video-library.php:83
|
||||
#: inc/Setup.php:201
|
||||
msgid "Video Library"
|
||||
msgstr ""
|
||||
|
||||
#: admin/views/pages/video-library.php:224
|
||||
msgid "Video Library "
|
||||
msgstr ""
|
||||
|
||||
#: arvancloud-vod.php:56
|
||||
msgid "\"ArvanCloud VOD\" requires PHP 5.6 or newer."
|
||||
msgstr ""
|
||||
|
||||
#: inc/API/VOD/Channels.php:38
|
||||
msgid "Please select a channel"
|
||||
msgstr ""
|
||||
|
||||
#: inc/API/VOD/Channels.php:53
|
||||
#: inc/API/VOD_Key.php:74
|
||||
msgid "settings saved."
|
||||
msgstr ""
|
||||
|
||||
#: inc/API/VOD_Key.php:24
|
||||
msgid "ArvanCloud is not responding right now. please try again later."
|
||||
msgstr ""
|
||||
|
||||
#: inc/API/VOD_Key.php:30
|
||||
msgid "ArvanCloud API key is invalid. Please try again."
|
||||
msgstr ""
|
||||
|
||||
#: inc/API/VOD_Key.php:57
|
||||
msgid "Enter your API key"
|
||||
msgstr ""
|
||||
|
||||
#: inc/Setup.php:190
|
||||
#: inc/Setup.php:237
|
||||
msgid "ArvanCloud Videos"
|
||||
msgstr ""
|
||||
|
||||
#: inc/Setup.php:191
|
||||
#: inc/Setup.php:238
|
||||
msgid "Videos"
|
||||
msgstr ""
|
||||
|
||||
#: inc/Setup.php:202
|
||||
msgid "Library"
|
||||
msgstr ""
|
||||
|
||||
#: inc/Setup.php:211
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
|
||||
#: inc/Setup.php:219
|
||||
#: inc/Setup.php:220
|
||||
#: inc/Setup.php:247
|
||||
#: inc/Setup.php:248
|
||||
msgid "Setting"
|
||||
msgstr ""
|
||||
|
||||
#: inc/Setup.php:229
|
||||
#: inc/Setup.php:257
|
||||
msgid "About"
|
||||
msgstr ""
|
||||
|
||||
#: inc/VOD/Assets/Add_Video.php:109
|
||||
msgid "The following videos are being copied and Converted: <br>"
|
||||
msgstr ""
|
||||
|
||||
#: inc/VOD/Assets/Media_Action.php:182
|
||||
msgid "Edit attachment"
|
||||
msgstr ""
|
||||
|
||||
#: inc/VOD/Assets/Media_Action.php:252
|
||||
msgid "Media successfully copied to ArvanCloud VoD service."
|
||||
msgstr ""
|
||||
|
||||
#: inc/VOD/Assets/Media_Action.php:253
|
||||
msgid "Media copied to ArvanCloud VOD with some errors."
|
||||
msgstr ""
|
||||
|
||||
#: inc/VOD/Assets/Media_Action.php:255
|
||||
msgid "There were errors when copying the media to ArvanCloud VOD."
|
||||
msgstr ""
|
||||
|
||||
#: inc/VOD/Assets/Media_Action.php:256
|
||||
msgid "The media could not be copied to VOD because it is not a valid video file."
|
||||
msgstr ""
|
||||
|
||||
#: inc/VOD/Assets/Media_Action.php:257
|
||||
msgid "The media could not be copied to VOD because of negative arvan wallet. Please charge your wallet then retry."
|
||||
msgstr ""
|
||||
|
||||
#: inc/VOD/Assets/Tinymce_plugin.php:35
|
||||
msgid "Embed VOD"
|
||||
msgstr ""
|
||||
|
||||
#: inc/VOD/Assets/Tinymce_plugin.php:36
|
||||
msgid "Select a video"
|
||||
msgstr ""
|
||||
|
||||
#: inc/VOD/Assets/Tinymce_plugin.php:37
|
||||
#: assets/js/blocks.build.js:119
|
||||
msgid "Video"
|
||||
msgstr ""
|
||||
|
||||
#: inc/VOD/Assets/Tinymce_plugin.php:38
|
||||
msgid "Select"
|
||||
msgstr ""
|
||||
|
||||
#: inc/VOD/Widgets/Video_Links.php:55
|
||||
msgid "The video has already been uploaded to ArvanCloud VOD and is being converted. Once the conversion process is complete, the video links will be displayed here."
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/blocks.build.js:87
|
||||
msgid "Video ArvanCloud"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/blocks.build.js:87
|
||||
msgid "VOD"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/blocks.build.js:87
|
||||
msgid "video"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/blocks.build.js:87
|
||||
msgid "arvancloud"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/blocks.build.js:119
|
||||
msgid "To edit the Video, you need permission to upload media."
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/blocks.build.js:119
|
||||
msgid "Video settings"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/blocks.build.js:119
|
||||
msgid "Set Video"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/blocks.build.js:119
|
||||
msgid "Replace Video"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/blocks.build.js:119
|
||||
msgid "Remove Video"
|
||||
msgstr ""
|
||||
|
||||
#: assets/js/blocks.build.js:119
|
||||
msgid "No Video Selected"
|
||||
msgstr ""
|
||||
249
spec/fixtures/dynamic_finders/plugin_version/ask-faq/translation_file/languages/ask-faq-pro.pot
vendored
Normal file
249
spec/fixtures/dynamic_finders/plugin_version/ask-faq/translation_file/languages/ask-faq-pro.pot
vendored
Normal file
@@ -0,0 +1,249 @@
|
||||
# Copyright (C) 2023 ThemeAtelier
|
||||
# This file is distributed under the same license as the Ask FAQ Pro plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Ask FAQ Pro 0.0.1\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/ask-faq-pro\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: 2023-04-19T04:37:38+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.7.1\n"
|
||||
"X-Domain: ask-faq-pro\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Ask FAQ Pro"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Best FAQ block including tab and accordion version what provides to use text, audio and video as Write Answer."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "ThemeAtelier"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "http://themeatelier.net/"
|
||||
msgstr ""
|
||||
|
||||
#: ask-faq.php:55
|
||||
msgid "Ask FAQ"
|
||||
msgstr ""
|
||||
|
||||
#: build/accordion-block/index.js:72
|
||||
#: build/tab/index.js:96
|
||||
#: build/accordion-block/index.js:52
|
||||
#: build/tab/index.js:94
|
||||
msgid "Text"
|
||||
msgstr ""
|
||||
|
||||
#: build/accordion-block/index.js:75
|
||||
#: build/tab/index.js:99
|
||||
#: build/accordion-block/index.js:53
|
||||
#: build/tab/index.js:95
|
||||
msgid "Audio"
|
||||
msgstr ""
|
||||
|
||||
#: build/accordion-block/index.js:78
|
||||
#: build/tab/index.js:102
|
||||
#: build/accordion-block/index.js:54
|
||||
#: build/tab/index.js:96
|
||||
msgid "Video"
|
||||
msgstr ""
|
||||
|
||||
#: build/accordion-block/index.js:85
|
||||
#: build/accordion-block/index.js:90
|
||||
#: build/accordion-block/index.js:157
|
||||
#: build/tabs/index.js:3631
|
||||
#: build/tabs/index.js:3632
|
||||
#: build/accordion-block/index.js:68
|
||||
#: build/accordion-block/index.js:73
|
||||
#: build/accordion-block/index.js:171
|
||||
#: build/tabs/index.js:3194
|
||||
#: build/tabs/index.js:3198
|
||||
msgid "Write Question"
|
||||
msgstr ""
|
||||
|
||||
#: build/accordion-block/index.js:91
|
||||
#: build/accordion-block/index.js:74
|
||||
msgid "Write your question to show as Write Question."
|
||||
msgstr ""
|
||||
|
||||
#: build/accordion-block/index.js:93
|
||||
#: build/tab/index.js:105
|
||||
#: build/accordion-block/index.js:80
|
||||
#: build/tab/index.js:104
|
||||
msgid "Type of Write Answer"
|
||||
msgstr ""
|
||||
|
||||
#: build/accordion-block/index.js:106
|
||||
#: build/tab/index.js:118
|
||||
#: build/accordion-block/index.js:89
|
||||
#: build/tab/index.js:113
|
||||
msgid "Choose the type of answer you wanna show"
|
||||
msgstr ""
|
||||
|
||||
#: build/accordion-block/index.js:108
|
||||
#: build/accordion-block/index.js:113
|
||||
#: build/accordion-block/index.js:184
|
||||
#: build/tab/index.js:120
|
||||
#: build/tab/index.js:123
|
||||
#: build/accordion-block/index.js:96
|
||||
#: build/accordion-block/index.js:101
|
||||
#: build/accordion-block/index.js:209
|
||||
msgid "Write Answer"
|
||||
msgstr ""
|
||||
|
||||
#: build/accordion-block/index.js:114
|
||||
#: build/accordion-block/index.js:102
|
||||
msgid "Write your answer to show as Write Answer."
|
||||
msgstr ""
|
||||
|
||||
#: build/accordion-block/index.js:205
|
||||
#: build/tab/index.js:139
|
||||
#: build/tab/index.js:184
|
||||
#: build/accordion-block/index.js:233
|
||||
#: build/tab/index.js:142
|
||||
#: build/tab/index.js:202
|
||||
msgid "Upload Audio"
|
||||
msgstr ""
|
||||
|
||||
#: build/accordion-block/index.js:207
|
||||
#: build/tab/index.js:186
|
||||
#: build/accordion-block/index.js:242
|
||||
#: build/tab/index.js:211
|
||||
msgid "No Audio Uploaded Yet"
|
||||
msgstr ""
|
||||
|
||||
#: build/accordion-block/index.js:228
|
||||
#: build/tab/index.js:155
|
||||
#: build/tab/index.js:207
|
||||
#: build/accordion-block/index.js:271
|
||||
#: build/tab/index.js:162
|
||||
#: build/tab/index.js:238
|
||||
msgid "Upload Video"
|
||||
msgstr ""
|
||||
|
||||
#: build/accordion-block/index.js:230
|
||||
#: build/tab/index.js:209
|
||||
#: build/accordion-block/index.js:280
|
||||
#: build/tab/index.js:247
|
||||
msgid "No Video Uploaded Yet"
|
||||
msgstr ""
|
||||
|
||||
#: build/accordion-block/index.js:261
|
||||
#: build/accordion-block/index.js:313
|
||||
msgid "Accordion Question"
|
||||
msgstr ""
|
||||
|
||||
#: build/accordion-block/index.js:262
|
||||
#: build/accordion-block/index.js:314
|
||||
msgid "A accordion question item"
|
||||
msgstr ""
|
||||
|
||||
#: build/accordion-block/index.js:518
|
||||
#: build/tabs/index.js:3692
|
||||
#: build/accordion-block/index.js:561
|
||||
#: build/tabs/index.js:3304
|
||||
msgid "Show Searchbar for filtering questions."
|
||||
msgstr ""
|
||||
|
||||
#: build/accordion-block/index.js:522
|
||||
#: build/accordion-block/index.js:527
|
||||
#: build/tabs/index.js:3696
|
||||
#: build/tabs/index.js:3701
|
||||
#: build/accordion-block/index.js:570
|
||||
#: build/accordion-block/index.js:575
|
||||
#: build/tabs/index.js:3313
|
||||
#: build/tabs/index.js:3318
|
||||
msgid "Search Question"
|
||||
msgstr ""
|
||||
|
||||
#: build/accordion-block/index.js:528
|
||||
#: build/tabs/index.js:3702
|
||||
#: build/accordion-block/index.js:579
|
||||
#: build/tabs/index.js:3322
|
||||
msgid "Change search filed placeholder"
|
||||
msgstr ""
|
||||
|
||||
#: build/accordion-block/index.js:530
|
||||
#: build/tabs/index.js:3704
|
||||
#: build/accordion-block/index.js:586
|
||||
#: build/tabs/index.js:3329
|
||||
msgid "Dark Mode"
|
||||
msgstr ""
|
||||
|
||||
#: build/tab/index.js:64
|
||||
#: build/tab/index.js:59
|
||||
msgid "%1$s (%2$d of %3$d)"
|
||||
msgstr ""
|
||||
|
||||
#: build/tab/index.js:163
|
||||
#: build/tab/index.js:180
|
||||
msgid "Add Answer"
|
||||
msgstr ""
|
||||
|
||||
#: build/accordion-block/block.json
|
||||
msgctxt "block title"
|
||||
msgid "Ask Accordion"
|
||||
msgstr ""
|
||||
|
||||
#: build/accordion-block/block.json
|
||||
msgctxt "block description"
|
||||
msgid "Accordion for Ask FAQ"
|
||||
msgstr ""
|
||||
|
||||
#: build/accordion-block/block.json
|
||||
#: build/tab/block.json
|
||||
#: build/tabs/block.json
|
||||
msgctxt "block keyword"
|
||||
msgid "ask"
|
||||
msgstr ""
|
||||
|
||||
#: build/accordion-block/block.json
|
||||
#: build/tab/block.json
|
||||
#: build/tabs/block.json
|
||||
msgctxt "block keyword"
|
||||
msgid "faq"
|
||||
msgstr ""
|
||||
|
||||
#: build/accordion-block/block.json
|
||||
msgctxt "block keyword"
|
||||
msgid "accordion"
|
||||
msgstr ""
|
||||
|
||||
#: build/tab/block.json
|
||||
msgctxt "block title"
|
||||
msgid "Tab"
|
||||
msgstr ""
|
||||
|
||||
#: build/tab/block.json
|
||||
#: build/tabs/block.json
|
||||
msgctxt "block description"
|
||||
msgid "Tab for ask faq"
|
||||
msgstr ""
|
||||
|
||||
#: build/tab/block.json
|
||||
#: build/tabs/block.json
|
||||
msgctxt "block keyword"
|
||||
msgid "tab"
|
||||
msgstr ""
|
||||
|
||||
#: build/tabs/block.json
|
||||
msgctxt "block title"
|
||||
msgid "Ask Tab"
|
||||
msgstr ""
|
||||
|
||||
#: build/tabs/block.json
|
||||
msgctxt "block style label"
|
||||
msgid "Default"
|
||||
msgstr ""
|
||||
|
||||
#: build/tabs/block.json
|
||||
msgctxt "block style label"
|
||||
msgid "Other"
|
||||
msgstr ""
|
||||
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"
|
||||
}
|
||||
}
|
||||
52
spec/fixtures/dynamic_finders/plugin_version/auto-date-year-month/change_log/changelog.txt
vendored
Normal file
52
spec/fixtures/dynamic_finders/plugin_version/auto-date-year-month/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,52 @@
|
||||
== Changelog ==
|
||||
|
||||
= 1.0.0 =
|
||||
Initial Release: December 21, 2022
|
||||
|
||||
* Initial Release
|
||||
|
||||
= 1.0.1 =
|
||||
Bugs Fixed and Some Other Changings: December 21, 2022
|
||||
|
||||
* Bugs Fixed
|
||||
* Table and Menu Registered
|
||||
|
||||
= 1.0.2 =
|
||||
Bugs Fixed and New shortcodes added: December 22, 2022
|
||||
|
||||
* Bugs Fixed and New shortcodes added
|
||||
* Copy Symbol & Copyrights Text short code added.
|
||||
* Show Last Modified Date using shortcode added
|
||||
|
||||
= 1.0.3 =
|
||||
Bugs Fixed and New Shortcodes Added:December 23, 2022
|
||||
|
||||
* Bugs Fixed
|
||||
* New shortcodes added
|
||||
* Welcome Page Added
|
||||
|
||||
= 1.0.4 =
|
||||
Bugs Fixed and New Shortcodes Added: January 05, 2023
|
||||
|
||||
* Bugs Fixed
|
||||
* New shortcodes added
|
||||
* SEO Plugins Support Added SEOPress/RankMath/YoastSEO
|
||||
|
||||
= 1.0.5 =
|
||||
Bugs Fixed and New Shortcodes Added: January 08, 2023
|
||||
|
||||
* Bugs Fixed
|
||||
* Age Calculator Added use shortcode to calculate The total age
|
||||
* Custom period function added (combined) A duration of years, months, or days can be referred to using this short code.
|
||||
|
||||
= 1.0.6 =
|
||||
Bugs Fixed and Shortcodes Changed: January 27, 2023
|
||||
|
||||
* Bugs Fixed
|
||||
* All Shortcode changed long to short for handle characters issues
|
||||
|
||||
= 1.0.7 =
|
||||
Bugs Fixed and New Shortcodes Added: March 16, 2023
|
||||
|
||||
* Bugs Fixed
|
||||
* New Shortcode for Copy Pasting Added
|
||||
@@ -0,0 +1,6 @@
|
||||
= 1.2.0 =
|
||||
New: support for WooCommerce 8.0.1
|
||||
New: support for WordPress 6.3
|
||||
|
||||
= 1.1.0 =
|
||||
New: support for WooCommerce 7.9
|
||||
@@ -0,0 +1,31 @@
|
||||
# Copyright (C) 2023 GrandPlugins
|
||||
# This file is distributed under the same license as the AVIF Support [GrandPlugins] plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: AVIF Support [GrandPlugins] 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/gpls-avif-support\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: 2023-02-09T14:51:55+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.6.0\n"
|
||||
"X-Domain: gpls-avif-support\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "AVIF Support [GrandPlugins]"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "AVIF support plugins aims to support avif images in WordPress by overcome wp issues and limits regarding uploading, displaying and generating avif images."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "GrandPlugins"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://grandplugins.com"
|
||||
msgstr ""
|
||||
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 ""
|
||||
@@ -0,0 +1,528 @@
|
||||
# Copyright (C) 2023 Get Innovation Dev.
|
||||
# This file is distributed under the GPL v2 or later.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Back in stock notifications for WooCommerce 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/woo-stock-notify-"
|
||||
"me\n"
|
||||
"POT-Creation-Date: 2023-02-22T06:43:48+00:00\n"
|
||||
"PO-Revision-Date: 2023-02-22 08:57+0200\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: en\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.2\n"
|
||||
"X-Domain: back-in-stock-notifications-for-woocommerce\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Back in stock notifications for WooCommerce"
|
||||
msgstr "Back in stock notifications for WooCommerce"
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid ""
|
||||
"https://www.getinnovation.dev/wordpres-plugins/woocommerce-stock-notify-me/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Woocommerce subscribe system for out of stock products."
|
||||
msgstr "Woocommerce subscribe system for out of stock products."
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Get Innovation Dev."
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://getinnovation.dev/"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-wsnm-admin-settings.php:48
|
||||
msgid "Notify Me - Settings"
|
||||
msgstr "Notify Me - Settings"
|
||||
|
||||
#: admin/class-wsnm-admin-settings.php:49 admin/class-wsnm-admin.php:453
|
||||
msgid "Settings"
|
||||
msgstr "Settings"
|
||||
|
||||
#: admin/class-wsnm-admin-settings.php:80
|
||||
msgid "General"
|
||||
msgstr "General"
|
||||
|
||||
#: admin/class-wsnm-admin-settings.php:85
|
||||
msgid "Subscription Form"
|
||||
msgstr "Subscription Form"
|
||||
|
||||
#: admin/class-wsnm-admin-settings.php:90
|
||||
msgid "Email Templates"
|
||||
msgstr "Email Templates"
|
||||
|
||||
#: admin/class-wsnm-admin-settings.php:95
|
||||
msgid "Documentation"
|
||||
msgstr "Documentation"
|
||||
|
||||
#: admin/class-wsnm-admin-settings.php:252
|
||||
msgid "Settings successfully updated"
|
||||
msgstr "Settings successfully updated"
|
||||
|
||||
#: admin/class-wsnm-admin.php:35
|
||||
msgid "Woo Stock Notify Me requires Woocommerce to be installed."
|
||||
msgstr "Woo Stock Notify Me requires Woocommerce to be installed."
|
||||
|
||||
#: admin/class-wsnm-admin.php:74 admin/class-wsnm-admin.php:75
|
||||
#: admin/class-wsnm-admin.php:85 admin/parts/settings-page-template.php:3
|
||||
msgid "Notify Me"
|
||||
msgstr "Notify Me"
|
||||
|
||||
#: admin/class-wsnm-admin.php:76
|
||||
msgctxt "Notify Me - Plugin"
|
||||
msgid "Add New"
|
||||
msgstr "Add New"
|
||||
|
||||
#: admin/class-wsnm-admin.php:77
|
||||
msgid "Add New Subscription"
|
||||
msgstr "Add New Subscription"
|
||||
|
||||
#: admin/class-wsnm-admin.php:78
|
||||
msgid "Edit Subscription"
|
||||
msgstr "Edit Subscription"
|
||||
|
||||
#: admin/class-wsnm-admin.php:79
|
||||
msgid "New Subscription"
|
||||
msgstr "New Subscription"
|
||||
|
||||
#: admin/class-wsnm-admin.php:80
|
||||
msgid "All Subscription"
|
||||
msgstr "All Subscription"
|
||||
|
||||
#: admin/class-wsnm-admin.php:81
|
||||
msgid "View Subscription"
|
||||
msgstr "View Subscription"
|
||||
|
||||
#: admin/class-wsnm-admin.php:82
|
||||
msgid "Search Subscription"
|
||||
msgstr "Search Subscription"
|
||||
|
||||
#: admin/class-wsnm-admin.php:83
|
||||
msgid "No Subscription found"
|
||||
msgstr "No Subscription found"
|
||||
|
||||
#: admin/class-wsnm-admin.php:84
|
||||
msgid "No Subscription found in the Trash"
|
||||
msgstr "No Subscription found in the Trash"
|
||||
|
||||
#: admin/class-wsnm-admin.php:119
|
||||
msgid "Details"
|
||||
msgstr "Details"
|
||||
|
||||
#: admin/class-wsnm-admin.php:152 admin/class-wsnm-admin.php:308
|
||||
msgid "Name"
|
||||
msgstr "Name"
|
||||
|
||||
#: admin/class-wsnm-admin.php:157 admin/class-wsnm-admin.php:311
|
||||
msgid "Status"
|
||||
msgstr "Status"
|
||||
|
||||
#: admin/class-wsnm-admin.php:158 admin/class-wsnm-admin.php:310
|
||||
msgid "Product"
|
||||
msgstr "Product"
|
||||
|
||||
#: admin/class-wsnm-admin.php:194 includes/class-wsnm-helper.php:305
|
||||
msgid "Unavailable"
|
||||
msgstr "Unavailable"
|
||||
|
||||
#: admin/class-wsnm-admin.php:213
|
||||
msgid "Select Product"
|
||||
msgstr "Select Product"
|
||||
|
||||
#: admin/class-wsnm-admin.php:289
|
||||
msgid "Download CSV"
|
||||
msgstr "Download CSV"
|
||||
|
||||
#: admin/class-wsnm-admin.php:305
|
||||
msgid "Email"
|
||||
msgstr "Email"
|
||||
|
||||
#: admin/class-wsnm-admin.php:330 admin/class-wsnm-admin.php:331
|
||||
msgid "Not Available"
|
||||
msgstr "Not Available"
|
||||
|
||||
#: admin/class-wsnm-admin.php:348
|
||||
msgid "Out of stock - Notifications"
|
||||
msgstr "Out of stock - Notifications"
|
||||
|
||||
#: admin/class-wsnm-admin.php:373
|
||||
msgid "Pause Notifications."
|
||||
msgstr "Pause Notifications."
|
||||
|
||||
#: admin/class-wsnm-admin.php:374
|
||||
msgid ""
|
||||
"By default the notifications are sent for all products, check this to pause "
|
||||
"the notifications for this particular product."
|
||||
msgstr ""
|
||||
"By default the notifications are sent for all products, check this to pause "
|
||||
"the notifications for this particular product."
|
||||
|
||||
#: admin/class-wsnm-admin.php:387
|
||||
msgid "Manually Mode"
|
||||
msgstr "Manually Mode"
|
||||
|
||||
#: admin/class-wsnm-admin.php:388
|
||||
msgid "Check the box and save the product to send notifications."
|
||||
msgstr "Check the box and save the product to send notifications."
|
||||
|
||||
#: admin/class-wsnm-admin.php:453
|
||||
msgid "Plugin Settings"
|
||||
msgstr "Plugin Settings"
|
||||
|
||||
#: admin/parts/emails/default-confirmation-email.php:1
|
||||
#: admin/parts/emails/default-notification-email.php:1
|
||||
msgid "Hello [wsnm-first-name] [wsnm-last-name]"
|
||||
msgstr "Hello [wsnm-first-name] [wsnm-last-name]"
|
||||
|
||||
#: admin/parts/emails/default-confirmation-email.php:1
|
||||
msgid "Thank you for subscribing to <strong>[wsnm-product-title]</strong>"
|
||||
msgstr "Thank you for subscribing to <strong>[wsnm-product-title]</strong>"
|
||||
|
||||
#: admin/parts/emails/default-confirmation-email.php:1
|
||||
msgid ""
|
||||
"You will receive an email notification once the product will be back in stock"
|
||||
msgstr ""
|
||||
"You will receive an email notification once the product will be back in stock"
|
||||
|
||||
#: admin/parts/emails/default-confirmation-email.php:2
|
||||
#: admin/parts/emails/default-notification-email.php:2
|
||||
msgid "Thank you!"
|
||||
msgstr "Thank you!"
|
||||
|
||||
#: admin/parts/emails/default-confirmation-email.php:3
|
||||
#: admin/parts/emails/default-notification-email.php:3
|
||||
msgid "Your friends at"
|
||||
msgstr "Your friends at"
|
||||
|
||||
#: admin/parts/emails/default-notification-email.php:1
|
||||
msgid ""
|
||||
"Your subscribed product <strong>[wsnm-product-title]</strong> is now back in "
|
||||
"stock for [wsnm-product-price]! The stock - [wsnm-product-quantity], and "
|
||||
"this email is not a guarantee you'll get one, so hurry to be one of the "
|
||||
"lucky shoppers who do"
|
||||
msgstr ""
|
||||
"Your subscribed product <strong>[wsnm-product-title]</strong> is now back in "
|
||||
"stock for [wsnm-product-price]! The stock - [wsnm-product-quantity], and "
|
||||
"this email is not a guarantee you'll get one, so hurry to be one of the "
|
||||
"lucky shoppers who do"
|
||||
|
||||
#: admin/parts/emails/default-notification-email.php:1
|
||||
msgid ""
|
||||
"Add the product <strong>[wsnm-product-title]</strong> directly to your cart: "
|
||||
"[wsnm-product-url]"
|
||||
msgstr ""
|
||||
"Add the product <strong>[wsnm-product-title]</strong> directly to your cart: "
|
||||
"[wsnm-product-url]"
|
||||
|
||||
#: admin/parts/page-email-templates.php:4
|
||||
msgid "Confirmation Email"
|
||||
msgstr "Confirmation Email"
|
||||
|
||||
#: admin/parts/page-email-templates.php:7
|
||||
msgid ""
|
||||
"The confirmation email is sent when someone subscribes to get notifications."
|
||||
msgstr ""
|
||||
"The confirmation email is sent when someone subscribes to get notifications."
|
||||
|
||||
#: admin/parts/page-email-templates.php:12
|
||||
msgid "Enable the confirmation email"
|
||||
msgstr "Enable the confirmation email"
|
||||
|
||||
#: admin/parts/page-email-templates.php:15
|
||||
msgid "Uncheck to disable the default confirmation email."
|
||||
msgstr "Uncheck to disable the default confirmation email."
|
||||
|
||||
#: admin/parts/page-email-templates.php:22
|
||||
msgid "Confirmation Email - Subject"
|
||||
msgstr "Confirmation Email - Subject"
|
||||
|
||||
#: admin/parts/page-email-templates.php:28
|
||||
msgid "Confirmation Email - Content"
|
||||
msgstr "Confirmation Email - Content"
|
||||
|
||||
#: admin/parts/page-email-templates.php:57
|
||||
msgid "Back in Stock Notification Email"
|
||||
msgstr "Back in Stock Notification Email"
|
||||
|
||||
#: admin/parts/page-email-templates.php:60
|
||||
msgid ""
|
||||
"The back in stock notification email is sent when the product is back in "
|
||||
"stock again."
|
||||
msgstr ""
|
||||
"The back in stock notification email is sent when the product is back in "
|
||||
"stock again."
|
||||
|
||||
#: admin/parts/page-email-templates.php:67
|
||||
msgid "Back in Stock Notification Email - Subject"
|
||||
msgstr "Back in Stock Notification Email - Subject"
|
||||
|
||||
#: admin/parts/page-email-templates.php:73
|
||||
msgid "Back in Stock Notification Email - Content"
|
||||
msgstr "Back in Stock Notification Email - Content"
|
||||
|
||||
#: admin/parts/page-email-templates.php:101
|
||||
msgid "Reset both emails - The confirmation and Back in stock notification"
|
||||
msgstr "Reset both emails - The confirmation and Back in stock notification"
|
||||
|
||||
#: admin/parts/page-email-templates.php:105
|
||||
#: admin/parts/page-general-settings.php:46
|
||||
#: admin/parts/page-subscription-form.php:99
|
||||
msgid "Save"
|
||||
msgstr "Save"
|
||||
|
||||
#: admin/parts/page-general-settings.php:4
|
||||
msgid "Mode"
|
||||
msgstr "Mode"
|
||||
|
||||
#: admin/parts/page-general-settings.php:8
|
||||
msgid "Manually"
|
||||
msgstr "Manually"
|
||||
|
||||
#: admin/parts/page-general-settings.php:11
|
||||
msgid ""
|
||||
"Is the default mode. The notifications are triggered manually by "
|
||||
"administrator directly from the product page."
|
||||
msgstr ""
|
||||
"Is the default mode. The notifications are triggered manually by "
|
||||
"administrator directly from the product page."
|
||||
|
||||
#: admin/parts/page-general-settings.php:16
|
||||
msgid "Automatically"
|
||||
msgstr "Automatically"
|
||||
|
||||
#: admin/parts/page-general-settings.php:19
|
||||
msgid ""
|
||||
"When this mode is enabled, the notifications are triggered automatically by "
|
||||
"the stock status. The notifications are sent when the product is back in "
|
||||
"stock."
|
||||
msgstr ""
|
||||
"When this mode is enabled, the notifications are triggered automatically by "
|
||||
"the stock status. The notifications are sent when the product is back in "
|
||||
"stock."
|
||||
|
||||
#: admin/parts/page-general-settings.php:27
|
||||
msgid "Button Style"
|
||||
msgstr "Button Style"
|
||||
|
||||
#: admin/parts/page-general-settings.php:30
|
||||
msgid "Change the default button style"
|
||||
msgstr "Change the default button style"
|
||||
|
||||
#: admin/parts/page-general-settings.php:36
|
||||
msgid "Background color"
|
||||
msgstr "Background color"
|
||||
|
||||
#: admin/parts/page-general-settings.php:40
|
||||
msgid "Text color"
|
||||
msgstr "Text color"
|
||||
|
||||
#: admin/parts/page-subscription-form.php:4
|
||||
msgid "Form Settings"
|
||||
msgstr "Form Settings"
|
||||
|
||||
#: admin/parts/page-subscription-form.php:7
|
||||
msgid "Manage the subscription form"
|
||||
msgstr "Manage the subscription form"
|
||||
|
||||
#: admin/parts/page-subscription-form.php:13
|
||||
msgid "Enable First and Last Name"
|
||||
msgstr "Enable First and Last Name"
|
||||
|
||||
#: admin/parts/page-subscription-form.php:16
|
||||
msgid "Enable reCAPTCHA v2"
|
||||
msgstr "Enable reCAPTCHA v2"
|
||||
|
||||
#: admin/parts/page-subscription-form.php:19
|
||||
msgid ""
|
||||
"Avoid any spam by enabling reCAPTCHA v2. Click <a href=\"https://www.google."
|
||||
"com/recaptcha\" target=\"_blank\">here</a> to generate the Site & Secret keys"
|
||||
msgstr ""
|
||||
"Avoid any spam by enabling reCAPTCHA v2. Click <a href=\"https://www.google."
|
||||
"com/recaptcha\" target=\"_blank\">here</a> to generate the Site & Secret keys"
|
||||
|
||||
#: admin/parts/page-subscription-form.php:27
|
||||
msgid "Recaptcha Site KEY"
|
||||
msgstr "Recaptcha Site KEY"
|
||||
|
||||
#: admin/parts/page-subscription-form.php:33
|
||||
msgid "Recaptcha Secret KEY"
|
||||
msgstr "Recaptcha Secret KEY"
|
||||
|
||||
#: admin/parts/page-subscription-form.php:41
|
||||
msgid "Other Settings"
|
||||
msgstr "Other Settings"
|
||||
|
||||
#: admin/parts/page-subscription-form.php:46
|
||||
msgid "Before Form Text"
|
||||
msgstr "Before Form Text"
|
||||
|
||||
#: admin/parts/page-subscription-form.php:75
|
||||
msgid "After Form Text"
|
||||
msgstr "After Form Text"
|
||||
|
||||
#. translators: %s: amount of time
|
||||
#: includes/class-action-scheduler.php:26
|
||||
msgid "%s year"
|
||||
msgid_plural "%s years"
|
||||
msgstr[0] "%s year"
|
||||
msgstr[1] "%s years"
|
||||
|
||||
#. translators: %s: amount of time
|
||||
#: includes/class-action-scheduler.php:31
|
||||
msgid "%s month"
|
||||
msgid_plural "%s months"
|
||||
msgstr[0] "%s month"
|
||||
msgstr[1] "%s months"
|
||||
|
||||
#. translators: %s: amount of time
|
||||
#: includes/class-action-scheduler.php:36
|
||||
msgid "%s week"
|
||||
msgid_plural "%s weeks"
|
||||
msgstr[0] "%s week"
|
||||
msgstr[1] "%s weeks"
|
||||
|
||||
#. translators: %s: amount of time
|
||||
#: includes/class-action-scheduler.php:41
|
||||
msgid "%s day"
|
||||
msgid_plural "%s days"
|
||||
msgstr[0] "%s day"
|
||||
msgstr[1] "%s days"
|
||||
|
||||
#. translators: %s: amount of time
|
||||
#: includes/class-action-scheduler.php:46
|
||||
msgid "%s hour"
|
||||
msgid_plural "%s hours"
|
||||
msgstr[0] "%s hour"
|
||||
msgstr[1] "%s hours"
|
||||
|
||||
#. translators: %s: amount of time
|
||||
#: includes/class-action-scheduler.php:51
|
||||
msgid "%s minute"
|
||||
msgid_plural "%s minutes"
|
||||
msgstr[0] "%s minute"
|
||||
msgstr[1] "%s minutes"
|
||||
|
||||
#. translators: %s: amount of time
|
||||
#: includes/class-action-scheduler.php:56
|
||||
msgid "%s second"
|
||||
msgid_plural "%s seconds"
|
||||
msgstr[0] "%s second"
|
||||
msgstr[1] "%s seconds"
|
||||
|
||||
#: includes/class-action-scheduler.php:164
|
||||
msgid " (%s ago)"
|
||||
msgstr " (%s ago)"
|
||||
|
||||
#: includes/class-action-scheduler.php:166
|
||||
msgid " (%s)"
|
||||
msgstr " (%s)"
|
||||
|
||||
#: includes/class-action-scheduler.php:184
|
||||
msgid "Now!"
|
||||
msgstr "Now!"
|
||||
|
||||
#: includes/class-wsnm-helper.php:205
|
||||
msgid "You subscribed to [wsnm-product-title]"
|
||||
msgstr "You subscribed to [wsnm-product-title]"
|
||||
|
||||
#: includes/class-wsnm-helper.php:217
|
||||
msgid "The product [wsnm-product-title] is back in stock"
|
||||
msgstr "The product [wsnm-product-title] is back in stock"
|
||||
|
||||
#: includes/class-wsnm-helper.php:314
|
||||
msgid "Sent"
|
||||
msgstr "Sent"
|
||||
|
||||
#: includes/class-wsnm-helper.php:319 includes/class-wsnm-helper.php:323
|
||||
msgid "Paused"
|
||||
msgstr "Paused"
|
||||
|
||||
#: includes/class-wsnm-helper.php:328
|
||||
msgid "Waiting"
|
||||
msgstr "Waiting"
|
||||
|
||||
#: public/class-wsnm-public.php:75 public/class-wsnm-public.php:77
|
||||
msgid "Something went wrong."
|
||||
msgstr "Something went wrong."
|
||||
|
||||
#: public/class-wsnm-public.php:86
|
||||
msgid "Please specify the first and last name"
|
||||
msgstr "Please specify the first and last name"
|
||||
|
||||
#: public/class-wsnm-public.php:92
|
||||
msgid "Please specify a valid email."
|
||||
msgstr "Please specify a valid email."
|
||||
|
||||
#: public/class-wsnm-public.php:109
|
||||
msgid "Please configure reCaptcha"
|
||||
msgstr "Please configure reCaptcha"
|
||||
|
||||
#: public/class-wsnm-public.php:114
|
||||
msgid "Please select a valid product."
|
||||
msgstr "Please select a valid product."
|
||||
|
||||
#: public/class-wsnm-public.php:116
|
||||
msgid "The product doesn't exist."
|
||||
msgstr "The product doesn't exist."
|
||||
|
||||
#: public/class-wsnm-public.php:118
|
||||
msgid "Only Simple and Variable products"
|
||||
msgstr "Only Simple and Variable products"
|
||||
|
||||
#: public/class-wsnm-public.php:127
|
||||
msgid "Please select a valid variation."
|
||||
msgstr "Please select a valid variation."
|
||||
|
||||
#: public/class-wsnm-public.php:159
|
||||
msgid "Notification set! Thank you!"
|
||||
msgstr "Notification set! Thank you!"
|
||||
|
||||
#: public/class-wsnm-public.php:161
|
||||
msgid "Something went wrong"
|
||||
msgstr "Something went wrong"
|
||||
|
||||
#: public/class-wsnm-public.php:163
|
||||
msgid "You are already subscribed for this product"
|
||||
msgstr "You are already subscribed for this product"
|
||||
|
||||
#: public/class-wsnm-public.php:188 public/parts/form-modal.php:4
|
||||
#: public/parts/form-modal.php:33
|
||||
msgid "Subscribe"
|
||||
msgstr "Subscribe"
|
||||
|
||||
#: public/parts/after-form-content.php:1
|
||||
msgid ""
|
||||
"By entering my details and by clicking the \"Subscribe\" button, I agree "
|
||||
"that my contact details may be used to inform me about the availability of "
|
||||
"my selected or similar products and other occasional marketing materials."
|
||||
msgstr ""
|
||||
"By entering my details and by clicking the \"Subscribe\" button, I agree "
|
||||
"that my contact details may be used to inform me about the availability of "
|
||||
"my selected or similar products and other occasional marketing materials."
|
||||
|
||||
#: public/parts/form-modal.php:16
|
||||
msgid "First Name ..."
|
||||
msgstr "First Name ..."
|
||||
|
||||
#: public/parts/form-modal.php:19
|
||||
msgid "Last Name ..."
|
||||
msgstr "Last Name ..."
|
||||
|
||||
#: public/parts/form-modal.php:24
|
||||
msgid "Enter Your Email ..."
|
||||
msgstr "Enter Your Email ..."
|
||||
|
||||
#: public/parts/pre-form-content.php:1
|
||||
msgid ""
|
||||
"Enter your details and we will let you know as soon as this product will be "
|
||||
"available again"
|
||||
msgstr ""
|
||||
"Enter your details and we will let you know as soon as this product will be "
|
||||
"available again"
|
||||
@@ -0,0 +1,184 @@
|
||||
# Copyright (C) 2023 Bayarcash
|
||||
# This file is distributed under the GPLv3.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Bayarcash GiveWP 3.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/bayarcash-givewp\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: 2023-06-22T02:18:53+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.7.1\n"
|
||||
"X-Domain: bayarcash-givewp\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Bayarcash GiveWP"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://bayarcash.com/?utm_source=wp-plugins-givewp&utm_campaign=plugin-uri&utm_medium=wp-dash"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Accept online donation from Malaysia internet online banking via Bayarcash. Currently, Bayarcash support FPX and Direct Debit payment channels."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
#: includes/src/Givewp.php:43
|
||||
#: includes/src/Givewp.php:44
|
||||
#: includes/src/Givewp.php:51
|
||||
#: includes/src/Givewp.php:168
|
||||
msgid "Bayarcash"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://bayarcash.com/?utm_source=wp-plugins-givewps&utm_campaign=author-uri&utm_medium=wp-dash"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/donor-profile.php:14
|
||||
msgid "Phone Numbers"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/donor-profile.php:19
|
||||
msgid "This donor does not have any phone number saved."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/form-fields.php:120
|
||||
#: includes/admin/form-fields.php:125
|
||||
#: includes/src/Givewp.php:277
|
||||
msgid "Phone Number"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/form-fields.php:122
|
||||
msgid "We require a phone number for verification."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/form-fields.php:131
|
||||
msgid "Identification Type"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/form-fields.php:133
|
||||
msgid "We require a identification type for verification."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/form-fields.php:152
|
||||
#: includes/admin/form-fields.php:157
|
||||
#: includes/src/Givewp.php:278
|
||||
msgid "Identification Number"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/form-fields.php:154
|
||||
msgid "We require a identification number for verification."
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/Bayarcash.php:123
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/Bayarcash.php:157
|
||||
msgid "Bayarcash require GiveWP plugin. Please install and activate."
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/Givewp.php:70
|
||||
msgid "General Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/Givewp.php:75
|
||||
#: includes/src/Givewp.php:134
|
||||
msgid "Personal Access Token (PAT)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/Givewp.php:76
|
||||
#: includes/src/Givewp.php:135
|
||||
msgid "Enter your Personal Access Token (PAT). You can retrieve it from Bayarcash console at Dashboard > Profile."
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/Givewp.php:81
|
||||
#: includes/src/Givewp.php:140
|
||||
msgid "Portal Key"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/Givewp.php:82
|
||||
#: includes/src/Givewp.php:141
|
||||
msgid "Enter your portal key. You can retrieve it from Bayarcash console at Dashboard > Portals."
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/Givewp.php:91
|
||||
msgid "Reference Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/Givewp.php:96
|
||||
#: includes/src/Givewp.php:146
|
||||
msgid "Billing Fields"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/Givewp.php:97
|
||||
#: includes/src/Givewp.php:147
|
||||
msgid "This option will enable the billing details section at the donation form."
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/Givewp.php:102
|
||||
#: includes/src/Givewp.php:152
|
||||
msgid "Enabled"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/Givewp.php:103
|
||||
#: includes/src/Givewp.php:153
|
||||
msgid "Disabled"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/Givewp.php:123
|
||||
msgid "Do you want to customize the donation instructions for this form?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/Givewp.php:128
|
||||
msgid "Global Option"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/Givewp.php:129
|
||||
msgid "Customize"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/Givewp.php:130
|
||||
msgid "Disable"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/Givewp.php:205
|
||||
msgid "Make your donation quickly and securely with Bayarcash"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/Givewp.php:206
|
||||
msgid "How it works:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/Givewp.php:207
|
||||
msgid "You will be redirected to Bayarcash to pay using your online banking. You will then be brought back to this page to view your receipt."
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/Givewp.php:316
|
||||
msgid "Please tick the create account button if you want to create a subscription donation"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/Givewp.php:397
|
||||
msgid "Please enter phone number."
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/Givewp.php:401
|
||||
msgid "Please enter identification number."
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/Givewp.php:405
|
||||
msgid "Please select identification type."
|
||||
msgstr ""
|
||||
|
||||
#. translators: %s: payment data
|
||||
#: includes/src/Givewp.php:455
|
||||
msgid "Payment creation failed before sending donor to Bayarcash. Payment data: %s"
|
||||
msgstr ""
|
||||
|
||||
#: includes/src/Givewp.php:456
|
||||
msgid "Payment Error"
|
||||
msgstr ""
|
||||
13
spec/fixtures/dynamic_finders/plugin_version/before-after-image-block/composer_file/package.json
vendored
Normal file
13
spec/fixtures/dynamic_finders/plugin_version/before-after-image-block/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
{
|
||||
"name": "custom-image-block-cgb-guten-block",
|
||||
"version": "1.0.0",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"start": "cgb-scripts start",
|
||||
"build": "cgb-scripts build",
|
||||
"eject": "cgb-scripts eject"
|
||||
},
|
||||
"dependencies": {
|
||||
"cgb-scripts": "1.23.1"
|
||||
}
|
||||
}
|
||||
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.
|
||||
@@ -0,0 +1,194 @@
|
||||
# Copyright (C) 2023 thingsym
|
||||
# This file is distributed under the GPLv2 or later.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Better Website Performance 1.1.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/better-website-performance\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: 2023-05-31T08:54:57+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.7.1\n"
|
||||
"X-Domain: better-website-performance\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Better Website Performance"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://github.com/thingsym/better-website-performance"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "The Better Website Performance plugin adds advanced features to improve website performance."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "thingsym"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://www.thingslabo.com/"
|
||||
msgstr ""
|
||||
|
||||
#: inc/class-better-website-performance.php:107
|
||||
msgid "Become a sponsor"
|
||||
msgstr ""
|
||||
|
||||
#: inc/customizer/class-panel.php:39
|
||||
msgid "Performance Settings (Better Website Performance)"
|
||||
msgstr ""
|
||||
|
||||
#: inc/emoji/class-emoji.php:169
|
||||
msgid "Emoji resource"
|
||||
msgstr ""
|
||||
|
||||
#: inc/emoji/class-emoji.php:188
|
||||
msgid "Enable Emoji resource"
|
||||
msgstr ""
|
||||
|
||||
#: inc/image-srcset/class-image-srcset.php:162
|
||||
msgid "Image Srcset"
|
||||
msgstr ""
|
||||
|
||||
#: inc/image-srcset/class-image-srcset.php:181
|
||||
msgid "Enable Image Srcset"
|
||||
msgstr ""
|
||||
|
||||
#: inc/javascript/class-async.php:200
|
||||
msgid "JavaScript"
|
||||
msgstr ""
|
||||
|
||||
#: inc/javascript/class-async.php:219
|
||||
msgid "Async type"
|
||||
msgstr ""
|
||||
|
||||
#: inc/javascript/class-async.php:243
|
||||
#: inc/style/class-concat.php:329
|
||||
msgid "Exclude"
|
||||
msgstr ""
|
||||
|
||||
#: inc/javascript/class-async.php:246
|
||||
#: inc/style/class-concat.php:332
|
||||
msgid "Enter handle names to exclude."
|
||||
msgstr ""
|
||||
|
||||
#: inc/jquery/class-jquery.php:228
|
||||
msgid "jQuery"
|
||||
msgstr ""
|
||||
|
||||
#: inc/jquery/class-jquery.php:247
|
||||
msgid "Enable jQuery"
|
||||
msgstr ""
|
||||
|
||||
#: inc/jquery/class-jquery.php:266
|
||||
msgid "Enable jQuery Migrate"
|
||||
msgstr ""
|
||||
|
||||
#: inc/jquery/class-jquery.php:285
|
||||
msgid "Place jQuery in the footer"
|
||||
msgstr ""
|
||||
|
||||
#: inc/preload/class-preload.php:193
|
||||
#: inc/preload/class-preload.php:214
|
||||
msgid "Preload"
|
||||
msgstr ""
|
||||
|
||||
#: inc/preload/class-preload.php:220
|
||||
#: inc/resource-hints/class-resource-hints.php:240
|
||||
#: inc/resource-hints/class-resource-hints.php:265
|
||||
#: inc/resource-hints/class-resource-hints.php:290
|
||||
#: inc/resource-hints/class-resource-hints.php:315
|
||||
msgid "See <a href=\"%1$s\" target=\"_blank\">Specification</a>."
|
||||
msgstr ""
|
||||
|
||||
#: inc/resource-hints/class-resource-hints.php:213
|
||||
msgid "Resource Hints"
|
||||
msgstr ""
|
||||
|
||||
#: inc/resource-hints/class-resource-hints.php:234
|
||||
msgid "DNS-Prefetch"
|
||||
msgstr ""
|
||||
|
||||
#: inc/resource-hints/class-resource-hints.php:259
|
||||
msgid "Preconnect"
|
||||
msgstr ""
|
||||
|
||||
#: inc/resource-hints/class-resource-hints.php:284
|
||||
msgid "Prefetch"
|
||||
msgstr ""
|
||||
|
||||
#: inc/resource-hints/class-resource-hints.php:309
|
||||
msgid "Prerender"
|
||||
msgstr ""
|
||||
|
||||
#: inc/style/class-concat.php:267
|
||||
msgid "Style Sheet"
|
||||
msgstr ""
|
||||
|
||||
#: inc/style/class-concat.php:286
|
||||
msgid "Loading type"
|
||||
msgstr ""
|
||||
|
||||
#: inc/style/class-concat.php:290
|
||||
msgid "Default: Load external css file"
|
||||
msgstr ""
|
||||
|
||||
#: inc/style/class-concat.php:291
|
||||
msgid "Inline each stylesheet"
|
||||
msgstr ""
|
||||
|
||||
#: inc/style/class-concat.php:292
|
||||
msgid "Inline concated Stylesheets"
|
||||
msgstr ""
|
||||
|
||||
#: inc/style/class-concat.php:310
|
||||
msgid "Enable minify"
|
||||
msgstr ""
|
||||
|
||||
#: inc/wp-custom-css/class-wp-custom-css.php:180
|
||||
msgid "Place custom CSS in the footer"
|
||||
msgstr ""
|
||||
|
||||
#: inc/wp-head/class-wp-head.php:195
|
||||
msgid "HTML Head"
|
||||
msgstr ""
|
||||
|
||||
#: inc/wp-head/class-wp-head.php:214
|
||||
msgid "Display the links to the general feeds"
|
||||
msgstr ""
|
||||
|
||||
#: inc/wp-head/class-wp-head.php:233
|
||||
msgid "Display the links to the extra feeds (such as category feeds)"
|
||||
msgstr ""
|
||||
|
||||
#: inc/wp-head/class-wp-head.php:252
|
||||
msgid "Display Really Simple Discovery (EditURI)"
|
||||
msgstr ""
|
||||
|
||||
#: inc/wp-head/class-wp-head.php:271
|
||||
msgid "Display Windows Live Writer (wlwmanifest)"
|
||||
msgstr ""
|
||||
|
||||
#: inc/wp-head/class-wp-head.php:290
|
||||
msgid "Display WordPress generator"
|
||||
msgstr ""
|
||||
|
||||
#: inc/wp-head/class-wp-head.php:309
|
||||
msgid "Display canonical"
|
||||
msgstr ""
|
||||
|
||||
#: inc/wp-head/class-wp-head.php:328
|
||||
msgid "Display shortlink"
|
||||
msgstr ""
|
||||
|
||||
#: inc/wp-head/class-wp-head.php:347
|
||||
msgid "Display the REST API link"
|
||||
msgstr ""
|
||||
|
||||
#: inc/wp-head/class-wp-head.php:366
|
||||
msgid "Display oEmbed discovery links"
|
||||
msgstr ""
|
||||
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 ""
|
||||
@@ -0,0 +1,232 @@
|
||||
# Copyright (C) 2023 bPlugins LLC
|
||||
# This file is distributed under the GPLv3.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Mailchimp block 1.0.1\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/mailchimp-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: 2023-07-08T12:12:42+02:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.6.0\n"
|
||||
"X-Domain: mail-collections\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
msgid "Mailchimp block"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Connect your MailChimp with your WordPress."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "bPlugins LLC"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "http://bplugins.com"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
msgid "Default"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
msgid "Form 1"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
msgid "Form 2"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
msgid "Form 3"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
msgid "General"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
msgid "Style"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
msgid "Help"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
msgid "Read Documentation"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
msgid "Would you please rate us?"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
msgid "We are new and we need your help to grow!🙏"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
msgid "Config"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
msgid "Configure Api Key"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
msgid "Audience Id"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
msgid "Elements"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
msgid "Icon"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
msgid "Label"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
msgid "First Name"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
msgid "Last Name"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
msgid "Button"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
msgid "Message"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
msgid "Success"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
msgid "Error"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
msgid "Placeholder Text"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
msgid "Email"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
msgid "Forms"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
msgid "Theme"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
msgid "Form"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
msgid "Background:"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
msgid "Padding"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
msgid "Border"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
msgid "Background"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
msgid "Color"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
msgid "Typography"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
msgid "Input"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
msgid "Colors"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
msgid "Margin"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
msgid "Hovers Colors"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
msgid "Title Here"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
msgid "Description Here"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
msgid "Please Insert Your Api Key"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
msgid "MailChimp"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
msgid "MailChimp API key"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:1
|
||||
msgid "Save Information"
|
||||
msgstr ""
|
||||
|
||||
#: block.json
|
||||
msgctxt "block title"
|
||||
msgid "Mailchimp-block"
|
||||
msgstr ""
|
||||
|
||||
#: block.json
|
||||
msgctxt "block description"
|
||||
msgid "Description of MailChimp Block."
|
||||
msgstr ""
|
||||
|
||||
#: block.json
|
||||
msgctxt "block keyword"
|
||||
msgid "mail"
|
||||
msgstr ""
|
||||
|
||||
#: block.json
|
||||
msgctxt "block keyword"
|
||||
msgid "mailchimp"
|
||||
msgstr ""
|
||||
|
||||
#: block.json
|
||||
msgctxt "block keyword"
|
||||
msgid "key3"
|
||||
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
19
spec/fixtures/dynamic_finders/plugin_version/blockprotocol/change_log/changelog.txt
vendored
Normal file
19
spec/fixtures/dynamic_finders/plugin_version/blockprotocol/change_log/changelog.txt
vendored
Normal file
@@ -0,0 +1,19 @@
|
||||
== Changelog ==
|
||||
|
||||
= 0.0.4 =
|
||||
* Improved error handling, including more visible error messages
|
||||
* Add labels to custom block settings, fix 'found in post' for entities
|
||||
|
||||
= 0.0.3 =
|
||||
* Add support for ChatGPT blocks
|
||||
* Notification when using unsupported database version
|
||||
* Fix rich text rendering
|
||||
* Icon for block category
|
||||
* Better error reporting
|
||||
|
||||
= 0.0.2 =
|
||||
* Improve rich text editing handling, handling older blocks in editor and API endpoints.
|
||||
|
||||
= 0.0.1 =
|
||||
* First release of the plugin.
|
||||
|
||||
@@ -0,0 +1,635 @@
|
||||
# Copyright (C) 2022 BlogSqode WP Post Design
|
||||
# This file is distributed under the same license as the BlogSqode WP Post Design package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: BlogSqode WP Post Design 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/blogsqode-posts\n"
|
||||
"POT-Creation-Date: 2022-04-18 05:36: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"
|
||||
|
||||
#: admin/class-blogsqode-admin-settings.php:71
|
||||
msgid "Your settings have been saved."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-blogsqode-admin-settings.php:518
|
||||
msgid "The settings of this image size have been disabled because its values are being overwritten by a filter."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-blogsqode-admin-settings.php:530
|
||||
msgid "Hard crop?"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-blogsqode-admin-settings.php:561
|
||||
msgid "Select a page…"
|
||||
msgstr ""
|
||||
|
||||
#. translators: 1: page name 2: page ID
|
||||
|
||||
#: admin/class-blogsqode-admin-settings.php:575
|
||||
msgid "%1$s (ID: %2$s)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-blogsqode-admin-settings.php:592
|
||||
msgid "Search for a page…"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-blogsqode-admin-settings.php:611
|
||||
#: admin/class-blogsqode-admin-settings.php:943
|
||||
msgid "Day(s)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-blogsqode-admin-settings.php:612
|
||||
#: admin/class-blogsqode-admin-settings.php:944
|
||||
msgid "Week(s)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-blogsqode-admin-settings.php:613
|
||||
#: admin/class-blogsqode-admin-settings.php:945
|
||||
msgid "Month(s)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-blogsqode-admin-settings.php:614
|
||||
#: admin/class-blogsqode-admin-settings.php:946
|
||||
msgid "Year(s)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-blogsqode-admin-settings.php:712
|
||||
msgid "Browse"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-blogsqode-admin-settings.php:713
|
||||
msgid "Remove Upload"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-blogsqode-setting-general.php:25
|
||||
msgid "General"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-blogsqode-setting-general.php:43
|
||||
msgid "Blogs Page"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-blogsqode-setting-general.php:45
|
||||
msgid "* kindly use this <span>[blogsqode_blog_list]</span> shortcode inside any page, post, section."
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-blogsqode-setting-general.php:51
|
||||
#: admin/settings/class-blogsqode-setting-singleblog.php:51
|
||||
msgid "Enable Dark Mode"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-blogsqode-setting-general.php:52
|
||||
#: admin/settings/class-blogsqode-setting-singleblog.php:52
|
||||
msgid "Enable dark mode for changing color"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-blogsqode-setting-general.php:56
|
||||
#: admin/settings/class-blogsqode-setting-singleblog.php:56
|
||||
msgid "Theme color will be change after enable it."
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-blogsqode-setting-general.php:60
|
||||
msgid "Layout"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-blogsqode-setting-general.php:61
|
||||
msgid "This option lets you set layout for blogs."
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-blogsqode-setting-general.php:69
|
||||
#: admin/settings/class-blogsqode-setting-pagination.php:59
|
||||
#: admin/settings/class-blogsqode-setting-pagination.php:112
|
||||
msgid "Layout 1"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-blogsqode-setting-general.php:70
|
||||
#: admin/settings/class-blogsqode-setting-pagination.php:60
|
||||
#: admin/settings/class-blogsqode-setting-pagination.php:113
|
||||
msgid "Layout 2"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-blogsqode-setting-general.php:71
|
||||
#: admin/settings/class-blogsqode-setting-pagination.php:61
|
||||
#: admin/settings/class-blogsqode-setting-pagination.php:114
|
||||
msgid "Layout 3"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-blogsqode-setting-general.php:72
|
||||
#: admin/settings/class-blogsqode-setting-pagination.php:62
|
||||
#: admin/settings/class-blogsqode-setting-pagination.php:115
|
||||
msgid "Layout 4"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-blogsqode-setting-general.php:73
|
||||
#: admin/settings/class-blogsqode-setting-pagination.php:63
|
||||
#: admin/settings/class-blogsqode-setting-pagination.php:116
|
||||
msgid "Layout 5"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-blogsqode-setting-general.php:78
|
||||
msgid "This Preview is for layout."
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-blogsqode-setting-general.php:85
|
||||
msgid "Post Grid"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-blogsqode-setting-general.php:86
|
||||
msgid "Select Column for Blogs."
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-blogsqode-setting-general.php:94
|
||||
msgid "2 Posts per Column"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-blogsqode-setting-general.php:95
|
||||
msgid "3 Posts per Column"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-blogsqode-setting-general.php:96
|
||||
msgid "4 Posts per Column"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-blogsqode-setting-general.php:97
|
||||
msgid "5 Posts per Column"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-blogsqode-setting-general.php:102
|
||||
msgid "Post Per Page"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-blogsqode-setting-general.php:103
|
||||
msgid "This sets the number of blogs oer page."
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-blogsqode-setting-general.php:115
|
||||
msgid "Pagination Option"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-blogsqode-setting-general.php:116
|
||||
msgid "Select a way of Paginate blog Page."
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-blogsqode-setting-general.php:124
|
||||
msgid "Pagination With Numeric"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-blogsqode-setting-general.php:125
|
||||
msgid "Lode More Button with Ajax"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-blogsqode-setting-general.php:136
|
||||
#: admin/settings/class-blogsqode-setting-singleblog.php:80
|
||||
msgid "Enable/Disable options"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-blogsqode-setting-general.php:143
|
||||
msgid "Short Description"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-blogsqode-setting-general.php:144
|
||||
msgid "Enable If you want to display your blog short description in your blog list page."
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-blogsqode-setting-general.php:154
|
||||
#: admin/settings/class-blogsqode-setting-singleblog.php:87
|
||||
msgid "Author Thumbnail"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-blogsqode-setting-general.php:155
|
||||
msgid "Enable If you want to display your blog author thumbnail in your blog list page."
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-blogsqode-setting-general.php:163
|
||||
#: admin/settings/class-blogsqode-setting-singleblog.php:96
|
||||
msgid "Author Name"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-blogsqode-setting-general.php:164
|
||||
msgid "Enable If you want to display your blog author name in your blog list page."
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-blogsqode-setting-general.php:172
|
||||
#: admin/settings/class-blogsqode-setting-singleblog.php:105
|
||||
msgid "Blog Date"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-blogsqode-setting-general.php:173
|
||||
msgid "Enable If you want to display your blog date in your blog list page."
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-blogsqode-setting-general.php:181
|
||||
#: admin/settings/class-blogsqode-setting-singleblog.php:114
|
||||
msgid "Comments Count"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-blogsqode-setting-general.php:182
|
||||
msgid "Enable If you want to display your blog comment count in your blog list page."
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-blogsqode-setting-general.php:190
|
||||
msgid "Read Time"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-blogsqode-setting-general.php:191
|
||||
msgid "Enable If you want to display your blog read time in your blog list page."
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-blogsqode-setting-general.php:199
|
||||
#: admin/settings/class-blogsqode-setting-singleblog.php:122
|
||||
msgid "Category"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-blogsqode-setting-general.php:200
|
||||
msgid "Enable If you want to display your blog category in your blog list page."
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-blogsqode-setting-general.php:208
|
||||
#: admin/settings/class-blogsqode-setting-pagination.php:96
|
||||
msgid "Read More Button"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-blogsqode-setting-general.php:209
|
||||
msgid "Enable If you want to display your blog read more button in your blog list page."
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-blogsqode-setting-pagination.php:25
|
||||
msgid "Pagination"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-blogsqode-setting-pagination.php:43
|
||||
msgid "Pagination Page"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-blogsqode-setting-pagination.php:45
|
||||
#: admin/settings/class-blogsqode-setting-singleblog.php:45
|
||||
msgid "Here you can set Pagination designs."
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-blogsqode-setting-pagination.php:50
|
||||
msgid "Pagination Design"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-blogsqode-setting-pagination.php:51
|
||||
msgid "This option lets you set layout for Pagination."
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-blogsqode-setting-pagination.php:64
|
||||
#: admin/settings/class-blogsqode-setting-pagination.php:117
|
||||
msgid "Layout 6"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-blogsqode-setting-pagination.php:65
|
||||
msgid "Layout 7"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-blogsqode-setting-pagination.php:66
|
||||
msgid "Layout 8"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-blogsqode-setting-pagination.php:71
|
||||
msgid "Pagination Design Preview"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-blogsqode-setting-pagination.php:72
|
||||
msgid "This option is selected for layout of Pagination."
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-blogsqode-setting-pagination.php:103
|
||||
msgid "Read More Button Design"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-blogsqode-setting-pagination.php:104
|
||||
msgid "This option lets you set layout for Read More Button."
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-blogsqode-setting-pagination.php:121
|
||||
msgid "Read More Button Design Preview"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-blogsqode-setting-pagination.php:122
|
||||
msgid "This option is selected for layout of Read More Button."
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-blogsqode-setting-pagination.php:129
|
||||
msgid "Read More Fill"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-blogsqode-setting-pagination.php:130
|
||||
#: admin/settings/class-blogsqode-setting-pagination.php:131
|
||||
msgid "Enable If you want to fill read more button in your blog list page."
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-blogsqode-setting-singleblog.php:25
|
||||
msgid "Single Blog"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-blogsqode-setting-singleblog.php:43
|
||||
msgid "Single Blog Page"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-blogsqode-setting-singleblog.php:60
|
||||
msgid "Page Layout"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-blogsqode-setting-singleblog.php:61
|
||||
msgid "This option lets you set layout for Single Blog Page."
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-blogsqode-setting-singleblog.php:69
|
||||
msgid "With Sidebar"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-blogsqode-setting-singleblog.php:70
|
||||
msgid "Without Sidebar"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-blogsqode-setting-singleblog.php:88
|
||||
#: admin/settings/class-blogsqode-setting-singleblog.php:89
|
||||
msgid "Enable If you want to display your blog author thumbnail in your single blog page."
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-blogsqode-setting-singleblog.php:97
|
||||
msgid "Enable If you want to display your blog author name in your single blog page."
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-blogsqode-setting-singleblog.php:106
|
||||
msgid "Enable If you want to display your blog date in your single blog page."
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-blogsqode-setting-singleblog.php:115
|
||||
msgid "Enable If you want to display your blog comment count in your single blog page."
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-blogsqode-setting-singleblog.php:123
|
||||
msgid "Enable If you want to display your blog category in your single blog page."
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-blogsqode-setting-singleblog.php:130
|
||||
msgid "Tags"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-blogsqode-setting-singleblog.php:131
|
||||
msgid "Enable If you want to display your blog tags in your single blog page."
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-blogsqode-setting-singleblog.php:138
|
||||
msgid "Pagination of Post"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-blogsqode-setting-singleblog.php:139
|
||||
msgid "Enable If you want to display your pagination in your single blog page."
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-blogsqode-setting-singleblog.php:146
|
||||
msgid "Post Comment"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-blogsqode-setting-singleblog.php:147
|
||||
msgid "Enable If you want to display your post comment in your single blog page."
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-blogsqode-setting-singleblog.php:154
|
||||
msgid "Social Share Buttons"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-blogsqode-setting-singleblog.php:155
|
||||
msgid "Enable If you want to display social share button in your single blog page."
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-blogsqode-setting-singleblog.php:169
|
||||
msgid "Social Icon Images"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-blogsqode-setting-singleblog.php:177
|
||||
msgid "Facebook"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-blogsqode-setting-singleblog.php:179
|
||||
msgid "Select <strong> Facebook Icon </strong>."
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-blogsqode-setting-singleblog.php:186
|
||||
msgid "Twitter"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-blogsqode-setting-singleblog.php:188
|
||||
msgid "Select <strong> Twitter Icon </strong>."
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-blogsqode-setting-singleblog.php:195
|
||||
msgid "Instagram"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-blogsqode-setting-singleblog.php:197
|
||||
msgid "Select <strong> Instagram Icon </strong>."
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-blogsqode-setting-singleblog.php:204
|
||||
msgid "Linkedin"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-blogsqode-setting-singleblog.php:206
|
||||
msgid "Select <strong> Linkedin Icon </strong>."
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-blogsqode-setting-singleblog.php:213
|
||||
msgid "Pinterest"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-blogsqode-setting-singleblog.php:215
|
||||
msgid "Select <strong> Pinterest Icon </strong>."
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-blogsqode-setting-singleblog.php:222
|
||||
msgid "Whatsapp"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-blogsqode-setting-singleblog.php:224
|
||||
msgid "Select <strong> Whatsapp Icon </strong>."
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-blogsqode-setting-singleblog.php:231
|
||||
msgid "Snapchat"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-blogsqode-setting-singleblog.php:233
|
||||
msgid "Select <strong> Snapchat Icon </strong>."
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-blogsqode-setting-singleblog.php:240
|
||||
msgid "Wechat"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-blogsqode-setting-singleblog.php:242
|
||||
msgid "Select <strong> Wechat Icon </strong>."
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/elementor/blogsqode-blockquote-widget.php:18
|
||||
#: admin/settings/wpbackery/blogsqode-backery-blockquote.php:32
|
||||
msgid "Blogsqode Blockquote"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/elementor/blogsqode-blockquote-widget.php:26
|
||||
#: admin/settings/elementor/blogsqode-blockquote-widget.php:33
|
||||
msgid "Quote"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/elementor/blogsqode-blockquote-widget.php:35
|
||||
msgid "Your Quote"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/elementor/blogsqode-shortcode-widget.php:18
|
||||
msgid "BLOGSQODE Shortcode"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/elementor/blogsqode-shortcode-widget.php:26
|
||||
msgid "Content"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/elementor/blogsqode-shortcode-widget.php:33
|
||||
#: admin/settings/wpbackery/blogsqode-backery-shortcode.php:40
|
||||
msgid "Shortcode"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/elementor/blogsqode-shortcode-widget.php:35
|
||||
msgid "[blogsqode_blog_list]"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/wpbackery/blogsqode-backery-blockquote.php:35
|
||||
#: admin/settings/wpbackery/blogsqode-backery-shortcode.php:35
|
||||
msgid "Blogsqode Blog"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/wpbackery/blogsqode-backery-blockquote.php:42
|
||||
msgid "Blockquote Content"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/wpbackery/blogsqode-backery-blockquote.php:44
|
||||
msgid "<p>I am test text block. Click edit button to change this text.</p>"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/wpbackery/blogsqode-backery-blockquote.php:45
|
||||
msgid "Enter content."
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/wpbackery/blogsqode-backery-blockquote.php:51
|
||||
msgid "Author Quote"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/wpbackery/blogsqode-backery-blockquote.php:54
|
||||
msgid "Add Author Quote."
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/wpbackery/blogsqode-backery-blockquote.php:61
|
||||
msgid "Blockquote Cite"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/wpbackery/blogsqode-backery-blockquote.php:63
|
||||
msgid "Add Citiation Link and Source Name"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/wpbackery/blogsqode-backery-blockquote.php:68
|
||||
#: admin/settings/wpbackery/blogsqode-backery-shortcode.php:48
|
||||
msgid "Element ID"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/wpbackery/blogsqode-backery-blockquote.php:71
|
||||
#: admin/settings/wpbackery/blogsqode-backery-shortcode.php:51
|
||||
msgid "Enter element ID (Note: make sure it is unique and valid)."
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/wpbackery/blogsqode-backery-blockquote.php:72
|
||||
#: admin/settings/wpbackery/blogsqode-backery-blockquote.php:81
|
||||
#: admin/settings/wpbackery/blogsqode-backery-shortcode.php:52
|
||||
#: admin/settings/wpbackery/blogsqode-backery-shortcode.php:61
|
||||
msgid "Extra"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/wpbackery/blogsqode-backery-blockquote.php:77
|
||||
#: admin/settings/wpbackery/blogsqode-backery-shortcode.php:57
|
||||
msgid "Extra class name"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/wpbackery/blogsqode-backery-blockquote.php:80
|
||||
#: admin/settings/wpbackery/blogsqode-backery-shortcode.php:60
|
||||
msgid "Style particular content element differently - add a class name and refer to it in custom CSS."
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/wpbackery/blogsqode-backery-shortcode.php:32
|
||||
msgid "Blogsqode Blog Shortcode"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/wpbackery/blogsqode-backery-shortcode.php:42
|
||||
msgid "blogsqode_blog_list"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/wpbackery/blogsqode-backery-shortcode.php:43
|
||||
msgid "Add shortcode"
|
||||
msgstr ""
|
||||
|
||||
#: admin/views/blogsqode-admin-page.php:43
|
||||
msgid "Save changes"
|
||||
msgstr ""
|
||||
|
||||
#: public/class-blogsqode-blog-templates.php:40
|
||||
msgid "min read"
|
||||
msgstr ""
|
||||
|
||||
#: public/class-blogsqode-blog-templates.php:79
|
||||
#: public/class-blogsqode-blog-templates.php:132
|
||||
#: public/class-blogsqode-blog-templates.php:175
|
||||
#: public/class-blogsqode-blog-templates.php:216
|
||||
msgid " Comment"
|
||||
msgstr ""
|
||||
|
||||
#: public/class-blogsqode-blog-templates.php:256
|
||||
#: public/class-blogsqode-blog-templates.php:258
|
||||
#: public/class-blogsqode-blog-templates.php:260
|
||||
#: public/class-blogsqode-blog-templates.php:262
|
||||
#: public/class-blogsqode-blog-templates.php:264
|
||||
#: public/class-blogsqode-blog-templates.php:266
|
||||
msgid "Read More"
|
||||
msgstr ""
|
||||
|
||||
#: public/single/single-blogsqode.php:24
|
||||
msgid "Next post"
|
||||
msgstr ""
|
||||
|
||||
#: public/single/single-blogsqode.php:25
|
||||
msgid "Previous post"
|
||||
msgstr ""
|
||||
|
||||
#: public/single/template-parts/content-single.php:50
|
||||
msgid "Page"
|
||||
msgstr ""
|
||||
|
||||
#. translators: %: Page number.
|
||||
|
||||
#: public/single/template-parts/content-single.php:53
|
||||
msgid "Page %"
|
||||
msgstr ""
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "BlogSqode WP Post Design"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid "http://www.upsqode.com"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid "Provides a Various Layouts for blogs."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "Upsqode"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "http://www.upsqode.com/"
|
||||
msgstr ""
|
||||
14
spec/fixtures/dynamic_finders/plugin_version/bonaire/change_log/CHANGELOG.md
vendored
Normal file
14
spec/fixtures/dynamic_finders/plugin_version/bonaire/change_log/CHANGELOG.md
vendored
Normal file
@@ -0,0 +1,14 @@
|
||||
# Change Log
|
||||
|
||||
All notable changes to this project will be documented in this file.
|
||||
|
||||
The format is based on [Keep a Changelog](http://keepachangelog.com/)
|
||||
and this project adheres to [Semantic Versioning](http://semver.org/).
|
||||
|
||||
## Version 0.1.1
|
||||
### Changed
|
||||
- Code cleanup
|
||||
- Ensured compatibility with PHPMailer
|
||||
|
||||
## Version 0.1.0
|
||||
First commit.
|
||||
@@ -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,367 @@
|
||||
# Copyright (C) 2023 bPlugins LLC
|
||||
# This file is distributed under the GPLv3.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Business Review 1.0.1\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/business-review\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: 2023-03-17T20:07:26+01:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.6.0\n"
|
||||
"X-Domain: business-review\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
#: custom-post.php:22
|
||||
#: custom-post.php:23
|
||||
msgid "Business Review"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "Simple and easy way display your Google ,Facebook and yelp business reviews in your Posts and Pages."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "bPlugins LLC"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "http://bplugins.com"
|
||||
msgstr ""
|
||||
|
||||
#: custom-post.php:24
|
||||
#: custom-post.php:25
|
||||
msgid "Add New"
|
||||
msgstr ""
|
||||
|
||||
#: custom-post.php:26
|
||||
msgid "Edit"
|
||||
msgstr ""
|
||||
|
||||
#: custom-post.php:27
|
||||
msgid "New"
|
||||
msgstr ""
|
||||
|
||||
#: custom-post.php:28
|
||||
msgid "View"
|
||||
msgstr ""
|
||||
|
||||
#: custom-post.php:29
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
||||
#: custom-post.php:30
|
||||
msgid "Sorry, we couldn't find the that you are looking for."
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:20
|
||||
msgid "Please"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:20
|
||||
msgid "Upgrade To PRO"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:20
|
||||
msgid " To Unlock Premium Features"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:20
|
||||
msgid "Upgrade Now"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:20
|
||||
msgid "Slide"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:20
|
||||
msgid "Flip"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:20
|
||||
msgid "Zoom"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:20
|
||||
msgid "Bounce"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:20
|
||||
msgid "Top Left"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:20
|
||||
msgid "Top Right"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:20
|
||||
msgid "Top Center"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:20
|
||||
msgid "Bottom Left"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:20
|
||||
msgid "Bottom Right"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:20
|
||||
msgid "Bottom Center"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:20
|
||||
msgid "Google"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:20
|
||||
msgid "Facebook"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:20
|
||||
msgid "Yelp"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:20
|
||||
msgid "Default"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:20
|
||||
msgid "Grid 1"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:20
|
||||
msgid "Grid 2"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:20
|
||||
msgid "Grid 3"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:20
|
||||
msgid "Grid 4"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:20
|
||||
msgid "Masonry"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:20
|
||||
msgid "None"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:20
|
||||
msgid "General"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:20
|
||||
msgid "Style"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:20
|
||||
msgid "Help"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:20
|
||||
msgid "Read Documentation"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:20
|
||||
msgid "Would you please rate us?"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:20
|
||||
msgid "We are new and we need your help to grow!🙏"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:20
|
||||
msgid "Review Type"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:20
|
||||
msgid "Top Position"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:20
|
||||
msgid "Middle"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:20
|
||||
msgid "Bottom"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:20
|
||||
msgid "Clear Cache"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:20
|
||||
msgid "Toast"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:20
|
||||
msgid "Position"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:20
|
||||
msgid "Duration"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:20
|
||||
msgid "Animation"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:20
|
||||
msgid "Elements"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:20
|
||||
msgid "Image"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:20
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:20
|
||||
msgid "Time"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:20
|
||||
msgid "Ratting"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:20
|
||||
msgid "Review Text"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:20
|
||||
msgid "Review Text Limit"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:20
|
||||
msgid "Layouts"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:20
|
||||
msgid "Select Layout"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:20
|
||||
msgid "Columns:"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:20
|
||||
msgid "Column Gap:"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:20
|
||||
msgid "Row Gap:"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:20
|
||||
msgid "Wrapper"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:20
|
||||
msgid "Background:"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:20
|
||||
msgid "Padding"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:20
|
||||
msgid "Card"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:20
|
||||
msgid "Header background:"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:20
|
||||
msgid "Border"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:20
|
||||
msgid "Radius:"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:20
|
||||
msgid "Shadow:"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:20
|
||||
msgid "Hover Shadow:"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:20
|
||||
msgid "Quote Icon"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:20
|
||||
msgid "Color"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:20
|
||||
msgid "Typography"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:20
|
||||
msgid "Hover Color"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:20
|
||||
msgid "Rating Icon"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:20
|
||||
msgid "Posted On"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:20
|
||||
msgid "Text Color"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:20
|
||||
msgid "Author Color"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:20
|
||||
msgid "Show Text"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:20
|
||||
msgid "Authorization Or Access Token Required"
|
||||
msgstr ""
|
||||
|
||||
#: dist/editor.js:20
|
||||
msgid "Configure Api Key"
|
||||
msgstr ""
|
||||
|
||||
#: block.json
|
||||
msgctxt "block title"
|
||||
msgid "Business Review"
|
||||
msgstr ""
|
||||
|
||||
#: block.json
|
||||
msgctxt "block description"
|
||||
msgid "Simple and easy way display your Google ,Facebook and yelp business reviews in your Posts and Pages."
|
||||
msgstr ""
|
||||
|
||||
#: block.json
|
||||
msgctxt "block keyword"
|
||||
msgid "business"
|
||||
msgstr ""
|
||||
|
||||
#: block.json
|
||||
msgctxt "block keyword"
|
||||
msgid "review"
|
||||
msgstr ""
|
||||
|
||||
#: block.json
|
||||
msgctxt "block keyword"
|
||||
msgid "block"
|
||||
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 "त्रुटि: कार्ट ऑब्जेक्ट परिभाषित नहीं है"
|
||||
@@ -0,0 +1,152 @@
|
||||
# Copyright (C) 2023 Carmo Product GTIN for WooCommerce
|
||||
# This file is distributed under the same license as the Carmo Product GTIN for WooCommerce package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Carmo Product GTIN for WooCommerce 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/"
|
||||
"qs_tool_wp_pot_gen_1685090187_0439_962967\n"
|
||||
"POT-Creation-Date: 2023-05-26 10:54+0100\n"
|
||||
"PO-Revision-Date: 2023-05-26 10:55+0100\n"
|
||||
"Last-Translator: João Carmo Pereira <mail@carmo.pt>\n"
|
||||
"Language-Team: \n"
|
||||
"Language: pt_PT\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 3.3.1\n"
|
||||
|
||||
#: carmo-product-gtin-for-woocommerce.php:37
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Carmo Woo Product GTIN is active but WooCommerce is not. Please <a "
|
||||
"href=\"%s\">install and activate WooCommerce by Automattic</a> plugin to use "
|
||||
"this feature."
|
||||
msgstr ""
|
||||
"O Carmo Woo Product GTIN está activo, mas o WooCommerce não está. <a "
|
||||
"href=\"%s\">Instale e active o plugin WooCommerce by Automattic</a> para "
|
||||
"utilizar esta funcionalidade."
|
||||
|
||||
#: carmo-product-gtin-for-woocommerce.php:53
|
||||
#: carmo-product-gtin-for-woocommerce.php:76
|
||||
msgid "Enter gtin (ean/upc) value"
|
||||
msgstr "Introduzir o gtin (ean/upc)"
|
||||
|
||||
#: carmo-product-gtin-for-woocommerce.php:55
|
||||
#: carmo-product-gtin-for-woocommerce.php:79
|
||||
msgid ""
|
||||
"The GTIN, including EAN (European Article Number) and UPC (Universal Product "
|
||||
"Code), is a standardized numerical identifier and barcode used to uniquely "
|
||||
"identify products in the global marketplace, facilitating efficient "
|
||||
"inventory management and supply chain operations."
|
||||
msgstr ""
|
||||
"O GTIN, incluindo o EAN (Número Europeu de Artigo) e o UPC (Código Universal "
|
||||
"de Produto), é um identificador numérico normalizado e um código de barras "
|
||||
"utilizado para identificar exclusivamente os produtos no mercado global, "
|
||||
"facilitando a gestão eficiente do inventário e as operações da cadeia de "
|
||||
"abastecimento."
|
||||
|
||||
#: carmo-product-gtin-for-woocommerce.php:152
|
||||
msgid ""
|
||||
"WooCommerce must be installed and active to see how many products have GTIN"
|
||||
msgstr ""
|
||||
"O WooCommerce tem de estar instalado e activo para ver quantos produtos têm "
|
||||
"GTIN"
|
||||
|
||||
#: carmo-product-gtin-for-woocommerce.php:170
|
||||
msgid "Statistics"
|
||||
msgstr "Estatísticas"
|
||||
|
||||
#: carmo-product-gtin-for-woocommerce.php:173
|
||||
#, php-format
|
||||
msgid "You have used the GTIN field: %s time(s)."
|
||||
msgstr "O campo GTIN foi utilizado: %s vezes."
|
||||
|
||||
#: carmo-product-gtin-for-woocommerce.php:176
|
||||
msgid "Options"
|
||||
msgstr "Opções"
|
||||
|
||||
#: carmo-product-gtin-for-woocommerce.php:178
|
||||
msgid ""
|
||||
"Warning: This will delete all product data associated with Carmo GTIN. Are "
|
||||
"you sure you want to proceed?"
|
||||
msgstr ""
|
||||
"Aviso: Isto irá eliminar todos os dados do produto associados ao Carmo GTIN. "
|
||||
"Tem a certeza de que pretende continuar?"
|
||||
|
||||
#: carmo-product-gtin-for-woocommerce.php:179
|
||||
msgid ""
|
||||
"If you delete the data don't forget to flush your object cache if present."
|
||||
msgstr ""
|
||||
"Se eliminar os dados, não se esqueça de limpar a sua cache de objectos, se "
|
||||
"existir."
|
||||
|
||||
#: carmo-product-gtin-for-woocommerce.php:180
|
||||
msgid "Delete all carmo GTIN data"
|
||||
msgstr "Eliminar todos os dados do carmo GTIN"
|
||||
|
||||
#: carmo-product-gtin-for-woocommerce.php:189
|
||||
msgid "About"
|
||||
msgstr "Sobre"
|
||||
|
||||
#: carmo-product-gtin-for-woocommerce.php:192
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This plugin was created with love. If you have any question or suggestion, "
|
||||
"please contact using <a href='mailto:%s'>%s</a>."
|
||||
msgstr ""
|
||||
"Este plugin foi criado com amor. Se existir alguma dúvida ou sugestão, entre "
|
||||
"em contato pelo e-email <a href='mailto:%s'>%s</a>."
|
||||
|
||||
#: carmo-product-gtin-for-woocommerce.php:220
|
||||
msgid "All data has been deleted."
|
||||
msgstr "Todos os dados foram apagados."
|
||||
|
||||
#: carmo-product-gtin-for-woocommerce.php:225
|
||||
msgid "An error occurred while trying to delete data."
|
||||
msgstr "Ocorreu um erro ao tentar apagar os dados."
|
||||
|
||||
#: carmo-product-gtin-for-woocommerce.php:232
|
||||
msgid ""
|
||||
"Are you sure you want to delete all product data associated with Carmo GTIN?"
|
||||
msgstr ""
|
||||
"Tem a certeza de que pretende eliminar todos os dados do produto associados "
|
||||
"ao Carmo GTIN?"
|
||||
|
||||
#: carmo-product-gtin-for-woocommerce.php:233
|
||||
msgid "This action cannot be undone."
|
||||
msgstr "Esta acção é irreversível."
|
||||
|
||||
#: carmo-product-gtin-for-woocommerce.php:234
|
||||
msgid "It will delete all meta_key = 'carmogtin' from wp_postmeta table."
|
||||
msgstr ""
|
||||
"Este procedimento irá eliminar todas as entradas meta_key = 'carmogtin' na "
|
||||
"tabela wp_postmeta."
|
||||
|
||||
#: carmo-product-gtin-for-woocommerce.php:235
|
||||
msgid "Yes I'm sure"
|
||||
msgstr "Sim, tenho a certeza"
|
||||
|
||||
#: carmo-product-gtin-for-woocommerce.php:248
|
||||
msgid "Settings"
|
||||
msgstr "Opções"
|
||||
|
||||
#~ msgid "Carmo Product GTIN for WooCommerce"
|
||||
#~ msgstr "Carmo Product GTIN for WooCommerce"
|
||||
|
||||
#~ msgid "https://www.carmo.pt/project/woo-product-gtin/"
|
||||
#~ msgstr "https://www.carmo.pt/project/woo-product-gtin/"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Adds a numeric GTIN field on Simple Products and Variation if they exist. "
|
||||
#~ "This field can be used via shortcode on product pages and for product "
|
||||
#~ "feeds."
|
||||
#~ msgstr ""
|
||||
#~ "Adiciona um GTIN numérico em Produtos Simples e em Produtos Variáveis "
|
||||
#~ "(caso existam). Este campo pode ser utilizado via shortcode nos template "
|
||||
#~ "de página de produto e para feeds de produto."
|
||||
|
||||
#~ msgid "carmo"
|
||||
#~ msgstr "carmo"
|
||||
|
||||
#~ msgid "https://carmo.pt"
|
||||
#~ msgstr "https://carmo.pt"
|
||||
@@ -0,0 +1,2 @@
|
||||
10/02/2023 version 1.0
|
||||
- Initial Release
|
||||
File diff suppressed because it is too large
Load Diff
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 ""
|
||||
56
spec/fixtures/dynamic_finders/plugin_version/cf7-blocks/composer_file/package.json
vendored
Normal file
56
spec/fixtures/dynamic_finders/plugin_version/cf7-blocks/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,56 @@
|
||||
{
|
||||
"name": "contact-form-7-blocks",
|
||||
"version": "1.0.1",
|
||||
"tested_up_to": "5.8",
|
||||
"description": "",
|
||||
"cssnano": {
|
||||
"preset": [
|
||||
"default",
|
||||
{
|
||||
"calc": false
|
||||
}
|
||||
]
|
||||
},
|
||||
"scripts": {
|
||||
"bootstrap": "lerna bootstrap",
|
||||
"wp-env": "wp-env",
|
||||
"nuke": "lerna clean -y",
|
||||
"lint-css": "wp-scripts lint-style '**/*.scss'",
|
||||
"lint-css:fix": "npm run lint-css -- --fix",
|
||||
"check-engines": "lerna run check-engines",
|
||||
"check-licenses": "lerna run check-licenses",
|
||||
"format": "lerna run format",
|
||||
"lint-js": "wp-scripts lint-js",
|
||||
"lint-js:fix": "npm run lint-js -- --fix",
|
||||
"lint:md-js": "wp-scripts lint-md-js",
|
||||
"lint:md-docs": "wp-scripts lint-md-docs",
|
||||
"lint:pkg-json": "wp-scripts lint-pkg-json",
|
||||
"packages-update": "wp-scripts packages-update",
|
||||
"start": "wp-scripts start --config ./webpack.config.js",
|
||||
"build": "wp-scripts build --config ./webpack.config.js",
|
||||
"setup": "sudo chmod + ./.dev/bin/install-wp-tests.sh && ./.dev/bin/install-wp-tests.sh"
|
||||
},
|
||||
"author": "zafarKamal",
|
||||
"license": "ISC",
|
||||
"dependencies": {
|
||||
"@automattic/isolated-block-editor": "^2.21.0",
|
||||
"@wordpress/components": "^16.0.0",
|
||||
"@wordpress/dom-ready": "^3.2.1",
|
||||
"@wordpress/element": "^4.0.0",
|
||||
"@wordpress/primitives": "^3.0.0",
|
||||
"prop-types": "^15.7.2",
|
||||
"webpack-fix-style-only-entries": "^0.6.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@wordpress/base-styles": "^4.12.0",
|
||||
"@wordpress/eslint-plugin": "^9.1.1",
|
||||
"@wordpress/icons": "^6.1.1",
|
||||
"@wordpress/prettier-config": "^1.1.1",
|
||||
"@wordpress/scripts": "19.1.0",
|
||||
"csso-webpack-plugin": "^2.0.0-beta.3",
|
||||
"ignore-emit-webpack-plugin": "^2.0.6",
|
||||
"lerna": "^4.0.0",
|
||||
"mini-css-extract-plugin": "2.5.3",
|
||||
"prettier": "npm:wp-prettier@2.2.1-beta-1"
|
||||
}
|
||||
}
|
||||
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 ""
|
||||
@@ -0,0 +1,59 @@
|
||||
# Copyright (c) 2023 Sébastien Dumont
|
||||
# This file is distributed under the same license as the CoCart package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: CoCart JWT Authentication 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: "
|
||||
"https://github.com/co-cart/cocart-jwt-authentication/issues\n"
|
||||
"POT-Creation-Date: 2023-03-08 03:07:51+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2023-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Sébastien Dumont <translate@cocart.xyz>\n"
|
||||
"Language: en_US\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"
|
||||
|
||||
#: includes/class-cocart-jwt-authentication.php:128
|
||||
msgid ""
|
||||
"Authorization header malformed. Please check the authentication token and "
|
||||
"try again."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-cocart-jwt-authentication.php:137
|
||||
msgid "JWT is not configured properly."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-cocart-jwt-authentication.php:144
|
||||
msgid "JWT Token is not valid or has expired."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-cocart-jwt-authentication.php:155
|
||||
msgid "The token issuer does not match with this server."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-cocart-jwt-authentication.php:162
|
||||
msgid "The token does not identify any user."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-cocart-jwt-authentication.php:171
|
||||
msgid "The user doesn't exist."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-cocart-jwt-authentication.php:184
|
||||
msgid ""
|
||||
"Authentication is invalid. Please check the authentication information is "
|
||||
"correct and try again. Authentication also only works on a secure "
|
||||
"connection."
|
||||
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
|
||||
|
||||
20
spec/fixtures/dynamic_finders/plugin_version/codeless-hotspot-block/composer_file/package.json
vendored
Normal file
20
spec/fixtures/dynamic_finders/plugin_version/codeless-hotspot-block/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,20 @@
|
||||
{
|
||||
"name": "codeless-hotspot-block",
|
||||
"version": "0.1.0",
|
||||
"description": "Hotspot block",
|
||||
"author": "codelessthemes",
|
||||
"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",
|
||||
"packages-update": "wp-scripts packages-update",
|
||||
"plugin-zip": "wp-scripts plugin-zip",
|
||||
"start": "wp-scripts start"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@wordpress/scripts": "^25.4.0"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,954 @@
|
||||
# Copyright (C) 2022 Lasoon - Maintenance Plugin
|
||||
# This file is distributed under the same license as the Lasoon - Maintenance Plugin package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Lasoon - Maintenance Plugin 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/lasoon-"
|
||||
"maintenance\n"
|
||||
"POT-Creation-Date: 2022-07-08 10:56+0530\n"
|
||||
"PO-Revision-Date: 2022-07-08 11:02+0530\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: en_CA\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.0.1\n"
|
||||
|
||||
#: admin/class-lasoon-admin-settings.php:71
|
||||
msgid "Your settings have been saved."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-lasoon-admin-settings.php:394
|
||||
msgid "Select role(s)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-lasoon-admin-settings.php:421
|
||||
msgid "Select Page(s)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-lasoon-admin-settings.php:464
|
||||
msgid "On"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-lasoon-admin-settings.php:474
|
||||
msgid "Off"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-lasoon-admin-settings.php:509
|
||||
msgid "Browse"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-lasoon-admin-settings.php:510
|
||||
msgid "Remove Upload"
|
||||
msgstr ""
|
||||
|
||||
#: admin/lasoon-admin.php:10
|
||||
msgid "Lasoon"
|
||||
msgstr ""
|
||||
|
||||
#: admin/lasoon-admin.php:77 admin/settings/class-lasoon-setting-site.php:24
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#. translators: plugin settings url
|
||||
#: admin/lasoon-admin.php:169
|
||||
msgid "live now"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-about.php:25
|
||||
#: admin/settings/class-lasoon-setting-about.php:43
|
||||
#: admin/settings/class-lasoon-setting-about.php:64
|
||||
msgid "About Us"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-about.php:45
|
||||
msgid "Here you can set About Us designs."
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-about.php:50
|
||||
msgid "About Us Enable"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-about.php:51
|
||||
msgid "Enable enable for display about us"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-about.php:54
|
||||
#: admin/settings/class-lasoon-setting-about.php:95
|
||||
#: admin/settings/class-lasoon-setting-about.php:162
|
||||
#: admin/settings/class-lasoon-setting-general.php:84
|
||||
#: admin/settings/class-lasoon-setting-general.php:116
|
||||
msgid "Show"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-about.php:55
|
||||
#: admin/settings/class-lasoon-setting-about.php:96
|
||||
#: admin/settings/class-lasoon-setting-about.php:163
|
||||
#: admin/settings/class-lasoon-setting-general.php:85
|
||||
#: admin/settings/class-lasoon-setting-general.php:117
|
||||
msgid "Hide"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-about.php:57
|
||||
msgid "About Section will be shown after enable it."
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-about.php:61
|
||||
msgid "About Title"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-about.php:62
|
||||
msgid "Set heading for about us."
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-about.php:69
|
||||
msgid "About Description"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-about.php:70
|
||||
msgid "Set description for about us."
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-about.php:72
|
||||
#: admin/settings/class-lasoon-setting-about.php:113
|
||||
msgid ""
|
||||
"Lacus interdum orci, varius posuere rhoncus amet. Ultrices arcu, et duis in "
|
||||
"purus."
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-about.php:84
|
||||
#: admin/settings/class-lasoon-setting-about.php:105
|
||||
#: admin/settings/class-lasoon-setting-about.php:139
|
||||
msgid "Get In Touch"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-about.php:86
|
||||
msgid ""
|
||||
"This section is specially for Read More button layout in Blog List page."
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-about.php:91
|
||||
msgid "Get in Touch Enable"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-about.php:92
|
||||
msgid "Enable get in touch for display about us"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-about.php:98
|
||||
msgid "Get in Touch will be shown after enable it."
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-about.php:102
|
||||
msgid "Get In Touch Title"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-about.php:103
|
||||
msgid "Set get in touch for about us."
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-about.php:110
|
||||
msgid "Get In Touch Description"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-about.php:111
|
||||
msgid "Set description for get in touch."
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-about.php:120
|
||||
msgid "Contact Number"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-about.php:121
|
||||
msgid "Set contact number for about us."
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-about.php:123
|
||||
msgid "1234657890"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-about.php:128
|
||||
msgid "Email Address"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-about.php:129
|
||||
msgid "Set email for about us."
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-about.php:131
|
||||
msgid "abc@gmail.com"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-about.php:136 public/coming-soon.php:99
|
||||
msgid "Address"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-about.php:137
|
||||
msgid "Set address for about us."
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-about.php:152 public/coming-soon.php:111
|
||||
#: public/coming-soon.php:313
|
||||
msgid "Contact Us"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-about.php:154
|
||||
msgid "This section is specially for Contact us section."
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-about.php:158
|
||||
msgid "Contact Us Enable"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-about.php:159
|
||||
msgid "Enable Contact Us for display about us"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-about.php:165
|
||||
msgid "Contact Us will be shown after enable it."
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-general.php:25
|
||||
#: admin/settings/class-lasoon-setting-general.php:43
|
||||
msgid "General"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-general.php:51
|
||||
msgid "Sidebar"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-general.php:52
|
||||
msgid "Enable Sidebar for display about us"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-general.php:57
|
||||
msgid "About Us will be shown after enable it."
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-general.php:63
|
||||
msgid "Logo"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-general.php:65
|
||||
msgid "Select <strong> Main Logo </strong>."
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-general.php:71
|
||||
msgid "Heading Title"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-general.php:72
|
||||
msgid "Set heading for your coming soon page."
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-general.php:74
|
||||
msgid "We're Coming Soon"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-general.php:80
|
||||
msgid "Heading Subtitle Enable"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-general.php:83
|
||||
#: admin/settings/class-lasoon-setting-general.php:115
|
||||
msgid "Unable"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-general.php:92
|
||||
msgid "Heading Subtitle"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-general.php:93
|
||||
msgid "Set heading subtitle for your coming soon page."
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-general.php:95
|
||||
msgid ""
|
||||
"Our website is under construction. We are working very hard to give you the "
|
||||
"best experience with this one."
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-general.php:102
|
||||
msgid "Footer Copyright"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-general.php:103
|
||||
msgid "Set footer copyright for your coming soon page."
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-general.php:105
|
||||
msgid "Copyright 2022 © The_Krishna . All Right Reserved"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-general.php:112
|
||||
msgid "Countdown Enable"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-general.php:124
|
||||
msgid "Launch Date"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-general.php:125
|
||||
msgid "Set launch date for your coming soon page."
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-general.php:138
|
||||
msgid "Social Icon Urls"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-general.php:140
|
||||
msgid "This section is specially for Change Social links."
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-general.php:146
|
||||
msgid "Facebook"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-general.php:153
|
||||
msgid "Twitter"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-general.php:160
|
||||
msgid "Instagram"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-general.php:167
|
||||
msgid "Linkedin"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-general.php:174
|
||||
msgid "Pinterest"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-general.php:181
|
||||
msgid "Whatsapp"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-general.php:188
|
||||
msgid "Snapchat"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-general.php:195
|
||||
msgid "Wechat"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-general.php:202
|
||||
msgid "Youtube"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-general.php:209
|
||||
msgid "Skype"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-general.php:216
|
||||
msgid "Behence"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-general.php:223
|
||||
msgid "Dribble"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-general.php:230
|
||||
msgid "Github"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-general.php:237
|
||||
msgid "Google+"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-layout.php:25
|
||||
#: admin/settings/class-lasoon-setting-layout.php:50
|
||||
msgid "Layout"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-layout.php:43
|
||||
msgid "Main Layout"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-layout.php:45
|
||||
msgid "Here you can set Coming Soon Page designs."
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-layout.php:51
|
||||
msgid "This option lets you set layout for blogs."
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-layout.php:59
|
||||
msgid "Layout 1"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-layout.php:60
|
||||
msgid "Layout 2"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-layout.php:61
|
||||
msgid "Layout 3"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-layout.php:62
|
||||
msgid "Layout 4"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-layout.php:63
|
||||
msgid "Layout 5"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-layout.php:69
|
||||
#: admin/settings/class-lasoon-setting-layout.php:244
|
||||
msgid "This Preview is for layout."
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-layout.php:77
|
||||
msgid "Background Type"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-layout.php:78
|
||||
msgid "Select type of background"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-layout.php:80
|
||||
#: admin/settings/class-lasoon-setting-layout.php:119
|
||||
msgid "Disable"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-layout.php:81
|
||||
msgid "Image"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-layout.php:82
|
||||
msgid "Video"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-layout.php:84
|
||||
#: admin/settings/class-lasoon-setting-layout.php:124
|
||||
msgid "Background will be change after change it."
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-layout.php:90
|
||||
msgid "Slider 1 Image"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-layout.php:92
|
||||
#: admin/settings/class-lasoon-setting-layout.php:101
|
||||
#: admin/settings/class-lasoon-setting-layout.php:110
|
||||
msgid "Select <strong> Slider Image </strong> for Background."
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-layout.php:99
|
||||
msgid "Slider 2 Image"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-layout.php:108
|
||||
msgid "Slider 3 Image"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-layout.php:116
|
||||
msgid "Video Option"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-layout.php:117
|
||||
msgid "Select type of video background"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-layout.php:120
|
||||
msgid "Upload"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-layout.php:121
|
||||
msgid "Embed"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-layout.php:130
|
||||
msgid "Background Video"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-layout.php:132
|
||||
msgid "Select <strong> Video </strong> for Background."
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-layout.php:140
|
||||
msgid "Youtube/Vimeo Iframe"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-layout.php:150
|
||||
msgid "Animation"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-layout.php:152
|
||||
msgid "Here you can set Animation designs."
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-layout.php:156
|
||||
msgid "Background Animation"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-layout.php:157
|
||||
msgid "This option lets you set animation for Background."
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-layout.php:159
|
||||
msgid "particles"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-layout.php:165
|
||||
msgid "Fire Ball"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-layout.php:166
|
||||
msgid "Snow Rain"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-layout.php:167
|
||||
msgid "Magical Particles"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-layout.php:168
|
||||
msgid "Lighting Ball"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-layout.php:169
|
||||
msgid "Particles"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-layout.php:170
|
||||
msgid "Ripple"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-layout.php:171
|
||||
msgid "Particle Waves"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-layout.php:176
|
||||
msgid "Heading Animation"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-layout.php:177
|
||||
msgid "This option lets you set animation for Heading Title."
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-layout.php:179
|
||||
msgid "animate_1"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-layout.php:185
|
||||
msgid "Line Up"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-layout.php:186
|
||||
msgid "Text Flip"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-layout.php:187
|
||||
msgid "Typing Text"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-layout.php:188
|
||||
msgid "Top Bottom"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-layout.php:189
|
||||
msgid "Bounce"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-layout.php:190
|
||||
msgid "Blink"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-layout.php:191
|
||||
msgid "Jello"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-layout.php:192
|
||||
msgid "Shining Text"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-layout.php:193
|
||||
msgid "Text Shake"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-layout.php:199
|
||||
msgid "Counter Shape"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-layout.php:200
|
||||
msgid "This option lets you set shapes for Counter."
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-layout.php:202
|
||||
msgid "dash_circle"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-layout.php:208
|
||||
msgid "Dash Circle"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-layout.php:209
|
||||
msgid "Dash Diamond"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-layout.php:210
|
||||
msgid "Dash Parallelogram"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-layout.php:211
|
||||
msgid "Glass Circle"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-layout.php:212
|
||||
#: admin/settings/class-lasoon-setting-layout.php:214
|
||||
msgid "Glass Square"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-layout.php:213
|
||||
msgid "Glass Diamond"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-layout.php:215
|
||||
msgid "Glass Trapezoid"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-layout.php:216
|
||||
msgid "Glass Parallelogram"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-layout.php:217
|
||||
msgid "Glass Pentagone"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-layout.php:218
|
||||
msgid "Glass Hexagonal"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-layout.php:219
|
||||
msgid "Glass Heptagon"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-layout.php:220
|
||||
msgid "Glass Octagon"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-layout.php:221
|
||||
msgid "Glass Decagon"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-layout.php:222
|
||||
msgid "Glass Bevel"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-layout.php:223
|
||||
msgid "Glass Rabbet"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-layout.php:224
|
||||
msgid "Glass Right Point"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-layout.php:225
|
||||
msgid "Diamond Inline"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-layout.php:226
|
||||
msgid "Square Note"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-layout.php:227
|
||||
msgid "Circle Note"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-layout.php:228
|
||||
msgid "Square Corner Note"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-layout.php:229
|
||||
msgid "Fill Trapezoid"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-layout.php:230
|
||||
msgid "Fill Parallelogram"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-layout.php:231
|
||||
msgid "fill Pentagone"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-layout.php:232
|
||||
msgid "Fill Hexagonal"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-layout.php:233
|
||||
msgid "Fill Heptagon"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-layout.php:234
|
||||
msgid "Fill Octagon"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-layout.php:235
|
||||
msgid "Fill Decagon"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-layout.php:236
|
||||
msgid "Fill Bevel"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-layout.php:237
|
||||
msgid "Fill Rabbet"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-layout.php:238
|
||||
msgid "Fill Right Point"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-layout.php:239
|
||||
msgid "line Parallelogram"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-layout.php:258
|
||||
msgid "Email Template"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-layout.php:260
|
||||
msgid "This email template is for Sending alert for Live Mode to Subscribers."
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-layout.php:268
|
||||
msgid "Email Background Image"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-layout.php:270
|
||||
msgid "Select <strong> Background Image </strong> for Email."
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-layout.php:277
|
||||
msgid "Email Heading Title"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-layout.php:278
|
||||
msgid "Set heading title for your email template."
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-layout.php:280
|
||||
msgid "Visit Our New Website"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-layout.php:286
|
||||
msgid "Email Heading Subtitle"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-layout.php:287
|
||||
msgid "Set heading subtitle for your email template."
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-layout.php:289
|
||||
msgid "See better than ever how lasoon can help you..."
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-layout.php:295
|
||||
msgid "Email Button Text"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-layout.php:296
|
||||
msgid "Set Button Text for your email template."
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-layout.php:298
|
||||
msgid "Visit Now"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-layout.php:304
|
||||
msgid "Email Subject"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-layout.php:305
|
||||
msgid "Set Subject for your email reminder."
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-layout.php:307
|
||||
msgid "Our site is Launched"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-layout.php:313
|
||||
#: admin/settings/class-lasoon-setting-layout.php:317
|
||||
msgid "Send Reminder"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-layout.php:314
|
||||
msgid "Here you can send Reminder to Subscription Users When Site is Live."
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-site.php:42
|
||||
msgid "Site Settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-site.php:44
|
||||
msgid "Here you can set Site Settings."
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-site.php:49
|
||||
#: public/class-lasoon-public.php:70
|
||||
msgid "Maintenance Mode"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-site.php:50
|
||||
msgid "Enable Maintenance Mode"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-site.php:53
|
||||
msgid "Activate"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-site.php:54
|
||||
msgid "Deactivate"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-site.php:56
|
||||
msgid "Activate and Deactiavte Maintenance Mode."
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-site.php:61
|
||||
msgid "Exclude Backend Role"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-site.php:62
|
||||
msgid "This option lets you set exclude backend roles."
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-site.php:72
|
||||
msgid "Exclude Frontend Role"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-site.php:73
|
||||
msgid "This option lets you set exclude frontend roles."
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-site.php:82
|
||||
msgid "Exclude Pages"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-site.php:83
|
||||
msgid "This option lets you set exclude pages."
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-site.php:97
|
||||
msgid "SEO Settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-site.php:99
|
||||
msgid "Here you can set SEO Settings."
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-site.php:104
|
||||
msgid "Title"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-site.php:105
|
||||
msgid "Set title for your coming soon page."
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-site.php:107
|
||||
msgid "Lasoon Maintenance"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-site.php:113
|
||||
msgid "Meta Robot"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-site.php:114
|
||||
msgid "This option lets you set Meta Robot."
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-site.php:122
|
||||
msgid "Index, Follow"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings/class-lasoon-setting-site.php:123
|
||||
msgid "Noindex, Nofollow"
|
||||
msgstr ""
|
||||
|
||||
#: admin/views/lasoon-admin-page.php:43
|
||||
msgid "Save changes"
|
||||
msgstr ""
|
||||
|
||||
#: public/class-lasoon-public.php:81
|
||||
msgctxt "<meta> keywords default"
|
||||
msgid "Maintenance Mode"
|
||||
msgstr ""
|
||||
|
||||
#: public/coming-soon.php:79
|
||||
msgid "phone"
|
||||
msgstr ""
|
||||
|
||||
#: public/coming-soon.php:89
|
||||
msgid "email"
|
||||
msgstr ""
|
||||
|
||||
#: public/coming-soon.php:117
|
||||
msgid "send message"
|
||||
msgstr ""
|
||||
|
||||
#: public/coming-soon.php:132
|
||||
msgid "this is social icons."
|
||||
msgstr ""
|
||||
|
||||
#: public/coming-soon.php:153
|
||||
msgid "we're coming soon"
|
||||
msgstr ""
|
||||
|
||||
#: public/coming-soon.php:169
|
||||
msgid "days"
|
||||
msgstr ""
|
||||
|
||||
#: public/coming-soon.php:175
|
||||
msgid "hours"
|
||||
msgstr ""
|
||||
|
||||
#: public/coming-soon.php:181
|
||||
msgid "minutes"
|
||||
msgstr ""
|
||||
|
||||
#: public/coming-soon.php:187
|
||||
msgid "seconds"
|
||||
msgstr ""
|
||||
|
||||
#: public/coming-soon.php:203
|
||||
msgid "submit"
|
||||
msgstr ""
|
||||
|
||||
#: public/coming-soon.php:225
|
||||
msgid "this is a social icons."
|
||||
msgstr ""
|
||||
|
||||
#: public/coming-soon.php:301
|
||||
msgid " Contact Us Form"
|
||||
msgstr ""
|
||||
|
||||
#: public/coming-soon.php:314
|
||||
msgid "close"
|
||||
msgstr ""
|
||||
|
||||
#: public/coming-soon.php:320
|
||||
msgid "Got it !"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "Lasoon - Maintenance Plugin"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid ""
|
||||
"https://codecanyon.net/item/blogsqode-blog-design-for-wordpress/37513771"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid "Provides a Various Layouts for Maintenance."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "The_Krishna"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "https://themeforest.net/user/the_krishna"
|
||||
msgstr ""
|
||||
@@ -1241,3 +1241,9 @@ LiverRoom (Pvt) Ltd., hereby disclaims all copyright interest in the program &ld
|
||||
<!-- Gofer SEO - 1.0.1 -->
|
||||
|
||||
|
||||
<!-- file-manager-advanced -->
|
||||
<!--
|
||||
Try: http://docbook.org/xml/5.0/dtd/docbook.dtd
|
||||
-->
|
||||
|
||||
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,4 @@
|
||||
*** Conditional Logic for WooCommerce Product Add-Ons ***
|
||||
|
||||
2022-08-12 - version 1.0.0
|
||||
* Initial Release
|
||||
@@ -0,0 +1,5 @@
|
||||
= 1.0.1 =
|
||||
- Fix discord error 10004:Unknown Guild connect to bot.
|
||||
|
||||
= 1.0.0 =
|
||||
- Release of Connect Eduma Theme to Discord WordPress plugin.
|
||||
@@ -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 ""
|
||||
117
spec/fixtures/dynamic_finders/plugin_version/copycraft/translation_file/languages/copycraft.pot
vendored
Normal file
117
spec/fixtures/dynamic_finders/plugin_version/copycraft/translation_file/languages/copycraft.pot
vendored
Normal file
@@ -0,0 +1,117 @@
|
||||
# Copyright (C) 2023 Tectalic
|
||||
# This file is distributed under the same license as the CopyCraft plugin.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: CopyCraft 0.2.1\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/copycraft\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: 2023-01-24T03:55:40+00:00\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"X-Generator: WP-CLI 2.7.1\n"
|
||||
"X-Domain: copycraft\n"
|
||||
|
||||
#. Plugin Name of the plugin
|
||||
#: includes/Modal/Screen.php:40
|
||||
#: includes/Modal/Screen.php:41
|
||||
#: includes/Settings/Register.php:40
|
||||
#: includes/Settings/Screen.php:66
|
||||
msgid "CopyCraft"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin
|
||||
msgid "https://copycraft.ai"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin
|
||||
msgid "AI-powered compelling product descriptions for your WooCommerce products using OpenAI GPT-3."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin
|
||||
msgid "Tectalic"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin
|
||||
msgid "https://tectalic.com/"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Modal/OpenAi_Generator.php:57
|
||||
msgid "Please enter your OpenAI API key in the CopyCraft settings and try again."
|
||||
msgstr ""
|
||||
|
||||
#: includes/Modal/OpenAi_Generator.php:90
|
||||
msgid "This product contains content that does not comply with OpenAI's content policy. Please edit the product description manually."
|
||||
msgstr ""
|
||||
|
||||
#: includes/Modal/OpenAi_Generator.php:135
|
||||
msgid "This generated description contains content that does not comply with OpenAI's content policy. Please edit the product description manually."
|
||||
msgstr ""
|
||||
|
||||
#. Translators: %s The error message returned by the OpenAI API.
|
||||
#: includes/Modal/OpenAi_Generator.php:145
|
||||
msgid "OpenAI API Error: %s"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Modal/OpenAi_Generator.php:147
|
||||
msgid "An unexpected error occurred. Please try again."
|
||||
msgstr ""
|
||||
|
||||
#: includes/Modal/Screen.php:77
|
||||
msgid "Generating description, please wait ..."
|
||||
msgstr ""
|
||||
|
||||
#: includes/Modal/Screen.php:119
|
||||
msgid "Access denied"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Modal/Screen.php:128
|
||||
msgid "Please save your product and try again."
|
||||
msgstr ""
|
||||
|
||||
#: includes/Modal/Screen.php:133
|
||||
msgid "Please enter a product name and try again."
|
||||
msgstr ""
|
||||
|
||||
#: includes/Modal/Screen.php:140
|
||||
msgid "Replace the existing description with this new one."
|
||||
msgstr ""
|
||||
|
||||
#: includes/Modal/Screen.php:140
|
||||
msgid "Replace"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Modal/Screen.php:141
|
||||
msgid "Append this new description to the existing description."
|
||||
msgstr ""
|
||||
|
||||
#: includes/Modal/Screen.php:141
|
||||
msgid "Insert"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Modal/Screen.php:142
|
||||
msgid "Generate a new description."
|
||||
msgstr ""
|
||||
|
||||
#: includes/Modal/Screen.php:142
|
||||
msgid "Try again"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Modal/Screen.php:143
|
||||
msgid "Return to the Edit Produt screen."
|
||||
msgstr ""
|
||||
|
||||
#: includes/Modal/Screen.php:143
|
||||
msgid "Discard"
|
||||
msgstr ""
|
||||
|
||||
#: includes/Settings/Register.php:39
|
||||
msgid "CopyCraft Settings"
|
||||
msgstr ""
|
||||
|
||||
#. Translators: %1$s is the opening <a> tag, %2$s is the closing </a> tag.
|
||||
#: includes/Settings/Screen.php:38
|
||||
msgid "Connect your %1$sOpenAI%2$s account to get started. Your OpenAI API Key can be %3$sfound here%4$s."
|
||||
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 ""
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user